Gracia Larsen-Schmidt
  • Home
  • Mapping C-Sections
  • Boston Marathon Over Time

On this page

  • Introduction
  • Special Symbols
  • Dialogue
  • The Divine
  • Most common words
  • Positive vs. Negative Sentiment Analysis
  • Conclusion

mini_project_4

#Loading in an English translation of The Quran from Kaggle
quran <- read.csv("~/Desktop/mini_project_website/quran.csv")

#renaming some of the columns, adding a title column, and changing the characters “ and ” into standard quote symbols 
quran <- quran |>
  select(surah_no, ayah_no_surah, ayah_en, ayah_no_quran) |>
  rename(surah_chapter = surah_no, 
         ayah_verse = ayah_no_surah,
         text = ayah_en, 
         overall_n = ayah_no_quran) |>
  mutate(title = "The Holy Quran",
         text = (str_replace_all(text, "“", "\\\"")),
         text = (str_replace_all(text, "”", "\\\"")))

quran
     surah_chapter ayah_verse
1                1          1
2                1          2
3                1          3
4                1          4
5                1          5
6                1          6
7                1          7
8                2          1
9                2          2
10               2          3
11               2          4
12               2          5
13               2          6
14               2          7
15               2          8
16               2          9
17               2         10
18               2         11
19               2         12
20               2         13
21               2         14
22               2         15
23               2         16
24               2         17
25               2         18
26               2         19
27               2         20
28               2         21
29               2         22
30               2         23
31               2         24
32               2         25
33               2         26
34               2         27
35               2         28
36               2         29
37               2         30
38               2         31
39               2         32
40               2         33
41               2         34
42               2         35
43               2         36
44               2         37
45               2         38
46               2         39
47               2         40
48               2         41
49               2         42
50               2         43
51               2         44
52               2         45
53               2         46
54               2         47
55               2         48
56               2         49
57               2         50
58               2         51
59               2         52
60               2         53
61               2         54
62               2         55
63               2         56
64               2         57
65               2         58
66               2         59
67               2         60
68               2         61
69               2         62
70               2         63
71               2         64
72               2         65
73               2         66
74               2         67
75               2         68
76               2         69
77               2         70
78               2         71
79               2         72
80               2         73
81               2         74
82               2         75
83               2         76
84               2         77
85               2         78
86               2         79
87               2         80
88               2         81
89               2         82
90               2         83
91               2         84
92               2         85
93               2         86
94               2         87
95               2         88
96               2         89
97               2         90
98               2         91
99               2         92
100              2         93
101              2         94
102              2         95
103              2         96
104              2         97
105              2         98
106              2         99
107              2        100
108              2        101
109              2        102
110              2        103
111              2        104
112              2        105
113              2        106
114              2        107
115              2        108
116              2        109
117              2        110
118              2        111
119              2        112
120              2        113
121              2        114
122              2        115
123              2        116
124              2        117
125              2        118
126              2        119
127              2        120
128              2        121
129              2        122
130              2        123
131              2        124
132              2        125
133              2        126
134              2        127
135              2        128
136              2        129
137              2        130
138              2        131
139              2        132
140              2        133
141              2        134
142              2        135
143              2        136
144              2        137
145              2        138
146              2        139
147              2        140
148              2        141
149              2        142
150              2        143
151              2        144
152              2        145
153              2        146
154              2        147
155              2        148
156              2        149
157              2        150
158              2        151
159              2        152
160              2        153
161              2        154
162              2        155
163              2        156
164              2        157
165              2        158
166              2        159
167              2        160
168              2        161
169              2        162
170              2        163
171              2        164
172              2        165
173              2        166
174              2        167
175              2        168
176              2        169
177              2        170
178              2        171
179              2        172
180              2        173
181              2        174
182              2        175
183              2        176
184              2        177
185              2        178
186              2        179
187              2        180
188              2        181
189              2        182
190              2        183
191              2        184
192              2        185
193              2        186
194              2        187
195              2        188
196              2        189
197              2        190
198              2        191
199              2        192
200              2        193
201              2        194
202              2        195
203              2        196
204              2        197
205              2        198
206              2        199
207              2        200
208              2        201
209              2        202
210              2        203
211              2        204
212              2        205
213              2        206
214              2        207
215              2        208
216              2        209
217              2        210
218              2        211
219              2        212
220              2        213
221              2        214
222              2        215
223              2        216
224              2        217
225              2        218
226              2        219
227              2        220
228              2        221
229              2        222
230              2        223
231              2        224
232              2        225
233              2        226
234              2        227
235              2        228
236              2        229
237              2        230
238              2        231
239              2        232
240              2        233
241              2        234
242              2        235
243              2        236
244              2        237
245              2        238
246              2        239
247              2        240
248              2        241
249              2        242
250              2        243
251              2        244
252              2        245
253              2        246
254              2        247
255              2        248
256              2        249
257              2        250
258              2        251
259              2        252
260              2        253
261              2        254
262              2        255
263              2        256
264              2        257
265              2        258
266              2        259
267              2        260
268              2        261
269              2        262
270              2        263
271              2        264
272              2        265
273              2        266
274              2        267
275              2        268
276              2        269
277              2        270
278              2        271
279              2        272
280              2        273
281              2        274
282              2        275
283              2        276
284              2        277
285              2        278
286              2        279
287              2        280
288              2        281
289              2        282
290              2        283
291              2        284
292              2        285
293              2        286
294              3          1
295              3          2
296              3          3
297              3          4
298              3          5
299              3          6
300              3          7
301              3          8
302              3          9
303              3         10
304              3         11
305              3         12
306              3         13
307              3         14
308              3         15
309              3         16
310              3         17
311              3         18
312              3         19
313              3         20
314              3         21
315              3         22
316              3         23
317              3         24
318              3         25
319              3         26
320              3         27
321              3         28
322              3         29
323              3         30
324              3         31
325              3         32
326              3         33
327              3         34
328              3         35
329              3         36
330              3         37
331              3         38
332              3         39
333              3         40
334              3         41
335              3         42
336              3         43
337              3         44
338              3         45
339              3         46
340              3         47
341              3         48
342              3         49
343              3         50
344              3         51
345              3         52
346              3         53
347              3         54
348              3         55
349              3         56
350              3         57
351              3         58
352              3         59
353              3         60
354              3         61
355              3         62
356              3         63
357              3         64
358              3         65
359              3         66
360              3         67
361              3         68
362              3         69
363              3         70
364              3         71
365              3         72
366              3         73
367              3         74
368              3         75
369              3         76
370              3         77
371              3         78
372              3         79
373              3         80
374              3         81
375              3         82
376              3         83
377              3         84
378              3         85
379              3         86
380              3         87
381              3         88
382              3         89
383              3         90
384              3         91
385              3         92
386              3         93
387              3         94
388              3         95
389              3         96
390              3         97
391              3         98
392              3         99
393              3        100
394              3        101
395              3        102
396              3        103
397              3        104
398              3        105
399              3        106
400              3        107
401              3        108
402              3        109
403              3        110
404              3        111
405              3        112
406              3        113
407              3        114
408              3        115
409              3        116
410              3        117
411              3        118
412              3        119
413              3        120
414              3        121
415              3        122
416              3        123
417              3        124
418              3        125
419              3        126
420              3        127
421              3        128
422              3        129
423              3        130
424              3        131
425              3        132
426              3        133
427              3        134
428              3        135
429              3        136
430              3        137
431              3        138
432              3        139
433              3        140
434              3        141
435              3        142
436              3        143
437              3        144
438              3        145
439              3        146
440              3        147
441              3        148
442              3        149
443              3        150
444              3        151
445              3        152
446              3        153
447              3        154
448              3        155
449              3        156
450              3        157
451              3        158
452              3        159
453              3        160
454              3        161
455              3        162
456              3        163
457              3        164
458              3        165
459              3        166
460              3        167
461              3        168
462              3        169
463              3        170
464              3        171
465              3        172
466              3        173
467              3        174
468              3        175
469              3        176
470              3        177
471              3        178
472              3        179
473              3        180
474              3        181
475              3        182
476              3        183
477              3        184
478              3        185
479              3        186
480              3        187
481              3        188
482              3        189
483              3        190
484              3        191
485              3        192
486              3        193
487              3        194
488              3        195
489              3        196
490              3        197
491              3        198
492              3        199
493              3        200
494              4          1
495              4          2
496              4          3
497              4          4
498              4          5
499              4          6
500              4          7
501              4          8
502              4          9
503              4         10
504              4         11
505              4         12
506              4         13
507              4         14
508              4         15
509              4         16
510              4         17
511              4         18
512              4         19
513              4         20
514              4         21
515              4         22
516              4         23
517              4         24
518              4         25
519              4         26
520              4         27
521              4         28
522              4         29
523              4         30
524              4         31
525              4         32
526              4         33
527              4         34
528              4         35
529              4         36
530              4         37
531              4         38
532              4         39
533              4         40
534              4         41
535              4         42
536              4         43
537              4         44
538              4         45
539              4         46
540              4         47
541              4         48
542              4         49
543              4         50
544              4         51
545              4         52
546              4         53
547              4         54
548              4         55
549              4         56
550              4         57
551              4         58
552              4         59
553              4         60
554              4         61
555              4         62
556              4         63
557              4         64
558              4         65
559              4         66
560              4         67
561              4         68
562              4         69
563              4         70
564              4         71
565              4         72
566              4         73
567              4         74
568              4         75
569              4         76
570              4         77
571              4         78
572              4         79
573              4         80
574              4         81
575              4         82
576              4         83
577              4         84
578              4         85
579              4         86
580              4         87
581              4         88
582              4         89
583              4         90
584              4         91
585              4         92
586              4         93
587              4         94
588              4         95
589              4         96
590              4         97
591              4         98
592              4         99
593              4        100
594              4        101
595              4        102
596              4        103
597              4        104
598              4        105
599              4        106
600              4        107
601              4        108
602              4        109
603              4        110
604              4        111
605              4        112
606              4        113
607              4        114
608              4        115
609              4        116
610              4        117
611              4        118
612              4        119
613              4        120
614              4        121
615              4        122
616              4        123
617              4        124
618              4        125
619              4        126
620              4        127
621              4        128
622              4        129
623              4        130
624              4        131
625              4        132
626              4        133
627              4        134
628              4        135
629              4        136
630              4        137
631              4        138
632              4        139
633              4        140
634              4        141
635              4        142
636              4        143
637              4        144
638              4        145
639              4        146
640              4        147
641              4        148
642              4        149
643              4        150
644              4        151
645              4        152
646              4        153
647              4        154
648              4        155
649              4        156
650              4        157
651              4        158
652              4        159
653              4        160
654              4        161
655              4        162
656              4        163
657              4        164
658              4        165
659              4        166
660              4        167
661              4        168
662              4        169
663              4        170
664              4        171
665              4        172
666              4        173
667              4        174
668              4        175
669              4        176
670              5          1
671              5          2
672              5          3
673              5          4
674              5          5
675              5          6
676              5          7
677              5          8
678              5          9
679              5         10
680              5         11
681              5         12
682              5         13
683              5         14
684              5         15
685              5         16
686              5         17
687              5         18
688              5         19
689              5         20
690              5         21
691              5         22
692              5         23
693              5         24
694              5         25
695              5         26
696              5         27
697              5         28
698              5         29
699              5         30
700              5         31
701              5         32
702              5         33
703              5         34
704              5         35
705              5         36
706              5         37
707              5         38
708              5         39
709              5         40
710              5         41
711              5         42
712              5         43
713              5         44
714              5         45
715              5         46
716              5         47
717              5         48
718              5         49
719              5         50
720              5         51
721              5         52
722              5         53
723              5         54
724              5         55
725              5         56
726              5         57
727              5         58
728              5         59
729              5         60
730              5         61
731              5         62
732              5         63
733              5         64
734              5         65
735              5         66
736              5         67
737              5         68
738              5         69
739              5         70
740              5         71
741              5         72
742              5         73
743              5         74
744              5         75
745              5         76
746              5         77
747              5         78
748              5         79
749              5         80
750              5         81
751              5         82
752              5         83
753              5         84
754              5         85
755              5         86
756              5         87
757              5         88
758              5         89
759              5         90
760              5         91
761              5         92
762              5         93
763              5         94
764              5         95
765              5         96
766              5         97
767              5         98
768              5         99
769              5        100
770              5        101
771              5        102
772              5        103
773              5        104
774              5        105
775              5        106
776              5        107
777              5        108
778              5        109
779              5        110
780              5        111
781              5        112
782              5        113
783              5        114
784              5        115
785              5        116
786              5        117
787              5        118
788              5        119
789              5        120
790              6          1
791              6          2
792              6          3
793              6          4
794              6          5
795              6          6
796              6          7
797              6          8
798              6          9
799              6         10
800              6         11
801              6         12
802              6         13
803              6         14
804              6         15
805              6         16
806              6         17
807              6         18
808              6         19
809              6         20
810              6         21
811              6         22
812              6         23
813              6         24
814              6         25
815              6         26
816              6         27
817              6         28
818              6         29
819              6         30
820              6         31
821              6         32
822              6         33
823              6         34
824              6         35
825              6         36
826              6         37
827              6         38
828              6         39
829              6         40
830              6         41
831              6         42
832              6         43
833              6         44
834              6         45
835              6         46
836              6         47
837              6         48
838              6         49
839              6         50
840              6         51
841              6         52
842              6         53
843              6         54
844              6         55
845              6         56
846              6         57
847              6         58
848              6         59
849              6         60
850              6         61
851              6         62
852              6         63
853              6         64
854              6         65
855              6         66
856              6         67
857              6         68
858              6         69
859              6         70
860              6         71
861              6         72
862              6         73
863              6         74
864              6         75
865              6         76
866              6         77
867              6         78
868              6         79
869              6         80
870              6         81
871              6         82
872              6         83
873              6         84
874              6         85
875              6         86
876              6         87
877              6         88
878              6         89
879              6         90
880              6         91
881              6         92
882              6         93
883              6         94
884              6         95
885              6         96
886              6         97
887              6         98
888              6         99
889              6        100
890              6        101
891              6        102
892              6        103
893              6        104
894              6        105
895              6        106
896              6        107
897              6        108
898              6        109
899              6        110
900              6        111
901              6        112
902              6        113
903              6        114
904              6        115
905              6        116
906              6        117
907              6        118
908              6        119
909              6        120
910              6        121
911              6        122
912              6        123
913              6        124
914              6        125
915              6        126
916              6        127
917              6        128
918              6        129
919              6        130
920              6        131
921              6        132
922              6        133
923              6        134
924              6        135
925              6        136
926              6        137
927              6        138
928              6        139
929              6        140
930              6        141
931              6        142
932              6        143
933              6        144
934              6        145
935              6        146
936              6        147
937              6        148
938              6        149
939              6        150
940              6        151
941              6        152
942              6        153
943              6        154
944              6        155
945              6        156
946              6        157
947              6        158
948              6        159
949              6        160
950              6        161
951              6        162
952              6        163
953              6        164
954              6        165
955              7          1
956              7          2
957              7          3
958              7          4
959              7          5
960              7          6
961              7          7
962              7          8
963              7          9
964              7         10
965              7         11
966              7         12
967              7         13
968              7         14
969              7         15
970              7         16
971              7         17
972              7         18
973              7         19
974              7         20
975              7         21
976              7         22
977              7         23
978              7         24
979              7         25
980              7         26
981              7         27
982              7         28
983              7         29
984              7         30
985              7         31
986              7         32
987              7         33
988              7         34
989              7         35
990              7         36
991              7         37
992              7         38
993              7         39
994              7         40
995              7         41
996              7         42
997              7         43
998              7         44
999              7         45
1000             7         46
1001             7         47
1002             7         48
1003             7         49
1004             7         50
1005             7         51
1006             7         52
1007             7         53
1008             7         54
1009             7         55
1010             7         56
1011             7         57
1012             7         58
1013             7         59
1014             7         60
1015             7         61
1016             7         62
1017             7         63
1018             7         64
1019             7         65
1020             7         66
1021             7         67
1022             7         68
1023             7         69
1024             7         70
1025             7         71
1026             7         72
1027             7         73
1028             7         74
1029             7         75
1030             7         76
1031             7         77
1032             7         78
1033             7         79
1034             7         80
1035             7         81
1036             7         82
1037             7         83
1038             7         84
1039             7         85
1040             7         86
1041             7         87
1042             7         88
1043             7         89
1044             7         90
1045             7         91
1046             7         92
1047             7         93
1048             7         94
1049             7         95
1050             7         96
1051             7         97
1052             7         98
1053             7         99
1054             7        100
1055             7        101
1056             7        102
1057             7        103
1058             7        104
1059             7        105
1060             7        106
1061             7        107
1062             7        108
1063             7        109
1064             7        110
1065             7        111
1066             7        112
1067             7        113
1068             7        114
1069             7        115
1070             7        116
1071             7        117
1072             7        118
1073             7        119
1074             7        120
1075             7        121
1076             7        122
1077             7        123
1078             7        124
1079             7        125
1080             7        126
1081             7        127
1082             7        128
1083             7        129
1084             7        130
1085             7        131
1086             7        132
1087             7        133
1088             7        134
1089             7        135
1090             7        136
1091             7        137
1092             7        138
1093             7        139
1094             7        140
1095             7        141
1096             7        142
1097             7        143
1098             7        144
1099             7        145
1100             7        146
1101             7        147
1102             7        148
1103             7        149
1104             7        150
1105             7        151
1106             7        152
1107             7        153
1108             7        154
1109             7        155
1110             7        156
1111             7        157
1112             7        158
1113             7        159
1114             7        160
1115             7        161
1116             7        162
1117             7        163
1118             7        164
1119             7        165
1120             7        166
1121             7        167
1122             7        168
1123             7        169
1124             7        170
1125             7        171
1126             7        172
1127             7        173
1128             7        174
1129             7        175
1130             7        176
1131             7        177
1132             7        178
1133             7        179
1134             7        180
1135             7        181
1136             7        182
1137             7        183
1138             7        184
1139             7        185
1140             7        186
1141             7        187
1142             7        188
1143             7        189
1144             7        190
1145             7        191
1146             7        192
1147             7        193
1148             7        194
1149             7        195
1150             7        196
1151             7        197
1152             7        198
1153             7        199
1154             7        200
1155             7        201
1156             7        202
1157             7        203
1158             7        204
1159             7        205
1160             7        206
1161             8          1
1162             8          2
1163             8          3
1164             8          4
1165             8          5
1166             8          6
1167             8          7
1168             8          8
1169             8          9
1170             8         10
1171             8         11
1172             8         12
1173             8         13
1174             8         14
1175             8         15
1176             8         16
1177             8         17
1178             8         18
1179             8         19
1180             8         20
1181             8         21
1182             8         22
1183             8         23
1184             8         24
1185             8         25
1186             8         26
1187             8         27
1188             8         28
1189             8         29
1190             8         30
1191             8         31
1192             8         32
1193             8         33
1194             8         34
1195             8         35
1196             8         36
1197             8         37
1198             8         38
1199             8         39
1200             8         40
1201             8         41
1202             8         42
1203             8         43
1204             8         44
1205             8         45
1206             8         46
1207             8         47
1208             8         48
1209             8         49
1210             8         50
1211             8         51
1212             8         52
1213             8         53
1214             8         54
1215             8         55
1216             8         56
1217             8         57
1218             8         58
1219             8         59
1220             8         60
1221             8         61
1222             8         62
1223             8         63
1224             8         64
1225             8         65
1226             8         66
1227             8         67
1228             8         68
1229             8         69
1230             8         70
1231             8         71
1232             8         72
1233             8         73
1234             8         74
1235             8         75
1236             9          1
1237             9          2
1238             9          3
1239             9          4
1240             9          5
1241             9          6
1242             9          7
1243             9          8
1244             9          9
1245             9         10
1246             9         11
1247             9         12
1248             9         13
1249             9         14
1250             9         15
1251             9         16
1252             9         17
1253             9         18
1254             9         19
1255             9         20
1256             9         21
1257             9         22
1258             9         23
1259             9         24
1260             9         25
1261             9         26
1262             9         27
1263             9         28
1264             9         29
1265             9         30
1266             9         31
1267             9         32
1268             9         33
1269             9         34
1270             9         35
1271             9         36
1272             9         37
1273             9         38
1274             9         39
1275             9         40
1276             9         41
1277             9         42
1278             9         43
1279             9         44
1280             9         45
1281             9         46
1282             9         47
1283             9         48
1284             9         49
1285             9         50
1286             9         51
1287             9         52
1288             9         53
1289             9         54
1290             9         55
1291             9         56
1292             9         57
1293             9         58
1294             9         59
1295             9         60
1296             9         61
1297             9         62
1298             9         63
1299             9         64
1300             9         65
1301             9         66
1302             9         67
1303             9         68
1304             9         69
1305             9         70
1306             9         71
1307             9         72
1308             9         73
1309             9         74
1310             9         75
1311             9         76
1312             9         77
1313             9         78
1314             9         79
1315             9         80
1316             9         81
1317             9         82
1318             9         83
1319             9         84
1320             9         85
1321             9         86
1322             9         87
1323             9         88
1324             9         89
1325             9         90
1326             9         91
1327             9         92
1328             9         93
1329             9         94
1330             9         95
1331             9         96
1332             9         97
1333             9         98
1334             9         99
1335             9        100
1336             9        101
1337             9        102
1338             9        103
1339             9        104
1340             9        105
1341             9        106
1342             9        107
1343             9        108
1344             9        109
1345             9        110
1346             9        111
1347             9        112
1348             9        113
1349             9        114
1350             9        115
1351             9        116
1352             9        117
1353             9        118
1354             9        119
1355             9        120
1356             9        121
1357             9        122
1358             9        123
1359             9        124
1360             9        125
1361             9        126
1362             9        127
1363             9        128
1364             9        129
1365            10          1
1366            10          2
1367            10          3
1368            10          4
1369            10          5
1370            10          6
1371            10          7
1372            10          8
1373            10          9
1374            10         10
1375            10         11
1376            10         12
1377            10         13
1378            10         14
1379            10         15
1380            10         16
1381            10         17
1382            10         18
1383            10         19
1384            10         20
1385            10         21
1386            10         22
1387            10         23
1388            10         24
1389            10         25
1390            10         26
1391            10         27
1392            10         28
1393            10         29
1394            10         30
1395            10         31
1396            10         32
1397            10         33
1398            10         34
1399            10         35
1400            10         36
1401            10         37
1402            10         38
1403            10         39
1404            10         40
1405            10         41
1406            10         42
1407            10         43
1408            10         44
1409            10         45
1410            10         46
1411            10         47
1412            10         48
1413            10         49
1414            10         50
1415            10         51
1416            10         52
1417            10         53
1418            10         54
1419            10         55
1420            10         56
1421            10         57
1422            10         58
1423            10         59
1424            10         60
1425            10         61
1426            10         62
1427            10         63
1428            10         64
1429            10         65
1430            10         66
1431            10         67
1432            10         68
1433            10         69
1434            10         70
1435            10         71
1436            10         72
1437            10         73
1438            10         74
1439            10         75
1440            10         76
1441            10         77
1442            10         78
1443            10         79
1444            10         80
1445            10         81
1446            10         82
1447            10         83
1448            10         84
1449            10         85
1450            10         86
1451            10         87
1452            10         88
1453            10         89
1454            10         90
1455            10         91
1456            10         92
1457            10         93
1458            10         94
1459            10         95
1460            10         96
1461            10         97
1462            10         98
1463            10         99
1464            10        100
1465            10        101
1466            10        102
1467            10        103
1468            10        104
1469            10        105
1470            10        106
1471            10        107
1472            10        108
1473            10        109
1474            11          1
1475            11          2
1476            11          3
1477            11          4
1478            11          5
1479            11          6
1480            11          7
1481            11          8
1482            11          9
1483            11         10
1484            11         11
1485            11         12
1486            11         13
1487            11         14
1488            11         15
1489            11         16
1490            11         17
1491            11         18
1492            11         19
1493            11         20
1494            11         21
1495            11         22
1496            11         23
1497            11         24
1498            11         25
1499            11         26
1500            11         27
1501            11         28
1502            11         29
1503            11         30
1504            11         31
1505            11         32
1506            11         33
1507            11         34
1508            11         35
1509            11         36
1510            11         37
1511            11         38
1512            11         39
1513            11         40
1514            11         41
1515            11         42
1516            11         43
1517            11         44
1518            11         45
1519            11         46
1520            11         47
1521            11         48
1522            11         49
1523            11         50
1524            11         51
1525            11         52
1526            11         53
1527            11         54
1528            11         55
1529            11         56
1530            11         57
1531            11         58
1532            11         59
1533            11         60
1534            11         61
1535            11         62
1536            11         63
1537            11         64
1538            11         65
1539            11         66
1540            11         67
1541            11         68
1542            11         69
1543            11         70
1544            11         71
1545            11         72
1546            11         73
1547            11         74
1548            11         75
1549            11         76
1550            11         77
1551            11         78
1552            11         79
1553            11         80
1554            11         81
1555            11         82
1556            11         83
1557            11         84
1558            11         85
1559            11         86
1560            11         87
1561            11         88
1562            11         89
1563            11         90
1564            11         91
1565            11         92
1566            11         93
1567            11         94
1568            11         95
1569            11         96
1570            11         97
1571            11         98
1572            11         99
1573            11        100
1574            11        101
1575            11        102
1576            11        103
1577            11        104
1578            11        105
1579            11        106
1580            11        107
1581            11        108
1582            11        109
1583            11        110
1584            11        111
1585            11        112
1586            11        113
1587            11        114
1588            11        115
1589            11        116
1590            11        117
1591            11        118
1592            11        119
1593            11        120
1594            11        121
1595            11        122
1596            11        123
1597            12          1
1598            12          2
1599            12          3
1600            12          4
1601            12          5
1602            12          6
1603            12          7
1604            12          8
1605            12          9
1606            12         10
1607            12         11
1608            12         12
1609            12         13
1610            12         14
1611            12         15
1612            12         16
1613            12         17
1614            12         18
1615            12         19
1616            12         20
1617            12         21
1618            12         22
1619            12         23
1620            12         24
1621            12         25
1622            12         26
1623            12         27
1624            12         28
1625            12         29
1626            12         30
1627            12         31
1628            12         32
1629            12         33
1630            12         34
1631            12         35
1632            12         36
1633            12         37
1634            12         38
1635            12         39
1636            12         40
1637            12         41
1638            12         42
1639            12         43
1640            12         44
1641            12         45
1642            12         46
1643            12         47
1644            12         48
1645            12         49
1646            12         50
1647            12         51
1648            12         52
1649            12         53
1650            12         54
1651            12         55
1652            12         56
1653            12         57
1654            12         58
1655            12         59
1656            12         60
1657            12         61
1658            12         62
1659            12         63
1660            12         64
1661            12         65
1662            12         66
1663            12         67
1664            12         68
1665            12         69
1666            12         70
1667            12         71
1668            12         72
1669            12         73
1670            12         74
1671            12         75
1672            12         76
1673            12         77
1674            12         78
1675            12         79
1676            12         80
1677            12         81
1678            12         82
1679            12         83
1680            12         84
1681            12         85
1682            12         86
1683            12         87
1684            12         88
1685            12         89
1686            12         90
1687            12         91
1688            12         92
1689            12         93
1690            12         94
1691            12         95
1692            12         96
1693            12         97
1694            12         98
1695            12         99
1696            12        100
1697            12        101
1698            12        102
1699            12        103
1700            12        104
1701            12        105
1702            12        106
1703            12        107
1704            12        108
1705            12        109
1706            12        110
1707            12        111
1708            13          1
1709            13          2
1710            13          3
1711            13          4
1712            13          5
1713            13          6
1714            13          7
1715            13          8
1716            13          9
1717            13         10
1718            13         11
1719            13         12
1720            13         13
1721            13         14
1722            13         15
1723            13         16
1724            13         17
1725            13         18
1726            13         19
1727            13         20
1728            13         21
1729            13         22
1730            13         23
1731            13         24
1732            13         25
1733            13         26
1734            13         27
1735            13         28
1736            13         29
1737            13         30
1738            13         31
1739            13         32
1740            13         33
1741            13         34
1742            13         35
1743            13         36
1744            13         37
1745            13         38
1746            13         39
1747            13         40
1748            13         41
1749            13         42
1750            13         43
1751            14          1
1752            14          2
1753            14          3
1754            14          4
1755            14          5
1756            14          6
1757            14          7
1758            14          8
1759            14          9
1760            14         10
1761            14         11
1762            14         12
1763            14         13
1764            14         14
1765            14         15
1766            14         16
1767            14         17
1768            14         18
1769            14         19
1770            14         20
1771            14         21
1772            14         22
1773            14         23
1774            14         24
1775            14         25
1776            14         26
1777            14         27
1778            14         28
1779            14         29
1780            14         30
1781            14         31
1782            14         32
1783            14         33
1784            14         34
1785            14         35
1786            14         36
1787            14         37
1788            14         38
1789            14         39
1790            14         40
1791            14         41
1792            14         42
1793            14         43
1794            14         44
1795            14         45
1796            14         46
1797            14         47
1798            14         48
1799            14         49
1800            14         50
1801            14         51
1802            14         52
1803            15          1
1804            15          2
1805            15          3
1806            15          4
1807            15          5
1808            15          6
1809            15          7
1810            15          8
1811            15          9
1812            15         10
1813            15         11
1814            15         12
1815            15         13
1816            15         14
1817            15         15
1818            15         16
1819            15         17
1820            15         18
1821            15         19
1822            15         20
1823            15         21
1824            15         22
1825            15         23
1826            15         24
1827            15         25
1828            15         26
1829            15         27
1830            15         28
1831            15         29
1832            15         30
1833            15         31
1834            15         32
1835            15         33
1836            15         34
1837            15         35
1838            15         36
1839            15         37
1840            15         38
1841            15         39
1842            15         40
1843            15         41
1844            15         42
1845            15         43
1846            15         44
1847            15         45
1848            15         46
1849            15         47
1850            15         48
1851            15         49
1852            15         50
1853            15         51
1854            15         52
1855            15         53
1856            15         54
1857            15         55
1858            15         56
1859            15         57
1860            15         58
1861            15         59
1862            15         60
1863            15         61
1864            15         62
1865            15         63
1866            15         64
1867            15         65
1868            15         66
1869            15         67
1870            15         68
1871            15         69
1872            15         70
1873            15         71
1874            15         72
1875            15         73
1876            15         74
1877            15         75
1878            15         76
1879            15         77
1880            15         78
1881            15         79
1882            15         80
1883            15         81
1884            15         82
1885            15         83
1886            15         84
1887            15         85
1888            15         86
1889            15         87
1890            15         88
1891            15         89
1892            15         90
1893            15         91
1894            15         92
1895            15         93
1896            15         94
1897            15         95
1898            15         96
1899            15         97
1900            15         98
1901            15         99
1902            16          1
1903            16          2
1904            16          3
1905            16          4
1906            16          5
1907            16          6
1908            16          7
1909            16          8
1910            16          9
1911            16         10
1912            16         11
1913            16         12
1914            16         13
1915            16         14
1916            16         15
1917            16         16
1918            16         17
1919            16         18
1920            16         19
1921            16         20
1922            16         21
1923            16         22
1924            16         23
1925            16         24
1926            16         25
1927            16         26
1928            16         27
1929            16         28
1930            16         29
1931            16         30
1932            16         31
1933            16         32
1934            16         33
1935            16         34
1936            16         35
1937            16         36
1938            16         37
1939            16         38
1940            16         39
1941            16         40
1942            16         41
1943            16         42
1944            16         43
1945            16         44
1946            16         45
1947            16         46
1948            16         47
1949            16         48
1950            16         49
1951            16         50
1952            16         51
1953            16         52
1954            16         53
1955            16         54
1956            16         55
1957            16         56
1958            16         57
1959            16         58
1960            16         59
1961            16         60
1962            16         61
1963            16         62
1964            16         63
1965            16         64
1966            16         65
1967            16         66
1968            16         67
1969            16         68
1970            16         69
1971            16         70
1972            16         71
1973            16         72
1974            16         73
1975            16         74
1976            16         75
1977            16         76
1978            16         77
1979            16         78
1980            16         79
1981            16         80
1982            16         81
1983            16         82
1984            16         83
1985            16         84
1986            16         85
1987            16         86
1988            16         87
1989            16         88
1990            16         89
1991            16         90
1992            16         91
1993            16         92
1994            16         93
1995            16         94
1996            16         95
1997            16         96
1998            16         97
1999            16         98
2000            16         99
2001            16        100
2002            16        101
2003            16        102
2004            16        103
2005            16        104
2006            16        105
2007            16        106
2008            16        107
2009            16        108
2010            16        109
2011            16        110
2012            16        111
2013            16        112
2014            16        113
2015            16        114
2016            16        115
2017            16        116
2018            16        117
2019            16        118
2020            16        119
2021            16        120
2022            16        121
2023            16        122
2024            16        123
2025            16        124
2026            16        125
2027            16        126
2028            16        127
2029            16        128
2030            17          1
2031            17          2
2032            17          3
2033            17          4
2034            17          5
2035            17          6
2036            17          7
2037            17          8
2038            17          9
2039            17         10
2040            17         11
2041            17         12
2042            17         13
2043            17         14
2044            17         15
2045            17         16
2046            17         17
2047            17         18
2048            17         19
2049            17         20
2050            17         21
2051            17         22
2052            17         23
2053            17         24
2054            17         25
2055            17         26
2056            17         27
2057            17         28
2058            17         29
2059            17         30
2060            17         31
2061            17         32
2062            17         33
2063            17         34
2064            17         35
2065            17         36
2066            17         37
2067            17         38
2068            17         39
2069            17         40
2070            17         41
2071            17         42
2072            17         43
2073            17         44
2074            17         45
2075            17         46
2076            17         47
2077            17         48
2078            17         49
2079            17         50
2080            17         51
2081            17         52
2082            17         53
2083            17         54
2084            17         55
2085            17         56
2086            17         57
2087            17         58
2088            17         59
2089            17         60
2090            17         61
2091            17         62
2092            17         63
2093            17         64
2094            17         65
2095            17         66
2096            17         67
2097            17         68
2098            17         69
2099            17         70
2100            17         71
2101            17         72
2102            17         73
2103            17         74
2104            17         75
2105            17         76
2106            17         77
2107            17         78
2108            17         79
2109            17         80
2110            17         81
2111            17         82
2112            17         83
2113            17         84
2114            17         85
2115            17         86
2116            17         87
2117            17         88
2118            17         89
2119            17         90
2120            17         91
2121            17         92
2122            17         93
2123            17         94
2124            17         95
2125            17         96
2126            17         97
2127            17         98
2128            17         99
2129            17        100
2130            17        101
2131            17        102
2132            17        103
2133            17        104
2134            17        105
2135            17        106
2136            17        107
2137            17        108
2138            17        109
2139            17        110
2140            17        111
2141            18          1
2142            18          2
2143            18          3
2144            18          4
2145            18          5
2146            18          6
2147            18          7
2148            18          8
2149            18          9
2150            18         10
2151            18         11
2152            18         12
2153            18         13
2154            18         14
2155            18         15
2156            18         16
2157            18         17
2158            18         18
2159            18         19
2160            18         20
2161            18         21
2162            18         22
2163            18         23
2164            18         24
2165            18         25
2166            18         26
2167            18         27
2168            18         28
2169            18         29
2170            18         30
2171            18         31
2172            18         32
2173            18         33
2174            18         34
2175            18         35
2176            18         36
2177            18         37
2178            18         38
2179            18         39
2180            18         40
2181            18         41
2182            18         42
2183            18         43
2184            18         44
2185            18         45
2186            18         46
2187            18         47
2188            18         48
2189            18         49
2190            18         50
2191            18         51
2192            18         52
2193            18         53
2194            18         54
2195            18         55
2196            18         56
2197            18         57
2198            18         58
2199            18         59
2200            18         60
2201            18         61
2202            18         62
2203            18         63
2204            18         64
2205            18         65
2206            18         66
2207            18         67
2208            18         68
2209            18         69
2210            18         70
2211            18         71
2212            18         72
2213            18         73
2214            18         74
2215            18         75
2216            18         76
2217            18         77
2218            18         78
2219            18         79
2220            18         80
2221            18         81
2222            18         82
2223            18         83
2224            18         84
2225            18         85
2226            18         86
2227            18         87
2228            18         88
2229            18         89
2230            18         90
2231            18         91
2232            18         92
2233            18         93
2234            18         94
2235            18         95
2236            18         96
2237            18         97
2238            18         98
2239            18         99
2240            18        100
2241            18        101
2242            18        102
2243            18        103
2244            18        104
2245            18        105
2246            18        106
2247            18        107
2248            18        108
2249            18        109
2250            18        110
2251            19          1
2252            19          2
2253            19          3
2254            19          4
2255            19          5
2256            19          6
2257            19          7
2258            19          8
2259            19          9
2260            19         10
2261            19         11
2262            19         12
2263            19         13
2264            19         14
2265            19         15
2266            19         16
2267            19         17
2268            19         18
2269            19         19
2270            19         20
2271            19         21
2272            19         22
2273            19         23
2274            19         24
2275            19         25
2276            19         26
2277            19         27
2278            19         28
2279            19         29
2280            19         30
2281            19         31
2282            19         32
2283            19         33
2284            19         34
2285            19         35
2286            19         36
2287            19         37
2288            19         38
2289            19         39
2290            19         40
2291            19         41
2292            19         42
2293            19         43
2294            19         44
2295            19         45
2296            19         46
2297            19         47
2298            19         48
2299            19         49
2300            19         50
2301            19         51
2302            19         52
2303            19         53
2304            19         54
2305            19         55
2306            19         56
2307            19         57
2308            19         58
2309            19         59
2310            19         60
2311            19         61
2312            19         62
2313            19         63
2314            19         64
2315            19         65
2316            19         66
2317            19         67
2318            19         68
2319            19         69
2320            19         70
2321            19         71
2322            19         72
2323            19         73
2324            19         74
2325            19         75
2326            19         76
2327            19         77
2328            19         78
2329            19         79
2330            19         80
2331            19         81
2332            19         82
2333            19         83
2334            19         84
2335            19         85
2336            19         86
2337            19         87
2338            19         88
2339            19         89
2340            19         90
2341            19         91
2342            19         92
2343            19         93
2344            19         94
2345            19         95
2346            19         96
2347            19         97
2348            19         98
2349            20          1
2350            20          2
2351            20          3
2352            20          4
2353            20          5
2354            20          6
2355            20          7
2356            20          8
2357            20          9
2358            20         10
2359            20         11
2360            20         12
2361            20         13
2362            20         14
2363            20         15
2364            20         16
2365            20         17
2366            20         18
2367            20         19
2368            20         20
2369            20         21
2370            20         22
2371            20         23
2372            20         24
2373            20         25
2374            20         26
2375            20         27
2376            20         28
2377            20         29
2378            20         30
2379            20         31
2380            20         32
2381            20         33
2382            20         34
2383            20         35
2384            20         36
2385            20         37
2386            20         38
2387            20         39
2388            20         40
2389            20         41
2390            20         42
2391            20         43
2392            20         44
2393            20         45
2394            20         46
2395            20         47
2396            20         48
2397            20         49
2398            20         50
2399            20         51
2400            20         52
2401            20         53
2402            20         54
2403            20         55
2404            20         56
2405            20         57
2406            20         58
2407            20         59
2408            20         60
2409            20         61
2410            20         62
2411            20         63
2412            20         64
2413            20         65
2414            20         66
2415            20         67
2416            20         68
2417            20         69
2418            20         70
2419            20         71
2420            20         72
2421            20         73
2422            20         74
2423            20         75
2424            20         76
2425            20         77
2426            20         78
2427            20         79
2428            20         80
2429            20         81
2430            20         82
2431            20         83
2432            20         84
2433            20         85
2434            20         86
2435            20         87
2436            20         88
2437            20         89
2438            20         90
2439            20         91
2440            20         92
2441            20         93
2442            20         94
2443            20         95
2444            20         96
2445            20         97
2446            20         98
2447            20         99
2448            20        100
2449            20        101
2450            20        102
2451            20        103
2452            20        104
2453            20        105
2454            20        106
2455            20        107
2456            20        108
2457            20        109
2458            20        110
2459            20        111
2460            20        112
2461            20        113
2462            20        114
2463            20        115
2464            20        116
2465            20        117
2466            20        118
2467            20        119
2468            20        120
2469            20        121
2470            20        122
2471            20        123
2472            20        124
2473            20        125
2474            20        126
2475            20        127
2476            20        128
2477            20        129
2478            20        130
2479            20        131
2480            20        132
2481            20        133
2482            20        134
2483            20        135
2484            21          1
2485            21          2
2486            21          3
2487            21          4
2488            21          5
2489            21          6
2490            21          7
2491            21          8
2492            21          9
2493            21         10
2494            21         11
2495            21         12
2496            21         13
2497            21         14
2498            21         15
2499            21         16
2500            21         17
2501            21         18
2502            21         19
2503            21         20
2504            21         21
2505            21         22
2506            21         23
2507            21         24
2508            21         25
2509            21         26
2510            21         27
2511            21         28
2512            21         29
2513            21         30
2514            21         31
2515            21         32
2516            21         33
2517            21         34
2518            21         35
2519            21         36
2520            21         37
2521            21         38
2522            21         39
2523            21         40
2524            21         41
2525            21         42
2526            21         43
2527            21         44
2528            21         45
2529            21         46
2530            21         47
2531            21         48
2532            21         49
2533            21         50
2534            21         51
2535            21         52
2536            21         53
2537            21         54
2538            21         55
2539            21         56
2540            21         57
2541            21         58
2542            21         59
2543            21         60
2544            21         61
2545            21         62
2546            21         63
2547            21         64
2548            21         65
2549            21         66
2550            21         67
2551            21         68
2552            21         69
2553            21         70
2554            21         71
2555            21         72
2556            21         73
2557            21         74
2558            21         75
2559            21         76
2560            21         77
2561            21         78
2562            21         79
2563            21         80
2564            21         81
2565            21         82
2566            21         83
2567            21         84
2568            21         85
2569            21         86
2570            21         87
2571            21         88
2572            21         89
2573            21         90
2574            21         91
2575            21         92
2576            21         93
2577            21         94
2578            21         95
2579            21         96
2580            21         97
2581            21         98
2582            21         99
2583            21        100
2584            21        101
2585            21        102
2586            21        103
2587            21        104
2588            21        105
2589            21        106
2590            21        107
2591            21        108
2592            21        109
2593            21        110
2594            21        111
2595            21        112
2596            22          1
2597            22          2
2598            22          3
2599            22          4
2600            22          5
2601            22          6
2602            22          7
2603            22          8
2604            22          9
2605            22         10
2606            22         11
2607            22         12
2608            22         13
2609            22         14
2610            22         15
2611            22         16
2612            22         17
2613            22         18
2614            22         19
2615            22         20
2616            22         21
2617            22         22
2618            22         23
2619            22         24
2620            22         25
2621            22         26
2622            22         27
2623            22         28
2624            22         29
2625            22         30
2626            22         31
2627            22         32
2628            22         33
2629            22         34
2630            22         35
2631            22         36
2632            22         37
2633            22         38
2634            22         39
2635            22         40
2636            22         41
2637            22         42
2638            22         43
2639            22         44
2640            22         45
2641            22         46
2642            22         47
2643            22         48
2644            22         49
2645            22         50
2646            22         51
2647            22         52
2648            22         53
2649            22         54
2650            22         55
2651            22         56
2652            22         57
2653            22         58
2654            22         59
2655            22         60
2656            22         61
2657            22         62
2658            22         63
2659            22         64
2660            22         65
2661            22         66
2662            22         67
2663            22         68
2664            22         69
2665            22         70
2666            22         71
2667            22         72
2668            22         73
2669            22         74
2670            22         75
2671            22         76
2672            22         77
2673            22         78
2674            23          1
2675            23          2
2676            23          3
2677            23          4
2678            23          5
2679            23          6
2680            23          7
2681            23          8
2682            23          9
2683            23         10
2684            23         11
2685            23         12
2686            23         13
2687            23         14
2688            23         15
2689            23         16
2690            23         17
2691            23         18
2692            23         19
2693            23         20
2694            23         21
2695            23         22
2696            23         23
2697            23         24
2698            23         25
2699            23         26
2700            23         27
2701            23         28
2702            23         29
2703            23         30
2704            23         31
2705            23         32
2706            23         33
2707            23         34
2708            23         35
2709            23         36
2710            23         37
2711            23         38
2712            23         39
2713            23         40
2714            23         41
2715            23         42
2716            23         43
2717            23         44
2718            23         45
2719            23         46
2720            23         47
2721            23         48
2722            23         49
2723            23         50
2724            23         51
2725            23         52
2726            23         53
2727            23         54
2728            23         55
2729            23         56
2730            23         57
2731            23         58
2732            23         59
2733            23         60
2734            23         61
2735            23         62
2736            23         63
2737            23         64
2738            23         65
2739            23         66
2740            23         67
2741            23         68
2742            23         69
2743            23         70
2744            23         71
2745            23         72
2746            23         73
2747            23         74
2748            23         75
2749            23         76
2750            23         77
2751            23         78
2752            23         79
2753            23         80
2754            23         81
2755            23         82
2756            23         83
2757            23         84
2758            23         85
2759            23         86
2760            23         87
2761            23         88
2762            23         89
2763            23         90
2764            23         91
2765            23         92
2766            23         93
2767            23         94
2768            23         95
2769            23         96
2770            23         97
2771            23         98
2772            23         99
2773            23        100
2774            23        101
2775            23        102
2776            23        103
2777            23        104
2778            23        105
2779            23        106
2780            23        107
2781            23        108
2782            23        109
2783            23        110
2784            23        111
2785            23        112
2786            23        113
2787            23        114
2788            23        115
2789            23        116
2790            23        117
2791            23        118
2792            24          1
2793            24          2
2794            24          3
2795            24          4
2796            24          5
2797            24          6
2798            24          7
2799            24          8
2800            24          9
2801            24         10
2802            24         11
2803            24         12
2804            24         13
2805            24         14
2806            24         15
2807            24         16
2808            24         17
2809            24         18
2810            24         19
2811            24         20
2812            24         21
2813            24         22
2814            24         23
2815            24         24
2816            24         25
2817            24         26
2818            24         27
2819            24         28
2820            24         29
2821            24         30
2822            24         31
2823            24         32
2824            24         33
2825            24         34
2826            24         35
2827            24         36
2828            24         37
2829            24         38
2830            24         39
2831            24         40
2832            24         41
2833            24         42
2834            24         43
2835            24         44
2836            24         45
2837            24         46
2838            24         47
2839            24         48
2840            24         49
2841            24         50
2842            24         51
2843            24         52
2844            24         53
2845            24         54
2846            24         55
2847            24         56
2848            24         57
2849            24         58
2850            24         59
2851            24         60
2852            24         61
2853            24         62
2854            24         63
2855            24         64
2856            25          1
2857            25          2
2858            25          3
2859            25          4
2860            25          5
2861            25          6
2862            25          7
2863            25          8
2864            25          9
2865            25         10
2866            25         11
2867            25         12
2868            25         13
2869            25         14
2870            25         15
2871            25         16
2872            25         17
2873            25         18
2874            25         19
2875            25         20
2876            25         21
2877            25         22
2878            25         23
2879            25         24
2880            25         25
2881            25         26
2882            25         27
2883            25         28
2884            25         29
2885            25         30
2886            25         31
2887            25         32
2888            25         33
2889            25         34
2890            25         35
2891            25         36
2892            25         37
2893            25         38
2894            25         39
2895            25         40
2896            25         41
2897            25         42
2898            25         43
2899            25         44
2900            25         45
2901            25         46
2902            25         47
2903            25         48
2904            25         49
2905            25         50
2906            25         51
2907            25         52
2908            25         53
2909            25         54
2910            25         55
2911            25         56
2912            25         57
2913            25         58
2914            25         59
2915            25         60
2916            25         61
2917            25         62
2918            25         63
2919            25         64
2920            25         65
2921            25         66
2922            25         67
2923            25         68
2924            25         69
2925            25         70
2926            25         71
2927            25         72
2928            25         73
2929            25         74
2930            25         75
2931            25         76
2932            25         77
2933            26          1
2934            26          2
2935            26          3
2936            26          4
2937            26          5
2938            26          6
2939            26          7
2940            26          8
2941            26          9
2942            26         10
2943            26         11
2944            26         12
2945            26         13
2946            26         14
2947            26         15
2948            26         16
2949            26         17
2950            26         18
2951            26         19
2952            26         20
2953            26         21
2954            26         22
2955            26         23
2956            26         24
2957            26         25
2958            26         26
2959            26         27
2960            26         28
2961            26         29
2962            26         30
2963            26         31
2964            26         32
2965            26         33
2966            26         34
2967            26         35
2968            26         36
2969            26         37
2970            26         38
2971            26         39
2972            26         40
2973            26         41
2974            26         42
2975            26         43
2976            26         44
2977            26         45
2978            26         46
2979            26         47
2980            26         48
2981            26         49
2982            26         50
2983            26         51
2984            26         52
2985            26         53
2986            26         54
2987            26         55
2988            26         56
2989            26         57
2990            26         58
2991            26         59
2992            26         60
2993            26         61
2994            26         62
2995            26         63
2996            26         64
2997            26         65
2998            26         66
2999            26         67
3000            26         68
3001            26         69
3002            26         70
3003            26         71
3004            26         72
3005            26         73
3006            26         74
3007            26         75
3008            26         76
3009            26         77
3010            26         78
3011            26         79
3012            26         80
3013            26         81
3014            26         82
3015            26         83
3016            26         84
3017            26         85
3018            26         86
3019            26         87
3020            26         88
3021            26         89
3022            26         90
3023            26         91
3024            26         92
3025            26         93
3026            26         94
3027            26         95
3028            26         96
3029            26         97
3030            26         98
3031            26         99
3032            26        100
3033            26        101
3034            26        102
3035            26        103
3036            26        104
3037            26        105
3038            26        106
3039            26        107
3040            26        108
3041            26        109
3042            26        110
3043            26        111
3044            26        112
3045            26        113
3046            26        114
3047            26        115
3048            26        116
3049            26        117
3050            26        118
3051            26        119
3052            26        120
3053            26        121
3054            26        122
3055            26        123
3056            26        124
3057            26        125
3058            26        126
3059            26        127
3060            26        128
3061            26        129
3062            26        130
3063            26        131
3064            26        132
3065            26        133
3066            26        134
3067            26        135
3068            26        136
3069            26        137
3070            26        138
3071            26        139
3072            26        140
3073            26        141
3074            26        142
3075            26        143
3076            26        144
3077            26        145
3078            26        146
3079            26        147
3080            26        148
3081            26        149
3082            26        150
3083            26        151
3084            26        152
3085            26        153
3086            26        154
3087            26        155
3088            26        156
3089            26        157
3090            26        158
3091            26        159
3092            26        160
3093            26        161
3094            26        162
3095            26        163
3096            26        164
3097            26        165
3098            26        166
3099            26        167
3100            26        168
3101            26        169
3102            26        170
3103            26        171
3104            26        172
3105            26        173
3106            26        174
3107            26        175
3108            26        176
3109            26        177
3110            26        178
3111            26        179
3112            26        180
3113            26        181
3114            26        182
3115            26        183
3116            26        184
3117            26        185
3118            26        186
3119            26        187
3120            26        188
3121            26        189
3122            26        190
3123            26        191
3124            26        192
3125            26        193
3126            26        194
3127            26        195
3128            26        196
3129            26        197
3130            26        198
3131            26        199
3132            26        200
3133            26        201
3134            26        202
3135            26        203
3136            26        204
3137            26        205
3138            26        206
3139            26        207
3140            26        208
3141            26        209
3142            26        210
3143            26        211
3144            26        212
3145            26        213
3146            26        214
3147            26        215
3148            26        216
3149            26        217
3150            26        218
3151            26        219
3152            26        220
3153            26        221
3154            26        222
3155            26        223
3156            26        224
3157            26        225
3158            26        226
3159            26        227
3160            27          1
3161            27          2
3162            27          3
3163            27          4
3164            27          5
3165            27          6
3166            27          7
3167            27          8
3168            27          9
3169            27         10
3170            27         11
3171            27         12
3172            27         13
3173            27         14
3174            27         15
3175            27         16
3176            27         17
3177            27         18
3178            27         19
3179            27         20
3180            27         21
3181            27         22
3182            27         23
3183            27         24
3184            27         25
3185            27         26
3186            27         27
3187            27         28
3188            27         29
3189            27         30
3190            27         31
3191            27         32
3192            27         33
3193            27         34
3194            27         35
3195            27         36
3196            27         37
3197            27         38
3198            27         39
3199            27         40
3200            27         41
3201            27         42
3202            27         43
3203            27         44
3204            27         45
3205            27         46
3206            27         47
3207            27         48
3208            27         49
3209            27         50
3210            27         51
3211            27         52
3212            27         53
3213            27         54
3214            27         55
3215            27         56
3216            27         57
3217            27         58
3218            27         59
3219            27         60
3220            27         61
3221            27         62
3222            27         63
3223            27         64
3224            27         65
3225            27         66
3226            27         67
3227            27         68
3228            27         69
3229            27         70
3230            27         71
3231            27         72
3232            27         73
3233            27         74
3234            27         75
3235            27         76
3236            27         77
3237            27         78
3238            27         79
3239            27         80
3240            27         81
3241            27         82
3242            27         83
3243            27         84
3244            27         85
3245            27         86
3246            27         87
3247            27         88
3248            27         89
3249            27         90
3250            27         91
3251            27         92
3252            27         93
3253            28          1
3254            28          2
3255            28          3
3256            28          4
3257            28          5
3258            28          6
3259            28          7
3260            28          8
3261            28          9
3262            28         10
3263            28         11
3264            28         12
3265            28         13
3266            28         14
3267            28         15
3268            28         16
3269            28         17
3270            28         18
3271            28         19
3272            28         20
3273            28         21
3274            28         22
3275            28         23
3276            28         24
3277            28         25
3278            28         26
3279            28         27
3280            28         28
3281            28         29
3282            28         30
3283            28         31
3284            28         32
3285            28         33
3286            28         34
3287            28         35
3288            28         36
3289            28         37
3290            28         38
3291            28         39
3292            28         40
3293            28         41
3294            28         42
3295            28         43
3296            28         44
3297            28         45
3298            28         46
3299            28         47
3300            28         48
3301            28         49
3302            28         50
3303            28         51
3304            28         52
3305            28         53
3306            28         54
3307            28         55
3308            28         56
3309            28         57
3310            28         58
3311            28         59
3312            28         60
3313            28         61
3314            28         62
3315            28         63
3316            28         64
3317            28         65
3318            28         66
3319            28         67
3320            28         68
3321            28         69
3322            28         70
3323            28         71
3324            28         72
3325            28         73
3326            28         74
3327            28         75
3328            28         76
3329            28         77
3330            28         78
3331            28         79
3332            28         80
3333            28         81
3334            28         82
3335            28         83
3336            28         84
3337            28         85
3338            28         86
3339            28         87
3340            28         88
3341            29          1
3342            29          2
3343            29          3
3344            29          4
3345            29          5
3346            29          6
3347            29          7
3348            29          8
3349            29          9
3350            29         10
3351            29         11
3352            29         12
3353            29         13
3354            29         14
3355            29         15
3356            29         16
3357            29         17
3358            29         18
3359            29         19
3360            29         20
3361            29         21
3362            29         22
3363            29         23
3364            29         24
3365            29         25
3366            29         26
3367            29         27
3368            29         28
3369            29         29
3370            29         30
3371            29         31
3372            29         32
3373            29         33
3374            29         34
3375            29         35
3376            29         36
3377            29         37
3378            29         38
3379            29         39
3380            29         40
3381            29         41
3382            29         42
3383            29         43
3384            29         44
3385            29         45
3386            29         46
3387            29         47
3388            29         48
3389            29         49
3390            29         50
3391            29         51
3392            29         52
3393            29         53
3394            29         54
3395            29         55
3396            29         56
3397            29         57
3398            29         58
3399            29         59
3400            29         60
3401            29         61
3402            29         62
3403            29         63
3404            29         64
3405            29         65
3406            29         66
3407            29         67
3408            29         68
3409            29         69
3410            30          1
3411            30          2
3412            30          3
3413            30          4
3414            30          5
3415            30          6
3416            30          7
3417            30          8
3418            30          9
3419            30         10
3420            30         11
3421            30         12
3422            30         13
3423            30         14
3424            30         15
3425            30         16
3426            30         17
3427            30         18
3428            30         19
3429            30         20
3430            30         21
3431            30         22
3432            30         23
3433            30         24
3434            30         25
3435            30         26
3436            30         27
3437            30         28
3438            30         29
3439            30         30
3440            30         31
3441            30         32
3442            30         33
3443            30         34
3444            30         35
3445            30         36
3446            30         37
3447            30         38
3448            30         39
3449            30         40
3450            30         41
3451            30         42
3452            30         43
3453            30         44
3454            30         45
3455            30         46
3456            30         47
3457            30         48
3458            30         49
3459            30         50
3460            30         51
3461            30         52
3462            30         53
3463            30         54
3464            30         55
3465            30         56
3466            30         57
3467            30         58
3468            30         59
3469            30         60
3470            31          1
3471            31          2
3472            31          3
3473            31          4
3474            31          5
3475            31          6
3476            31          7
3477            31          8
3478            31          9
3479            31         10
3480            31         11
3481            31         12
3482            31         13
3483            31         14
3484            31         15
3485            31         16
3486            31         17
3487            31         18
3488            31         19
3489            31         20
3490            31         21
3491            31         22
3492            31         23
3493            31         24
3494            31         25
3495            31         26
3496            31         27
3497            31         28
3498            31         29
3499            31         30
3500            31         31
3501            31         32
3502            31         33
3503            31         34
3504            32          1
3505            32          2
3506            32          3
3507            32          4
3508            32          5
3509            32          6
3510            32          7
3511            32          8
3512            32          9
3513            32         10
3514            32         11
3515            32         12
3516            32         13
3517            32         14
3518            32         15
3519            32         16
3520            32         17
3521            32         18
3522            32         19
3523            32         20
3524            32         21
3525            32         22
3526            32         23
3527            32         24
3528            32         25
3529            32         26
3530            32         27
3531            32         28
3532            32         29
3533            32         30
3534            33          1
3535            33          2
3536            33          3
3537            33          4
3538            33          5
3539            33          6
3540            33          7
3541            33          8
3542            33          9
3543            33         10
3544            33         11
3545            33         12
3546            33         13
3547            33         14
3548            33         15
3549            33         16
3550            33         17
3551            33         18
3552            33         19
3553            33         20
3554            33         21
3555            33         22
3556            33         23
3557            33         24
3558            33         25
3559            33         26
3560            33         27
3561            33         28
3562            33         29
3563            33         30
3564            33         31
3565            33         32
3566            33         33
3567            33         34
3568            33         35
3569            33         36
3570            33         37
3571            33         38
3572            33         39
3573            33         40
3574            33         41
3575            33         42
3576            33         43
3577            33         44
3578            33         45
3579            33         46
3580            33         47
3581            33         48
3582            33         49
3583            33         50
3584            33         51
3585            33         52
3586            33         53
3587            33         54
3588            33         55
3589            33         56
3590            33         57
3591            33         58
3592            33         59
3593            33         60
3594            33         61
3595            33         62
3596            33         63
3597            33         64
3598            33         65
3599            33         66
3600            33         67
3601            33         68
3602            33         69
3603            33         70
3604            33         71
3605            33         72
3606            33         73
3607            34          1
3608            34          2
3609            34          3
3610            34          4
3611            34          5
3612            34          6
3613            34          7
3614            34          8
3615            34          9
3616            34         10
3617            34         11
3618            34         12
3619            34         13
3620            34         14
3621            34         15
3622            34         16
3623            34         17
3624            34         18
3625            34         19
3626            34         20
3627            34         21
3628            34         22
3629            34         23
3630            34         24
3631            34         25
3632            34         26
3633            34         27
3634            34         28
3635            34         29
3636            34         30
3637            34         31
3638            34         32
3639            34         33
3640            34         34
3641            34         35
3642            34         36
3643            34         37
3644            34         38
3645            34         39
3646            34         40
3647            34         41
3648            34         42
3649            34         43
3650            34         44
3651            34         45
3652            34         46
3653            34         47
3654            34         48
3655            34         49
3656            34         50
3657            34         51
3658            34         52
3659            34         53
3660            34         54
3661            35          1
3662            35          2
3663            35          3
3664            35          4
3665            35          5
3666            35          6
3667            35          7
3668            35          8
3669            35          9
3670            35         10
3671            35         11
3672            35         12
3673            35         13
3674            35         14
3675            35         15
3676            35         16
3677            35         17
3678            35         18
3679            35         19
3680            35         20
3681            35         21
3682            35         22
3683            35         23
3684            35         24
3685            35         25
3686            35         26
3687            35         27
3688            35         28
3689            35         29
3690            35         30
3691            35         31
3692            35         32
3693            35         33
3694            35         34
3695            35         35
3696            35         36
3697            35         37
3698            35         38
3699            35         39
3700            35         40
3701            35         41
3702            35         42
3703            35         43
3704            35         44
3705            35         45
3706            36          1
3707            36          2
3708            36          3
3709            36          4
3710            36          5
3711            36          6
3712            36          7
3713            36          8
3714            36          9
3715            36         10
3716            36         11
3717            36         12
3718            36         13
3719            36         14
3720            36         15
3721            36         16
3722            36         17
3723            36         18
3724            36         19
3725            36         20
3726            36         21
3727            36         22
3728            36         23
3729            36         24
3730            36         25
3731            36         26
3732            36         27
3733            36         28
3734            36         29
3735            36         30
3736            36         31
3737            36         32
3738            36         33
3739            36         34
3740            36         35
3741            36         36
3742            36         37
3743            36         38
3744            36         39
3745            36         40
3746            36         41
3747            36         42
3748            36         43
3749            36         44
3750            36         45
3751            36         46
3752            36         47
3753            36         48
3754            36         49
3755            36         50
3756            36         51
3757            36         52
3758            36         53
3759            36         54
3760            36         55
3761            36         56
3762            36         57
3763            36         58
3764            36         59
3765            36         60
3766            36         61
3767            36         62
3768            36         63
3769            36         64
3770            36         65
3771            36         66
3772            36         67
3773            36         68
3774            36         69
3775            36         70
3776            36         71
3777            36         72
3778            36         73
3779            36         74
3780            36         75
3781            36         76
3782            36         77
3783            36         78
3784            36         79
3785            36         80
3786            36         81
3787            36         82
3788            36         83
3789            37          1
3790            37          2
3791            37          3
3792            37          4
3793            37          5
3794            37          6
3795            37          7
3796            37          8
3797            37          9
3798            37         10
3799            37         11
3800            37         12
3801            37         13
3802            37         14
3803            37         15
3804            37         16
3805            37         17
3806            37         18
3807            37         19
3808            37         20
3809            37         21
3810            37         22
3811            37         23
3812            37         24
3813            37         25
3814            37         26
3815            37         27
3816            37         28
3817            37         29
3818            37         30
3819            37         31
3820            37         32
3821            37         33
3822            37         34
3823            37         35
3824            37         36
3825            37         37
3826            37         38
3827            37         39
3828            37         40
3829            37         41
3830            37         42
3831            37         43
3832            37         44
3833            37         45
3834            37         46
3835            37         47
3836            37         48
3837            37         49
3838            37         50
3839            37         51
3840            37         52
3841            37         53
3842            37         54
3843            37         55
3844            37         56
3845            37         57
3846            37         58
3847            37         59
3848            37         60
3849            37         61
3850            37         62
3851            37         63
3852            37         64
3853            37         65
3854            37         66
3855            37         67
3856            37         68
3857            37         69
3858            37         70
3859            37         71
3860            37         72
3861            37         73
3862            37         74
3863            37         75
3864            37         76
3865            37         77
3866            37         78
3867            37         79
3868            37         80
3869            37         81
3870            37         82
3871            37         83
3872            37         84
3873            37         85
3874            37         86
3875            37         87
3876            37         88
3877            37         89
3878            37         90
3879            37         91
3880            37         92
3881            37         93
3882            37         94
3883            37         95
3884            37         96
3885            37         97
3886            37         98
3887            37         99
3888            37        100
3889            37        101
3890            37        102
3891            37        103
3892            37        104
3893            37        105
3894            37        106
3895            37        107
3896            37        108
3897            37        109
3898            37        110
3899            37        111
3900            37        112
3901            37        113
3902            37        114
3903            37        115
3904            37        116
3905            37        117
3906            37        118
3907            37        119
3908            37        120
3909            37        121
3910            37        122
3911            37        123
3912            37        124
3913            37        125
3914            37        126
3915            37        127
3916            37        128
3917            37        129
3918            37        130
3919            37        131
3920            37        132
3921            37        133
3922            37        134
3923            37        135
3924            37        136
3925            37        137
3926            37        138
3927            37        139
3928            37        140
3929            37        141
3930            37        142
3931            37        143
3932            37        144
3933            37        145
3934            37        146
3935            37        147
3936            37        148
3937            37        149
3938            37        150
3939            37        151
3940            37        152
3941            37        153
3942            37        154
3943            37        155
3944            37        156
3945            37        157
3946            37        158
3947            37        159
3948            37        160
3949            37        161
3950            37        162
3951            37        163
3952            37        164
3953            37        165
3954            37        166
3955            37        167
3956            37        168
3957            37        169
3958            37        170
3959            37        171
3960            37        172
3961            37        173
3962            37        174
3963            37        175
3964            37        176
3965            37        177
3966            37        178
3967            37        179
3968            37        180
3969            37        181
3970            37        182
3971            38          1
3972            38          2
3973            38          3
3974            38          4
3975            38          5
3976            38          6
3977            38          7
3978            38          8
3979            38          9
3980            38         10
3981            38         11
3982            38         12
3983            38         13
3984            38         14
3985            38         15
3986            38         16
3987            38         17
3988            38         18
3989            38         19
3990            38         20
3991            38         21
3992            38         22
3993            38         23
3994            38         24
3995            38         25
3996            38         26
3997            38         27
3998            38         28
3999            38         29
4000            38         30
4001            38         31
4002            38         32
4003            38         33
4004            38         34
4005            38         35
4006            38         36
4007            38         37
4008            38         38
4009            38         39
4010            38         40
4011            38         41
4012            38         42
4013            38         43
4014            38         44
4015            38         45
4016            38         46
4017            38         47
4018            38         48
4019            38         49
4020            38         50
4021            38         51
4022            38         52
4023            38         53
4024            38         54
4025            38         55
4026            38         56
4027            38         57
4028            38         58
4029            38         59
4030            38         60
4031            38         61
4032            38         62
4033            38         63
4034            38         64
4035            38         65
4036            38         66
4037            38         67
4038            38         68
4039            38         69
4040            38         70
4041            38         71
4042            38         72
4043            38         73
4044            38         74
4045            38         75
4046            38         76
4047            38         77
4048            38         78
4049            38         79
4050            38         80
4051            38         81
4052            38         82
4053            38         83
4054            38         84
4055            38         85
4056            38         86
4057            38         87
4058            38         88
4059            39          1
4060            39          2
4061            39          3
4062            39          4
4063            39          5
4064            39          6
4065            39          7
4066            39          8
4067            39          9
4068            39         10
4069            39         11
4070            39         12
4071            39         13
4072            39         14
4073            39         15
4074            39         16
4075            39         17
4076            39         18
4077            39         19
4078            39         20
4079            39         21
4080            39         22
4081            39         23
4082            39         24
4083            39         25
4084            39         26
4085            39         27
4086            39         28
4087            39         29
4088            39         30
4089            39         31
4090            39         32
4091            39         33
4092            39         34
4093            39         35
4094            39         36
4095            39         37
4096            39         38
4097            39         39
4098            39         40
4099            39         41
4100            39         42
4101            39         43
4102            39         44
4103            39         45
4104            39         46
4105            39         47
4106            39         48
4107            39         49
4108            39         50
4109            39         51
4110            39         52
4111            39         53
4112            39         54
4113            39         55
4114            39         56
4115            39         57
4116            39         58
4117            39         59
4118            39         60
4119            39         61
4120            39         62
4121            39         63
4122            39         64
4123            39         65
4124            39         66
4125            39         67
4126            39         68
4127            39         69
4128            39         70
4129            39         71
4130            39         72
4131            39         73
4132            39         74
4133            39         75
4134            40          1
4135            40          2
4136            40          3
4137            40          4
4138            40          5
4139            40          6
4140            40          7
4141            40          8
4142            40          9
4143            40         10
4144            40         11
4145            40         12
4146            40         13
4147            40         14
4148            40         15
4149            40         16
4150            40         17
4151            40         18
4152            40         19
4153            40         20
4154            40         21
4155            40         22
4156            40         23
4157            40         24
4158            40         25
4159            40         26
4160            40         27
4161            40         28
4162            40         29
4163            40         30
4164            40         31
4165            40         32
4166            40         33
4167            40         34
4168            40         35
4169            40         36
4170            40         37
4171            40         38
4172            40         39
4173            40         40
4174            40         41
4175            40         42
4176            40         43
4177            40         44
4178            40         45
4179            40         46
4180            40         47
4181            40         48
4182            40         49
4183            40         50
4184            40         51
4185            40         52
4186            40         53
4187            40         54
4188            40         55
4189            40         56
4190            40         57
4191            40         58
4192            40         59
4193            40         60
4194            40         61
4195            40         62
4196            40         63
4197            40         64
4198            40         65
4199            40         66
4200            40         67
4201            40         68
4202            40         69
4203            40         70
4204            40         71
4205            40         72
4206            40         73
4207            40         74
4208            40         75
4209            40         76
4210            40         77
4211            40         78
4212            40         79
4213            40         80
4214            40         81
4215            40         82
4216            40         83
4217            40         84
4218            40         85
4219            41          1
4220            41          2
4221            41          3
4222            41          4
4223            41          5
4224            41          6
4225            41          7
4226            41          8
4227            41          9
4228            41         10
4229            41         11
4230            41         12
4231            41         13
4232            41         14
4233            41         15
4234            41         16
4235            41         17
4236            41         18
4237            41         19
4238            41         20
4239            41         21
4240            41         22
4241            41         23
4242            41         24
4243            41         25
4244            41         26
4245            41         27
4246            41         28
4247            41         29
4248            41         30
4249            41         31
4250            41         32
4251            41         33
4252            41         34
4253            41         35
4254            41         36
4255            41         37
4256            41         38
4257            41         39
4258            41         40
4259            41         41
4260            41         42
4261            41         43
4262            41         44
4263            41         45
4264            41         46
4265            41         47
4266            41         48
4267            41         49
4268            41         50
4269            41         51
4270            41         52
4271            41         53
4272            41         54
4273            42          1
4274            42          2
4275            42          3
4276            42          4
4277            42          5
4278            42          6
4279            42          7
4280            42          8
4281            42          9
4282            42         10
4283            42         11
4284            42         12
4285            42         13
4286            42         14
4287            42         15
4288            42         16
4289            42         17
4290            42         18
4291            42         19
4292            42         20
4293            42         21
4294            42         22
4295            42         23
4296            42         24
4297            42         25
4298            42         26
4299            42         27
4300            42         28
4301            42         29
4302            42         30
4303            42         31
4304            42         32
4305            42         33
4306            42         34
4307            42         35
4308            42         36
4309            42         37
4310            42         38
4311            42         39
4312            42         40
4313            42         41
4314            42         42
4315            42         43
4316            42         44
4317            42         45
4318            42         46
4319            42         47
4320            42         48
4321            42         49
4322            42         50
4323            42         51
4324            42         52
4325            42         53
4326            43          1
4327            43          2
4328            43          3
4329            43          4
4330            43          5
4331            43          6
4332            43          7
4333            43          8
4334            43          9
4335            43         10
4336            43         11
4337            43         12
4338            43         13
4339            43         14
4340            43         15
4341            43         16
4342            43         17
4343            43         18
4344            43         19
4345            43         20
4346            43         21
4347            43         22
4348            43         23
4349            43         24
4350            43         25
4351            43         26
4352            43         27
4353            43         28
4354            43         29
4355            43         30
4356            43         31
4357            43         32
4358            43         33
4359            43         34
4360            43         35
4361            43         36
4362            43         37
4363            43         38
4364            43         39
4365            43         40
4366            43         41
4367            43         42
4368            43         43
4369            43         44
4370            43         45
4371            43         46
4372            43         47
4373            43         48
4374            43         49
4375            43         50
4376            43         51
4377            43         52
4378            43         53
4379            43         54
4380            43         55
4381            43         56
4382            43         57
4383            43         58
4384            43         59
4385            43         60
4386            43         61
4387            43         62
4388            43         63
4389            43         64
4390            43         65
4391            43         66
4392            43         67
4393            43         68
4394            43         69
4395            43         70
4396            43         71
4397            43         72
4398            43         73
4399            43         74
4400            43         75
4401            43         76
4402            43         77
4403            43         78
4404            43         79
4405            43         80
4406            43         81
4407            43         82
4408            43         83
4409            43         84
4410            43         85
4411            43         86
4412            43         87
4413            43         88
4414            43         89
4415            44          1
4416            44          2
4417            44          3
4418            44          4
4419            44          5
4420            44          6
4421            44          7
4422            44          8
4423            44          9
4424            44         10
4425            44         11
4426            44         12
4427            44         13
4428            44         14
4429            44         15
4430            44         16
4431            44         17
4432            44         18
4433            44         19
4434            44         20
4435            44         21
4436            44         22
4437            44         23
4438            44         24
4439            44         25
4440            44         26
4441            44         27
4442            44         28
4443            44         29
4444            44         30
4445            44         31
4446            44         32
4447            44         33
4448            44         34
4449            44         35
4450            44         36
4451            44         37
4452            44         38
4453            44         39
4454            44         40
4455            44         41
4456            44         42
4457            44         43
4458            44         44
4459            44         45
4460            44         46
4461            44         47
4462            44         48
4463            44         49
4464            44         50
4465            44         51
4466            44         52
4467            44         53
4468            44         54
4469            44         55
4470            44         56
4471            44         57
4472            44         58
4473            44         59
4474            45          1
4475            45          2
4476            45          3
4477            45          4
4478            45          5
4479            45          6
4480            45          7
4481            45          8
4482            45          9
4483            45         10
4484            45         11
4485            45         12
4486            45         13
4487            45         14
4488            45         15
4489            45         16
4490            45         17
4491            45         18
4492            45         19
4493            45         20
4494            45         21
4495            45         22
4496            45         23
4497            45         24
4498            45         25
4499            45         26
4500            45         27
4501            45         28
4502            45         29
4503            45         30
4504            45         31
4505            45         32
4506            45         33
4507            45         34
4508            45         35
4509            45         36
4510            45         37
4511            46          1
4512            46          2
4513            46          3
4514            46          4
4515            46          5
4516            46          6
4517            46          7
4518            46          8
4519            46          9
4520            46         10
4521            46         11
4522            46         12
4523            46         13
4524            46         14
4525            46         15
4526            46         16
4527            46         17
4528            46         18
4529            46         19
4530            46         20
4531            46         21
4532            46         22
4533            46         23
4534            46         24
4535            46         25
4536            46         26
4537            46         27
4538            46         28
4539            46         29
4540            46         30
4541            46         31
4542            46         32
4543            46         33
4544            46         34
4545            46         35
4546            47          1
4547            47          2
4548            47          3
4549            47          4
4550            47          5
4551            47          6
4552            47          7
4553            47          8
4554            47          9
4555            47         10
4556            47         11
4557            47         12
4558            47         13
4559            47         14
4560            47         15
4561            47         16
4562            47         17
4563            47         18
4564            47         19
4565            47         20
4566            47         21
4567            47         22
4568            47         23
4569            47         24
4570            47         25
4571            47         26
4572            47         27
4573            47         28
4574            47         29
4575            47         30
4576            47         31
4577            47         32
4578            47         33
4579            47         34
4580            47         35
4581            47         36
4582            47         37
4583            47         38
4584            48          1
4585            48          2
4586            48          3
4587            48          4
4588            48          5
4589            48          6
4590            48          7
4591            48          8
4592            48          9
4593            48         10
4594            48         11
4595            48         12
4596            48         13
4597            48         14
4598            48         15
4599            48         16
4600            48         17
4601            48         18
4602            48         19
4603            48         20
4604            48         21
4605            48         22
4606            48         23
4607            48         24
4608            48         25
4609            48         26
4610            48         27
4611            48         28
4612            48         29
4613            49          1
4614            49          2
4615            49          3
4616            49          4
4617            49          5
4618            49          6
4619            49          7
4620            49          8
4621            49          9
4622            49         10
4623            49         11
4624            49         12
4625            49         13
4626            49         14
4627            49         15
4628            49         16
4629            49         17
4630            49         18
4631            50          1
4632            50          2
4633            50          3
4634            50          4
4635            50          5
4636            50          6
4637            50          7
4638            50          8
4639            50          9
4640            50         10
4641            50         11
4642            50         12
4643            50         13
4644            50         14
4645            50         15
4646            50         16
4647            50         17
4648            50         18
4649            50         19
4650            50         20
4651            50         21
4652            50         22
4653            50         23
4654            50         24
4655            50         25
4656            50         26
4657            50         27
4658            50         28
4659            50         29
4660            50         30
4661            50         31
4662            50         32
4663            50         33
4664            50         34
4665            50         35
4666            50         36
4667            50         37
4668            50         38
4669            50         39
4670            50         40
4671            50         41
4672            50         42
4673            50         43
4674            50         44
4675            50         45
4676            51          1
4677            51          2
4678            51          3
4679            51          4
4680            51          5
4681            51          6
4682            51          7
4683            51          8
4684            51          9
4685            51         10
4686            51         11
4687            51         12
4688            51         13
4689            51         14
4690            51         15
4691            51         16
4692            51         17
4693            51         18
4694            51         19
4695            51         20
4696            51         21
4697            51         22
4698            51         23
4699            51         24
4700            51         25
4701            51         26
4702            51         27
4703            51         28
4704            51         29
4705            51         30
4706            51         31
4707            51         32
4708            51         33
4709            51         34
4710            51         35
4711            51         36
4712            51         37
4713            51         38
4714            51         39
4715            51         40
4716            51         41
4717            51         42
4718            51         43
4719            51         44
4720            51         45
4721            51         46
4722            51         47
4723            51         48
4724            51         49
4725            51         50
4726            51         51
4727            51         52
4728            51         53
4729            51         54
4730            51         55
4731            51         56
4732            51         57
4733            51         58
4734            51         59
4735            51         60
4736            52          1
4737            52          2
4738            52          3
4739            52          4
4740            52          5
4741            52          6
4742            52          7
4743            52          8
4744            52          9
4745            52         10
4746            52         11
4747            52         12
4748            52         13
4749            52         14
4750            52         15
4751            52         16
4752            52         17
4753            52         18
4754            52         19
4755            52         20
4756            52         21
4757            52         22
4758            52         23
4759            52         24
4760            52         25
4761            52         26
4762            52         27
4763            52         28
4764            52         29
4765            52         30
4766            52         31
4767            52         32
4768            52         33
4769            52         34
4770            52         35
4771            52         36
4772            52         37
4773            52         38
4774            52         39
4775            52         40
4776            52         41
4777            52         42
4778            52         43
4779            52         44
4780            52         45
4781            52         46
4782            52         47
4783            52         48
4784            52         49
4785            53          1
4786            53          2
4787            53          3
4788            53          4
4789            53          5
4790            53          6
4791            53          7
4792            53          8
4793            53          9
4794            53         10
4795            53         11
4796            53         12
4797            53         13
4798            53         14
4799            53         15
4800            53         16
4801            53         17
4802            53         18
4803            53         19
4804            53         20
4805            53         21
4806            53         22
4807            53         23
4808            53         24
4809            53         25
4810            53         26
4811            53         27
4812            53         28
4813            53         29
4814            53         30
4815            53         31
4816            53         32
4817            53         33
4818            53         34
4819            53         35
4820            53         36
4821            53         37
4822            53         38
4823            53         39
4824            53         40
4825            53         41
4826            53         42
4827            53         43
4828            53         44
4829            53         45
4830            53         46
4831            53         47
4832            53         48
4833            53         49
4834            53         50
4835            53         51
4836            53         52
4837            53         53
4838            53         54
4839            53         55
4840            53         56
4841            53         57
4842            53         58
4843            53         59
4844            53         60
4845            53         61
4846            53         62
4847            54          1
4848            54          2
4849            54          3
4850            54          4
4851            54          5
4852            54          6
4853            54          7
4854            54          8
4855            54          9
4856            54         10
4857            54         11
4858            54         12
4859            54         13
4860            54         14
4861            54         15
4862            54         16
4863            54         17
4864            54         18
4865            54         19
4866            54         20
4867            54         21
4868            54         22
4869            54         23
4870            54         24
4871            54         25
4872            54         26
4873            54         27
4874            54         28
4875            54         29
4876            54         30
4877            54         31
4878            54         32
4879            54         33
4880            54         34
4881            54         35
4882            54         36
4883            54         37
4884            54         38
4885            54         39
4886            54         40
4887            54         41
4888            54         42
4889            54         43
4890            54         44
4891            54         45
4892            54         46
4893            54         47
4894            54         48
4895            54         49
4896            54         50
4897            54         51
4898            54         52
4899            54         53
4900            54         54
4901            54         55
4902            55          1
4903            55          2
4904            55          3
4905            55          4
4906            55          5
4907            55          6
4908            55          7
4909            55          8
4910            55          9
4911            55         10
4912            55         11
4913            55         12
4914            55         13
4915            55         14
4916            55         15
4917            55         16
4918            55         17
4919            55         18
4920            55         19
4921            55         20
4922            55         21
4923            55         22
4924            55         23
4925            55         24
4926            55         25
4927            55         26
4928            55         27
4929            55         28
4930            55         29
4931            55         30
4932            55         31
4933            55         32
4934            55         33
4935            55         34
4936            55         35
4937            55         36
4938            55         37
4939            55         38
4940            55         39
4941            55         40
4942            55         41
4943            55         42
4944            55         43
4945            55         44
4946            55         45
4947            55         46
4948            55         47
4949            55         48
4950            55         49
4951            55         50
4952            55         51
4953            55         52
4954            55         53
4955            55         54
4956            55         55
4957            55         56
4958            55         57
4959            55         58
4960            55         59
4961            55         60
4962            55         61
4963            55         62
4964            55         63
4965            55         64
4966            55         65
4967            55         66
4968            55         67
4969            55         68
4970            55         69
4971            55         70
4972            55         71
4973            55         72
4974            55         73
4975            55         74
4976            55         75
4977            55         76
4978            55         77
4979            55         78
4980            56          1
4981            56          2
4982            56          3
4983            56          4
4984            56          5
4985            56          6
4986            56          7
4987            56          8
4988            56          9
4989            56         10
4990            56         11
4991            56         12
4992            56         13
4993            56         14
4994            56         15
4995            56         16
4996            56         17
4997            56         18
4998            56         19
4999            56         20
5000            56         21
5001            56         22
5002            56         23
5003            56         24
5004            56         25
5005            56         26
5006            56         27
5007            56         28
5008            56         29
5009            56         30
5010            56         31
5011            56         32
5012            56         33
5013            56         34
5014            56         35
5015            56         36
5016            56         37
5017            56         38
5018            56         39
5019            56         40
5020            56         41
5021            56         42
5022            56         43
5023            56         44
5024            56         45
5025            56         46
5026            56         47
5027            56         48
5028            56         49
5029            56         50
5030            56         51
5031            56         52
5032            56         53
5033            56         54
5034            56         55
5035            56         56
5036            56         57
5037            56         58
5038            56         59
5039            56         60
5040            56         61
5041            56         62
5042            56         63
5043            56         64
5044            56         65
5045            56         66
5046            56         67
5047            56         68
5048            56         69
5049            56         70
5050            56         71
5051            56         72
5052            56         73
5053            56         74
5054            56         75
5055            56         76
5056            56         77
5057            56         78
5058            56         79
5059            56         80
5060            56         81
5061            56         82
5062            56         83
5063            56         84
5064            56         85
5065            56         86
5066            56         87
5067            56         88
5068            56         89
5069            56         90
5070            56         91
5071            56         92
5072            56         93
5073            56         94
5074            56         95
5075            56         96
5076            57          1
5077            57          2
5078            57          3
5079            57          4
5080            57          5
5081            57          6
5082            57          7
5083            57          8
5084            57          9
5085            57         10
5086            57         11
5087            57         12
5088            57         13
5089            57         14
5090            57         15
5091            57         16
5092            57         17
5093            57         18
5094            57         19
5095            57         20
5096            57         21
5097            57         22
5098            57         23
5099            57         24
5100            57         25
5101            57         26
5102            57         27
5103            57         28
5104            57         29
5105            58          1
5106            58          2
5107            58          3
5108            58          4
5109            58          5
5110            58          6
5111            58          7
5112            58          8
5113            58          9
5114            58         10
5115            58         11
5116            58         12
5117            58         13
5118            58         14
5119            58         15
5120            58         16
5121            58         17
5122            58         18
5123            58         19
5124            58         20
5125            58         21
5126            58         22
5127            59          1
5128            59          2
5129            59          3
5130            59          4
5131            59          5
5132            59          6
5133            59          7
5134            59          8
5135            59          9
5136            59         10
5137            59         11
5138            59         12
5139            59         13
5140            59         14
5141            59         15
5142            59         16
5143            59         17
5144            59         18
5145            59         19
5146            59         20
5147            59         21
5148            59         22
5149            59         23
5150            59         24
5151            60          1
5152            60          2
5153            60          3
5154            60          4
5155            60          5
5156            60          6
5157            60          7
5158            60          8
5159            60          9
5160            60         10
5161            60         11
5162            60         12
5163            60         13
5164            61          1
5165            61          2
5166            61          3
5167            61          4
5168            61          5
5169            61          6
5170            61          7
5171            61          8
5172            61          9
5173            61         10
5174            61         11
5175            61         12
5176            61         13
5177            61         14
5178            62          1
5179            62          2
5180            62          3
5181            62          4
5182            62          5
5183            62          6
5184            62          7
5185            62          8
5186            62          9
5187            62         10
5188            62         11
5189            63          1
5190            63          2
5191            63          3
5192            63          4
5193            63          5
5194            63          6
5195            63          7
5196            63          8
5197            63          9
5198            63         10
5199            63         11
5200            64          1
5201            64          2
5202            64          3
5203            64          4
5204            64          5
5205            64          6
5206            64          7
5207            64          8
5208            64          9
5209            64         10
5210            64         11
5211            64         12
5212            64         13
5213            64         14
5214            64         15
5215            64         16
5216            64         17
5217            64         18
5218            65          1
5219            65          2
5220            65          3
5221            65          4
5222            65          5
5223            65          6
5224            65          7
5225            65          8
5226            65          9
5227            65         10
5228            65         11
5229            65         12
5230            66          1
5231            66          2
5232            66          3
5233            66          4
5234            66          5
5235            66          6
5236            66          7
5237            66          8
5238            66          9
5239            66         10
5240            66         11
5241            66         12
5242            67          1
5243            67          2
5244            67          3
5245            67          4
5246            67          5
5247            67          6
5248            67          7
5249            67          8
5250            67          9
5251            67         10
5252            67         11
5253            67         12
5254            67         13
5255            67         14
5256            67         15
5257            67         16
5258            67         17
5259            67         18
5260            67         19
5261            67         20
5262            67         21
5263            67         22
5264            67         23
5265            67         24
5266            67         25
5267            67         26
5268            67         27
5269            67         28
5270            67         29
5271            67         30
5272            68          1
5273            68          2
5274            68          3
5275            68          4
5276            68          5
5277            68          6
5278            68          7
5279            68          8
5280            68          9
5281            68         10
5282            68         11
5283            68         12
5284            68         13
5285            68         14
5286            68         15
5287            68         16
5288            68         17
5289            68         18
5290            68         19
5291            68         20
5292            68         21
5293            68         22
5294            68         23
5295            68         24
5296            68         25
5297            68         26
5298            68         27
5299            68         28
5300            68         29
5301            68         30
5302            68         31
5303            68         32
5304            68         33
5305            68         34
5306            68         35
5307            68         36
5308            68         37
5309            68         38
5310            68         39
5311            68         40
5312            68         41
5313            68         42
5314            68         43
5315            68         44
5316            68         45
5317            68         46
5318            68         47
5319            68         48
5320            68         49
5321            68         50
5322            68         51
5323            68         52
5324            69          1
5325            69          2
5326            69          3
5327            69          4
5328            69          5
5329            69          6
5330            69          7
5331            69          8
5332            69          9
5333            69         10
5334            69         11
5335            69         12
5336            69         13
5337            69         14
5338            69         15
5339            69         16
5340            69         17
5341            69         18
5342            69         19
5343            69         20
5344            69         21
5345            69         22
5346            69         23
5347            69         24
5348            69         25
5349            69         26
5350            69         27
5351            69         28
5352            69         29
5353            69         30
5354            69         31
5355            69         32
5356            69         33
5357            69         34
5358            69         35
5359            69         36
5360            69         37
5361            69         38
5362            69         39
5363            69         40
5364            69         41
5365            69         42
5366            69         43
5367            69         44
5368            69         45
5369            69         46
5370            69         47
5371            69         48
5372            69         49
5373            69         50
5374            69         51
5375            69         52
5376            70          1
5377            70          2
5378            70          3
5379            70          4
5380            70          5
5381            70          6
5382            70          7
5383            70          8
5384            70          9
5385            70         10
5386            70         11
5387            70         12
5388            70         13
5389            70         14
5390            70         15
5391            70         16
5392            70         17
5393            70         18
5394            70         19
5395            70         20
5396            70         21
5397            70         22
5398            70         23
5399            70         24
5400            70         25
5401            70         26
5402            70         27
5403            70         28
5404            70         29
5405            70         30
5406            70         31
5407            70         32
5408            70         33
5409            70         34
5410            70         35
5411            70         36
5412            70         37
5413            70         38
5414            70         39
5415            70         40
5416            70         41
5417            70         42
5418            70         43
5419            70         44
5420            71          1
5421            71          2
5422            71          3
5423            71          4
5424            71          5
5425            71          6
5426            71          7
5427            71          8
5428            71          9
5429            71         10
5430            71         11
5431            71         12
5432            71         13
5433            71         14
5434            71         15
5435            71         16
5436            71         17
5437            71         18
5438            71         19
5439            71         20
5440            71         21
5441            71         22
5442            71         23
5443            71         24
5444            71         25
5445            71         26
5446            71         27
5447            71         28
5448            72          1
5449            72          2
5450            72          3
5451            72          4
5452            72          5
5453            72          6
5454            72          7
5455            72          8
5456            72          9
5457            72         10
5458            72         11
5459            72         12
5460            72         13
5461            72         14
5462            72         15
5463            72         16
5464            72         17
5465            72         18
5466            72         19
5467            72         20
5468            72         21
5469            72         22
5470            72         23
5471            72         24
5472            72         25
5473            72         26
5474            72         27
5475            72         28
5476            73          1
5477            73          2
5478            73          3
5479            73          4
5480            73          5
5481            73          6
5482            73          7
5483            73          8
5484            73          9
5485            73         10
5486            73         11
5487            73         12
5488            73         13
5489            73         14
5490            73         15
5491            73         16
5492            73         17
5493            73         18
5494            73         19
5495            73         20
5496            74          1
5497            74          2
5498            74          3
5499            74          4
5500            74          5
5501            74          6
5502            74          7
5503            74          8
5504            74          9
5505            74         10
5506            74         11
5507            74         12
5508            74         13
5509            74         14
5510            74         15
5511            74         16
5512            74         17
5513            74         18
5514            74         19
5515            74         20
5516            74         21
5517            74         22
5518            74         23
5519            74         24
5520            74         25
5521            74         26
5522            74         27
5523            74         28
5524            74         29
5525            74         30
5526            74         31
5527            74         32
5528            74         33
5529            74         34
5530            74         35
5531            74         36
5532            74         37
5533            74         38
5534            74         39
5535            74         40
5536            74         41
5537            74         42
5538            74         43
5539            74         44
5540            74         45
5541            74         46
5542            74         47
5543            74         48
5544            74         49
5545            74         50
5546            74         51
5547            74         52
5548            74         53
5549            74         54
5550            74         55
5551            74         56
5552            75          1
5553            75          2
5554            75          3
5555            75          4
5556            75          5
5557            75          6
5558            75          7
5559            75          8
5560            75          9
5561            75         10
5562            75         11
5563            75         12
5564            75         13
5565            75         14
5566            75         15
5567            75         16
5568            75         17
5569            75         18
5570            75         19
5571            75         20
5572            75         21
5573            75         22
5574            75         23
5575            75         24
5576            75         25
5577            75         26
5578            75         27
5579            75         28
5580            75         29
5581            75         30
5582            75         31
5583            75         32
5584            75         33
5585            75         34
5586            75         35
5587            75         36
5588            75         37
5589            75         38
5590            75         39
5591            75         40
5592            76          1
5593            76          2
5594            76          3
5595            76          4
5596            76          5
5597            76          6
5598            76          7
5599            76          8
5600            76          9
5601            76         10
5602            76         11
5603            76         12
5604            76         13
5605            76         14
5606            76         15
5607            76         16
5608            76         17
5609            76         18
5610            76         19
5611            76         20
5612            76         21
5613            76         22
5614            76         23
5615            76         24
5616            76         25
5617            76         26
5618            76         27
5619            76         28
5620            76         29
5621            76         30
5622            76         31
5623            77          1
5624            77          2
5625            77          3
5626            77          4
5627            77          5
5628            77          6
5629            77          7
5630            77          8
5631            77          9
5632            77         10
5633            77         11
5634            77         12
5635            77         13
5636            77         14
5637            77         15
5638            77         16
5639            77         17
5640            77         18
5641            77         19
5642            77         20
5643            77         21
5644            77         22
5645            77         23
5646            77         24
5647            77         25
5648            77         26
5649            77         27
5650            77         28
5651            77         29
5652            77         30
5653            77         31
5654            77         32
5655            77         33
5656            77         34
5657            77         35
5658            77         36
5659            77         37
5660            77         38
5661            77         39
5662            77         40
5663            77         41
5664            77         42
5665            77         43
5666            77         44
5667            77         45
5668            77         46
5669            77         47
5670            77         48
5671            77         49
5672            77         50
5673            78          1
5674            78          2
5675            78          3
5676            78          4
5677            78          5
5678            78          6
5679            78          7
5680            78          8
5681            78          9
5682            78         10
5683            78         11
5684            78         12
5685            78         13
5686            78         14
5687            78         15
5688            78         16
5689            78         17
5690            78         18
5691            78         19
5692            78         20
5693            78         21
5694            78         22
5695            78         23
5696            78         24
5697            78         25
5698            78         26
5699            78         27
5700            78         28
5701            78         29
5702            78         30
5703            78         31
5704            78         32
5705            78         33
5706            78         34
5707            78         35
5708            78         36
5709            78         37
5710            78         38
5711            78         39
5712            78         40
5713            79          1
5714            79          2
5715            79          3
5716            79          4
5717            79          5
5718            79          6
5719            79          7
5720            79          8
5721            79          9
5722            79         10
5723            79         11
5724            79         12
5725            79         13
5726            79         14
5727            79         15
5728            79         16
5729            79         17
5730            79         18
5731            79         19
5732            79         20
5733            79         21
5734            79         22
5735            79         23
5736            79         24
5737            79         25
5738            79         26
5739            79         27
5740            79         28
5741            79         29
5742            79         30
5743            79         31
5744            79         32
5745            79         33
5746            79         34
5747            79         35
5748            79         36
5749            79         37
5750            79         38
5751            79         39
5752            79         40
5753            79         41
5754            79         42
5755            79         43
5756            79         44
5757            79         45
5758            79         46
5759            80          1
5760            80          2
5761            80          3
5762            80          4
5763            80          5
5764            80          6
5765            80          7
5766            80          8
5767            80          9
5768            80         10
5769            80         11
5770            80         12
5771            80         13
5772            80         14
5773            80         15
5774            80         16
5775            80         17
5776            80         18
5777            80         19
5778            80         20
5779            80         21
5780            80         22
5781            80         23
5782            80         24
5783            80         25
5784            80         26
5785            80         27
5786            80         28
5787            80         29
5788            80         30
5789            80         31
5790            80         32
5791            80         33
5792            80         34
5793            80         35
5794            80         36
5795            80         37
5796            80         38
5797            80         39
5798            80         40
5799            80         41
5800            80         42
5801            81          1
5802            81          2
5803            81          3
5804            81          4
5805            81          5
5806            81          6
5807            81          7
5808            81          8
5809            81          9
5810            81         10
5811            81         11
5812            81         12
5813            81         13
5814            81         14
5815            81         15
5816            81         16
5817            81         17
5818            81         18
5819            81         19
5820            81         20
5821            81         21
5822            81         22
5823            81         23
5824            81         24
5825            81         25
5826            81         26
5827            81         27
5828            81         28
5829            81         29
5830            82          1
5831            82          2
5832            82          3
5833            82          4
5834            82          5
5835            82          6
5836            82          7
5837            82          8
5838            82          9
5839            82         10
5840            82         11
5841            82         12
5842            82         13
5843            82         14
5844            82         15
5845            82         16
5846            82         17
5847            82         18
5848            82         19
5849            83          1
5850            83          2
5851            83          3
5852            83          4
5853            83          5
5854            83          6
5855            83          7
5856            83          8
5857            83          9
5858            83         10
5859            83         11
5860            83         12
5861            83         13
5862            83         14
5863            83         15
5864            83         16
5865            83         17
5866            83         18
5867            83         19
5868            83         20
5869            83         21
5870            83         22
5871            83         23
5872            83         24
5873            83         25
5874            83         26
5875            83         27
5876            83         28
5877            83         29
5878            83         30
5879            83         31
5880            83         32
5881            83         33
5882            83         34
5883            83         35
5884            83         36
5885            84          1
5886            84          2
5887            84          3
5888            84          4
5889            84          5
5890            84          6
5891            84          7
5892            84          8
5893            84          9
5894            84         10
5895            84         11
5896            84         12
5897            84         13
5898            84         14
5899            84         15
5900            84         16
5901            84         17
5902            84         18
5903            84         19
5904            84         20
5905            84         21
5906            84         22
5907            84         23
5908            84         24
5909            84         25
5910            85          1
5911            85          2
5912            85          3
5913            85          4
5914            85          5
5915            85          6
5916            85          7
5917            85          8
5918            85          9
5919            85         10
5920            85         11
5921            85         12
5922            85         13
5923            85         14
5924            85         15
5925            85         16
5926            85         17
5927            85         18
5928            85         19
5929            85         20
5930            85         21
5931            85         22
5932            86          1
5933            86          2
5934            86          3
5935            86          4
5936            86          5
5937            86          6
5938            86          7
5939            86          8
5940            86          9
5941            86         10
5942            86         11
5943            86         12
5944            86         13
5945            86         14
5946            86         15
5947            86         16
5948            86         17
5949            87          1
5950            87          2
5951            87          3
5952            87          4
5953            87          5
5954            87          6
5955            87          7
5956            87          8
5957            87          9
5958            87         10
5959            87         11
5960            87         12
5961            87         13
5962            87         14
5963            87         15
5964            87         16
5965            87         17
5966            87         18
5967            87         19
5968            88          1
5969            88          2
5970            88          3
5971            88          4
5972            88          5
5973            88          6
5974            88          7
5975            88          8
5976            88          9
5977            88         10
5978            88         11
5979            88         12
5980            88         13
5981            88         14
5982            88         15
5983            88         16
5984            88         17
5985            88         18
5986            88         19
5987            88         20
5988            88         21
5989            88         22
5990            88         23
5991            88         24
5992            88         25
5993            88         26
5994            89          1
5995            89          2
5996            89          3
5997            89          4
5998            89          5
5999            89          6
6000            89          7
6001            89          8
6002            89          9
6003            89         10
6004            89         11
6005            89         12
6006            89         13
6007            89         14
6008            89         15
6009            89         16
6010            89         17
6011            89         18
6012            89         19
6013            89         20
6014            89         21
6015            89         22
6016            89         23
6017            89         24
6018            89         25
6019            89         26
6020            89         27
6021            89         28
6022            89         29
6023            89         30
6024            90          1
6025            90          2
6026            90          3
6027            90          4
6028            90          5
6029            90          6
6030            90          7
6031            90          8
6032            90          9
6033            90         10
6034            90         11
6035            90         12
6036            90         13
6037            90         14
6038            90         15
6039            90         16
6040            90         17
6041            90         18
6042            90         19
6043            90         20
6044            91          1
6045            91          2
6046            91          3
6047            91          4
6048            91          5
6049            91          6
6050            91          7
6051            91          8
6052            91          9
6053            91         10
6054            91         11
6055            91         12
6056            91         13
6057            91         14
6058            91         15
6059            92          1
6060            92          2
6061            92          3
6062            92          4
6063            92          5
6064            92          6
6065            92          7
6066            92          8
6067            92          9
6068            92         10
6069            92         11
6070            92         12
6071            92         13
6072            92         14
6073            92         15
6074            92         16
6075            92         17
6076            92         18
6077            92         19
6078            92         20
6079            92         21
6080            93          1
6081            93          2
6082            93          3
6083            93          4
6084            93          5
6085            93          6
6086            93          7
6087            93          8
6088            93          9
6089            93         10
6090            93         11
6091            94          1
6092            94          2
6093            94          3
6094            94          4
6095            94          5
6096            94          6
6097            94          7
6098            94          8
6099            95          1
6100            95          2
6101            95          3
6102            95          4
6103            95          5
6104            95          6
6105            95          7
6106            95          8
6107            96          1
6108            96          2
6109            96          3
6110            96          4
6111            96          5
6112            96          6
6113            96          7
6114            96          8
6115            96          9
6116            96         10
6117            96         11
6118            96         12
6119            96         13
6120            96         14
6121            96         15
6122            96         16
6123            96         17
6124            96         18
6125            96         19
6126            97          1
6127            97          2
6128            97          3
6129            97          4
6130            97          5
6131            98          1
6132            98          2
6133            98          3
6134            98          4
6135            98          5
6136            98          6
6137            98          7
6138            98          8
6139            99          1
6140            99          2
6141            99          3
6142            99          4
6143            99          5
6144            99          6
6145            99          7
6146            99          8
6147           100          1
6148           100          2
6149           100          3
6150           100          4
6151           100          5
6152           100          6
6153           100          7
6154           100          8
6155           100          9
6156           100         10
6157           100         11
6158           101          1
6159           101          2
6160           101          3
6161           101          4
6162           101          5
6163           101          6
6164           101          7
6165           101          8
6166           101          9
6167           101         10
6168           101         11
6169           102          1
6170           102          2
6171           102          3
6172           102          4
6173           102          5
6174           102          6
6175           102          7
6176           102          8
6177           103          1
6178           103          2
6179           103          3
6180           104          1
6181           104          2
6182           104          3
6183           104          4
6184           104          5
6185           104          6
6186           104          7
6187           104          8
6188           104          9
6189           105          1
6190           105          2
6191           105          3
6192           105          4
6193           105          5
6194           106          1
6195           106          2
6196           106          3
6197           106          4
6198           107          1
6199           107          2
6200           107          3
6201           107          4
6202           107          5
6203           107          6
6204           107          7
6205           108          1
6206           108          2
6207           108          3
6208           109          1
6209           109          2
6210           109          3
6211           109          4
6212           109          5
6213           109          6
6214           110          1
6215           110          2
6216           110          3
6217           111          1
6218           111          2
6219           111          3
6220           111          4
6221           111          5
6222           112          1
6223           112          2
6224           112          3
6225           112          4
6226           113          1
6227           113          2
6228           113          3
6229           113          4
6230           113          5
6231           114          1
6232           114          2
6233           114          3
6234           114          4
6235           114          5
6236           114          6
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              text
1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In the Name of Allah—the Most Compassionate, Most Merciful.
2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All praise is for Allah—Lord of all worlds,
3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           the Most Compassionate, Most Merciful,
4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Master of the Day of Judgment.
5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You ˹alone˺ we worship and You ˹alone˺ we ask for help.
6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Guide us along the Straight Path,
7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the Path of those You have blessed—not those You are displeased with, or those who are astray.
8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alif-Lãm-Mĩm.
9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the Book! There is no doubt about it
10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who believe in the unseen, establish prayer, and donate from what We have provided for them,
11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and who believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you, and have sure faith in the Hereafter.
12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful.
13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for those who persist in disbelief, it is the same whether you warn them or not—they will never believe.
14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah has sealed their hearts and their hearing, and their sight is covered. They will suffer a tremendous punishment.
15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there are some who say, "We believe in Allah and the Last Day," yet they are not ˹true˺ believers.
16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They seek to deceive Allah and the believers, yet they only deceive themselves, but they fail to perceive it.
17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is sickness in their hearts, and Allah ˹only˺ lets their sickness increase. They will suffer a painful punishment for their lies.
18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they are told, "Do not spread corruption in the land," they reply, "We are only peace-makers!"
19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, it is they who are the corruptors, but they fail to perceive it.
20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when they are told, "Believe as others believe," they reply, "Will we believe as the fools believe?" Indeed, it is they who are fools, but they do not know.
21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When they meet the believers they say, "We believe." But when alone with their evil associates they say, "We are definitely with you; we were only mocking."
22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah will throw their mockery back at them, leaving them to continue wandering blindly in their defiance.
23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They are the ones who trade guidance for misguidance. But this trade is profitless, and they are not ˹rightly˺ guided.
24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Their example is that of someone who kindles a fire, but when it lights up all around them, Allah takes away their light, leaving them in complete darkness—unable to see.
25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They are ˹wilfully˺ deaf, dumb, and blind, so they will never return ˹to the Right Path˺.
26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or ˹those caught in˺ a rainstorm from the sky with darkness, thunder, and lightning. They press their fingers into their ears at the sound of every thunder-clap for fear of death. And Allah encompasses the disbelievers ˹by His might˺.
27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is as if the lightning were about to snatch away their sight. Whenever lightning strikes, they walk in its light, but when darkness covers them, they stand still. Had Allah willed, He could have taken away their hearing and sight. Surely Allah is Most Capable of everything.
28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O humanity! Worship your Lord, Who created you and those before you, so that you may become mindful ˹of Him˺.
29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹He is the One˺ Who has made the earth a place of settlement for you and the sky a canopy; and sends down rain from the sky, causing fruits to grow as a provision for you. So do not knowingly set up equals to Allah ˹in worship˺.
30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if you are in doubt about what We have revealed to Our servant, then produce a sûrah like it and call your helpers other than Allah, if what you say is true.
31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if you are unable to do so—and you will never be able to do so—then fear the Fire fuelled with people and stones, which is prepared for the disbelievers.
32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Give good news ˹O Prophet˺ to those who believe and do good that they will have Gardens under which rivers flow. Whenever provided with fruit, they will say, "This is what we were given before," for they will be served fruit that looks similar ˹but tastes different˺. They will have pure spouses, and they will be there forever.
33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely Allah does not shy away from using the parable of a mosquito or what is even smaller. As for the believers, they know that it is the truth from their Lord. And as for the disbelievers, they argue, "What does Allah mean by such a parable?" Through this ˹test˺, He leaves many to stray, and guides many. And He leaves none to stray except the rebellious—
34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land. It is they who are the ˹true˺ losers.
35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How can you deny Allah? You were lifeless and He gave you life, then He will cause you to die and again bring you to life, and then to Him you will ˹all˺ be returned.
36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is the One Who created everything in the earth for you. Then He turned towards the heaven, forming it into seven heavens. And He has ˹perfect˺ knowledge of all things.
37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ when your Lord said to the angels, "I am going to place a successive ˹human˺ authority on earth." They asked ˹Allah˺, "Will You place in it someone who will spread corruption there and shed blood while we glorify Your praises and proclaim Your holiness?" Allah responded, "I know what you do not know."
38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He taught Adam the names of all things, then He presented them to the angels and said, "Tell Me the names of these, if what you say is true?"
39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They replied, "Glory be to You! We have no knowledge except what You have taught us. You are truly the All-Knowing, All-Wise."
40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah said, "O Adam! Inform them of their names." Then when Adam did, Allah said, "Did I not tell you that I know the secrets of the heavens and the earth, and I know what you reveal and what you conceal?"
41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when We said to the angels, "Prostrate before Adam," becoming unfaithful.
42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We cautioned, "O Adam! Live with your wife in Paradise and eat as freely as you please, but do not approach this tree, or else you will be wrongdoers."
43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But Satan deceived them—leading to their fall from the ˹blissful˺ state they were in, You will find in the earth a residence and provision for your appointed stay."
44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Adam was inspired with words ˹of prayer˺ by his Lord, so He accepted his repentance. Surely He is the Accepter of Repentance, Most Merciful.
45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We said, "Descend all of you! Then when guidance comes to you from Me, whoever follows it, there will be no fear for them, nor will they grieve.
46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But those who disbelieve and deny Our signs will be the residents of the Fire. They will be there forever."
47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O children of Israel! Remember My favours upon you. Fulfil your covenant and I will fulfil Mine, and stand in awe of Me ˹alone˺.
48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Believe in My revelations which confirm your Scriptures. And be mindful of Me.
49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not mix truth with falsehood or hide the truth knowingly.
50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Establish prayer, pay alms-tax, and bow down with those who bow down.
51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you preach righteousness and fail to practice it yourselves, although you read the Scripture? Do you not understand?
52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And seek help through patience and prayer. Indeed, it is a burden except for the humble—
53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               those who are certain that they will meet their Lord and to Him they will return.
54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O Children of Israel! Remember ˹all˺ the favours I granted you and how I honoured you above the others.
55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Guard yourselves against the Day on which no soul will be of help to another. No intercession will be accepted, no ransom taken, and no help will be given.
56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Remember˺ how We delivered you from the people of Pharaoh, who afflicted you with dreadful torment, slaughtering your sons and keeping your women. That was a severe test from your Lord.
57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when We parted the sea, rescued you, and drowned Pharaoh’s people before your very eyes.
58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when We appointed forty nights for Moses, then you worshipped the calf in his absence, acting wrongfully.
59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Even then We ˹still˺ forgave you so perhaps you would be grateful.
60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹remember˺ when We gave Moses the Scripture—the standard ˹to distinguish between right and wrong˺ that perhaps you would be ˹rightly˺ guided.
61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹remember˺ when Moses said to his people, "O my people! Surely you have wronged yourselves by worshipping the calf, so turn in repentance to your Creator and execute ˹the calf-worshippers among˺ yourselves. That is best for you in the sight of your Creator." Then He accepted your repentance. Surely He is the Accepter of Repentance, Most Merciful.
62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹remember˺ when you said, "O Moses! We will never believe you until we see Allah with our own eyes," so a thunderbolt struck you while you were looking on.
63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then We brought you back to life after your death, so that perhaps you would be grateful.
64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember when˺ We shaded you with clouds and sent down to you manna and quails, ˹saying˺, "Eat from the good things We have provided for you." The evildoers ˹certainly˺ did not wrong Us, but wronged themselves.
65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹remember˺ when We said, "Enter this city and eat freely from wherever you please; enter the gate with humility, saying, ‘Absolve us.’ We will forgive your sins and multiply the reward for the good-doers."
66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But the wrongdoers changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their rebelliousness.
67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹remember˺ when Moses prayed for water for his people, We said, "Strike the rock with your staff." Then twelve springs gushed out, ˹and˺ each tribe knew its drinking place. ˹We then said,˺ "Eat and drink of Allah’s provisions, and do not go about spreading corruption in the land."
68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when you said, "O Moses! We cannot endure the same meal ˹every day˺. So ˹just˺ call upon your Lord on our behalf, He will bring forth for us some of what the earth produces of herbs, cucumbers, garlic, lentils, and onions." Moses scolded ˹them˺, "Do you exchange what is better for what is worse? ˹You can˺ go down to any village and you will find what you have asked for." They were stricken with disgrace and misery, and they invited the displeasure of Allah for rejecting Allah’s signs and unjustly killing the prophets. This is ˹a fair reward˺ for their disobedience and violations.
69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, the believers, Jews, Christians, and Sabians
70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹remember˺ when We took a covenant from you and raised the mountain above you ˹saying˺, "Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺."
71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet you turned away afterwards. Had it not been for Allah’s grace and mercy upon you, you would have certainly been of the losers.
72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You are already aware of those of you who broke the Sabbath. We said to them, "Be disgraced apes!"
73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So We made their fate an example to present and future generations, and a lesson to the God-fearing.
74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹remember˺ when Moses said to his people, "Allah commands you to sacrifice a cow." They replied, "Are you mocking us?" Moses responded, "I seek refuge in Allah from acting foolishly!"
75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They said, "Call upon your Lord to clarify for us what type ˹of cow˺ it should be!" He replied, "Allah says, ‘The cow should neither be old nor young but in between. So do as you are commanded!’"
76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They said, "Call upon your Lord to specify for us its colour." He replied, "Allah says, ‘It should be a bright yellow cow—pleasant to see.’"
77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Again they said, "Call upon your Lord so that He may make clear to us which cow, for all cows look the same to us. Then, Allah willing, we will be guided ˹to the right one˺."
78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He replied, "Allah says, ‘It should have been used neither to till the soil nor water the fields; wholesome and without blemish.’" They said, "Now you have come with the truth." Yet they still slaughtered it hesitantly!
79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹This is˺ when a man was killed and you disputed who the killer was, but Allah revealed what you concealed.
80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So We instructed, "Strike the dead body with a piece of the cow." This is how ˹easily˺ Allah brings the dead to life, showing you His signs so that you may understand.
81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Even then your hearts became hardened like a rock or even harder, for some rocks gush rivers; others split, spilling water; while others are humbled in awe of Allah. And Allah is never unaware of what you do.
82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you ˹believers still˺ expect them to be true to you, though a group of them would hear the word of Allah then knowingly corrupt it after understanding it?
83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When they meet the believers they say, "We believe." But in private they say ˹to each other˺, "Will you disclose to the believers the knowledge Allah has revealed to you, so that they may use it against you before your Lord? Do you not understand?"
84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do they not know that Allah is aware of what they conceal and what they reveal?
85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And among them are the illiterate who know nothing about the Scripture except lies, and ˹so˺ they ˹wishfully˺ speculate.
86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So woe to those who distort the Scripture with their own hands then say, "This is from Allah"—seeking a fleeting gain! So woe to them for what their hands have written, and woe to them for what they have earned.
87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Some of˺ the Jews claim, "The Fire will not touch us except for a number of days." Say, ˹O Prophet,˺ "Have you taken a pledge from Allah—for Allah never breaks His word—or are you ˹just˺ saying about Allah what you do not know?"
88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But no! Those who commit evil and are engrossed in sin will be the residents of the Fire. They will be there forever.
89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those who believe and do good will be the residents of Paradise. They will be there forever.
90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when We took a covenant from the children of Israel ˹stating˺, "Worship none but Allah; be kind to parents, relatives, orphans and the needy; speak kindly to people; establish prayer; and pay alms-tax." But you ˹Israelites˺ turned away—except for a few of you—and were indifferent.
91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when We took your covenant that you would neither shed each other’s blood nor expel each other from their homes, you gave your pledge and bore witness.
92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But here you are, killing each other and expelling some of your people from their homes, aiding one another in sin and aggression; and when those ˹expelled˺ come to you as captives, you still ransom them—though expelling them was unlawful for you. Do you believe in some of the Scripture and reject the rest? Is there any reward for those who do so among you other than disgrace in this worldly life and being subjected to the harshest punishment on the Day of Judgment? For Allah is never unaware of what you do.
93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the ones who trade the Hereafter for the life of this world. So their punishment will not be reduced, nor will they be helped.
94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We gave Moses the Book and sent after him successive messengers. And We gave Jesus, son of Mary, clear proofs and supported him with the holy spirit. Why is it that every time a messenger comes to you ˹Israelites˺ with something you do not like, you become arrogant, rejecting some and killing others?
95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They say, "Our hearts are unreceptive!" In fact, Allah has condemned them for their disbelief. They have but little faith.
96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Although they used to pray for victory ˹by means of the Prophet˺ over the polytheists, confirming the Scripture they had ˹in their hands˺, they rejected it. So may Allah’s condemnation be upon the disbelievers.
97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Miserable is the price they have sold their souls for—denying Allah’s revelation and resenting Allah for granting His grace to whoever He wills of His servants! They have earned wrath upon wrath. And such disbelievers will suffer a humiliating punishment.
98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When it is said to them: "Believe in what Allah has revealed," they reply, "We only believe in what was sent down to us," and they deny what came afterwards, though it is the truth confirming their own Scriptures! Ask ˹them, O  Prophet˺, "Why then did you kill Allah’s prophets before, if you are ˹truly˺ believers?"
99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, Moses came to you with clear proofs, then you worshipped the calf in his absence, acting wrongfully.
100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when We took your covenant and raised the mountain above you ˹saying˺, "Hold firmly to that ˹Scripture˺ which We have given you and obey," they answered, "We hear and disobey." The love of the calf was rooted in their hearts because of their disbelief. Say, ˹O Prophet,˺ "How evil is what your ˹so-called˺ belief prompts you to do, if you ˹actually˺ believe ˹in the Torah˺!"
101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "If the ˹eternal˺ Home of the Hereafter with Allah is exclusively for you ˹Israelites˺ out of all humanity, then wish for death if what you say is true!"
102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.
103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     You will surely find them clinging to life more eagerly than any other people, even more than polytheists. Each one of them wishes to live a thousand years. But even if they were to live that long, it would not save them from the punishment. And Allah is All-Seeing of what they do.
104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, ˹O Prophet,˺ "Whoever is an enemy of Gabriel should know that he revealed this ˹Quran˺ to your heart by Allah’s Will, confirming what came before it—a guide and good news for the believers."
105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoever is an enemy of Allah, His angels, His messengers, Gabriel, and Michael, then ˹let them know that˺ Allah is certainly the enemy of the disbelievers.
106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We have sent down to you ˹O Prophet˺ clear revelations. ˹But˺ none will deny them except the rebellious.
107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why is it that every time they make a covenant, a group of them casts it aside? In fact, most of them do not believe.
108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now, when a messenger from Allah has come to them—confirming their own Scriptures—some of the People of the Book cast the Book of Allah behind their backs as if they did not know.
109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They ˹instead˺ followed the magic promoted by the devils during the reign of Solomon. Never did Solomon disbelieve, rather the devils disbelieved. They taught magic to the people, along with what had been revealed to the two angels, Harût and Marût, in Babylon. The two angels never taught anyone without saying, "We are only a test ˹for you˺, so do not abandon ˹your˺ faith." Yet people learned ˹magic˺ that caused a rift ˹even˺ between husband and wife; although their magic could not harm anyone except by Allah’s Will. They learned what harmed them and did not benefit them—although they already knew that whoever buys into magic would have no share in the Hereafter. Miserable indeed was the price for which they sold their souls, if only they knew!
110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If only they were faithful and mindful ˹of Allah˺, there would have been a better reward from Allah, if only they knew!
111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not say, "Ra’ina." [Herd us!] But say, "Unẓurna," [Tend to us!] and listen ˹attentively˺. And the disbelievers will suffer a painful punishment.
112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The disbelievers from the People of the Book and the polytheists would not want you to receive any blessing from your Lord, but Allah selects whoever He wills for His mercy. And Allah is the Lord of infinite bounty.
113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If We ever abrogate a verse or cause it to be forgotten, We replace it with a better or similar one. Do you not know that Allah is Most Capable of everything?
114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do you not know that the kingdom of the heavens and the earth belongs ˹only˺ to Allah, and you have no guardian or helper besides Allah?
115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or do you ˹believers˺ intend to ask of your Messenger as Moses was asked before? But whoever trades belief for disbelief has truly strayed from the Right Way.
116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Many among the People of the Book wish they could turn you ˹believers˺ back to disbelief because of their envy, after the truth has been made clear to them. Pardon and bear with them until Allah delivers His decision. Surely Allah is Most Capable of everything.
117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Establish prayer, and pay alms-tax. Whatever good you send forth for yourselves, you will ˹certainly˺ find ˹its reward˺ with Allah. Surely Allah is All-Seeing of what you do.
118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Jews and Christians each claim that none will enter Paradise except those of their own faith. These are their desires. Reply, ˹O Prophet,˺ "Show ˹me˺ your proof if what you say is true."
119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But no! Whoever submits themselves to Allah and does good will have their reward with their Lord. And there will be no fear for them, nor will they grieve.
120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Jews say, "The Christians have nothing to stand on" and the Christians say, "The Jews have nothing to stand on," although both recite the Scriptures. And those ˹pagans˺ who have no knowledge say the same ˹about people of faith˺. Surely Allah will judge between them on the Day of Judgment regarding their dispute.
121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who does more wrong than those who prevent Allah’s Name from being mentioned in His places of worship and strive to destroy them? Such people have no right to enter these places except with fear. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.
122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To Allah belong the east and the west, so wherever you turn you are facing ˹towards˺ Allah. All-Knowing.
123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They Glory be to Him! In fact, to Him belongs whatever is in the heavens and the earth—all are subject to His Will.
124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹He is˺ the Originator of the heavens and the earth! When He decrees a matter, He simply tells it, "Be!" And it is!
125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those who have no knowledge say, "If only Allah would speak to us or a sign would come to us!" The same was said by those who came before. Their hearts are all alike. Indeed, We have made the signs clear for people of sure faith.
126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We have surely sent you with the truth ˹O Prophet˺ as a deliverer of good news and a warner. And you will not be accountable for the residents of the Hellfire.
127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Never will the Jews or Christians be pleased with you, until you follow their faith. Say, "Allah’s guidance is the only ˹true˺ guidance." And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or help you against Allah.
128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those We have given the Book follow it as it should be followed. It is they who ˹truly˺ believe in it. As for those who reject it, it is they who are the losers.
129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O Children of Israel! Remember My favours upon you and how I honoured you above the others.
130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And guard yourselves against the Day when no soul will be of any help to another. No ransom will be taken, no intercession accepted, and no help will be given.
131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Remember˺ when Abraham was tested by his Lord with ˹certain˺ commandments, which he fulfilled. Allah said, "I will certainly make you into a role model for the people." Abraham asked, "What about my offspring?" Allah replied, "My covenant is not extended to the wrongdoers."
132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹remember˺ when We made the Sacred House as a site of prayer." And We entrusted Abraham and Ishmael to purify My House for those who circle it, who meditate in it, and who bow and prostrate themselves ˹in prayer˺.
133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when Abraham said, "My Lord, make this city ˹of Mecca˺ secure and provide fruits to its people—those among them who believe in Allah and the Last Day." He answered, "As for those who disbelieve, I will let them enjoy themselves for a little while, then I will condemn them to the torment of the Fire. What an evil destination!"
134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹remember˺ when Abraham raised the foundation of the House with Ishmael, ˹both praying,˺ "Our Lord! Accept ˹this˺ from us. You are indeed the All-Hearing, All-Knowing.
135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Our Lord! Make us both ˹fully˺ submit to You and from our descendants a nation that will submit to you. Show us our rituals, and turn to us in grace. You are truly the Accepter of Repentance, Most Merciful.
136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Our Lord! Raise from among them a messenger who will recite to them Your revelations, teach them the Book and wisdom, and purify them. Indeed, You ˹alone˺ are the Almighty, All-Wise."
137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And who would reject the faith of Abraham except a fool! We certainly chose him in this life, and in the Hereafter he will surely be among the righteous.
138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When his Lord ordered him, "Submit ˹to My Will˺," he responded, "I submit to the Lord of all worlds."
139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This was the advice of Abraham—as well as Jacob—to his children, ˹saying˺, "Indeed, Allah has chosen for you this faith; so do not die except in ˹a state of full˺ submission."
140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or did you witness when death came to Jacob? He asked his children, "Who will you worship after my passing?" They replied, "We will ˹continue to˺ worship your God, the God of your forefathers—Abraham, Ishmael, and Isaac—the One God. And to Him we ˹all˺ submit."
141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That was a community that had already gone before. For them is what they earned and for you is what you have earned. And you will not be accountable for what they have done.
142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Jews and Christians each say, "Follow our faith to be ˹rightly˺ guided." Say, ˹O Prophet,˺ "No! We follow the faith of Abraham, the upright—who was not a polytheist."
143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O believers,˺ "We believe in Allah and what has been revealed to us; and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord. We make no distinction between any of them. And to Allah we all submit."
144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So if they believe in what you believe, then they will indeed be ˹rightly˺ guided. But if they turn away, they are simply opposed ˹to the truth˺. But Allah will spare you their evil. For He is the All-Hearing, All-Knowing.
145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is the ˹natural˺ Way of Allah. And who is better than Allah in ordaining a way? And we worship ˹none but˺ Him.
146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, "Would you dispute with us about Allah, while He is our Lord and your Lord? We are accountable for our deeds and you for yours. And we are devoted to Him ˹alone˺.
147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do you claim that Abraham, Ishmael, Isaac, Jacob, and his descendants were all Jews or Christians?" Say, "Who is more knowledgeable: you or Allah?" Who does more wrong than those who hide the testimony they received from Allah? And Allah is never unaware of what you do.
148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That was a community that had already gone before. For them is what they earned and for you is what you have earned. And you will not be accountable for what they have done.
149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The foolish among the people will ask, "Why did they turn away from the direction of prayer they used to face?" Say, ˹O Prophet,˺ "The east and west belong ˹only˺ to Allah. He guides whoever He wills to the Straight Path."
150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And so We have made you ˹believers˺ an upright community so that you may be witnesses over humanity and that the Messenger may be a witness over you. We assigned your former direction of prayer only to distinguish those who would remain faithful to the Messenger from those who would lose faith. It was certainly a difficult test except for those ˹rightly˺ guided by Allah. And Allah would never discount your ˹previous acts of˺ faith. Surely Allah is Ever Gracious and Most Merciful to humanity.
151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We see you ˹O Prophet˺ turning your face towards heaven. Now We will make you turn towards a direction ˹of prayer˺ that will please you. So turn your face towards the Sacred Mosque ˹in Mecca˺—wherever you are, turn your faces towards it. Those who were given the Scripture certainly know this to be the truth from their Lord. And Allah is never unaware of what they do.
152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Even if you were to bring every proof to the People of the Book, they would not accept your direction ˹of prayer˺, nor would you accept theirs; nor would any of them accept the direction ˹of prayer˺ of another. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, then you would certainly be one of the wrongdoers.
153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those We have given the Scripture recognize this ˹Prophet˺ as they recognize their own children. Yet a group of them hides the truth knowingly.
154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹This is˺ the truth from your Lord, so do not ever be one of those who doubt.
155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Everyone turns to their own direction ˹of prayer˺. So compete with one another in doing good. Wherever you are, Allah will bring you all together ˹for judgment˺. Surely Allah is Most Capable of everything.
156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherever you are ˹O Prophet˺, turn your face towards the Sacred Mosque. This is certainly the truth from your Lord. And Allah is never unaware of what you ˹all˺ do.
157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherever you are ˹O Prophet˺, turn your face towards the Sacred Mosque. And wherever you ˹believers˺ are, face towards it, so that people will have no argument against you, except the wrongdoers among them. Do not fear them; fear Me, so that I may ˹continue to˺ perfect My favour upon you and so you may be ˹rightly˺ guided.
158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Since We have sent you a messenger from among yourselves—reciting to you Our revelations, purifying you, teaching you the Book and wisdom, and teaching you what you never knew—
159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       remember Me; I will remember you. And thank Me, and never be ungrateful.
160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Seek comfort in patience and prayer. Allah is truly with those who are patient.
161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Never say that those martyred in the cause of Allah are dead—in fact, they are alive! But you do not perceive it.
162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We will certainly test you with a touch of fear and famine and loss of property, life, and crops. Give good news to those who patiently endure—
163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             who, when faced with a disaster, say, "Surely to Allah we belong and to Him we will ˹all˺ return."
164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They are the ones who will receive Allah’s blessings and mercy. And it is they who are ˹rightly˺ guided.
165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, ˹the hills of˺ safa and Marwah let them walk between ˹the two hills˺. And whoever does good willingly, Allah is truly Appreciative, All-Knowing.
166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those who hide the clear proofs and guidance that We have revealed—after We made it clear for humanity in the Book—will be condemned by Allah and ˹all˺ those who condemn.
167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those who repent, mend their ways, and let the truth be known, they are the ones to whom I will turn ˹in forgiveness˺, for I am the Accepter of Repentance, Most Merciful.
168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely those who disbelieve and die as disbelievers are condemned by Allah, the angels, and all of humanity.
169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.
170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your God is ˹only˺ One God. There is no god ˹worthy of worship˺ except Him—the Most Compassionate, Most Merciful.
171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, in the creation of the heavens and the earth; the alternation of the day and the night; the ships that sail the sea for the benefit of humanity; the rain sent down by Allah from the skies, reviving the earth after its death; the scattering of all kinds of creatures throughout; the shifting of the winds; and the clouds drifting between the heavens and the earth—˹in all of this˺ are surely signs for people of understanding.
172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Still there are some who take others as Allah’s equal—they love them as they should love Allah—but the ˹true˺ believers love Allah even more. If only the wrongdoers could see the ˹horrible˺ punishment ˹awaiting them˺, they would certainly realize that all power belongs to Allah and that Allah is indeed severe in punishment.
173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Consider the Day˺ when those who misled others will disown their followers—when they face the torment—and the bonds that united them will be cut off.
174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The ˹misled˺ followers will cry, "If only we could have a second chance, we would disown them as they disowned us." And so Allah will make them remorseful of their misdeeds. And they will never ˹be able to˺ leave the Fire.
175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O humanity! Eat from what is lawful and good on the earth and do not follow Satan’s footsteps. He is truly your sworn enemy.
176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He only incites you to commit evil and indecency, and to claim against Allah what you do not know.
177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When it is said to them, "Follow what Allah has revealed," they reply, "No! We ˹only˺ follow what we found our forefathers practicing." ˹Would they still do so,˺ even if their forefathers had ˹absolutely˺ no understanding or guidance?
178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The example of the disbelievers ˹not responding to the Messenger’s warning˺ is like a flock not comprehending the calls and cries of the shepherd. ˹They are wilfully˺ deaf, dumb and blind so they have no understanding.
179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Eat from the good things We have provided for you. And give thanks to Allah if you ˹truly˺ worship Him ˹alone˺.
180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—they will not be sinful. Surely Allah is All-Forgiving, Most Merciful.
181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, those who hide Allah’s revelations, trading them for a fleeting gain consume nothing but fire into their bellies. Allah will neither speak to them on the Day of Judgment, nor will He purify them. And they will suffer a painful punishment.
182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They are the ones who trade guidance for misguidance and forgiveness for punishment. How persistent are they in pursuit of the Fire!
183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That is because Allah has revealed the Book in truth. And surely those who differ regarding it are totally engrossed in opposition.
184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Righteousness is not in turning your faces towards the east or the west. Rather, the righteous are those who believe in Allah, the Last Day, the angels, the Books, and the prophets; who give charity out of their cherished wealth to relatives, orphans, the poor, ˹needy˺ travellers, beggars, and for freeing captives; who establish prayer, pay alms-tax, and keep the pledges they make; and who are patient in times of suffering, adversity, and in ˹the heat of˺ battle. It is they who are true ˹in faith˺, and it is they who are mindful ˹of Allah˺.
185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O believers! ˹The law of˺ retaliation is set for you in cases of murder—a free man for a free man, a slave for a slave, and a female for a female. and payment should be made courteously. This is a concession and a mercy from your Lord. But whoever transgresses after that will suffer a painful punishment.
186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There is ˹security of˺ life for you in ˹the law of˺ retaliation, O  people of reason, so that you may become mindful ˹of Allah˺.
187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is prescribed that when death approaches any of you—if they leave something of value—a will should be made in favour of parents and immediate family with fairness. ˹This is˺ an obligation on those who are mindful ˹of Allah˺.
188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But whoever changes the will after hearing it, the blame will only be on those who made the change. Indeed, Allah is All-Hearing, All-Knowing.
189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whoever suspects an error or an injustice in the will and brings about a ˹fair˺ settlement among the parties will not be sinful. Surely Allah is All-Forgiving, Most Merciful.
190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O believers! Fasting is prescribed for you—as it was for those before you—so perhaps you will become mindful ˹of Allah˺.
191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Fast a˺ prescribed number of days. compensation can be made by feeding a needy person ˹for every day not fasted˺. But whoever volunteers to give more, it is better for them. And to fast is better for you, if only you knew.
192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ramaḍan is the month in which the Quran was revealed as a guide for humanity with clear proofs of guidance and the standard ˹to distinguish between right and wrong˺. So whoever is present this month, let them fast. But whoever is ill or on a journey, then ˹let them fast˺ an equal number of days ˹after Ramaḍan˺. Allah intends ease for you, not hardship, so that you may complete the prescribed period and proclaim the greatness of Allah for guiding you, and perhaps you will be grateful.
193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When My servants ask you ˹O Prophet˺ about Me: I am truly near. I respond to one’s prayer when they call upon Me. So let them respond ˹with obedience˺ to Me and believe in Me, perhaps they will be guided ˹to the Right Way˺.
194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It has been made permissible for you to be intimate with your wives during the nights preceding the fast. Your spouses are a garment ˹You may˺ eat and drink until you see the light of dawn breaking the darkness of night, then complete the fast until nightfall. Do not be intimate with your spouses while you are meditating in the mosques. These are the limits set by Allah, so do not exceed them. This is how Allah makes His revelations clear to people, so they may become mindful ˹of Him˺.
195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not consume one another’s wealth unjustly, nor deliberately bribe authorities in order to devour a portion of others’ property, knowing that it is a sin.
196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They ask you ˹O Prophet˺ about the phases of the moon. Say, "They are a means for people to determine time and pilgrimage." Righteousness is not in entering your houses from the back doors. Rather, righteousness is to be mindful ˹of Allah˺. So enter your homes through their ˹proper˺ doors, and be mindful of Allah so you may be successful.
197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fight in the cause of Allah ˹only˺ against those who wage war against you, but do not exceed the limits. Allah does not like transgressors.
198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Kill them wherever you come upon them is far worse than killing. And do not fight them at the Sacred Mosque unless they attack you there. If they do so, then fight them—that is the reward of the disbelievers.
199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if they cease, then surely Allah is All-Forgiving, Most Merciful.
200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Fight against them ˹if they persecute you˺ until there is no more persecution, and ˹your˺ devotion will be to Allah ˹alone˺. If they stop ˹persecuting you˺, let there be no hostility except against the aggressors.
201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹There will be retaliation in˺ a sacred month for ˹an offence in˺ a sacred month, and all violations will bring about retaliation. So, if anyone attacks you, retaliate in the same manner. ˹But˺ be mindful of Allah, and know that Allah is with those mindful ˹of Him˺.
202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Spend in the cause of Allah and do not let your own hands throw you into destruction ˹by withholding˺. And do good, for Allah certainly loves the good-doers.
203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Complete the pilgrimage and minor pilgrimage for Allah. But if prevented ˹from proceeding˺, then ˹offer˺ whatever sacrificial animals you can afford. And do not shave your heads until the sacrificial animal reaches its destination. But if any of you is ill or has a scalp ailment ˹requiring shaving˺, then compensate either by fasting, charity, or a sacrificial offering. In times of peace, you may combine the pilgrimage and minor pilgrimage then make the sacrificial offering you can afford. Whoever cannot afford that ˹offering˺, let them fast three days during pilgrimage and seven after returning ˹home˺—completing ten. These offerings are for those who do not live near the Sacred House. And be mindful of Allah, and know that Allah is severe in punishment.
204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Commitment to˺ pilgrimage is made in appointed months. Whoever commits to ˹performing˺ pilgrimage, let them stay away from intimate relations, foul language, and arguments during pilgrimage. Whatever good you do, Allah ˹fully˺ knows of it. Take ˹necessary˺ provisions ˹for the journey˺—surely the best provision is righteousness. And be mindful of Me, O  people of reason!
205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   There is no blame on you for seeking the bounty of your Lord ˹during this journey˺. and praise Him for having guided you, for surely before this ˹guidance˺ you were astray.
206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then go forth with the rest of the pilgrims. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful.
207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When you have fulfilled your sacred rites, praise Allah as you used to praise your forefathers ˹before Islam˺, or even more passionately. There are some who say, "Our Lord! Grant us ˹Your bounties˺ in this world," but they will have no share in the Hereafter.
208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Yet there are others who say, "Our Lord! Grant us the good of this world and the Hereafter, and protect us from the torment of the Fire."
209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is they who will receive a ˹heavenly˺ reward for the good they have done. Surely Allah is swift in reckoning.
210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And remember Allah during ˹these˺ appointed days. Whoever departs swiftly on the second day is not sinful, neither are those who stay behind ˹till the third—seeking additional reward˺, so long as they are mindful ˹of their Lord˺. And be mindful of Allah, and know that to Him you will ˹all˺ be gathered.
211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There are some ˹hypocrites˺ who impress you with their views regarding worldly affairs and openly call upon Allah to witness what is in their hearts, yet they are your worst adversaries.
212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when they leave ˹you˺, they strive throughout the land to spread mischief in it and destroy crops and cattle. Allah does not like mischief.
213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When it is said to them, "Fear Allah," pride carries them off to sin. Hell will be their proper place. What an evil place to rest!
214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there are those who would dedicate their lives to Allah’s pleasure. And Allah is Ever Gracious to ˹His˺ servants.
215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Enter into Islam wholeheartedly and do not follow Satan’s footsteps. Surely he is your sworn enemy.
216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If you falter after receiving the clear proofs, then know that Allah is indeed Almighty, All-Wise.
217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Are they waiting for Allah ˹Himself˺ to come to them in the shade of clouds, along with the angels? ˹If He did˺, then the matter would be settled ˹at once˺. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ask the Children of Israel how many clear signs We have given them. And whoever trades Allah’s favour—after receiving it—˹for disbelief˺ should know that Allah is indeed severe in punishment.
219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The life of this world has been made appealing to the disbelievers, and they mock the believers. Those who are mindful ˹of Allah˺ will rank above them on the Day of Judgment. And Allah provides for whoever He wills without limit.
220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Humanity had once been one community ˹of believers before they lost faith˺. Then Allah raised prophets as deliverers of good news and as warners, and revealed to them the Scriptures in truth to judge among people regarding their disputes. And no one disputed the Scriptures except the very people who received them after clear proofs had come to them—out of jealousy. Then Allah, by His grace, has guided the believers to the truth regarding those disputes. And Allah guides whoever He wills to the Straight Path.
221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do you think you will be admitted into Paradise without being tested like those before you? They were afflicted with suffering and adversity and were so ˹violently˺ shaken that ˹even˺ the Messenger and the believers with him cried out, "When will Allah’s help come?" Indeed, Allah’s help is ˹always˺ near.
222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They ask you ˹O Prophet in˺ what ˹way˺ they should donate. Say, "Whatever donations you give are for parents, relatives, orphans, the poor, and ˹needy˺ travellers. Whatever good you do is certainly well known to Allah."
223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fighting has been made obligatory upon you ˹believers˺, though you dislike it. Perhaps you dislike something which is good for you and like something which is bad for you. Allah knows and you do not know.
224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They
225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely those who have believed, emigrated, and struggled in the Way of Allah—they can hope for Allah’s mercy. And Allah is All-Forgiving, Most Merciful.
226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They ask you ˹O Prophet˺ about intoxicants and gambling. Say, "There is great evil in both, as well as some benefit for people—but the evil outweighs the benefit." They ˹also˺ ask you ˹O Prophet˺ what they should donate. Say, "Whatever you can spare." This is how Allah makes His revelations clear to you ˹believers˺, so perhaps you may reflect
227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           upon this world and the Hereafter. And they ask you ˹O Prophet˺ concerning orphans. Say, "Improving their condition is best. And if you partner with them, they are bonded with you ˹in faith˺. Surely Allah is Almighty, All-Wise."
228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do not marry polytheistic women until they believe; for a believing slave-woman is better than a free polytheist, even though she may look pleasant to you. And do not marry your women to polytheistic men until they believe, for a believing slave-man is better than a free polytheist, even though he may look pleasant to you. They invite ˹you˺ to the Fire while Allah invites ˹you˺ to Paradise and forgiveness by His grace. He makes His revelations clear to the people so perhaps they will be mindful.
229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They ask you ˹O Prophet˺ about menstruation. Say, "Beware of its harm! So keep away, and do not have intercourse with your wives during their monthly cycles until they are purified. When they purify themselves, then you may approach them in the manner specified by Allah. Surely Allah loves those who always turn to Him in repentance and those who purify themselves."
230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your wives are like farmland for you, Be mindful of Allah, and know that you will meet Him. And give good news to the believers.
231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not use Allah’s Name in your oaths as an excuse for not doing good, not guarding against evil, or not making peace between people. And Allah is All-Hearing, All-Knowing.
232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Allah will not hold you accountable for unintentional oaths, but for what you intended in your hearts. And Allah is All-Forgiving, Most Forbearing.
233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those who swear not to have intercourse with their wives must wait for four months. If they change their mind, then Allah is certainly All-Forgiving, Most Merciful.
234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if they settle on divorce, then Allah is indeed All-Hearing, All-Knowing.
235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Divorced women must wait three monthly cycles ˹before they can re-marry˺. It is not lawful for them to conceal what Allah has created in their wombs, if they ˹truly˺ believe in Allah and the Last Day. And their husbands reserve the right to take them back within that period if they desire reconciliation. Women have rights similar to those of men equitably, although men have a degree ˹of responsibility˺ above them. And Allah is Almighty, All-Wise.
236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Divorce may be retracted twice, then the husband must retain ˹his wife˺ with honour or separate ˹from her˺ with grace. These are the limits set by Allah, so do not transgress them. And whoever transgresses the limits of Allah, they are the ˹true˺ wrongdoers.
237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So if a husband divorces his wife ˹three times˺, then it is not lawful for him to remarry her until after she has married another man and then is divorced. Then it is permissible for them to reunite, as long as they feel they are able to maintain the limits of Allah. These are the limits set by Allah, which He makes clear for people of knowledge.
238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When you divorce women and they have ˹almost˺ reached the end of their waiting period, either retain them honourably or let them go honourably. But do not retain them ˹only˺ to harm them ˹or˺ to take advantage ˹of them˺. Whoever does that surely wrongs his own soul. Do not take Allah’s revelations lightly. Remember Allah’s favours upon you as well as the Book and wisdom He has sent down for your guidance. Be mindful of Allah, and know that Allah has ˹perfect˺ knowledge of all things.
239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When you have divorced women and they have reached the end of their waiting period, do not prevent them from re-marrying their ex-husbands if they come to an honourable agreement. This is enjoined on whoever has faith in Allah and the Last Day. This is purer and more dignifying for you. Allah knows and you do not know.
240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Divorced˺ mothers will breastfeed their offspring for two whole years, for those who wish to complete the nursing ˹of their child˺. The child’s father will provide reasonable maintenance and clothing for the mother ˹during that period˺. No one will be charged with more than they can bear. No mother or father should be made to suffer for their child. The ˹father’s˺ heirs are under the same obligation. But if both sides decide—after mutual consultation and consent—to wean a child, then there is no blame on them. If you decide to have your children nursed by a wet-nurse, it is permissible as long as you pay fairly. Be mindful of Allah, and know that Allah is All-Seeing of what you do.
241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for those of you who die and leave widows behind, let them observe a waiting period of four months and ten days. When they have reached the end of this period, then you are not accountable for what they decide for themselves in a reasonable manner. And Allah is All-Aware of what you do.
242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There is no blame on you for subtly showing interest in ˹divorced or widowed˺ women or for hiding ˹the intention˺ in your hearts. Allah knows that you are considering them ˹for marriage˺. But do not make a secret commitment with them—you can only show interest in them appropriately. Do not commit to the bond of marriage until the waiting period expires. Know that Allah is aware of what is in your hearts, so beware of Him. And know that Allah is All-Forgiving, Most Forbearing.
243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is no blame if you divorce women before the marriage is consummated or the dowry is settled. But give them a ˹suitable˺ compensation—the rich according to his means and the poor according to his. A reasonable compensation is an obligation on the good-doers.
244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if you divorce them before consummating the marriage but after deciding on a dowry, pay half of the dowry, unless the wife graciously waives it or the husband graciously pays in full. Graciousness is closer to righteousness. And do not forget kindness among yourselves. Surely Allah is All-Seeing of what you do.
245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Observe the ˹five obligatory˺ prayers—especially the middle prayer—and stand in true devotion to Allah.
246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you are in danger, pray on foot or while riding. But when you are safe, ˹take time to˺ remember Allah for teaching you what you did not know.
247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those of you who die leaving widows should bequeath for them a year’s maintenance without forcing them out. But if they choose to leave, you are not accountable for what they reasonably decide for themselves. And Allah is Almighty, All-Wise.
248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Reasonable provisions must be made for divorced women—a duty on those mindful ˹of Allah˺.
249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is how Allah makes His revelations clear to you, so perhaps you will understand.
250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have you ˹O Prophet˺ not seen those who fled their homes in the thousands for fear of death? Allah said to them, "Die!" then He gave them life. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.
251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fight in the cause of Allah, and know that Allah is All-Hearing, All-Knowing.
252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Who will lend to Allah a good loan which Allah will multiply many times over? It is Allah ˹alone˺ who decreases and increases ˹wealth˺. And to Him you will ˹all˺ be returned.
253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have you not seen those chiefs of the Children of Israel after Moses? They said to one of their prophets, "Appoint for us a king, ˹and˺ we will fight in the cause of Allah." He said, "Are you not going to cower if ordered to fight?" They replied, "How could we refuse to fight in the cause of Allah, while we were driven out of our homes and ˹separated from˺ our children?" But when they were ordered to fight, they fled, except for a few of them. And Allah has ˹perfect˺ knowledge of the wrongdoers.
254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Their prophet told them, "Allah has appointed Saul to be your king." They protested, "How can he be our king when some of us are more deserving of kingship than he, and he has not been blessed with vast riches?" He replied, "Allah has chosen him over you and blessed him with knowledge and stature. Allah grants kingship to whoever He wills. And Allah is All-Bountiful, All-Knowing."
255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Their prophet further told them, "The sign of Saul’s kingship is that the Ark will come to you—containing reassurance which will be carried by the angels. Surely in this is a sign for you, if you ˹truly˺ believe."
256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When Saul marched forth with his army, he cautioned: "Allah will test you with a river. So whoever drinks ˹his fill˺ from it is not with me, and whoever does not taste it—except a sip from the hollow of his hands—is definitely with me." They all drank ˹their fill˺ except for a few! When he and the ˹remaining˺ faithful with him crossed the river, they said, "Now we are no match for Goliath and his warriors." But those ˹believers˺ who were certain they would meet Allah reasoned, "How many times has a small force vanquished a mighty army by the Will of Allah! And Allah is ˹always˺ with the steadfast."
257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When they advanced to face Goliath and his warriors, they prayed, "Our Lord! Shower us with perseverance, make our steps firm, and give us victory over the disbelieving people."
258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they defeated them by Allah’s Will, and David killed Goliath. And Allah blessed David with kingship and wisdom and taught him what He willed. Had Allah not repelled a group of people by ˹the might of˺ another, corruption would have dominated the earth, but Allah is Gracious to all.
259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. And you are truly one of the messengers.
260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have chosen some of those messengers above others. If Allah had willed, succeeding generations would not have fought ˹among themselves˺ after receiving the clear proofs. But they differed—some believed while others disbelieved. Yet if Allah had willed, they would not have fought one another. But Allah does what He wills.
261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Donate from what We have provided for you before the arrival of a Day when there will be no bargaining, or intercession. Those who disbelieve are ˹truly˺ the wrongdoers.
262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah! There is no god ˹worthy of worship˺ except Him, the Ever-Living, All-Sustaining. Neither drowsiness nor sleep overtakes Him. To Him belongs whatever is in the heavens and whatever is on the earth. Who could possibly intercede with Him without His permission? He ˹fully˺ knows what is ahead of them and what is behind them, but no one can grasp any of His knowledge—except what He wills ˹to reveal˺. His Seat
263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let there be no compulsion in religion, for the truth stands out clearly from falsehood. So whoever renounces false gods and believes in Allah has certainly grasped the firmest, unfailing hand-hold. And Allah is All-Hearing, All-Knowing.
264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah is the Guardian of the believers—He brings them out of darkness and into light. As for the disbelievers, their guardians are false gods who lead them out of light and into darkness. It is they who will be the residents of the Fire. They will be there forever.
265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Are you ˹O Prophet˺ not aware of the one who argued with Abraham about his Lord because Allah had granted him kingship? ˹Remember˺ when Abraham said, "My Lord is the One Who has power to give life and cause death." He argued, "I too have the power to give life and cause death." Abraham challenged ˹him˺, "Allah causes the sun to rise from the east. So make it rise from the west." And so the disbeliever was dumbstruck. And Allah does not guide the wrongdoing people.
266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or ˹are you not aware of˺ the one who passed by a city which was in ruins. He wondered, "How could Allah bring this back to life after its destruction?" So Allah caused him to die for a hundred years then brought him back to life. Allah asked, "How long have you remained ˹in this state˺?" He replied, "Perhaps a day or part of a day." Allah said, "No! You have remained here for a hundred years! Just look at your food and drink—they have not spoiled. ˹But now˺ look at ˹the remains of˺ your donkey! And ˹so˺ We have made you into a sign for humanity. And look at the bones ˹of the donkey˺, how We bring them together then clothe them with flesh!" When this was made clear to him, he declared, "˹Now˺ I know that Allah is Most Capable of everything."
267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹remember˺ when Abraham said, "My Lord! Show me how you give life to the dead." Allah responded, "Do you not believe?" Abraham replied, "Yes I do, but just so my heart can be reassured." Allah said, "Then bring four birds, train them to come to you, ˹then cut them into pieces,˺ and scatter them on different hilltops. Then call them back, they will fly to you in haste. And ˹so you will˺ know that Allah is Almighty, All-Wise."
268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The example of those who spend their wealth in the cause of Allah is that of a grain that sprouts into seven ears, each bearing one hundred grains. And Allah multiplies ˹the reward even more˺ to whoever He wills. For Allah is All-Bountiful, All-Knowing.
269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those who spend their wealth in the cause of Allah and do not follow their charity with reminders of their generosity or hurtful words—they will get their reward from their Lord, and there will be no fear for them, nor will they grieve.
270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kind words and forgiveness are better than charity followed by injury. And Allah is Self-Sufficient, Most Forbearing.
271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not waste your charity with reminders ˹of your generosity˺ or hurtful words, like those who donate their wealth just to show off and do not believe in Allah or the Last Day. Their example is that of a hard barren rock covered with a thin layer of soil hit by a strong rain—leaving it just a bare stone. Such people are unable to preserve the reward of their charity. Allah does not guide ˹such˺ disbelieving people.
272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the example of those who donate their wealth, seeking Allah’s pleasure and believing the reward is certain, is that of a garden on a fertile hill: when heavy rain falls, it yields up twice its normal produce. If no heavy rain falls, a drizzle is sufficient. And Allah is All-Seeing of what you do.
273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Would any of you wish to have a garden with palm trees, grapevines, and all kinds of fruits with rivers flowing underneath and as they grow very old with dependent children, a fiery whirlwind hits the garden, burning it all up? This is how Allah makes His revelations clear to you, so perhaps you will reflect.
274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Donate from the best of what you have earned and of what We have produced for you from the earth. Do not pick out worthless things for donation, which you yourselves would only accept with closed eyes. And know that Allah is Self-Sufficient, Praiseworthy.
275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Devil threatens you with ˹the prospect of˺ poverty and bids you to the shameful deed ˹of stinginess˺, while Allah promises you forgiveness and ˹great˺ bounties from Him. And Allah is All-Bountiful, All-Knowing.
276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah grants wisdom to whoever He wills. And whoever is granted wisdom is certainly blessed with a great privilege. But none will be mindful ˹of this˺ except people of reason.
277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whatever charities you give or vows you make are surely known to Allah. And the wrongdoers will have no helpers.
278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               To give charity publicly is good, but to give to the poor privately is better for you, and will absolve you of your sins. And Allah is All-Aware of what you do.
279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You are not responsible for people’s guidance ˹O Prophet˺—it is Allah Who guides whoever He wills. Whatever you ˹believers˺ spend in charity, it is for your own good—as long as you do so seeking the pleasure of Allah. Whatever you donate will be paid back to you in full, and you will not be wronged.
280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Charity is˺ for the needy who are too engaged in the cause of Allah to move about in the land ˹for work˺. Those unfamiliar with their situation will think they are not in need ˹of charity˺ because they do not beg. You can recognize them by their appearance. They do not beg people persistently. Whatever you give in charity is certainly well known to Allah.
281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those who spend their wealth in charity day and night, secretly and openly—their reward is with their Lord, and there will be no fear for them, nor will they grieve.
282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Those who consume interest will stand ˹on Judgment Day˺ like those driven to madness by Satan’s touch. That is because they say, "Trade is no different than interest." But Allah has permitted trading and forbidden interest. Whoever refrains—after having received warning from their Lord—may keep their previous gains, and their case is left to Allah. As for those who persist, it is they who will be the residents of the Fire. They will be there forever.
283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah has made interest fruitless and charity fruitful. And Allah does not like any ungrateful evildoer.
284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, those who believe, do good, establish prayer, and pay alms-tax will receive their reward from their Lord, and there will be no fear for them, nor will they grieve.
285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Fear Allah, and give up outstanding interest if you are ˹true˺ believers.
286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If you do not, then beware of a war with Allah and His Messenger! But if you repent, you may retain your principal—neither inflicting nor suffering harm.
287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If it is difficult for someone to repay a debt, postpone it until a time of ease. And if you waive it as an act of charity, it will be better for you, if only you knew.
288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Be mindful of the Day when you will ˹all˺ be returned to Allah, then every soul will be paid in full for what it has done, and none will be wronged.
289  O believers! When you contract a loan for a fixed period of time, commit it to writing. Let the scribe maintain justice between the parties. The scribe should not refuse to write as Allah has taught them to write. They will write what the debtor dictates, bearing Allah in mind and not defrauding the debt. If the debtor is incompetent, weak, or unable to dictate, let their guardian dictate for them with justice. Call upon two of your men to witness. If two men cannot be found, then one man and two women of your choice will witness—so if one of the women forgets the other may remind her. The witnesses must not refuse when they are summoned. You must not be against writing ˹contracts˺ for a fixed period—whether the sum is small or great. This is more just ˹for you˺ in the sight of Allah, and more convenient to establish evidence and remove doubts. However, if you conduct an immediate transaction among yourselves, then there is no need for you to record it, but call upon witnesses when a deal is finalized. Let no harm come to the scribe or witnesses. If you do, then you have gravely exceeded ˹your limits˺. Be mindful of Allah, for Allah ˹is the One Who˺ teaches you. And Allah has ˹perfect˺ knowledge of all things.
290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If you are on a journey and a scribe cannot be found, then a security can be taken. If you trust one another, then ˹there is no need for a security, but˺ the debtor should honour this trust ˹by repaying the debt˺—and let them fear Allah, their Lord. And do not conceal the testimony, for whoever conceals it, their hearts are indeed sinful. And Allah ˹fully˺ knows what you do.
291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Whether you reveal what is in your hearts or conceal it, Allah will call you to account for it. He forgives whoever He wills, and punishes whoever He wills. And Allah is Most Capable of everything.
292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Messenger ˹firmly˺ believes in what has been revealed to him from his Lord, and so do the believers. They ˹all˺ believe in Allah, His angels, His Books, and His messengers. ˹They proclaim,˺ "We make no distinction between any of His messengers." And they say, "We hear and obey. ˹We seek˺ Your forgiveness, our Lord! And to You ˹alone˺ is the final return."
293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah does not require of any soul more than what it can afford. All good will be for its own benefit, and all evil will be to its own loss. ˹The believers pray,˺ "Our Lord! Do not punish us if we forget or make a mistake. Our Lord! Do not place a burden on us like the one you placed on those before us. Our Lord! Do not burden us with what we cannot bear. Pardon us, forgive us, and have mercy on us. You are our ˹only˺ Guardian. So grant us victory over the disbelieving people."
294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alif-Lãm-Mĩm.
295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah! There is no god ˹worthy of worship˺ except Him—the Ever-Living, All-Sustaining.
296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He has revealed to you ˹O Prophet˺ the Book in truth, confirming what came before it, as He revealed the Torah and the Gospel
297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          previously, as a guide for people, and ˹also˺ revealed the Standard ˹to distinguish between right and wrong˺. Surely those who reject Allah’s revelations will suffer a severe torment. For Allah is Almighty, capable of punishment.
298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely nothing on earth or in the heavens is hidden from Allah.
299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He is the One Who shapes you in the wombs of your mothers as He wills. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.
300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He is the One Who has revealed to you ˹O Prophet˺ the Book, of which some verses are precise—they are the foundation of the Book—while others are elusive. Those with deviant hearts follow the elusive verses seeking ˹to spread˺ doubt through their ˹false˺ interpretations—but none grasps their ˹full˺ meaning except Allah. As for those well-grounded in knowledge, they say, "We believe in this ˹Quran˺—it is all from our Lord." But none will be mindful ˹of this˺ except people of reason.
301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They say,˺ "Our Lord! Do not let our hearts deviate after you have guided us. Grant us Your mercy. You are indeed the Giver ˹of all bounties˺.
302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Our Lord! You will certainly gather all humanity for the ˹promised˺ Day—about which there is no doubt. Surely Allah does not break His promise."
303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah—and they will be the fuel for the Fire.
304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Their fate will be like that of the people of Pharaoh and those before them—they all rejected Our signs, so Allah seized them for their sins. And Allah is severe in punishment.
305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹O Prophet!˺ Tell the disbelievers, "Soon you will be overpowered and driven to Hell—what an evil place to rest!"
306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, there was a sign for you in the two armies that met in battle—one fighting for the cause of Allah and the other in denial. The believers saw their enemy twice their number. But Allah supports with His victory whoever He wills. Surely in this is a lesson for people of insight.
307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The enjoyment of ˹worldly˺ desires—women, children, treasures of gold and silver, fine horses, cattle, and fertile land—has been made appealing to people. These are the pleasures of this worldly life, but with Allah is the finest destination.
308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Shall I inform you of what is better than ˹all of˺ this? Those mindful ˹of Allah˺ will have Gardens with their Lord under which rivers flow, to stay there forever, and pure spouses, along with Allah’s pleasure." And Allah is All-Seeing of ˹His˺ servants,
309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       who pray, "Our Lord! We have believed, so forgive our sins and protect us from the torment of the Fire."
310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It is they˺ who are patient, sincere, obedient, and charitable, and who pray for forgiveness before dawn.
311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah ˹Himself˺ is a Witness that there is no god ˹worthy of worship˺ except Him—and so are the angels and people of knowledge. He is the Maintainer of justice. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.
312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Certainly, Allah’s only Way is Islam. Whoever denies Allah’s signs, then surely Allah is swift in reckoning.
313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So if they argue with you ˹O Prophet˺, say, "I have submitted myself to Allah, and so have my followers." And ask those who were given the Scripture and the illiterate ˹people˺, "Have you submitted yourselves ˹to Allah˺?" If they submit, they will be ˹rightly˺ guided. But if they turn away, then your duty is only to deliver ˹the message˺. And Allah is All-Seeing of ˹His˺ servants.
314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those who deny Allah’s signs, kill the prophets unjustly, and kill people who stand up for justice—give them good news of a painful punishment.
315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They are the ones whose deeds are wasted in this world and the Hereafter. And they will have no helpers.
316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Have you not seen those who were given a portion of the Scriptures? Yet when they are invited to the Book of Allah to settle their disputes, some of them turn away heedlessly.
317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is because they say, "The Fire will not touch us except for a few days." They have been deceived in their faith by their wishful lying.
318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But how ˹horrible˺ will it be when We gather them together on the Day about which there is no doubt—when every soul will be paid in full for what it has done, and none will be wronged!
319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "O Allah! Lord over all authorities! You give authority to whoever You please and remove it from who You please; You honour whoever You please and disgrace who You please—all good is in Your Hands. Surely You ˹alone˺ are Most Capable of everything.
320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You cause the night to pass into the day and the day into the night. You bring forth the living from the dead and the dead from the living. And You provide for whoever You will without limit."
321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Believers should not take disbelievers as guardians instead of the believers—and whoever does so will have nothing to hope for from Allah—unless it is a precaution against their tyranny. And Allah warns you about Himself. And to Allah is the final return.
322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Whether you conceal what is in your hearts or reveal it, it is known to Allah. For He knows whatever is in the heavens and whatever is on the earth. And Allah is Most Capable of everything."
323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Watch for˺ the Day when every soul will be presented with whatever good it has done. And it will wish that its misdeeds were far off. And Allah warns you about Himself. And Allah is Ever Gracious to ˹His˺ servants.
324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "If you ˹sincerely˺ love Allah, then follow me; Allah will love you and forgive your sins. For Allah is All-Forgiving, Most Merciful."
325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "Obey Allah and His Messenger." If they still turn away, then truly Allah does not like the disbelievers.
326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, Allah chose Adam, Noah, the family of Abraham, and the family of ’Imran above all people ˹of their time˺.
327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They are descendants of one another. And Allah is All-Hearing, All-Knowing.
328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Remember˺ when the wife of ’Imran said, "My Lord! I dedicate what is in my womb entirely to Your service, so accept it from me. You ˹alone˺ are truly the All-Hearing, All-Knowing."
329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When she delivered, she said, "My Lord! I have given birth to a girl,"—and Allah fully knew what she had delivered—"and the male is not like the female.
330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So her Lord accepted her graciously and blessed her with a pleasant upbringing—entrusting her to the care of Zachariah. Whenever Zachariah visited her in the sanctuary, he found her supplied with provisions. He exclaimed, "O Mary! Where did this come from?" She replied, "It is from Allah. Surely Allah provides for whoever He wills without limit."
331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then and there Zachariah prayed to his Lord, saying, "My Lord! Grant me—by your grace—righteous offspring. You are certainly the Hearer of ˹all˺ prayers."
332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the angels called out to him while he stood praying in the sanctuary, "Allah gives you good news of ˹the birth of˺ John who will confirm the Word of Allah and will be a great leader, chaste, and a prophet among the righteous."
333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Zachariah exclaimed, "My Lord! How can I have a son when I am very old and my wife is barren?" He replied, "So will it be. Allah does what He wills."
334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Zachariah said, "My Lord! Grant me a sign." He said, "Your sign is that you will not ˹be able to˺ speak to people for three days except through gestures. Remember your Lord often and glorify ˹Him˺ morning and evening."
335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when the angels said, "O Mary! Surely Allah has selected you, purified you, and chosen you over all women of the world.
336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O  Mary! Be devout to your Lord, prostrate yourself ˹in prayer˺ and bow along with those who bow down."
337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is news of the unseen that We reveal to you ˹O Prophet˺. You were not with them when they cast lots to decide who would be Mary’s guardian, nor were you there when they argued ˹about it˺.
338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember˺ when the angels proclaimed, "O Mary! Allah gives you good news of a Word Jesus, son of Mary; honoured in this world and the Hereafter, and he will be one of those nearest ˹to Allah˺.
339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he will speak to people in ˹his˺ infancy and adulthood and will be one of the righteous."
340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mary wondered, "My Lord! How can I have a child when no man has ever touched me?" An angel replied, "So will it be. Allah creates what He wills. When He decrees a matter, He simply tells it, ‘Be!’ And it is!
341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Allah will teach him writing and wisdom, the Torah and the Gospel,
342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and ˹make him˺ a messenger to the Children of Israel ˹to proclaim,˺ ‘I have come to you with a sign from your Lord: I will make for you a bird from clay, breathe into it, and it will become a ˹real˺ bird—by Allah’s Will. I will heal the blind and the leper and raise the dead to life—by Allah’s Will. And I will prophesize what you eat and store in your houses. Surely in this is a sign for you if you ˹truly˺ believe.
343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I will confirm the Torah revealed before me and legalize some of what had been forbidden to you. I have come to you with a sign from your Lord, so be mindful of Allah and obey me.
344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely Allah is my Lord and your Lord. So worship Him ˹alone˺. This is the Straight Path.’"
345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When Jesus sensed disbelief from his people, he asked, "Who will stand up with me for Allah?" The disciples replied, "We will stand up for Allah. We believe in Allah, so bear witness that we have submitted."
346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They prayed to Allah,˺ "Our Lord! We believe in Your revelations and follow the messenger, so count us among those who bear witness."
347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the disbelievers made a plan ˹against Jesus˺, but Allah also planned—and Allah is the best of planners.
348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Remember˺ when Allah said, "O Jesus! I will take you and raise you up to Myself. I will deliver you from those who disbelieve, and elevate your followers above the disbelievers until the Day of Judgment. Then to Me you will ˹all˺ return, and I will settle all your disputes.
349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who disbelieve, I will subject them to a severe punishment in this life and the Hereafter, and they will have no helpers.
350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And as for those who believe and do good, they will be rewarded in full. And Allah does not like the wrongdoers."
351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We recite ˹all˺ this to you ˹O Prophet˺ as one of the signs and ˹as˺ a wise reminder.
352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, the example of Jesus in the sight of Allah is like that of Adam. He created him from dust, then said to him, "Be!" And he was!
353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is the truth from your Lord, so do not be one of those who doubt.
354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now, whoever disputes with you ˹O Prophet˺ concerning Jesus after full knowledge has come to you, say, "Come! Let us gather our children and your children, our women and your women, ourselves and yourselves—then let us sincerely invoke Allah’s curse upon the liars."
355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certainly, this is the true narrative, and there is no god ˹worthy of worship˺ except Allah. And indeed, Allah ˹alone˺ is the Almighty, All-Wise.
356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If they turn away, then surely Allah has ˹perfect˺ knowledge of the corruptors.
357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "O People of the Book! Let us come to common terms: that we will worship none but Allah, associate none with Him, nor take one another as lords instead of Allah." But if they turn away, then say, "Bear witness that we have submitted ˹to Allah alone˺."
358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O People of the Book! Why do you argue about Abraham, while the Torah and the Gospel were not revealed until long after him? Do you not understand?
359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Here you are! You disputed about what you have ˹little˺ knowledge of, Allah knows and you do not know.
360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Abraham was neither a Jew nor a Christian; he submitted in all uprightness and was not a polytheist.
361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, those who have the best claim to Abraham are his followers, this Prophet, and the believers. And Allah is the Guardian of those who believe.
362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Some of the People of the Book wish to mislead you ˹believers˺. They mislead none but themselves, yet they fail to perceive it.
363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O  People of the Book! Why do you reject the signs of Allah while you bear witness ˹to their truth˺?
364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O  People of the Book! Why do you mix the truth with falsehood and hide the truth knowingly?
365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A group among the People of the Book said ˹to one another˺, "Believe in what has been revealed to the believers in the morning and reject it in the evening, so they may abandon their faith.
366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And only believe those who follow your religion." Say, ˹O Prophet,˺ "Surely, ˹the only˺ true guidance is Allah’s guidance." ˹They also said,˺ "Do not believe that someone will receive ˹revealed˺ knowledge similar to yours or argue against you before your Lord." Say, ˹O Prophet,˺ "Indeed, all bounty is in the Hands of Allah—He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing."
367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He chooses whoever He wills to receive His mercy. And Allah is the Lord of infinite bounty.
368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   There are some among the People of the Book who, if entrusted with a stack of gold, will readily return it. Yet there are others who, if entrusted with a single coin, will not repay it unless you constantly demand it. This is because they say, "We are not accountable for ˹exploiting˺ the Gentiles." And ˹so˺ they attribute lies to Allah knowingly.
369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Absolutely! Those who honour their trusts and shun evil—surely Allah loves those who are mindful ˹of Him˺.
370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, those who trade Allah’s covenant and their oaths for a fleeting gain will have no share in the Hereafter. Allah will neither speak to them, nor look at them, nor purify them on the Day of Judgment. And they will suffer a painful punishment.
371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There are some among them who distort the Book with their tongues to make you think this ˹distortion˺ is from the Book—but it is not what the Book says. They say, "It is from Allah"—but it is not from Allah. And ˹so˺ they attribute lies to Allah knowingly.
372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is not appropriate for someone who Allah has blessed with the Scripture, wisdom, and prophethood to say to people, "Worship me instead of Allah." Rather, he would say, "Be devoted to the worship of your Lord ˹alone˺"—in accordance with what these prophets read in the Scripture and what they taught.
373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he would never ask you to take angels and prophets as lords. Would he ask you to disbelieve after you have submitted?
374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember˺ when Allah made a covenant with the prophets, ˹saying,˺ "Now that I have given you the Book and wisdom, if there comes to you a messenger confirming what you have, you must believe in him and support him." He added, "Do you affirm this covenant and accept this commitment?" They said, "Yes, we do." Allah said, "Then bear witness, and I too am a Witness."
375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoever turns back after this, they will be the rebellious.
376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do they desire a way other than Allah’s—knowing that all those in the heavens and the earth submit to His Will, willingly or unwillingly, and to Him they will ˹all˺ be returned?
377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "We believe in Allah and what has been revealed to us and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord—we make no distinction between any of them, and to Him we ˹fully˺ submit."
378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whoever seeks a way other than Islam, it will never be accepted from them, and in the Hereafter they will be among the losers.
379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How will Allah guide a people who chose to disbelieve after they had believed, acknowledged the Messenger to be true, and received clear proofs? For Allah does not guide the wrongdoing people.
380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their reward is that they will be condemned by Allah, the angels, and all of humanity.
381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.
382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.
383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, those who disbelieve after having believed then increase in disbelief, their repentance will never be accepted. It is they who are astray.
384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, if each of those who disbelieve then die as disbelievers were to offer a ransom of enough gold to fill the whole world, it would never be accepted from them. It is they who will suffer a painful punishment, and they will have no helpers.
385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You will never achieve righteousness until you donate some of what you cherish. And whatever you give is certainly well known to Allah.
386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All food was lawful for the children of Israel, except what Israel Say, ˹O Prophet,˺ "Bring the Torah and read it, if your claims are true."
387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then whoever still fabricates lies about Allah, they will be the ˹true˺ wrongdoers.
388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "Allah has declared the truth. So follow the Way of Abraham, the upright—who was not a polytheist."
389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely the first House ˹of worship˺ established for humanity is the one at Bakkah—a blessed sanctuary and a guide for ˹all˺ people.
390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In it are clear signs and the standing-place of Abraham. Whoever enters it should be safe. Pilgrimage to this House is an obligation by Allah upon whoever is able among the people. And whoever disbelieves, then surely Allah is not in need of ˹any of His˺ creation.
391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "O People of the Book! Why do you deny the revelations of Allah, when Allah is a Witness to what you do?"
392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "O People of the Book! Why do you turn the believers away from the Way of Allah—striving to make it ˹appear˺ crooked, while you are witnesses ˹to its truth˺? And Allah is never unaware of what you do."
393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! If you were to yield to a group of those who were given the Scripture, they would turn you back from belief to disbelief.
394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How can you disbelieve when Allah’s revelations are recited to you and His Messenger is in your midst? Whoever holds firmly to Allah is surely guided to the Straight Path.
395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O believers! Be mindful of Allah in the way He deserves,
396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And hold firmly to the rope of Allah and do not be divided. Remember Allah’s favour upon you when you were enemies, then He united your hearts, so you—by His grace—became brothers. And you were at the brink of a fiery pit and He saved you from it. This is how Allah makes His revelations clear to you, so that you may be ˹rightly˺ guided.
397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Let there be a group among you who call ˹others˺ to goodness, encourage what is good, and forbid what is evil—it is they who will be successful.
398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And do not be like those who split ˹into sects˺ and differed after clear proofs had come to them. It is they who will suffer a tremendous punishment.
399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On that Day some faces will be bright while others gloomy. To the gloomy-faced it will be said, "Did you disbelieve after having believed? So taste the punishment for your disbelief."
400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for the bright-faced, they will be in Allah’s mercy, where they will remain forever.
401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are Allah’s revelations We recite to you ˹O Prophet˺ in truth. And Allah desires no injustice to ˹His˺ creation.
402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You are the best community ever raised for humanity—you encourage good, forbid evil, and believe in Allah. Had the People of the Book believed, it would have been better for them. Some of them are faithful, but most are rebellious.
404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They can never inflict harm on you, except a little annoyance. But if they meet you in battle, they will flee and they will have no helpers.
405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They will be stricken with disgrace wherever they go, unless they are protected by a covenant with Allah or a treaty with the people. They have invited the displeasure of Allah and have been branded with misery for rejecting Allah’s revelations and murdering ˹His˺ prophets unjustly. This is ˹a fair reward˺ for their disobedience and violations.
406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet they are not all alike: there are some among the People of the Book who are upright, who recite Allah’s revelations throughout the night, prostrating ˹in prayer˺.
407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They believe in Allah and the Last Day, encourage good and forbid evil, and race with one another in doing good. They are ˹truly˺ among the righteous.
408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will never be denied the reward for any good they have done. And Allah has ˹perfect˺ knowledge of those mindful ˹of Him˺.
409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah. It is they who will be the residents of the Fire. They will be there forever.
410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The good they do in this worldly life is like the harvest of an evil people struck by a bitter wind, destroying it ˹completely˺. Allah never wronged them, but they wronged themselves.
411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! Do not associate closely with others who would not miss a chance to harm you. Their only desire is to see you suffer. Their prejudice has become evident from what they say—and what their hearts hide is far worse. We have made Our revelations clear to you, if only you understood.
412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Here you are! You love them but they do not love you, and you believe in all Scriptures. When they meet you they say, "We believe." But when alone, they bite their fingertips in rage. Say, ˹O Prophet,˺ "˹May you˺ die of your rage!" Surely Allah knows best what is ˹hidden˺ in the heart.
413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When you ˹believers˺ are touched with good, they grieve; but when you are afflicted with evil, they rejoice. ˹Yet,˺ if you are patient and mindful ˹of Allah˺, their schemes will not harm you in the least. Surely Allah is Fully Aware of what they do.
414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Remember, O  Prophet,˺ when you left your home in the early morning to position the believers in the battlefield. And Allah is All-Hearing, All-Knowing.
415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Remember˺ when two groups among you ˹believers˺ were about to cower, then Allah reassured them. So in Allah let the believers put their trust.
416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, Allah made you victorious at Badr when you were ˹vastly˺ outnumbered. So be mindful of Allah, perhaps you will be grateful.
417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Remember, O  Prophet,˺ when you said to the believers, "Is it not enough that your Lord will send down a reinforcement of three thousand angels for your aid?"
418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Most certainly, if you ˹believers˺ are firm and mindful ˹of Allah˺ and the enemy launches a sudden attack on you, Allah will reinforce you with five thousand angels designated ˹for battle˺.
419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah ordained this ˹reinforcement˺ only as good news for you and reassurance for your hearts. And victory comes only from Allah—the Almighty, All-Wise—
420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to destroy a group of the disbelievers and humble the rest, causing them to withdraw in disappointment.
421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You ˹O Prophet˺ have no say in the matter. It is up to Allah to turn to them in mercy or punish them, for indeed they are wrongdoers.
422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.
423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O believers! Do not consume interest, multiplying it many times over. And be mindful of Allah, so you may prosper.
424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Guard yourselves against the Fire prepared for the disbelievers.
425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Obey Allah and the Messenger, so you may be shown mercy.
426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And hasten towards forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those mindful ˹of Allah˺.
427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹They are˺ those who donate in prosperity and adversity, control their anger, and pardon others. And Allah loves the good-doers.
428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They are˺ those who, upon committing an evil deed or wronging themselves, remember Allah and seek forgiveness and do not knowingly persist in sin—and who forgives sins except Allah?
429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Their reward is forgiveness from their Lord and Gardens under which rivers flow, staying there forever. How excellent is the reward for those who work ˹righteousness˺!
430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Similar situations came to pass before you, so travel throughout the land and see the fate of the deniers.
431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is an insight to humanity—a guide and a lesson to the God-fearing.
432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do not falter or grieve, for you will have the upper hand, if you are ˹true˺ believers.
433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If you have suffered injuries ˹at Uhud˺, they suffered similarly ˹at Badr˺. We alternate these days ˹of victory and defeat˺ among people so that Allah may reveal the ˹true˺ believers, choose martyrs from among you—and Allah does not like the wrongdoers—
434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and distinguish the ˹true˺ believers and destroy the disbelievers.
435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do you think you will enter Paradise without Allah proving which of you ˹truly˺ struggled ˹for His cause˺ and patiently endured?
436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      You certainly wished ˹for the opportunity˺ for martyrdom before encountering it, now you have seen it with your own eyes.
437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Muhammad is no more than a messenger; other messengers have gone before him. If he were to die or to be killed, would you regress into disbelief? Those who do so will not harm Allah whatsoever. And Allah will reward those who are grateful.
438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No soul can ever die without Allah’s Will at the destined time. Those who desire worldly gain, We will let them have it, and those who desire heavenly reward, We will grant it to them. And We will reward those who are grateful.
439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Imagine˺ how many devotees fought along with their prophets and never faltered despite whatever ˹losses˺ they suffered in the cause of Allah, nor did they weaken or give in! Allah loves those who persevere.
440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all they said was, "Our Lord! Forgive our sins and excesses, make our steps firm, and grant us victory over the disbelieving people."
441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Allah gave them the reward of this world and the excellent reward of the Hereafter. For Allah loves the good-doers.
442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! If you yield to the disbelievers, they will drag you back to disbelief—and you will become losers.
443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But no! Allah is your Guardian, and He is the best Helper.
444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We will cast horror into the hearts of the disbelievers for associating ˹false gods˺ with Allah—a practice He has never authorized. The Fire will be their home—what an evil place for the wrongdoers to stay!
445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, Allah fulfilled His promise to you when you ˹initially˺ swept them away by His Will, then your courage weakened and you disputed about the command and disobeyed, after Allah had brought victory within your reach. Some of you were after worldly gain while others desired a heavenly reward. He denied you victory over them as a test, yet He has pardoned you. And Allah is Gracious to the believers.
446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Remember˺ when you were running far away ˹in panic˺—not looking at anyone—while the Messenger was calling to you from behind! So Allah rewarded your disobedience with distress upon distress. Now, do not grieve over the victory you were denied or the injury you suffered. And Allah is All-Aware of what you do.
447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then after distress, He sent down serenity in the form of drowsiness overcoming some of you, while others were disturbed by evil thoughts about Allah—the thoughts of ˹pre-Islamic˺ ignorance. They ask, "Do we have a say in the matter?" Say, ˹O Prophet,˺ "All matters are destined by Allah." They conceal in their hearts what they do not reveal to you. They say ˹to themselves˺, "If we had any say in the matter, none of us would have come to die here." Say, ˹O Prophet,˺ "Even if you were to remain in your homes, those among you who were destined to be killed would have met the same fate." Through this, Allah tests what is within you and purifies what is in your hearts. And Allah knows best what is ˹hidden˺ in the heart.
448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, those ˹believers˺ who fled on the day when the two armies met were made to slip by Satan because of their misdeeds. But Allah has pardoned them. Surely Allah is All-Forgiving, Most Forbearing.
449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O believers! Do not be like the unfaithful who say about their brothers who travel throughout the land or engage in battle, "If they had stayed with us, they would not have died or been killed." Allah makes such thinking a cause of agony in their hearts. It is Allah who gives life and causes death. And Allah is All-Seeing of what you do.
450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Should you be martyred or die in the cause of Allah, then His forgiveness and mercy are far better than whatever ˹wealth˺ those ˹who stay behind˺ accumulate.
451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whether you die or are martyred—all of you will be gathered before Allah.
452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It is out of Allah’s mercy that you ˹O Prophet˺ have been lenient with them. Had you been cruel or hard-hearted, they would have certainly abandoned you. So pardon them, ask Allah’s forgiveness for them, and consult with them in ˹conducting˺ matters. Once you make a decision, put your trust in Allah. Surely Allah loves those who trust in Him.
453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If Allah helps you, none can defeat you. But if He denies you help, then who else can help you? So in Allah let the believers put their trust.
454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is not appropriate for a prophet to illegally withhold spoils of war. And whoever does so, it will be held against them on the Day of Judgment. Then every soul will be paid in full for what it has done, and none will be wronged.
455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Are those who seek Allah’s pleasure like those who deserve Allah’s wrath? Hell is their home. What an evil destination!
456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They ˹each˺ have varying degrees in the sight of Allah. And Allah is All-Seeing of what they do.
457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, Allah has done the believers a ˹great˺ favour by raising a messenger from among them—reciting to them His revelations, purifying them, and teaching them the Book and wisdom. For indeed they had previously been clearly astray.
458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why is it when you suffered casualties ˹at Uhud˺—although you had made your enemy suffer twice as much ˹at Badr˺—you protested, "How could this be?"? Say, ˹O Prophet,˺ "It is because of your disobedience." Surely Allah is Most Capable of everything.
459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So what you suffered on the day the two armies met was by Allah’s Will, so that He might distinguish the ˹true˺ believers
460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and expose the hypocrites. When it was said to them, "Come fight in the cause of Allah or ˹at least˺ defend yourselves," they replied, "If we had known there was fighting, we would have definitely gone with you." They were closer to disbelief than to belief on that day—for saying with their mouths what was not in their hearts. Allah is All-Knowing of what they hide.
461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who sat at home, saying about their brothers, "Had they listened to us, they would not have been killed." Say, ˹O Prophet,˺ "Try not to die if what you say is true!"
462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Never think of those martyred in the cause of Allah as dead. In fact, they are alive with their Lord, well provided for—
463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rejoicing in Allah’s bounties and being delighted for those yet to join them. There will be no fear for them, nor will they grieve.
464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They are joyful for receiving Allah’s grace and bounty, and that Allah does not deny the reward of the believers.
465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹As for˺ those who responded to the call of Allah and His Messenger after their injury, those of them who did good and were mindful ˹of Allah˺ will have a great reward.
466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who were warned, "Your enemies have mobilized their forces against you, so fear them," the warning only made them grow stronger in faith and they replied, "Allah ˹alone˺ is sufficient ˹as an aid˺ for us and ˹He˺ is the best Protector."
467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they returned with Allah’s favours and grace, suffering no harm. For they sought to please Allah. And surely Allah is ˹the˺ Lord of infinite bounty.
468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That ˹warning˺ was only ˹from˺ Satan, trying to prompt you to fear his followers. So do not fear them; fear Me if you are ˹true˺ believers.
469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹O Prophet!˺ Do not grieve for those who race to disbelieve—surely they will not harm Allah in the least. It is Allah’s Will to disallow them a share in the Hereafter, and they will suffer a tremendous punishment.
470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Those who trade belief for disbelief will never harm Allah in the least, and they will suffer a painful punishment.
471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who disbelieve should not think that living longer is good for them. They are only given more time to increase in sin, and they will suffer a humiliating punishment.
472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah would not leave the believers in the condition you were in, until He distinguished the good from the evil ˹among you˺. Nor would Allah ˹directly˺ reveal to you the unseen, but He chooses whoever He wills as a messenger. So believe in Allah and His messengers. And if you are faithful and mindful ˹of Allah˺, you will receive a great reward.
473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And do not let those who ˹greedily˺ withhold Allah’s bounties think it is good for them—in fact, it is bad for them! They will be leashed ˹by their necks˺ on the Day of Judgment with whatever ˹wealth˺ they used to withhold. And Allah is the ˹sole˺ inheritor of the heavens and the earth. And Allah is All-Aware of what you do.
474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, Allah has heard those ˹among the Jews˺ who said, "Allah is poor; we are rich!" We have certainly recorded their slurs and their killing of prophets unjustly. Then We will say, "Taste the torment of burning!
475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation."
476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those ˹are the same people˺ who say, "Allah has commanded us not to believe in any messenger unless he brings us an offering to be consumed by fire ˹from the sky˺." Say, ˹O Prophet,˺ "Other prophets did in fact come to you before me with clear proofs and ˹even˺ what you demanded—why then did you kill them, if what you say is true?"
477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If you are rejected by them, so too were messengers before you who came with clear proofs, divine Books, and enlightening Scriptures.
478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Every soul will taste death. And you will only receive your full reward on the Day of Judgment. Whoever is spared from the Fire and is admitted into Paradise will ˹indeed˺ triumph, whereas the life of this world is no more than the delusion of enjoyment.
479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You ˹believers˺ will surely be tested in your wealth and yourselves, and you will certainly hear many hurtful words from those who were given the Scripture before you and ˹from˺ the polytheists. But if you are patient and mindful ˹of Allah˺—surely this is a resolve to aspire to.
480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Remember, O  Prophet,˺ when Allah took the covenant of those who were given the Scripture to make it known to people and not hide it, yet they cast it behind their backs and traded it for a fleeting gain. What a miserable profit!
481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do not let those who rejoice in their misdeeds and love to take credit for what they have not done think they will escape torment. They will suffer a painful punishment.
482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And Allah is Most Capable of everything.
483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, in the creation of the heavens and the earth and the alternation of the day and night there are signs for people of reason.
484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹They are˺ those who remember Allah while standing, sitting, and lying on their sides, and reflect on the creation of the heavens and the earth ˹and pray˺, "Our Lord! You have not created ˹all of˺ this without purpose. Glory be to You! Protect us from the torment of the Fire.
485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Our Lord! Indeed, those You commit to the Fire will be ˹completely˺ disgraced! And the wrongdoers will have no helpers.
486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Our Lord! We have heard the caller to ˹true˺ belief, ˹proclaiming,˺ ‘Believe in your Lord ˹alone˺,’ so we believed. Our Lord! Forgive our sins, absolve us of our misdeeds, and allow us ˹each˺ to die as one of the virtuous.
487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Our Lord! Grant us what You have promised us through Your messengers and do not put us to shame on Judgment Day—for certainly You never fail in Your promise."
488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So their Lord responded to them: "I will never deny any of you—male or female—the reward of your deeds. Both are equal in reward. Those who migrated or were expelled from their homes, and were persecuted for My sake and fought and ˹some˺ were martyred—I will certainly forgive their sins and admit them into Gardens under which rivers flow, as a reward from Allah. And with Allah is the finest reward!"
489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do not be deceived by the prosperity of the disbelievers throughout the land.
490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is only a brief enjoyment. Then Hell will be their home—what an evil place to rest!
491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But those who are mindful of their Lord will be in Gardens under which rivers flow, to stay there forever—as an accommodation from Allah. And what is with Allah is best for the virtuous.
492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, there are some among the People of the Book who truly believe in Allah and what has been revealed to you ˹believers˺ and what was revealed to them. They humble themselves before Allah—never trading Allah’s revelations for a fleeting gain. Their reward is with their Lord. Surely Allah is swift in reckoning.
493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Patiently endure, persevere, stand on guard, and be mindful of Allah, so you may be successful.
494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O humanity! Be mindful of your Lord Who created you from a single soul, and from it He created its mate, and through both He spread countless men and women. And be mindful of Allah—in Whose Name you appeal to one another—and ˹honour˺ family ties. Surely Allah is ever Watchful over you.
495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Give orphans their wealth ˹when they reach maturity˺, and do not exchange your worthless possessions for their valuables, nor cheat them by mixing their wealth with your own. For this would indeed be a great sin.
496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If you fear you might fail to give orphan women their ˹due˺ rights ˹if you were to marry them˺, then marry other women of your choice—two, three, or four. But if you are afraid you will fail to maintain justice, then ˹content yourselves with˺ one This way you are less likely to commit injustice.
497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Give women ˹you wed˺ their due dowries graciously. But if they waive some of it willingly, then you may enjoy it freely with a clear conscience.
498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do not entrust the incapable ˹among your dependants˺ with your wealth which Allah has made a means of support for you—but feed and clothe them from it, and speak to them kindly.
499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Test ˹the competence of˺ the orphans until they reach a marriageable age. Then if you feel they are capable of sound judgment, return their wealth to them. And do not consume it wastefully and hastily before they grow up ˹to demand it˺. If the guardian is well-off, they should not take compensation; but if the guardian is poor, let them take a reasonable provision. When you give orphans back their property, call in witnesses. And sufficient is Allah as a ˹vigilant˺ Reckoner.
500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For men there is a share in what their parents and close relatives leave, and for women there is a share in what their parents and close relatives leave—whether it is little or much. ˹These are˺ obligatory shares.
501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If ˹non-inheriting˺ relatives, orphans, or the needy are present at the time of distribution, offer them a ˹small˺ provision from it and speak to them kindly.
502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let the guardians be as concerned ˹for the orphans˺ as they would if they were to ˹die and˺ leave ˹their own˺ helpless children behind. So let them be mindful of Allah and speak equitably.
503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, those who unjustly consume orphans’ wealth ˹in fact˺ consume nothing but fire into their bellies. And they will be burned in a blazing Hell!
504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah commands you regarding your children: the share of the male will be twice that of the female. ˹This is˺ an obligation from Allah. Surely Allah is All-Knowing, All-Wise.
505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You will inherit half of what your wives leave if they are childless. But if they have children, then ˹your share is˺ one-fourth of the estate—after the fulfilment of bequests and debts. And your wives will inherit one-fourth of what you leave if you are childless. But if you have children, then your wives will receive one-eighth of your estate—after the fulfilment of bequests and debts. And if a man or a woman leaves neither parents nor children but only a brother or a sister ˹from their mother’s side˺, they will each inherit one-sixth, but if they are more than one, they ˹all˺ will share one-third of the estate ˹This is˺ a commandment from Allah. And Allah is All-Knowing, Most Forbearing.
506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These ˹entitlements˺ are the limits set by Allah. Whoever obeys Allah and His Messenger will be admitted into Gardens under which rivers flow, to stay there forever. That is the ultimate triumph!
507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But whoever disobeys Allah and His Messenger and exceeds their limits will be cast into Hell, to stay there forever. And they will suffer a humiliating punishment.
508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹As for˺ those of your women who commit illegal intercourse—call four witnesses from among yourselves. If they testify, confine the offenders to their homes until they die or Allah ordains a ˹different˺ way for them.
509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the two among you who commit this sin—discipline them. If they repent and mend their ways, relieve them. Surely Allah is ever Accepting of Repentance, Most Merciful.
510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah only accepts the repentance of those who commit evil ignorantly ˹or recklessly˺ then repent soon after—Allah will pardon them. And Allah is All-Knowing, All-Wise.
511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           However, repentance is not accepted from those who knowingly persist in sin until they start dying, and then cry, "Now I repent!" nor those who die as disbelievers. For them We have prepared a painful punishment.
512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! It is not permissible for you to inherit women against their will Treat them fairly. If you happen to dislike them, you may hate something which Allah turns into a great blessing.
513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you desire to replace a wife with another and you have given the former ˹even˺ a stack of gold ˹as a dowry˺, do not take any of it back. Would you ˹still˺ take it unjustly and very sinfully?
514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And how could you take it back after having enjoyed each other intimately and she has taken from you a firm commitment?
515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do not marry former wives of your fathers—except what was done previously. It was indeed a shameful, despicable, and evil practice.
516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Also˺ forbidden to you for marriage are your mothers, your daughters, your sisters, your paternal and maternal aunts, your brother’s daughters, your sister’s daughters, your foster-mothers, your foster-sisters, your mothers-in-law, your stepdaughters under your guardianship if you have consummated marriage with their mothers—but if you have not, then you can marry them—nor the wives of your own sons, nor two sisters together at the same time—except what was done previously. Surely Allah is All-Forgiving, Most Merciful.
517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Also ˹forbidden are˺ married women—except ˹female˺ captives in your possession. This is Allah’s commandment to you. Lawful to you are all beyond these—as long as you seek them with your wealth in a legal marriage, not in fornication. Give those you have consummated marriage with their due dowries. It is permissible to be mutually gracious regarding the set dowry. Surely Allah is All-Knowing, All-Wise.
518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if any of you cannot afford to marry a free believing woman, then ˹let him marry˺ a believing bondwoman possessed by one of you. Allah knows best ˹the state of˺ your faith ˹and theirs˺. You are from one another. This is for those of you who fear falling into sin. But if you are patient, it is better for you. And Allah is All-Forgiving, Most Merciful.
519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is Allah’s Will to make things clear to you, guide you to the ˹noble˺ ways of those before you, and turn to you in mercy. For Allah is All-Knowing, All-Wise.
520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it is Allah’s Will to turn to you in grace, but those who follow their desires wish to see you deviate entirely ˹from Allah’s Way˺.
521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it is Allah’s Will to lighten your burdens, for humankind was created weak.
522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not devour one another’s wealth illegally, but rather trade by mutual consent. And do not kill ˹each other or˺ yourselves. Surely Allah is ever Merciful to you.
523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And whoever does this sinfully and unjustly, We will burn them in the Fire. That is easy for Allah.
524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you avoid the major sins forbidden to you, We will absolve you of your ˹lesser˺ misdeeds and admit you into a place of honour.
525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And do not crave what Allah has given some of you over others. Men will be rewarded according to their deeds and women ˹equally˺ according to theirs. Rather, ask Allah for His bounties. Surely Allah has ˹perfect˺ knowledge of all things.
526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We have appointed heirs to what has been left by parents and next of kin. As for those you have made a pledge to, give them their share. Surely Allah is a Witness over all things.
527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Men are the caretakers of women, as men have been provisioned by Allah over women and tasked with supporting them financially. And righteous women are devoutly obedient and, when alone, protective of what Allah has entrusted them with. But if they change their ways, do not be unjust to them. Surely Allah is Most High, All-Great.
528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you anticipate a split between them, appoint a mediator from his family and another from hers. If they desire reconciliation, Allah will restore harmony between them. Surely Allah is All-Knowing, All-Aware.
529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Worship Allah ˹alone˺ and associate none with Him. And be kind to parents, relatives, orphans, the poor, near and distant neighbours, close friends, ˹needy˺ travellers, and those ˹bondspeople˺ in your possession. Surely Allah does not like whoever is arrogant, boastful—
530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          those who are stingy, promote stinginess among people, and withhold Allah’s bounties. We have prepared for the disbelievers a humiliating punishment.
531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Likewise for those who spend their wealth to show off and do not believe in Allah or the Last Day. And whoever takes Satan as an associate—what an evil associate they have!
532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What harm could have come to them if they had believed in Allah and the Last Day and donated from what Allah has provided for them? And Allah has ˹perfect˺ knowledge of them.
533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, Allah never wrongs ˹anyone˺—even by an atom’s weight. And if it is a good deed, He will multiply it many times over and will give a great reward out of His grace.
534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So how will it be when We bring a witness from every faith-community and bring you ˹O Prophet˺ as a witness against yours?
535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                On that Day, those who denied ˹Allah˺ and disobeyed the Messenger will wish they were reduced to dust. And they will never be able to hide anything from Allah.
536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O believers! Do not approach prayer while intoxicated And Allah is Ever-Pardoning, All-Forgiving.
537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet trade it for misguidance and wish to see you deviate from the ˹Right˺ Path?
538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah knows best who your enemies are! And Allah is sufficient as a Guardian, and He is sufficient as a Helper.
539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Some Jews take words out of context and say, "We listen and we disobey," "Hear! May you never hear," and "Ra’ina!" [Herd us!]—playing with words and discrediting the faith. Had they said ˹courteously˺, "We hear and obey," "Listen to us," and "Unẓurna," [Tend to us!] it would have been better for them and more proper. Allah has condemned them for their disbelief, so they do not believe except for a few.
540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O you who were given the Book! Believe in what We have revealed—confirming your own Scriptures—before We wipe out ˹your˺ faces, turning them backwards, or We condemn the defiant as We did to the Sabbath-breakers. And Allah’s command is always executed!
541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, Allah does not forgive associating others with Him ˹in worship˺, but forgives anything else of whoever He wills. And whoever associates others with Allah has indeed committed a grave sin.
542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have you ˹O Prophet˺ not seen those who ˹falsely˺ elevate themselves? It is Allah who elevates whoever He wills. And none will be wronged ˹even by the width of˺ the thread of a date stone.
543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         See how they fabricate lies against Allah—this alone is a blatant sin.
544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet believe in idols and false gods and reassure the disbelievers that they are better guided than the believers?
545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is they who have been condemned by Allah. And whoever is condemned by Allah will have no helper.
546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do they have control over shares of the kingdom? If so, they would not have given anyone so much as the speck on a date stone.
547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or do they envy the people for Allah’s bounties? Indeed, We have given the descendants of Abraham the Book and wisdom, along with great authority.
548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Yet some believed in him while others turned away from him. Hell is sufficient as a torment!
549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely those who reject Our signs, We will cast them into the Fire. Whenever their skin is burnt completely, We will replace it so they will ˹constantly˺ taste the punishment. Indeed, Allah is Almighty, All-Wise.
550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who believe and do good, We will admit them into Gardens under which rivers flow, to stay there for ever and ever. There they will have pure spouses, and We will place them under a vast shade.
551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Allah commands you to return trusts to their rightful owners; and when you judge between people, judge with fairness. What a noble commandment from Allah to you! Surely Allah is All-Hearing, All-Seeing.
552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Obey Allah and obey the Messenger and those in authority among you. Should you disagree on anything, then refer it to Allah and His Messenger, if you ˹truly˺ believe in Allah and the Last Day. This is the best and fairest resolution.
553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you ˹O Prophet˺ not seen those who claim they believe in what has been revealed to you and what was revealed before you? They seek the judgment of false judges, which they were commanded to reject. And Satan ˹only˺ desires to lead them farther away.
554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When it is said to them, "Come to Allah’s revelations and to the Messenger," you see the hypocrites turn away from you stubbornly.
555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How ˹horrible˺ will it be if a disaster strikes them because of what their hands have done, then they come to you swearing by Allah, "We intended nothing but goodwill and reconciliation."
556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Only˺ Allah knows what is in their hearts. So turn away from them, caution them, and give them advice that will shake their very souls.
557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We only sent messengers to be obeyed by Allah’s Will. If only those ˹hypocrites˺ came to you ˹O Prophet˺—after wronging themselves—seeking Allah’s forgiveness and the Messenger prayed for their forgiveness, they would have certainly found Allah ever Accepting of Repentance, Most Merciful.
558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But no! By your Lord, they will never be ˹true˺ believers until they accept you ˹O Prophet˺ as the judge in their disputes, and find no resistance within themselves against your decision and submit wholeheartedly.
559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If We had commanded them to sacrifice themselves or abandon their homes, none would have obeyed except for a few. Had they done what they were advised to do, it would have certainly been far better for them and more reassuring,
560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and We would have granted them a great reward by Our grace
561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and guided them to the Straight Path.
562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And whoever obeys Allah and the Messenger will be in the company of those blessed by Allah: the prophets, the people of truth, the martyrs, and the righteous—what honourable company!
563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is Allah’s favour, and Allah fully knows ˹who deserves it˺.
564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Take your precautions and go forth either in groups or together.
565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There will be some among you who will lag behind so that if you face a disaster, they will say, "Allah has blessed us for not being there among them."
566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if you return with Allah’s bounties, they will say—as if there had been no bond between you—"We wish we had been there with them to share the great gain!"
567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let those who would sacrifice this life for the Hereafter fight in the cause of Allah. And whoever fights in Allah’s cause—whether they achieve martyrdom or victory—We will honour them with a great reward.
568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And what is it with you? You do not fight in the cause of Allah and for oppressed men, women, and children who cry out, "Our Lord! Deliver us from this land of oppressors! Appoint for us a saviour; appoint for us a helper—all by Your grace."
569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Believers fight for the cause of Allah, whereas disbelievers fight for the cause of the Devil. So fight against Satan’s ˹evil˺ forces. Indeed, Satan’s schemes are ever weak.
570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have you ˹O Prophet˺ not seen those who had been told, "Do not fight! Rather, establish prayer and pay alms-tax."? Then once the order came to fight, a group of them feared those ˹hostile˺ people as Allah should be feared—or even more. They said, "Our Lord! Why have You ordered us to fight? If only You had delayed ˹the order for˺ us for a little while!" Say, ˹O Prophet,˺ "The enjoyment of this world is so little, whereas the Hereafter is far better for those mindful ˹of Allah˺. And none of you will be wronged ˹even by the width of˺ the thread of a date stone.
571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherever you may be, death will overcome you—even if you were in fortified towers." When something good befalls them, they say, "This is from Allah," but when something evil befalls them, they say, "This is from you." Say, ˹O Prophet,˺ "Both have been destined by Allah." So what is the matter with these people? They can hardly comprehend anything!
572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whatever good befalls you is from Allah and whatever evil befalls you is from yourself. We have sent you ˹O Prophet˺ as a messenger to ˹all˺ people. And Allah is sufficient as a Witness.
573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever obeys the Messenger has truly obeyed Allah. But whoever turns away, then ˹know that˺ We have not sent you ˹O Prophet˺ as a keeper over them.
574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they say, "We obey," but when they leave you, a group of them would spend the night contradicting what they said. Allah records all their schemes. So turn away from them, and put your trust in Allah. And Allah is sufficient as a Trustee of Affairs.
575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do they not then reflect on the Quran? Had it been from anyone other than Allah, they would have certainly found in it many inconsistencies.
576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when they hear news of security or fear, they publicize it. Had they referred it to the Messenger or their authorities, those with sound judgment among them would have validated it. Had it not been for Allah’s grace and mercy, you would have followed Satan—except for a few.
577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So fight in the cause of Allah ˹O Prophet˺. You are accountable for none but yourself. And motivate the believers ˹to fight˺, so perhaps Allah will curb the disbelievers’ might. And Allah is far superior in might and in punishment.
578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoever intercedes for a good cause will have a share in the reward, and whoever intercedes for an evil cause will have a share in the burden. And Allah is Watchful over all things.
579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when you are greeted, respond with a better greeting or at least similarly. Surely Allah is a ˹vigilant˺ Reckoner of all things.
580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah, there is no god ˹worthy of worship˺ except Him. He will certainly gather ˹all of˺ you together on the Day of Judgment—about which there is no doubt. And whose word is more truthful than Allah’s?
581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Why are you ˹believers˺ divided into two groups regarding the hypocrites while Allah allowed them to regress ˹to disbelief˺ because of their misdeeds? Do you wish to guide those left by Allah to stray? And whoever Allah leaves to stray, you will never find for them a way.
582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They wish you would disbelieve as they have disbelieved, so you may all be alike. So do not take them as allies unless they emigrate in the cause of Allah. But if they turn away, then seize them and kill them wherever you find them, and do not take any of them as allies or helpers,
583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      except those who are allies of a people you are bound with in a treaty or those wholeheartedly opposed to fighting either you or their own people. If Allah had willed, He would have empowered them to fight you. So if they refrain from fighting you and offer you peace, then Allah does not permit you to harm them.
584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 You will find others who wish to be safe from you and their own people. Yet they cannot resist the temptation ˹of disbelief or hostility˺. If they do not keep away, offer you peace, or refrain from attacking you, then seize them and kill them wherever you find them. We have given you full permission over such people.
585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is not lawful for a believer to kill another except by mistake. And whoever kills a believer unintentionally must free a believing slave and pay blood-money to the victim’s family—unless they waive it charitably. But if the victim is a believer from a hostile people, then a believing slave must be freed. And if the victim is from a people bound with you in a treaty, then blood-money must be paid to the family along with freeing a believing slave. Those who are unable, let them fast two consecutive months—as a means of repentance to Allah. And Allah is All-Knowing, All-Wise.
586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whoever kills a believer intentionally, their reward will be Hell—where they will stay indefinitely. Allah will be displeased with them, condemn them, and will prepare for them a tremendous punishment.
587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! When you struggle in the cause of Allah, be sure of who you fight. And do not say to those who offer you ˹greetings of˺ peace, "You are no believer!"—seeking a fleeting worldly gain. Instead, Allah has infinite bounties ˹in store˺. You were initially like them then Allah blessed you ˹with Islam˺. So be sure! Indeed, Allah is All-Aware of what you do.
588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who stay at home—except those with valid excuses—are not equal to those who strive in the cause of Allah with their wealth and their lives. Allah has elevated in rank those who strive with their wealth and their lives above those who stay behind ˹with valid excuses˺. Allah has promised each a fine reward, but those who strive will receive a far better reward than others—
589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                far superior ranks, forgiveness, and mercy from Him. And Allah is All-Forgiving, Most Merciful.
590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When the angels seize the souls of those who have wronged themselves—scolding them, "What do you think you were doing?" they will reply, "We were oppressed in the land." The angels will respond, "Was Allah’s earth not spacious enough for you to emigrate?" It is they who will have Hell as their home—what an evil destination!
591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Except helpless men, women, and children who cannot afford a way out—
592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   it is right to hope that Allah will pardon them. For Allah is Ever-Pardoning, All-Forgiving.
593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoever emigrates in the cause of Allah will find many safe havens and bountiful resources throughout the earth. Those who leave their homes and die while emigrating to Allah and His Messenger—their reward has already been secured with Allah. And Allah is All-Forgiving, Most Merciful.
594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When you travel through the land, it is permissible for you to shorten the prayer—˹especially˺ if you fear an attack by the disbelievers. Indeed, the disbelievers are your sworn enemies.
595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When you ˹O Prophet˺ are ˹campaigning˺ with them and you lead them in prayer, let one group of them pray with you—while armed. When they prostrate themselves, let the other group stand guard behind them. Then the group that has not yet prayed will then join you in prayer—and let them be vigilant and armed. The disbelievers would wish to see you neglect your weapons and belongings, so they could launch a sweeping assault on you. But there is no blame if you lay aside your weapons when overcome by heavy rain or illness—but take precaution. Indeed, Allah has prepared a humiliating punishment for the disbelievers.
596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When the prayers are over, remember Allah—whether you are standing, sitting, or lying down. But when you are secure, establish regular prayers. Indeed, performing prayers is a duty on the believers at the appointed times.
597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not falter in pursuit of the enemy—if you are suffering, they too are suffering. But you can hope to receive from Allah what they can never hope for. And Allah is All-Knowing, All-Wise.
598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We have sent down the Book to you ˹O Prophet˺ in truth to judge between people by means of what Allah has shown you. So do not be an advocate for the deceitful.
599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And seek Allah’s forgiveness—indeed, Allah is All-Forgiving, Most Merciful.
600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not advocate for those who wrong themselves. Surely Allah does not like those who are deceitful, sinful.
601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They try to hide ˹their deception˺ from people, but they can never hide it from Allah—in Whose presence they plot by night what is displeasing to Him. And Allah is Fully Aware of what they do.
602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Here you are! You ˹believers˺ are advocating for them in this life, but who will ˹dare to˺ advocate for them before Allah on the Day of Judgment? Or who will come to their defence?
603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoever commits evil or wrongs themselves then seeks Allah’s forgiveness will certainly find Allah All-Forgiving, Most Merciful.
604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And whoever commits a sin—it is only to their own loss. Allah is All-Knowing, All-Wise.
605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And whoever commits an evil or sinful deed then blames it on an innocent person, they will definitely bear the guilt of slander and blatant sin.
606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Had it not been for Allah’s grace and mercy, a group of them would have sought to deceive you ˹O Prophet˺. Yet they would deceive none but themselves, nor can they harm you in the least. Allah has revealed to you the Book and wisdom and taught you what you never knew. Great ˹indeed˺ is Allah’s favour upon you!
607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There is no good in most of their secret talks—except those encouraging charity, kindness, or reconciliation between people. And whoever does this seeking Allah’s pleasure, We will grant them a great reward.
608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And whoever defies the Messenger after guidance has become clear to them and follows a path other than that of the believers, We will let them pursue what they have chosen, then burn them in Hell—what an evil end!
609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely Allah does not forgive associating ˹others˺ with Him ˹in worship˺, but forgives anything else of whoever He wills. Indeed, whoever associates ˹others˺ with Allah has clearly gone far astray.
610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Instead of Allah, they only invoke female gods and they ˹actually˺ invoke none but a rebellious Satan—
611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       cursed by Allah—who said, "I will surely take hold of a certain number of Your servants.
612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I will certainly mislead them and delude them with empty hopes. Also, I will order them and they will slit the ears of cattle and alter Allah’s creation." And whoever takes Satan as a guardian instead of Allah has certainly suffered a tremendous loss.
613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Satan only makes them ˹false˺ promises and deludes them with ˹empty˺ hopes. Truly Satan promises them nothing but delusion.
614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is they who will have Hell as their home, and they will find no escape from it!
615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And those who believe and do good, We will soon admit them into Gardens under which rivers flow, to stay there for ever and ever. Allah’s promise is ˹always˺ true. And whose word is more truthful than Allah’s?
616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Divine grace is˺ neither by your wishes nor those of the People of the Book! Whoever commits evil will be rewarded accordingly, and they will find no protector or helper besides Allah.
617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But those who do good—whether male or female—and have faith will enter Paradise and will never be wronged ˹even as much as˺ the speck on a date stone.
618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And who is better in faith than those who ˹fully˺ submit themselves to Allah, do good, and follow the Way of Abraham, the upright? Allah chose Abraham as a close friend.
619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is Fully Aware of everything.
620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They ask you ˹O Prophet˺ regarding women. Say, "It is Allah Who instructs you regarding them. Instruction has ˹already˺ been revealed in the Book but still wish to marry, also helpless children, as well as standing up for orphans’ rights. And whatever good you do is certainly well known to Allah."
621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If a woman fears indifference or neglect from her husband, there is no blame on either of them if they seek ˹fair˺ settlement, which is best. Humans are ever inclined to selfishness. But if you are gracious and mindful ˹of Allah˺, surely Allah is All-Aware of what you do.
622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You will never be able to maintain ˹emotional˺ justice between your wives—no matter how keen you are. So do not totally incline towards one leaving the other in suspense. And if you do what is right and are mindful ˹of Allah˺, surely Allah is All-Forgiving, Most Merciful.
623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if they choose to separate, Allah will enrich both of them from His bounties. And Allah is Ever-Bountiful, All-Wise.
624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Indeed, We have commanded those given the Scripture before you, as well as you, to be mindful of Allah. But if you disobey, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is Self-Sufficient, Praiseworthy.
625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.
626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If it is His Will, He can remove you altogether, O  humanity, and replace you with others. And Allah is Most Capable to do so.
627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoever desires the reward of this world, then ˹let them know that˺ with Allah are the rewards of this world and the Hereafter. And Allah is All-Hearing, All-Seeing.
628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! Stand firm for justice as witnesses for Allah even if it is against yourselves, your parents, or close relatives. Be they rich or poor, Allah is best to ensure their interests. So do not let your desires cause you to deviate ˹from justice˺. If you distort the testimony or refuse to give it, then ˹know that˺ Allah is certainly All-Aware of what you do.
629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Have faith in Allah, His Messenger, the Book He has revealed to His Messenger, and the Scriptures He revealed before. Indeed, whoever denies Allah, His angels, His Books, His messengers, and the Last Day has clearly gone far astray.
630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, those who believed then disbelieved, then believed and again disbelieved—˹only˺ increasing in disbelief—Allah will neither forgive them nor guide them to the ˹Right˺ Way.
631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give good news of a painful punishment to hypocrites,
632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who choose disbelievers as allies instead of the believers. Do they seek honour and power through that company? Surely all honour and power belongs to Allah.
633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He has already revealed to you in the Book that when you hear Allah’s revelations being denied or ridiculed, then do not sit in that company unless they engage in a different topic, or else you will be like them. Surely Allah will gather the hypocrites and disbelievers all together in Hell.
634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹The hypocrites are˺ those who wait to see what happens to you. So if Allah grants you victory, they say ˹to you˺, "Were we not on your side?" But if the disbelievers have a share ˹of victory˺, they say ˹to them˺, "Did we not have the advantage over you, yet we protected you from the believers?" Allah will judge between ˹all of˺ you on the Day of Judgment. And Allah will never grant the disbelievers a way over the believers.
635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely the hypocrites seek to deceive Allah, but He outwits them. When they stand up for prayer, they do it half-heartedly only to be seen by people—hardly remembering Allah at all.
636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Torn between belief and disbelief—belonging neither to these ˹believers˺ nor those ˹disbelievers˺. And whoever Allah leaves to stray, you will never find for them a way.
637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Do not take disbelievers as allies instead of the believers. Would you like to give Allah solid proof against yourselves?
638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely the hypocrites will be in the lowest depths of the Fire—and you will never find for them any helper—
639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  except those who repent, mend their ways, hold fast to Allah, and are sincere in their devotion to Allah; they will be with the believers. And Allah will grant the believers a great reward.
640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Why should Allah punish you if you are grateful and faithful? Allah is ever Appreciative, All-Knowing.
641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah does not like negative thoughts to be voiced—except by those who have been wronged. Allah is All-Hearing, All-Knowing.
642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whether you reveal or conceal a good or pardon an evil—surely Allah is Ever-Pardoning, Most Capable.
643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely those who deny Allah and His messengers and wish to make a distinction between Allah and His messengers, saying, "We believe in some and disbelieve in others," desiring to forge a compromise,
644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     they are indeed the true disbelievers. And We have prepared for the disbelievers a humiliating punishment.
645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who believe in Allah and His messengers—accepting all; rejecting none—He will surely give them their rewards. And Allah is All-Forgiving, Most Merciful.
646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The People of the Book demand that you ˹O Prophet˺ bring down for them a revelation in writing from heaven. They demanded what is even greater than this from Moses, saying, "Make Allah visible to us!" So a thunderbolt struck them for their wrongdoing. Then they took the calf for worship after receiving clear signs. Still We forgave them for that ˹after their repentance˺ and gave Moses compelling proof.
647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We raised the Mount over them ˹as a warning˺ for ˹breaking˺ their covenant and said, "Enter the gate ˹of Jerusalem˺ with humility." We also warned them, "Do not break the Sabbath," and took from them a firm covenant.
648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They were condemned˺ for breaking their covenant, rejecting Allah’s signs, killing the prophets unjustly, and for saying, "Our hearts are unreceptive!"—it is Allah Who has sealed their hearts for their disbelief, so they do not believe except for a few—
649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and for their denial and outrageous accusation against Mary,
650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and for boasting, "We killed the Messiah, Jesus, son of Mary, the messenger of Allah." But they neither killed nor crucified him—it was only made to appear so. Even those who argue for this ˹crucifixion˺ are in doubt. They have no knowledge whatsoever—only making assumptions. They certainly did not kill him.
651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rather, Allah raised him up to Himself. And Allah is Almighty, All-Wise.
652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Every one of the People of the Book will definitely believe in him before his death. And on the Day of Judgment Jesus will be a witness against them.
653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We forbade the Jews certain foods that had been lawful to them for their wrongdoing, and for hindering many from the Way of Allah,
654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        taking interest despite its prohibition, and consuming people’s wealth unjustly. We have prepared for the disbelievers among them a painful punishment.
655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But those of them well-grounded in knowledge, the faithful ˹who˺ believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you—˹especially˺ those who establish prayer—and those who pay alms-tax and believe in Allah and the Last Day, to these ˹people˺ We will grant a great reward.
656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We have sent revelation to you ˹O Prophet˺ as We sent revelation to Noah and the prophets after him. We also sent revelation to Abraham, Ishmael, Isaac, Jacob, and his descendants, ˹as well as˺ Jesus, Job, Jonah, Aaron, and Solomon. And to David We gave the Psalms.
657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There are messengers whose stories We have told you already and others We have not. And to Moses Allah spoke directly.
658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹All were˺ messengers delivering good news and warnings so humanity should have no excuse before Allah after ˹the coming of˺ the messengers. And Allah is Almighty, All-Wise.
659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet ˹if you are denied, O  Prophet,˺ Allah bears witness to what He has sent down to you—He has sent it with His knowledge. The angels too bear witness. And Allah ˹alone˺ is sufficient as a Witness.
660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who disbelieve and hinder ˹others˺ from the Way of Allah have certainly strayed far away.
661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who disbelieve and wrong themselves—surely Allah will neither forgive them nor guide them to any path
662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              except that of Hell, to stay there for ever and ever. And that is easy for Allah.
663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O humanity! The Messenger has certainly come to you with the truth from your Lord, so believe for your own good. But if you disbelieve, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is All-Knowing, All-Wise.
664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O People of the Book! Do not go to extremes regarding your faith; say nothing about Allah except the truth. So believe in Allah and His messengers and do not say, "Trinity." Stop!—for your own good. Allah is only One God. Glory be to Him! He is far above having a son! To Him belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.
665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Messiah would never be too proud to be a servant of Allah, nor would the angels nearest to Allah. Those who are too proud and arrogant to worship Him will be brought before Him all together.
666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who believe and do good, He will reward them in full and increase them out of His grace. But those who are too proud and arrogant, He will subject them to a painful punishment. And besides Allah they will find no protector or helper.
667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O humanity! There has come to you conclusive evidence from your Lord. And We have sent down to you a brilliant light.
668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for those who believe in Allah and hold fast to Him, He will admit them into His mercy and grace and guide them to Himself through the Straight Path.
669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They ask you ˹for a ruling, O  Prophet˺. Say, "Allah gives you a ruling regarding those who die without children or parents." If a man dies childless and leaves behind a sister, she will inherit one-half of his estate, whereas her brother will inherit all of her estate if she dies childless. If this person leaves behind two sisters, they together will inherit two-thirds of the estate. But if the deceased leaves male and female siblings, a male’s share will be equal to that of two females. Allah makes ˹this˺ clear to you so you do not go astray. And Allah has ˹perfect˺ knowledge of all things.
670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Honour your obligations. All grazing livestock has been made lawful to you—except what is hereby announced to you and hunting while on pilgrimage. Indeed, Allah commands what He wills.
671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Do not violate Allah’s rituals ˹of pilgrimage˺, the sacred months, the sacrificial animals, the ˹offerings decorated with˺ garlands, nor those ˹pilgrims˺ on their way to the Sacred House seeking their Lord’s bounty and pleasure. When pilgrimage has ended, you are allowed to hunt. Do not let the hatred of a people who once barred you from the Sacred Mosque provoke you to transgress. Cooperate with one another in goodness and righteousness, and do not cooperate in sin and transgression. And be mindful of Allah. Surely Allah is severe in punishment.
672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Forbidden to you are carrion, blood, and swine; what is slaughtered in the name of any other than Allah; what is killed by strangling, beating, a fall, or by being gored to death; what is partly eaten by a predator unless you slaughter it; and what is sacrificed on altars. You are also forbidden to draw lots for decisions. This is all evil. Today the disbelievers have given up all hope of ˹undermining˺ your faith. So do not fear them; fear Me! Today I have perfected your faith for you, completed My favour upon you, and chosen Islam as your way. But whoever is compelled by extreme hunger—not intending to sin—then surely Allah is All-Forgiving, Most Merciful.
673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They ask you, ˹O Prophet,˺ what is permissible for them ˹to eat˺. Say, "What is good and lawful. Also what is caught by your hunting animals and birds of prey which you have trained as instructed by Allah. So eat what they catch for you, but mention the Name of Allah over it ˹first˺." And be mindful of Allah. Surely Allah is swift in reckoning.
674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Today all good, pure foods have been made lawful for you. Similarly, the food of the People of the Book is permissible for you and yours is permissible for them. And ˹permissible for you in marriage˺ are chaste believing women as well as chaste women of those given the Scripture before you—as long as you pay them their dowries in wedlock, neither fornicating nor taking them as mistresses. And whoever rejects the faith, all their good deeds will be void ˹in this life˺ and in the Hereafter they will be among the losers.
675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! When you rise up for prayer, wash your faces and your hands up to the elbows, wipe your heads, and wash your feet to the ankles. And if you are in a state of ˹full˺ impurity, It is not Allah’s Will to burden you, but to purify you and complete His favour upon you, so perhaps you will be grateful.
676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Remember Allah’s favour upon you and the covenant He made with you when you said, "We hear and obey." And be mindful of Allah. Surely Allah knows best what is ˹hidden˺ in the heart.
677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Stand firm for Allah and bear true testimony. Do not let the hatred of a people lead you to injustice. Be just! That is closer to righteousness. And be mindful of Allah. Surely Allah is All-Aware of what you do.
678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah has promised those who believe and do good ˹His˺ forgiveness and a great reward.
679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who disbelieve and deny Our signs, they are the residents of the Hellfire.
680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Remember Allah’s favour upon you: when a people sought to harm you, but He held their hands back from you. Be mindful of Allah. And in Allah let the believers put their trust.
681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah made a covenant with the Children of Israel and appointed twelve leaders from among them and ˹then˺ said, "I am truly with you. If you establish prayer, pay alms-tax, believe in My messengers, support them, and lend to Allah a good loan, I will certainly forgive your sins and admit you into Gardens under which rivers flow. And whoever among you disbelieves afterwards has truly strayed from the Right Way."
682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But for breaking their covenant We condemned them and hardened their hearts. They distorted the words of the Scripture and neglected a portion of what they had been commanded to uphold. You ˹O Prophet˺ will always find deceit on their part, except for a few. But pardon them and bear with them. Indeed, Allah loves the good-doers.
683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And from those who say, "We are Christians," We took their covenant, but they neglected a portion of what they had been commanded to uphold. So We let hostility and enmity arise between them until the Day of Judgment, and soon Allah will inform them of all they have done.
684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O People of the Book! Now Our Messenger has come to you, revealing much of what you have hidden of the Scriptures and disregarding much. There certainly has come to you from Allah a light and a clear Book
685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     through which Allah guides those who seek His pleasure to the ways of peace, brings them out of darkness and into light by His Will, and guides them to the Straight Path.
686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those who say, "Allah is the Messiah, son of Mary," have fallen into disbelief. Say, ˹O Prophet,˺ "Who has the power to prevent Allah if He chose to destroy the Messiah, son of Mary, his mother, and everyone in the world all together?" To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. He creates whatever He wills. And Allah is Most Capable of everything.
687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Jews and the Christians each say, "We are the children of Allah and His most beloved!" Say, ˹O Prophet,˺ "Why then does He punish you for your sins? No! You are only humans like others of His Own making. He forgives whoever He wills and punishes whoever He wills. To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. And to Him is the final return."
688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O People of the Book! Our Messenger has indeed come to you, making things clear to you after an interval between the messengers so you do not say, "There has never come to us a deliverer of good news or a warner." Now there has come to you a deliverer of good news and a warner. And Allah is Most Capable of everything.
689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹remember˺ when Moses said to his people, "O my people! Remember Allah’s favours upon you when He raised prophets from among you, made you sovereign,
690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O  my people! Enter the Holy Land which Allah has destined for you ˹to enter˺. And do not turn back or else you will become losers."
691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They replied, "O Moses! There is an enormously powerful people there, so we will never ˹be able to˺ enter it until they leave. If they do, then we will enter!"
692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Two God-fearing men—who had been blessed by Allah—said, "Surprise them through the gate. If you do, you will certainly prevail. Put your trust in Allah if you are ˹truly˺ believers."
693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Yet˺ they said, "O Moses! ˹Still˺ we will never enter as long as they remain there. So go—both you and your Lord—and fight; we are staying right here!"
694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moses pleaded, "My Lord! I have no control over anyone except myself and my brother. So set us apart from the rebellious people."
695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah replied, "Then this land is forbidden to them for forty years, during which they will wander through the land. So do not grieve for the rebellious people."
696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Relate to them in truth ˹O Prophet˺ the story of Adam’s two sons—how each offered a sacrifice: Abel’s offering was accepted while Cain’s was not. So Cain threatened, "I will kill you!" His brother replied, "Allah only accepts ˹the offering˺ of the sincerely devout.
697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If you raise your hand to kill me, I will not raise mine to kill you, because I fear Allah—the Lord of all worlds.
698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I want to let you bear your sin against me along with your other sins, then you will be one of those destined to the Fire. And that is the reward of the wrongdoers."
699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yet Cain convinced himself to kill his brother, so he killed him—becoming a loser.
700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Allah sent a crow digging ˹a grave˺ in the ground ˹for a dead crow˺, in order to show him how to bury the corpse of his brother. He cried, "Alas! Have I ˹even˺ failed to be like this crow and bury the corpse of my brother?" So he became regretful.
701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That is why We ordained for the Children of Israel that whoever takes a life—unless as a punishment for murder or mischief in the land—it will be as if they killed all of humanity; and whoever saves a life, it will be as if they saved all of humanity. ˹Although˺ Our messengers already came to them with clear proofs, many of them still transgressed afterwards through the land.
702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, the penalty for those who wage war against Allah and His Messenger and spread mischief in the land is death, crucifixion, cutting off their hands and feet on opposite sides, or exile from the land. This ˹penalty˺ is a disgrace for them in this world, and they will suffer a tremendous punishment in the Hereafter.
703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for those who repent before you seize them, then know that Allah is All-Forgiving, Most Merciful.
704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! Be mindful of Allah and seek what brings you closer to Him and struggle in His Way, so you may be successful.
705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for the disbelievers, even if they were to possess everything in the world twice over ˹and offer it all˺ to ransom themselves from the punishment of the Day of Judgment, it would never be accepted from them. And they will suffer a painful punishment.
706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will be desperate to get out of the Fire but they will never be able to. And they will suffer an everlasting punishment.
707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for male and female thieves, cut off their hands for what they have done—a deterrent from Allah. And Allah is Almighty, All-Wise.
708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But whoever repents after their wrongdoing and mends their ways, Allah will surely turn to them in forgiveness. Indeed, Allah is All-Forgiving, Most Merciful.
709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you not know that the kingdom of the heavens and the earth belongs to Allah ˹alone˺? He punishes whoever He wills and forgives whoever He wills. And Allah is Most Capable of everything.
710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O Messenger! Do not grieve for those who race to disbelieve—those who say, "We believe" with their tongues, but their hearts are in disbelief. Nor those among the Jews who eagerly listen to lies, attentive to those who are too arrogant to come to you. They distort the Scripture, taking rulings out of context, then say, "If this is the ruling you get ˹from Muhammad˺, accept it. If not, beware!" Whoever Allah allows to be deluded, you can never be of any help to them against Allah. It is not Allah’s Will to purify their hearts. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.
711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They eagerly listen to falsehood and consume forbidden gain. So if they come to you ˹O Prophet˺, either judge between them or turn away from them. If you turn away from them, they cannot harm you whatsoever. But if you judge between them, then do so with justice. Surely Allah loves those who are just.
712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But why do they come to you for judgment when they ˹already˺ have the Torah containing Allah’s judgment, then they turn away after all? They are not ˹true˺ believers.
713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, We revealed the Torah, containing guidance and light, by which the prophets, who submitted themselves to Allah, made judgments for Jews. So too did the rabbis and scholars judge according to Allah’s Book, with which they were entrusted and of which they were made keepers. So do not fear the people; fear Me! Nor trade my revelations for a fleeting gain. And those who do not judge by what Allah has revealed are ˹truly˺ the disbelievers.
714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We ordained for them in the Torah, "A life for a life, an eye for an eye, a nose for a nose, an ear for an ear, a tooth for a tooth—and for wounds equal retaliation." But whoever waives it charitably, it will be atonement for them. And those who do not judge by what Allah has revealed are ˹truly˺ the wrongdoers.
715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then in the footsteps of the prophets, We sent Jesus, son of Mary, confirming the Torah revealed before him. And We gave him the Gospel containing guidance and light and confirming what was revealed in the Torah—a guide and a lesson to the God-fearing.
716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So let the people of the Gospel judge by what Allah has revealed in it. And those who do not judge by what Allah has revealed are ˹truly˺ the rebellious.
717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We have revealed to you ˹O Prophet˺ this Book with the truth, as a confirmation of previous Scriptures and a supreme authority on them. So judge between them by what Allah has revealed, and do not follow their desires over the truth that has come to you. To each of you We have ordained a code of law and a way of life. If Allah had willed, He would have made you one community, but His Will is to test you with what He has given ˹each of˺ you. So compete with one another in doing good. To Allah you will all return, then He will inform you ˹of the truth˺ regarding your differences.
718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And judge between them ˹O Prophet˺ by what Allah has revealed, and do not follow their desires. And beware, so they do not lure you away from some of what Allah has revealed to you. If they turn away ˹from Allah’s judgment˺, then know that it is Allah’s Will to repay them for some of their sins, and that many people are indeed rebellious.
719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is it the judgment of ˹pre-Islamic˺ ignorance they seek? Who could be a better judge than Allah for people of sure faith?
720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Take neither Jews nor Christians as guardians—they are guardians of each other. Whoever does so will be counted as one of them. Surely Allah does not guide the wrongdoing people.
721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You see those with sickness in their hearts racing for their guardianship, saying ˹in justification˺, "We fear a turn of fortune will strike us." But perhaps Allah will bring about ˹your˺ victory or another favour by His command, and they will regret what they have hidden in their hearts.
722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Only then,˺ the believers will ask ˹one another˺, "Are these the ones who swore solemn oaths by Allah that they were with you?" Their deeds have been in vain, so they have become losers.
723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Whoever among you abandons their faith, Allah will replace them with others who love Him and are loved by Him. They will be humble with the believers but firm towards the disbelievers, struggling in the Way of Allah; fearing no blame from anyone. This is the favour of Allah. He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing.
724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Your only guardians are Allah, His Messenger, and fellow believers—who establish prayer and pay alms-tax with humility.
725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoever allies themselves with Allah, His Messenger, and fellow believers, then it is certainly Allah’s party that will prevail.
726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! Do not seek the guardianship of those given the Scripture before you and the disbelievers who have made your faith a mockery and amusement. And be mindful of Allah if you are ˹truly˺ believers.
727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When you call to prayer, they mock it in amusement. This is because they are a people without understanding.
728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "O People of the Book! Do you resent us only because we believe in Allah and what has been revealed to us and what was revealed before—while most of you are rebellious?"
729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "Shall I inform you of those who deserve a worse punishment from Allah ˹than the rebellious˺? It is those who earned Allah’s condemnation and displeasure—some being reduced to apes and pigs and worshippers of false gods. These are far worse in rank and farther astray from the Right Way."
730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they come to you ˹believers˺ they say, "We believe." But they are committed to disbelief when they enter and when they leave. And Allah knows what they hide.
731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      You see many of them racing towards sin, transgression, and consumption of forbidden gain. Evil indeed are their actions!
732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Why do their rabbis and scholars not forbid them from saying what is sinful and consuming what is unlawful? Evil indeed is their inaction!
733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Some among˺ the Jews said, "Allah is tight-fisted." May their fists be tied and they be condemned for what they said. Rather, He is open-handed, giving freely as He pleases. That which has been revealed to you ˹O Prophet˺ from your Lord will only cause many of them to increase in wickedness and disbelief. We have stirred among them hostility and hatred until the Day of Judgment. Whenever they kindle the fire of war, Allah puts it out. And they strive to spread corruption in the land. And Allah does not like corruptors.
734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Had the People of the Book only been faithful and mindful ˹of Allah˺, We would have certainly absolved them of their sins and admitted them into the Gardens of Bliss.
735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And had they observed the Torah, the Gospel, and what has been revealed to them from their Lord, they would have been overwhelmed with provisions from above and below. Some among them are upright, yet many do nothing but evil.
736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Messenger! Convey everything revealed to you from your Lord. If you do not, then you have not delivered His message. Allah will ˹certainly˺ protect you from the people. Indeed, Allah does not guide the people who disbelieve.
737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "O People of the Book! You have nothing to stand on unless you observe the Torah, the Gospel, and what has been revealed to you from your Lord." And your Lord’s revelation to you ˹O Prophet˺ will only cause many of them to increase in wickedness and disbelief. So do not grieve for the people who disbelieve.
738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, the believers, Jews, Sabians and Christians—whoever ˹truly˺ believes in Allah and the Last Day and does good, there will be no fear for them, nor will they grieve.
739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, We took a covenant from the Children of Israel and sent them messengers. Whenever a messenger came to them with what they did not desire, they denied some and killed others.
740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They thought there would be no consequences, so they turned a blind eye and a deaf ear. Yet Allah turned to them in forgiveness ˹after their repentance˺, but again many became blind and deaf. And Allah is All-Seeing of what they do.
741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Those who say, "Allah is the Messiah, son of Mary," have certainly fallen into disbelief. The Messiah ˹himself˺ said, "O Children of Israel! Worship Allah—my Lord and your Lord." Whoever associates others with Allah ˹in worship˺ will surely be forbidden Paradise by Allah. Their home will be the Fire. And the wrongdoers will have no helpers.
742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Those who say, "Allah is one in a Trinity," have certainly fallen into disbelief. There is only One God. If they do not stop saying this, those who disbelieve among them will be afflicted with a painful punishment.
743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Will they not turn to Allah in repentance and seek His forgiveness? And Allah is All-Forgiving, Most Merciful.
744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Messiah, son of Mary, was no more than a messenger. ˹Many˺ messengers had ˹come and˺ gone before him. His mother was a woman of truth. They both ate food. See how We make the signs clear to them, yet see how they are deluded ˹from the truth˺!
745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "How can you worship besides Allah those who can neither harm nor benefit you? And Allah ˹alone˺ is the All-Hearing, All-Knowing."
746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "O People of the Book! Do not go to extremes in your faith beyond the truth, nor follow the vain desires of those who went astray before ˹you˺. They misled many and strayed from the Right Way."
747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers among the Children of Israel were condemned in the revelations of David and Jesus, son of Mary. That was for their disobedience and violations.
748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They did not forbid one another from doing evil. Evil indeed was what they did!
749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You see many of them taking the disbelievers as allies. Truly wicked are their misdeeds, which have earned them Allah’s wrath. And they will be in everlasting torment.
750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had they believed in Allah, the Prophet, and what has been revealed to him, they would have never taken those ˹pagans˺ as allies. But most of them are rebellious.
751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You will surely find the most bitter towards the believers to be the Jews and polytheists and the most gracious to be those who call themselves Christian. That is because there are priests and monks among them and because they are not arrogant.
752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When they listen to what has been revealed to the Messenger, you see their eyes overflowing with tears for recognizing the truth. They say, "Our Lord! We believe, so count us among the witnesses.
753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Why should we not believe in Allah and the truth that has come to us? And we long for our Lord to include us in the company of the righteous."
754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Allah will reward them for what they said with Gardens under which rivers flow, to stay there forever. And that is the reward of the good-doers.
755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who disbelieve and reject Our signs, they will be the residents of the Hellfire.
756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O believers! Do not forbid the good things which Allah has made lawful for you, and do not transgress. Indeed, Allah does not like transgressors.
757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Eat of the good, lawful things provided to you by Allah. And be mindful of Allah in Whom you believe.
758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah will not call you to account for your thoughtless oaths, but He will hold you accountable for deliberate oaths. The penalty for a broken oath is to feed ten poor people from what you normally feed your own family, or to clothe them, or to free a bondsperson. But if none of this is affordable, then you must fast three days. This is the penalty for breaking your oaths. So be mindful of your oaths. This is how Allah makes things clear to you, so perhaps you will be grateful.
759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O believers! Intoxicants, gambling, idols, and drawing lots for decisions are all evil of Satan’s handiwork. So shun them so you may be successful.
760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Satan’s plan is to stir up hostility and hatred between you with intoxicants and gambling and to prevent you from remembering Allah and praying. Will you not then abstain?
761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Obey Allah and obey the Messenger and beware! But if you turn away, then know that Our Messenger’s duty is only to deliver ˹the message˺ clearly.
762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is no blame on those who believe and do good for what they had consumed before ˹the prohibition˺, as long as they fear Allah, have faith, and do what is good; then they believe and act virtuously, then become fully mindful ˹of Allah˺ and do righteous deeds. For Allah loves the good-doers.
763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Allah will surely test you with game within the reach of your hands and spears to distinguish those who fear Him in secret. Whoever transgresses from now on will suffer a painful punishment.
764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O  believers! Do not kill game while on pilgrimage. Whoever kills game intentionally must compensate by offering its equivalence—as judged by two just men among you—to be offered at the Sacred House, or by feeding the needy, or by fasting so that they may taste the consequences of their violations. Allah has forgiven what has been done. But those who persist will be punished by Allah. And Allah is Almighty, capable of punishment.
765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is lawful for you to hunt and eat seafood, as a provision for you and for travellers. But hunting on land is forbidden to you while on pilgrimage. Be mindful of Allah to Whom you all will be gathered.
766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah has made the Ka’bah—the Sacred House—a sanctuary of well-being for all people, along with the sacred months, the sacrificial animals, and the ˹offerings decorated with˺ garlands. All this so you may know that Allah knows whatever is in the heavens and whatever is on the earth, and that He has ˹perfect˺ knowledge of everything.
767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Know that Allah is severe in punishment and that He is All-Forgiving, Most Merciful.
768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Messenger’s duty is only to deliver ˹the message˺. And Allah ˹fully˺ knows what you reveal and what you conceal.
769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "Good and evil are not equal, though you may be dazzled by the abundance of evil. So be mindful of Allah, O  people of reason, so you may be successful."
770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not ask about any matter which, if made clear to you, may disturb you. But if you inquire about what is being revealed in the Quran, it will be made clear to you. Allah has forgiven what was done ˹in the past˺. And Allah is All-Forgiving, Most Forbearing.
771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Some people before you asked such questions then denied their answers.
772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Some people before you asked such questions then denied their answers.
773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When it is said to them, "Come to Allah’s revelations and to the Messenger," they reply, "What we found our forefathers practicing is good enough for us." ˹Would they still do so,˺ even if their forefathers had absolutely no knowledge or guidance?
774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! You are accountable only for yourselves. It will not harm you if someone chooses to deviate—as long as you are ˹rightly˺ guided. To Allah you will all return, and He will inform you of what you used to do.
775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! When death approaches any of you, call upon two just Muslim men to witness as you make a bequest; otherwise, two non-Muslims if you are afflicted with death while on a journey. If you doubt ˹their testimony˺, keep them after prayer and let them testify under oath ˹saying˺, "By Allah! We would never sell our testimony for any price, even in favour of a close relative, nor withhold the testimony of Allah. Otherwise, we would surely be sinful."
776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If they are found guilty ˹of false testimony˺, let the deceased’s two closest heirs affected by the bequest replace the witnesses and testify under oath ˹saying˺, "By Allah! Our testimony is truer than theirs. We have not transgressed. Otherwise, we would surely be wrongdoers."
777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In this way it is more likely that witnesses will give true testimony or else fear that their oaths could be refuted by those of the heirs. Be mindful of Allah and obey. For Allah does not guide the rebellious people.
778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Consider˺ the Day Allah will gather the messengers and say, "What response did you receive?" They will reply, "We have no knowledge ˹compared to You˺! You ˹alone˺ are indeed the Knower of all unseen."
779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹on Judgment Day˺ Allah will say, "O Jesus, son of Mary! Remember My favour upon you and your mother: how I supported you with the holy spirit so you spoke to people in ˹your˺ infancy and adulthood. How I taught you writing, wisdom, the Torah, and the Gospel. How you moulded a bird from clay—by My Will—and breathed into it and it became a ˹real˺ bird—by My Will. How you healed the blind and the lepers—by My Will. How you brought the dead to life—by My Will. How I prevented the Children of Israel from harming you when you came to them with clear proofs and the disbelievers among them said, "This is nothing but pure magic."
780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And how I inspired the disciples, "Believe in Me and My messenger!" They declared, "We believe and bear witness that we fully submit ˹to Allah˺."
781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Remember˺ when the disciples asked, "O Jesus, son of Mary! Would your Lord be willing to send down to us a table spread with food from heaven?" Jesus answered, "Fear Allah if you are ˹truly˺ believers."
782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They said, "We ˹only˺ wish to eat from it to reassure our hearts, to verify you are indeed truthful to us, and to become its witnesses."
783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Jesus, son of Mary, prayed, "O Allah, our Lord! Send us from heaven a table spread with food as a feast for us—the first and last of us—and as a sign from You. Provide for us! You are indeed the Best Provider."
784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah answered, "I am sending it down to you. But whoever among you denies afterwards will be subjected to a torment I have never inflicted on anyone of My creation."
785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹on Judgment Day˺ Allah will say, "O Jesus, son of Mary! Did you ever ask the people to worship you and your mother as gods besides Allah?" He will answer, "Glory be to You! How could I ever say what I had no right to say? If I had said such a thing, you would have certainly known it. You know what is ˹hidden˺ within me, but I do not know what is within You. Indeed, You ˹alone˺ are the Knower of all unseen.
786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I never told them anything except what You ordered me to say: "Worship Allah—my Lord and your Lord!" And I was witness over them as long as I remained among them. But when You took me, You were the Witness over them—and You are a Witness over all things.
787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If You punish them, they belong to You after all. But if You forgive them, You are surely the Almighty, All-Wise."
788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah will declare, "This is the Day when ˹only˺ the faithful will benefit from their faithfulness. Theirs are Gardens under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. That is the ultimate triumph."
789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything within. And He is Most Capable of everything.
790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All praise is for Allah Who created the heavens and the earth and made darkness and light. Yet the disbelievers set up equals to their Lord ˹in worship˺.
791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He is the One Who created you from clay, then appointed a term ˹for your death˺ and another known only to Him ˹for your resurrection˺—yet you continue to doubt!
792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is the Only True God in the heavens and the earth. He knows whatever you conceal and whatever you reveal, and knows whatever you do.
793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whenever a sign comes to them from their Lord, they turn away from it.
794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They have indeed rejected the truth when it came to them, so they will soon face the consequences of their ridicule.
795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have they not seen how many ˹disbelieving˺ peoples We destroyed before them? We had made them more established in the land than you. We sent down abundant rain for them and made rivers flow at their feet. Then We destroyed them for their sins and replaced them with other peoples.
796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had We sent down to you ˹O Prophet˺ a revelation in writing and they were to touch it with their own hands, the disbelievers would still have said, "This is nothing but pure magic!"
797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They say, "Why has no ˹visible˺ angel come with him?" Had We sent down an angel, the matter would have certainly been settled ˹at once˺, and they would have never been given more time ˹to repent˺.
798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And if We had sent an angel, We would have certainly made it ˹assume the form of˺ a man—leaving them more confused than they already are.
799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.
800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, "Travel throughout the land and see the fate of the deniers."
801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ask ˹them, O  Prophet˺, "To whom belongs everything in the heavens and the earth?" Say, "To Allah!" He has taken upon Himself to be Merciful. He will certainly gather ˹all of˺ you together for the Day of Judgment—about which there is no doubt. But those who have ruined themselves will never believe.
802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To Him belongs whatever exists in the day and night. And He is the All-Hearing, All-Knowing.
803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "Will I take any guardian other than Allah, the Originator of the heavens and the earth, Who provides for all and is not in need of provision?" Say, "I have been commanded to be the first to submit and not be one of the polytheists."
804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, "I truly fear—if I were to disobey my Lord—the torment of a tremendous Day."
805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whoever is spared the torment of that Day will have certainly been shown Allah’s mercy. And that is the absolute triumph.
806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If Allah touches you with harm, none can undo it except Him. And if He touches you with a blessing, He is Most Capable of everything.
807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He reigns supreme over His creation. And He is the All-Wise, All-Aware.
808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ask ˹them, O  Prophet˺, "Who is the best witness?" Say, "Allah is! He is a Witness between me and you. And this Quran has been revealed to me so that, with it, I may warn you and whoever it reaches. Do you ˹pagans˺ testify that there are other gods besides Allah?" ˹Then˺ say, "I will never testify ˹to this˺!" ˹And˺ say, "There is only One God. And I totally reject whatever ˹idols˺ you associate with Him."
809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Those to whom We gave the Scripture recognize him ˹to be a true prophet˺ as they recognize their own children. Those who have ruined themselves will never believe.
810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who does more wrong than those who fabricate lies against Allah or deny His signs? Indeed, the wrongdoers will never succeed.
811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Consider˺ the Day We will gather them all together then ask those who associated others ˹with Allah in worship˺, "Where are those gods you used to claim?"
812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Their only argument will be: "By Allah, our Lord! We were never polytheists."
813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    See how they will lie about themselves and how those ˹gods˺ they fabricated will fail them!
814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             There are some of them who ˹pretend to˺ listen to your recitation ˹of the Quran˺, but We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. Even if they were to see every sign, they still would not believe in them. The disbelievers would ˹even˺ come to argue with you, saying, "This ˹Quran˺ is nothing but ancient fables!"
815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They turn others away from the Prophet and distance themselves as well. They ruin none but themselves, yet they fail to perceive it.
816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If only you could see when they will be detained before the Fire! They will cry, "Oh! If only we could be sent back, we would never deny the signs of our Lord and we would ˹surely˺ be of the believers."
817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But no! ˹They only say this˺ because the truth they used to hide will become all too clear to them. Even if they were to be sent back, they would certainly revert to what they were forbidden. Indeed they are liars!
818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They insisted, "There is nothing beyond this worldly life and we will never be resurrected."
819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if only you could see when they will be detained before their Lord! He will ask ˹them˺, "Is this ˹Hereafter˺ not the truth?" They will cry, "Absolutely, by our Lord!" He will say, "Then taste the punishment for your disbelief."
820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Losers indeed are those who deny the meeting with Allah until the Hour takes them by surprise, then they will cry, "Woe to us for having ignored this!" They will bear ˹the burden of˺ their sins on their backs. Evil indeed is their burden!
821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This worldly life is no more than play and amusement, but far better is the ˹eternal˺ Home of the Hereafter for those mindful ˹of Allah˺. Will you not then understand?
822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We certainly know that what they say grieves you ˹O Prophet˺. It is not your honesty they question—it is Allah’s signs that the wrongdoers deny.
823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, messengers before you were rejected but patiently endured rejection and persecution until Our help came to them. And Allah’s promise ˹to help˺ is never broken. And you have already received some of the narratives of these messengers.
824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If you find their denial unbearable, then build—if you can—a tunnel through the earth or stairs to the sky to bring them a ˹more compelling˺ sign. Had Allah so willed, He could have guided them all. So do not be one of those ignorant ˹of this fact˺.
825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Only the attentive will respond ˹to your call˺. As for the dead, Allah will raise them up, then to Him they will ˹all˺ be returned.
826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They ask, "Why has no ˹other˺ sign been sent down to him from his Lord?" Say, ˹O Prophet,˺ "Allah certainly has the power to send down a sign"—though most of them do not know.
827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All living beings roaming the earth and winged birds soaring in the sky are communities like yourselves. Then to their Lord they will be gathered all together.
828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who deny Our signs are ˹wilfully˺ deaf and dumb—lost in darkness. Allah leaves whoever He wills to stray and guides whoever He wills to the Straight Way.
829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ask ˹them, O  Prophet˺, "Imagine if you were overwhelmed by Allah’s torment or the Hour—would you call upon any other than Allah ˹for help˺? ˹Answer me˺ if your claims are true!
830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     No! He is the only One you would call. And if He willed, He could remove the affliction that made you invoke Him. Only then will you forget whatever you associate with Him ˹in worship˺."
831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We have sent messengers before you ˹O Prophet˺ to other people who We put through suffering and adversity ˹for their denial˺, so perhaps they would be humbled.
832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why did they not humble themselves when We made them suffer? Instead, their hearts were hardened, and Satan made their misdeeds appealing to them.
833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When they became oblivious to warnings, We showered them with everything they desired. But just as they became prideful of what they were given, We seized them by surprise, then they instantly fell into despair!
834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the wrongdoers were utterly uprooted. And all praise is for Allah—Lord of all worlds.
835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ask ˹them, O  Prophet˺, "Imagine if Allah were to take away your hearing or sight, or seal your hearts—who else other than Allah could restore it?" See ˹O Prophet˺ how We vary the signs, yet they still turn away.
836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ask, "Imagine if Allah’s punishment were to overwhelm you with or without warning—who would be destroyed other than the wrongdoers?"
837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have sent messengers only as deliverers of good news and as warners. Whoever believes and does good, there will be no fear for them, nor will they grieve.
838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But those who deny Our signs will be afflicted with punishment for their rebelliousness.
839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel. I only follow what is revealed to me." Say, "Are those blind ˹to the truth˺ equal to those who can see? Will you not then reflect?"
840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Warn with this ˹Quran˺ those who are awed by the prospect of being gathered before their Lord—when they will have no protector or intercessor besides Him—so perhaps they will be mindful ˹of Him˺.
841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹O Prophet!˺ Do not dismiss those ˹poor believers˺ who invoke their Lord morning and evening, seeking His pleasure. You are not accountable for them whatsoever, nor are they accountable for you. So do not dismiss them, or you will be one of the wrongdoers.
842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In this way We have tested some by means of others, so those ˹disbelievers˺ may say, "Has Allah favoured these ˹poor believers˺ out of all of us?" Does Allah not best recognize the grateful?
843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When the believers in Our revelations come to you, say, "Peace be upon you! Your Lord has taken upon Himself to be Merciful. Whoever among you commits evil ignorantly ˹or recklessly˺ then repents afterwards and mends their ways, then Allah is truly All-Forgiving, Most Merciful."
844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is how We make Our signs clear, so the way of the wicked may become distinct.
845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "I have been forbidden to worship those you invoke besides Allah." Say, "I will not follow your desires, for I then would certainly be astray and not one of those ˹rightly˺ guided."
846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Indeed, I stand on a clear proof from my Lord—yet you have denied it. That ˹torment˺ you seek to hasten is not within my power. It is only Allah Who decides ˹its time˺. He declares the truth. And He is the Best of Judges."
847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say ˹also˺, "If what you seek to hasten were within my power, the matter between us would have already been settled. But Allah knows the wrongdoers best."
848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              With Him are the keys of the unseen—no one knows them except Him.
849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the One Who calls back your souls by night and knows what you do by day, then revives you daily to complete your appointed term. To Him is your ˹ultimate˺ return, then He will inform you of what you used to do.
850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He reigns supreme over all of His creation, and sends recording-angels, watching over you. When death comes to any of you, Our angels take their soul, never neglecting this duty.
851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then they are ˹all˺ returned to Allah—their True Master. Judgment is His ˹alone˺. And He is the Swiftest Reckoner.
852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "Who rescues you from the darkest times on land and at sea? He ˹alone˺ you call upon with humility, openly and secretly: "If You rescue us from this, we will be ever grateful."
853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, "˹Only˺ Allah rescues you from this and any other distress, yet you associate others with Him ˹in worship˺."
854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "He ˹alone˺ has the power to unleash upon you a torment from above or below you or split you into ˹conflicting˺ factions and make you taste the violence of one another." See how We vary the signs, so perhaps they will comprehend.
855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Still your people ˹O Prophet˺ have rejected this ˹Quran˺, although it is the truth. Say, "I am not a keeper over you."
856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Every ˹destined˺ matter has a ˹set˺ time to transpire. And you will soon come to know.
857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when you come across those who ridicule Our revelations, do not sit with them unless they engage in a different topic. Should Satan make you forget, then once you remember, do not ˹continue to˺ sit with the wrongdoing people.
858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those mindful ˹of Allah˺ will not be accountable for those ˹who ridicule it˺ whatsoever—their duty is to advise, so perhaps the ridiculers will abstain.
859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And leave those who take this faith ˹of Islam˺ as mere play and amusement and are deluded by ˹their˺ worldly life. Yet remind them by this ˹Quran˺, so no one should be ruined for their misdeeds. They will have no protector or intercessor other than Allah. Even if they were to offer every ˹possible˺ ransom, none will be accepted from them. Those are the ones who will be ruined for their misdeeds. They will have a boiling drink and painful punishment for their disbelief.
860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ask ˹them, O  Prophet˺, "Should we invoke, other than Allah, those ˹idols˺ which cannot benefit or harm us, and turn back to disbelief after Allah has guided us? ˹If we do so, we will be˺ like those disoriented by devils in the wilderness, while their companions call them to guidance, ˹saying˺, ‘Come to us!’ Say, ˹O Prophet,˺ "Allah’s guidance is the ˹only˺ true guidance. And we are commanded to submit to the Lord of all worlds,
861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             establish prayer, and be mindful of Him. To Him you will all be gathered together.
862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He is the One Who created the heavens and the earth in truth. On the Day ˹of Judgment˺ He will say, ‘Be!’ And there will be! His command is truth. All authority is His ˹alone˺ He is the Knower of all—seen or unseen. And He is the All-Wise, All-Aware."
863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when Abraham said to his father, Ȃzar, "Do you take idols as gods? It is clear to me that you and your people are entirely misguided."
864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We also showed Abraham the wonders of the heavens and the earth, so he would be sure in faith.
865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the night grew dark upon him, he saw a star and said, "This is my Lord!" But when it set, he said, "I do not love things that set."
866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then when he saw the moon rising, he said, "This one is my Lord!" But when it disappeared, he said, "If my Lord does not guide me, I will certainly be one of the misguided people."
867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then when he saw the sun shining, he said, "This must be my Lord—it is the greatest!" But again when it set, he declared, "O my people! I totally reject whatever you associate ˹with Allah in worship˺.
868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have turned my face towards the One Who has originated the heavens and the earth—being upright—and I am not one of the polytheists."
869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And his people argued with him. He responded, "Are you arguing with me about Allah, while He has guided me? I am not afraid of whatever ˹idols˺ you associate with Him—˹none can harm me,˺ unless my Lord so wills. My Lord encompasses everything in ˹His˺ knowledge. Will you not be mindful?
870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And how should I fear your associate-gods, while you have no fear in associating ˹others˺ with Allah—a practice He has never authorized? Which side has more right to security? ˹Tell me˺ if you really know!"
871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is ˹only˺ those who are faithful and do not tarnish their faith with falsehood who are guaranteed security and are ˹rightly˺ guided.
872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This was the argument We gave Abraham against his people. We elevate in rank whoever We please. Surely your Lord is All-Wise, All-Knowing.
873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We blessed him with Isaac and Jacob. We guided them all as We previously guided Noah and those among his descendants: David, Solomon, Job, Joseph, Moses, and Aaron. This is how We reward the good-doers.
874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Likewise, ˹We guided˺ Zachariah, John, Jesus, and Elias, who were all of the righteous.
875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹We also guided˺ Ishmael, Elisha, Jonah, and Lot, favouring each over other people ˹of their time˺.
876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹We favoured˺ some of their forefathers, their descendants, and their brothers. We chose them and guided them to the Straight Path.
877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is Allah’s guidance with which He guides whoever He wills of His servants. Had they associated others with Him ˹in worship˺, their ˹good˺ deeds would have been wasted.
878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those were the ones to whom We gave the Scripture, wisdom, and prophethood. But if these ˹pagans˺ disbelieve in this ˹message˺, then We have already entrusted it to a people who will never disbelieve in it.
879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These ˹prophets˺ were ˹rightly˺ guided by Allah, so follow their guidance. Say, "I ask no reward of you for this ˹Quran˺—it is a reminder to the whole world."
880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they have not shown Allah His proper reverence when they said, "Allah has revealed nothing to any human being." Say, ˹O Prophet,˺ "Who then revealed the Book brought forth by Moses as a light and guidance for people, which you split into separate sheets—revealing some and hiding much? You have been taught ˹through this Quran˺ what neither you nor your forefathers knew." Say, ˹O Prophet,˺ "Allah ˹revealed it˺!" Then leave them to amuse themselves with falsehood.
881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is a blessed Book which We have revealed—confirming what came before it—so you may warn the Mother of Cities and everyone around it. Those who believe in the Hereafter ˹truly˺ believe in it and guard their prayers.
882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Who does more wrong than the one who fabricates lies against Allah or claims, "I have received revelations!"—although nothing was revealed to them—or the one who says, "I can reveal the like of Allah’s revelations!"? If you ˹O Prophet˺ could only see the wrongdoers in the throes of death while the angels are stretching out their hands ˹saying˺, "Give up your souls! Today you will be rewarded with the torment of disgrace for telling lies about Allah and for being arrogant towards His revelations!"
883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Today˺ you have come back to Us all alone as We created you the first time—leaving behind everything We have provided you with. We do not see your intercessors with you—those you claimed were Allah’s partners ˹in worship˺. All your ties have been broken and all your claims have let you down."
884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, Allah is the One Who causes seeds and fruit stones to sprout. He brings forth the living from the dead and the dead from the living. That is Allah! How can you then be deluded ˹from the truth˺?
885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He causes the dawn to break, and has made the night for rest and ˹made˺ the sun and the moon ˹to travel˺ with precision. That is the design of the Almighty, All-Knowing.
886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And He is the One Who has made the stars as your guide through the darkness of land and sea. We have already made the signs clear for people who know.
887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And He is the One Who originated you all from a single soul, then assigned you a place to live and another to ˹be laid to˺ rest. We have already made the signs clear for people who comprehend.
888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And He is the One Who sends down rain from the sky—causing all kinds of plants to grow—producing green stalks from which We bring forth clustered grain. And from palm trees come clusters of dates hanging within reach. ˹There are˺ also gardens of grapevines, olives, and pomegranates, similar ˹in shape˺ but dissimilar ˹in taste˺. Look at their fruit as it yields and ripens! Indeed, in these are signs for people who believe.
889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Yet they associate the jinn out of ignorance. Glorified and Exalted is He above what they claim!
890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹He is˺ the Originator of the heavens and earth. How could He have children when He has no mate? He created all things and has ˹perfect˺ knowledge of everything.
891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That is Allah—your Lord! There is no god ˹worthy of worship˺ except Him. ˹He is˺ the Creator of all things, so worship Him ˹alone˺. And He is the Maintainer of everything.
892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              No vision can encompass Him, but He encompasses all vision. For He is the Most Subtle, All-Aware.
893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, there have come to you insights from your Lord. So whoever chooses to see, it is for their own good. But whoever chooses to be blind, it is to their own loss. And I am not a keeper over you.
894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And so We vary our signs to the extent that they will say, "You have studied ˹previous scriptures˺," and We make this ˹Quran˺ clear for people who know.
895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹O Prophet!˺ Follow what is revealed to you from your Lord—there is no god ˹worthy of worship˺ except Him—and turn away from the polytheists.
896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had Allah willed, they would not have been polytheists. We have not appointed you as their keeper, nor are you their maintainer.
897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹O believers!˺ Do not insult what they invoke besides Allah or they will insult Allah spitefully out of ignorance. This is how We have made each people’s deeds appealing to them. Then to their Lord is their return, and He will inform them of what they used to do.
898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They swear by Allah their most solemn oaths that if a sign were to come to them, they would certainly believe in it. Say, ˹O Prophet,˺ "Signs are only with Allah." What will make you ˹believers˺ realize that even if a sign were to come to them, they still would not believe?
899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We turn their hearts and eyes away ˹from the truth˺ as they refused to believe at first, leaving them to wander blindly in their defiance.
900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Even if We had sent them the angels, made the dead speak to them, and assembled before their own eyes every sign ˹they demanded˺, they still would not have believed—unless Allah so willed. But most of them are ignorant ˹of this˺.
901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And so We have made for every prophet enemies—devilish humans and jinn—whispering to one another with elegant words of deception. Had it been your Lord’s Will, they would not have done such a thing. So leave them and their deceit,
902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              so that the hearts of those who disbelieve in the Hereafter may be receptive to it, be pleased with it, and be persistent in their evil pursuits.
903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Say, O  Prophet,˺ "Should I seek a judge other than Allah while He is the One Who has revealed for you the Book ˹with the truth˺ perfectly explained?" Those who were given the Scripture know that it has been revealed ˹to you˺ from your Lord in truth. So do not be one of those who doubt.
904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Word of your Lord has been perfected in truth and justice. None can change His Words. And He is the All-Hearing, All- Knowing.
905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹O Prophet!˺ If you were to obey most of those on earth, they would lead you away from Allah’s Way. They follow nothing but assumptions and do nothing but lie.
906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.
907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So eat only of what is slaughtered in Allah’s Name if you truly believe in His revelations.
908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why should you not eat of what is slaughtered in Allah’s Name when He has already explained to you what He has forbidden to you—except when compelled by necessity? Many ˹deviants˺ certainly mislead others by their whims out of ignorance. Surely your Lord knows the transgressors best.
909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shun all sin—open and secret. Indeed, those who commit sin will be punished for what they earn.
910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do not eat of what is not slaughtered in Allah’s Name. For that would certainly be ˹an act of˺ disobedience. Surely the devils whisper to their ˹human˺ associates to argue with you. If you were to obey them, then you ˹too˺ would be polytheists.
911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Can those who had been dead, to whom We gave life and a light with which they can walk among people, be compared to those in complete darkness from which they can never emerge? That is how the misdeeds of the disbelievers have been made appealing to them.
912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so We have placed in every society the most wicked to conspire in it. Yet they plot only against themselves, but they fail to perceive it.
913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whenever a sign comes to them, they say, "We will never believe until we receive what Allah’s messengers received." Allah knows best where to place His message. The wicked will soon be overwhelmed by humiliation from Allah and a severe punishment for their evil plots.
914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoever Allah wills to guide, He opens their heart to Islam. But whoever He wills to leave astray, He makes their chest tight and constricted as if they were climbing up into the sky. This is how Allah dooms those who disbelieve.
915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That is your Lord’s Path—perfectly straight. We have already made the signs clear to those who are mindful.
916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will have the Home of Peace with their Lord, Who will be their Guardian because of what they used to do.
917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Consider˺ the Day He will gather them ˹all˺ together and say, "O assembly of jinn! You misled humans in great numbers." And their human associates will say, "Our Lord! We benefited from each other’s company, Surely your Lord is All-Wise, All-Knowing.
918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is how We make the wrongdoers ˹destructive˺ allies of one another because of their misdeeds.
919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Allah will ask,˺ "O assembly of jinn and humans! Did messengers not come from among you, proclaiming My revelations and warning you of the coming of this Day of yours?" They will say, "We confess against ourselves!" For they have been deluded by ˹their˺ worldly life. And they will testify against themselves that they were disbelievers.
920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This ˹sending of the messengers˺ is because your Lord would never destroy a society for their wrongdoing while its people are unaware ˹of the truth˺.
921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will each be assigned ranks according to their deeds. And your Lord is not unaware of what they do.
922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Your Lord is the Self-Sufficient, Full of Mercy. If He wills, He can do away with you and replace you with whoever He wills, just as He produced you from the offspring of other people.
923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, what you have been promised will certainly come to pass. And you will have no escape.
924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon know who will fare best in the end. Indeed, the wrongdoers will never succeed."
925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The pagans set aside for Allah a share of the crops and cattle He created, saying, "This ˹portion˺ is for Allah," so they claim, "and this ˹one˺ for our associate-gods." Yet the portion of their associate-gods is not shared with Allah while Allah’s portion is shared with their associate-gods. What unfair judgment!
926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Likewise, the pagans’ evil associates have made it appealing to them to kill their own children—only leading to their destruction as well as confusion in their faith. Had it been Allah’s Will, they would not have done such a thing. So leave them and their falsehood.
927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They say, "These cattle and crops are reserved—none may eat them except those we permit," so they claim. Some other cattle are exempted from labour and others are not slaughtered in Allah’s Name—falsely attributing lies to Him. He will repay them for their lies.
928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They ˹also˺ say, "The offspring of this cattle is reserved for our males and forbidden to our females; but if it is stillborn, they may all share it." He will repay them for their falsehood. Surely He is All-Wise, All-Knowing.
929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lost indeed are those who have murdered their own children foolishly out of ignorance and have forbidden what Allah has provided for them—falsely attributing lies to Allah. They have certainly strayed and are not ˹rightly˺ guided.
930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He is the One Who produces gardens—both cultivated and wild—and palm trees, crops of different flavours, olives, and pomegranates—similar ˹in shape˺, but dissimilar ˹in taste˺. Eat of the fruit they bear and pay the dues at harvest, but do not waste. Surely He does not like the wasteful.
931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Some cattle are fit for labour, others are too small. Eat of what Allah has provided for you and do not follow Satan’s footsteps. Certainly, he is your sworn enemy.
932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Allah has created˺ four pairs: a pair of sheep and a pair of goats—ask ˹them, O  Prophet˺, "Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Tell me with knowledge, if what you say is true."—
933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and a pair of camels and a pair of oxen. Ask ˹them˺, "Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Or were you present when Allah gave you this commandment?" Who does more wrong than those who fabricate lies against Allah to mislead others without ˹any˺ knowledge? Surely Allah does not guide the wrongdoing people.
934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "I do not find in what has been revealed to me anything forbidden to eat except carrion, running blood, swine—which is impure—or a sinful offering in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely your Lord is All-Forgiving, Most Merciful."
935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For those who are Jewish, We forbade every animal with undivided hoofs and the fat of oxen and sheep except what is joined to their backs or intestines or mixed with bone. In this way We rewarded them for their violations. And We are certainly truthful.
936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if they deny you ˹O Prophet˺, say, "Your Lord is infinite in mercy, yet His punishment will not be averted from the wicked people."
937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The polytheists will argue, "Had it been Allah’s Will, neither we nor our forefathers would have associated others with Him ˹in worship˺ or made anything unlawful." Likewise, those before them rejected the truth until they tasted Our punishment. Ask ˹them, O  Prophet˺, "Do you have any knowledge that you can produce for us? Surely you follow nothing but ˹false˺ assumptions and you do nothing but lie."
938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "Allah has the most conclusive argument. Had it been His Will, He would have easily imposed guidance upon all of you."
939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Bring your witnesses who can testify that Allah has forbidden this." If they ˹falsely˺ testify, do not testify with them. And do not follow the desires of those who deny Our proofs, disbelieve in the Hereafter, and set up equals with their Lord.
940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Come! Let me recite to you what your Lord has forbidden to you: do not associate others with Him ˹in worship˺. ˹Do not fail to˺ honour your parents. Do not kill your children for fear of poverty. We provide for you and for them. Do not come near indecencies, openly or secretly. Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. This is what He has commanded you, so perhaps you will understand.
941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Give full measure and weigh with justice. We never require of any soul more than what it can afford. Whenever you speak, maintain justice—even regarding a close relative. And fulfil your covenant with Allah. This is what He has commanded you, so perhaps you will be mindful.
942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, that is My Path—perfectly straight. So follow it and do not follow other ways, for they will lead you away from His Way. This is what He has commanded you, so perhaps you will be conscious ˹of Allah˺."
943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Additionally, We gave Moses the Scripture, completing the favour upon those who do good, detailing everything, and as a guide and a mercy, so perhaps they would be certain of the meeting with their Lord.
944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is a blessed Book We have revealed. So follow it and be mindful ˹of Allah˺, so you may be shown mercy.
945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You ˹pagans˺ can no longer say, "Scriptures were only revealed to two groups before us and we were unaware of their teachings."
946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Nor can you say, "If only the Scriptures had been revealed to us, we would have been better guided than they." Now there has come to you from your Lord a clear proof—a guide and mercy. Who then does more wrong than those who deny Allah’s revelations and turn away from them? We will reward those who turn away from Our revelations with a dreadful punishment for turning away.
947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Are they awaiting the coming of the angels, or your Lord ˹Himself˺, or some of your Lord’s ˹major˺ signs? On the Day your Lord’s signs arrive, belief will not benefit those who did not believe earlier or those who did no good through their faith. Say, "Keep waiting! We too are waiting."
948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, you ˹O Prophet˺ are not responsible whatsoever for those who have divided their faith and split into sects. Their judgment rests only with Allah. And He will inform them of what they used to do.
949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoever comes with a good deed will be rewarded tenfold. But whoever comes with a bad deed will be punished for only one. None will be wronged.
950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "Surely my Lord has guided me to the Straight Path, a perfect way, the faith of Abraham, the upright, who was not one of the polytheists."
951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "Surely my prayer, my worship, my life, and my death are all for Allah—Lord of all worlds.
952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He has no partner. So I am commanded, and so I am the first to submit."
953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "Should I seek a lord other than Allah while He is the Lord of everything?" No one will reap except what they sow. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of your differences.
954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who has placed you as successors on earth and elevated some of you in rank over others, so He may test you with what He has given you. Surely your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.
955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alif-Lãm-Mĩm-sãd.
956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹This is˺ a Book sent down to you ˹O Prophet˺—do not let anxiety into your heart regarding it—so with it you may warn ˹the disbelievers˺, and as a reminder to the believers.
957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Follow what has been sent down to you from your Lord, and do not take others as guardians besides Him. How seldom are you mindful!
958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Imagine˺ how many societies We have destroyed! Our torment took them by surprise ˹while sleeping˺ at night or midday.
959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Their only cry—when overwhelmed by Our torment—was, "We have indeed been wrongdoers."
960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We will surely question those who received messengers and We will question the messengers ˹themselves˺.
961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then We will give them a full account with sure knowledge—for We were never absent.
962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The weighing on that Day will be just. As for those whose scale will be heavy ˹with good deeds˺, ˹only˺ they will be successful.
963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But those whose scale is light, they have doomed themselves for wrongfully denying Our signs.
964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have indeed established you on earth and provided you with a means of livelihood. ˹Yet˺ you seldom give any thanks.
965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely We created you, who refused to prostrate with the others.
966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah asked, "What prevented you from prostrating when I commanded you?" He replied, "I am better than he is: You created me from fire and him from clay."
967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah said, "Then get down from Paradise! It is not for you to be arrogant here. So get out! You are truly one of the disgraced."
968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He appealed, "Then delay my end until the Day of their resurrection."
969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah said, "You are delayed ˹until the appointed Day˺."
970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He said, "For leaving me to stray I will lie in ambush for them on Your Straight Path.
971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I will approach them from their front, their back, their right, their left, and then You will find most of them ungrateful."
972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah said, "Get out of Paradise! You are disgraced and rejected! I will certainly fill up Hell with you and your followers all together."
973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Allah said,˺ "O Adam! Live with your wife in Paradise and eat from wherever you please, but do not approach this tree, or else you will be wrongdoers."
974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Satan tempted them in order to expose what was hidden of their nakedness. He said, "Your Lord has forbidden this tree to you only to prevent you from becoming angels or immortals."
975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he swore to them, "I am truly your sincere advisor."
976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So he brought about their fall through deception. And when they tasted of the tree, their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. Then their Lord called out to them, "Did I not forbid you from that tree and ˹did I not˺ tell you that Satan is your sworn enemy?"
977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They replied, "Our Lord! We have wronged ourselves. If You do not forgive us and have mercy on us, we will certainly be losers."
978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah said, "Descend as enemies to each other. You will find in the earth a residence and provision for your appointed stay."
979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He added, "There you will live, there you will die, and from there you will be resurrected."
980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O children of Adam! We have provided for you clothing to cover your nakedness and as an adornment. However, the best clothing is righteousness. This is one of Allah’s bounties, so perhaps you will be mindful.
981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O children of Adam! Do not let Satan deceive you as he tempted your parents out of Paradise and caused their cover to be removed in order to expose their nakedness. Surely he and his soldiers watch you from where you cannot see them. We have made the devils allies of those who disbelieve.
982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whenever they commit a shameful deed, they say, "We found our forefathers doing it and Allah has commanded us to do it." Say, "No! Allah never commands what is shameful. How can you attribute to Allah what you do not know?"
983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, ˹O Prophet,˺ "My Lord has commanded uprightness and dedication ˹to Him alone˺ in worship, calling upon Him with sincere devotion. Just as He first brought you into being, you will be brought to life again."
984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He has guided some, while others are destined to stray. They have taken devils as their masters instead of Allah—thinking they are ˹rightly˺ guided.
985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O Children of Adam! Dress properly whenever you are at worship. Eat and drink, but do not waste. Surely He does not like the wasteful.
986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ask, ˹O Prophet,˺ "Who has forbidden the adornments and lawful provisions Allah has brought forth for His servants?" Say, "They are for the enjoyment of the believers in this worldly life, but they will be exclusively theirs on the Day of Judgment. This is how We make Our revelations clear for people of knowledge."
987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, "My Lord has only forbidden open and secret indecencies, sinfulness, unjust aggression, associating ˹others˺ with Allah ˹in worship˺—a practice He has never authorized—and attributing to Allah what you do not know."
988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For each community there is an appointed term. When their time arrives, they can neither delay it for a moment, nor could they advance it.
989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O children of Adam! When messengers from among yourselves come to you reciting My revelations—whoever shuns evil and mends their ways, there will be no fear for them, nor will they grieve.
990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But those who receive Our revelations with denial and arrogance will be the residents of the Fire. They will be there forever.
991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who does more wrong than those who fabricate lies against Allah or deny His revelations? They will receive what is destined for them, until Our messenger-angels arrive to take their souls, asking them, "Where are those ˹false gods˺ you used to invoke besides Allah?" They will cry, "They have failed us," and they will confess against themselves that they were indeed disbelievers.
992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah will say, "Enter the Fire along with the ˹evil˺ groups of jinn and humans that preceded you." Whenever a group enters Hell, it will curse the preceding one until they are all gathered inside, the followers will say about their leaders, "Our Lord! They have misled us, so multiply their torment in the Fire." He will answer, "It has already been multiplied for all, but you do not know."
993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the leaders will say to their followers, "You were no better than us! So taste the torment for what you used to commit."
994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely those who receive our revelations with denial and arrogance, the gates of heaven will not be opened for them, nor will they enter Paradise until a camel passes through the eye of a needle. This is how We reward the wicked.
995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hell will be their bed; flames will be their cover. This is how We reward the wrongdoers.
996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who believe and do good—We never require of any soul more than what it can afford—it is they who will be the residents of Paradise. They will be there forever.
997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We will remove whatever bitterness they had in their hearts. Rivers will flow under their feet. And they will say, "Praise be to Allah for guiding us to this. We would have never been guided if Allah had not guided us. The messengers of our Lord had certainly come with the truth." It will be announced to them, "This is Paradise awarded to you for what you used to do."
998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The residents of Paradise will call out to the residents of the Fire, "We have certainly found our Lord’s promise to be true. Have you too found your Lord’s promise to be true?" They will reply, "Yes, we have!" Then a caller will announce to both, "May Allah’s condemnation be upon the wrongdoers,
999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          those who hindered ˹others˺ from Allah’s Way, strived to make it ˹appear˺ crooked, and disbelieved in the Hereafter."
1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There will be a barrier between Paradise and Hell. And on the heights ˹of that barrier˺ will be people They will call out to the residents of Paradise, "Peace be upon you!" They will have not yet entered Paradise, but eagerly hope to.
1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When their eyes will turn towards the residents of Hell, they will pray, "Our Lord! Do not join us with the wrongdoing people."
1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those on the heights will call out to some ˹tyrants in the Fire˺, who they will recognize by their appearance, saying, "Your large numbers and arrogance are of no use ˹today˺!
1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Are these ˹humble believers˺ the ones you swore would never be shown Allah’s mercy?" ˹Finally, those on the heights will be told:˺ "Enter Paradise! There will be no fear for you, nor will you grieve."
1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The residents of the Fire will then cry out to the residents of Paradise, "Aid us with some water or any provision Allah has granted you." They will reply, "Allah has forbidden both to the disbelievers,
1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             those who took this faith ˹of Islam˺ as mere amusement and play and were deluded by ˹their˺ worldly life." ˹Allah will say,˺ "Today We will ignore them just as they ignored the coming of this Day of theirs and for rejecting Our revelations."
1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have certainly brought them a Book which We explained with knowledge—a guide and mercy for those who believe.
1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do they only await the fulfilment ˹of its warning˺? The Day it will be fulfilled, those who ignored it before will say, "The messengers of our Lord certainly came with the truth. Are there any intercessors who can plead on our behalf? Or can we be sent back so we may do ˹good,˺ unlike what we used to do?" They will have certainly ruined themselves, and whatever ˹gods˺ they fabricated will fail them.
1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne. He makes the day and night overlap in rapid succession. He created the sun, the moon, and the stars—all subjected by His command. The creation and the command belong to Him ˹alone˺. Blessed is Allah—Lord of all worlds!
1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Call upon your Lord humbly and secretly. Surely He does not like the transgressors.
1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do not spread corruption in the land after it has been set in order. And call upon Him with hope and fear. Indeed, Allah’s mercy is always close to the good-doers.
1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who sends the winds ushering in His mercy. When they bear heavy clouds, We drive them to a lifeless land and then cause rain to fall, producing every type of fruit. Similarly, We will bring the dead to life, so perhaps you will be mindful.
1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The fertile land produces abundantly by the Will of its Lord, whereas the infertile land hardly produces anything. This is how We vary ˹Our˺ lessons to those who are thankful.
1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We sent Noah to his people. He said, "O my people! Worship Allah—you have no other god except Him. I truly fear for you the torment of a tremendous Day."
1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the chiefs of his people said, "We surely see that you are clearly misguided."
1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He replied, "O my people! I am not misguided! But I am a messenger from the Lord of all worlds,
1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              conveying to you my Lord’s messages and giving you ˹sincere˺ advice. And I know from Allah what you do not know.
1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do you find it astonishing that a reminder should come to you from your Lord through one of your own, warning you, so you may beware and perhaps be shown mercy?"
1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But they rejected him, so We saved him and those with him in the Ark, and drowned those who rejected Our signs. They were certainly a blind people.
1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And to the people of ’ad We sent their brother Hûd. He said, "O my people! Worship Allah—you have no other god except Him. Will you not then fear Him?"
1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The disbelieving chiefs of his people responded, "We surely see you as a fool, and we certainly think you are a liar."
1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hûd replied, "O my people! I am no fool! But I am a messenger from the Lord of all worlds,
1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           conveying to you my Lord’s messages. And I am your sincere advisor.
1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you find it astonishing that a reminder should come to you from your Lord through one of your own so he may warn you? Remember that He made you successors after the people of Noah and increased you greatly in stature. So remember Allah’s favours, so you may be successful."
1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They said, "Have you come to us so that we would worship Allah alone and abandon what our forefathers used to worship? Then bring us what you threaten us with, if what you say is true!"
1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He said, "You will certainly be subjected to your Lord’s torment and wrath. Do you dispute with me regarding the so-called gods which you and your forefathers have made up—a practice Allah has never authorized? Then wait! I too am waiting with you."
1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So We saved him and those with him by Our mercy and uprooted those who denied Our signs. They were not believers.
1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And to the people of Thamûd We sent their brother salih. He said, "O my people! Worship Allah—you have no other god except Him. A clear proof has come to you from your Lord: this is Allah’s she-camel as a sign to you. So leave her to graze ˹freely˺ on Allah’s land and do not harm her, or else you will be overcome by a painful punishment.
1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Remember when He made you successors after ’ad and established you in the land—˹and˺ you built palaces on its plains and carved homes into mountains. So remember Allah’s favours, and do not go about spreading corruption in the land."
1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The arrogant chiefs of his people asked the lowly who believed among them, "Are you certain that salih has been sent by his Lord?" They replied, "We certainly believe in what he has been sent with."
1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The arrogant said, "We surely reject what you believe in."
1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then they killed the she-camel—defying their Lord’s command—and challenged ˹salih˺, "Bring us what you threaten us with, if you are ˹truly˺ one of the messengers."
1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then an ˹overwhelming˺ earthquake struck them, and they fell lifeless in their homes.
1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So he turned away from them, saying, "O my people! Surely I conveyed to you my Lord’s message and gave you ˹sincere˺ advice, but you do not like ˹sincere˺ advisors."
1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember˺ when Lot scolded ˹the men of˺ his people, ˹saying,˺ "Do you commit a shameful deed that no man has ever done before?
1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You lust after men instead of women! You are certainly transgressors."
1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But his people’s only response was to say, "Expel them from your land! They are a people who wish to remain chaste!"
1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So We saved him and his family except his wife, who was one of the doomed.
1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We poured upon them a rain ˹of brimstone˺. See what was the end of the wicked!
1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And to the people of Midian We sent their brother Shu’aib. He said, "O my people! Worship Allah—you have no other god except Him. A clear proof has already come to you from your Lord. So give just measure and weight, do not defraud people of their property, nor spread corruption in the land after it has been set in order. This is for your own good, if you are ˹truly˺ believers.
1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And do not lie in ambush on every road—threatening and hindering those who believe in Allah from His Path and striving to make it ˹appear˺ crooked. Remember when you were few, then He increased you in number. And consider the fate of the corruptors!
1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If some of you do believe in what I have been sent with while others do not, then be patient until Allah judges between us. He is the Best of Judges."
1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The arrogant chiefs of his people threatened, "O Shu’aib! We will certainly expel you and your fellow believers from our land, unless you return to our faith." He replied, "Even if we hate it?
1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We would surely be fabricating a lie against Allah if we were to return to your faith after Allah has saved us from it. It does not befit us to return to it unless it is the Will of Allah, our Lord. Our Lord has encompassed everything in ˹His˺ knowledge. In Allah we trust. Our Lord! Judge between us and our people with truth. You are the best of those who judge."
1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The disbelieving chiefs of his people threatened, "If you follow Shu’aib, you will surely be losers!"
1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.
1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who rejected Shu’aib were ˹wiped out˺ as if they had never lived there. Those who rejected Shu’aib were the true losers.
1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He turned away from them, saying, "O my people! Indeed, I have delivered to you the messages of my Lord and gave you ˹sincere˺ advice. How can I then grieve for those who chose to disbelieve?"
1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whenever We sent a prophet to a society, We afflicted its ˹disbelieving˺ people with suffering and adversity, so perhaps they would be humbled.
1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then We changed their adversity to prosperity until they flourished and argued ˹falsely˺, "Our forefathers ˹too˺ had been visited by adversity and prosperity." So We seized them by surprise, while they were unaware.
1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had the people of those societies been faithful and mindful ˹of Allah˺, We would have overwhelmed them with blessings from heaven and earth. But they disbelieved, so We seized them for what they used to commit.
1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Did the people of those societies feel secure that Our punishment would not come upon them by night while they were asleep?
1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or did they feel secure that Our punishment would not come upon them by day while they were at play?
1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Did they feel secure against Allah’s planning? None would feel secure from Allah’s planning except the losers.
1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is it not clear to those who take over the land after ˹the destruction of˺ its former residents that—if We will—We can punish them ˹too˺ for their sins and seal their hearts so they will not hear ˹the truth˺?
1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We have narrated to you ˹O Prophet˺ some of the stories of those societies. Surely, their messengers came to them with clear proofs, but still they would not believe in what they had already denied. This is how Allah seals the hearts of the disbelievers.
1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We did not find most of them true to their covenant. Rather, We found most of them truly rebellious.
1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then after them We sent Moses with Our signs to Pharaoh and his chiefs, but they wrongfully rejected them. See what was the end of the corruptors!
1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses said, "O Pharaoh! I am truly a messenger from the Lord of all worlds,
1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   obliged to say nothing about Allah except the truth. Indeed, I have come to you with clear proof from your Lord, so let the children of Israel go with me."
1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharaoh said, "If you have come with a sign, then bring it if what you say is true."
1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Moses threw down his staff and—behold!—it became a real snake.
1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.
1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The chiefs of Pharaoh’s people said, "He is indeed a skilled magician,
1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            who seeks to drive you from your land." ˹So Pharaoh asked,˺ "What do you propose?"
1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They replied, "Let him and his brother wait and send mobilizers to all cities
1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          to bring you every clever magician."
1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The magicians came to Pharaoh, saying, "Shall we receive a ˹suitable˺ reward if we prevail?"
1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He replied, "Yes, and you will certainly be among those closest to me."
1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They asked, "O Moses! Will you cast, or shall we be the first to cast?"
1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moses said, "You first." So when they did, they deceived the eyes of the people, stunned them, and made a great display of magic.
1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then We inspired Moses, "Throw down your staff," and—behold!—it devoured the objects of their illusion!
1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So the truth prevailed and their illusions failed.
1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Pharaoh and his people were defeated right there and put to shame.
1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the magicians fell down, prostrating.
1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They declared, "We ˹now˺ believe in the Lord of all worlds—
1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 the Lord of Moses and Aaron."
1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharaoh threatened, "How dare you believe in him before I give you permission? This must be a conspiracy you devised in the city to drive out its people, but soon you will see.
1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I will certainly cut off your hands and feet on opposite sides, then crucify you all."
1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They responded, "Surely to our Lord we will ˹all˺ return.
1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Your rage towards us is only because we believed in the signs of our Lord when they came to us. Our Lord! Shower us with perseverance, and let us die while submitting ˹to You˺."
1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The chiefs of Pharaoh’s people protested, "Are you going to leave Moses and his people free to spread corruption in the land and abandon you and your gods?" He responded, "We will kill their sons and keep their women. We will completely dominate them."
1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moses reassured his people, "Seek Allah’s help and be patient. Indeed, the earth belongs to Allah ˹alone˺. He grants it to whoever He chooses of His servants. The ultimate outcome belongs ˹only˺ to the righteous."
1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They complained, "We have always been oppressed—before and after you came to us ˹with the message˺." He replied, "Perhaps your Lord will destroy your enemy and make you successors in the land to see what you will do."
1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We afflicted Pharaoh’s people with famine and shortage of crops so they might come back ˹to their senses˺.
1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In times of prosperity, they said, "This is what we deserve," but in adversity, they blamed it on Moses and those with him. Surely all is destined by Allah. Yet most of them did not know.
1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They said, "No matter what sign you may bring to deceive us, we will never believe in you."
1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So We plagued them with floods, locusts, lice, frogs, and blood—all as clear signs, but they persisted in arrogance and were a wicked people.
1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When tormented, they pleaded, "O Moses! Pray to your Lord on our behalf, by virtue of the covenant He made with you. If you help remove this torment from us, we will certainly believe in you and let the Children of Israel go with you."
1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But as soon as We removed the torment from them—until they met their inevitable fate—they broke their promise.
1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So We inflicted punishment upon them, drowning them in the sea for denying Our signs and being heedless of them.
1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹so˺ We made the oppressed people successors of the eastern and western lands, which We had showered with blessings. ˹In this way˺ the noble Word of your Lord was fulfilled for the Children of Israel for what they had endured. And We destroyed what Pharaoh and his people constructed and what they established.
1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We brought the Children of Israel across the sea and they came upon a people devoted to idols. They demanded, "O Moses! Make for us a god like their gods." He replied, "Indeed, you are a people acting ignorantly!
1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             What they follow is certainly doomed to destruction and their deeds are in vain."
1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He added, "Shall I seek for you a god other than Allah, while He has honoured you above the others?"
1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when We rescued you from the people of Pharaoh, who afflicted you with dreadful torment—killing your sons and keeping your women. That was a severe test from your Lord.
1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We appointed for Moses thirty nights then added another ten—completing his Lord’s term of forty nights. Moses commanded his brother Aaron, "Take my place among my people, do what is right, and do not follow the way of the corruptors."
1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When Moses came at the appointed time and his Lord spoke to him, he asked, "My Lord! Reveal Yourself to me so I may see You." Allah answered, "You cannot see Me! But look at the mountain. If it remains firm in its place, only then will you see Me." When his Lord appeared to the mountain, He levelled it to dust and Moses collapsed unconscious. When he recovered, he cried, "Glory be to You! I turn to You in repentance and I am the first of the believers."
1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah said, "O Moses! I have ˹already˺ elevated you above all others by My messages and speech. So hold firmly to what I have given you and be grateful."
1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We wrote for him on the Tablets ˹the fundamentals˺ of everything; commandments and explanations of all things. ˹We commanded,˺ "Hold to this firmly and ask your people to take the best of it.
1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I will turn away from My signs those who act unjustly with arrogance in the land. And even if they were to see every sign, they still would not believe in them. If they see the Right Path, they will not take it. But if they see a crooked path, they will follow it. This is because they denied Our signs and were heedless of them.
1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The deeds of those who deny Our signs and the meeting ˹with Allah˺ in the Hereafter will be in vain. Will they be rewarded except for what they have done?"
1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In the absence of Moses, his people made from their ˹golden˺ jewellery an idol of a calf that made a lowing sound. Did they not see that it could neither speak to them nor guide them to the ˹Right˺ Path? Still they took it as a god and were wrongdoers.
1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Later, when they were filled with remorse and realized they had gone astray, they cried, "If our Lord does not have mercy on us and forgive us, we will certainly be losers."
1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Upon Moses’ return to his people, ˹totally˺ furious and sorrowful, he said, "What an evil thing you committed in my absence! Did you want to hasten your Lord’s torment?" Then he threw down the Tablets and grabbed his brother by the hair, dragging him closer. Aaron pleaded, "O son of my mother! The people overpowered me and were about to kill me. So do not ˹humiliate me and˺ make my enemies rejoice, nor count me among the wrongdoing people."
1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moses prayed, "My Lord! Forgive me and my brother! And admit us into Your mercy. You are the Most Merciful of the merciful."
1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who worshipped the calf will certainly be afflicted with Allah’s wrath as well as disgrace in the life of this world. This is how We reward those who invent falsehood.
1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But those who commit evil, then repent and become ˹true˺ believers, your Lord will certainly be All-Forgiving, Most-Merciful.
1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When Moses’ anger subsided, he took up the Tablets whose text contained guidance and mercy for those who stand in awe of their Lord.
1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moses chose seventy men from among his people for Our appointment and, when they were seized by an earthquake, he cried, "My Lord! Had You willed, You could have destroyed them long ago, and me as well. Will You destroy us for what the foolish among us have done? This is only a test from You—by which You allow whoever you will to stray and guide whoever You will. You are our Guardian. So forgive us and have mercy on us. You are the best forgiver.
1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ordain for us what is good in this life and the next. Indeed, we have turned to You ˹in repentance˺." Allah replied, "I will inflict My torment on whoever I will. But My mercy encompasses everything. I will ordain mercy for those who shun evil, pay alms-tax, and believe in Our revelations.
1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "˹They are˺ the ones who follow the Messenger, the unlettered Prophet, whose description they find in their Torah and the Gospel. He commands them to do good and forbids them from evil, permits for them what is lawful and forbids to them what is impure, and relieves them from their burdens and the shackles that bound them. ˹Only˺ those who believe in him, honour and support him, and follow the light sent down to him will be successful."
1112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "O humanity! I am Allah’s Messenger to you all. To Him ˹alone˺ belongs the kingdom of the heavens and the earth. There is no god ˹worthy of worship˺ except Him. He gives life and causes death." So believe in Allah and His Messenger, the unlettered Prophet, who believes in Allah and His revelations. And follow him, so you may be ˹rightly˺ guided.
1113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There are some among the people of Moses who guide with the truth and establish justice accordingly.
1114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We divided them into twelve tribes—each as a community. And We revealed to Moses, when his people asked for water, "Strike the rock with your staff." Then twelve springs gushed out. Each tribe knew its drinking place. We shaded them with clouds and sent down to them manna and quails, ˹saying˺, "Eat from the good things We have provided for you." They ˹certainly˺ did not wrong Us, but wronged themselves.
1115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹remember˺ when it was said to them, "Enter this city ˹of Jerusalem˺ and eat from wherever you please. Say, ‘Absolve us,’ and enter the gate with humility. We will forgive your sins, ˹and˺ We will multiply the reward for the good-doers."
1116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the wrongdoers among them changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their wrongdoing.
1117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ask them ˹O Prophet˺ about ˹the people of˺ the town which was by the sea, who broke the Sabbath. During the Sabbath, ˹abundant˺ fish would come to them clearly visible, but on other days the fish were never seen. In this way We tested them for their rebelliousness.
1118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When some of ˹the righteous among˺ them questioned ˹their fellow Sabbath-keepers˺, "Why do you ˹bother to˺ warn those ˹Sabbath-breakers˺ who will either be destroyed or severely punished by Allah?" They replied, "Just to be free from your Lord’s blame, and so perhaps they may abstain."
1119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they ignored the warning they were given, We rescued those who used to warn against evil and overtook the wrongdoers with a dreadful punishment for their rebelliousness.
1120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But when they stubbornly persisted in violation, We said to them, "Be disgraced apes!"
1121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember, O  Prophet,˺ when your Lord declared that He would send against them others who would make them suffer terribly until the Day of Judgment. Indeed, your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.
1122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We dispersed them through the land in groups—some were righteous, others were less so. We tested them with prosperity and adversity, so perhaps they would return ˹to the Right Path˺.
1123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then they were succeeded by other generations who inherited the Scripture. They indulged in unlawful gains, claiming, "We will be forgiven ˹after all˺." And if similar gain came their way, they would seize it. Was a covenant not taken from them in the Scripture that they would not say anything about Allah except the truth? And they were already well-versed in its teachings. But the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?
1124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who firmly abide by the Scripture and establish prayer—surely We never discount the reward of those acting righteously.
1125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹remember˺ when We raised the mountain over them as if it were a cloud and they thought it would fall on them. ˹We said,˺ "Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺."
1126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹remember˺ when your Lord brought forth from the loins of the children of Adam their descendants and had them testify regarding themselves. ˹Allah asked,˺ "Am I not your Lord?" They replied, "Yes, You are! We testify." ˹He cautioned,˺ "Now you have no right to say on Judgment Day, ‘We were not aware of this.’
1127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nor say, ‘It was our forefathers who had associated others ˹with Allah in worship˺ and we, as their descendants, followed in their footsteps. Will you then destroy us for the falsehood they invented?’"
1128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is how We make our signs clear, so perhaps they will return ˹to the Right Path˺.
1129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And relate to them ˹O Prophet˺ the story of the one to whom We gave Our signs, but he abandoned them, so Satan took hold of him, and he became a deviant.
1130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If We had willed, We would have elevated him with Our signs, but he clung to this life—following his evil desires. His example is that of a dog: if you chase it away, it pants, and if you leave it, it ˹still˺ pants. This is the example of the people who deny Our signs. So narrate ˹to them˺ stories ˹of the past˺, so perhaps they will reflect.
1131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What an evil example of those who denied Our signs! They ˹only˺ wronged their own souls.
1132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whoever Allah guides is truly guided. And whoever He leaves to stray, they are the ˹true˺ losers.
1133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We have destined many jinn and humans for Hell. They have hearts they do not understand with, eyes they do not see with, and ears they do not hear with. They are like cattle. In fact, they are even less guided! Such ˹people˺ are ˹entirely˺ heedless.
1134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah has the Most Beautiful Names. So call upon Him by them, and keep away from those who abuse His Names. They will be punished for what they used to do.
1135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And among those We created is a group that guides with the truth and establishes justice accordingly.
1136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who deny Our signs, We will gradually draw them to destruction in ways they cannot comprehend.
1137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I ˹only˺ delay their end for a while, but My planning is flawless.
1138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have they not ever given it a thought? Their fellow man is not insane. He is only sent with a clear warning.
1139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have they ever reflected on the wonders of the heavens and the earth, and everything Allah has created, and that perhaps their end is near? So what message after this ˹Quran˺ would they believe in?
1140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoever Allah allows to stray, none can guide, leaving them to wander blindly in their defiance.
1141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They ask you ˹O Prophet˺ regarding the Hour, "When will it be?" Say, "That knowledge is only with my Lord. He alone will reveal it when the time comes. It is too tremendous for the heavens and the earth and will only take you by surprise." They ask you as if you had full knowledge of it. Say, "That knowledge is only with Allah, but most people do not know."
1142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "I have no power to benefit or protect myself, except by the Will of Allah. If I had known the unknown, I would have benefited myself enormously, and no harm would have ever touched me. I am only a warner and deliverer of good news for those who believe."
1143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He is the One Who created you from a single soul, then from it made its spouse so he may find comfort in her. After he had been united with her, she carried a light burden that developed gradually. When it grew heavy, they prayed to Allah, their Lord, "If you grant us good offspring, we will certainly be grateful."
1144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But when He granted their descendants good offspring, they associated false gods in what He has given them. Exalted is Allah above what they associate ˹with Him˺!
1145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do they associate ˹with Allah˺ those ˹idols˺ which cannot create anything, but are in fact created;
1146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              which cannot help them, or even help themselves?
1147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if you ˹idolaters˺ call upon them for guidance, they cannot respond to you. It is all the same whether you call them or remain silent.
1148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Those ˹idols˺ you invoke besides Allah are created beings like yourselves. So call upon them and see if they will answer you, if your claims are true!
1149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do they have feet to walk with? Or hands to hold with? Or eyes to see with? Or ears to hear with? Say, ˹O Prophet,˺ "Call upon your associate-gods and conspire against me without delay!
1150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             "Indeed, my Protector is Allah Who has revealed this Book. For He ˹alone˺ protects the righteous.
1151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But those ˹false gods˺ you call besides Him can neither help you nor even themselves."
1152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If you ˹idolaters˺ call them to guidance, they cannot hear. And you ˹O Prophet˺ may see them facing towards you, but they cannot see.
1153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Be gracious, enjoin what is right, and turn away from those who act ignorantly.
1154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you are tempted by Satan, then seek refuge with Allah. Surely He is All-Hearing, All-Knowing.
1155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, when Satan whispers to those mindful ˹of Allah˺, they remember ˹their Lord˺ then they start to see ˹things˺ clearly.
1156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But the devils persistently plunge their ˹human˺ associates deeper into wickedness, sparing no effort.
1157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you ˹O Prophet˺ do not bring them a sign ˹which they demanded˺, they ask, "Why do you not make it yourself?" Say, "I only follow what is revealed to me from my Lord. This ˹Quran˺ is an insight from your Lord—a guide and a mercy for those who believe."
1158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When the Quran is recited, listen to it attentively and be silent, so you may be shown mercy.
1159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Remember your Lord inwardly with humility and reverence and in a moderate tone of voice, both morning and evening. And do not be one of the heedless.
1160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely those ˹angels˺ nearest to your Lord are not too proud to worship Him. They glorify Him. And to Him they prostrate.
1161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They ask you ˹O Prophet˺ regarding the spoils of war. Say, "Their distribution is decided by Allah and His Messenger. So be mindful of Allah, settle your affairs, and obey Allah and His Messenger if you are ˹true˺ believers."
1162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The ˹true˺ believers are only those whose hearts tremble at the remembrance of Allah, whose faith increases when His revelations are recited to them, and who put their trust in their Lord.
1163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They are˺ those who establish prayer and donate from what We have provided for them.
1164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is they who are the true believers. They will have elevated ranks, forgiveness, and an honourable provision from their Lord.
1165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Similarly, when your Lord brought you ˹O Prophet˺ out of your home for a just cause, a group of believers was totally against it.
1166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They disputed with you about the truth after it had been made clear, as if they were being driven to death with their eyes wide open.
1167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember, O  believers,˺ when Allah promised ˹to give˺ you the upper hand over either target, you wished to capture the unarmed party. But it was Allah’s Will to establish the truth by His Words and uproot the disbelievers;
1168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to firmly establish the truth and wipe out falsehood—even to the dismay of the wicked.
1169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Remember˺ when you cried out to your Lord for help, He answered, "I will reinforce you with a thousand angels—followed by many others."
1170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Allah made this a sign of victory and reassurance to your hearts. Victory comes only from Allah. Surely Allah is Almighty, All-Wise.
1171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember˺ when He caused drowsiness to overcome you, giving you serenity. And He sent down rain from the sky to purify you, free you from Satan’s whispers, strengthen your hearts, and make ˹your˺ steps firm.
1172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Remember, O  Prophet,˺ when your Lord revealed to the angels, "I am with you. So make the believers stand firm. I will cast horror into the hearts of the disbelievers. So strike their necks and strike their fingertips."
1173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is because they defied Allah and His Messenger. And whoever defies Allah and His Messenger, then ˹know that˺ Allah is surely severe in punishment.
1174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That ˹worldly punishment˺ is yours, so taste it! Then the disbelievers will suffer the torment of the Fire.
1175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! When you face the disbelievers in battle, never turn your backs to them.
1176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And whoever does so on such an occasion—unless it is a manoeuvre or to join their own troops—will earn the displeasure of Allah, and their home will be Hell. What an evil destination!
1177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It was not you ˹believers˺ who killed them, but it was Allah Who did so. Nor was it you ˹O Prophet˺ who threw ˹a handful of sand at the disbelievers˺, but it was Allah Who did so, rendering the believers a great favour. Surely Allah is All-Hearing, All-Knowing.
1178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As such, Allah frustrates the evil plans of the disbelievers.
1179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you ˹Meccans˺ sought judgment, now it has come to you. And if you cease, it will be for your own good. But if you persist, We will persist. And your forces—no matter how numerous they might be—will not benefit you whatsoever. For Allah is certainly with the believers.
1180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O believers! Obey Allah and His Messenger and do not turn away from him while you hear ˹his call˺.
1181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do not be like those who say, "We hear," but in fact they are not listening.
1182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, the worst of all beings in the sight of Allah are the ˹wilfully˺ deaf and dumb, who do not understand.
1183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had Allah known any goodness in them, He would have certainly made them hear. ˹But˺ even if He had made them hear, they would have surely turned away heedlessly.
1184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O believers! Respond to Allah and His Messenger when he calls you to that which gives you life. And know that Allah stands between a person and their heart, and that to Him you will all be gathered.
1185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Beware of a trial that will not only affect the wrongdoers among you. And know that Allah is severe in punishment.
1186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Remember when you had been vastly outnumbered and oppressed in the land, constantly in fear of attacks by your enemy, then He sheltered you, strengthened you with His help, and provided you with good things so perhaps you would be thankful.
1187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Do not betray Allah and the Messenger, nor betray your trusts knowingly.
1188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And know that your wealth and your children are only a test and that with Allah is a great reward.
1189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! If you are mindful of Allah, He will grant you a standard ˹to distinguish between right and wrong˺, absolve you of your sins, and forgive you. And Allah is the Lord of infinite bounty.
1190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember, O  Prophet,˺ when the disbelievers conspired to capture, kill, or exile you. They planned, but Allah also planned. And Allah is the best of planners.
1191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whenever Our revelations are recited to them, they challenge ˹you˺, "We have already heard ˹the recitation˺. If we wanted, we could have easily produced something similar. This ˹Quran˺ is nothing but ancient fables!"
1192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when they prayed, "O Allah! If this is indeed the truth from You, then rain down stones upon us from the sky or overcome us with a painful punishment."
1193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But Allah would never punish them while you ˹O Prophet˺ were in their midst. Nor would He ever punish them if they prayed for forgiveness.
1194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And why should Allah not punish them while they hinder pilgrims from the Sacred Mosque, claiming to be its rightful guardians? None has the right to guardianship except those mindful ˹of Allah˺, but most pagans do not know.
1195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Their prayer at the Sacred House was nothing but whistling and clapping. So taste the punishment for your disbelief.
1196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely the disbelievers spend their wealth to hinder others from the Path of Allah. They will continue to spend to the point of regret. Then they will be defeated and the disbelievers will be driven into Hell,
1197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            so Allah may separate the evil from the good. He will pile up the evil ones all together and then cast them into Hell. They are the ˹true˺ losers.
1198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tell the disbelievers that if they desist, their past will be forgiven. But if they persist, then they have an example in those destroyed before them.
1199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fight against them until there is no more persecution—and ˹your˺ devotion will be entirely to Allah. But if they desist, then surely Allah is All-Seeing of what they do.
1200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if they do not comply, then know that Allah is your Protector. What an excellent Protector, and what an excellent Helper!
1201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Know that whatever spoils you take, one-fifth is for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers, if you ˹truly˺ believe in Allah and what We revealed to Our servant on that decisive day when the two armies met ˹at Badr˺. And Allah is Most Capable of everything.
1202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Remember˺ when you were on the near side of the valley, your enemy on the far side, and the caravan was below you. Even if the two armies had made an appointment ˹to meet˺, both would have certainly missed it. Still it transpired so Allah may establish what He had destined—that those who were to perish and those who were to survive might do so after the truth had been made clear to both. Surely Allah is All-Hearing, All-Knowing.
1203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember, O  Prophet,˺ when Allah showed them in your dream as few in number. Had He shown them to you as many, you ˹believers˺ would have certainly faltered and disputed in the matter. But Allah spared you ˹from that˺. Surely He knows best what is ˹hidden˺ in the heart.
1204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then when your armies met, Allah made them appear as few in your eyes, and made you appear as few in theirs, so Allah may establish what He had destined. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
1205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! When you face an enemy, stand firm and remember Allah often so you may triumph.
1206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Obey Allah and His Messenger and do not dispute with one another, or you would be discouraged and weakened. Persevere! Surely Allah is with those who persevere.
1207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not be like those ˹pagans˺ who left their homes arrogantly, only to be seen by people and to hinder others from Allah’s Path. And Allah is Fully Aware of what they do.
1208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹remember˺ when Satan made their ˹evil˺ deeds appealing to them, and said, "No one can overcome you today. I am surely by your side." But when the two forces faced off, he cowered and said, "I have absolutely nothing to do with you. I certainly see what you do not see. I truly fear Allah, for Allah is severe in punishment."
1209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ when the hypocrites and those with sickness in their hearts said, "These ˹believers˺ are deluded by their faith." But whoever puts their trust in Allah, surely Allah is Almighty, All-Wise.
1210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If only you could see when the angels take the souls of the disbelievers, beating their faces and backs, ˹saying,˺ "Taste the torment of burning!
1211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation."
1212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Their fate is that of the people of Pharaoh and those before them—they all disbelieved in Allah’s signs, so Allah seized them for their sins. Indeed, Allah is All-Powerful, severe in punishment.
1213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is because Allah would never discontinue His favour to a people until they discontinue their faith. Surely Allah is All-Hearing, All-Knowing.
1214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That was the case with Pharaoh’s people and those before them—they all rejected the signs of their Lord, so We destroyed them for their sins and drowned Pharaoh’s people. They were all wrongdoers.
1215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, the worst of all beings in the sight of Allah are those who persist in disbelief, never to have faith—
1216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹namely˺ those with whom you ˹O Prophet˺ have entered into treaties, but they violate them every time, not fearing the consequences.
1217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you ever encounter them in battle, make a fearsome example of them, so perhaps those who would follow them may be deterred.
1218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if you ˹O Prophet˺ see signs of betrayal by a people, respond by openly terminating your treaty with them. Surely Allah does not like those who betray.
1219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do not let those disbelievers think they are not within reach. They will have no escape.
1220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Prepare against them what you ˹believers˺ can of ˹military˺ power and cavalry to deter Allah’s enemies and your enemies as well as other enemies unknown to you but known to Allah. Whatever you spend in the cause of Allah will be paid to you in full and you will not be wronged.
1221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If the enemy is inclined towards peace, make peace with them. And put your trust in Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.
1222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if their intention is only to deceive you, then Allah is certainly sufficient for you. He is the One Who has supported you with His help and with the believers.
1223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He brought their hearts together. Had you spent all the riches in the earth, you could not have united their hearts. But Allah has united them. Indeed, He is Almighty, All-Wise.
1224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O  Prophet! Allah is sufficient for you and for the believers who follow you.
1225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O Prophet! Motivate the believers to fight. If there are twenty steadfast among you, they will overcome two hundred. And if there are one hundred of you, they will overcome one thousand of the disbelievers, for they are a people who do not comprehend.
1226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now Allah has lightened your burden, for He knows that there is weakness in you. So if there are a hundred steadfast among you, they will overcome two hundred. And if there be one thousand, they will overcome two thousand, by Allah’s Will. And Allah is with the steadfast.
1227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is not fit for a prophet that he should take captives until he has thoroughly subdued the land. You ˹believers˺ settled with the fleeting gains of this world, while Allah’s aim ˹for you˺ is the Hereafter. Allah is Almighty, All-Wise.
1228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Had it not been for a prior decree from Allah, you would have certainly been disciplined with a tremendous punishment for whatever ˹ransom˺ you have taken.
1229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now enjoy what you have taken, for it is lawful and good. And be mindful of Allah. Surely Allah is All-Forgiving, Most Merciful.
1230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O Prophet! Tell the captives in your custody, "If Allah finds goodness in your hearts, He will give you better than what has been taken from you, and forgive you. For Allah is All-Forgiving, Most Merciful."
1231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if their intention is only to betray you ˹O Prophet˺, they sought to betray Allah before. But He gave you power over them. And Allah is All-Knowing, All-Wise.
1232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who believed, emigrated, and strived with their wealth and lives in the cause of Allah, as well as those who gave them shelter and help—they are truly guardians of one another. As for those who believed but did not emigrate, you have no obligations to them until they emigrate. But if they seek your help ˹against persecution˺ in faith, it is your obligation to help them, except against people bound with you in a treaty. Allah is All-Seeing of what you do.
1233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for the disbelievers, they are guardians of one another. And unless you ˹believers˺ act likewise, there will be great oppression and corruption in the land.
1234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those who believed, migrated, and struggled in the cause of Allah, and those who gave ˹them˺ shelter and help, they are the true believers. They will have forgiveness and an honourable provision.
1235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And those who later believed, migrated, and struggled alongside you, they are also with you. But only blood relatives are now entitled to inherit from one another, as ordained by Allah. Surely Allah has ˹full˺ knowledge of everything.
1236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹This is˺ a discharge from all obligations, by Allah and His Messenger, to the polytheists you ˹believers˺ have entered into treaties with:
1237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "You ˹polytheists˺ may travel freely through the land for four months, but know that you will have no escape from Allah, and that Allah will disgrace the disbelievers."
1238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A declaration from Allah and His Messenger ˹is made˺ to all people on the day of the greater pilgrimage that Allah and His Messenger are free of the polytheists. So if you ˹pagans˺ repent, it will be better for you. But if you turn away, then know that you will have no escape from Allah. And give good news ˹O Prophet˺ to the disbelievers of a painful punishment.
1239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for the polytheists who have honoured every term of their treaty with you and have not supported an enemy against you, honour your treaty with them until the end of its term. Surely Allah loves those who are mindful ˹of Him˺.
1240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But once the Sacred Months have passed, kill the polytheists ˹who violated their treaties˺ wherever you find them, capture them, besiege them, and lie in wait for them on every way. But if they repent, perform prayers, and pay alms-tax, then set them free. Indeed, Allah is All-Forgiving, Most Merciful.
1241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if anyone from the polytheists asks for your protection ˹O Prophet˺, grant it to them so they may hear the Word of Allah, then escort them to a place of safety, for they are a people who have no knowledge.
1242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How can such polytheists have a treaty with Allah and His Messenger, except those you have made a treaty with at the Sacred Mosque? So, as long as they are true to you, be true to them. Indeed Allah loves those who are mindful ˹of Him˺.
1243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How ˹can they have a treaty˺? If they were to have the upper hand over you, they would have no respect for kinship or treaty. They only flatter you with their tongues, but their hearts are in denial, and most of them are rebellious.
1244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They chose a fleeting gain over Allah’s revelations, hindering ˹others˺ from His Way. Evil indeed is what they have done!
1245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They do not honour the bonds of kinship or treaties with the believers. It is they who are the transgressors.
1246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But if they repent, perform prayer, and pay alms-tax, then they are your brothers in faith. This is how We make the revelations clear for people of knowledge.
1247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if they break their oaths after making a pledge and attack your faith, then fight the champions of disbelief—who never honour their oaths—so perhaps they will desist.
1248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Will you not fight those who have broken their oaths, conspired to expel the Messenger ˹from Mecca˺, and attacked you first? Do you fear them? Allah is more deserving of your fear, if you are ˹true˺ believers.
1249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹So˺ fight them and Allah will punish them at your hands, put them to shame, help you overcome them, and soothe the hearts of the believers—
1250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removing rage from their hearts. And Allah pardons whoever He wills. For Allah is All-Knowing, All-Wise.
1251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do you ˹believers˺ think that you will be left without Allah proving who among you ˹truly˺ struggles ˹in His cause˺ and never takes trusted allies other than Allah, His Messenger, or the believers? And Allah is All-Aware of what you do.
1252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is not for the polytheists to maintain the mosques of Allah while they openly profess disbelief. Their deeds are void, and they will be in the Fire forever.
1253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The mosques of Allah should only be maintained by those who believe in Allah and the Last Day, establish prayer, pay alms-tax, and fear none but Allah. It is right to hope that they will be among the ˹truly˺ guided.
1254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do you ˹pagans˺ consider providing the pilgrims with water and maintaining the Sacred Mosque as equal to believing in Allah and the Last Day and struggling in the cause of Allah? They are not equal in Allah’s sight. And Allah does not guide the wrongdoing people.
1255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who have believed, emigrated, and strived in the cause of Allah with their wealth and their lives are greater in rank in the sight of Allah. It is they who will triumph.
1256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Their Lord gives them good news of His mercy, pleasure, and Gardens with everlasting bliss,
1257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         to stay there for ever and ever. Surely with Allah is a great reward.
1258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O believers! Do not take your parents and siblings as trusted allies if they choose disbelief over belief. And whoever of you does so, they are the ˹true˺ wrongdoers.
1259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "If your parents and children and siblings and spouses and extended family and the wealth you have acquired and the trade you fear will decline and the homes you cherish—˹if all these˺ are more beloved to you than Allah and His Messenger and struggling in His Way, then wait until Allah brings about His Will. Allah does not guide the rebellious people."
1260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed Allah has given you ˹believers˺ victory on many battlefields, even at the Battle of hunain when you took pride in your great numbers, but they proved of no advantage to you. The earth, despite its vastness, seemed to close in on you, then you turned back in retreat.
1261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Allah sent down His reassurance you could not see, and punished those who disbelieved. Such was the reward of the disbelievers.
1262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then afterwards Allah will turn in grace to whoever He wills. And Allah is All-Forgiving, Most Merciful.
1263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O believers! Indeed, the polytheists are ˹spiritually˺ impure, If you fear poverty, Allah will enrich you out of His bounty, if He wills. Surely, Allah is All-Knowing, All-Wise.
1264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fight those who do not believe in Allah and the Last Day, nor comply with what Allah and His Messenger have forbidden, nor embrace the religion of truth from among those who were given the Scripture, willingly submitting, fully humbled.
1265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Jews say, "Ezra is the son of Allah," while the Christians say, "The Messiah is the son of Allah." Such are their baseless assertions, only parroting the words of earlier disbelievers. May Allah condemn them! How can they be deluded ˹from the truth˺?
1266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They have taken their rabbis and monks as well as the Messiah, son of Mary, as lords besides Allah, even though they were commanded to worship none but One God. There is no god ˹worthy of worship˺ except Him. Glorified is He above what they associate ˹with Him˺!
1267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They wish to extinguish Allah’s light with their mouths, but Allah will only allow His light to be perfected, even to the dismay of the disbelievers.
1268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.
1269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Indeed, many rabbis and monks consume people’s wealth wrongfully and hinder ˹others˺ from the Way of Allah. Give good news of a painful torment to those who hoard gold and silver and do not spend it in Allah’s cause.
1270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Day ˹will come˺ when their treasure will be heated up in the Fire of Hell, and their foreheads, sides, and backs branded with it. ˹It will be said to them,˺ "This is the treasure you hoarded for yourselves. Now taste what you hoarded!"
1271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, the number of months ordained by Allah is twelve—in Allah’s Record since the day He created the heavens and the earth—of which four are sacred. That is the Right Way. So do not wrong one another during these months. And together fight the polytheists as they fight against you together. And know that Allah is with those mindful ˹of Him˺.
1272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Reallocating the sanctity of ˹these˺ months is an increase in disbelief, by which the disbelievers are led ˹far˺ astray. They adjust the sanctity one year and uphold it in another, only to maintain the number of months sanctified by Allah, violating the very months Allah has made sacred. Their evil deeds have been made appealing to them. And Allah does not guide the disbelieving people.
1273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O believers! What is the matter with you that when you are asked to march forth in the cause of Allah, you cling firmly to ˹your˺ land? Do you prefer the life of this world over the Hereafter? The enjoyment of this worldly life is insignificant compared to that of the Hereafter.
1274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If you do not march forth, He will afflict you with a painful torment and replace you with other people. You are not harming Him in the least. And Allah is Most Capable of everything.
1275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹It does not matter˺ if you ˹believers˺ do not support him, for Allah did in fact support him when the disbelievers drove him out ˹of Mecca˺ and he was only one of two. While they both were in the cave, he reassured his companion, "Do not worry; Allah is certainly with us." So Allah sent down His serenity upon the Prophet, supported him with forces you ˹believers˺ did not see, and made the word of the disbelievers lowest, while the Word of Allah is supreme. And Allah is Almighty, All-Wise.
1276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹O believers!˺ March forth whether it is easy or difficult for you, and strive with your wealth and your lives in the cause of Allah. That is best for you, if only you knew.
1277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had the gain been within reach and the journey shorter, they would have followed you, but the distance seemed too long for them. And they will swear by Allah, "Had we been able, we would have certainly joined you." They are ruining themselves. And Allah knows that they are surely lying.
1278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             May Allah pardon you ˹O Prophet˺! Why did you give them permission ˹to stay behind˺ before those who told the truth were distinguished from those who were lying?
1279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Those who believe in Allah and the Last Day do not ask for exemption from striving with their wealth and their lives. And Allah has perfect knowledge of those who are mindful ˹of Him˺.
1280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No one would ask for exemption except those who have no faith in Allah or the Last Day, and whose hearts are in doubt, so they are torn by their doubts.
1281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had they ˹really˺ intended to march forth, they would have made preparations for it. But Allah disliked that they should go, so He let them lag behind, and it was said ˹to them˺, "Stay with those ˹helpless˺ who remain behind."
1282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had they gone forth with you ˹believers˺, they would have been nothing but trouble for you, and would have scrambled around, seeking to spread discord in your midst. And some of you would have eagerly listened to them. And Allah has ˹perfect˺ knowledge of the wrongdoers.
1283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They had already sought to spread discord before and devised every ˹possible˺ plot against you ˹O Prophet˺, until the truth came and Allah’s Will prevailed—much to their dismay.
1284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       There are some of them who say, "Exempt me and do not expose me to temptation." They have already fallen into temptation. And Hell will surely engulf the disbelievers.
1285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If a blessing befalls you ˹O Prophet˺, they grieve, but if a disaster befalls you, they say, "We took our precaution in advance," and turn away, rejoicing.
1286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "Nothing will ever befall us except what Allah has destined for us. He is our Protector." So in Allah let the believers put their trust.
1287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "Are you awaiting anything to befall us except one of the two best things: ˹victory or martyrdom˺? But We are awaiting Allah to afflict you with torment either from Him or at our hands. So keep waiting! We too are waiting with you."
1288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "˹Whether you˺ donate willingly or unwillingly, it will never be accepted from you, for you have been a rebellious people."
1289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what prevented their donations from being accepted is that they have lost faith in Allah and His Messenger, they never come to prayer except half-heartedly, and they never donate except resentfully.
1290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this worldly life, then their souls will depart while they are disbelievers.
1291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They swear by Allah that they are part of you, but they are not. They only say so out of fear.
1292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If only they could find a refuge, or a cave, or any hiding-place, they would rush headlong towards it.
1293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There are some of them who are critical of your distribution of alms ˹O Prophet˺. If they are given some of it they are pleased, but if not they are enraged.
1294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If only they had been content with what Allah and His Messenger had given them and said, "Allah is sufficient for us! Allah will grant us out of His bounty, and so will His Messenger. To Allah ˹alone˺ we turn with hope."
1295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alms-tax is only for the poor and the needy, for those employed to administer it, for those whose hearts are attracted ˹to the faith˺, for ˹freeing˺ slaves, for those in debt, for Allah’s cause, and for ˹needy˺ travellers. ˹This is˺ an obligation from Allah. And Allah is All-Knowing, All-Wise.
1296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there are others who hurt the Prophet by saying, "He listens to anyone." Say, ˹O Prophet,˺ "He listens to what is best for you. He believes in Allah, has faith in the believers, and is a mercy for those who believe among you." Those who hurt Allah’s Messenger will suffer a painful punishment.
1297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They swear by Allah to you ˹believers˺ in order to please you, while it is the pleasure of Allah and His Messenger they should seek, if they are ˹true˺ believers.
1298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do they not know that whoever opposes Allah and His Messenger will be in the Fire of Hell forever? That is the ultimate disgrace.
1299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The hypocrites fear that a sûrah should be revealed about them, exposing what is in their hearts. Say, ˹O Prophet,˺ "Keep mocking! Allah will definitely bring to light what you fear."
1300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If you question them, they will certainly say, "We were only talking idly and joking around." Say, "Was it Allah, His revelations, and His Messenger that you ridiculed?"
1301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make no excuses! You have lost faith after your belief. If We pardon a group of you, We will punish others for their wickedness.
1302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The hypocrites, both men and women, are all alike: they encourage what is evil, forbid what is good, and withhold ˹what is in˺ their hands. They neglected Allah, so He neglected them. Surely the hypocrites are the rebellious.
1303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah has promised the hypocrites, both men and women, and the disbelievers an everlasting stay in the Fire of Hell—it is sufficient for them. Allah has condemned them, and they will suffer a never-ending punishment.
1304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹You hypocrites are˺ like those ˹disbelievers˺ before you. They were far superior to you in might and more abundant in wealth and children. They enjoyed their share in this life. You have enjoyed your share, just as they did. And you have engaged in idle talk, just as they did. Their deeds have become void in this world and the Hereafter. And it is they who are the ˹true˺ losers.
1305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have they not received the stories of those ˹destroyed˺ before them: the people of Noah, ’ad, and Thamûd, the people of Abraham, the residents of Midian, and the overturned cities ˹of Lot˺? Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.
1306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The believers, both men and women, are guardians of one another. They encourage good and forbid evil, establish prayer and pay alms-tax, and obey Allah and His Messenger. It is they who will be shown Allah’s mercy. Surely Allah is Almighty, All-Wise.
1307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah has promised the believers, both men and women, Gardens under which rivers flow, to stay there forever, and splendid homes in the Gardens of Eternity, and—above all—the pleasure of Allah. That is ˹truly˺ the ultimate triumph.
1308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!
1309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They swear by Allah that they never said anything ˹blasphemous˺, while they did in fact utter a blasphemy, lost faith after accepting Islam, and plotted what they could not carry out. It is only through resentment that they pay Allah and His Messenger back for enriching them out of His bounty! If they repent, it will be better for them. But if they turn away, Allah will torment them with a painful punishment in this world and the Hereafter, and they will have no one on earth to protect or help them.
1310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there are some who had made a vow to Allah: "If He gives us from His bounty, we will surely spend in charity and be of the righteous."
1311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But when He gave them out of His bounty, they withheld it and turned away indifferently.
1312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So He caused hypocrisy to plague their hearts until the Day they will meet Him, for breaking their promise to Allah and for their lies.
1313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do they not know that Allah ˹fully˺ knows their ˹evil˺ thoughts and secret talks, and that Allah is the Knower of all unseen?
1314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹There are˺ those who slander ˹some of˺ the believers for donating liberally and mock others for giving only the little they can afford. Allah will throw their mockery back at them, and they will suffer a painful punishment.
1315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹It does not matter˺ whether you ˹O Prophet˺ pray for them to be forgiven or not. Even if you pray for their forgiveness seventy times, Allah will never forgive them. That is because they have lost faith in Allah and His Messenger. And Allah does not guide the rebellious people.
1316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Those ˹hypocrites˺ who remained behind rejoiced for doing so in defiance of the Messenger of Allah and hated ˹the prospect of˺ striving with their wealth and their lives in the cause of Allah. They said ˹to one another˺, "Do not march forth in the heat." Say, ˹O Prophet,˺ "The Fire of Hell is far hotter!" If only they could comprehend!
1317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So let them laugh a little—they will weep much as a reward for what they have committed.
1318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If Allah returns you ˹O Prophet˺ to a group of them and they ask to go forth with you, say, "You will not ever go forth or fight an enemy along with me. You preferred to stay behind the first time, so stay with those ˹helpless˺ who remain behind."
1319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And do not ever offer ˹funeral˺ prayers for any of their dead, nor stand by their grave ˹at burial˺, for they have lost faith in Allah and His Messenger and died rebellious.
1320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this world, and ˹then˺ their souls will depart while they are disbelievers.
1321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whenever a sûrah is revealed stating, "Believe in Allah and struggle along with His Messenger," the rich among them would ask to be exempt, saying, "Leave us with those who remain behind."
1322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They preferred to stay behind with the helpless, and their hearts have been sealed so they do not comprehend.
1323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the Messenger and the believers with him strived with their wealth and their lives. They will have all the best, and it is they who will be successful.
1324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah has prepared for them Gardens under which rivers flow, to stay there forever. That is the ultimate triumph.
1325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Some nomadic Arabs ˹also˺ came with excuses, seeking exemption. And those who were untrue to Allah and His Messenger remained behind ˹with no excuse˺. The unfaithful among them will be afflicted with a painful punishment.
1326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There is no blame on the weak, the sick, or those lacking the means ˹if they stay behind˺, as long as they are true to Allah and His Messenger. There is no blame on the good-doers. And Allah is All-Forgiving, Most Merciful.
1327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Nor ˹is there any blame on˺ those who came to you ˹O Prophet˺ for mounts, then when you said, "I can find no mounts for you," they left with eyes overflowing with tears out of grief that they had nothing to contribute.
1328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blame is only on those who seek exemption from you although they have the means. They preferred to stay behind with the helpless, and Allah has sealed their hearts so they do not realize ˹the consequences˺.
1329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They will make excuses to you ˹believers˺ when you return to them. Say, "Make no excuses, ˹for˺ we will not believe you. Allah has already informed us about your ˹true˺ state ˹of faith˺. Your ˹future˺ deeds will be observed by Allah and His Messenger as well. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do."
1330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When you return, they will swear to you by Allah so that you may leave them alone. So leave them alone—they are truly evil. Hell will be their home as a reward for what they have committed.
1331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will swear to you in order to please you. And even if you are pleased with them, Allah will never be pleased with the rebellious people.
1332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The nomadic Arabs ˹around Medina˺ are far worse in disbelief and hypocrisy, and less likely to know the laws revealed by Allah to His Messenger. And Allah is All-Knowing, All-Wise.
1333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And among the nomads are those who consider what they donate to be a loss and await your misfortune. May ill-fortune befall them! And Allah is All-Hearing, All-Knowing.
1334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   However, among the nomadic Arabs are those who believe in Allah and the Last Day, and consider what they donate as a means of coming closer to Allah and ˹receiving˺ the prayers of the Messenger. It will certainly bring them closer. Allah will admit them into His mercy. Surely Allah is All-Forgiving, Most Merciful.
1335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for the foremost—the first of the Emigrants—and those who follow them in goodness, Allah is pleased with them and they are pleased with Him. And He has prepared for them Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.
1336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Some of the nomads around you ˹believers˺ are hypocrites, as are some of the people of Medina. They have mastered hypocrisy. They are not known to you ˹O Prophet˺; they are known to Us. We will punish them twice ˹in this world˺, then they will be brought back ˹to their Lord˺ for a tremendous punishment.
1337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Some others have confessed their wrongdoing: they have mixed goodness with evil. It is right to hope that Allah will turn to them in mercy. Surely Allah is All-Forgiving, Most Merciful.
1338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Take from their wealth ˹O Prophet˺ charity to purify and bless them, and pray for them—surely your prayer is a source of comfort for them. And Allah is All-Hearing, All-Knowing.
1339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do they not know that Allah alone accepts the repentance of His servants and receives ˹their˺ charity, and that Allah alone is the Accepter of Repentance, Most Merciful?
1340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tell ˹them, O  Prophet˺, "Do as you will. Your deeds will be observed by Allah, His Messenger, and the believers. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do."
1341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And some others are left for Allah’s decision, either to punish them or turn to them in mercy. And Allah is All-Knowing, All-Wise.
1342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       There are also those ˹hypocrites˺ who set up a mosque ˹only˺ to cause harm, promote disbelief, divide the believers, and as a base for those who had previously fought against Allah and His Messenger. They will definitely swear, "We intended nothing but good," but Allah bears witness that they are surely liars.
1343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not ˹O Prophet˺ ever pray in it. Certainly, a mosque founded on righteousness from the first day is more worthy of your prayers. In it are men who love to be purified. And Allah loves those who purify themselves.
1344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Which is better: those who laid the foundation of their building on the fear and pleasure of Allah, or those who did so on the edge of a crumbling cliff that tumbled down with them into the Fire of Hell? And Allah does not guide the wrongdoing people.
1345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The building which they erected will never cease to fuel hypocrisy in their hearts until their hearts are torn apart. And Allah is All-Knowing, All-Wise.
1346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah has indeed purchased from the believers their lives and wealth in exchange for Paradise. They fight in the cause of Allah and kill or are killed. This is a true promise binding on Him in the Torah, the Gospel, and the Quran. And whose promise is truer than Allah’s? So rejoice in the exchange you have made with Him. That is ˹truly˺ the ultimate triumph.
1347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It is the believers˺ who repent, who are devoted to worship, who praise ˹their Lord˺, who fast, who bow down and prostrate themselves, who encourage good and forbid evil, and who observe the limits set by Allah. And give good news to the believers.
1348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is not ˹proper˺ for the Prophet and the believers to seek forgiveness for the polytheists, even if they were close relatives, after it has become clear to the believers that they are bound for the Hellfire.
1349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for Abraham’s prayer for his father’s forgiveness, it was only in fulfilment of a promise he had made to him. But when it became clear to Abraham that his father was an enemy of Allah, he broke ties with him. Abraham was truly tender-hearted, forbearing.
1350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah would never consider a people deviant after He has guided them, until He makes clear to them what they must avoid. Surely Allah has ˹full˺ knowledge of everything.
1351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, to Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He gives life and causes death. And besides Allah you have no guardian or helper.
1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah has certainly turned in mercy to the Prophet as well as the Emigrants and the Helpers who stood by him in the time of hardship, after the hearts of a group of them had almost faltered. He then accepted their repentance. Surely He is Ever Gracious and Most Merciful to them.
1353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹Allah has also turned in mercy to˺ the three who had remained behind, ˹whose guilt distressed them˺ until the earth, despite its vastness, seemed to close in on them, and their souls were torn in anguish. They knew there was no refuge from Allah except in Him. Then He turned to them in mercy so that they might repent. Surely Allah ˹alone˺ is the Accepter of Repentance, Most Merciful.
1354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O  believers! Be mindful of Allah and be with the truthful.
1355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It was not ˹proper˺ for the people of Medina and the nomadic Arabs around them to avoid marching with the Messenger of Allah or to prefer their own lives above his. That is because whenever they suffer from thirst, fatigue, or hunger in the cause of Allah; or tread on a territory, unnerving the disbelievers; or inflict any loss on an enemy—it is written to their credit as a good deed. Surely Allah never discounts the reward of the good-doers.
1356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whenever they make a donation, small or large, or cross a valley ˹in Allah’s cause˺—it is written to their credit, so that Allah may grant them the best reward for what they used to do.
1357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹However,˺ it is not necessary for the believers to march forth all at once. Only a party from each group should march forth, leaving the rest to gain religious knowledge then enlighten their people when they return to them, so that they ˹too˺ may beware ˹of evil˺.
1358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Fight the disbelievers around you and let them find firmness in you. And know that Allah is with those mindful ˹of Him˺.
1359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whenever a sûrah is revealed, some of them ask ˹mockingly˺, "Which of you has this increased in faith?" As for the believers, it has increased them in faith and they rejoice.
1360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as for those with sickness in their hearts, it has increased them only in wickedness upon their wickedness, and they die as disbelievers.
1361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do they not see that they are tried once or twice every year? Yet they neither repent nor do they learn a lesson.
1362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whenever a sûrah is revealed, they look at one another, ˹saying,˺ "Is anyone watching you?" Then they slip away. ˹It is˺ Allah ˹Who˺ has turned their hearts away because they are a people who do not comprehend.
1363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There certainly has come to you a messenger from among yourselves. He is concerned by your suffering, anxious for your well-being, and gracious and merciful to the believers.
1364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if they turn away, then say, ˹O Prophet,˺ "Allah is sufficient for me. There is no god ˹worthy of worship˺ except Him. In Him I put my trust. And He is the Lord of the Mighty Throne."
1365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alif-Lãm-Ra. These are the verses of the Book, rich in wisdom.
1366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is it astonishing to people that We have sent revelation to a man from among themselves, ˹instructing him,˺ "Warn humanity and give good news to the believers that they will have an honourable status with their Lord."? Yet the disbelievers said, "Indeed, this ˹man˺ is clearly a magician!"
1367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne, conducting every affair. None can intercede except by His permission. That is Allah—your Lord, so worship Him ˹alone˺. Will you not then be mindful?
1368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To Him is your return all together. Allah’s promise is ˹always˺ true. Indeed, He originates the creation then resurrects it so that He may justly reward those who believe and do good. But those who disbelieve will have a boiling drink and a painful punishment for their disbelief.
1369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He is the One Who made the sun a radiant source and the moon a reflected light, with precisely ordained phases, so that you may know the number of years and calculation ˹of time˺. Allah did not create all this except for a purpose. He makes the signs clear for people of knowledge.
1370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely in the alternation of the day and the night, and in all that Allah has created in the heavens and the earth, there are truly signs for those mindful ˹of Him˺.
1371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, those who do not expect to meet Us, being pleased and content with this worldly life, and who are heedless of Our signs,
1372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        they will have the Fire as a home because of what they have committed.
1373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely those who believe and do good, their Lord will guide them ˹to Paradise˺ through their faith, rivers will flow under their feet in the Gardens of Bliss,
1374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              in which their prayer will be, "Glory be to You, O  Allah!" and their greeting will be, "Peace!" and their closing prayer will be, "All praise is for Allah—Lord of all worlds!"
1375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If Allah were to hasten evil for people as they wish to hasten good, they would have certainly been doomed. But We leave those who do not expect to meet Us to wander blindly in their defiance.
1376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whenever someone is touched by hardship, they cry out to Us, whether lying on their side, sitting, or standing. But when We relieve their hardship, they return to their old ways as if they had never cried to Us to remove any hardship! This is how the misdeeds of the transgressors have been made appealing to them.
1377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We surely destroyed ˹other˺ peoples before you when they did wrong, and their messengers came to them with clear proofs but they would not believe! This is how We reward the wicked people.
1378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then We made you their successors in the land to see how you would act.
1379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Our clear revelations are recited to them, those who do not expect to meet Us say ˹to the Prophet˺, "Bring us a different Quran or make some changes in it." Say ˹to them˺, "It is not for me to change it on my own. I only follow what is revealed to me. I fear, if I were to disobey my Lord, the punishment of a tremendous Day."
1380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "Had Allah willed, I would not have recited it to you, nor would He have made it known to you. I had lived my whole life among you before this ˹revelation˺. Do you not understand?"
1381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who does more wrong than those who fabricate lies against Allah or deny His revelations? Indeed, the wicked will never succeed.
1382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They worship besides Allah others who can neither harm nor benefit them, and say, "These are our intercessors with Allah." Ask ˹them, O  Prophet˺, "Are you informing Allah of something He does not know in the heavens or the earth? Glorified and Exalted is He above what they associate ˹with Him˺!"
1383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Humanity was once nothing but a single community ˹of believers˺, but then they differed. their differences would have been settled ˹at once˺.
1384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They ask, "Why has no ˹other˺ sign been sent down to him from his Lord?" Say, ˹O Prophet,˺ "˹The knowledge of˺ the unseen is with Allah alone. So wait! I too am waiting with you."
1385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When We give people a taste of mercy after being afflicted with a hardship, they swiftly devise plots against Our revelations! Say, ˹O Prophet,˺ "Allah is swifter in devising ˹punishment˺. Surely Our messenger-angels record whatever you devise."
1386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who enables you to travel through land and sea. And it so happens that you are on ships, sailing with a favourable wind, to the passengers’ delight. Suddenly, the ships are overcome by a gale wind and those on board are overwhelmed by waves from every side, and they assume they are doomed. They cry out to Allah ˹alone˺ in sincere devotion, "If You save us from this, we will certainly be grateful."
1387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But as soon as He rescues them, they transgress in the land unjustly. O  humanity! Your transgression is only against your own souls. ˹There is only˺ brief enjoyment in this worldly life, then to Us is your return, and then We will inform you of what you used to do.
1388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The life of this world is just like rain We send down from the sky, producing a mixture of plants which humans and animals consume. Then just as the earth looks its best, perfectly beautified, and its people think they have full control over it, there comes to it Our command by night or by day, so We mow it down as if it never flourished yesterday! This is how We make the signs clear for people who reflect.
1389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Allah invites ˹all˺ to the Home of Peace and guides whoever He wills to the Straight Path.
1390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who do good will have the finest reward Neither gloom nor disgrace will cover their faces. It is they who will be the residents of Paradise. They will be there forever.
1391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who commit evil, the reward of an evil deed is its equivalent. Humiliation will cover them—with no one to protect them from Allah—as if their faces were covered with patches of the night’s deep darkness. It is they who will be the residents of the Fire. They will be there forever.
1392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Consider˺ the Day We will gather them all together then say to those who associated others ˹with Allah in worship˺, "Stay in your places—you and your associate-gods." We will separate them from each other, and their associate-gods will say, "It was not us that you worshipped!
1393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Allah is sufficient as a Witness between each of us that we were totally unaware of your worship."
1394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then and there every soul will face ˹the consequences of˺ what it had done. They all will be returned to Allah—their True Master. And whatever ˹gods˺ they fabricated will fail them.
1395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ask ˹them, O  Prophet˺, "Who provides for you from heaven and earth? Who owns ˹your˺ hearing and sight? Who brings forth the living from the dead and the dead from the living? And who conducts every affair?" They will ˹surely˺ say, "Allah." Say, "Will you not then fear ˹Him˺?
1396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That is Allah—your True Lord. So what is beyond the truth except falsehood? How can you then be turned away?"
1397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And so your Lord’s decree has been proven true against the rebellious—that they will never believe.
1398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ask ˹them, O  Prophet˺, "Can any of your associate-gods originate creation and then resurrect it?" Say, "˹Only˺ Allah originates creation and then resurrects it. How can you then be deluded ˹from the truth˺?"
1399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ask ˹them, O  Prophet˺, "Can any of your associate-gods guide to the truth?" Say, "˹Only˺ Allah guides to the truth." Who then is more worthy to be followed: the One Who guides to the truth or those who cannot find the way unless guided? What is the matter with you? How do you judge?
1400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Most of them follow nothing but ˹inherited˺ assumptions. ˹And˺ surely assumptions can in no way replace the truth. Allah is indeed All-Knowing of what they do.
1401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is not ˹possible˺ for this Quran to have been produced by anyone other than Allah. In fact, it is a confirmation of what came before, and an explanation of the Scripture. It is, without a doubt, from the Lord of all worlds.
1402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or do they claim, "He made it up!"? Tell them ˹O Prophet˺, "Produce one sûrah like it then, and seek help from whoever you can—other than Allah—if what you say is true!"
1403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In fact, they ˹hastily˺ rejected the Book without comprehending it and before the fulfilment of its warnings. Similarly, those before them were in denial. See then what was the end of the wrongdoers!
1404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Some of them will ˹eventually˺ believe in it; others will not. And your Lord knows best the corruptors.
1405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If they deny you, then say, "My deeds are mine and your deeds are yours. You are free of what I do and I am free of what you do!"
1406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Some of them listen to what you say, but can you make the deaf hear even though they do not understand?
1407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And some of them look at you, but can you guide the blind even though they cannot see?
1408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, Allah does not wrong people in the least, but it is people who wrong themselves.
1409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On the Day He will gather them, it will be as if they had not stayed ˹in the world˺ except for an hour of a day, ˹as though they were only˺ getting to know one another. Lost indeed will be those who denied the meeting with Allah, and were not ˹rightly˺ guided!
1410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, to Us is their return and Allah is a Witness over what they do.
1411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And for every community there is a messenger. After their messenger has come, judgment is passed on them in all fairness, and they are not wronged.
1412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They ask ˹the believers˺, "When will this threat come to pass if what you say is true?"
1413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "I have no power to benefit or protect myself, except by the Will of Allah." For each community there is an appointed term. When their time arrives, they cannot delay it for a moment, nor could they advance it.
1414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tell them ˹O Prophet˺, "Imagine if His torment were to overcome you by night or day—do the wicked realize what they are ˹really˺ asking Him to hasten?
1415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Will you believe in it only after it has overtaken you? Now? But you always wanted to hasten it!"
1416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then the wrongdoers will be told, "Taste the torment of eternity! Are you not rewarded except for what you used to commit?"
1417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They ask you ˹O Prophet˺, "Is this true?" Say, "Yes, by my Lord! Most certainly it is true! And you will have no escape."
1418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If every wrongdoer were to possess everything in the world, they would surely ransom themselves with it. They will hide ˹their˺ remorse when they see the torment. And they will be judged in all fairness, and none will be wronged.
1419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely to Allah belongs whatever is in the heavens and the earth. Surely Allah’s promise is ˹always˺ true, but most of them do not know.
1420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He ˹is the One Who˺ gives life and causes death, and to Him you will ˹all˺ be returned.
1421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O humanity! Indeed, there has come to you a warning from your Lord, a cure for what is in the hearts, a guide, and a mercy for the believers.
1422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "In Allah’s grace and mercy let them rejoice. That is far better than whatever ˹wealth˺ they amass."
1423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ask ˹the pagans, O  Prophet˺, "Have you seen that which Allah has sent down for you as a provision, of which you have made some lawful and some unlawful?" Say, "Has Allah given you authorization, or are you fabricating lies against Allah?"
1424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What do those who fabricate lies against Allah expect on Judgment Day? Surely Allah is ever Bountiful to humanity, but most of them are ungrateful.
1425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There is no activity you may be engaged in ˹O Prophet˺ or portion of the Quran you may be reciting, nor any deed you ˹all˺ may be doing except that We are a Witness over you while doing it. Not ˹even˺ an atom’s weight is hidden from your Lord on earth or in heaven; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record.
1426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There will certainly be no fear for the close servants of Allah, nor will they grieve.
1427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹They are˺ those who are faithful and are mindful ˹of Him˺.
1428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For them is good news in this worldly life and the Hereafter. There is no change in the promise of Allah. That is ˹truly˺ the ultimate triumph.
1429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do not let their words grieve you ˹O Prophet˺. Surely all honour and power belongs to Allah. He is the All-Hearing, All-Knowing.
1430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Certainly to Allah ˹alone˺ belong all those in the heavens and all those on the earth. And what do those who associate others with Allah really follow? They follow nothing but assumptions and do nothing but lie.
1431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He is the One Who has made the night for you to rest in and the day bright. Surely in this are signs for people who listen.
1432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They Glory be to Him! He is the Self-Sufficient. To Him belongs whatever is in the heavens and whatever is on the earth. You have no proof of this! Do you say about Allah what you do not know?
1433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Indeed, those who fabricate lies against Allah will never succeed."
1434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹It is only˺ a brief enjoyment in this world, then to Us is their return, then We will make them taste the severe punishment for their disbelief.
1435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Relate to them ˹O Prophet˺ the story of Noah when he said to his people, "O my People! If my presence and my reminders to you of Allah’s signs are unbearable to you, then ˹know that˺ I have put my trust in Allah. So devise a plot along with your associate-gods—and you do not have to be secretive about your plot—then carry it out against me without delay!
1436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if you turn away, ˹remember˺ I have never demanded a reward from you ˹for delivering the message˺. My reward is only from Allah. And I have been commanded to be one of those who submit ˹to Allah˺."
1437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But they still rejected him, so We saved him and those with him in the Ark and made them successors, and drowned those who rejected Our signs. See then what was the end of those who had been warned!
1438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then after him We sent ˹other˺ messengers to their ˹own˺ people and they came to them with clear proofs. But they would not believe in what they had rejected before. This is how We seal the hearts of the transgressors.
1439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then after these ˹messengers˺ We sent Moses and Aaron to Pharaoh and his chiefs with Our signs. But they behaved arrogantly and were a wicked people.
1440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When the truth came to them from Us, they said, "This is certainly pure magic!"
1441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Moses responded, "Is this what you say about the truth when it has come to you? Is this magic? Magicians will never succeed."
1442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They argued, "Have you come to turn us away from the faith of our forefathers so that the two of you may become supreme in the land? We will never believe in you!"
1443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharaoh demanded, "Bring me every skilled magician."
1444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When the magicians came, Moses said to them, "Cast whatever you wish to cast!"
1445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When they did, Moses said, "What you have produced is mere magic, Allah will surely make it useless, for Allah certainly does not set right the work of the corruptors.
1446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Allah establishes the truth by His Words—even to the dismay of the wicked."
1447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But no one believed in Moses except a few youths of his people, while fearing that Pharaoh and their own chiefs might persecute them. And certainly Pharaoh was a tyrant in the land, and he was truly a transgressor.
1448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Moses said, "O my people! If you do believe in Allah and submit ˹to His Will˺, then put your trust in Him."
1449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They replied, "In Allah we trust. Our Lord! Do not subject us to the persecution of the oppressive people,
1450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and deliver us by Your mercy from the disbelieving people."
1451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We revealed to Moses and his brother, "Appoint houses for your people in Egypt. Turn these houses into places of worship, establish prayer, and give good news to the believers!"
1452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moses prayed, "Our Lord! You have granted Pharaoh and his chiefs luxuries and riches in this worldly life, ˹which they abused˺ to lead people astray from Your Way! Our Lord, destroy their riches and harden their hearts so that they will not believe until they see the painful punishment."
1453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah responded ˹to Moses and Aaron˺, "Your prayer is answered! So be steadfast and do not follow the way of those who do not know."
1454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We brought the Children of Israel across the sea. Then Pharaoh and his soldiers pursued them unjustly and oppressively. But as Pharaoh was drowning, he cried out, "I believe that there is no god except that in whom the Children of Israel believe, and I am ˹now˺ one of those who submit."
1455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹He was told,˺ "Now ˹you believe˺? But you always disobeyed and were one of the corruptors.
1456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Today We will preserve your corpse so that you may become an example for those who come after you. And surely most people are heedless of Our examples!"
1457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We settled the Children of Israel in a blessed land, Surely your Lord will judge between them on the Day of Judgment regarding their differences.
1458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you ˹O Prophet˺ are in doubt about ˹these stories˺ that We have revealed to you, then ask those who read the Scripture before you. The truth has certainly come to you from your Lord, so do not be one of those who doubt,
1459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and do not be one of those who deny Allah’s signs or you will be one of the losers.
1460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, those against whom Allah’s decree ˹of torment˺ is justified will not believe—
1461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                even if every sign were to come to them—until they see the painful punishment.
1462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If only there had been a society which believed ˹before seeing the torment˺ and, therefore, benefited from its belief, like the people of Jonah.
1463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had your Lord so willed ˹O Prophet˺, all ˹people˺ on earth would have certainly believed, every single one of them! Would you then force people to become believers?
1464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is not for any soul to believe except by Allah’s leave, and He will bring His wrath upon those who are unmindful.
1465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Consider all that is in the heavens and the earth!" Yet neither signs nor warners are of any benefit to those who refuse to believe.
1466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Are they waiting for ˹anything˺ except the same torments that befell those before them? Say, "Keep waiting then! I too am waiting with you."
1467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then We saved Our messengers and those who believed. For it is Our duty to save the believers.
1468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "O humanity! If you are in doubt of my faith, then ˹know that˺ I do not worship those ˹idols˺ you worship instead of Allah. But I worship Allah, Who has the power to cause your death. And I have been commanded, ‘Be one of the believers,’
1469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and, ‘Be steadfast in faith in all uprightness, and do not be one of the polytheists,’
1470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and ‘Do not invoke, instead of Allah, what can neither benefit nor harm you—for if you do, then you will certainly be one of the wrongdoers,’
1471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and ‘If Allah touches you with harm, none can undo it except Him. And if He intends good for you, none can withhold His bounty. He grants it to whoever He wills of His servants. And He is the All-Forgiving, Most Merciful.’"
1472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "O humanity! The truth has surely come to you from your Lord. So whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. And I am not a keeper over you."
1473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And follow what is revealed to you, and be patient until Allah passes His judgment. For He is the Best of Judges.
1474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alif-Lãm-Ra. ˹This is˺ a Book whose verses are well perfected and then fully explained. ˹It is˺ from the One ˹Who is˺ All-Wise, All-Aware.
1475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Tell them, O  Prophet,˺ "Worship none but Allah. Surely I am a warner and deliverer of good news to you from Him.
1476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And seek your Lord’s forgiveness and turn to Him in repentance. He will grant you a good provision for an appointed term and graciously reward the doers of good. But if you turn away, then I truly fear for you the torment of a formidable Day.
1477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               To Allah is your return. And He is Most Capable of everything."
1478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, they enfold ˹what is in˺ their hearts, ˹trying˺ to hide it from Him! But even when they cover themselves with their clothes, He knows what they conceal and what they reveal. Surely He knows best what is ˹hidden˺ in the heart.
1479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There is no moving creature on earth whose provision is not guaranteed by Allah. And He knows where it lives and where it is laid to rest. All is ˹written˺ in a perfect Record.
1480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the One Who created the heavens and the earth in six Days—and His Throne was upon the waters—in order to test which of you is best in deeds. And if you ˹O Prophet˺ say, "Surely you will ˹all˺ be raised up after death," the disbelievers will certainly say, "That is nothing but pure magic!"
1481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if We delay their punishment until an appointed time, they will definitely say, "What is holding it back?" Indeed, on the Day it overtakes them, it will not be averted from them, and they will be overwhelmed by what they used to ridicule.
1482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If We give people a taste of Our mercy then take it away from them, they become utterly desperate, ungrateful.
1483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if We give them a taste of prosperity after being touched with adversity, they say, "My ills are gone," and become totally prideful and boastful,
1484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      except those who patiently endure and do good. It is they who will have forgiveness and a mighty reward.
1485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Perhaps you ˹O Prophet˺ may wish to give up some of what is revealed to you and may be distressed by it because they say, "If only a treasure had been sent down to him, or an angel had come with him!" You are only a warner, and Allah is the Trustee of All Affairs.
1486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or do they say, "He has fabricated this ˹Quran˺!"? Say, ˹O Prophet,˺ "Produce ten fabricated sûrahs like it and seek help from whoever you can—other than Allah—if what you say is true!"
1487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But if your helpers fail you, then know that it has been revealed with the knowledge of Allah, and that there is no god ˹worthy of worship˺ except Him! Will you ˹not˺ then submit ˹to Allah˺?
1488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoever desires ˹only˺ this worldly life and its luxuries, We will pay them in full for their deeds in this life—nothing will be left out.
1489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is they who will have nothing in the Hereafter except the Fire. Their efforts in this life will be fruitless and their deeds will be useless.
1490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Can these people be compared to˺ those ˹believers˺ who stand on clear proof from their Lord, backed by ˹the Quran as˺ a witness from Him, and preceded by the Book of Moses ˹which was revealed˺ as a guide and mercy? It is those ˹believers˺ who have faith in it. But whoever from the ˹disbelieving˺ groups rejects it, the Fire will be their destiny. So do not be in doubt of it. It is certainly the truth from your Lord, but most people do not believe.
1491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who does more wrong than those who fabricate lies against Allah? They will be brought before their Lord, and the witnesses will say, "These are the ones who lied against their Lord." Surely Allah’s condemnation is upon the wrongdoers,
1492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 who hinder ˹others˺ from Allah’s Path, striving to make it ˹appear˺ crooked, and disbelieve in the Hereafter.
1493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They will never frustrate Allah on earth, and they will have no protector besides Allah. Their punishment will be multiplied, for they failed to hear or see ˹the truth˺.
1494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is they who have ruined themselves, and whatever ˹gods˺ they fabricated will fail them.
1495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Without a doubt, they will be the worst losers in the Hereafter.
1496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely those who believe, do good, and humble themselves before their Lord will be the residents of Paradise. They will be there forever.
1497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The example of these two parties is that of the blind and the deaf, compared to the seeing and the hearing. Can the two be equal? Will you not then be mindful?
1498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely We sent Noah to his people. ˹He said,˺ "Indeed, I am sent to you with a clear warning
1499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   that you should worship none but Allah. I truly fear for you the torment of a painful Day."
1500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The disbelieving chiefs of his people said, "We see you only as a human being like ourselves, and we see that no one follows you except the lowliest among us, who do so ˹hastily˺ without thinking. We do not see anything that makes ˹all of˺ you any better than us. In fact, we think you are liars."
1501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He said, "O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Himself, which you fail to see. Should we ˹then˺ force it on you against your will?
1502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O  my people! I do not ask you for a payment for this ˹message˺. My reward is only from Allah. And I will never dismiss the believers, for they will surely meet their Lord. But I can see that you are a people acting ignorantly.
1503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O  my people! Who would protect me from Allah if I were to dismiss them? Will you not then be mindful?
1504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel, nor do I say that Allah will never grant goodness to those you look down upon. Allah knows best what is ˹hidden˺ within them. ˹If I did,˺ then I would truly be one of the wrongdoers."
1505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They protested, "O Noah! You have argued with us far too much, so bring upon us what you threaten us with, if what you say is true."
1506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He responded, "It is Allah Who can bring it upon you if He wills, and then you will have no escape!
1507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My advice will not benefit you—no matter how hard I try—if Allah wills ˹for˺ you to stray. He is your Lord, and to Him you will ˹all˺ be returned."
1508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do they say, "He has fabricated this ˹Quran˺!"? Say, ˹O Prophet,˺ "If I have done so, then I bear the burden of that sin! But I am free from your sinful accusation."
1509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it was revealed to Noah, "None of your people will believe except those who already have. So do not be distressed by what they have been doing.
1510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And build the Ark under Our ˹watchful˺ Eyes and directions, and do not plead with Me for those who have done wrong, for they will surely be drowned."
1511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So he began to build the Ark, and whenever some of the chiefs of his people passed by, they mocked him. He said, "If you laugh at us, we will ˹soon˺ laugh at you similarly.
1512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You will soon come to know who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺."
1513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Our command came and the oven burst ˹with water˺, We said ˹to Noah˺, "Take into the Ark a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed—and those who believe." But none believed with him except for a few.
1514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said, "Board it! In the Name of Allah it will sail and cast anchor. Surely my Lord is All-Forgiving, Most Merciful."
1515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹so˺ the Ark sailed with them through waves like mountains. Noah called out to his son, who stood apart, "O my dear son! Come aboard with us and do not be with the disbelievers."
1516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He replied, "I will take refuge on a mountain, which will protect me from the water." Noah cried, "Today no one is protected from Allah’s decree except those to whom He shows mercy!" And the waves came between them, and his son was among the drowned.
1517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it was said, "O earth! Swallow up your water. And O  sky! Withhold ˹your rain˺." The floodwater receded and the decree was carried out. The Ark rested on Mount Judi, and it was said, "Away with the wrongdoing people!"
1518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Noah called out to his Lord, saying, "My Lord! Certainly my son is ˹also˺ of my family, Your promise is surely true, and You are the most just of all judges!"
1519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah replied, "O Noah! He is certainly not of your family—he was entirely of unrighteous conduct. So do not ask Me about what you have no knowledge of! I warn you so you do not fall into ignorance."
1520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Noah pleaded, "My Lord, I seek refuge in You from asking You about what I have no knowledge of, and unless You forgive me and have mercy on me, I will be one of the losers."
1521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It was said, "O Noah! Disembark with Our peace and blessings on you and some of the descendants of those with you. As for the others, We will allow them ˹a brief˺ enjoyment, then they will be touched with a painful punishment from Us."
1522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is one of the stories of the unseen, which we reveal to you ˹O Prophet˺. Neither you nor your people knew it before this. So be patient! Surely the ultimate outcome belongs ˹only˺ to the righteous.
1523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And to the people of ’ad We sent their brother Hûd. He said, "O my people! Worship Allah. You have no god other than Him. You do nothing but fabricate lies ˹against Allah˺.
1524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O  my people! I do not ask you for any reward for this ˹message˺. My reward is only from the One Who created me. Will you not then understand?
1525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And O  my people! Seek your Lord’s forgiveness and turn to Him in repentance. He will shower you with rain in abundance, and add strength to your strength. So do not turn away, persisting in wickedness."
1526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They argued, "O Hûd! You have not given us any clear proof, and we will never abandon our gods upon your word, nor will we believe in you.
1527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All we can say is that some of our gods have possessed you with evil." He said, "I call Allah to witness, and you too bear witness, that I ˹totally˺ reject whatever you associate
1528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       with Him ˹in worship˺. So let all of you plot against me without delay!
1529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I have put my trust in Allah—my Lord and your Lord. There is no living creature that is not completely under His control.
1530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if you turn away, I have already delivered to you what I have been sent with. My Lord will replace you with others. You are not harming Him in the least. Indeed, my Lord is a ˹vigilant˺ Keeper over all things."
1531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Our command came, We rescued Hûd and those who believed with him by a mercy from Us, saving them from a harsh torment.
1532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That was ’ad. They denied the signs of their Lord, disobeyed His messengers, and followed the command of every stubborn tyrant.
1533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They were followed by a curse in this world, as they will be on the Day of Judgment. Surely ’ad denied their Lord. So away with ’ad, the people of Hûd.
1534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And to the people of Thamûd We sent their brother salih. He said, "O my people! Worship Allah. You have no god other than Him. He ˹is the One Who˺ produced you from the earth and settled you on it. So seek His forgiveness and turn to Him in repentance. Surely my Lord is Ever Near, All-Responsive ˹to prayers˺."
1535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They argued, "O salih! We truly had high hopes in you before this. How dare you forbid us to worship what our forefathers had worshipped? We are certainly in alarming doubt about what you are inviting us to."
1536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He responded, "O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Him. Who could help me against Allah if I were to disobey Him? You would only contribute to my doom.
1537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And O  my people! This she-camel of Allah is a sign for you. So leave her to graze ˹freely˺ on Allah’s earth and do her no harm, or a swift punishment will overtake you!"
1538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But they killed her, so he warned ˹them˺, "You have ˹only˺ three ˹more˺ days to enjoy life in your homes—this is an unfailing promise!"
1539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Our command came, We saved salih and those who believed with him by a mercy from Us and spared them the disgrace of that Day. Surely your Lord ˹alone˺ is the All-Powerful, Almighty.
1540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,
1541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       as if they had never lived there. Surely Thamûd denied their Lord, so away with Thamûd!
1542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And surely Our messenger-angels came to Abraham with good news ˹of a son˺. They greeted ˹him with˺, "Peace!" And he replied, "Peace ˹be upon you˺!" Then it was not long before he brought ˹them˺ a ˹fat,˺ roasted calf.
1543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when he saw that their hands did not reach for the food, he became suspicious and fearful of them. They reassured ˹him˺, "Do not be afraid! We are ˹angels˺ sent ˹only˺ against the people of Lot."
1544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his wife was standing by, so she laughed, then We gave her good news of ˹the birth of˺ Isaac, and, after him, Jacob.
1545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        She wondered, "Oh, my! How can I have a child in this old age, and my husband here is an old man? This is truly an astonishing thing!"
1546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They responded, "Are you astonished by Allah’s decree? May Allah’s mercy and blessings be upon you, O  people of this house. Indeed, He is Praiseworthy, All-Glorious."
1547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then after the fear had left Abraham, and the good news had reached him, he began to plead with Us for the people of Lot.
1548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Truly, Abraham was forbearing, tender-hearted, and ever turning ˹to his Lord˺.
1549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹The angels said,˺ "O Abraham! Plead no more! Your Lord’s decree has already come, and they will certainly be afflicted with a punishment that cannot be averted!"
1550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When Our messenger-angels came to Lot, he was distressed and worried by their arrival. He said, "This is a terrible day."
1551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹the men of˺ his people—who were used to shameful deeds—came to him rushing. He pleaded, "O my people! Here are my daughters ˹for marriage˺—they are pure for you. So fear Allah, and do not humiliate me by disrespecting my guests. Is there not ˹even˺ a single right-minded man among you?"
1552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They argued, "You certainly know that we have no need for your daughters. You already know what we desire!"
1553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He responded, "If only I had the strength ˹to resist you˺ or could rely on a strong supporter."
1554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The angels said, "O Lot! We are the messengers of your Lord. They will never reach you. So travel with your family in the dark of night, and do not let any of you look back, except your wife. She will certainly suffer the fate of the others. Their appointed time is the morning. Is the morning not near?"
1555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When Our command came, We turned the cities upside down and rained down on them clustered stones of baked clay,
1556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    marked by your Lord ˹O Prophet˺. And these stones are not far from the ˹pagan˺ wrongdoers!
1557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And to the people of Midian We sent their brother Shu’aib. He said, "O my people! Worship Allah. You have no god other than Him. And do not give short measure and weight. I do see you in prosperity now, but I truly fear for you the torment of an overwhelming Day.
1558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O  my people! Give full measure and weigh with justice. Do not defraud people of their property, nor go about spreading corruption in the land.
1559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What is left ˹as a lawful gain˺ by Allah is far better for you if you are ˹truly˺ believers. And I am not a keeper over you."
1560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They asked ˹sarcastically˺, "O Shu’aib! Does your prayer command you that we should abandon what our forefathers worshipped or give up managing our wealth as we please? Indeed, you are such a tolerant, sensible man!"
1561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He said, "O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a good provision from Him. I do not want to do what I am forbidding you from. I only intend reform to the best of my ability. My success comes only through Allah. In Him I trust and to Him I turn.
1562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O  my people! Do not let your opposition to me lead you to a fate similar to that of the people of Noah, or Hûd, or salih. And the people of Lot are not far from you.
1563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So seek your Lord’s forgiveness and turn to Him in repentance. Surely my Lord is Most Merciful, All-Loving."
1564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They threatened, "O Shu’aib! We do not comprehend much of what you say, and surely we see you powerless among us. Were it not for your clan, we would have certainly stoned you, for you are nothing to us."
1565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He said, "O my people! Do you have more regard for my clan than for Allah, turning your back on Him entirely? Surely my Lord is Fully Aware of what you do.
1566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O  my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know who will be visited by a humiliating torment and is a liar! And watch! I too am watching with you!"
1567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When Our command came, We saved Shu’aib and those who believed with him by a mercy from Us. And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,
1568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  as if they had never lived there. So away with Midian as it was with Thamûd!
1569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We sent Moses with Our signs and compelling proof
1570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               to Pharaoh and his chiefs, but they followed the command of Pharaoh, and Pharaoh’s command was not well guided.
1571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He will be before his people on the Day of Judgment and will lead them into the Fire. What an evil place to be led into!
1572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They were followed by a curse in this ˹life˺ and ˹will receive another˺ on the Day of Judgment. What an evil gift to receive!
1573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These are accounts, We relate to you ˹O Prophet˺, of the ˹destroyed˺ cities. Some are still standing ˹barren˺, while others have been mowed down.
1574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We did not wrong them, rather they wronged themselves. The gods they invoked beside Allah were of no help at all when the command of your Lord came, and only contributed to their ruin.
1575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Such is the ˹crushing˺ grip of your Lord when He seizes the societies entrenched in wrongdoing. Indeed, His grip is ˹terribly˺ painful and severe.
1576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely in this is a sign for those who fear the torment of the Hereafter. That is a Day for which humanity will be gathered and a Day ˹that will be˺ witnessed ˹by all˺.
1577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We only delay it for a fixed term.
1578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When that Day arrives, no one will dare speak except with His permission. Some of them will be miserable, others joyful.
1579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those bound for misery, they will be in the Fire, where they will be sighing and gasping,
1580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  staying there forever, as long as the heavens and the earth will endure, except what your Lord wills. Surely your Lord does what He intends.
1581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And as for those destined to joy, they will be in Paradise, staying there forever, as long as the heavens and the earth will endure, except what your Lord wills—a ˹generous˺ giving, without end.
1582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So do not be in doubt ˹O Prophet˺ about what those ˹pagans˺ worship. They worship nothing except what their forefathers worshipped before ˹them˺. And We will certainly give them their share ˹of punishment˺ in full, without any reduction.
1583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.
1584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And surely your Lord will fully pay all for their deeds. He is certainly All-Aware of what they do.
1585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So be steadfast as you are commanded ˹O Prophet˺, along with those who turn ˹in submission to Allah˺ with you. And do not transgress. Surely He is All-Seeing of what you ˹believers˺ do.
1586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And do not be inclined to the wrongdoers or you will be touched by the Fire. For then you would have no protectors other than Allah, nor would you be helped.
1587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Establish prayer ˹O Prophet˺ at both ends of the day and in the early part of the night. Surely good deeds wipe out evil deeds. That is a reminder for the mindful.
1588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And be patient! Certainly Allah does not discount the reward of the good-doers.
1589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If only there had been among the ˹destroyed˺ peoples before you, ˹O believers,˺ virtuous individuals who forbade corruption in the land—other than the few We had saved ˹from the torment˺. But the wrongdoers ˹only˺ pursued their ˹worldly˺ pleasures, becoming wicked.
1590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord ˹O Prophet˺ would never destroy a society unjustly while its people were acting rightly.
1591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Had your Lord so willed, He would have certainly made humanity one single community ˹of believers˺, but they will always ˹choose to˺ differ—
1592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              except those shown mercy by your Lord—and so He created them ˹to choose freely˺. And so the Word of your Lord will be fulfilled: "I will surely fill up Hell with jinn and humans all together."
1593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We relate to you ˹O Prophet˺ the stories of the messengers to reassure your heart. And there has come to you in this ˹sûrah˺ the truth, a warning ˹to the disbelievers˺, and a reminder to the believers.
1594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say to those who disbelieve, "Persist in your ways; we will certainly persist in ours.
1595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And wait! Surely we ˹too˺ are waiting."
1596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To Allah ˹alone˺ belongs the knowledge of what is hidden in the heavens and the earth. And to Him all matters are returned. So worship Him and put your trust in Him. And your Lord is never unaware of what you do.
1597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Alif-Lãm-Ra. These are the verses of the clear Book.
1598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We have sent it down as an Arabic Quran
1599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We relate to you ˹O Prophet˺ the best of stories through Our revelation of this Quran, though before this you were totally unaware ˹of them˺.
1600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ when Joseph said to his father, "O my dear father! Indeed I dreamt of eleven stars, and the sun, and the moon—I saw them prostrating to me!"
1601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He replied, "O my dear son! Do not relate your vision to your brothers, or they will devise a plot against you. Surely Satan is a sworn enemy to humankind.
1602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And so will your Lord choose you ˹O Joseph˺, and teach you the interpretation of dreams, and perfect His favour upon you and the descendants of Jacob—˹just˺ as He once perfected it upon your forefathers, Abraham and Isaac. Surely your Lord is All-Knowing, All-Wise."
1603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, in the story of Joseph and his brothers there are lessons for all who ask.
1604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Remember˺ when they said ˹to one another˺, "Surely Joseph and his brother ˹Benjamin˺ are more beloved to our father than we, even though we are a group of so many. Indeed, our father is clearly mistaken.
1605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Kill Joseph or cast him out to some ˹distant˺ land so that our father’s attention will be only ours, then after that you may ˹repent and˺ become righteous people!"
1606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One of them said, "Do not kill Joseph. But if you must do something, throw him into the bottom of a well so perhaps he may be picked up by some travellers."
1607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They said, "O our father! Why do you not trust us with Joseph, although we truly wish him well?
1608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Send him out with us tomorrow so that he may enjoy himself and play. And we will really watch over him."
1609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He responded, "It would truly sadden me if you took him away with you, and I fear that a wolf may devour him while you are negligent of him."
1610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They said, "If a wolf were to devour him, despite our strong group, then we would certainly be losers!"
1611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And so, when they took him away and decided to throw him into the bottom of the well, We inspired him: "˹One day˺ you will remind them of this deed of theirs while they are unaware ˹of who you are˺."
1612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then they returned to their father in the evening, weeping.
1613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They cried, "Our father! We went racing and left Joseph with our belongings, and a wolf devoured him! But you will not believe us, no matter how truthful we are."
1614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they brought his shirt, stained with false blood. It is Allah’s help that I seek to bear your claims."
1615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there came some travellers, and they sent their water-boy who let down his bucket into the well. He cried out, "Oh, what a great find! Here is a boy!" And they took him secretly ˹to be sold˺ as merchandise, but Allah is All-Knowing of what they did.
1616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They ˹later˺ sold him for a cheap price, just a few silver coins—only wanting to get rid of him.
1617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The man from Egypt who bought him said to his wife, "Take good care of him, perhaps he may be useful to us or we may adopt him as a son." This is how We established Joseph in the land, so that We might teach him the interpretation of dreams. Allah’s Will always prevails, but most people do not know.
1618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when he reached maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.
1619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the lady, in whose house he lived, tried to seduce him. She locked the doors ˹firmly˺ and said, "Come to me!" He replied, "Allah is my refuge! It is ˹not right to betray˺ my master, who has taken good care of me. Indeed, the wrongdoers never succeed."
1620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           She advanced towards him, and he would have done likewise, had he not seen a sign from his Lord. This is how We kept evil and indecency away from him, for he was truly one of Our chosen servants.
1621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They raced for the door and she tore his shirt from the back, only to find her husband at the door. She cried, "What is the penalty for someone who tried to violate your wife, except imprisonment or a painful punishment?"
1622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Joseph responded, "It was she who tried to seduce me." And a witness from her own family testified: "If his shirt is torn from the front, then she has told the truth and he is a liar.
1623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if it is torn from the back, then she has lied and he is truthful."
1624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So when her husband saw that Joseph’s shirt was torn from the back, he said ˹to her˺, "This must be ˹an example˺ of the cunning of you ˹women˺! Indeed, your cunning is so shrewd!
1625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O  Joseph! Forget about this. And you ˹O wife˺! Seek forgiveness for your sin. It certainly has been your fault."
1626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Some women of the city gossiped, "The Chief Minister’s wife is trying to seduce her slave-boy. Love for him has plagued her heart. Indeed, we see that she is clearly mistaken."
1627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When she heard about their gossip, and exclaimed, "Good God! This cannot be human; this must be a noble angel!"
1628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              She said, "This is the one for whose love you criticized me! I did try to seduce him but he ˹firmly˺ refused. And if he does not do what I order him to, he will certainly be imprisoned and ˹fully˺ disgraced."
1629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joseph prayed, "My Lord! I would rather be in jail than do what they invite me to. And if You do not turn their cunning away from me, I might yield to them and fall into ignorance."
1630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So his Lord responded to him, turning their cunning away from him. Surely He is the All-Hearing, All-Knowing.
1631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And so it occurred to those in charge, despite seeing all the proofs ˹of his innocence˺, that he should be imprisoned for a while.
1632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And two other servants went to jail with Joseph. One of them said, "I dreamt I was pressing wine." The other said, "I dreamt I was carrying ˹some˺ bread on my head, from which birds were eating." ˹Then both said,˺ "Tell us their interpretation, for we surely see you as one of the good-doers."
1633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Joseph replied, "I can even tell you what kind of meal you will be served before you receive it. This ˹knowledge˺ is from what my Lord has taught me. I have shunned the faith of a people who disbelieve in Allah and deny the Hereafter.
1634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I follow the faith of my fathers: Abraham, Isaac, and Jacob. It is not ˹right˺ for us to associate anything with Allah ˹in worship˺. This is part of Allah’s grace upon us and humanity, but most people are not grateful.
1635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O  my fellow-prisoners! Which is far better: many different lords or Allah—the One, the Supreme?
1636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whatever ˹idols˺ you worship instead of Him are mere names which you and your forefathers have made up—a practice Allah has never authorized. It is only Allah Who decides. He has commanded that you worship none but Him. That is the upright faith, but most people do not know.
1637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "O my fellow-prisoners! ˹The first˺ one of you will serve wine to his master, and the other will be crucified and the birds will eat from his head. The matter about which you inquired has been decided."
1638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then he said to the one he knew would survive, "Mention me in the presence of your master." But Satan made him forget to mention Joseph to his master, so he remained in prison for several years.
1639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹one day˺ the King said, "I dreamt of seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry. O  chiefs! Tell me the meaning of my dream if you can interpret dreams."
1640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They replied, "These are confused visions and we do not know the interpretation of such dreams."
1641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Finally,˺ the surviving ex-prisoner remembered ˹Joseph˺ after a long time and said, "I will tell you its interpretation, so send me forth ˹to Joseph˺."
1642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He said,˺ "Joseph, O  man of truth! Interpret for us ˹the dream of˺ seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry, so that I may return to the people and let them know."
1643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Joseph replied, "You will plant ˹grain˺ for seven consecutive years, leaving in the ear whatever you will harvest, except for the little you will eat.
1644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then after that will come seven years of great hardship which will consume whatever you have saved, except the little you will store ˹for seed˺.
1645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then after that will come a year in which people will receive abundant rain and they will press ˹oil and wine˺."
1646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The King ˹then˺ said, "Bring him to me." When the messenger came to him, Joseph said, "Go back to your master and ask him about the case of the women who cut their hands. Surely my Lord has ˹full˺ knowledge of their cunning."
1647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The King asked ˹the women˺, "What did you get when you tried to seduce Joseph?" They replied, "Allah forbid! We know nothing indecent about him." Then the Chief Minister’s wife admitted, "Now the truth has come to light. It was I who tried to seduce him, and he is surely truthful.
1648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    From this, Joseph should know that I did not speak dishonestly about him in his absence, for Allah certainly does not guide the scheming of the dishonest.
1649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I do not seek to free myself from blame, for indeed the soul is ever inclined to evil, except those shown mercy by my Lord. Surely my Lord is All-Forgiving, Most Merciful."
1650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The King said, "Bring him to me. I will employ him exclusively in my service." And when Joseph spoke to him, the King said, "Today you are highly esteemed and fully trusted by us."
1651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Joseph proposed, "Put me in charge of the store-houses of the land, for I am truly reliable and adept."
1652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is how We established Joseph in the land to settle wherever he pleased. We shower Our mercy on whoever We will, and We never discount the reward of the good-doers.
1653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the reward of the Hereafter is far better for those who are faithful and are mindful ˹of Allah˺.
1654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joseph’s brothers came and entered his presence. He recognized them but they were unaware of who he really was.
1655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When he had provided them with their supplies, he demanded, "Bring me your brother on your father’s side. Do you not see that I give full measure and I am the best of hosts?
1656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if you do not bring him to me ˹next time˺, I will have no grain for you, nor will you ever come close to me again."
1657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They promised, "We will try to convince his father to let him come. We will certainly do ˹our best˺."
1658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joseph ordered his servants to put his brothers’ money back into their saddlebags so that they would find it when they returned to their family and perhaps they would come back.
1659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When Joseph’s brothers returned to their father, they pleaded, "O our father! We have been denied ˹further˺ supplies. So send our brother with us so that we may receive our measure, and we will definitely watch over him."
1660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He responded, "Should I trust you with him as I once trusted you with his brother ˹Joseph˺? But ˹only˺ Allah is the best Protector, and He is the Most Merciful of the merciful."
1661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When they opened their bags, they discovered that their money had been returned to them. They argued, "O our father! What more can we ask for? Here is our money, fully returned to us. Now we can buy more food for our family. We will watch over our brother, and obtain an extra camel-load of grain. That load can be easily secured."
1662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jacob insisted, "I will not send him with you until you give me a solemn oath by Allah that you will certainly bring him back to me, unless you are totally overpowered." Then after they had given him their oaths, he concluded, "Allah is a Witness to what we have said."
1663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He then instructed ˹them˺, "O my sons! Do not enter ˹the city˺ all through one gate, but through separate gates. I cannot help you against ˹what is destined by˺ Allah in the least. It is only Allah Who decides. In Him I put my trust. And in Him let the faithful put their trust."
1664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then when they entered as their father had instructed them, this did not help them against ˹the Will of˺ Allah whatsoever. It was just a desire in Jacob’s heart which he satisfied. He was truly blessed with ˹great˺ knowledge because of what We had taught him, but most people have no knowledge.
1665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When they entered Joseph’s presence, he called his brother ˹Benjamin˺ aside, and confided ˹to him˺, "I am indeed your brother ˹Joseph˺! So do not feel distressed about what they have been doing."
1666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When Joseph had provided them with supplies, he slipped the royal cup into his brother’s bag. Then a herald cried, "O people of the caravan! You must be thieves!"
1667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They asked, turning back, "What have you lost?"
1668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The herald ˹along with the guards˺ replied, "We have lost the King’s measuring cup. And whoever brings it will be awarded a camel-load ˹of grain˺. I guarantee it."
1669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Joseph’s brothers replied, "By Allah! You know well that we did not come to cause trouble in the land, nor are we thieves."
1670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Joseph’s men asked, "What should be the price for theft, if you are lying?"
1671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Joseph’s brothers responded, "The price will be ˹the enslavement of˺ the one in whose bag the cup is found. That is how we punish the wrongdoers."
1672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Joseph began searching their bags before that of his brother ˹Benjamin˺, then brought it out of Benjamin’s bag. This is how We inspired Joseph to plan. He could not have taken his brother under the King’s law, but Allah had so willed. We elevate in rank whoever We will. But above those ranking in knowledge is the One All-Knowing.
1673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹To distance themselves,˺ Joseph’s brothers argued, "If he has stolen, so did his ˹full˺ brother before." and Allah knows best ˹the truth of˺ what you claim."
1674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They appealed, "O Chief Minister! He has a very old father, so take one of us instead. We surely see you as one of the good-doers."
1675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Joseph responded, "Allah forbid that we should take other than the one with whom we found our property. Otherwise, we would surely be unjust."
1676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they lost all hope in him, they spoke privately. The eldest of them said, "Do you not know that your father had taken a solemn oath by Allah from you, nor how you failed him regarding Joseph before? So I am not leaving this land until my father allows me to, or Allah decides for me. For He is the Best of Judges.
1677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Return to your father and say, ‘O our father! Your son committed theft. We testify only to what we know. We could not guard against the unforeseen.
1678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ask ˹the people of˺ the land where we were and the caravan we travelled with. We are certainly telling the truth.’"
1679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He cried, "No! Your souls must have tempted you to do something ˹evil˺. So ˹I am left with nothing but˺ beautiful patience! I trust Allah will return them all to me. Surely He ˹alone˺ is the All-Knowing, All-Wise."
1680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He turned away from them, lamenting, "Alas, poor Joseph!" And his eyes turned white out of the grief he suppressed.
1681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They said, "By Allah! You will not cease to remember Joseph until you lose your health or ˹even˺ your life."
1682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He replied, "I complain of my anguish and sorrow only to Allah, and I know from Allah what you do not know.
1683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O  my sons! Go and search ˹diligently˺ for Joseph and his brother. And do not lose hope in the mercy of Allah, for no one loses hope in Allah’s mercy except those with no faith."
1684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When they entered Joseph’s presence, they pleaded, "O Chief Minister! We and our family have been touched with hardship, and we have brought only a few worthless coins, but ˹please˺ give us our supplies in full and be charitable to us. Indeed, Allah rewards the charitable."
1685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He asked, "Do you remember what you did to Joseph and his brother in your ignorance?"
1686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They replied ˹in shock˺, "Are you really Joseph?" He said, "I am Joseph, and here is my brother ˹Benjamin˺! Allah has truly been gracious to us. Surely whoever is mindful ˹of Allah˺ and patient, then certainly Allah never discounts the reward of the good-doers."
1687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They admitted, "By Allah! Allah has truly preferred you over us, and we have surely been sinful."
1688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joseph said, "There is no blame on you today. May Allah forgive you! He is the Most Merciful of the merciful!
1689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Go with this shirt of mine and cast it over my father’s face, and he will regain his sight. Then come back to me with your whole family."
1690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the caravan departed ˹from Egypt˺, their father said ˹to those around him˺, "You may think I am senile, but I certainly sense the smell of Joseph."
1691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They replied, "By Allah! You are definitely still in your old delusion."
1692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But when the bearer of the good news arrived, he cast the shirt over Jacob’s face, so he regained his sight. Jacob then said ˹to his children˺, "Did I not tell you that I truly know from Allah what you do not know?"
1693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They begged, "O our father! Pray for the forgiveness of our sins. We have certainly been sinful."
1694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He said, "I will pray to my Lord for your forgiveness. He ˹alone˺ is indeed the All-Forgiving, Most Merciful."
1695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they entered Joseph’s presence, he received his parents ˹graciously˺ and said, "Enter Egypt, Allah willing, in security."
1696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then he raised his parents to the throne, and they all fell down in prostration to Joseph, Indeed my Lord is subtle in fulfilling what He wills. Surely He ˹alone˺ is the All-Knowing, All-Wise."
1697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "My Lord! You have surely granted me authority and taught me the interpretation of dreams. ˹O˺ Originator of the heavens and the earth! You are my Guardian in this world and the Hereafter. Allow me to die as one who submits and join me with the righteous."
1698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That is from the stories of the unseen which We reveal to you ˹O Prophet˺. You were not present when they ˹all˺ made up their minds, and when they plotted ˹against Joseph˺.
1699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And most people will not believe—no matter how keen you are—
1700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  even though you are not asking them for a reward for this ˹Quran˺. It is only a reminder to the whole world.
1701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How many signs in the heavens and the earth do they pass by with indifference!
1702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And most of them do not believe in Allah without associating others with Him ˹in worship˺.
1703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do they feel secure that an overwhelming torment from Allah will not overtake them, or that the Hour will not take them by surprise when they least expect ˹it˺?
1704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "This is my way. I invite to Allah with insight—I and those who follow me. Glory be to Allah, and I am not one of the polytheists."
1705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We only sent before you ˹O Prophet˺ men inspired by Us from among the people of each society. Have the deniers not travelled through the land to see what was the end of those ˹destroyed˺ before them? And surely the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?
1706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the messengers despaired and their people thought the messengers had been denied help, Our help came to them ˹at last˺. We then saved whoever We willed, and Our punishment is never averted from the wicked people.
1707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In their stories there is truly a lesson for people of reason. This message cannot be a fabrication, rather ˹it is˺ a confirmation of previous revelation, a detailed explanation of all things, a guide, and a mercy for people of faith.
1708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Alif-Lãm-Mĩm-Ra. These are the verses of the Book. What has been revealed to you ˹O Prophet˺ from your Lord is the truth, but most people do not believe.
1709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is Allah Who has raised the heavens without pillars—as you can see—then established Himself on the Throne. He has subjected the sun and the moon, each orbiting for an appointed term. He conducts the whole affair. He makes the signs clear so that you may be certain of the meeting with your Lord.
1710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And He is the One Who spread out the earth and placed firm mountains and rivers upon it, and created fruits of every kind in pairs. He covers the day with night. Surely in this are signs for those who reflect.
1711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And on the earth there are ˹different˺ neighbouring tracts, gardens of grapevines, ˹various˺ crops, palm trees—some stemming from the same root, others standing alone. They are all irrigated with the same water, yet We make some taste better than others. Surely in this are signs for those who understand.
1712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Now,˺ if anything should amaze you ˹O Prophet˺, then it is their question: "When we are reduced to dust, will we really be raised as a new creation?" It is they who have disbelieved in their Lord. It is they who will have shackles around their necks. And it is they who will be the residents of the Fire. They will be there forever.
1713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They ask you ˹O Prophet˺ to hasten the torment rather than grace, though there have ˹already˺ been ˹many˺ torments before them. Surely your Lord is full of forgiveness for people, despite their wrongdoing, and your Lord is truly severe in punishment.
1714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The disbelievers say, "If only a sign could be sent down to him from his Lord." You ˹O Prophet˺ are only a warner. And every people had a guide.
1715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah knows what every female bears and what increases and decreases in the wombs. And with Him everything is determined with precision.
1716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹He is the˺ Knower of the seen and the unseen—the All-Great, Most Exalted.
1717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is the same ˹to Him˺ whether any of you speaks secretly or openly, whether one hides in the darkness of night or goes about in broad daylight.
1718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For each one there are successive angels before and behind, protecting them by Allah’s command. Indeed, Allah would never change a people’s state ˹of favour˺ until they change their own state ˹of faith˺. And if it is Allah’s Will to torment a people, it can never be averted, nor can they find a protector other than Him.
1719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He is the One Who shows you lightning, inspiring ˹you with˺ hope and fear, and produces heavy clouds.
1720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The thunder glorifies His praises, as do the angels in awe of Him. He sends thunderbolts, striking with them whoever He wills. Yet they dispute about Allah. And He is tremendous in might.
1721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Calling upon Him ˹alone˺ is the truth. But those ˹idols˺ the pagans invoke besides Him ˹can˺ never respond to them in any way. ˹It is˺ just like someone who stretches out their hands to water, ˹asking it˺ to reach their mouths, but it can never do so. The calls of the disbelievers are only in vain.
1722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To Allah ˹alone˺ bow down ˹in submission˺ all those in the heavens and the earth—willingly or unwillingly—as do their shadows, morning and evening.
1723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ask ˹them, O  Prophet˺, "Who is the Lord of the heavens and the earth?" Say, "Allah!" Ask ˹them˺, "Why ˹then˺ have you taken besides Him lords who cannot even benefit or protect themselves?" Say, "Can the blind and the sighted be equal? Or can darkness and light be equal?" Or have they associated with Allah partners who ˹supposedly˺ produced a creation like His, leaving them confused between the two creations? Say, "Allah is the Creator of all things, and He is the One, the Supreme."
1724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He sends down rain from the sky, causing the valleys to flow, each according to its capacity. The currents then carry along rising foam, similar to the slag produced from metal that people melt in the fire for ornaments or tools. This is how Allah compares truth to falsehood. The ˹worthless˺ residue is then cast away, but what benefits people remains on the earth. This is how Allah sets forth parables.
1725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who respond to ˹the call of˺ their Lord will have the finest reward. As for those who do not respond to Him, even if they were to possess everything in the world twice over, they would certainly offer it to ransom themselves. They will face strict judgment, and Hell will be their home. What an evil place to rest!
1726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Can the one who knows that your Lord’s revelation to you ˹O Prophet˺ is the truth be like the one who is blind? None will be mindful ˹of this˺ except people of reason.
1727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹They are˺ those who honour Allah’s covenant, never breaking the pledge;
1728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and those who maintain whatever ˹ties˺ Allah has ordered to be maintained, stand in awe of their Lord, and fear strict judgment.
1729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹they are˺ those who endure patiently, seeking their Lord’s pleasure, establish prayer, donate from what We have provided for them—secretly and openly—and respond to evil with good. It is they who will have the ultimate abode:
1730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         the Gardens of Eternity, which they will enter along with the righteous among their parents, spouses, and descendants. And the angels will enter upon them from every gate, ˹saying,˺
1731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               "Peace be upon you for your perseverance. How excellent is the ultimate abode!"
1732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land—it is they who will be condemned and will have the worst abode.
1733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah gives abundant or limited provisions to whoever He wills. And the disbelievers become prideful of ˹the pleasures of˺ this worldly life. But the life of this world, compared to the Hereafter, is nothing but a fleeting enjoyment.
1734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers say, "If only a sign could be sent down to him from his Lord." Say, ˹O Prophet,˺ "Indeed, Allah leaves to stray whoever He wills, and guides to Himself whoever turns to Him—
1735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       those who believe and whose hearts find comfort in the remembrance of Allah. Surely in the remembrance of Allah do hearts find comfort.
1736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Those who believe and do good, for them will be bliss and an honourable destination."
1737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And so We have sent you ˹O Prophet˺ to a community, like ˹We did with˺ earlier communities, so that you may recite to them what We have revealed to you. Yet they deny the Most Compassionate. Say, "He is my Lord! There is no god ˹worthy of worship˺ except Him. In Him I put my trust, and to Him I turn ˹in repentance˺."
1738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If there were a recitation that could cause mountains to move, or the earth to split, or the dead to speak, ˹it would have been this Quran˺. But all matters are by Allah’s Will. Have the believers not yet realized that had Allah willed, He could have guided all of humanity? And disasters will continue to afflict the disbelievers or strike close to their homes for their misdeeds, until Allah’s promise comes to pass. Surely Allah never fails in His promise.
1739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Other messengers had already been ridiculed before you, but I delayed the disbelievers ˹for a while˺ then seized them. And how ˹horrible˺ was My punishment!
1740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Is ˹there any equal to˺ the Vigilant One Who knows what every soul commits? Yet the pagans have associated others with Allah ˹in worship˺. Say, ˹O Prophet,˺ "Name them! Or do you ˹mean to˺ inform Him of something He does not know on the earth? Or are these ˹gods˺ just empty words?" In fact, the disbelievers’ falsehood has been made so appealing to them that they have been turned away from the Path. And whoever Allah leaves to stray will be left with no guide.
1741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For them is punishment in this worldly life, but the punishment of the Hereafter is truly far worse. And none can shield them from Allah.
1742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The description of the Paradise promised to the righteous is that under it rivers flow; eternal is its fruit as well as its shade. That is the ˹ultimate˺ outcome for the righteous. But the outcome for the disbelievers is the Fire!
1743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹The believers among˺ those who were given the Scripture rejoice at what has been revealed to you ˹O Prophet˺, while some ˹disbelieving˺ factions deny a portion of it. Say, "I have only been commanded to worship Allah, associating none with Him ˹in worship˺. To Him I invite ˹all˺, and to Him is my return."
1744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And so We have revealed it as an authority in Arabic. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or shield you from Allah.
1745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have certainly sent messengers before you ˹O Prophet˺ and blessed them with wives and offspring. It was not for any messenger to bring a sign without Allah’s permission. Every destined matter has a ˹set˺ time.
1746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah eliminates and confirms what He wills, and with Him is the Master Record.
1747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, your duty is only to deliver ˹the message˺. Judgment is for Us.
1748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do they not see that We gradually reduce their land from its borders? Allah decides—none can reverse His decision. And He is swift in reckoning.
1749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those ˹disbelievers˺ before them ˹secretly˺ planned, but Allah has the ultimate plan. He knows what every soul commits. And the disbelievers will soon know who will have the ultimate outcome.
1750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers say, "You ˹Muhammad˺ are no messenger." Say, ˹O Prophet,˺ "Allah is sufficient as a Witness between me and you, as is whoever has knowledge of the Scripture."
1751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Alif-Lãm-Ra. ˹This is˺ a Book which We have revealed to you ˹O Prophet˺ so that you may lead people out of darkness and into light, by the Will of their Lord, to the Path of the Almighty, the Praiseworthy—
1752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And woe to the disbelievers because of a severe torment!
1753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They are˺ the ones who favour the life of this world over the Hereafter and hinder ˹others˺ from the Way of Allah, striving to make it ˹appear˺ crooked. It is they who have gone far astray.
1754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We have not sent a messenger except in the language of his people to clarify ˹the message˺ for them. Then Allah leaves whoever He wills to stray and guides whoever He wills. And He is the Almighty, All-Wise.
1755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We sent Moses with Our signs, ˹ordering him,˺ "Lead your people out of darkness and into light, and remind them of Allah’s days ˹of favour˺." Surely in this are signs for whoever is steadfast, grateful.
1756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Consider˺ when Moses said to his people, "Remember Allah’s favour upon you when He rescued you from the people of Pharaoh, who afflicted you with dreadful torment—slaughtering your sons and keeping your women. That was a severe test from your Lord.
1757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹remember˺ when your Lord proclaimed, ‘If you are grateful, I will certainly give you more. But if you are ungrateful, surely My punishment is severe.’"
1758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses added, "If you along with everyone on earth were to be ungrateful, then ˹know that˺ Allah is indeed Self-Sufficient, Praiseworthy."
1759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have you not ˹already˺ received the stories of those who were before you: the people of Noah, ’ad, Thamûd, and those after them? Only Allah knows how many they were. Their messengers came to them with clear proofs, but they put their hands over their mouths and said, "We totally reject what you have been sent with, and we are certainly in alarming doubt about what you are inviting us to."
1760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their messengers asked ˹them˺, "Is there any doubt about Allah, the Originator of the heavens and the earth? He is inviting you in order to forgive your sins, and delay your end until your appointed term." They argued, "You are no more than humans like us! You ˹only˺ wish to turn us away from what our forefathers worshipped. So bring us some compelling proof."
1761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Their messengers said to them, "We are ˹indeed˺ only humans like you, but Allah favours whoever He chooses of His servants. It is not for us to bring you any proof without Allah’s permission. And in Allah let the believers put their trust.
1762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Why should we not put our trust in Allah, when He has truly guided us to ˹the very best of˺ ways? Indeed, we will patiently endure whatever harm you may cause us. And in Allah let the faithful put their trust."
1763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The disbelievers then threatened their messengers, "We will certainly expel you from our land, unless you return to our faith." So their Lord revealed to them, "We will surely destroy the wrongdoers,
1764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and make you reside in the land after them. This is for whoever is in awe of standing before Me and fears My warning."
1765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And both sides called for judgment, so every stubborn tyrant was doomed.
1766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Awaiting them is Hell, and they will be left to drink oozing pus,
1767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           which they will sip with difficulty, and can hardly swallow. Death will overwhelm them from every side, yet they will not ˹be able to˺ die. Awaiting them still is harsher torment.
1768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The parable of the deeds of those who disbelieve in their Lord is that of ashes fiercely blown away by wind on a stormy day. They will gain nothing from what they have earned. That is ˹truly˺ the farthest one can stray.
1769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have you not seen that Allah created the heavens and the earth for a reason? If He wills, He can eliminate you and produce a new creation.
1770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And that is not difficult for Allah ˹at all˺.
1771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will all appear before Allah, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, "We were your ˹dedicated˺ followers, so will you ˹then˺ protect us from Allah’s torment in any way?" They will reply, "Had Allah guided us, we would have guided you. ˹Now˺ it is all the same for us whether we suffer patiently or impatiently, there is no escape for us."
1772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Satan will say ˹to his followers˺ after the judgment has been passed, "Indeed, Allah has made you a true promise. I too made you a promise, but I failed you. I did not have any authority over you. I only called you, and you responded to me. So do not blame me; blame yourselves. I cannot save you, nor can you save me. Indeed, I denounce your previous association of me with Allah ˹in loyalty˺. Surely the wrongdoers will suffer a painful punishment."
1773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who believe and do good will be admitted into Gardens, under which rivers flow—to stay there forever by the Will of their Lord—where they will be greeted with "Peace!"
1774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do you not see how Allah compares a good word to a good tree? Its root is firm and its branches reach the sky,
1775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹always˺ yielding its fruit in every season by the Will of its Lord. This is how Allah sets forth parables for the people, so perhaps they will be mindful.
1776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the parable of an evil word is that of an evil tree, uprooted from the earth, having no stability.
1777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah makes the believers steadfast with the firm Word ˹of faith˺ in this worldly life and the Hereafter. And Allah leaves the wrongdoers to stray. For Allah does what He wills.
1778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have you not seen those ˹disbelievers˺ who meet Allah’s favours with ingratitude and lead their own people to their doom?
1779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In Hell they will burn. What an evil place for settlement.
1780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ "Enjoy yourselves! Surely your destination is the Fire."
1781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Tell My believing servants to establish prayer and donate from what We have provided for them—openly and secretly—before the arrival of a Day in which there will be no ransom or friendly connections.
1782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is Allah Who created the heavens and the earth and sends down rain from the sky, causing fruits to grow as a provision for you. He has subjected the ships for your service, sailing through the sea by His command, and has subjected the rivers for you.
1783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He has ˹also˺ subjected for you the sun and the moon, both constantly orbiting, and has subjected the day and night for you.
1784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And He has granted you all that you asked Him for. If you tried to count Allah’s blessings, you would never be able to number them. Indeed humankind is truly unfair, ˹totally˺ ungrateful.
1785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ when Abraham prayed, "My Lord! Make this city ˹of Mecca˺ secure, and keep me and my children away from the worship of idols.
1786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My Lord! They have caused many people to go astray. So whoever follows me is with me, and whoever disobeys me—then surely You are ˹still˺ All-Forgiving, Most Merciful.
1787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Lord! I have settled some of my offspring in a barren valley, near Your Sacred House, our Lord, so that they may establish prayer. So make the hearts of ˹believing˺ people incline towards them and provide them with fruits, so perhaps they will be thankful.
1788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Lord! You certainly know what we conceal and what we reveal. Nothing on earth or in heaven is hidden from Allah.
1789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All praise is for Allah who has blessed me with Ishmael and Isaac in my old age. My Lord is indeed the Hearer of ˹all˺ prayers.
1790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         My Lord! Make me and those ˹believers˺ of my descendants keep up prayer. Our Lord! Accept my prayers.
1791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Lord! Forgive me, my parents, and the believers on the Day when the judgment will come to pass."
1792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do not think ˹O Prophet˺ that Allah is unaware of what the wrongdoers do. He only delays them until a Day when ˹their˺ eyes will stare in horror—
1793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     rushing forth, heads raised, never blinking, hearts void.
1794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And warn the people of the Day when the punishment will overtake ˹the wicked among˺ them, and the wrongdoers will cry, "Our Lord! Delay us for a little while. We will respond to Your call and follow the messengers!" ˹It will be said,˺ "Did you not swear before that you would never be removed ˹to the next life˺?"
1795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You passed by the ruins of those ˹destroyed peoples˺ who had wronged themselves. It was made clear to you how We dealt with them, and We gave you ˹many˺ examples.
1796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They devised every plot, which was fully known to Allah, but their plotting was not enough to ˹even˺ overpower mountains ˹let alone Allah˺.
1797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So do not think ˹O Prophet˺ that Allah will fail to keep His promise to His messengers. Allah is indeed Almighty, capable of punishment.
1798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Watch for˺ the Day ˹when˺ the earth will be changed into a different earth and the heavens as well, and all will appear before Allah—the One, the Supreme.
1799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On that Day you will see the wicked bound together in chains,
1800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    with garments of tar, and their faces covered with flames.
1801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As such, Allah will reward every soul for what it has committed. Surely Allah is swift in reckoning.
1802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This ˹Quran˺ is a ˹sufficient˺ message for humanity so that they may take it as a warning and know that there is only One God, and so that people of reason may be mindful.
1803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Alif-Lãm-Ra. These are the verses of the Book; the clear Quran.
1804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹The day will come when˺ the disbelievers will certainly wish they had submitted ˹to Allah˺.
1805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹So˺ let them eat and enjoy themselves and be diverted by ˹false˺ hope, for they will soon know.
1806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have never destroyed a society without a destined term.
1807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No people can advance their doom, nor can they delay it.
1808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They say, "O you to whom the Reminder is revealed! You must be insane!
1809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Why do you not bring us the angels, if what you say is true?"
1810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We do not send the angels down except for a just cause, and then ˹the end of˺ the disbelievers will not be delayed.
1811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is certainly We Who have revealed the Reminder, and it is certainly We Who will preserve it.
1812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, We sent messengers before you ˹O Prophet˺ among the groups of early peoples,
1813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      but no messenger ever came to them without being mocked.
1814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is how We allow disbelief ˹to steep˺ into the hearts of the wicked.
1815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They would not believe in this ˹Quran˺ despite the ˹many˺ examples of those ˹destroyed˺ before.
1816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And even if We opened for them a gate to heaven, through which they continued to ascend,
1817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               still they would say, "Our eyes have truly been dazzled! In fact, we must have been bewitched."
1818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We have placed constellations in the sky, and adorned it for all to see.
1819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We protected it from every accursed devil,
1820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         except the one eavesdropping, who is then pursued by a visible flare.
1821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for the earth, We spread it out and placed upon it firm mountains, and caused everything to grow there in perfect balance.
1822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We made in it means of sustenance for you and others, who you do not provide for.
1823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There is not any means ˹of sustenance˺ whose reserves We do not hold, only bringing it forth in precise measure.
1824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We send fertilizing winds, and bring down rain from the sky for you to drink. It is not you who hold its reserves.
1825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely it is We Who give life and cause death. And We are the ˹Eternal˺ Successor.
1826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We certainly know those who have gone before you and those who will come after ˹you˺.
1827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely your Lord ˹alone˺ will gather them together ˹for judgment˺. He is truly All-Wise, All-Knowing.
1828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We created man from sounding clay moulded from black mud.
1829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for the jinn, We created them earlier from smokeless fire.
1830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Remember, O  Prophet˺ when your Lord said to the angels, "I am going to create a human being from sounding clay moulded from black mud.
1831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him."
1832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the angels prostrated all together—
1833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      but not Iblis, who refused to prostrate with the others.
1834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah asked, "O Iblis! What is the matter with you that you did not join others in prostration?"
1835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He replied, "It is not for me to prostrate to a human You created from sounding clay moulded from black mud."
1836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah commanded, "Then get out of Paradise, for you are truly cursed.
1837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And surely upon you is condemnation until the Day of Judgment."
1838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Satan appealed, "My Lord! Then delay my end until the Day of their resurrection."
1839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah said, "You will be delayed
1840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     until the appointed Day."
1841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Satan responded, "My Lord! For allowing me to stray I will surely tempt them on earth and mislead them all together,
1842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      except Your chosen servants among them."
1843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah said, "This is the Way, binding on Me:
1844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     you will certainly have no authority over My servants, except the deviant who follow you,
1845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and surely Hell is their destined place, all together.
1846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It has seven gates, to each a group of them is designated."
1847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, the righteous will be amid Gardens and springs.
1848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It will be said to them,˺ "Enter in peace and security."
1849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We will remove whatever bitterness they had in their hearts. In a friendly manner, they will be on thrones, facing one another.
1850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No fatigue will touch them there, nor will they ever be asked to leave.
1851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inform My servants ˹O Prophet˺ that I am truly the All-Forgiving, Most Merciful,
1852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and that My torment is indeed the most painful.
1853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And inform them ˹O Prophet˺ about Abraham’s guests
1854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         who entered upon him and greeted ˹him with˺, "Peace!" He ˹later˺ said, "Surely we are afraid of you."
1855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They reassured ˹him˺, "Do not be afraid! Surely we give you good news of a knowledgeable son."
1856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He wondered, "Do you give me good news despite my old age? What unlikely news!"
1857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They responded, "We give you good news in all truth, so do not be one of those who despair."
1858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He exclaimed, "Who would despair of the mercy of their Lord except the misguided?"
1859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He ˹then˺ added, "What is your mission, O  messenger-angels?"
1860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They replied, "We have actually been sent to a wicked people.
1861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for the family of Lot, we will certainly deliver them all,
1862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      except his wife. We have determined that she will be one of the doomed."
1863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So when the messengers came to the family of Lot,
1864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               he said, "You are surely an unfamiliar people!"
1865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They responded, "We have come to you with that ˹torment˺ which they have doubted.
1866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We come to you with the truth, and we are certainly truthful.
1867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So travel with your family in the dark of night, and follow ˹closely˺ behind them. Do not let any of you look back, and go where you are commanded."
1868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We revealed to him this decree: "Those ˹sinners˺ will be uprooted in the morning."
1869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there came the men of the city, rejoicing.
1870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lot pleaded, "Indeed, these are my guests, so do not embarrass me.
1871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Fear Allah and do not humiliate me."
1872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They responded, "Have we not forbidden you from protecting anyone?"
1873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He said, "O my people! Here are my daughters ˹so marry them˺ if you wish to do so."
1874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             By your life ˹O Prophet˺, they certainly wandered blindly, intoxicated ˹by lust˺.
1875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So the ˹mighty˺ blast overtook them at sunrise.
1876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And We turned the cities ˹of Sodom and Gomorrah˺ upside down and rained upon them stones of baked clay.
1877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely in this are signs for those who contemplate.
1878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their ruins still lie along a known route.
1879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely in this is a sign for those who believe.
1880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the residents of the Forest were truly wrongdoers,
1881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               so We inflicted punishment upon them. The ruins of both nations still lie on a well-known road.
1882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, the residents of the Stone Valley also denied the messengers.
1883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We gave them Our signs, but they turned away from them.
1884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They carved their homes in the mountains, feeling secure.
1885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the ˹mighty˺ blast overtook them in the morning,
1886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and all they achieved was of no help to them.
1887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have not created the heavens and the earth and everything in between except for a purpose. And the Hour is certain to come, so forgive graciously.
1888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely your Lord is the Master Creator, All-Knowing.
1889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We have certainly granted you the seven often-repeated verses and the great Quran.
1890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do not let your eyes crave the ˹fleeting˺ pleasures We have provided for some of the disbelievers, nor grieve for them. And be gracious to the believers.
1891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And say, "I am truly sent with a clear warning"—
1892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹a warning˺ similar to what We sent to those who divided ˹the Scriptures˺,
1893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        who ˹now˺ accept parts of the Quran, rejecting others.
1894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So by your Lord! We will certainly question them all
1895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   about what they used to do.
1896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So proclaim what you have been commanded, and turn away from the polytheists.
1897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely We will be sufficient for you against the mockers,
1898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              who set up ˹other˺ gods with Allah. They will soon come to know.
1899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We certainly know that your heart is truly distressed by what they say.
1900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So glorify the praises of your Lord and be one of those who ˹always˺ pray,
1901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and worship your Lord until the inevitable comes your way.
1902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The command of Allah is at hand, so do not hasten it. Glorified and Exalted is He above what they associate ˹with Him in worship˺!
1903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He sends down the angels with revelation by His command to whoever He wills of His servants, ˹stating:˺ "Warn ˹humanity˺ that there is no god ˹worthy of worship˺ except Me, so be mindful of Me ˹alone˺."
1904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He created the heavens and the earth for a purpose. Exalted is He above what they associate with Him ˹in worship˺!
1905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He created humans from a sperm-drop, then—behold!—they openly challenge ˹Him˺.
1906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And He created the cattle for you as a source of warmth, food, and ˹many other˺ benefits.
1907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They are also pleasing to you when you bring them home and when you take them out to graze.
1908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they carry your loads to ˹distant˺ lands which you could not otherwise reach without great hardship. Surely your Lord is Ever Gracious, Most Merciful.
1909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹He also created˺ horses, mules, and donkeys for your transportation and adornment. And He creates what you do not know.
1910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is upon Allah ˹alone˺ to ˹clearly˺ show the Straight Way. Other ways are deviant. Had He willed, He would have easily imposed guidance upon all of you.
1911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the One Who sends down rain from the sky, from which you drink and by which plants grow for your cattle to graze.
1912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         With it He produces for you ˹various˺ crops, olives, palm trees, grapevines, and every type of fruit. Surely in this is a sign for those who reflect.
1913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And He has subjected for your benefit the day and the night, the sun and the moon. And the stars have been subjected by His command. Surely in this are signs for those who understand.
1914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹He subjected˺ for you whatever He has created on earth of varying colours. Surely in this is a sign for those who are mindful.
1915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And He is the One Who has subjected the sea, so from it you may eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through it, so you may seek His bounty and give thanks ˹to Him˺.
1916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He has placed into the earth firm mountains, so it does not shake with you, as well as rivers, and pathways so you may find your way.
1917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Also by landmarks and stars do people find their way.
1918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Can the One Who creates be equal to those who do not? Will you not then be mindful?
1919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you tried to count Allah’s blessings, you would never be able to number them. Surely Allah is All-Forgiving, Most Merciful.
1920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Allah knows what you conceal and what you reveal.
1921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But those ˹idols˺ they invoke besides Allah cannot create anything—they themselves are created.
1922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They are dead, not alive—not even knowing when their followers will be resurrected.
1923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Your God is ˹only˺ One God. As for those who do not believe in the Hereafter, their hearts are in denial, and they are too proud.
1924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Without a doubt, Allah knows what they conceal and what they reveal. He certainly does not like those who are too proud.
1925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when it is said to them, "What has your Lord revealed?" They say, "Ancient fables!"
1926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let them bear their burdens in full on the Day of Judgment as well as some of the burdens of those they mislead without knowledge. Evil indeed is what they will bear!
1927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, those before them had plotted, but Allah struck at the ˹very˺ foundation of their structure, so the roof collapsed on top of them, and the torment came upon them from where they did not expect.
1928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then on the Day of Judgment He will humiliate them and say, "Where are My ˹so-called˺ associate-gods for whose sake you used to oppose ˹the believers˺?" Those gifted with knowledge will say, "Surely disgrace and misery today are upon the disbelievers."
1929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those whose souls the angels seize while they wrong themselves will then offer ˹full˺ submission ˹and say falsely,˺ "We did not do any evil." ˹The angels will say,˺ "No! Surely Allah fully knows what you used to do.
1930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So enter the gates of Hell, to stay there forever. Indeed, what an evil home for the arrogant!"
1931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹when˺ it is said to those mindful ˹of Allah˺, "What has your Lord revealed?" They say, "All the best!" For those who do good in this world, there is goodness. But far better is the ˹eternal˺ Home of the Hereafter. How excellent indeed is the home of the righteous:
1932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the Gardens of Eternity which they will enter, under which rivers flow. In it they will have whatever they desire. This is how Allah rewards the righteous—
1933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     those whose souls the angels take while they are virtuous, saying ˹to them˺, "Peace be upon you! Enter Paradise for what you used to do."
1934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Are they only awaiting the coming of the angels or the command of your Lord ˹O Prophet˺? So were those before them. And Allah never wronged them, but it was they who wronged themselves.
1935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the evil ˹consequences˺ of their deeds overtook them, and they were overwhelmed by what they used to ridicule.
1936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The polytheists argue, "Had Allah willed, neither we nor our forefathers would have worshipped anything other than Him, nor prohibited anything without His command." So did those before them. Is not the messengers’ duty only to deliver ˹the message˺ clearly?
1937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We surely sent a messenger to every community, saying, "Worship Allah and shun false gods." But some of them were guided by Allah, while others were destined to stray. So travel throughout the land and see the fate of the deniers!
1938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Even though you ˹O Prophet˺ are keen on their guidance, Allah certainly does not guide those He leaves to stray, and they will have no helpers.
1939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They swear by Allah their most solemn oaths that Allah will never raise the dead to life. Yes ˹He will˺! It is a true promise binding on Him, but most people do not know.
1940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹He will do that˺ to make clear to them what they disagreed on, and for the disbelievers to know that they were liars.
1941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If We ever will something ˹to exist˺, all We say is: "Be!" And it is!
1942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who emigrated in ˹the cause of˺ Allah after being persecuted, We will surely bless them with a good home in this world. But the reward of the Hereafter is far better, if only they knew.
1943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹It is˺ they who have patiently endured, and in their Lord they put their trust.
1944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.
1945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹We sent them˺ with clear proofs and divine Books. And We have sent down to you ˹O Prophet˺ the Reminder, so that you may explain to people what has been revealed for them, and perhaps they will reflect.
1946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do those who devise evil plots feel secure that Allah will not cause the earth to swallow them? Or that the torment will not come upon them in ways they cannot comprehend?
1947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or that He will not seize them while they go about ˹their day˺, for then they will have no escape?
1948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or that He will not destroy them gradually? But your Lord is truly Ever Gracious, Most Merciful.
1949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have they not considered how the shadows of everything Allah has created incline to the right and the left ˹as the sun moves˺, totally submitting to Allah in all humility?
1950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And to Allah ˹alone˺ bows down ˹in submission˺ whatever is in the heavens and whatever is on the earth of living creatures, as do the angels—who are not too proud ˹to do so˺.
1951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They fear their Lord above them, and do whatever they are commanded.
1952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Allah has said, "Do not take two gods. There is only One God. So be in awe of Me ˹alone˺."
1953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Him belongs whatever is in the heavens and the earth, and to Him ˹alone˺ is the everlasting devotion. Will you then fear any other than Allah?
1954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whatever blessings you have are from Allah. Then whenever hardship touches you, to Him ˹alone˺ you cry ˹for help˺.
1955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then as soon as He removes the hardship from you, a group of you associates ˹others˺ with their Lord ˹in worship˺,
1956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     only returning Our favours with ingratitude. So enjoy yourselves, for you will soon know.
1957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they ˹even˺ assign to those ˹idols˺—who know nothing—a share of what We have provided for them. By Allah! You will certainly be questioned about whatever ˹lies˺ you used to fabricate ˹against Allah˺.
1958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they attribute ˹angels as˺ daughters to Allah—glory be to Him!—the opposite of what they desire for themselves.
1959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whenever one of them is given the good news of a baby girl, his face grows gloomy, as he suppresses his rage.
1960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He hides himself from the people because of the bad news he has received. Should he keep her in disgrace, or bury her ˹alive˺ in the ground? Evil indeed is their judgment!
1961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To those who disbelieve in the Hereafter belong all evil qualities, whereas to Allah belong the finest attributes. And He is the Almighty, All-Wise.
1962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If Allah were to punish people ˹immediately˺ for their wrongdoing, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, they cannot delay it for a moment, nor could they advance it.
1963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They attribute to Allah what they hate ˹for themselves˺, and their tongues utter the lie that they will have the finest reward. Without a doubt, for them is the Fire, where they will be abandoned.
1964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By Allah! We have surely sent messengers to communities before you ˹O Prophet˺, but Satan made their misdeeds appealing to them. So he is their patron today, and they will suffer a painful punishment.
1965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We have revealed to you the Book only to clarify for them what they differed about, and as a guide and mercy for those who believe.
1966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Allah sends down rain from the sky, giving life to the earth after its death. Surely in this is a sign for those who listen.
1967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there is certainly a lesson for you in cattle: We give you to drink of what is in their bellies, from between digested food and blood: pure milk, pleasant to drink.
1968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And from the fruits of palm trees and grapevines you derive intoxicants as well as wholesome provision. Surely in this is a sign for those who understand.
1969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And your Lord inspired the bees: "Make ˹your˺ homes in the mountains, the trees, and in what people construct,
1970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and feed from ˹the flower of˺ any fruit ˹you please˺ and follow the ways your Lord has made easy for you." From their bellies comes forth liquid of varying colours, in which there is healing for people. Surely in this is a sign for those who reflect.
1971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah has created you, and then causes you to die. And some of you are left to reach the most feeble stage of life so that they may know nothing after having known much. Indeed, Allah is All-Knowing, Most Capable.
1972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Allah has favoured some of you over others in provision. But those who have been much favoured would not share their wealth with those ˹bondspeople˺ in their possession, making them their equals. Do they then deny Allah’s favours?
1973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Allah has made for you spouses of your own kind, and given you through your spouses children and grandchildren. And He has granted you good, lawful provisions. Are they then faithful to falsehood and ungrateful for Allah’s favours?
1974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet they worship besides Allah those ˹idols˺ who do not afford them any provision from the heavens and the earth, nor do they have the power to.
1975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So do not set up equals to Allah, for Allah certainly knows and you do not know.
1976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah sets forth a parable: a slave who lacks all means, compared to a ˹free˺ man to whom We granted a good provision, of which he donates ˹freely,˺ openly and secretly. Are they equal? Praise be to Allah. In fact, most of them do not know.
1977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Allah sets forth a parable of two men: one of them is dumb, incapable of anything. He is a burden on his master. Wherever he is sent, he brings no good. Can such a person be equal to the one who commands justice and is on the Straight Path?
1978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To Allah ˹alone˺ belongs ˹the knowledge of˺ the unseen in the heavens and the earth. Bringing about the Hour would only take the blink of an eye, or even less. Surely Allah is Most Capable of everything.
1979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Allah brought you out of the wombs of your mothers while you knew nothing, and gave you hearing, sight, and intellect so perhaps you would be thankful.
1980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have they not seen the birds glide in the open sky? None holds them up except Allah. Surely in this are signs for those who believe.
1981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Allah has made your homes a place to rest, and has given you tents from the hide of animals, light to handle when you travel and when you camp. And out of their wool, fur, and hair He has given you furnishings and goods for a while.
1982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Allah has provided you shade out of what He created, and has given you shelter in the mountains. He has also provided you with clothes protecting you from the heat ˹and cold˺, and armour shielding you in battle. This is how He perfects His favour upon you, so perhaps you will ˹fully˺ submit ˹to Him˺.
1983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if they turn away, then your duty ˹O Prophet˺ is only to deliver ˹the message˺ clearly.
1984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They are aware of Allah’s favours, but still deny them. And most of them are ˹truly˺ ungrateful.
1985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Consider, O  Prophet,˺ the Day We will call ˹a prophet as˺ a witness from every faith-community. Then the disbelievers will neither be allowed to plead nor appease ˹their Lord˺.
1986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when the wrongdoers face the punishment, it will not be lightened for them, nor will they be delayed ˹from it˺.
1987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the polytheists see their associate-gods, they will say, "Our Lord! These are our associate-gods that we used to invoke besides You." Their gods will throw a rebuttal at them, ˹saying,˺ "You are definitely liars."
1988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will offer ˹full˺ submission to Allah on that Day, and whatever ˹gods˺ they fabricated will fail them.
1989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For those who disbelieve and hinder ˹others˺ from the Way of Allah, We will add more punishment to their punishment for all the corruption they spread.
1990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Consider, O  Prophet,˺ the Day We will call against every faith-community a witness of their own. And We will call you to be a witness against these ˹people of yours˺. We have revealed to you the Book as an explanation of all things, a guide, a mercy, and good news for those who ˹fully˺ submit.
1991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Allah commands justice, grace, as well as courtesy to close relatives. He forbids indecency, wickedness, and aggression. He instructs you so perhaps you will be mindful.
1992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Honour Allah’s covenant when you make a pledge, and do not break your oaths after confirming them, having made Allah your guarantor. Surely Allah knows all you do.
1993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do not be like the woman who ˹foolishly˺ unravels her yarn after it is firmly spun, by taking your oaths as a means of deceiving one another in favour of a stronger group. Surely Allah tests you through this. And on the Day of Judgment He will certainly make your differences clear to you.
1994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had Allah willed, He could have easily made you one community ˹of believers˺, but He leaves to stray whoever He wills and guides whoever He wills. And you will certainly be questioned about what you used to do.
1995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And do not take your oaths as a means of deceiving one another or your feet will slip after they have been firm. Then you will taste the evil ˹consequences˺ of hindering ˹others˺ from the Way of Allah, and you will suffer a tremendous punishment.
1996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And do not trade Allah’s covenant for a fleeting gain. What is with Allah is certainly far better for you, if only you knew.
1997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whatever you have will end, but whatever Allah has is everlasting. And We will certainly reward the steadfast according to the best of their deeds.
1998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whoever does good, whether male or female, and is a believer, We will surely bless them with a good life, and We will certainly reward them according to the best of their deeds.
1999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When you recite the Quran, seek refuge with Allah from Satan, the accursed.
2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He certainly has no authority over those who believe and put their trust in their Lord.
2001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             His authority is only over those who take him as a patron and who—under his influence—associate ˹others˺ with Allah ˹in worship˺.
2002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When We replace a verse with another—and Allah knows best what He reveals—they say, "You ˹Muhammad˺ are just a fabricator." In fact, most of them do not know.
2003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, "The holy spirit has brought it down from your Lord with the truth to reassure the believers, and as a guide and good news for those who submit ˹to Allah˺."
2004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We surely know that they say, "No one is teaching him except a human." But the man they refer to speaks a foreign tongue, whereas this ˹Quran˺ is ˹in˺ eloquent Arabic.
2005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely those who do not believe in Allah’s revelations will never be guided by Allah, and they will suffer a painful punishment.
2006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           No one fabricates lies except those who disbelieve in Allah’s revelations, and it is they who are the ˹true˺ liars.
2007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whoever disbelieves in Allah after their belief—not those who are forced while their hearts are firm in faith, but those who embrace disbelief wholeheartedly—they will be condemned by Allah and suffer a tremendous punishment.
2008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is because they prefer the life of this world over the Hereafter. Surely Allah never guides those who ˹choose to˺ disbelieve.
2009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They are the ones whose hearts, ears, and eyes are sealed by Allah, and it is they who are ˹truly˺ heedless.
2010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Without a doubt, they will be the losers in the Hereafter.
2011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those who emigrated after being compelled ˹to renounce Islam˺, then struggled ˹in Allah’s cause˺, and persevered, your Lord ˹O Prophet˺ is truly All-Forgiving, Most Merciful after all.
2012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Consider˺ the Day ˹when˺ every soul will come pleading for itself, and each will be paid in full for what it did, and none will be wronged.
2013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Allah sets forth the example of a society which was safe and at ease, receiving its provision in abundance from all directions. But its people met Allah’s favours with ingratitude, so Allah made them taste the clutches of hunger and fear for their misdeeds.
2014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A messenger of their own actually did come to them, but they denied him. So the torment overtook them while they persisted in wrongdoing.
2015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So eat from the good, lawful things which Allah has provided for you, and be grateful for Allah’s favours, if you ˹truly˺ worship Him ˹alone˺.
2016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely Allah is All-Forgiving, Most Merciful.
2017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not falsely declare with your tongues, "This is lawful, and that is unlawful," ˹only˺ fabricating lies against Allah. Indeed, those who fabricate lies against Allah will never succeed.
2018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹It is only˺ a brief enjoyment, then they will suffer a painful punishment.
2019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To the Jews, We have forbidden what We related to you before. We did not wrong them, but it was they who wronged themselves.
2020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who commit evil ignorantly ˹or recklessly˺, then repent afterwards and mend their ways, then your Lord is surely All-Forgiving, Most Merciful.
2021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, Abraham was a model of excellence: devoted to Allah, ˹perfectly˺ upright—not a polytheist—
2022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹utterly˺ grateful for Allah’s favours. ˹So˺ He chose him and guided him to the Straight Path.
2023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We blessed him with all goodness in this world, and in the Hereafter he will certainly be among the righteous.
2024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then We revealed to you ˹O Prophet, saying˺: "Follow the faith of Abraham, the upright, who was not one of the polytheists."
2025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Honouring˺ the Sabbath was ordained only for those who disputed about Abraham. And surely your Lord will judge between them on the Day of Judgment regarding their disputes.
2026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Invite ˹all˺ to the Way of your Lord with wisdom and kind advice, and only debate with them in the best manner. Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.
2027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If you retaliate, then let it be equivalent to what you have suffered. But if you patiently endure, it is certainly best for those who are patient.
2028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Be patient ˹O Prophet˺, for your patience is only with Allah’s help. Do not grieve over those ˹who disbelieve˺, nor be distressed by their schemes.
2029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely Allah is with those who shun evil and who do good ˹deeds˺.
2030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Glory be to the One Who took His servant ˹Muhammad˺ by night from the Sacred Mosque to the Farthest Mosque whose surroundings We have blessed, so that We may show him some of Our signs. alone is the All-Hearing, All-Seeing.
2031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And We gave Moses the Scripture and made it a guide for the Children of Israel, ˹stating:˺ "Do not take besides Me any other Trustee of Affairs,
2032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹O˺ descendants of those We carried with Noah ˹in the Ark˺! He was indeed a grateful servant."
2033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We warned the Children of Israel in the Scripture, "You will certainly cause corruption in the land twice, and you will become extremely arrogant.
2034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the first of the two warnings would come to pass, We would send against you some of Our servants of great might, who would ravage your homes. This would be a warning fulfilled.
2035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then ˹after your repentance˺ We would give you the upper hand over them and aid you with wealth and offspring, causing you to outnumber them.
2036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you act rightly, it is for your own good, but if you do wrong, it is to your own loss. "And when the second warning would come to pass, your enemies would ˹be left to˺ totally disgrace you and enter the Temple ˹of Jerusalem˺ as they entered it the first time, and utterly destroy whatever would fall into their hands.
2037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Perhaps your Lord will have mercy on you ˹if you repent˺, but if you return ˹to sin˺, We will return ˹to punishment˺. And We have made Hell a ˹permanent˺ confinement for the disbelievers."
2038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely this Quran guides to what is most upright, and gives good news to the believers—who do good—that they will have a mighty reward.
2039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹it warns˺ those who do not believe in the Hereafter ˹that˺ We have prepared for them a painful punishment.
2040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And humans ˹swiftly˺ pray for evil as they pray for good. For humankind is ever hasty.
2041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We made the day and night as two signs. So We made the sign of the night devoid of light, and We made the sign of the day ˹perfectly˺ bright, so that you may seek the bounty of your Lord and know the number of years and calculation ˹of time˺. And We have explained everything in detail.
2042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have bound every human’s destiny to their neck. And on the Day of Judgment We will bring forth to each ˹person˺ a record which they will find laid open.
2043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹And it will be said,˺ "Read your record. You ˹alone˺ are sufficient this Day to take account of yourself."
2044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. No soul burdened with sin will bear the burden of another. And We would never punish ˹a people˺ until We have sent a messenger ˹to warn them˺.
2045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whenever We intend to destroy a society, We command its elite ˹to obey Allah˺ but they act rebelliously in it. So the decree ˹of punishment˺ is justified, and We destroy it utterly.
2046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Imagine˺ how many peoples We have destroyed after Noah! And sufficient is your Lord as All-Aware and All-Seeing of the sins of His servants.
2047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoever desires this fleeting world ˹alone˺, We hasten in it whatever We please to whoever We will; then We destine them for Hell, where they will burn, condemned and rejected.
2048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But whoever desires the Hereafter and strives for it accordingly, and is a ˹true˺ believer, it is they whose striving will be appreciated.
2049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We provide both the former and the latter from the bounty of your Lord. And the bounty of your Lord can never be withheld.
2050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   See how We have favoured some over others ˹in this life˺, but the Hereafter is certainly far greater in rank and in favour.
2051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do not set up any other god with Allah, or you will end up condemned, abandoned.
2052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For your Lord has decreed that you worship none but Him. And honour your parents. If one or both of them reach old age in your care, never say to them ˹even˺ ‘ugh,’ nor yell at them. Rather, address them respectfully.
2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And be humble with them out of mercy, and pray, "My Lord! Be merciful to them as they raised me when I was young."
2054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Your Lord knows best what is within yourselves. If you are righteous, He is certainly All-Forgiving to those who ˹constantly˺ turn to Him.
2055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Give to close relatives their due, as well as the poor and ˹needy˺ travellers. And do not spend wastefully.
2056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely the wasteful are ˹like˺ brothers to the devils. And the Devil is ever ungrateful to his Lord.
2057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if you must turn them down ˹because you lack the means to give˺—while hoping to receive your Lord’s bounty—then ˹at least˺ give them a kind word.
2058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not be so tight-fisted, for you will be blameworthy; nor so open-handed, for you will end up in poverty.
2059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely your Lord gives abundant or limited provisions to whoever He wills. He is certainly All-Aware, All-Seeing of His servants.
2060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do not kill your children for fear of poverty. We provide for them and for you. Surely killing them is a heinous sin.
2061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do not go near adultery. It is truly a shameful deed and an evil way.
2062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. for they are already supported ˹by law˺.
2063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Honour ˹your˺ pledges, for you will surely be accountable for them.
2064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Give in full when you measure, and weigh with an even balance. That is fairest and best in the end.
2065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do not follow what you have no ˹sure˺ knowledge of. Indeed, all will be called to account for ˹their˺ hearing, sight, and intellect.
2066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And do not walk on the earth arrogantly. Surely you can neither crack the earth nor stretch to the height of the mountains.
2067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The violation of any of these ˹commandments˺ is detestable to your Lord.
2068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is part of the wisdom which your Lord has revealed to you ˹O Prophet˺. And do not set up any other god with Allah ˹O humanity˺, or you will be cast into Hell, blameworthy, rejected.
2069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Has your Lord favoured you ˹pagans˺ with sons and taken angels as ˹His˺ daughters? You are truly making an outrageous claim.
2070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have surely varied ˹the signs˺ in this Quran so perhaps they may be mindful, but it only drives them farther away.
2071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "Had there been other gods besides Him—as they claim—then they would have certainly sought a way to ˹challenge˺ the Lord of the Throne."
2072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Glorified and Highly Exalted is He above what they claim!
2073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The seven heavens, the earth, and all those in them glorify Him. There is not a single thing that does not glorify His praises—but you ˹simply˺ cannot comprehend their glorification. He is indeed Most Forbearing, All-Forgiving.
2074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When you ˹O Prophet˺ recite the Quran, We put a hidden barrier between you and those who do not believe in the Hereafter.
2075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. And when you mention your Lord alone in the Quran, they turn their backs in aversion.
2076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We know best how they listen to your recitation and what they say privately—when the wrongdoers say, "You would only be following a bewitched man."
2077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             See how they call you names ˹O Prophet˺! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.
2078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they say ˹mockingly˺, "When we are reduced to bones and ashes, will we really be raised as a new creation?"
2079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "˹Yes, even if˺ you become stones, or iron,
2080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or whatever you think is harder to bring to life!" Then they will ask ˹you˺, "Who will bring us back ˹to life˺?" Say, "The One Who created you the first time." They will then shake their heads at you and ask, "When will that be?" Say, "Perhaps it is soon!"
2081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On the Day He will call you, you will ˹instantly˺ respond by praising Him, thinking you had remained ˹in the world˺ only for a little while.
2082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Tell My ˹believing˺ servants to say only what is best. Satan certainly seeks to sow discord among them. Satan is indeed a sworn enemy to humankind.
2083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Your Lord knows you best. He may have mercy on you if He wills, or punish you if He wills. We have not sent you ˹O Prophet˺ as a keeper over them.
2084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Your Lord knows best all those in the heavens and the earth. And We have surely favoured some prophets above others, and to David We gave the Psalms.
2085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "Invoke those you claim ˹to be divine˺ besides Him—they do not have the power to undo harm from you or transfer it ˹to someone else˺."
2086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Even˺ the closest ˹to Allah˺ of those invoked would be seeking a way to their Lord, hoping for His mercy, and fearing His punishment. Indeed, your Lord’s torment is fearsome.
2087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There is not a ˹wicked˺ society that We will not destroy or punish with a severe torment before the Day of Judgment. That is written in the Record.
2088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nothing keeps Us from sending the ˹demanded˺ signs except that they had ˹already˺ been denied by earlier peoples. And We gave Thamûd the she-camel as a clear sign, but they wrongfully rejected it. We only send the signs as a warning.
2089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹remember, O  Prophet˺ when We told you, "Certainly your Lord encompasses the people." And We have made what We brought you to see only as a test for the people. We keep warning them, but it only increases them greatly in defiance.
2090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹remember˺ when We said to the angels, "Prostrate before Adam," so they all did—but not Iblis, who protested, "Should I prostrate to the one You have created from mud?"
2091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Adding, "Do you see this one you honoured above me? If you delay my end until the Day of Judgment, I will certainly take hold of his descendants, except for a few."
2092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah responded, "Be gone! Whoever of them follows you, Hell will surely be the reward for all of you—an ample reward.
2093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And incite whoever you can of them with your voice, mobilize against them all your cavalry and infantry, manipulate them in their wealth and children, and make them promises." But Satan promises them nothing but delusion.
2094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Allah added,˺ "You will truly have no authority over My ˹faithful˺ servants." And sufficient is your Lord as a Guardian.
2095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is your Lord Who steers the ships for you through the sea, so that you may seek His bounty. Surely He is ever Merciful to you.
2096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When you are touched with hardship at sea, you ˹totally˺ forget all ˹the gods˺ you ˹normally˺ invoke, except Him. But when He delivers you ˹safely˺ to shore, you turn away. Humankind is ever ungrateful.
2097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you feel secure that He will not cause the land to swallow you up, or unleash upon you a storm of stones? Then you will find none to protect you.
2098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or do you feel secure that He will not send you back to sea once again, and send upon you a violent storm, drowning you for your denial? Then you will find none to avenge you against Us.
2099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, We have dignified the children of Adam, carried them on land and sea, granted them good and lawful provisions, and privileged them far above many of Our creatures.
2100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Beware of˺ the Day We will summon every people with their leader. So whoever will be given their record in their right hand will read it ˹happily˺ and will not be wronged ˹even by the width of˺ the thread of a date stone.
2101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But whoever is blind ˹to the truth˺ in this ˹world˺ will be blind in the Hereafter, and ˹even˺ far more astray from the ˹Right˺ Way.
2102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They definitely ˹thought they˺ were about to lure you away from what We have revealed to you ˹O Prophet˺, hoping that you would attribute something else to Us falsely—and then they would have certainly taken you as a close friend.
2103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had We not made you steadfast, you probably would have inclined to them a little,
2104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and then We truly would have made you taste double ˹punishment˺ both in this life and after death, and you would have found no helper against Us.
2105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They were about to intimidate you to drive you out of the land ˹of Mecca˺, but then they would not have survived after you ˹had left˺ except for a little while.
2106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹This has been˺ Our way with the messengers We sent before you. And you will never find any change in Our way.
2107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Observe the prayer from the decline of the sun until the darkness of the night and the dawn prayer, for certainly the dawn prayer is witnessed ˹by angels˺.
2108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And rise at ˹the last˺ part of the night, offering additional prayers, so your Lord may raise you to a station of praise.
2109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And say, "My Lord! Grant me an honourable entrance and an honourable exit and give me a supporting authority from Yourself."
2110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And declare, "The truth has come and falsehood has vanished. Indeed, falsehood is bound to vanish."
2111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We send down the Quran as a healing and mercy for the believers, but it only increases the wrongdoers in loss.
2112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When We grant people Our favours, they turn away, acting arrogantly. But when touched with evil, they lose all hope.
2113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "Everyone acts in their own way. But your Lord knows best whose way is rightly guided."
2114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They ask you ˹O Prophet˺ about the spirit. Say, "Its nature is known only to my Lord, and you ˹O humanity˺ have been given but little knowledge."
2115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If We willed, We could have certainly taken away what We have revealed to you ˹O Prophet˺—then you would find none to guarantee its return from Us—
2116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           had it not been for the mercy of your Lord. Indeed, His favour upon you is immense.
2117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "If ˹all˺ humans and jinn were to come together to produce the equivalent of this Quran, they could not produce its equal, no matter how they supported each other."
2118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We have truly set forth every ˹kind of˺ lesson for humanity in this Quran, yet most people persist in disbelief.
2119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They challenge ˹the Prophet˺, "We will never believe in you until you cause a spring to gush forth from the earth for us,
2120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or until you have a garden of palm trees and vineyards, and cause rivers to flow abundantly in it,
2121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       or cause the sky to fall upon us in pieces, as you have claimed, or bring Allah and the angels before us, face to face,
2122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or until you have a house of gold, or you ascend into heaven—and even then we will not believe in your ascension until you bring down to us a book that we can read." Say, "Glory be to my Lord! Am I not only a human messenger?"
2123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And nothing has prevented people from believing when guidance comes to them except their protest: "Has Allah sent a human as a messenger?"
2124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Had there been angels walking the earth, well settled, We would have surely sent down for them an angel from heaven as a messenger."
2125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "Sufficient is Allah as a Witness between me and you. He is certainly All-Knowing, All-Seeing of His servants."
2126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whoever Allah guides is truly guided. And whoever He leaves to stray, you will find no guardians for them besides Him. And We will drag them on their faces on the Day of Judgment—deaf, dumb, and blind. Hell will be their home. Whenever it dies down, We will flare it up for them.
2127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That is their reward for rejecting Our signs and asking ˹mockingly˺, "When we are reduced to bones and ashes, will we really be raised as a new creation?"
2128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Have they not realized that Allah, Who created the heavens and the earth, can ˹easily˺ re-create them? He has ˹already˺ set for them a time, about which there is no doubt. But the wrongdoers persist in denial.
2129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say ˹to them, O  Prophet˺, "Even if you were to possess the ˹infinite˺ treasuries of my Lord’s mercy, then you would certainly withhold ˹them˺, fearing they would run out—for humankind is ever stingy!"
2130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We surely gave Moses nine clear signs. ˹You, O  Prophet, can˺ ask the Children of Israel. When Moses came to them, Pharaoh said to him, "I really think that you, O  Moses, are bewitched."
2131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moses replied, "You know well that none has sent these ˹signs˺ down except the Lord of the heavens and the earth as insights. And I really think that you, O  Pharaoh, are doomed."
2132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Pharaoh wanted to scare the Israelites out of the land ˹of Egypt˺, but We drowned him and all of those with him.
2133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We said to the Children of Israel after Pharaoh, "Reside in the land, but when the promise of the Hereafter comes to pass, We will bring you all together."
2134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We have sent down the Quran in truth, and with the truth it has come down. We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.
2135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It is˺ a Quran We have revealed in stages so that you may recite it to people at a deliberate pace. And We have sent it down in successive revelations.
2136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "Believe in this ˹Quran˺, or do not. Indeed, when it is recited to those who were gifted with knowledge before it ˹was revealed˺, they fall upon their faces in prostration,
2137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and say, ‘Glory be to our Lord! Surely the promise of our Lord has been fulfilled.’
2138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they fall down upon their faces weeping, and it increases them in humility."
2139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Call upon Allah or call upon the Most Compassionate—whichever you call, He has the Most Beautiful Names." Do not recite your prayers too loudly or silently, but seek a way between.
2140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And say, "All praise is for Allah, Who has never had ˹any˺ offspring; And revere Him immensely."
2141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              All praise is for Allah Who has revealed the Book to His servant, allowing no crookedness in it,
2142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹making it˺ perfectly upright, to warn ˹the disbelievers˺ of a severe torment from Him; to give good news to the believers—who do good—that they will have a fine reward,
2143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            in which they will remain forever;
2144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and to warn those who claim, "Allah has offspring."
2145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They have no knowledge of this, nor did their forefathers. What a terrible claim that comes out of their mouths! They say nothing but lies.
2146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, perhaps you ˹O Prophet˺ will grieve yourself to death over their denial, if they ˹continue to˺ disbelieve in this message.
2147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have indeed made whatever is on earth as an adornment for it, in order to test which of them is best in deeds.
2148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And We will certainly reduce whatever is on it to barren ground.
2149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you ˹O Prophet˺ thought that the people of the cave and the plaque were ˹the only˺ wonders of Our signs?
2150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Remember˺ when those youths took refuge in the cave, and said, "Our Lord! Grant us mercy from Yourself and guide us rightly through our ordeal."
2151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So We caused them to fall into a dead sleep in the cave for many years,
2152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then We raised them so We may show which of the two groups would make a better estimation of the length of their stay.
2153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We relate to you ˹O Prophet˺ their story in truth. They were youths who truly believed in their Lord, and We increased them in guidance.
2154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We strengthened their hearts when they stood up and declared, "Our Lord is the Lord of the heavens and the earth. We will never call upon any god besides Him, or we would truly be uttering an outrageous lie."
2155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Then they said to one another,˺ "These people of ours have taken gods besides Him. Why do they not produce a clear proof of them? Who then does more wrong than those who fabricate lies against Allah?
2156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Since you have distanced yourselves from them and what they worship besides Allah, take refuge in the cave. Your Lord will extend His mercy to you and accommodate you in your ordeal."
2157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And you would have seen the sun, as it rose, inclining away from their cave to the right, and as it set, declining away from them to the left, while they lay in its open space. That is one of the signs of Allah. Whoever Allah guides is truly guided. But whoever He leaves to stray, you will never find for them a guiding mentor.
2158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And you would have thought they were awake, though they were asleep. We turned them over, to the right and left, while their dog stretched his forelegs at the entrance. Had you looked at them, you would have certainly fled away from them, filled with horror.
2159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And so We awakened them so that they might question one another. One of them exclaimed, "How long have you remained ˹asleep˺?" Some replied, "Perhaps a day, or part of a day." They said ˹to one another˺, "Your Lord knows best how long you have remained. So send one of you with these silver coins of yours to the city, and let him find which food is the purest, and then bring you provisions from it. Let him be ˹exceptionally˺ cautious, and do not let him give you away.
2160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For, indeed, if they find out about you, they will stone you ˹to death˺, or force you back into their faith, and then you will never succeed."
2161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That is how We caused them to be discovered so that their people might know that Allah’s promise ˹of resurrection˺ is true and that there is no doubt about the Hour. some proposed, "Build a structure around them. Their Lord knows best about them." Those who prevailed in the matter said, "We will surely build a place of worship over them."
2162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Some will say, "They were three, their dog was the fourth," while others will say, "They were five, their dog was the sixth," ˹only˺ guessing blindly. And others will say, "They were seven and their dog was the eighth." Say, ˹O Prophet,˺ "My Lord knows best their ˹exact˺ number. Only a few people know as well." So do not argue about them except with sure knowledge, nor consult any of those ˹who debate˺ about them.
2163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And never say of anything, "I will definitely do this tomorrow,"
2164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    without adding, "if Allah so wills!" But if you forget, then remember your Lord, and say, "I trust my Lord will guide me to what is more right than this."
2165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They had remained in their cave for three hundred years, adding nine.
2166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "Allah knows best how long they stayed. With Him ˹alone˺ is ˹the knowledge of˺ the unseen of the heavens and the earth. How perfectly He hears and sees! They have no guardian besides Him, and He shares His command with none."
2167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Recite what has been revealed to you from the Book of your Lord. None can change His Words, nor can you find any refuge besides Him.
2168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And patiently stick with those who call upon their Lord morning and evening, seeking His pleasure. Do not let your eyes look beyond them, desiring the luxuries of this worldly life. And do not obey those whose hearts We have made heedless of Our remembrance, who follow ˹only˺ their desires and whose state is ˹total˺ loss.
2169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And say, ˹O Prophet,˺ "˹This is˺ the truth from your Lord. Whoever wills let them believe, and whoever wills let them disbelieve." Surely We have prepared for the wrongdoers a Fire whose walls will ˹completely˺ surround them. When they cry for aid, they will be aided with water like molten metal, which will burn ˹their˺ faces. What a horrible drink! And what a terrible place to rest!
2170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As for those who believe and do good, We certainly never deny the reward of those who are best in deeds.
2171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is they who will have the Gardens of Eternity, with rivers flowing under their feet. There they will be adorned with bracelets of gold, and wear green garments of fine silk and rich brocade, reclining there on ˹canopied˺ couches. What a marvellous reward! And what a fabulous place to rest!
2172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give them ˹O Prophet˺ an example of two men. To ˹the disbelieving˺ one We gave two gardens of grapevines, which We surrounded with palm trees and placed ˹various˺ crops in between.
2173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Each garden yielded ˹all˺ its produce, never falling short. And We caused a river to flow between them.
2174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he had other resources ˹as well˺. So he boasted to a ˹poor˺ companion of his, while conversing with him, "I am greater than you in wealth and superior in manpower."
2175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he entered his property, while wronging his soul, saying, "I do not think this will ever perish,
2176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               nor do I think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, I will definitely get a far better outcome than ˹all˺ this."
2177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    His ˹believing˺ companion replied, while conversing with him, "Do you disbelieve in the One Who created you from dust, then ˹developed you˺ from a sperm-drop, then formed you into a man?
2178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But as for me: He is Allah, my Lord, and I will never associate anyone with my Lord ˹in worship˺.
2179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If only you had said, upon entering your property, ‘This is what Allah has willed! There is no power except with Allah!’ Even though you see me inferior to you in wealth and offspring,
2180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 perhaps my Lord will grant me ˹something˺ better than your garden, and send down upon your garden a thunderbolt from the sky, turning it into a barren waste.
2181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or its water may sink ˹into the earth˺, and then you will never be able to seek it out."
2182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And so all his produce was ˹totally˺ ruined, so he started to wring his hands for all he had spent on it, while it had collapsed on its trellises. He cried, "Alas! I wish I had never associated anyone with my Lord ˹in worship˺!"
2183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he had no manpower to help him against Allah, nor could he ˹even˺ help himself.
2184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      At this time, support comes ˹only˺ from Allah—the True ˹Lord˺. He is best in reward and best in outcome.
2185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And give them a parable of this worldly life. ˹It is˺ like the plants of the earth, thriving when sustained by the rain We send down from the sky. Then they ˹soon˺ turn into chaff scattered by the wind. And Allah is fully capable of ˹doing˺ all things.
2186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wealth and children are the adornment of this worldly life, but the everlasting good deeds are far better with your Lord in reward and in hope.
2187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Beware of˺ the Day We will blow the mountains away, and you will see the earth laid bare. And We will gather all ˹humankind˺, leaving none behind.
2188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will be presented before your Lord in rows, ˹and the deniers will be told,˺ "You have surely returned to Us ˹all alone˺ as We created you the first time, although you ˹always˺ claimed that We would never appoint a time for your return."
2189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the record ˹of deeds˺ will be laid ˹open˺, and you will see the wicked in fear of what is ˹written˺ in it. They will cry, "Woe to us! What kind of record is this that does not leave any sin, small or large, unlisted?" They will find whatever they did present ˹before them˺. And your Lord will never wrong anyone.
2190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹remember˺ when We said to the angels, "Prostrate before Adam," so they all did—but not Iblis, who was one of the jinn, but he rebelled against the command of his Lord. Would you then take him and his descendants as patrons instead of Me, although they are your enemy? What an evil alternative for the wrongdoers ˹to choose˺!
2191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I never called them to witness the creation of the heavens and the earth or ˹even˺ their own creation, nor would I take the misleaders as helpers.
2192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹beware of˺ the Day He will say, "Call upon those you claimed were My associate-gods." So they will call them, but will receive no response. And We will make them ˹all˺ share in the same doom.
2193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The wicked will see the Fire and realize that they are bound to fall into it, and will find no way to avoid it.
2194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have surely set forth in this Quran every ˹kind of˺ lesson for people, but humankind is the most argumentative of all beings.
2195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And nothing prevents people from believing when guidance comes to them and from seeking their Lord’s forgiveness except ˹their demand˺ to meet the same fate of earlier deniers or that the torment would confront them face to face.
2196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We do not send the messengers except as deliverers of good news and warners. But the disbelievers argue in falsehood, ˹hoping˺ to discredit the truth with it, and make a mockery of My revelations and warnings.
2197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And who does more wrong than those who, when reminded of their Lord’s revelations, turn away from them and forget what their own hands have done? We have certainly cast veils over their hearts—leaving them unable to comprehend this ˹Quran˺—and deafness in their ears. And if you ˹O Prophet˺ invite them to ˹true˺ guidance, they will never be ˹rightly˺ guided.
2198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Your Lord is the All-Forgiving, Full of Mercy. If He were to seize them ˹immediately˺ for what they commit, He would have certainly hastened their punishment. But they have an appointed time, from which they will find no refuge.
2199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Those ˹are the˺ societies We destroyed when they persisted in wrong, and We had set a time for their destruction.
2200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when Moses said to his young assistant, "I will never give up until I reach the junction of the two seas, even if I travel for ages."
2201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But when they ˹finally˺ reached the point where the seas met, they forgot their ˹salted˺ fish, and it made its way into the sea, slipping away ˹wondrously˺.
2202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they had passed further, he said to his assistant, "Bring us our meal! We have certainly been exhausted by today’s journey."
2203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He replied, "Do you remember when we rested by the rock? ˹That is when˺ I forgot the fish. None made me forget to mention this except Satan. And the fish made its way into the sea miraculously."
2204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Moses responded, "That is ˹exactly˺ what we were looking for." So they returned, retracing their footsteps.
2205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There they found a servant of Ours, to whom We had granted mercy from Us and enlightened with knowledge of Our Own.
2206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moses said to him, "May I follow you, provided that you teach me some of the right guidance you have been taught?"
2207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He said, "You certainly cannot be patient ˹enough˺ with me.
2208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And how can you be patient with what is beyond your ˹realm of˺ knowledge?"
2209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses assured ˹him˺, "You will find me patient, Allah willing, and I will not disobey any of your orders."
2210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He responded, "Then if you follow me, do not question me about anything until I ˹myself˺ clarify it for you."
2211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So they set out, but after they had boarded a ship, the man made a hole in it. Moses protested, "Have you done this to drown its people? You have certainly done a terrible thing!"
2212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He replied, "Did I not say that you cannot have patience with me?"
2213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moses pleaded, "Excuse me for forgetting, and do not be hard on me."
2214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So they proceeded until they came across a boy, and the man killed him. Moses protested, "Have you killed an innocent soul, who killed no one? You have certainly done a horrible thing."
2215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He answered, "Did I not tell you that you cannot have patience with me?"
2216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses replied, "If I ever question you about anything after this, then do not keep me in your company, for by then I would have given you enough of an excuse."
2217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So they moved on until they came to the people of a town. They asked them for food, but the people refused to give them hospitality. There they found a wall ready to collapse, so the man set it right. Moses protested, "If you wanted, you could have demanded a fee for this."
2218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He replied, "This is the parting of our ways. I will explain to you what you could not bear patiently.
2219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             "As for the ship, it belonged to some poor people, working at sea. So I intended to damage it, for there was a ˹tyrant˺ king ahead of them who seizes every ˹good˺ ship by force.
2220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "And as for the boy, his parents were ˹true˺ believers, and we feared that he would pressure them into defiance and disbelief.
2221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So we hoped that their Lord would give them another, more virtuous and caring in his place.
2222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "And as for the wall, it belonged to two orphan boys in the city, and under the wall was a treasure that belonged to them, and their father had been a righteous man. So your Lord willed that these children should come of age and retrieve their treasure, as a mercy from your Lord. I did not do it ˹all˺ on my own. This is the explanation of what you could not bear patiently."
2223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They ask you ˹O Prophet˺ about Ⱬul-Qarnain. Say, "I will relate to you something of his narrative."
2224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely We established him in the land, and gave him the means to all things.
2225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So he travelled a course,
2226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               until he reached the setting ˹point˺ of the sun, which appeared to him to be setting in a spring of murky water, where he found some people. We said, "O Ⱬul-Qarnain! Either punish them or treat them kindly."
2227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He responded, "Whoever does wrong will be punished by us, then will be returned to their Lord, Who will punish them with a horrible torment.
2228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those who believe and do good, they will have the finest reward, and we will assign them easy commands."
2229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then he travelled a ˹different˺ course
2230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   until he reached the rising ˹point˺ of the sun. He found it rising on a people for whom We had provided no shelter from it.
2231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So it was. And We truly had full knowledge of him.
2232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then he travelled a ˹third˺ course
2233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               until he reached ˹a pass˺ between two mountains. He found in front of them a people who could hardly understand ˹his˺ language.
2234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They pleaded, "O Ⱬul-Qarnain! Surely Gog and Magog are spreading corruption throughout the land. Should we pay you tribute, provided that you build a wall between us and them?"
2235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He responded, "What my Lord has provided for me is far better. But assist me with resources, and I will build a barrier between you and them.
2236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bring me blocks of iron!" Then, when he had filled up ˹the gap˺ between the two mountains, he ordered, "Blow!" When the iron became red hot, he said, "Bring me molten copper to pour over it."
2237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so the enemies could neither scale nor tunnel through it.
2238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He declared, "This is a mercy from my Lord. But when the promise of my Lord comes to pass, He will level it to the ground. And my Lord’s promise is ever true."
2239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On that Day, We will let them and We will gather all ˹people˺ together.
2240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                On that Day We will display Hell clearly for the disbelievers,
2241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            those who turned a blind eye to My Reminder and could not stand listening ˹to it˺.
2242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do the disbelievers think they can ˹simply˺ take My servants as lords instead of Me? We have surely prepared Hell as an accommodation for the disbelievers.
2243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Shall we inform you of who will lose the most deeds?
2244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹They are˺ those whose efforts are in vain in this worldly life, while they think they are doing good!"
2245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is they who reject the signs of their Lord and their meeting with Him, rendering their deeds void, so We will not give their deeds any weight on Judgment Day.
2246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That is their reward: Hell, for their disbelief and mockery of My signs and messengers.
2247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, those who believe and do good will have the Gardens of Paradise as an accommodation,
2248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     where they will be forever, never desiring anywhere else.
2249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "If the ocean were ink for ˹writing˺ the Words of my Lord, it would certainly run out before the Words of my Lord were finished, even if We refilled it with its equal."
2250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So whoever hopes for the meeting with their Lord, let them do good deeds and associate none in the worship of their Lord."
2251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Kãf-Ha-Ya-’Aĩn- sãd.
2252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹This is˺ a reminder of your Lord’s mercy to His servant Zachariah,
2253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      when he cried out to his Lord privately,
2254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              saying, "My Lord! Surely my bones have become brittle, and grey hair has spread across my head, but I have never been disappointed in my prayer to You, my Lord!
2255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I am concerned about ˹the faith of˺ my relatives after me, since my wife is barren. So grant me, by Your grace, an heir,
2256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who will inherit ˹prophethood˺ from me and the family of Jacob, and make him, O  Lord, pleasing ˹to You˺!"
2257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹The angels announced,˺ "O Zachariah! Indeed, We give you the good news of ˹the birth of˺ a son, whose name will be John—a name We have not given to anyone before."
2258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He wondered, "My Lord! How can I have a son when my wife is barren, and I have become extremely old?"
2259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An angel replied, "So will it be! Your Lord says, ‘It is easy for Me, just as I created you before, when you were nothing!’"
2260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Zachariah said, "My Lord! Grant me a sign." He responded, "Your sign is that you will not ˹be able to˺ speak to people for three nights, despite being healthy."
2261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So he came out to his people from the sanctuary, signalling to them to glorify ˹Allah˺ morning and evening.
2262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹It was later said,˺ "O John! Hold firmly to the Scriptures." And We granted him wisdom while ˹he was still˺ a child,
2263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             as well as purity and compassion from Us. And he was God-fearing,
2264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and kind to his parents. He was neither arrogant nor disobedient.
2265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Peace be upon him the day he was born, and the day of his death, and the day he will be raised back to life!
2266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And mention in the Book ˹O Prophet, the story of˺ Mary when she withdrew from her family to a place in the east,
2267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   screening herself off from them. Then We sent to her Our angel, ˹Gabriel,˺ appearing before her as a man, perfectly formed.
2268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           She appealed, "I truly seek refuge in the Most Compassionate from you! ˹So leave me alone˺ if you are God-fearing."
2269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He responded, "I am only a messenger from your Lord, ˹sent˺ to bless you with a pure son."
2270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      She wondered, "How can I have a son when no man has ever touched me, nor am I unchaste?"
2271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He replied, "So will it be! Your Lord says, ‘It is easy for Me. And so will We make him a sign for humanity and a mercy from Us.’ It is a matter ˹already˺ decreed."
2272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So she conceived him and withdrew with him to a remote place.
2273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the pains of labour drove her to the trunk of a palm tree. She cried, "Alas! I wish I had died before this, and was a thing long forgotten!"
2274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So a voice reassured her from below her, "Do not grieve! Your Lord has provided a stream at your feet.
2275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And shake the trunk of this palm tree towards you, it will drop fresh, ripe dates upon you.
2276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So eat and drink, and put your heart at ease. But if you see any of the people, say, ‘I have vowed silence to the Most Compassionate, so I am not talking to anyone today.’"
2277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then she returned to her people, carrying him. They said ˹in shock˺, "O Mary! You have certainly done a horrible thing!
2278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O  sister of Aaron! Your father was not an indecent man, nor was your mother unchaste."
2279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So she pointed to the baby. They exclaimed, "How can we talk to someone who is an infant in the cradle?"
2280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Jesus˺ declared, "I am truly a servant of Allah. He has destined me to be given the Scripture and to be a prophet.
2281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He has made me a blessing wherever I go, and bid me to establish prayer and give alms-tax as long as I live,
2282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and to be kind to my mother. He has not made me arrogant or defiant.
2283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Peace be upon me the day I was born, the day I die, and the day I will be raised back to life!"
2284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That is Jesus, son of Mary. ˹And this is˺ a word of truth, about which they dispute.
2285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is not for Allah to take a son! Glory be to Him. When He decrees a matter, He simply tells it, "Be!" And it is!
2286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Jesus also declared,˺ "Surely Allah is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path."
2287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the disbelievers when they face a tremendous Day!
2288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How clearly will they hear and see on the Day they will come to Us! But today the wrongdoers are clearly astray.
2289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And warn them ˹O Prophet˺ of the Day of Regret, when all matters will be settled, while they are ˹engrossed˺ in heedlessness and disbelief.
2290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, it is We Who will succeed the earth and whoever is on it. And to Us they will ˹all˺ be returned.
2291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And mention in the Book ˹O Prophet, the story of˺ Abraham. He was surely a man of truth and a prophet.
2292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember˺ when he said to his father, "O dear father! Why do you worship what can neither hear nor see, nor benefit you at all?
2293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O  dear father! I have certainly received some knowledge which you have not received, so follow me and I will guide you to the Straight Path.
2294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O  dear father! Do not worship Satan. Surely Satan is ever rebellious against the Most Compassionate.
2295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O  dear father! I truly fear that you will be touched by a torment from the Most Compassionate, and become Satan’s companion ˹in Hell˺."
2296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He threatened, "How dare you reject my idols, O  Abraham! If you do not desist, I will certainly stone you ˹to death˺. So be gone from me for a long time!"
2297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Abraham responded, "Peace be upon you! I will pray to my Lord for your forgiveness. He has truly been Most Gracious to me.
2298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As I distance myself from ˹all of˺ you and from whatever you invoke besides Allah, I will ˹continue to˺ call upon my Lord ˹alone˺, trusting that I will never be disappointed in invoking my Lord."
2299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So after he had left them and what they worshipped besides Allah, We granted him Isaac and Jacob, and made each of them a prophet.
2300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We showered them with Our mercy, and blessed them with honourable mention.
2301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And mention in the Book ˹O Prophet, the story of˺ Moses. He was truly a chosen man, and was a messenger and a prophet.
2302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We called him from the right side of Mount Ṭûr, and drew him near, speaking ˹with him˺ directly.
2303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We appointed for him—out of Our grace—his brother, Aaron, as a prophet.
2304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And mention in the Book ˹O Prophet, the story of˺ Ishmael. He was truly a man of his word, and was a messenger and a prophet.
2305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He used to urge his people to pray and give alms-tax. And his Lord was well pleased with him.
2306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And mention in the Book ˹O Prophet, the story of˺ Enoch. He was surely a man of truth and a prophet.
2307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And We elevated him to an honourable status.
2308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those were ˹some of˺ the prophets who Allah has blessed from among the descendants of Adam, and of those We carried with Noah ˹in the Ark˺, and of the descendants of Abraham and Israel, and of those We ˹rightly˺ guided and chose. Whenever the revelations of the Most Compassionate were recited to them, they fell down, prostrating and weeping.
2309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But they were succeeded by generations who neglected prayer and followed their lusts and so will soon face the evil consequences.
2310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who repent, believe, and do good, it is they who will be admitted into Paradise, never being denied any reward.
2311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They will be in˺ the Gardens of Eternity, promised in trust by the Most Compassionate to His servants. Surely His promise will be fulfilled.
2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There they will never hear any idle talk—only ˹greetings of˺ peace. And there they will have their provisions morning and evening.
2313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That is Paradise, which We will grant to whoever is devout among Our servants.
2314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "We only descend by the command of your Lord. To Him belongs whatever is before us, and whatever is behind us, and everything in between. And your Lord is never forgetful.
2315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹He is the˺ Lord of the heavens, and the earth, and everything in between. So worship Him ˹alone˺, and be steadfast in His worship. Do you know of anyone equal to Him ˹in His attributes˺?"
2316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Yet ˹some˺ people ask ˹mockingly˺, "After I die, will I really be raised to life again?"
2317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do ˹such˺ people not remember that We created them before, when they were nothing?
2318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     By your Lord ˹O Prophet˺! We will surely gather them along with the devils, and then set them around Hell on their knees.
2319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then We will certainly begin by dragging out of every group the ones most defiant to the Most Compassionate.
2320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We truly know best who is most deserving of burning in it.
2321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There is none of you who will not pass over it. ˹This is˺ a decree your Lord must fulfil.
2322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then We will deliver those who were devout, leaving the wrongdoers there on their knees.
2323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When Our clear revelations are recited to them, the disbelievers ask the believers ˹mockingly˺, "Which of the two of us is better in status and superior in assembly?"
2324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Imagine, O  Prophet˺ how many peoples We have destroyed before them, who were far better in luxury and splendour!
2325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "Whoever is ˹entrenched˺ in misguidance, the Most Compassionate will allow them plenty of time, until—behold!—they face what they are threatened with: either the torment or the Hour. Only then will they realize who is worse in position and inferior in manpower."
2326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Allah increases in guidance those who are ˹rightly˺ guided. And the everlasting good deeds are far better with your Lord in reward and in outcome.
2327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have you seen ˹O Prophet˺ the one who rejects Our revelations yet boasts, "I will definitely be granted ˹plenty of˺ wealth and children ˹if there is an afterlife˺."?
2328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Has he looked into the unseen or taken a pledge from the Most Compassionate?
2329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Not at all! We certainly record whatever he claims and will increase his punishment extensively.
2330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And We will inherit what he boasts of, and he will come before Us all by himself.
2331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They have taken other gods, instead of Allah, seeking strength ˹and protection˺ through them.
2332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But no! Those ˹gods˺ will deny their worship and turn against them.
2333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you ˹O Prophet˺ not see that We have sent the devils against the disbelievers, constantly inciting them?
2334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So do not be in haste against them, for indeed We are ˹closely˺ counting down their days.
2335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Watch for˺ the Day We will gather the righteous before the Most Compassionate as an honoured delegation,
2336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and drive the wicked to Hell like a thirsty herd.
2337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    None will have the right to intercede, except those who have taken a covenant from the Most Compassionate.
2338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They say, "The Most Compassionate has offspring."
2339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You have certainly made an outrageous claim,
2340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     by which the heavens are about to burst, the earth to split apart, and the mountains to crumble to pieces
2341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 in protest of attributing children to the Most Compassionate.
2342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It does not befit ˹the majesty of˺ the Most Compassionate to have children.
2343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   There is none in the heavens or the earth who will not return to the Most Compassionate in full submission.
2344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, He fully knows them and has counted them precisely.
2345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And each of them will return to Him on the Day of Judgment all alone.
2346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for those who believe and do good, the Most Compassionate will ˹certainly˺ bless them with ˹genuine˺ love.
2347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so with it you may give good news to the righteous and warn those who are contentious.
2348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Imagine˺ how many peoples We have destroyed before them! Do you ˹still˺ see any of them, or ˹even˺ hear from them the slightest sound?
2349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ṭa-Ha.
2350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We have not revealed the Quran to you ˹O Prophet˺ to cause you distress,
2351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 but as a reminder to those in awe ˹of Allah˺.
2352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹It is˺ a revelation from the One Who created the earth and the high heavens—
2353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the Most Compassionate, ˹Who is˺ established on the Throne.
2354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To Him belongs whatever is in the heavens and whatever is on the earth and whatever is in between and whatever is underground.
2355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whether you speak openly ˹or not˺, He certainly knows what is secret and what is even more hidden.
2356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah—there is no god ˹worthy of worship˺ except Him. He has the Most Beautiful Names.
2357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Has the story of Moses reached you ˹O Prophet˺?
2358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When he saw a fire, he said to his family, "Wait here, ˹for˺ I have spotted a fire. Perhaps I can bring you a torch from it, or find some guidance at the fire."
2359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But when he approached it, he was called, "O Moses!
2360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is truly I. I am your Lord! So take off your sandals, for you are in the sacred valley of Ṭuwa.
2361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I have chosen you, so listen to what is revealed:
2362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ‘It is truly I. I am Allah! There is no god ˹worthy of worship˺ except Me. So worship Me ˹alone˺, and establish prayer for My remembrance.
2363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Hour is sure to come. My Will is to keep it hidden, so that every soul may be rewarded according to their efforts.
2364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So do not let those who disbelieve in it and follow their desires distract you from it, or you will be doomed.’"
2365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Allah added,˺ "And what is that in your right hand, O  Moses?"
2366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He replied, "It is my staff! I lean on it, and with it I beat down ˹branches˺ for my sheep, and have other uses for it."
2367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah said, "Throw it down, O  Moses!"
2368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So he did, then—behold!—it became a serpent, slithering.
2369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah said, "Take it, and have no fear. We will return it to its former state.
2370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And put your hand under your armpit, it will come out ˹shining˺ white, unblemished, as another sign,
2371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           so that We may show you some of Our greatest signs.
2372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Go to Pharaoh, for he has truly transgressed ˹all bounds˺."
2373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses prayed, "My Lord! Uplift my heart for me,
2374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and make my task easy,
2375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and remove the impediment from my tongue
2376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           so people may understand my speech,
2377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and grant me a helper from my family,
2378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Aaron, my brother.
2379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Strengthen me through him,
2380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and let him share my task,
2381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               so that we may glorify You much
2382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and remember You much,
2383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              for truly You have ˹always˺ been overseeing us."
2384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah responded, "All that you requested has been granted, O  Moses!
2385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And surely We had shown You favour before,
2386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       when We inspired your mother with this:
2387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ‘Put him into a chest, then put it into the river. The river will wash it ashore, and he will be taken by ˹Pharaoh,˺ an enemy of Mine and his.’ And I blessed you with lovability from Me ˹O Moses˺ so that you would be brought up under My ˹watchful˺ Eye.
2388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Remember˺ when your sister came along and proposed, ‘Shall I direct you to someone who will nurse him?’ So We reunited you with your mother so that her heart would be put at ease, and she would not grieve. ˹Later˺ you killed a man ˹by mistake˺, but We saved you from sorrow, as well as other tests We put you through. Then you stayed for a number of years among the people of Midian. Then you came here as pre-destined, O  Moses!
2389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I have selected you for My service.
2390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Go forth, you and your brother, with My signs and never falter in remembering Me.
2391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Go, both of you, to Pharaoh, for he has truly transgressed ˹all bounds˺.
2392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Speak to him gently, so perhaps he may be mindful ˹of Me˺ or fearful ˹of My punishment˺."
2393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They both pleaded, "Our Lord! We fear that he may be quick to harm us or act tyrannically."
2394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah reassured ˹them˺, "Have no fear! I am with you, hearing and seeing.
2395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So go to him and say, ‘Indeed we are both messengers from your Lord, so let the Children of Israel go with us, and do not oppress them. We have come to you with a sign from your Lord. And salvation will be for whoever follows the ˹right˺ guidance.
2396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It has indeed been revealed to us that the punishment will be upon whoever denies ˹the truth˺ and turns away.’"
2397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pharaoh asked, "Who then is the Lord of you two, O  Moses?"
2398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He answered, "Our Lord is the One Who has given everything its ˹distinctive˺ form, then guided ˹it˺."
2399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pharaoh asked, "And what about previous peoples?"
2400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He replied, "That knowledge is with my Lord in a Record. My Lord neither falters nor forgets ˹anything˺."
2401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹He is the One˺ Who has laid out the earth for ˹all of˺ you, and set in it pathways for you, and sends down rain from the sky, causing various types of plants to grow,
2402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹so˺ eat and graze your cattle. Surely in this are signs for people of sound judgment.
2403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      From the earth We created you, and into it We will return you, and from it We will bring you back again.
2404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We certainly showed Pharaoh all of Our signs, but he denied them and refused ˹to believe˺.
2405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He said, "Have you come to drive us out of our land with your magic, O  Moses?
2406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We can surely meet you with similar magic. So set for us an appointment that neither of us will fail to keep, in a central place."
2407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses said, "Your appointment is on the Day of the Festival, and let the people be gathered mid-morning."
2408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pharaoh then withdrew, orchestrated his scheme, then returned.
2409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moses warned the magicians, "Woe to you! Do not fabricate a lie against Allah, or He will wipe you out with a torment. Whoever fabricates ˹lies˺ is bound to fail."
2410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the magicians disputed the matter among themselves, conversing privately.
2411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They concluded, "These two are only magicians who want to drive you out of your land with their magic, and do away with your most cherished traditions.
2412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So orchestrate your plan, then come forward in ˹perfect˺ ranks. And whoever prevails today will certainly be successful."
2413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They said, "O Moses! Either you cast, or let us be the first to cast."
2414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses responded, "No, you go first." And suddenly their ropes and staffs appeared to him—by their magic—to be slithering.
2415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Moses concealed fear within himself.
2416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We reassured ˹him˺, "Do not fear! It is certainly you who will prevail.
2417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cast what is in your right hand, and it will swallow up what they have made, for what they have made is no more than a magic trick. And magicians can never succeed wherever they go."
2418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So the magicians fell down in prostration, declaring, "We believe in the Lord of Aaron and Moses."
2419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pharaoh threatened, "How dare you believe in him before I give you permission? He must be your master who taught you magic. I will certainly cut off your hands and feet on opposite sides, and crucify you on the trunks of palm trees. You will really see whose punishment is more severe and more lasting."
2420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They responded, "By the One Who created us! We will never prefer you over the clear proofs that have come to us. So do whatever you want! Your authority only covers the ˹fleeting˺ life of this world.
2421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, we have believed in our Lord so He may forgive our sins and that magic you have forced us to practice. And Allah is far superior ˹in reward˺ and more lasting ˹in punishment˺."
2422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whoever comes to their Lord as an evildoer will certainly have Hell, where they can neither live nor die.
2423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But whoever comes to Him as a believer, having done good, they will have the highest ranks:
2424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            the Gardens of Eternity, under which rivers flow, where they will stay forever. That is the reward of those who purify themselves.
2425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We surely inspired Moses, ˹saying,˺ "Leave with My servants ˹at night˺ and strike a dry passage for them across the sea. Have no fear of being overtaken, nor be concerned ˹of drowning˺."
2426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Pharaoh pursued them with his soldiers—but how overwhelming were the waters that submerged them!
2427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹so˺ Pharaoh led his people astray, and did not guide ˹them rightly˺.
2428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O Children of Israel! We saved you from your enemy, and made an appointment with you
2429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹saying,˺ "Eat from the good things We have provided for you, but do not transgress in them, or My wrath will befall you. And whoever My wrath befalls is certainly doomed.
2430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But I am truly Most Forgiving to whoever repents, believes, and does good, then persists on ˹true˺ guidance."
2431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Allah asked,˺ "Why have you come with such haste ahead of your people, O  Moses?"
2432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He replied, "They are close on my tracks. And I have hastened to You, my Lord, so You will be pleased."
2433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah responded, "We have indeed tested your people in your absence, and the Samiri has led them astray."
2434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Moses returned to his people, furious and sorrowful. He said, "O my people! Had your Lord not made you a good promise?
2435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They argued, "We did not break our promise to you of our own free will, but we were made to carry the burden of the people’s ˹golden˺ jewellery, then we threw it ˹into the fire˺, and so did the Samiri."
2436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then he moulded for them an idol of a calf that made a lowing sound. They said, "This is your god and the god of Moses, but Moses forgot ˹where it was˺!"
2437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Did they not see that it did not respond to them, nor could it protect or benefit them?
2438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Aaron had already warned them beforehand, "O my people! You are only being tested by this, for indeed your ˹one true˺ Lord is the Most Compassionate. So follow me and obey my orders."
2439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They replied, "We will not cease to worship it until Moses returns to us."
2440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses scolded ˹his brother˺, "O Aaron! What prevented you, when you saw them going astray,
2441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    from following after me? How could you disobey my orders?"
2442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Aaron pleaded, "O son of my mother! Do not seize me by my beard or ˹the hair of˺ my head. I really feared that you would say, ‘You have caused division among the Children of Israel, and did not observe my word.’"
2443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moses then asked, "What did you think you were doing, O  Samiri?"
2444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He said, "I saw what they did not see, so I took a handful ˹of dust˺ from the hoof-prints of ˹the horse of˺ the messenger-angel ˹Gabriel˺ then cast it ˹on the moulded calf˺. This is what my lower-self tempted me into."
2445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moses said, "Go away then! And for ˹the rest of your˺ life you will surely be crying, ‘Do not touch ˹me˺!’ that you cannot escape. Now look at your god to which you have been devoted: we will burn it up, then scatter it in the sea completely."
2446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Then Moses addressed his people,˺ "Your only god is Allah, there is no god ˹worthy of worship˺ except Him. He encompasses everything in ˹His˺ knowledge."
2447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is how We relate to you ˹O Prophet˺ some of the stories of the past. And We have certainly granted you a Reminder from Us.
2448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whoever turns away from it will surely bear the burden ˹of sin˺ on the Day of Judgment,
2449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suffering its consequences forever. What an evil burden they will carry on Judgment Day!
2450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Beware of˺ the Day the Trumpet will be blown,
2451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They will whisper among themselves, "You stayed no more than ten days ˹on the earth˺."
2452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We know best what they will say—the most reasonable of them will say, "You stayed no more than a day."
2453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹if˺ they ask you ˹O Prophet˺ about the mountains, ˹then˺ say, "My Lord will wipe them out completely,
2454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             leaving the earth level and bare,
2455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          with neither depressions nor elevations to be seen."
2456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On that Day all will follow the caller ˹for assembly˺, ˹and˺ none will dare to deviate. All voices will be hushed before the Most Compassionate. Only whispers will be heard.
2457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On that Day no intercession will be of any benefit, except by those granted permission by the Most Compassionate and whose words are agreeable to Him.
2458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He ˹fully˺ knows what is ahead of them and what is behind them,
2459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all faces will be humbled before the Ever-Living, All-Sustaining. And those burdened with wrongdoing will be in loss.
2460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But whoever does good and is a believer will have no fear of being wronged or denied ˹their reward˺.
2461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And so We have sent it down as an Arabic Quran and varied the warnings in it, so perhaps they will shun evil or it may cause them to be mindful.
2462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Exalted is Allah, the True King! Do not rush to recite ˹a revelation of˺ the Quran ˹O Prophet˺ before it is ˹properly˺ conveyed to you, and pray, "My Lord! Increase me in knowledge."
2463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And indeed, We once made a covenant with Adam, but he forgot, and ˹so˺ We did not find determination in him.
2464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹remember˺ when We said to the angels, "Prostrate before Adam," so they all did—but not Iblis, who refused ˹arrogantly˺.
2465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So We cautioned, "O Adam! This is surely an enemy to you and to your wife. So do not let him drive you both out of Paradise, for you ˹O Adam˺ would then suffer ˹hardship˺.
2466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Here it is guaranteed that you will never go hungry or unclothed,
2467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nor will you ˹ever˺ suffer from thirst or ˹the sun’s˺ heat."
2468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But Satan whispered to him, saying, "O Adam! Shall I show you the Tree of Immortality and a kingdom that does not fade away?"
2469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So they both ate from the tree and then their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. So Adam disobeyed his Lord, and ˹so˺ lost his way.
2470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then his Lord chose him ˹for His grace˺, accepted his repentance, and guided him ˹rightly˺.
2471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah said, "Descend, both of you, from here together ˹with Satan˺ as enemies to each other. Then when guidance comes to you from Me, whoever follows My guidance will neither go astray ˹in this life˺ nor suffer ˹in the next˺.
2472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But whoever turns away from My Reminder will certainly have a miserable life, then We will raise them up blind on the Day of Judgment."
2473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will cry, "My Lord! Why have you raised me up blind, although I used to see?"
2474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah will respond, "It is so, just as Our revelations came to you and you neglected them, so Today you are neglected."
2475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is how We reward whoever transgresses and does not believe in the revelations of their Lord. And the punishment of the Hereafter is far more severe and more lasting.
2476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs for people of sound judgment.
2477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Had it not been for a prior decree from your Lord ˹O Prophet˺ and a term already set, their ˹instant˺ doom would have been inevitable.
2478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset, and glorify Him in the hours of the night and at both ends of the day, so that you may be pleased ˹with the reward˺.
2479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not let your eyes crave what We have allowed some of the disbelievers to enjoy; the ˹fleeting˺ splendour of this worldly life, which We test them with. But your Lord’s provision ˹in the Hereafter˺ is far better and more lasting.
2480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bid your people to pray, and be diligent in ˹observing˺ it. We do not ask you to provide. It is We Who provide for you. And the ultimate outcome is ˹only˺ for ˹the people of˺ righteousness.
2481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They demand, "If only he could bring us a sign from his Lord!"
2482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had We destroyed them with a torment before this ˹Prophet came˺, they would have surely argued, "Our Lord! If only You had sent us a messenger, we would have followed Your revelations before being humiliated and put to shame."
2483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say ˹to them, O  Prophet˺, "Each ˹of us˺ is waiting, so keep waiting! You will soon know who is on the Straight Path and is ˹rightly˺ guided."
2484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹The time of˺ people’s judgment has drawn near, yet they are heedlessly turning away.
2485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whatever new reminder comes to them from their Lord, they only listen to it jokingly,
2486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  with their hearts ˹totally˺ distracted. The evildoers would converse secretly, ˹saying,˺ "Is this ˹one˺ not human like yourselves? Would you fall for ˹this˺ witchcraft, even though you can ˹clearly˺ see?"
2487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Prophet responded, "My Lord ˹fully˺ knows every word spoken in the heavens and the earth. For He is the All-Hearing, All-Knowing."
2488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet they say, "This ˹Quran˺ is a set of confused dreams! No, he has fabricated it! No, he must be a poet! So let him bring us a ˹tangible˺ sign like those ˹prophets˺ sent before."
2489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Not a ˹single˺ society We destroyed before them ever believed ˹after receiving the signs˺. Will these ˹pagans˺ then believe?
2490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.
2491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We did not give those messengers ˹supernatural˺ bodies that did not need food, nor were they immortal.
2492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then We fulfilled Our promise to them, saving them along with whoever We willed and destroying the transgressors.
2493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have surely revealed to you a Book, in which there is glory for you. Will you not then understand?
2494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Imagine˺ how many societies of wrongdoers We have destroyed, raising up other people after them!
2495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When the wrongdoers sensed ˹the arrival of˺ Our torment, they started to run away from their cities.
2496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹They were told,˺ "Do not run away! Return to your luxuries and your homes, so you may be questioned ˹about your fate˺."
2497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They cried, "Woe to us! We have surely been wrongdoers."
2498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They kept repeating their cry until We mowed them down, ˹leaving them˺ lifeless.
2499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We did not create the heavens and the earth and everything in between for sport.
2500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Had We intended to take ˹some˺ amusement, We could have found it in Our presence, if that had been Our Will.
2501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In fact, We hurl the truth against falsehood, leaving it crushed, and it quickly vanishes. And woe be to you for what you claim!
2502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To Him belong all those in the heavens and the earth. And those nearest to Him are not too proud to worship Him, nor do they tire.
2503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They glorify ˹Him˺ day and night, never wavering.
2504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Or have they taken gods from the earth, who can raise the dead?
2505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Had there been other gods besides Allah in the heavens or the earth, both ˹realms˺ would have surely been corrupted. So Glorified is Allah, Lord of the Throne, far above what they claim.
2506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He cannot be questioned about what He does, but they will ˹all˺ be questioned.
2507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or have they taken other gods besides Him? Say, ˹O Prophet,˺ "Show ˹me˺ your proof. Here is ˹the Quran,˺ the Reminder for those with me; along with ˹earlier Scriptures,˺ the Reminder for those before me." But most of them do not know the truth, so they turn away.
2508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We never sent a messenger before you ˹O Prophet˺ without revealing to him: "There is no god ˹worthy of worship˺ except Me, so worship Me ˹alone˺."
2509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they say, "The Most Compassionate has offspring!" Glory be to Him! In fact, those ˹angels˺ are only ˹His˺ honoured servants,
2510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           who do not speak until He has spoken, ˹only˺ acting at His command.
2511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He ˹fully˺ knows what is ahead of them and what is behind them. They do not intercede except for whom He approves, and they tremble in awe of Him.
2512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoever of them were to say, "I am a god besides Him," they would be rewarded with Hell by Us. This is how We reward the wrongdoers.
2513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do the disbelievers not realize that the heavens and earth were ˹once˺ one mass then We split them apart? And We created from water every living thing. Will they not then believe?
2514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We have placed firm mountains upon the earth so it does not shake with them, and made in it broad pathways so they may find their way.
2515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We have made the sky a well-protected canopy, still they turn away from its signs.
2516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And He is the One Who created the day and the night, the sun and the moon—each travelling in an orbit.
2517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have not granted immortality to any human before you ˹O Prophet˺: so if you die, will they live forever?
2518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Every soul will taste death. And We test you ˹O humanity˺ with good and evil as a trial, then to Us you will ˹all˺ be returned.
2519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When the disbelievers see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ "Is this the one who speaks ˹ill˺ of your gods?" while they disbelieve at the mention of the Most Compassionate.
2520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Humankind is made of haste. I will soon show you My signs, so do not ask Me to hasten them.
2521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They ask ˹the believers˺, "When will this threat come to pass if what you say is true?"
2522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If only the disbelievers knew that a time will come when they will not be able to keep the Fire off their faces or backs, nor will they be helped.
2523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In fact, the Hour will take them by surprise, leaving them stunned. So they will not be able to avert it, nor will it be delayed from them.
2524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.
2525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ask ˹them, O  Prophet,˺ "Who can defend you by day or by night against the Most Compassionate?" Still they turn away from the remembrance of their Lord.
2526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or do they have gods—other than Us—that can protect them? They cannot ˹even˺ protect themselves, nor will they be aided against Us.
2527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In fact, We have allowed enjoyment for these ˹Meccans˺ and their forefathers for such a long time ˹that they took it for granted˺. Do they not see that We gradually reduce ˹their˺ land from its borders? Is it they who will then prevail?
2528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "I warn you only by revelation." But the deaf cannot hear the call when they are warned!
2529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If they were touched by even a breath of your Lord’s torment, they would certainly cry, "Woe to us! We have really been wrongdoers."
2530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We will set up the scales of justice on the Day of Judgment, so no soul will be wronged in the least. And ˹even˺ if a deed is the weight of a mustard seed, We will bring it forth. And sufficient are We as a ˹vigilant˺ Reckoner.
2531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We granted Moses and Aaron the standard ˹to distinguish between right and wrong˺—a light and a reminder for the righteous,
2532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 who are in awe of their Lord without seeing Him, and are fearful of the Hour.
2533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And this ˹Quran˺ is a blessed reminder which We have revealed. Will you ˹pagans˺ then deny it?
2534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And indeed, We had granted Abraham sound judgment early on, for We knew him well ˹to be worthy of it˺.
2535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Remember˺ when he questioned his father and his people, "What are these statues to which you are so devoted?"
2536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They replied, "We found our forefathers worshipping them."
2537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He responded, "Indeed, you and your forefathers have been clearly astray."
2538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They asked, "Have you come to us with the truth, or is this a joke?"
2539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He replied, "In fact, your Lord is the Lord of the heavens and the earth, Who created them ˹both˺. And to that I bear witness."
2540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Then he said to himself,˺ "By Allah! I will surely plot against your idols after you have turned your backs and gone away."
2541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So he smashed them into pieces, except the biggest of them, so they might turn to it ˹for answers˺.
2542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They protested, "Who dared do this to our gods? It must be an evildoer!"
2543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Some said, "We heard a young man, called Abraham, speaking ˹ill˺ of them."
2544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They demanded, "Bring him before the eyes of the people, so that they may witness ˹his trial˺."
2545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They asked, "Was it you who did this to our gods, O  Abraham?"
2546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He replied ˹sarcastically˺, "No, this one—the biggest of them—did it! So ask them, if they can talk!"
2547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they came back to their senses, saying ˹to one another˺, "You yourselves are truly the wrongdoers!"
2548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they ˹quickly˺ regressed to their ˹original˺ mind-set, ˹arguing,˺ "You already know that those ˹idols˺ cannot talk."
2549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He rebuked ˹them˺, "Do you then worship—instead of Allah—what can neither benefit nor harm you in any way?
2550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shame on you and whatever you worship instead of Allah! Do you not have any sense?"
2551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They concluded, "Burn him up to avenge your gods, if you must act."
2552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We ordered, "O fire! Be cool and safe for Abraham!"
2553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They had sought to harm him, but We made them the worst losers.
2554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then We delivered him, along with Lot, to the land We had showered with blessings for all people.
2555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And We blessed him with Isaac ˹as a son˺ and Jacob ˹as a grandson˺, as an additional favour—making all of them righteous.
2556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We ˹also˺ made them leaders, guiding by Our command, and inspired them to do good deeds, establish prayer, and pay alms-tax. And they were devoted to Our worship.
2557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And to Lot We gave wisdom and knowledge, and delivered him from the society engrossed in shameful practices. They were certainly an evil, rebellious people.
2558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And We admitted him into Our mercy, ˹for˺ he was truly one of the righteous.
2559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when Noah had cried out to Us earlier, so We responded to him and delivered him and his family from the great distress.
2560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We made him prevail over those who had rejected Our signs. They were truly an evil people, so We drowned them all.
2561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when David and Solomon passed judgment regarding the crops ruined ˹at night˺ by someone’s sheep, and We were witness to their judgments.
2562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We guided ˹young˺ Solomon to a fairer settlement, and granted each of them wisdom and knowledge. We subjected the mountains as well as the birds to hymn ˹Our praises˺ along with David. It is We Who did ˹it all˺.
2563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We taught him the art of making body armour to protect you in battle. Will you then be grateful?
2564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And to Solomon We subjected the raging winds, blowing by his command to the land We had showered with blessings. It is We Who know everything.
2565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹We subjected˺ some jinn and performed other duties. It is We Who kept them in check.
2566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember˺ when Job cried out to his Lord, "I have been touched with adversity, and You are the Most Merciful of the merciful."
2567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So We answered his prayer and removed his adversity, and gave him back his family, twice as many, as a mercy from Us and a lesson for the ˹devoted˺ worshippers.
2568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ Ishmael, Enoch, and Ⱬul-Kifl. They were all steadfast.
2569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We admitted them into Our mercy, for they were truly of the righteous.
2570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹remember˺ when the Man of the Whale stormed off ˹from his city˺ in a rage, thinking We would not restrain him. he cried out, "There is no god ˹worthy of worship˺ except You. Glory be to You! I have certainly done wrong."
2571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So We answered his prayer and rescued him from anguish. And so do We save the ˹true˺ believers.
2572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹remember˺ when Zachariah cried out to his Lord, "My Lord! Do not leave me childless, though You are the Best of Successors."
2573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So We answered his prayer, granted him John, and made his wife fertile. Indeed, they used to race in doing good, and call upon Us with hope and fear, totally humbling themselves before Us.
2574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ the one who guarded her chastity, so We breathed into her through Our angel, ˹Gabriel,˺ making her and her son a sign for all peoples.
2575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹O prophets!˺ Indeed, this religion of yours is ˹only˺ one, and I am your Lord, so worship Me ˹alone˺.
2576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet the people have divided it into sects. But to Us they will all return.
2577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So whoever does good and is a believer will never be denied ˹the reward for˺ their striving, for We are recording it all.
2578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is impossible for a society which We have destroyed to ever rise again,
2579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              until ˹after˺ Gog and Magog have broken loose ˹from the barrier˺, swarming down from every hill,
2580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ushering in the True Promise. Then—behold!—the disbelievers will stare ˹in horror, crying,˺ "Oh, woe to us! We have truly been heedless of this. In fact, we have been wrongdoers."
2581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Certainly you ˹disbelievers˺ and whatever you worship instead of Allah will be the fuel of Hell. You are ˹all˺ bound to enter it.
2582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had those idols been ˹true˺ gods, they would not have entered it. And they will be there forever.
2583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In it they will groan, and will not be able to hear.
2584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely those for whom We have destined the finest reward will be kept far away from Hell,
2585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     not even hearing the slightest hissing from it. And they will delight forever in what their souls desire.
2586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Supreme Horror ˹of that Day˺ will not disturb them, and the angels will greet them, ˹saying,˺ "This is your Day, which you have been promised."
2587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On that Day We will roll up the heavens like a scroll of writings. Just as We produced the first creation, ˹so˺ shall We reproduce it. That is a promise binding on Us. We truly uphold ˹Our promises˺!
2588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely, following the ˹heavenly˺ Record, We decreed in the Scriptures: "My righteous servants shall inherit the land."
2589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely this ˹Quran˺ is sufficient ˹as a reminder˺ for those devoted to worship.
2590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have sent you ˹O Prophet˺ only as a mercy for the whole world.
2591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "What has been revealed to me is this: ‘Your God is only One God.’ Will you then submit?"
2592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If they turn away, then say, "I have warned you all equally. I do not know if what you are threatened with is near or far.
2593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah surely knows what you say openly and whatever you hide.
2594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I do not know if this ˹delay˺ is possibly a test for you and an enjoyment for a while."
2595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹In the end,˺ the Prophet said, "My Lord! Judge ˹between us˺ in truth. And our Lord is the Most Compassionate, Whose help is sought against what you claim."
2596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O humanity! Fear your Lord, for the ˹violent˺ quaking at the Hour is surely a dreadful thing.
2597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Day you see it, every nursing mother will abandon what she is nursing, and every pregnant woman will deliver her burden ˹prematurely˺. And you will see people ˹as if they were˺ drunk, though they will not be drunk; but the torment of Allah is ˹terribly˺ severe.
2598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Still˺ there are some who dispute about Allah without knowledge, and follow every rebellious devil.
2599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It has been decreed for such devils that whoever takes them as a guide will be misguided and led by them into the torment of the Blaze.
2600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O humanity! If you are in doubt about the Resurrection, then ˹know that˺ We did create you—in order to demonstrate ˹Our power˺ to you. ˹Then˺ We settle whatever ˹embryo˺ We will in the womb for an appointed term, then bring you forth as infants, so that you may reach your prime. Some of you ˹may˺ die ˹young˺, while others are left to reach the most feeble stage of life so that they may know nothing after having known much. And you see the earth lifeless, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell, producing every type of pleasant plant.
2601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That is because Allah ˹alone˺ is the Truth, He ˹alone˺ gives life to the dead, and He ˹alone˺ is Most Capable of everything.
2602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And certainly the Hour is coming, there is no doubt about it. And Allah will surely resurrect those in the graves.
2603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Still˺ there are some who dispute about Allah without knowledge, guidance, or an enlightening scripture,
2604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         turning away ˹in pride˺ to lead ˹others˺ astray from Allah’s Way. They will suffer disgrace in this world, and on the Day of Judgment We will make them taste the torment of burning.
2605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹They will be told,˺ "This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation."
2606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there are some who worship Allah on the verge ˹of faith˺: if they are blessed with something good, they are content with it; but if they are afflicted with a trial, they relapse ˹into disbelief˺, losing this world and the Hereafter. That is ˹truly˺ the clearest loss.
2607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They call besides Allah what can neither harm nor benefit them. That is ˹truly˺ the farthest one can stray.
2608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They invoke those whose worship leads to harm, not benefit. What an evil patron and what an evil associate!
2609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, Allah will admit those who believe and do good into Gardens, under which rivers flow. Surely Allah does what He wills.
2610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoever thinks that Allah will not help His Prophet in this world and the Hereafter, let them stretch out a rope to the ceiling and strangle themselves, then let them see if this plan will do away with ˹the cause of˺ their rage.
2611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so We revealed this ˹Quran˺ as clear verses. And Allah certainly guides whoever He wills.
2612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, the believers, Jews, Sabians, and the polytheists—Allah will judge between them ˹all˺ on Judgment Day. Surely Allah is a Witness over all things.
2613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you not see that to Allah bow down ˹in submission˺ all those in the heavens and all those on the earth, as well as the sun, the moon, the stars, the mountains, the trees, and ˹all˺ living beings, as well as many humans, while many are deserving of punishment. And whoever Allah disgraces, none can honour. Surely Allah does what He wills.
2614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are two opposing groups that disagree about their Lord: as for the disbelievers, garments of Fire will be cut out for them and boiling water will be poured over their heads,
2615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  melting whatever is in their bellies, along with their skin.
2616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And awaiting them are maces of iron.
2617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whenever they try to escape from Hell—out of anguish—they will be forced back into it, ˹and will be told,˺ "Taste the torment of burning!"
2618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹But˺ Allah will surely admit those who believe and do good into Gardens, under which rivers flow, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk,
2619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           for they have been guided to the best of speech, and they have been guided to the Commendable Path.
2620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, those who persist in disbelief and hinder ˹others˺ from the Way of Allah and from the Sacred Mosque We will cause them to taste a painful punishment.
2621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when We assigned to Abraham the site of the House, ˹saying,˺ "Do not associate anything with Me ˹in worship˺ and purify My House for those who circle ˹the Ka’bah˺, stand ˹in prayer˺, and bow and prostrate themselves.
2622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Call ˹all˺ people to the pilgrimage. They will come to you on foot and on every lean camel from every distant path,
2623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           so they may obtain the benefits ˹in store˺ for them, and pronounce the Name of Allah on appointed days over the sacrificial animals He has provided for them. So eat from their meat and feed the desperately poor.
2624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then let them groom themselves, fulfil their vows, and circle the Ancient House."
2625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That is so. And whoever honours the rituals of Allah, it is best for them in the sight of their Lord. The ˹meat of˺ cattle has been made lawful for you, except what has ˹already˺ been recited to you. So shun the impurity of idolatry, and shun words of falsehood.
2626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Be upright ˹in devotion˺ to Allah, associating none with Him ˹in worship˺. For whoever associates ˹others˺ with Allah is like someone who has fallen from the sky and is either snatched away by birds or swept by the wind to a remote place.
2627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That is so. And whoever honours the symbols of Allah, it is certainly out of the piety of the heart.
2628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You may benefit from sacrificial animals for an appointed term, then their place of sacrifice is at the Ancient House.
2629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For every community We appointed a rite of sacrifice so that they may pronounce the Name of Allah over the sacrificial animals He has provided for them. For your God is only One God, so submit yourselves to Him ˹alone˺. And give good news ˹O Prophet˺ to the humble:
2630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               those whose hearts tremble at the remembrance of Allah, who patiently endure whatever may befall them, and who establish prayer and donate from what We have provided for them.
2631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have made sacrificial camels ˹and cattle˺ among the symbols of Allah, in which there is ˹much˺ good for you. So pronounce the Name of Allah over them when they are lined up ˹for sacrifice˺. Once they have fallen ˹lifeless˺ on their sides, you may eat from their meat, and feed the needy—those who do not beg, and those who do. In this way We have subjected these ˹animals˺ to you so that you may be grateful.
2632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither their meat nor blood reaches Allah. Rather, it is your piety that reaches Him. This is how He has subjected them to you so that you may proclaim the greatness of Allah for what He has guided you to, and give good news to the good-doers.
2633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, Allah defends those who believe. Surely Allah does not like whoever is deceitful, ungrateful.
2634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Permission ˹to fight back˺ is ˹hereby˺ granted to those being fought, for they have been wronged. And Allah is truly Most Capable of helping them ˹prevail˺.
2635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹They are˺ those who have been expelled from their homes for no reason other than proclaiming: "Our Lord is Allah." Had Allah not repelled ˹the aggression of˺ some people by means of others, destruction would have surely claimed monasteries, churches, synagogues, and mosques in which Allah’s Name is often mentioned. Allah will certainly help those who stand up for Him. Allah is truly All-Powerful, Almighty.
2636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They are˺ those who, if established in the land by Us, would perform prayer, pay alms-tax, encourage what is good, and forbid what is evil. And with Allah rests the outcome of all affairs.
2637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If they deny you ˹O Prophet˺, so did the people of Noah before them, as well as ˹the tribes of˺ ’Ȃd and Thamûd,
2638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     the people of Abraham, the people of Lot,
2639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and the residents of Midian. And Moses was denied ˹too˺. But I delayed ˹the fate of˺ the disbelievers ˹until their appointed time˺ then seized them. And how severe was My response!
2640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Many are the societies We have destroyed for persisting in wrongdoing, leaving them in total ruin. ˹Many are˺ also the abandoned wells and lofty palaces!
2641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Have they not travelled throughout the land so their hearts may reason, and their ears may listen? Indeed, it is not the eyes that are blind, but it is the hearts in the chests that grow blind.
2642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They challenge you ˹O Prophet˺ to hasten the torment. And Allah will never fail in His promise. But a day with your Lord is indeed like a thousand years by your counting.
2643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Many are the societies whose end We delayed while they did wrong, then seized them. And to Me is the final return.
2644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "O humanity! I am only sent to you with a clear warning.
2645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So those who believe and do good will have forgiveness and an honourable provision.
2646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But those who strive to discredit Our revelations, they will be the residents of the Hellfire."
2647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whenever We sent a messenger or a prophet before you ˹O Prophet˺ and he recited ˹Our revelations˺, Satan would influence ˹people’s understanding of˺ his recitation. But ˹eventually˺ Allah would eliminate Satan’s influence. Then Allah would ˹firmly˺ establish His revelations. And Allah is All-Knowing, All-Wise.
2648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All that so He may make Satan’s influence a trial for those ˹hypocrites˺ whose hearts are sick and those ˹disbelievers˺ whose hearts are hardened. Surely the wrongdoers are totally engrossed in opposition.
2649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹This is˺ also so that those gifted with knowledge would know that this ˹revelation˺ is the truth from your Lord, so they have faith in it, and so their hearts would submit humbly to it. And Allah surely guides the believers to the Straight Path.
2650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yet the disbelievers will persist in doubt about this ˹revelation˺ until the Hour takes them by surprise, or the torment of a terminating Day comes to them.
2651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All authority on that Day is for Allah ˹alone˺. He will judge between them. So those who believe and do good will be in the Gardens of Bliss.
2652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But those who disbelieve and deny Our revelations, it is they who will suffer a humiliating punishment.
2653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those who emigrate in the cause of Allah and then are martyred or die, Allah will indeed grant them a good provision. Surely Allah is the Best Provider.
2654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He will certainly admit them into a place they will be pleased with. For Allah is truly All-Knowing, Most Forbearing.
2655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That is so. And whoever retaliates in equivalence to the injury they have received, and then are wronged ˹again˺, Allah will certainly help them. Surely Allah is Ever-Pardoning, All-Forgiving.
2656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That is because Allah causes the night to merge into the day, and the day into the night. Indeed, Allah is All-Hearing, All-Seeing.
2657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and Allah ˹alone˺ is truly the Most High, All-Great.
2658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do you not see that Allah sends down rain from the sky, then the earth becomes green? Surely Allah is Most Subtle, All-Aware.
2659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Him belongs whatever is in the heavens and whatever is on the earth. Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.
2660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do you not see that Allah has subjected to you whatever is in the earth as well as the ships ˹that˺ sail through the sea by His command? He keeps the sky from falling down on the earth except by His permission. Surely Allah is Ever Gracious and Most Merciful to humanity.
2661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And He is the One Who gave you life, then will cause you to die, and then will bring you back to life. ˹But˺ surely humankind is ever ungrateful.
2662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For every community We appointed a code So do not let them dispute with you ˹O Prophet˺ in this matter. And invite ˹all˺ to your Lord, for you are truly on the Right Guidance.
2663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if they argue with you, then say, "Allah knows best what you do."
2664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah will judge between you ˹all˺ on Judgment Day regarding your differences.
2665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do you not know that Allah ˹fully˺ knows whatever is in the heavens and the earth? Surely it is all ˹written˺ in a Record. That is certainly easy for Allah.
2666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet they worship besides Allah that for which He has sent down no authority, and of which they have no knowledge. The wrongdoers will have no helper.
2667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whenever Our clear revelations are recited to them, you ˹O Prophet˺ recognize rage on the faces of the disbelievers, as if they are going to snap at those who recite Our revelations to them. Say, "Shall I inform you of something far more enraging than that? ˹It is˺ the Fire with which Allah has threatened those who disbelieve. What an evil destination!"
2668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O humanity! A lesson is set forth, so listen to it ˹carefully˺: those ˹idols˺ you invoke besides Allah can never create ˹so much as˺ a fly, even if they ˹all˺ were to come together for that. And if a fly were to snatch anything away from them, they cannot ˹even˺ retrieve it from the fly. How powerless are those who invoke and those invoked!
2669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They have not shown Allah the reverence He deserves. Surely Allah is All-Powerful, Almighty.
2670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah selects messengers from both angels and people, for Allah is truly All-Hearing, All-Seeing.
2671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He knows what is ahead of them and what is behind them. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
2672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Bow down, prostrate yourselves, worship your Lord, and do ˹what is˺ good so that you may be successful.
2673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Strive for ˹the cause of˺ Allah in the way He deserves, for ˹it is˺ He ˹Who˺ has chosen you, and laid upon you no hardship in the religion—the way of your forefather Abraham. ˹It is Allah˺ Who named you ‘the ones who submit’ ˹in the˺ earlier ˹Scriptures˺ and in this ˹Quran˺, so that the Messenger may be a witness over you, and that you may be witnesses over humanity. So establish prayer, pay alms-tax, and hold fast to Allah. He ˹alone˺ is your Guardian. What an excellent Guardian, and what an excellent Helper!
2674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Successful indeed are the believers:
2675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        those who humble themselves in prayer;
2676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    those who avoid idle talk;
2677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       those who pay alms-tax;
2678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those who guard their chastity
2679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,
2680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          but whoever seeks beyond that are the transgressors;
2681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹the believers are also˺ those who are true to their trusts and covenants;
2682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and those who are ˹properly˺ observant of their prayers.
2683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the ones who will be awarded
2684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Paradise as their own. They will be there forever.
2685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And indeed, We created humankind from an extract of clay,
2686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   then placed each ˹human˺ as a sperm-drop in a secure place,
2687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                then We developed the drop into a clinging clot ˹of blood˺, then developed the clot into a lump ˹of flesh˺, then developed the lump into bones, then clothed the bones with flesh, then We brought it into being as a new creation. So Blessed is Allah, the Best of Creators.
2688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               After that you will surely die,
2689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          then on the Day of Judgment you will be resurrected.
2690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And indeed, We created above you seven levels ˹of heaven˺. We are never unmindful of ˹Our˺ creation.
2691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We send down rain from the sky in perfect measure, causing it to soak into the earth. And We are surely able to take it away.
2692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              With it We produce for you gardens of palm trees and grapevines, in which there are abundant fruits, and from which you may eat,
2693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     as well as ˹olive˺ trees which grow at Mount Sinai, providing oil and a condiment to eat.
2694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there is certainly a lesson for you in cattle, from whose bellies We give you ˹milk˺ to drink, and in them are many other benefits for you, and from them you may eat.
2695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And you are carried upon ˹some of˺ them and upon ships.
2696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, We sent Noah to his people. He declared, "O my people! Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?"
2697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the disbelieving chiefs of his people said ˹to the masses˺, "This is only a human like you, who wants to be superior to you. Had Allah willed, He could have easily sent down angels ˹instead˺. We have never heard of this in ˹the history of˺ our forefathers.
2698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He is simply insane, so bear with him for a while."
2699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Noah prayed, "My Lord! Help me, because they have denied ˹me˺."
2700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So We inspired him: "Build the Ark under Our ˹watchful˺ Eyes and directions. Then when Our command comes and the oven bursts ˹with water˺, take on board a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed. And do not plead with Me for those who have done wrong, for they will surely be drowned."
2701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then when you and those with you have settled in the Ark, say, "All praise is for Allah, Who saved us from the wrongdoing people."
2702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And pray, "My Lord! Allow me a blessed landing, for You are the best accommodator."
2703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely in this are lessons. And We ˹always˺ put ˹people˺ to the test.
2704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then We raised another generation after them,
2705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and sent to them a messenger from among themselves, ˹declaring,˺ "Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?"
2706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the chiefs of his people—who disbelieved, denied the meeting ˹with Allah˺ in the Hereafter, and were spoiled by the worldly luxuries We had provided for them—said ˹to the masses˺, "This is only a human like you. He eats what you eat, and drinks what you drink.
2707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if you ˹ever˺ obey a human like yourselves, then you would certainly be losers.
2708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Does he promise you that once you are dead and reduced to dust and bones, you will be brought forth ˹alive˺?
2709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Impossible, simply impossible is what you are promised!
2710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There is nothing beyond our worldly life. We die, others are born, and none will be resurrected.
2711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is no more than a man who has fabricated a lie about Allah, and we will never believe in him."
2712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The messenger prayed, "My Lord! Help me, because they have denied ˹me˺."
2713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah responded, "Soon they will be truly regretful."
2714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then the ˹mighty˺ blast overtook them with justice, and We reduced them to rubble. So away with the wrongdoing people!
2715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then We raised other generations after them.
2716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No people can advance their doom, nor can they delay it.
2717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then We sent Our messengers in succession: whenever a messenger came to his people, they denied him. So We destroyed them, one after the other, reducing them to ˹cautionary˺ tales. So away with the people who refuse to believe!
2718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then We sent Moses and his brother Aaron with Our signs and compelling proof
2719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          to Pharaoh and his chiefs, but they behaved arrogantly and were a tyrannical people.
2720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They argued, "Will we believe in two humans, like ourselves, whose people are slaves to us?"
2721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So they rejected them both, and ˹so˺ were among those destroyed.
2722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We certainly gave Moses the Scripture, so perhaps his people would be ˹rightly˺ guided.
2723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We made the son of Mary and his mother a sign, and gave them refuge on high ground—a ˹suitable˺ place for rest with flowing water.
2724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O messengers! Eat from what is good and lawful, and act righteously. Indeed, I fully know what you do.
2725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely this religion of yours is ˹only˺ one, and I am your Lord, so fear Me ˹alone˺.
2726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Yet the people have divided it into different sects, each rejoicing in what they have.
2727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So leave them ˹O Prophet˺ in their heedlessness for a while.
2728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do they think, since We provide them with wealth and children,
2729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             that We hasten to ˹honour˺ them ˹with˺ all kinds of good? No! They are not aware.
2730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely those who tremble in awe of their Lord,
2731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and who believe in the revelations of their Lord,
2732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and who associate none with their Lord,
2733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and who do whatever ˹good˺ they do with their hearts fearful, ˹knowing˺ that they will return to their Lord—
2734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 it is they who race to do good deeds, always taking the lead.
2735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We never require of any soul more than what it can afford. And with Us is a record which speaks the truth. None will be wronged.
2736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the hearts of those ˹who disbelieve˺ are oblivious to ˹all of˺ this, and they have other ˹evil˺ deeds, opposite to this, in which they are engrossed.
2737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as soon as We seize their elite with torment, they start to cry for help.
2738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹They will be told,˺ "Do not cry for help today. Surely you will never be saved from Us.
2739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, My revelations were recited to you, but you used to back away ˹in disgust˺,
2740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              boasting of the Sacred House, and babbling ˹nonsense about the Quran˺ by night."
2741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Is it because they have never contemplated the Word ˹of Allah˺? Or ˹because˺ there has come to them something that did not come to their forefathers?
2742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or ˹because˺ they failed to recognize their Messenger, and so they denied him?
2743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or ˹because˺ they say, "He is insane?" In fact, he has come to them with the truth, but most of them are resentful of the truth.
2744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Had the truth followed their desires, the heavens, the earth, and all those in them would have certainly been corrupted. In fact, We have brought them ˹the means to˺ their glory, but they turn away from it.
2745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or ˹is it because˺ you ˹O Prophet˺ are asking them for tribute? But the reward of your Lord is best, for He is the Best Provider.
2746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And surely you are calling them to the Straight Path,
2747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             but those who disbelieve in the Hereafter are certainly deviating from that Path.
2748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Even˺ if We had mercy on them and removed their affliction, they would still persist in their transgression, wandering blindly.
2749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We have already seized them with torment, but they never humbled themselves to their Lord, nor did they ˹submissively˺ appeal ˹to Him˺.
2750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But as soon as We open for them a gate of severe punishment, they will be utterly desperate.
2751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is the One Who created for you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.
2752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered.
2753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And He is the One Who gives life and causes death, and to Him belongs the alternation of the day and night. Will you not then understand?
2754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But they ˹just˺ say what their predecessors said.
2755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They said, "Once we are dead and reduced to dust and bones, will we really be resurrected?
2756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!"
2757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ask ˹them, O  Prophet˺, "To whom belong the earth and all those on it, if you ˹really˺ know?"
2758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will reply, "To Allah!" Say, "Why are you not then mindful?"
2759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹And˺ ask ˹them˺, "Who is the Lord of the seven heavens and the Lord of the Mighty Throne?"
2760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They will reply, "Allah." Say, "Will you not then fear ˹Him˺?"
2761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ask ˹them also,˺ "In Whose Hands is the authority over all things, protecting ˹all˺ while none can protect against Him, if you ˹really˺ know?"
2762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will reply, "Allah." Say, "How are you then so deluded?"
2763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In fact, We have brought them the truth, and they are certainly liars.
2764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah has never had ˹any˺ offspring, nor is there any god besides Him. Otherwise, each god would have taken away what he created, and they would have tried to dominate one another. Glorified is Allah above what they claim!
2765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹He is the˺ Knower of the seen and unseen. Exalted is He above what they associate ˹with Him˺.
2766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "My Lord! Should You show me what they are threatened with,
2767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  then, my Lord, do not count me among the wrongdoing people."
2768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We are indeed able to show you what We have threatened them with.
2769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Respond to evil with what is best. We know well what they claim.
2770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And say, "My Lord! I seek refuge in You from the temptations of the devils.
2771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I seek refuge in You, my Lord, that they ˹even˺ come near me."
2772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When death approaches any of them, they cry, "My Lord! Let me go back,
2773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               so I may do good in what I left behind." Never! It is only a ˹useless˺ appeal they make. And there is a barrier behind them until the Day they are resurrected.
2774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then, when the Trumpet will be blown,
2775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for those whose scale is heavy ˹with good deeds˺, it is they who will be successful.
2776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But those whose scale is light, they will have doomed themselves, staying in Hell forever.
2777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Fire will burn their faces, leaving them deformed.
2778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹It will be said,˺ "Were My revelations not recited to you, but you used to deny them?"
2779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will cry, "Our Lord! Our ill-fate took hold of us, so we became a misguided people.
2780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Our Lord! Take us out of this ˹Fire˺. Then if we ever return ˹to denial˺, we will truly be wrongdoers."
2781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah will respond, "Be despised in there! Do not ˹ever˺ plead with Me ˹again˺!
2782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, there was a group of My servants who used to pray, ‘Our Lord! We have believed, so forgive us and have mercy on us, for You are the best of those who show mercy,’
2783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              but you were ˹so busy˺ making fun of them that it made you forget My remembrance. And you used to laugh at them.
2784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Today I have indeed rewarded them for their perseverance: they are certainly the triumphant."
2785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He will ask ˹them˺, "How many years did you remain on earth?"
2786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will reply, "We remained ˹only˺ a day or part of a day. But ask those who kept count."
2787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He will say, "You only remained for a little while, if only you knew.
2788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Did you then think that We had created you without purpose, and that you would never be returned to Us?"
2789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Exalted is Allah, the True King! There is no god ˹worthy of worship˺ except Him, the Lord of the Honourable Throne.
2790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoever invokes, besides Allah, another god—for which they can have no proof—they will surely find their penalty with their Lord. Indeed, the disbelievers will never succeed.
2791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, ˹O Prophet,˺ "My Lord! Forgive and have mercy, for You are the best of those who show mercy."
2792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹This is˺ a sûrah which We have revealed and made ˹its rulings˺ obligatory, and revealed in it clear commandments so that you may be mindful.
2793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for female and male fornicators, give each of them one hundred lashes, and do not let pity for them make you lenient in ˹enforcing˺ the law of Allah, if you ˹truly˺ believe in Allah and the Last Day. And let a number of believers witness their punishment.
2794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A male fornicator would only marry a female fornicator or idolatress. And a female fornicator would only be married to a fornicator or idolater. This is ˹all˺ forbidden to the believers.
2795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Those who accuse chaste women ˹of adultery˺ and fail to produce four witnesses, give them eighty lashes ˹each˺. And do not ever accept any testimony from them—for they are indeed the rebellious—
2796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    except those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.
2797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And those who accuse their wives ˹of adultery˺ but have no witness except themselves, the accuser must testify, swearing four times by Allah that he is telling the truth,
2798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and a fifth oath that Allah may condemn him if he is lying.
2799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For her to be spared the punishment, she must swear four times by Allah that he is telling a lie,
2800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and a fifth oath that Allah may be displeased with her if he is telling the truth.
2801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Accepting of Repentance, All-Wise.
2802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, those who came up with that ˹outrageous˺ slander are a group of you. Do not think this is bad for you. Rather, it is good for you. he will suffer a tremendous punishment.
2803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If only the believing men and women had thought well of one another, when you heard this ˹rumour˺, and said, "This is clearly ˹an outrageous˺ slander!"
2804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why did they not produce four witnesses? Now, since they have failed to produce witnesses, they are ˹truly˺ liars in the sight of Allah.
2805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had it not been for Allah’s grace and mercy upon you in this world and the Hereafter, you would have certainly been touched with a tremendous punishment for what you plunged into—
2806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             when you passed it from one tongue to the other, and said with your mouths what you had no knowledge of, taking it lightly while it is ˹extremely˺ serious in the sight of Allah.
2807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If only you had said upon hearing it, "How can we speak about such a thing! Glory be to You ˹O Lord˺! This is a heinous slander!"
2808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah forbids you from ever doing something like this again, if you are ˹true˺ believers.
2809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Allah makes ˹His˺ commandments clear to you, for Allah is All-Knowing, All-Wise.
2810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, those who love to see indecency spread among the believers will suffer a painful punishment in this life and the Hereafter. Allah knows and you do not know.
2811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Ever Gracious, Most Merciful.
2812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not follow the footsteps of Satan. Whoever follows Satan’s footsteps, then ˹let them know that˺ he surely bids ˹all to˺ immorality and wickedness. Had it not been for Allah’s grace and mercy upon you, none of you would have ever been purified. But Allah purifies whoever He wills. And Allah is All-Hearing, All-Knowing.
2813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not let the people of virtue and affluence among you swear to suspend donations to their relatives, the needy, and the emigrants in the cause of Allah. Let them pardon and forgive. Do you not love to be forgiven by Allah? And Allah is All-Forgiving, Most Merciful.
2814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely those who accuse chaste, unsuspecting, believing women are cursed in this life and the Hereafter. And they will suffer a tremendous punishment
2815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 on the Day their tongues, hands, and feet will testify against them for what they used to do.
2816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On that Day, Allah will give them their just penalty in full, and they will ˹come to˺ know that Allah ˹alone˺ is the Ultimate Truth.
2817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wicked women are for wicked men, and wicked men are for wicked women. And virtuous women are for virtuous men, and virtuous men are for virtuous women. The virtuous are innocent of what the wicked say. They will have forgiveness and an honourable provision.
2818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Do not enter any house other than your own until you have asked for permission and greeted its occupants. This is best for you, so perhaps you will be mindful.
2819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If you find no one at home, do not enter it until you have been given permission. And if you are asked to leave, then leave. That is purer for you. And Allah has ˹perfect˺ knowledge of what you do.
2820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is no blame on you if you enter public places where there is something of benefit for you. And Allah knows what you reveal and what you conceal.
2821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹O Prophet!˺ Tell the believing men to lower their gaze and guard their chastity. That is purer for them. Surely Allah is All-Aware of what they do.
2822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And tell the believing women to lower their gaze and guard their chastity, and not to reveal their adornments except to their husbands, their fathers, their fathers-in-law, their sons, their stepsons, their brothers, their brothers’ sons or sisters’ sons, their fellow women, those ˹bondwomen˺ in their possession, male attendants with no desire, or children who are still unaware of women’s nakedness. Let them not stomp their feet, drawing attention to their hidden adornments. Turn to Allah in repentance all together, O  believers, so that you may be successful.
2823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Marry off the ˹free˺ singles among you, as well as the righteous of your bondmen and bondwomen. If they are poor, Allah will enrich them out of His bounty. For Allah is All-Bountiful, All-Knowing.
2824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And let those who do not have the means to marry keep themselves chaste until Allah enriches them out of His bounty. And if any of those ˹bondspeople˺ in your possession desires a deed of emancipation, make it possible for them, if you find goodness in them. And give them some of Allah’s wealth which He has granted you. Do not force your ˹slave˺ girls into prostitution for your own worldly gains while they wish to remain chaste. And if someone coerces them, then after such a coercion Allah is certainly All-Forgiving, Most Merciful ˹to them˺.
2825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, We have sent down to you clear revelations, along with examples of those who had gone before you, and a lesson to the God-fearing.
2826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah is the Light of the heavens and the earth. His light whose oil would almost glow, even without being touched by fire. Light upon light! Allah guides whoever He wills to His light. And Allah sets forth parables for humanity. For Allah has ˹perfect˺ knowledge of all things.
2827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹That light shines˺ through houses ˹of worship˺ which Allah has ordered to be raised, and where His Name is mentioned. He is glorified there morning and evening
2828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              by men who are not distracted—either by buying or selling—from Allah’s remembrance, or performing prayer, or paying alms-tax. They fear a Day when hearts and eyes will tremble,
2829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹hoping˺ that Allah may reward them according to the best of their deeds, and increase them out of His grace. And Allah provides for whoever He wills without limit.
2830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for the disbelievers, their deeds are like a mirage in a desert, which the thirsty perceive as water, but when they approach it, they find it to be nothing. Instead, they find Allah there ˹in the Hereafter, ready˺ to settle their account. And Allah is swift in reckoning.
2831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or ˹their deeds are˺ like the darkness in a deep sea, covered by waves upon waves, topped by ˹dark˺ clouds. Darkness upon darkness! If one stretches out their hand, they can hardly see it. And whoever Allah does not bless with light will have no light!
2832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you not see that Allah is glorified by all those in the heavens and the earth, even the birds as they soar? Each ˹instinctively˺ knows their manner of prayer and glorification. And Allah has ˹perfect˺ knowledge of all they do.
2833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And to Allah is the final return.
2834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do you not see that Allah gently drives the clouds, then joins them together, piling them up into masses, from which you see raindrops come forth? And He sends down from the sky mountains ˹of clouds˺ loaded with hail, pouring it on whoever He wills and averting it from whoever He wills. The flash of the clouds’ lightning nearly takes away eyesight.
2835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah alternates the day and night. Surely in this is a lesson for people of insight.
2836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Allah has created from water every living creature. Some of them crawl on their bellies, some walk on two legs, and some walk on four. Allah creates whatever He wills. Surely Allah is Most Capable of everything.
2837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have indeed sent down revelations clarifying ˹the truth˺. But Allah ˹only˺ guides whoever He wills to the Straight Path.
2838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the hypocrites say, "We believe in Allah and the Messenger, and we obey." Then a group of them turns away soon after that. These are not ˹true˺ believers.
2839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And as soon as they are called to Allah and His Messenger so he may judge between them, a group of them turns away.
2840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if the truth is in their favour, they come to him, fully submitting.
2841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is there a sickness in their hearts? Or are they in doubt? Or do they fear that Allah and His Messenger will be unjust to them? In fact, it is they who are the ˹true˺ wrongdoers.
2842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The only response of the ˹true˺ believers, when they are called to Allah and His Messenger so he may judge between them, is to say, "We hear and obey." It is they who will ˹truly˺ succeed.
2843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For whoever obeys Allah and His Messenger, and fears Allah and is mindful of Him, then it is they who will ˹truly˺ triumph.
2844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They swear by Allah their most solemn oaths that if you ˹O Prophet˺ were to command them, they would certainly march forth ˹in Allah’s cause˺. Say, "˹You˺ do not ˹have to˺ swear; your obedience is well known!" Surely Allah is All-Aware of what you do."
2845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "Obey Allah and obey the Messenger. But if you turn away, then he is only responsible for his duty And if you obey him, you will be ˹rightly˺ guided. The Messenger’s duty is only to deliver ˹the message˺ clearly."
2846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Allah has promised those of you who believe and do good that He will certainly make them successors in the land, as He did with those before them; and will surely establish for them their faith which He has chosen for them; and will indeed change their fear into security—˹provided that˺ they worship Me, associating nothing with Me. But whoever disbelieves after this ˹promise˺, it is they who will be the rebellious.
2847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moreover, establish prayer, pay alms-tax, and obey the Messenger, so you may be shown mercy.
2848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do not think ˹O Prophet˺ that the disbelievers can escape in the land. The Fire will be their home. Indeed, what an evil destination!
2849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Let those ˹bondspeople˺ in your possession and those of you who are still under age ask for your permission ˹to come in˺ at three times: before dawn prayer, when you take off your ˹outer˺ clothes at noon, and after the late evening prayer. ˹These are˺ three times of privacy for you. Other than these times, there is no blame on you or them to move freely, attending to one another. This is how Allah makes the revelations clear to you, for Allah is All-Knowing, All-Wise.
2850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when your children reach the age of puberty, let them seek permission ˹to come in˺, as their seniors do. This is how Allah makes His revelations clear to you, for Allah is All-Knowing, All-Wise.
2851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for elderly women past the age of marriage, there is no blame on them if they take off their ˹outer˺ garments, without revealing their adornments. But it is better for them if they avoid this ˹altogether˺. And Allah is All-Hearing, All-Knowing.
2852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There is no restriction on the blind, or the disabled, or the sick. This is how Allah makes His revelations clear to you, so perhaps you will understand.
2853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The ˹true˺ believers are only those who believe in Allah and His Messenger, and when they are with him on a public matter, they do not leave without his permission. Indeed, those who ask your permission ˹O Prophet˺ are the ones who ˹truly˺ believe in Allah and His Messenger. So when they ask your permission for a private matter, grant permission to whoever you wish and ask Allah’s forgiveness for them. Surely Allah is All-Forgiving, Most Merciful.
2854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do not treat the Messenger’s summons to you ˹as lightly˺ as your summons to one another. So let those who disobey his orders beware, for an affliction may befall them, or a painful torment may overtake them.
2855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely to Allah belongs whatever is in the heavens and the earth. He knows well what you stand for. And ˹on˺ the Day all will be returned to Him, He will inform them of what they did. For Allah has ˹perfect˺ knowledge of all things.
2856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blessed is the One Who sent down the Standard
2857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Allah is˺ the One to Whom belongs the kingdom of the heavens and the earth, Who has never had ˹any˺ offspring, nor does He have a partner in ˹governing˺ the kingdom. He has created everything, ordaining it precisely.
2858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet they have taken besides Him gods who cannot create anything but are themselves created. Nor can they protect or benefit themselves. Nor can they control life, death, or resurrection.
2859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The disbelievers say, "This ˹Quran˺ is nothing but a fabrication which he made up with the help of others." Their claim is totally unjustified and untrue!
2860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they say, "˹These revelations are only˺ ancient fables which he has had written down, and they are rehearsed to him morning and evening."
2861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "This ˹Quran˺ has been revealed by the One Who knows the secrets of the heavens and the earth. Surely He is All-Forgiving, Most Merciful."
2862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they say ˹mockingly˺, "What kind of messenger is this who eats food and goes about in market-places ˹for a living˺? If only an angel had been sent down with him to be his co-warner,
2863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or a treasure had been cast down to him, or he had had a garden from which he may eat!" And the wrongdoers say ˹to the believers˺, "You are only following a bewitched man."
2864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             See ˹O Prophet˺ how they call you names! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.
2865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Blessed is the One Who—if He wills—can give you far better than ˹all˺ that: gardens under which rivers flow, and palaces as well.
2866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In fact, they deny the Hour. And for the deniers of the Hour, We have prepared a blazing Fire.
2867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Once it sees them from a distance, they will hear it fuming and growling.
2868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when they are tossed into a narrow place inside ˹Hell˺, chained together, then and there they will cry out for ˹instant˺ destruction.
2869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They will be told,˺ "Do not cry only once for destruction, but cry many times over!"
2870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "Is this better or the Garden of Eternity which the righteous have been promised, as a reward and ˹an ultimate˺ destination?
2871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There they will have whatever they wish for, forever. That is a promise ˹to be sought after˺, binding on your Lord."
2872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Watch for˺ the Day He will gather them along with what they used to worship besides Allah, and ask ˹the objects of worship˺, "Was it you who misled these servants of Mine, or did they stray from the Way ˹on their own˺?"
2873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will say, "Glory be to You! It was not right for ˹others like˺ us to take any lords besides You, but You allowed enjoyment for them and their forefathers ˹for so long˺ that they forgot ˹Your˺ remembrance and became a doomed people."
2874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹The doomed will be told˺, "Your gods have clearly denied your claims. So now you can neither ward off ˹the punishment˺ nor get any help." And whoever of you does wrong, We will make them taste a horrible punishment.
2875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We never sent any messenger before you ˹O Prophet˺, who did not eat food and go about in market-places. We have made some of you a trial for others. Will you ˹not then˺ be patient? And your Lord is All-Seeing.
2876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those who do not expect to meet Us say, "If only the angels were sent down to us, or we could see our Lord!" They have certainly been carried away by their arrogance and have entirely exceeded all limits.
2877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹But˺ on the Day they will see the angels, there will be no good news for the wicked, who will cry, "Keep away! Away ˹from us˺!"
2878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then We will turn to whatever ˹good˺ deeds they did, reducing them to scattered dust.
2879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹But˺ on that Day the residents of Paradise will have the best settlement and the finest place to rest.
2880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Watch for˺ the Day the heavens will burst with clouds, and the angels will be sent down in successive ranks.
2881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      True authority on that Day will belong ˹only˺ to the Most Compassionate. And it will be a hard day for the disbelievers.
2882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹beware of˺ the Day the wrongdoer will bite his nails ˹in regret˺ and say, "Oh! I wish I had followed the Way along with the Messenger!
2883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Woe to me! I wish I had never taken so-and-so as a close friend.
2884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It was he who truly made me stray from the Reminder after it had reached me." And Satan has always betrayed humanity.
2885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Messenger has cried, "O my Lord! My people have indeed received this Quran with neglect."
2886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Similarly, We made enemies for every prophet from among the wicked, but sufficient is your Lord as a Guide and Helper.
2887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The disbelievers say, "If only the Quran had been sent down to him all at once!" ˹We have sent it˺ as such ˹in stages˺ so We may reassure your heart with it. And We have revealed it at a deliberate pace.
2888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whenever they bring you an argument, We come to you with the right refutation and the best explanation.
2889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those who will be dragged into Hell on their faces will be in the worst place, and are ˹now˺ farthest from the ˹Right˺ Way.
2890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We certainly gave Moses the Book and appointed his brother Aaron as his helper.
2891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We had ordered ˹them˺, "Go to the people who would deny Our signs." Then We annihilated the deniers entirely.
2892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when the people of Noah rejected the messengers, We drowned them, making them an example to humanity. And We have prepared a painful punishment for the wrongdoers.
2893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Also ˹We destroyed˺ ’Ȃd, Thamûd, and the people of the Water-pit, as well as many peoples in between.
2894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For each We set forth ˹various˺ lessons, and We ultimately destroyed each.
2895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They have certainly passed by the city ˹of Sodom˺, which had been showered with a dreadful rain ˹of stones˺. Have they not seen its ruins? But they do not expect to be resurrected.
2896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When they see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ "Is this the one that Allah has sent as a messenger?
2897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He would have almost tricked us away from our gods, had we not been so devoted to them." ˹But˺ soon they will know, when they face the punishment, who is far astray from the ˹Right˺ Way.
2898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have you seen ˹O Prophet˺ the one who has taken their own desires as their god? Will you then be a keeper over them?
2899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do you think that most of them listen or understand?
2900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you not seen how your Lord extends the shade—He could have simply made it ˹remain˺ still if He so willed—then We make the sun its guide,
2901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       causing the shade to retreat gradually?
2902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who has made the night for you as a cover, and ˹made˺ sleep for resting, and the day for rising.
2903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And He is the One Who sends the winds ushering in His mercy, and We send down pure rain from the sky,
2904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     giving life to a lifeless land, and providing water for countless animals and humans of Our Own creation.
2905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We certainly disperse it among them so they may be mindful, but most people persist in ungratefulness.
2906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had We willed, We could have easily sent a warner to every society.
2907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So do not yield to the disbelievers, but strive diligently against them with this ˹Quran˺.
2908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And He is the One Who merges the two bodies of water: one fresh and palatable and the other salty and bitter, placing between them a barrier they cannot cross.
2909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And He is the One Who creates human beings from a ˹humble˺ liquid, then establishes for them bonds of kinship and marriage. For your Lord is Most Capable.
2910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet they worship besides Allah what can neither benefit nor harm them. And the disbeliever always collaborates against their Lord.
2911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.
2912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "I do not ask you for any reward for this ˹message˺, but whoever wishes, let them pursue the Way to their Lord."
2913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Put your trust in the Ever-Living, Who never dies, and glorify His praises. Sufficient is He as All-Aware of the sins of His servants.
2914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He is˺ the One Who created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. ˹He is˺ the Most Compassionate! Ask ˹none other than˺ the All-Knowledgeable about Himself.
2915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When it is said to them, "Prostrate to the Most Compassionate," they ask ˹in disgust˺, "What is ‘the Most Compassionate’? Will we prostrate to whatever you order us to?" And it only drives them farther away.
2916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blessed is the One Who has placed constellations in the sky, as well as a ˹radiant˺ lamp and a luminous moon.
2917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And He is the One Who causes the day and the night to alternate, ˹as a sign˺ for whoever desires to be mindful or to be grateful.
2918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The ˹true˺ servants of the Most Compassionate are those who walk on the earth humbly, and when the foolish address them ˹improperly˺, they only respond with peace.
2919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹They are˺ those who spend ˹a good portion of˺ the night, prostrating themselves and standing before their Lord.
2920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹They are˺ those who pray, "Our Lord! Keep the punishment of Hell away from us, for its punishment is indeed unrelenting.
2921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is certainly an evil place to settle and reside."
2922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹They are˺ those who spend neither wastefully nor stingily, but moderately in between.
2923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They are˺ those who do not invoke any other god besides Allah, nor take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right, nor commit fornication. And whoever does ˹any of˺ this will face the penalty.
2924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Their punishment will be multiplied on the Day of Judgment, and they will remain in it forever, in disgrace.
2925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who repent, believe, and do good deeds, they are the ones whose evil deeds Allah will change into good deeds. For Allah is All-Forgiving, Most Merciful.
2926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And whoever repents and does good has truly turned to Allah properly.
2927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They are˺ those who do not bear false witness, and when they come across falsehood, they pass ˹it˺ by with dignity.
2928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹They are˺ those who, when reminded of the revelation of their Lord, do not turn a blind eye or a deaf ear to it.
2929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹They are˺ those who pray, "Our Lord! Bless us with ˹pious˺ spouses and offspring who will be the joy of our hearts, and make us models for the righteous."
2930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is they who will be rewarded with ˹elevated˺ mansions ˹in Paradise˺ for their perseverance, and will be received with salutations and ˹greetings of˺ peace,
2931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          staying there forever. What an excellent place to settle and reside!
2932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "You ˹all˺ would not ˹even˺ matter to my Lord were it not for your faith ˹in Him˺. But now you ˹disbelievers˺ have denied ˹the truth˺, so the torment is bound to come."
2933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ṭa-Sĩn-Mĩm.
2934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       These are the verses of the clear Book.
2935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Perhaps you ˹O Prophet˺ will grieve yourself to death over their disbelief.
2936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If We willed, We could send down upon them a ˹compelling˺ sign from the heavens, leaving their necks bent in ˹utter˺ submission to it.
2937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whatever new reminder comes to them from the Most Compassionate, they always turn away from it.
2938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They have certainly denied ˹the truth˺, so they will soon face the consequences of their ridicule.
2939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have they failed to look at the earth, ˹to see˺ how many types of fine plants We have caused to grow in it?
2940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely in this is a sign. Yet most of them would not believe.
2941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
2942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Remember˺ when your Lord called out to Moses, "Go to the wrongdoing people—
2943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           the people of Pharaoh. Will they not fear ˹Allah˺?"
2944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He replied, "My Lord! I fear that they will reject me.
2945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹so˺ my heart will be broken and my tongue will be tied. So send Aaron along ˹as a messenger˺.
2946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Also, they have a charge against me, so I fear they may kill me."
2947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah responded, "Certainly not! So go, both of you, with Our signs. We will be with you, listening.
2948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Go to Pharaoh and say, ‘We are messengers from the Lord of all worlds,
2949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹commanded to say:˺ ‘Let the Children of Israel go with us.’’"
2950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharaoh protested, "Did we not raise you among us as a child, and you stayed several years of your life in our care?
2951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then you did what you did, being ˹utterly˺ ungrateful!"
2952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moses replied, "I did it then, lacking guidance.
2953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So I fled from you when I feared you. Then my Lord granted me wisdom and made me one of the messengers.
2954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How can that be a ‘favour,’ of which you remind me, when ˹it was only because˺ you ˹have˺ enslaved the Children of Israel?"
2955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Pharaoh asked, "And what is ‘the Lord of all worlds’?"
2956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moses replied, "˹He is˺ the Lord of the heavens and the earth and everything in between, if only you had sure faith."
2957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharaoh said to those around him, "Did you hear ˹what he said˺?"
2958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moses added, "˹He is˺ your Lord and the Lord of your forefathers."
2959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pharaoh said ˹mockingly˺, "Your messenger, who has been sent to you, must be insane."
2960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses responded: "˹He is˺ the Lord of the east and west, and everything in between, if only you had any sense."
2961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pharaoh threatened, "If you take any other god besides me, I will certainly have you imprisoned."
2962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moses responded, "Even if I bring you a clear proof?"
2963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pharaoh demanded, "Bring it then, if what you say is true."
2964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So he threw down his staff and—behold!—it became a real snake.
2965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.
2966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pharaoh said to the chiefs around him, "He is indeed a skilled magician,
2967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who seeks to drive you from your land by his magic. So what do you propose?"
2968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They replied, "Let him and his brother wait and dispatch mobilizers to all cities
2969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         to bring you every skilled magician."
2970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So the magicians were assembled at the set time on the appointed day.
2971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the people were asked, "Will you join the gathering,
2972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that we may follow the magicians if they prevail?"
2973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When the magicians came, they asked Pharaoh, "Shall we have a ˹suitable˺ reward if we prevail?"
2974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He replied, "Yes, and you will then certainly be among those closest to me."
2975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moses said to them, "Cast whatever you wish to cast."
2976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So they cast down their ropes and staffs, saying, "By Pharaoh’s might, it is we who will surely prevail."
2977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Moses threw down his staff, and—behold!—it devoured the objects of their illusion!
2978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So the magicians fell down, prostrating.
2979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They declared, "We ˹now˺ believe in the Lord of all worlds—
2980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 the Lord of Moses and Aaron."
2981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Pharaoh threatened, "How dare you believe in him before I give you permission? He must be your master who taught you magic, but soon you will see. I will certainly cut off your hands and feet on opposite sides, then crucify you all."
2982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They responded, "˹That would be˺ no harm! Surely to our Lord we will ˹all˺ return.
2983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We really hope that our Lord will forgive our sins, as we are the first to believe."
2984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We inspired Moses, ˹saying,˺ "Leave with My servants at night, for you will surely be pursued."
2985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Pharaoh sent mobilizers to all cities,
2986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹and said,˺ "These ˹outcasts˺ are just a handful of people,
2987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   who have really enraged us,
2988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 but we are all on the alert."
2989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So We lured the tyrants out of ˹their˺ gardens, springs,
2990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           treasures, and splendid residences.
2991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So it was. And We awarded it ˹all˺ to the Children of Israel.
2992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And so they pursued them at sunrise.
2993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When the two groups came face to face, the companions of Moses cried out, "We are overtaken for sure."
2994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moses reassured ˹them˺, "Absolutely not! My Lord is certainly with me—He will guide me."
2995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So We inspired Moses: "Strike the sea with your staff," and the sea was split, each part was like a huge mountain.
2996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We drew the pursuers to that place,
2997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and delivered Moses and those with him all together.
2998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We drowned the others.
2999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely in this is a sign. Yet most of them would not believe.
3000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Relate to them ˹O Prophet˺ the story of Abraham,
3002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     when he questioned his father and his people, "What is that you worship ˹besides Allah˺?"
3003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They replied, "We worship idols, to which we are fully devoted."
3004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Abraham asked, "Can they hear you when you call upon them?
3005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or can they benefit or harm you?"
3006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They replied, "No! But we found our forefathers doing the same."
3007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Abraham responded, "Have you ˹really˺ considered what you have been worshipping—
3008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       you and your ancestors?
3009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They are ˹all˺ enemies to me, except the Lord of all worlds.
3010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹He is˺ the One Who created me, and He ˹alone˺ guides me.
3011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹He is˺ the One Who provides me with food and drink.
3012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And He ˹alone˺ heals me when I am sick.
3013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And He ˹is the One Who˺ will cause me to die, and then bring me back to life.
3014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And He is ˹the One˺ Who, I hope, will forgive my flaws on Judgment Day."
3015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "My Lord! Grant me wisdom, and join me with the righteous.
3016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bless me with honourable mention among later generations.
3017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Make me one of those awarded the Garden of Bliss.
3018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Forgive my father, for he is certainly one of the misguided.
3019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And do not disgrace me on the Day all will be resurrected—
3020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              the Day when neither wealth nor children will be of any benefit.
3021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Only those who come before Allah with a pure heart ˹will be saved˺."
3022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹On that Day˺ Paradise will be brought near to the God-fearing,
3023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and the Hellfire will be displayed to the deviant.
3024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it will be said to them, "Where are those you used to worship
3025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    besides Allah? Can they help you or even help themselves?"
3026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then the idols will be hurled headlong into Hell, along with the deviant
3027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the soldiers of Iblis, all together.
3028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  There the deviant will cry while disputing with their idols,
3029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          "By Allah! We were clearly mistaken,
3030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             when we made you equal to the Lord of all worlds.
3031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And none led us astray other than the wicked.
3032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now we have none to intercede for us,
3033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           nor a close friend.
3034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If only we could have a second chance, then we would be believers."
3035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely in this is a sign. Yet most of them would not believe.
3036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The people of Noah rejected the messengers
3038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             when their brother Noah said to them, "Will you not fear ˹Allah˺?
3039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am truly a trustworthy messenger to you.
3040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So fear Allah, and obey me."
3043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They argued, "How can we believe in you, when you are followed ˹only˺ by the lowest of the low?"
3044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He responded, "And what knowledge do I have of what they do?
3045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their judgment is with my Lord, if you had any sense!
3046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I am not going to expel the believers.
3047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I am only sent with a clear warning."
3048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They threatened, "If you do not desist, O  Noah, you will surely be stoned ˹to death˺."
3049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Noah prayed, "My Lord! My people have truly rejected me.
3050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So judge between me and them decisively, and save me and the believers with me."
3051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So We saved him and those with him in the fully loaded Ark.
3052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then afterwards We drowned the rest.
3053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely in this is a sign. Yet most of them would not believe.
3054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The people of ’ad rejected the messengers
3056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              when their brother Hûd said to them, "Will you not fear ˹Allah˺?
3057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am truly a trustworthy messenger to you.
3058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Why˺ do you build a landmark on every high place in vanity,
3061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and construct castles, as if you are going to live forever,
3062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and act so viciously when you attack ˹others˺?
3063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fear the One Who has provided you with ˹the good˺ things you know:
3065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He provided you with cattle, and children,
3066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and gardens, and springs.
3067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I truly fear for you the torment of a tremendous day."
3068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They responded, "It is all the same to us whether you warn ˹us˺ or not.
3069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is simply the tradition of our predecessors.
3070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And we will never be punished."
3071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So they rejected him, and ˹so˺ We destroyed them. Surely in this is a sign. Yet most of them would not believe.
3072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The people of Thamûd rejected the messengers
3074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            when their brother salih said to them, "Will you not fear ˹Allah˺?
3075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am truly a trustworthy messenger to you.
3076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you think you will be ˹forever˺ left secure in what you have here:
3079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     amid gardens and springs,
3080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and ˹various˺ crops, and palm trees ˹loaded˺ with tender fruit;
3081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             to carve homes in the mountains with great skill?
3082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And do not follow the command of the transgressors,
3084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       who spread corruption throughout the land, never setting things right."
3085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They replied, "You are simply bewitched!
3086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You are only a human being like us, so bring forth a sign if what you say is true."
3087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    salih said, "Here is a camel. She will have her turn to drink as you have yours, each on an appointed day.
3088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And do not ever touch her with harm, or you will be overtaken by the torment of a tremendous day."
3089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But they killed her, becoming regretful.
3090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So the punishment overtook them. Surely in this is a sign. Yet most of them would not believe.
3091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The people of Lot rejected the messengers
3093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              when their brother Lot said to them, "Will you not fear ˹Allah˺?
3094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am truly a trustworthy messenger to you.
3095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why do you ˹men˺ lust after fellow men,
3098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               leaving the wives that your Lord has created for you? In fact, you are a transgressing people."
3099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They threatened, "If you do not desist, O  Lot, you will surely be expelled."
3100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lot responded, "I am truly one of those who despise your ˹shameful˺ practice.
3101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      My Lord! Save me and my family from ˹the consequences of˺ what they do."
3102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So We saved him and all of his family,
3103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               except an old woman, who was one of the doomed.
3104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then We utterly destroyed the rest,
3105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pouring upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!
3106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely in this is a sign. Yet most of them would not believe.
3107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The residents of the Forest rejected the messengers
3109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        when Shu’aib said to them, "Will you not fear ˹Allah˺?
3110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am truly a trustworthy messenger to you.
3111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me.
3112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Give full measure, and cause no loss ˹to others˺.
3114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Weigh with an even balance,
3115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and do not defraud people of their property. Nor go about spreading corruption in the land.
3116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And fear the One Who created you and ˹all˺ earlier peoples."
3117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They replied, "You are simply bewitched!
3118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Also, you are only a human being like us, and we think you are indeed a liar.
3119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So cause ˹deadly˺ pieces of the sky to fall upon us, if what you say is true."
3120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shu’aib responded, "My Lord knows best whatever you do."
3121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So they rejected him, and ˹so˺ were overtaken by the torment of the day of the ˹deadly˺ cloud. That was really a torment of a tremendous day.
3122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely in this is a sign. Yet most of them would not believe.
3123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And your Lord is certainly the Almighty, Most Merciful.
3124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is certainly a revelation from the Lord of all worlds,
3125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           which the trustworthy spirit ˹Gabriel˺ brought down
3126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            into your heart ˹O Prophet˺—so that you may be one of the warners—
3127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     in a clear Arabic tongue.
3128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it has indeed been ˹foretold˺ in the Scriptures of those before.
3129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Was it not sufficient proof for the deniers that it has been recognized by the knowledgeable among the Children of Israel?
3130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had We revealed it to a non-Arab,
3131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         who would then recite it to the deniers ˹in fluent Arabic˺, still they would not have believed in it!
3132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is how We allow denial ˹to steep˺ into the hearts of the wicked.
3133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will not believe in it until they see the painful punishment,
3134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 which will take them by surprise when they least expect ˹it˺.
3135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then they will cry, "Can we be allowed more time?"
3136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do they ˹really˺ seek to hasten Our torment?
3137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Imagine ˹O Prophet˺ if We allowed them enjoyment for years,
3138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   then there came to them what they had been threatened with:
3139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      would that enjoyment be of any benefit to them ˹at all˺?
3140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have never destroyed a society without warners
3141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          to remind ˹them˺, for We would never wrong ˹anyone˺.
3142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It was not the devils who brought this ˹Quran˺ down:
3143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  it is not for them ˹to do so˺, nor can they,
3144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    for they are strictly barred from ˹even˺ overhearing ˹it˺.
3145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So do not ever call upon any other god besides Allah, or you will be one of the punished.
3146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And warn ˹all, starting with˺ your closest relatives,
3147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and be gracious to the believers who follow you.
3148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if they disobey you, say, "I am certainly free of what you do."
3149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Put your trust in the Almighty, Most Merciful,
3150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Who sees you when you rise ˹for prayer at night˺,
3151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        as well as your movements ˹in prayer˺ along with ˹fellow˺ worshippers.
3152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He ˹alone˺ is indeed the All-Hearing, All-Knowing.
3153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shall I inform you of whom the devils ˹actually˺ descend upon?
3154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They descend upon every sinful liar,
3155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who gives an ˹attentive˺ ear ˹to half-truths˺, mostly passing on sheer lies.
3156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for poets, they are followed ˹merely˺ by deviants.
3157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do you not see how they rant in every field,
3158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               only saying what they never do?
3159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Except those who believe, do good, remember Allah often, and ˹poetically˺ avenge ˹the believers˺ after being wrongfully slandered. The wrongdoers will come to know what ˹evil˺ end they will meet.
3160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ṭa-Sĩn. These are the verses of the Quran; the clear Book.
3161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹It is˺ a guide and good news for the believers:
3162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹those˺ who establish prayer, pay alms-tax, and have sure faith in the Hereafter.
3163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who do not believe in the Hereafter, We have certainly made their ˹evil˺ deeds appealing to them, so they wander blindly.
3164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is they who will suffer a dreadful torment, and in the Hereafter they will ˹truly˺ be the greatest losers.
3165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And indeed, you ˹O Prophet˺ are receiving the Quran from the One ˹Who is˺ All-Wise, All-Knowing.
3166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Remember˺ when Moses said to his family, "I have spotted a fire. I will either bring you some directions from there, or a burning torch so you may warm yourselves."
3167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But when he came to it, he was called ˹by Allah˺, "Blessed is the one at the fire, and whoever is around it! Glory be to Allah, the Lord of all worlds.
3168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O  Moses! It is truly I. I am Allah—the Almighty, All-Wise.
3169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now, throw down your staff!" But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ "O Moses! Do not be afraid! Messengers should have no fear in My presence.
3170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Fear is˺ only for those who do wrong. But if they later mend ˹their˺ evil ˹ways˺ with good, then I am certainly All-Forgiving, Most Merciful.
3171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. They have truly been a rebellious people."
3172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But when Our enlightening signs came to them, they said, "This is pure magic."
3173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And, although their hearts were convinced the signs were true, they still denied them wrongfully and arrogantly. See then what was the end of the corruptors!
3174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We granted knowledge to David and Solomon. And they said ˹in acknowledgment˺, "All praise is for Allah Who has privileged us over many of His faithful servants."
3175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David was succeeded by Solomon, who said, "O people! We have been taught the language of birds, and been given everything ˹we need˺. This is indeed a great privilege."
3176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Solomon’s forces of jinn, humans, and birds were rallied for him, perfectly organized.
3177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when they came across a valley of ants, an ant warned, "O ants! Go quickly into your homes so Solomon and his armies do not crush you, unknowingly."
3178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Solomon smiled in amusement at her words, and prayed, "My Lord! Inspire me to ˹always˺ be thankful for Your favours which You have blessed me and my parents with, and to do good deeds that please you. Admit me, by Your mercy, into ˹the company of˺ Your righteous servants."
3179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹One day˺ he inspected the birds, and wondered, "Why is it that I cannot see the hoopoe? Or could he be absent?
3180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will surely subject him to a severe punishment, or ˹even˺ slaughter him, unless he brings me a compelling excuse."
3181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It was not long before the bird came and said, "I have found out something you do not know. I have just come to you from Sheba with sure news.
3182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, I found a woman ruling over them, who has been given everything ˹she needs˺, and who has a magnificent throne.
3183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I found her and her people prostrating to the sun instead of Allah. For Satan has made their deeds appealing to them—hindering them from the ˹Right˺ Way and leaving them unguided—
3184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        so they do not prostrate to Allah, Who brings forth what is hidden in the heavens and the earth, and knows what you ˹all˺ conceal and what you reveal.
3185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹He is˺ Allah! There is no god ˹worthy of worship˺ except Him, the Lord of the Mighty Throne."
3186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Solomon said, "We will see whether you are telling the truth or lying.
3187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Go with this letter of mine and deliver it to them, then stand aside and see how they will respond."
3188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Queen ˹later˺ announced, "O chiefs! Indeed, a noble letter has been delivered to me.
3189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is from Solomon, and it reads: ‘In the Name of Allah—the Most Compassionate, Most Merciful.
3190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not be arrogant with me, but come to me, fully submitting ˹to Allah˺.’"
3191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      She said, "O chiefs! Advise me in this matter of mine, for I would never make any decision without you."
3192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They responded, "We are a people of strength and great ˹military˺ might, but the decision is yours, so decide what you will command."
3193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       She reasoned, "Indeed, when kings invade a land, they ruin it and debase its nobles. They really do so!
3194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But I will certainly send him a gift, and see what ˹response˺ my envoys will return with."
3195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When the chief-envoy came to him, Solomon said, "Do you offer me wealth? What Allah has granted me is far greater than what He has granted you. No! It is you who rejoice in ˹receiving˺ gifts.
3196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Go back to them, for we will certainly mobilize against them forces which they can never resist, and we will drive them out from there in disgrace, fully humbled."
3197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Solomon asked, "O chiefs! Which of you can bring me her throne before they come to me in ˹full˺ submission?"
3198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         One mighty jinn responded, "I can bring it to you before you rise from this council of yours. And I am quite strong and trustworthy for this ˹task˺."
3199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But the one who had knowledge of the Scripture said, "I can bring it to you in the blink of an eye." So when Solomon saw it placed before him, he exclaimed, "This is by the grace of my Lord to test me whether I am grateful or ungrateful. And whoever is grateful, it is only for their own good. But whoever is ungrateful, surely my Lord is Self-Sufficient, Most Generous."
3200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Then˺ Solomon said, "Disguise her throne for her so we may see whether she will recognize ˹it˺ or she will not be able to."
3201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So when she arrived, it was said ˹to her˺, "Is your throne like this?" She replied, "It looks to be the same. We have ˹already˺ received knowledge ˹of Solomon’s prophethood˺ and have submitted ˹to Allah˺."
3202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But she had been hindered by what she used to worship instead of Allah, for she was indeed from a disbelieving people.
3203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then she was told, "Enter the palace." But when she saw the hall, she thought it was a body of water, so she bared her legs. Solomon said. "It is just a palace paved with crystal." ˹At last˺ she declared, "My Lord! I have certainly wronged my soul. Now I ˹fully˺ submit myself along with Solomon to Allah, the Lord of all worlds."
3204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And We certainly sent to the people of Thamûd their brother salih, proclaiming, "Worship Allah," but they suddenly split into two opposing groups.
3205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He urged ˹the disbelieving group˺, "O my people! Why do you ˹seek to˺ hasten the torment If only you sought Allah’s forgiveness so you may be shown mercy!"
3206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They replied, "You and your followers are a bad omen for us." He responded, "Your omens are destined by Allah. In fact, you are ˹only˺ a people being tested."
3207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there were in the city nine ˹elite˺ men who spread corruption in the land, never doing what is right.
3208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They vowed, "Let us swear by Allah that we will take him and his family down by night. Then we will certainly say to his ˹closest˺ heirs, ‘We did not witness the murder of his family. We are definitely telling the truth.’"
3209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹so˺ they made a plan, but We too made a plan, while they were unaware.
3210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 See then what the consequences of their plan were: We ˹utterly˺ destroyed them and their people all together.
3211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So their homes are there, ˹but completely˺ ruined because of their wrongdoing. Surely in this is a lesson for people of knowledge.
3212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We delivered those who were faithful and were mindful ˹of Allah˺.
3213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹remember˺ Lot, when he rebuked ˹the men of˺ his people, "Do you commit that shameful deed while you can see ˹one another˺?
3214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do you really lust after men instead of women? In fact, you are ˹only˺ a people acting ignorantly."
3215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But his people’s only response was to say, "Expel Lot’s followers from your land! They are a people who wish to remain chaste!"
3216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So We delivered him and his family, except his wife. We had destined her to be one of the doomed.
3217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And We poured upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!
3218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "Praise be to Allah, and peace be upon the servants He has chosen." ˹Ask the disbelievers,˺ "Which is better: Allah or whatever ˹gods˺ they associate ˹with Him˺?"
3219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or ˹ask them,˺ "Who created the heavens and the earth, and sends down rain for you from the sky, by which We cause delightful gardens to grow? You could never cause their trees to grow. Was it another god besides Allah?" Absolutely not! But they are a people who set up equals ˹to Allah˺!
3220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or ˹ask them,˺ "Who made the earth a place of settlement, caused rivers to flow through it, placed firm mountains upon it, and set a barrier between ˹fresh and salt˺ bodies of water? Was it another god besides Allah?" Absolutely not! But most of them do not know.
3221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or ˹ask them,˺ "Who responds to the distressed when they cry to Him, relieving ˹their˺ affliction, and ˹Who˺ makes you successors in the earth? Is it another god besides Allah? Yet you are hardly mindful!"
3222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or ˹ask them,˺ "Who guides you in the darkness of the land and sea, Is it another god besides Allah? Exalted is Allah above what they associate ˹with Him˺!
3223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or ˹ask them,˺ "Who originates the creation then resurrects it, and gives you provisions from the heavens and the earth? Is it another god besides Allah?" Say, ˹O Prophet,˺ "Show ˹me˺ your proof, if what you say is true."
3224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "None in the heavens and the earth has knowledge of the unseen except Allah. Nor do they know when they will be resurrected.
3225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     No! Their knowledge of the Hereafter amounts to ignorance. In fact, they are in doubt about it. In truth, they are ˹totally˺ blind to it.
3226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The disbelievers ask, "When we and our fathers are reduced to dust, will we really be brought forth ˹alive˺?
3227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!"
3228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "Travel throughout the land and see the fate of the wicked."
3229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not grieve for them, nor be distressed by their schemes.
3230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
3231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "Perhaps some of what you seek to hasten is close at hand."
3232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely your Lord is ever Bountiful to humanity, but most of them are ungrateful.
3233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And surely your Lord knows what their hearts conceal and what they reveal.
3234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For there is nothing hidden in the heavens or the earth without being ˹written˺ in a perfect Record.
3235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, this Quran clarifies for the Children of Israel most of what they differ over.
3236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it is truly a guide and mercy for the believers.
3237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your Lord will certainly judge between them by His justice, for He is the Almighty, All-Knowing.
3238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So put your trust in Allah, for you are surely upon the ˹Path of˺ clear truth.
3239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.
3240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.
3241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when the decree ˹of the Hour˺ comes to pass against them, We will bring forth for them a beast from the earth, telling them that the people had no sure faith in Our revelations.
3242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Watch for˺ the Day We will gather from every faith-community a group of those who denied Our revelations, and they will be driven in ranks.
3243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they ˹finally˺ come before their Lord, He will ask ˹them˺, "Did you deny My revelations without ˹even˺ comprehending them? Or what ˹exactly˺ did you do?"
3244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the decree ˹of torment˺ will be justified against them for their wrongdoing, leaving them speechless.
3245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do they not see that We made the night for them to rest in and the day bright? Surely in this are signs for those who believe.
3246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹beware of˺ the Day the Trumpet will be blown, and all those in the heavens and all those on the earth will be horrified ˹to the point of death˺, except those Allah wills ˹to spare˺. And all will come before Him, fully humbled.
3247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now you see the mountains, thinking they are firmly fixed, but they are travelling ˹just˺ like clouds. ˹That is˺ the design of Allah, Who has perfected everything. Surely He is All-Aware of what you do.
3248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whoever comes with a good deed will be rewarded with what is better, and they will be secure from the horror on that Day.
3249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whoever comes with an evil deed will be hurled face-first into the Fire. Are you rewarded except for what you used to do?
3250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "I have only been commanded to worship the Lord of this city ˹of Mecca˺, Who has made it sacred, and to Him belongs everything. And I am commanded to be one of those who ˹fully˺ submit ˹to Him˺,
3251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and to recite the Quran." Then whoever chooses to be guided, it is only for their own good. But whoever chooses to stray, say, ˹O Prophet,˺ "I am only a warner."
3252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And say, "All praise is for Allah! He will show you His signs, and you will recognize them. And your Lord is never unaware of what you do."
3253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ṭa-Sĩn-Mĩm.
3254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       These are the verses of the clear Book.
3255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We narrate to you ˹O Prophet˺ part of the story of Moses and Pharaoh in truth for people who believe.
3256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, Pharaoh ˹arrogantly˺ elevated himself in the land and divided its people into ˹subservient˺ groups, one of which he persecuted, slaughtering their sons and keeping their women. He was truly one of the corruptors.
3257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But it was Our Will to favour those who were oppressed in the land, making them models ˹of faith˺ as well as successors;
3258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and to establish them in the land; and through them show Pharaoh, Haman,
3259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We inspired the mother of Moses: "Nurse him, but when you fear for him, put him then into the river, and do not fear or grieve. We will certainly return him to you, and make him one of the messengers."
3260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹it so happened that˺ Pharaoh’s people picked him up, only to become their enemy and source of grief. Surely Pharaoh, Haman, and their soldiers were sinful.
3261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pharaoh’s wife said ˹to him˺, "˹This baby is˺ a source of joy for me and you. Do not kill him. Perhaps he may be useful to us or we may adopt him as a son." They were unaware ˹of what was to come˺.
3262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the heart of Moses’ mother ached so much that she almost gave away his identity, had We not reassured her heart in order for her to have faith ˹in Allah’s promise˺.
3263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she said to his sister, "Keep track of him!" So she watched him from a distance, while they were unaware.
3264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We had caused him to refuse all wet-nurses at first, so his sister suggested, "Shall I direct you to a family who will bring him up for you and take good care of him?"
3265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This is how We returned him to his mother so that her heart would be put at ease, and not grieve, and that she would know that Allah’s promise is ˹always˺ true. But most people do not know.
3266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when he reached full strength and maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.
3267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹One day˺ he entered the city unnoticed by its people. There he found two men fighting: one of his own people, and the other of his enemies. The man from his people called to him for help against his foe. So Moses punched him, causing his death. Moses cried, "This is from Satan’s handiwork. He is certainly a sworn, misleading enemy."
3268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He pleaded, "My Lord! I have definitely wronged my soul, so forgive me." So He forgave him, ˹for˺ He is indeed the All-Forgiving, Most Merciful.
3269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses pledged, "My Lord! For all Your favours upon me, I will never side with the wicked."
3270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And so Moses became fearful, watching out in the city, when suddenly the one who sought his help the day before cried out to him again for help. Moses rebuked him, "Indeed, you are clearly a trouble-maker."
3271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then when Moses was about to lay his hands on their foe, the enemy said, "O Moses! Do you intend to kill me as you killed a man yesterday? You only want to be a tyrant in the land. You do not intend to make peace!"
3272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there came a man, rushing from the farthest end of the city. He said, "O Moses! The chiefs are actually conspiring against you to put you to death, so leave ˹the city˺. I really advise you ˹to do so˺."
3273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Moses left the city in a state of fear and caution, praying, "My Lord! Deliver me from the wrongdoing people."
3274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And as he made his way towards Midian, he said, "I trust my Lord will guide me to the right way."
3275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When he arrived at the well of Midian, he found a group of people watering ˹their herds˺. Apart from them, he noticed two women holding back ˹their herd˺. He asked ˹them˺, "What is the problem?" They replied, "We cannot water ˹our animals˺ until the ˹other˺ shepherds are done, for our father is a very old man."
3276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So he watered ˹their herd˺ for them, then withdrew to the shade and prayed, "My Lord! I am truly in ˹desperate˺ need of whatever provision You may have in store for me."
3277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then one of the two women came to him, walking bashfully. She said, "My father is inviting you so he may reward you for watering ˹our animals˺ for us." When Moses came to him and told him his whole story, the old man said, "Have no fear! You are ˹now˺ safe from the wrongdoing people."
3278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One of the two daughters suggested, "O my dear father! Hire him. The best man for employment is definitely the strong and trustworthy ˹one˺."
3279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The old man proposed, "I wish to marry one of these two daughters of mine to you, provided that you stay in my service for eight years. If you complete ten, it will be ˹a favour˺ from you, but I do not wish to make it difficult for you. Allah willing, you will find me an agreeable man."
3280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses responded, "˹Then˺ it is ˹settled˺ between you and I. Whichever term I fulfill, there will be no ˹further˺ obligation on me. And Allah is a Witness to what we say."
3281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Moses had completed the term and was travelling with his family, he spotted a fire on the side of Mount Ṭûr. He said to his family, "Stay here, ˹for˺ I have spotted a fire. Perhaps from there I can bring you some directions or a torch from the fire so you may warm yourselves."
3282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But when he came to it, he was called from the bush in the sacred ground to the right side of the valley: "O Moses! It is truly I. I am Allah—the Lord of all worlds.
3283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now, throw down your staff!" But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ "O Moses! Draw near, and have no fear. You are perfectly secure.
3284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. These are two proofs from your Lord to Pharaoh and his chiefs. They have truly been a rebellious people."
3285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Moses appealed, "My Lord! I have indeed killed a man from them, so I fear they may kill me.
3286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And my brother Aaron is more eloquent than I, so send him with me as a helper to support what I say, for I truly fear they may reject me."
3287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah responded, "We will assist you with your brother and grant you both authority, so they cannot harm you. With Our signs, you and those who follow you will ˹certainly˺ prevail."
3288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But when Moses came to them with Our clear signs, they said ˹arrogantly˺, "This is nothing but conjured magic ˹tricks˺. We have never heard of this in ˹the history of˺ our forefathers."
3289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses responded, "My Lord knows best who has come with ˹true˺ guidance from Him and will fare best in the end. Indeed, the wrongdoers will never succeed."
3290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharaoh declared, "O chiefs! I know of no other god for you but myself. So bake bricks out of clay for me, O  Haman, and build a high tower so I may look at the God of Moses, although I am sure he is a liar."
3291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And so he and his soldiers behaved arrogantly in the land with no right, thinking they would never be returned to Us.
3292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So We seized him and his soldiers, casting them into the sea. See then what was the end of the wrongdoers!
3293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We made them leaders inviting ˹others˺ to the Fire. And on the Day of Judgment they will not be helped.
3294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We caused a curse to follow them in this world. And on the Day of Judgment they will be among the outcasts.
3295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We gave Moses the Scripture—after destroying earlier nations—as an insight for the people, a guide, and mercy so perhaps they would be mindful.
3296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You were not there ˹O Prophet˺ on the western side of the mountain when We entrusted the Commandments to Moses, nor were you present ˹in his time˺.
3297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But We ˹later˺ raised ˹several˺ generations, and the ages took their toll on them. Nor were you living among the people of Midian, rehearsing Our revelations with them. But it is We Who have sent ˹this revelation to you˺.
3298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And you were not at the side of Mount Ṭûr when We called out ˹to Moses˺. But ˹you have been sent˺ as a mercy from your Lord to warn a people to whom no warner has come before you, so perhaps they may be mindful.
3299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Also so they would not say, if struck by an affliction for what their hands have done: "Our Lord! If only You had sent us a messenger, we would have followed Your revelations and become believers."
3300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But when the truth came to them from Us, they said, "If only he was given the like of what Moses had been given." Adding, "We truly deny both."
3301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Bring then a scripture from Allah which is a better guide than these two so I may follow it, if your claim is true."
3302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So if they fail to respond to you, then know that they only follow their desires. And who could be more astray than those who follow their desires with no guidance from Allah? Surely Allah does not guide the wrongdoing people.
3303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, We have steadily delivered the Word ˹of Allah˺ to the people so they may be mindful.
3304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹As for˺ those ˹faithful˺ to whom We had given the Scripture before this ˹Quran˺, they do believe in it.
3305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When it is recited to them, they declare, "We believe in it. This is definitely the truth from our Lord. We had already submitted ˹even˺ before this."
3306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   These ˹believers˺ will be given a double reward for their perseverance, responding to evil with good, and for donating from what We have provided for them.
3307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When they hear slanderous talk, they turn away from it, saying, "We are accountable for our deeds and you for yours. Peace ˹is our only response˺ to you! We want nothing to do with those who act ignorantly."
3308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You surely cannot guide whoever you like ˹O Prophet˺, but it is Allah Who guides whoever He wills, and He knows best who are ˹fit to be˺ guided.
3309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They say ˹to the Prophet˺, "If we were to follow ˹true˺ guidance with you, we would certainly be snatched away from our land." Have We not established for them a safe haven ˹in Mecca˺ to which fruits of all kinds are brought as a provision from Us? But most of them do not know ˹this favour˺.
3310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Imagine˺ how many societies We have destroyed that had been spoiled by their ˹comfortable˺ living! Those are their residences, never inhabited after them except passingly. And We ˹alone˺ were the Successor.
3311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Your Lord would never destroy a society until He had sent to its capital a messenger, reciting Our revelations to them. Nor would We ever destroy a society unless its people persisted in wrongdoing.
3312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whatever ˹pleasure˺ you have been given is no more than ˹a fleeting˺ enjoyment and adornment of this worldly life. But what is with Allah is far better and more lasting. Will you not then understand?
3313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Can those to whom We have made a fine promise—which they will see fulfilled—be like those who We have allowed to enjoy the pleasures of this worldly life, but on the Day of Judgment will be brought ˹for punishment˺?
3314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Watch for˺ the Day He will call to them, "Where are those you claimed were My associate-gods?"
3315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those ˹misleaders˺ against whom the decree ˹of torment˺ is justified will cry, "Our Lord! These ˹followers˺ are the ones we caused to deviate. We led them into deviance, for we ourselves were deviant. We disassociate ourselves ˹from them˺ before You. It was not us that they used to worship."
3316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It will be said ˹to the disbelievers˺, "Call upon your associate-gods ˹for help˺." So they will call them, but will receive no response. And they will face the punishment, wishing they had been ˹rightly˺ guided!
3317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹watch for˺ the Day He will call to them, asking, "What response did you give to the messengers?"
3318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They will be too dumbstruck on that Day to ask one another ˹for answers˺.
3319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who repent, believe, and do good ˹in this world˺, it is right to hope that they will be among the successful.
3320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Your Lord creates and chooses whatever He wills—the choice is not theirs. Glorified and Exalted is Allah above what they associate ˹with Him˺!
3321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And your Lord knows what their hearts conceal and what they reveal.
3322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is Allah. There is no god ˹worthy of worship˺ except Him. All praise belongs to Him in this life and the next. All authority is His. And to Him you will ˹all˺ be returned.
3323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ask ˹them, O  Prophet˺, "Imagine if Allah were to make the night perpetual for you until the Day of Judgment, which god other than Allah could bring you sunlight? Will you not then listen?"
3324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ask ˹them also˺, "Imagine if Allah were to make the day perpetual for you until the Day of Judgment, which god other than Allah could bring you night to rest in? Will you not then see?"
3325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is out of His mercy that He has made for you the day and night so that you may rest ˹in the latter˺ and seek His bounty ˹in the former˺, and perhaps you will be grateful.
3326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹watch for˺ the Day He will call to them, "Where are those you claimed were My associate-gods?"
3327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And We will bring forth a witness from every faith-community and ask ˹the polytheists˺, "Show ˹Us˺ your proof." Then they will ˹come to˺ know that the truth is with Allah ˹alone˺. And whatever ˹gods˺ they fabricated will fail them.
3328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, Korah was from the people of Moses, but he behaved arrogantly towards them. We had granted him such treasures that even their keys would burden a group of strong men. ˹Some of˺ his people advised him, "Do not be prideful! Surely Allah does not like the prideful.
3329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rather, seek the ˹reward˺ of the Hereafter by means of what Allah has granted you, without forgetting your share of this world. And be good ˹to others˺ as Allah has been good to you. Do not seek to spread corruption in the land, for Allah certainly does not like the corruptors."
3330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He replied, "I have been granted all this because of some knowledge I have."
3331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then he came out before his people in all his glamour. Those who desired the life of this world wished, "If only we could have something like what Korah has been given. He is truly a man of great fortune!"
3332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But those gifted with knowledge said, "Shame on you! Allah’s reward is far better for those who believe and do good. But none will attain this except the steadfast."
3333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then We caused the earth to swallow him up, along with his home. There was no one to help him against Allah, nor could he even help himself.
3334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And those who had craved his position the previous day began to say, "Ah! It is certainly Allah Who gives abundant or limited provisions to whoever He wills of His servants. Had it not been for the grace of Allah, He could have surely caused the earth to swallow us up! Oh, indeed! The disbelievers will never succeed."
3335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That ˹eternal˺ Home in the Hereafter We reserve ˹only˺ for those who seek neither tyranny nor corruption on the earth. The ultimate outcome belongs ˹only˺ to the righteous.
3336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoever comes with a good deed will be rewarded with what is better. And whoever comes with an evil deed, then the evildoers will only be rewarded for what they used to do.
3337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Most certainly, the One Who has ordained the Quran for you will ˹ultimately˺ bring you back home ˹to Mecca˺. Say, "My Lord knows best who has come with ˹true˺ guidance and who is clearly astray."
3338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 You never expected this Book to be revealed to you, but ˹it came˺ only ˹as˺ a mercy from your Lord. So never side with the disbelievers ˹in their disbelief˺.
3339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not let them turn you away from the revelations of Allah after they have been sent down to you. Rather, invite ˹all˺ to ˹the Way of˺ your Lord, and never be one of the polytheists.
3340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And do not invoke any other god with Allah. There is no god ˹worthy of worship˺ except Him. Everything is bound to perish except He Himself. All authority belongs to Him. And to Him you will ˹all˺ be returned.
3341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Alif-Lãm-Mĩm.
3342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do people think once they say, "We believe," that they will be left without being put to the test?
3343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We certainly tested those before them. And ˹in this way˺ Allah will clearly distinguish between those who are truthful and those who are liars.
3344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or do the evildoers ˹simply˺ think that they will escape Us? How wrong is their judgment!
3345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoever hopes for the meeting with Allah, ˹let them know that˺ Allah’s appointed time is sure to come. He is the All-Hearing, All-Knowing.
3346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And whoever strives ˹in Allah’s cause˺, only does so for their own good. Surely Allah is not in need of ˹any of˺ His creation.
3347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for those who believe and do good, We will certainly absolve them of their sins, and reward them according to the best of what they used to do.
3348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have commanded people to honour their parents. But if they urge you to associate with Me what you have no knowledge of, then do not obey them. To Me you will ˹all˺ return, and then I will inform you of what you used to do.
3349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who believe and do good will surely be admitted by Us into ˹the company of˺ the righteous.
3350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       There are some who say, "We believe in Allah," but when they suffer in the cause of Allah, they mistake ˹this˺ persecution at the hands of people for the punishment of Allah. But when victory comes from your Lord, they surely say ˹to the believers˺, "We have always been with you." Does Allah not know best what is in the hearts of all beings?
3351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah will certainly distinguish between those who have ˹sure˺ faith and the hypocrites.
3352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The disbelievers say to the believers, "˹Just˺ follow our way, and we will bear ˹the burden of˺ your sins." But they would never ˹want to˺ bear any of the believers’ sins. They are simply lying.
3353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet they will certainly ˹be made to˺ carry their own burdens, as well as other burdens along with their own. And they will surely be questioned on Judgment Day about what they used to fabricate.
3354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We sent Noah to his people, and he remained among them for a thousand years, less fifty. Then the Flood overtook them, while they persisted in wrongdoing.
3355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But We delivered him and those in the Ark, making it a sign for all people.
3356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when Abraham said to his people, "Worship Allah, and fear Him. This is better for you, if only you knew.
3357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You worship besides Allah nothing but idols, simply creating lies ˹about them˺. Those you worship besides Allah certainly cannot give you any provision. So seek provision from Allah ˹alone˺, worship Him, and be grateful to Him. To Him you will ˹all˺ be returned.
3358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If you ˹Meccans˺ persist in denial, so did ˹many˺ communities before you. The Messenger’s duty is only to deliver ˹the message˺ clearly."
3359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have they not seen how Allah originates the creation then resurrects it? That is certainly easy for Allah.
3360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "Travel throughout the land and see how He originated the creation, then Allah will bring it into being one more time. Surely Allah is Most Capable of everything.
3361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He punishes whoever He wills, and shows mercy to whoever He wills. And you will ˹all˺ be returned to Him.
3362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And you cannot escape Him on earth or in heaven. Nor have you any protector or helper besides Allah."
3363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who disbelieve in Allah’s signs and the meeting with Him, it is they who will have no hope in His mercy. And it is they who will suffer a painful punishment.
3364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the only response of Abraham’s people was to say: "Kill him or burn him!" But Allah saved him from the fire. Surely in this are signs for people who believe.
3365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He said ˹to his people˺, "You have taken idols ˹for worship˺ instead of Allah, only to keep ˹the bond of˺ harmony among yourselves in this worldly life. But on the Day of Judgment you will disown and curse one another. Your home will be the Fire, and you will have no helper!"
3366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Lot believed in him. And Abraham said, "I am emigrating ˹in obedience˺ to my Lord. He ˹alone˺ is indeed the Almighty, All-Wise."
3367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We blessed him with Isaac and ˹later˺ Jacob, and reserved prophethood and revelation for his descendants. We gave him his reward in this life, and in the Hereafter he will certainly be among the righteous.
3368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when Lot rebuked ˹the men of˺ his people: "You certainly commit a shameful deed that no man has ever done before you.
3369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do you really lust after ˹other˺ men, abuse the travellers, and practice immorality ˹openly˺ in your gatherings?" His people’s only response was to say ˹mockingly˺: "Bring Allah’s punishment upon us, if what you say is true."
3370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lot prayed, "My Lord! Help me against the people of corruption."
3371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Our messenger-angels came to Abraham with the good news ˹of the birth of Isaac˺, they said, "We are going to destroy the people of this city ˹of Sodom˺, for its people have persisted in wrongdoing."
3372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He said, "But Lot is there!" They responded, "We know best who is there. We will certainly save him and his family—except his wife, who is one of the doomed."
3373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when Our messenger-angels came to Lot, he was distressed and worried by their arrival. They reassured ˹him˺, "Do not fear, nor grieve. We will surely deliver you and your family—except your wife, who is one of the doomed.
3374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We are certainly bringing down a punishment from heaven upon the people of this city for their rebelliousness."
3375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We did leave ˹some of˺ its ruins as a clear lesson for people of understanding.
3376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And to the people of Midian ˹We sent˺ their brother Shu’aib. He said, "O my people! Worship Allah, and hope for ˹the reward of˺ the Last Day. And do not go about spreading corruption in the land."
3377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But they rejected him, so an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.
3378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the people of ’Ȃd and Thamûd ˹met a similar fate˺, which must be clear to you ˹Meccans˺ from their ruins. Satan made their ˹evil˺ deeds appealing to them, hindering them from the ˹Right˺ Way, although they were capable of reasoning.
3379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹We˺ also ˹destroyed˺ Korah, Pharaoh, and Haman. Indeed, Moses had come to them with clear proofs, but they behaved arrogantly in the land. Yet they could not escape ˹Us˺.
3380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So We seized each ˹people˺ for their sin: against some of them We sent a storm of stones, some were overtaken by a ˹mighty˺ blast, some We caused the earth to swallow, and some We drowned. Allah would not have wronged them, but it was they who wronged themselves.
3381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The parable of those who take protectors other than Allah is that of a spider spinning a shelter. And the flimsiest of all shelters is certainly that of a spider, if only they knew.
3382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah surely knows that whatever ˹gods˺ they invoke besides Him are ˹simply˺ nothing. For He is the Almighty, All-Wise.
3383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               These are the parables We set forth for humanity, but none will understand them except the people of knowledge.
3384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah created the heavens and the earth for a purpose. Surely in this is a sign for the people of faith.
3385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Recite what has been revealed to you of the Book and establish prayer. Indeed, ˹genuine˺ prayer should deter ˹one˺ from indecency and wickedness. The remembrance of Allah is ˹an˺ even greater ˹deterrent˺. And Allah ˹fully˺ knows what you ˹all˺ do.
3386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do not argue with the People of the Book unless gracefully, except with those of them who act wrongfully. And say, "We believe in what has been revealed to us and what was revealed to you. Our God and your God is ˹only˺ One. And to Him we ˹fully˺ submit."
3387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Similarly ˹to earlier messengers˺, We have revealed to you a Book ˹O Prophet˺. ˹The faithful of˺ those to whom We gave the Scriptures believe in it, as do some of these ˹pagan Arabs˺. And none denies Our revelations except the ˹stubborn˺ disbelievers.
3388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You ˹O Prophet˺ could not read any writing ˹even˺ before this ˹revelation˺, nor could you write at all. Otherwise, the people of falsehood would have been suspicious.
3389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But this ˹Quran˺ is ˹a set of˺ clear revelations ˹preserved˺ in the hearts of those gifted with knowledge. And none denies Our revelations except the ˹stubborn˺ wrongdoers.
3390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They say, "If only ˹some˺ signs had been sent down to him from his Lord!" Say, ˹O Prophet,˺ "Signs are only with Allah. And I am only sent with a clear warning."
3391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is it not enough for them that We have sent down to you the Book, ˹which is˺ recited to them. Surely in this ˹Quran˺ is a mercy and reminder for people who believe.
3392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "Sufficient is Allah as a Witness between me and you. He ˹fully˺ knows whatever is in the heavens and the earth. And those who believe in falsehood and disbelieve in Allah, it is they who are the ˹true˺ losers."
3393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They challenge you ˹O Prophet˺ to hasten the punishment. Had it not been for a time already set, the punishment would have certainly come to them ˹at once˺. But it will definitely take them by surprise when they least expect it.
3394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They urge you to hasten the punishment. And Hell will certainly encompass the disbelievers
3395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          on the Day the punishment will overwhelm them from above them and from below their feet. And it will be said, "Reap what you sowed."
3396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O My believing servants! My earth is truly spacious, so worship Me ˹alone˺.
3397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Every soul will taste death, then to Us you will ˹all˺ be returned.
3398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹As for˺ those who believe and do good, We will certainly house them in ˹elevated˺ mansions in Paradise, under which rivers flow, to stay there forever. How excellent is the reward for those who work ˹righteousness!˺—
3399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those who patiently endure, and put their trust in their Lord!
3400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How many are the creatures that cannot secure their provisions! ˹It is˺ Allah ˹Who˺ provides for them and you ˹as well˺. He is indeed the All-Hearing, All-Knowing.
3401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If you ask them ˹O Prophet˺ who created the heavens and the earth and subjected the sun and the moon ˹for your benefit˺, they will certainly say, "Allah!" How can they then be deluded ˹from the truth˺?
3402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah gives abundant or limited provisions to whoever He wills of His servants. Surely Allah has ˹full˺ knowledge of everything.
3403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if you ask them who sends down rain from the sky, giving life to the earth after its death, they will surely say, "Allah!" Say, "Praise be to Allah!" In fact, most of them do not understand.
3404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This worldly life is no more than play and amusement. But the Hereafter is indeed the real life, if only they knew.
3405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If they happen to be aboard a ship ˹caught in a storm˺, they cry out to Allah ˹alone˺ in sincere devotion. But as soon as He delivers them ˹safely˺ to shore, they associate ˹others with Him once again˺.
3406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So let them be ungrateful for all We have given them, and ˹let them˺ enjoy themselves ˹for now˺! For they will soon know.
3407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have they not seen how We have made ˹Mecca˺ a safe haven, whereas people ˹all˺ around them are snatched away? and deny Allah’s favours?
3408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And who does more wrong than those who fabricate lies against Allah or reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?
3409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who struggle in Our cause, We will surely guide them along Our Way. And Allah is certainly with the good-doers.
3410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Alif-Lãm-Mĩm.
3411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Romans have been defeated
3412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               in a nearby land. Yet following their defeat, they will triumph
3413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        within three to nine years. The ˹whole˺ matter rests with Allah before and after ˹victory˺. And on that day the believers will rejoice
3414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  at the victory willed by Allah. He gives victory to whoever He wills. For He is the Almighty, Most Merciful.
3415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹This is˺ the promise of Allah. ˹And˺ Allah never fails in His promise. But most people do not know.
3416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They ˹only˺ know the worldly affairs of this life, but are ˹totally˺ oblivious to the Hereafter.
3417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have they not reflected upon their own being? Allah only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet most people are truly in denial of the meeting with their Lord!
3418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might; they cultivated the land and developed it more than these ˹Meccans˺ ever have. Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.
3419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then most evil was the end of the evildoers for denying and mocking the signs of Allah.
3420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is Allah Who originates the creation, and will resurrect it. And then to Him you will ˹all˺ be returned.
3421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the Day the Hour will arrive, the wicked will be dumbstruck.
3422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There will be no intercessors for them from among their associate-gods, and they will ˹totally˺ deny their associate-gods.
3423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And on the Day the Hour will arrive, the people will then be split ˹into two groups˺.
3424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who believed and did good, they will be rejoicing in a Garden.
3425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And as for those who disbelieved, and denied Our signs and the meeting ˹with Allah˺ in the Hereafter, they will be confined in punishment.
3426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So glorify Allah in the evening and in the morning—
3427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  all praise is for Him in the heavens and the earth—as well as in the afternoon, and at noon.
3428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He brings forth the living from the dead and the dead from the living. And He gives life to the earth after its death. And so will you be brought forth ˹from the grave˺.
3429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              One of His signs is that He created you from dust, then—behold!—you are human beings spreading over ˹the earth˺.
3430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And one of His signs is that He created for you spouses from among yourselves so that you may find comfort in them. And He has placed between you compassion and mercy. Surely in this are signs for people who reflect.
3431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And one of His signs is the creation of the heavens and the earth, and the diversity of your languages and colours. Surely in this are signs for those of ˹sound˺ knowledge.
3432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And one of His signs is your sleep by night and by day ˹for rest˺ as well as your seeking His bounty ˹in both˺. Surely in this are signs for people who listen.
3433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And one of His signs is that He shows you lightning, inspiring ˹you with˺ hope and fear. And He sends down rain from the sky, reviving the earth after its death. Surely in this are signs for people who understand.
3434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And one of His signs is that the heavens and the earth persist by His command. Then when He calls you out of the earth just once, you will instantly come forth.
3435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And to Him belong all those in the heavens and the earth—all are subject to His Will.
3436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And He is the One Who originates the creation then will resurrect it—which is even easier for Him. To Him belong the finest attributes in the heavens and the earth. And He is the Almighty, All-Wise.
3437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He sets forth for you an example ˹drawn˺ from your own lives: would you allow some of those ˹bondspeople˺ in your possession to be your equal partners in whatever ˹wealth˺ We have provided you, keeping them in mind as you are mindful of your peers? This is how We make the signs clear for people who understand.
3438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In fact, the wrongdoers merely follow their desires with no knowledge. Who then can guide those Allah has left to stray? They will have no helpers.
3439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So be steadfast in faith in all uprightness ˹O Prophet˺—the natural Way of Allah which He has instilled in ˹all˺ people. Let there be no change in this creation of Allah. That is the Straight Way, but most people do not know.
3440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹O believers!˺ Always turn to Him ˹in repentance˺, be mindful of Him, and establish prayers. And do not be polytheists—
3441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹like˺ those who have divided their faith and split into sects, each rejoicing in what they have.
3442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When people are touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He gives them a taste of His mercy, a group of them associates ˹others˺ with their Lord ˹in worship˺,
3443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   becoming ungrateful for whatever ˹favours˺ We have given them. So enjoy yourselves, for soon you will know.
3444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or have We sent down to them an authority which attests to what they associate ˹with Him˺?
3445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If We give people a taste of mercy, they become prideful ˹because˺ of it. But if they are afflicted with an evil for what their hands have done, they instantly fall into despair.
3446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have they not seen that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.
3447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So give your close relatives their due, as well as the poor and the ˹needy˺ traveller. That is best for those who seek the pleasure of Allah, and it is they who will be successful.
3448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whatever loans you give, ˹only˺ seeking interest at the expense of people’s wealth will not increase with Allah. But whatever charity you give, ˹only˺ seeking the pleasure of Allah—it is they whose reward will be multiplied.
3449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is Allah Who created you, then gives you provisions, then will cause you to die, and then will bring you back to life. Can any of your associate-gods do any of this? Glorified and Exalted is He above what they associate with Him ˹in worship˺!
3450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Corruption has spread on land and sea as a result of what people’s hands have done, so that Allah may cause them to taste ˹the consequences of˺ some of their deeds and perhaps they might return ˹to the Right Path˺.
3451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "Travel throughout the land and see what was the end of those ˹destroyed˺ before ˹you˺—most of them were polytheists."
3452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So be steadfast in the Upright Faith ˹O Prophet˺, before the coming of a Day from Allah that cannot be averted. On that Day the people will be divided:
3453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those who disbelieved will bear ˹the burden of˺ their own disbelief; and those who did good will have prepared for themselves ˹eternal homes˺,
3454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  so that He may ˹generously˺ reward those who believe and do good, out of His grace. He truly does not like the disbelievers.
3455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And one of His signs is that He sends the winds, ushering in good news ˹of rain˺ so that He may give you a taste of His mercy, and that ships may sail by His command, and that you may seek His bounty, and perhaps you will be grateful.
3456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, We sent before you ˹O Prophet˺ messengers, each to their own people, and they came to them with clear proofs. Then We inflicted punishment upon those who persisted in wickedness. For it is Our duty to help the believers.
3457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, which He then spreads out in the sky or piles up into masses as He wills, from which you see rain come forth. Then as soon as He causes it to fall on whoever He wills of His servants, they rejoice,
3458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     although they had utterly lost hope just before it was sent down to them.
3459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        See then the impact of Allah’s mercy: how He gives life to the earth after its death! Surely That ˹same God˺ can raise the dead. For He is Most Capable of everything.
3460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then if We send a ˹harsh˺ wind which they see withering ˹their˺ crops, they will definitely deny ˹old favours˺ right after.
3461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So you ˹O Prophet˺ certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.
3462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.
3463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is Allah Who created you in a state of weakness, then developed ˹your˺ weakness into strength, then developed ˹your˺ strength into weakness and old age. He creates whatever He wills. For He is the All-Knowing, Most Capable.
3464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And on the Day the Hour will arrive, the wicked will swear that they did not stay ˹in this world˺ more than an hour. In this way they were always deluded ˹in the world˺.
3465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But those gifted with knowledge and faith will say ˹to them˺, "You did actually stay—as destined by Allah—until the Day of Resurrection. So here is the Day of Resurrection ˹which you denied˺! But you did not know ˹it was true˺."
3466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So on that Day the wrongdoers’ excuses will not benefit them, nor will they be allowed to appease ˹their Lord˺.
3467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We have certainly set forth every ˹kind of˺ lesson for people in this Quran. And no matter what sign you bring to them ˹O Prophet˺, the disbelievers will definitely say ˹to the believers˺, "You are only a people of falsehood."
3468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is how Allah seals the hearts of those unwilling to know ˹the truth˺.
3469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So be patient, for the promise of Allah certainly is true. And do not be disturbed by those who have no sure faith.
3470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Alif-Lãm-Mĩm.
3471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These are the verses of the Book, rich in wisdom.
3472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹It is˺ a guide and mercy for the good-doers—
3473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               those who establish prayer, pay alms-tax, and have sure faith in the Hereafter.
3474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful.
3475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But there are some who employ theatrics, only to lead others away from Allah’s Way—without any knowledge—and to make a mockery of it. They will suffer a humiliating punishment.
3476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whenever Our revelations are recited to them, they turn away in arrogance as if they did not hear them, as if there is deafness in their ears. So give them good news ˹O Prophet˺ of a painful punishment.
3477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely those who believe and do good will have the Gardens of Bliss,
3478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             staying there forever. Allah’s promise is true. And He is the Almighty, All-Wise.
3479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He created the heavens without pillars—as you can see—and placed firm mountains upon the earth so it does not shake with you, and scattered throughout it all types of creatures. And We send down rain from the sky, causing every type of fine plant to grow on earth.
3480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is Allah’s creation. Now show Me what those ˹gods˺ other than Him have created. In fact, the wrongdoers are clearly astray.
3481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We blessed Luqman with wisdom, ˹saying˺, "Be grateful to Allah, for whoever is grateful, it is only for their own good. And whoever is ungrateful, then surely Allah is Self-Sufficient, Praiseworthy."
3482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹remember˺ when Luqman said to his son, while advising him, "O my dear son! Never associate ˹anything˺ with Allah ˹in worship˺, for associating ˹others with Him˺ is truly the worst of all wrongs."
3483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We have commanded people to ˹honour˺ their parents. Their mothers bore them through hardship upon hardship, and their weaning takes two years. So be grateful to Me and your parents. To Me is the final return.
3484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But if they pressure you to associate with Me what you have no knowledge of, do not obey them. Still keep their company in this world courteously, and follow the way of those who turn to Me ˹in devotion˺. Then to Me you will ˹all˺ return, and then I will inform you of what you used to do.
3485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Luqman  added,˺ "O my dear son! ˹Even˺ if a deed were the weight of a mustard seed—be it ˹hidden˺ in a rock or in the heavens or the earth—Allah will bring it forth. Surely Allah is Most Subtle, All-Aware.
3486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           "O my dear son! Establish prayer, encourage what is good and forbid what is evil, and endure patiently whatever befalls you. Surely this is a resolve to aspire to.
3487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        "And do not turn your nose up to people, nor walk pridefully upon the earth. Surely Allah does not like whoever is arrogant, boastful.
3488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Be moderate in your pace. And lower your voice, for the ugliest of all voices is certainly the braying of donkeys."
3489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have you not seen that Allah has subjected for you whatever is in the heavens and whatever is on the earth, and has lavished His favours upon you, both seen and unseen? ˹Still˺ there are some who dispute about Allah without knowledge, or guidance, or an enlightening scripture.
3490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When it is said to them, "Follow what Allah has revealed," they reply, "No! We ˹only˺ follow what we found our forefathers practicing." ˹Would they still do so˺ even if Satan is inviting them to the torment of the Blaze?
3491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever fully submits themselves to Allah and is a good-doer, they have certainly grasped the firmest hand-hold. And with Allah rests the outcome of ˹all˺ affairs.
3492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But whoever disbelieves, do not let their disbelief grieve you ˹O Prophet˺. To Us is their return, and We will inform them of all they did. Surely Allah knows best what is ˹hidden˺ in the heart.
3493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We allow them enjoyment for a little while, then ˹in time˺ We will force them into a harsh torment.
3494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if you ask them who created the heavens and the earth, they will definitely say, "Allah!" Say, "Praise be to Allah!" In fact, most of them do not know.
3495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To Allah belongs whatever is in the heavens and the earth. Allah is truly the Self-Sufficient, Praiseworthy.
3496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If all the trees on earth were pens and the ocean ˹were ink˺, refilled by seven other oceans, the Words of Allah would not be exhausted. Surely Allah is Almighty, All-Wise.
3497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The creation and resurrection of you ˹all˺ is as simple ˹for Him˺ as that of a single soul. Surely Allah is All-Hearing, All-Seeing.
3498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you not see that Allah causes the night to merge into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term, and that Allah is All-Aware of what you do?
3499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and ˹because˺ Allah ˹alone˺ is the Most High, All-Great.
3500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you not see that the ships sail ˹smoothly˺ through the sea by the grace of Allah so that He may show you some of His signs? Surely in this are signs for whoever is steadfast, grateful.
3501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And as soon as they are overwhelmed by waves like mountains, they cry out to Allah ˹alone˺ in sincere devotion. But when He delivers them ˹safely˺ to shore, only some become relatively grateful. And none rejects Our signs except whoever is deceitful, ungrateful.
3502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O humanity! Be mindful of your Lord, and beware of a Day when no parent will be of any benefit to their child, nor will a child be of any benefit to their parent. Surely Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.
3503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, Allah ˹alone˺ has the knowledge of the Hour. He sends down the rain, No soul knows what it will earn for tomorrow, and no soul knows in what land it will die. Surely Allah is All-Knowing, All-Aware.
3504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Alif-Lãm-Mĩm.
3505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The revelation of this Book is—beyond doubt—from the Lord of all worlds.
3506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or do they say, "He has fabricated it!"? No! It is the truth from your Lord in order for you to warn a people to whom no warner has come before you, so they may be ˹rightly˺ guided.
3507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is Allah Who has created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. You have no protector or intercessor besides Him. Will you not then be mindful?
3508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He conducts every affair from the heavens to the earth, then it all ascends to Him on a Day whose length is a thousand years by your counting.
3509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That is the Knower of the seen and unseen—the Almighty, Most Merciful,
3510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who has perfected everything He created. And He originated the creation of humankind from clay.
3511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then He made his descendants from an extract of a humble fluid,
3512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            then He fashioned them and had a spirit of His Own ˹creation˺ breathed into them. And He gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.
3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Still˺ they ask ˹mockingly˺, "When we are disintegrated into the earth, will we really be raised as a new creation?" In fact, they are in denial of the meeting with their Lord.
3514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "Your soul will be taken by the Angel of Death, who is in charge of you. Then to your Lord you will ˹all˺ be returned."
3515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If only you could see the wicked hanging their heads ˹in shame˺ before their Lord, ˹crying:˺ "Our Lord! We have now seen and heard, so send us back and we will do good. We truly have sure faith ˹now˺!"
3516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had We willed, We could have easily imposed guidance on every soul. But My Word will come to pass: I will surely fill up Hell with jinn and humans all together.
3517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So taste ˹the punishment˺ for neglecting the meeting of this Day of yours. We ˹too˺ will certainly neglect you. And taste the torment of eternity for what you used to do!
3518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The only ˹true˺ believers in Our revelation are those who—when it is recited to them—fall into prostration and glorify the praises of their Lord and are not too proud.
3519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They abandon their beds, invoking their Lord with hope and fear, and donate from what We have provided for them.
3520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No soul can imagine what delights are kept in store for them as a reward for what they used to do.
3521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Is the one who is a believer equal ˹before Allah˺ to the one who is rebellious? They are not equal!
3522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who believe and do good, they will have the Gardens of ˹Eternal˺ Residence—as an accommodation for what they used to do.
3523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But as for those who are rebellious, the Fire will be their home. Whenever they try to escape from it, they will be forced back into it, and will be told, "Taste the Fire’s torment, which you used to deny."
3524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We will certainly make them taste some of the minor torment ˹in this life˺ before the major torment ˹of the Hereafter˺, so perhaps they will return ˹to the Right Path˺.
3525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And who does more wrong than the one who is reminded of Allah’s revelations then turns away from them? We will surely inflict punishment upon the wicked.
3526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We gave the Scripture to Moses—so let there be no doubt ˹O Prophet˺ that you ˹too˺ are receiving revelations—and We made it a guide for the Children of Israel.
3527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We raised from among them leaders, guiding by Our command, when they patiently endured and firmly believed in Our signs.
3528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, your Lord will decide between them on the Day of Judgment regarding their differences.
3529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs. Will they not then listen?
3530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do they not see how We drive rain to parched land, producing ˹various˺ crops from which they and their cattle eat? Will they not then see?
3531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They ask ˹mockingly˺, "When is this ˹Day of final˺ Decision, if what you say is true?"
3532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "On the Day of Decision it will not benefit the disbelievers to believe then, nor will they be delayed ˹from punishment˺."
3533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So turn away from them, and wait! They too are waiting.
3534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O Prophet! ˹Always˺ be mindful of Allah, and do not yield to the disbelievers and the hypocrites. Indeed, Allah is All-Knowing, All-Wise.
3535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Follow what is revealed to you from your Lord. Surely Allah is All-Aware of what you ˹all˺ do.
3536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And put your trust in Allah, for Allah is sufficient as a Trustee of Affairs.
3537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah does not place two hearts in any person’s chest. Nor does He regard your wives as ˹unlawful for you like˺ your real mothers, ˹even˺ if you say they are. These are only your baseless assertions. But Allah declares the truth, and He ˹alone˺ guides to the ˹Right˺ Way.
3538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let your adopted children keep their family names. That is more just in the sight of Allah. But if you do not know their fathers, then they are ˹simply˺ your fellow believers and close associates. There is no blame on you for what you do by mistake, but ˹only˺ for what you do intentionally. And Allah is All-Forgiving, Most Merciful.
3539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Prophet has a stronger affinity to the believers than they do themselves. And his wives are their mothers. As ordained by Allah, blood relatives are more entitled ˹to inheritance˺ than ˹other˺ believers and immigrants, unless you ˹want to˺ show kindness to your ˹close˺ associates ˹through bequest˺.
3540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹remember˺ when We took a covenant from the prophets, as well as from you ˹O Prophet˺, and from Noah, Abraham, Moses, and Jesus, son of Mary. We did take a solemn covenant from ˹all of˺ them
3541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                so that He may question these men of truth about their ˹delivery of the˺ truth. And He has prepared a painful punishment for the disbelievers.
3542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Remember Allah’s favour upon you when ˹enemy˺ forces came to ˹besiege˺ you ˹in Medina˺, And Allah is All-Seeing of what you do.
3543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Remember˺ when they came at you from east and west,
3544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then and there the believers were put to the test, and were violently shaken.
3545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹remember˺ when the hypocrites and those with sickness in their hearts said, "Allah and His Messenger have promised us nothing but delusion!"
3546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹remember˺ when a group of them said, "O people of Yathrib! There is no point in you staying ˹here˺, so retreat!" Another group of them asked the Prophet’s permission ˹to leave˺, saying, "Our homes are vulnerable," while ˹in fact˺ they were not vulnerable. They only wished to flee.
3547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had their city been sacked from all sides and they had been asked to abandon faith, they would have done so with little hesitation.
3548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They had already pledged to Allah earlier never to turn their backs ˹in retreat˺. And a pledge to Allah must be answered for.
3549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "Fleeing will not benefit you if you ˹try to˺ escape a natural or violent death. ˹If it is not your time,˺ you will only be allowed enjoyment for a little while."
3550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ask ˹them, O  Prophet˺, "Who can put you out of Allah’s reach if He intends to harm you or show you mercy?" They can never find any protector or helper besides Allah.
3551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah knows well those among you who discourage ˹others from fighting˺, saying ˹secretly˺ to their brothers, "Stay with us," and who themselves hardly take part in fighting.
3552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹They are˺ totally unwilling to assist you. When danger comes, you see them staring at you with their eyes rolling like someone in the throes of death. But once the danger is over, they slash you with razor-sharp tongues, ravenous for ˹worldly˺ gains. Such people have not ˹truly˺ believed, so Allah has rendered their deeds void. And that is easy for Allah.
3553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They ˹still˺ think that the enemy alliance has not ˹yet˺ withdrawn. And if the allies were to come ˹again˺, the hypocrites would wish to be away in the desert among nomadic Arabs, ˹only˺ asking for news about you ˹believers˺. And if the hypocrites were in your midst, they would hardly take part in the fight.
3554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, in the Messenger of Allah you have an excellent example for whoever has hope in Allah and the Last Day, and remembers Allah often.
3555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When the believers saw the enemy alliance, they said, "This is what Allah and His Messenger had promised us. The promise of Allah and His Messenger has come true." And this only increased them in faith and submission.
3556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Among the believers are men who have proven true to what they pledged to Allah. Some of them have fulfilled their pledge ˹with their lives˺, others are waiting ˹their turn˺. They have never changed ˹their commitment˺ in the least.
3557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It all happened˺ so Allah may reward the faithful for their faithfulness, and punish the hypocrites if He wills or turn to them ˹in mercy˺. Surely Allah is All-Forgiving, Most Merciful.
3558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Allah drove back the disbelievers in their rage, totally empty-handed. And Allah spared the believers from fighting. For Allah is All-Powerful, Almighty.
3559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And He brought down those from the People of the Book who supported the enemy alliance from their own strongholds, and cast horror into their hearts. You ˹believers˺ killed some, and took others captive.
3560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He has also caused you to take over their lands, homes, and wealth, as well as lands you have not yet set foot on. And Allah is Most Capable of everything.
3561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Prophet! Say to your wives, "If you desire the life of this world and its luxury, then come, I will give you a ˹suitable˺ compensation ˹for divorce˺ and let you go graciously.
3562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if you desire Allah and His Messenger and the ˹everlasting˺ Home of the Hereafter, then Surely Allah has prepared a great reward for those of you who do good."
3563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O wives of the Prophet! If any of you were to commit a blatant misconduct, the punishment would be doubled for her. And that is easy for Allah.
3564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And whoever of you devoutly obeys Allah and His Messenger and does good, We will grant her double the reward, and We have prepared for her an honourable provision.
3565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O wives of the Prophet! You are not like any other women: if you are mindful ˹of Allah˺, then do not be overly effeminate in speech ˹with men˺ or those with sickness in their hearts may be tempted, but speak in a moderate tone.
3566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Settle in your homes, and do not display yourselves as women did in the days of ˹pre-Islamic˺ ignorance. Establish prayer, pay alms-tax, and obey Allah and His Messenger. Allah only intends to keep ˹the causes of˺ evil away from you and purify you completely, O  members of the ˹Prophet’s˺ family!
3567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Always˺ remember what is recited in your homes of Allah’s revelations and ˹prophetic˺ wisdom. Surely Allah is Most Subtle, All-Aware.
3568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely ˹for˺ Muslim men and women, believing men and women, devout men and women, truthful men and women, patient men and women, humble men and women, charitable men and women, fasting men and women, men and women who guard their chastity, and men and women who remember Allah often—for ˹all of˺ them Allah has prepared forgiveness and a great reward.
3569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is not for a believing man or woman—when Allah and His Messenger decree a matter—to have any other choice in that matter. Indeed, whoever disobeys Allah and His Messenger has clearly gone ˹far˺ astray.
3570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹remember, O  Prophet,˺ when you said to the one "Keep your wife and fear Allah," while concealing within yourself what Allah was going to reveal. And ˹so˺ you were considering the people, whereas Allah was more worthy of your consideration. So when Zaid totally lost interest in ˹keeping˺ his wife, We gave her to you in marriage, so that there would be no blame on the believers for marrying the ex-wives of their adopted sons after their divorce. And Allah’s command is totally binding.
3571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There is no blame on the Prophet for doing what Allah has ordained for him. That has been the way of Allah with those ˹prophets˺ who had gone before. And Allah’s command has been firmly decreed.
3572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹That is His way with˺ those ˹prophets˺ who deliver the messages of Allah, and consider Him, and none but Allah. And sufficient is Allah as a ˹vigilant˺ Reckoner.
3573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Muhammad is not the father of any of your men, but is the Messenger of Allah and the seal of the prophets. And Allah has ˹perfect˺ knowledge of all things.
3574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! Always remember Allah often,
3575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and glorify Him morning and evening.
3576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He is the One Who showers His blessings upon you—and His angels pray for you—so that He may bring you out of darkness and into light. For He is ever Merciful to the believers.
3577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Their greeting on the Day they meet Him will be, "Peace!" And He has prepared for them an honourable reward.
3578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O Prophet! We have sent you as a witness, and a deliverer of good news, and a warner,
3579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and a caller to ˹the Way of˺ Allah by His command, and a beacon of light.
3580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Give good news to the believers that they will have a great bounty from Allah.
3581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do not yield to the disbelievers and the hypocrites. Overlook their annoyances, and put your trust in Allah. For Allah is sufficient as a Trustee of Affairs.
3582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! If you marry believing women and then divorce them before you touch them, so give them a ˹suitable˺ compensation, and let them go graciously.
3583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O Prophet! We have made lawful for you your wives to whom you have paid their ˹full˺ dowries as well as those ˹bondwomen˺ in your possession, whom Allah has granted you. We know well what ˹rulings˺ We have ordained for the believers in relation to their wives and those ˹bondwomen˺ in their possession. As such, there would be no blame on you. And Allah is All-Forgiving, Most Merciful.
3584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is up to you ˹O Prophet˺ to delay or receive whoever you please of your wives. There is no blame on you if you call back any of those you have set aside. That is more likely that they will be content, not grieved, and satisfied with what you offer them all. Allah ˹fully˺ knows what is in your hearts. And Allah is All-Knowing, Most Forbearing.
3585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is not lawful for you ˹O Prophet˺ to marry more women after this, nor can you replace any of your present wives with another, even if her beauty may attract you—except those ˹bondwomen˺ in your possession. And Allah is ever Watchful over all things.
3586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Do not enter the homes of the Prophet without permission ˹and if invited˺ for a meal, do not ˹come too early and˺ linger until the meal is ready. But if you are invited, then enter ˹on time˺. Once you have eaten, then go on your way, and do not stay for casual talk. Such behaviour is truly annoying to the Prophet, yet he is too shy to ask you to leave. But Allah is never shy of the truth. And when you ˹believers˺ ask his wives for something, ask them from behind a barrier. This is purer for your hearts and theirs. And it is not right for you to annoy the Messenger of Allah, nor ever marry his wives after him. This would certainly be a major offence in the sight of Allah.
3587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whether you reveal something or conceal it, surely Allah has ˹perfect˺ knowledge of all things.
3588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is no blame on the Prophet’s wives ˹if they appear unveiled˺ before their fathers, their sons, their brothers, their brothers’ sons, their sisters’ sons, their fellow ˹Muslim˺ women, and those ˹bondspeople˺ in their possession. And be mindful of Allah ˹O wives of the Prophet!˺ Surely Allah is a Witness over all things.
3589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, Allah showers His blessings upon the Prophet, and His angels pray for him. O  believers! Invoke Allah’s blessings upon him, and salute him with worthy greetings of peace.
3590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely those who offend Allah are condemned by Allah in this world and the Hereafter. And He has prepared for them a humiliating punishment.
3591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for those who abuse believing men and women unjustifiably, they will definitely bear the guilt of slander and blatant sin.
3592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O Prophet! Ask your wives, daughters, and believing women to draw their cloaks over their bodies. In this way it is more likely that they will be recognized ˹as virtuous˺ and not be harassed. And Allah is All-Forgiving, Most Merciful.
3593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If the hypocrites, and those with sickness in their hearts, and rumour-mongers in Medina do not desist, We will certainly incite you ˹O Prophet˺ against them, and then they will not be your neighbours there any longer.
3594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They deserve to be˺ condemned. ˹If they were to persist,˺ they would get themselves seized and killed relentlessly wherever they are found!
3595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That was Allah’s way with those ˹hypocrites˺ who have gone before. And you will find no change in Allah’s way.
3596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                People ask you ˹O Prophet˺ about the Hour. Say, "That knowledge is only with Allah. You never know, perhaps the Hour is near."
3597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely Allah condemns the disbelievers, and has prepared for them a blazing Fire,
3598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 to stay there for ever and ever—never will they find any protector or helper.
3599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On the Day their faces are ˹constantly˺ flipped in the Fire, they will cry, "Oh! If only we had obeyed Allah and obeyed the Messenger!"
3600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they will say, "Our Lord! We obeyed our leaders and elite, but they led us astray from the ˹Right˺ Way.
3601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Lord! Give them double ˹our˺ punishment, and condemn them tremendously."
3602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Do not be like those who slandered Moses, but Allah cleared him of what they said. And he was honourable in the sight of Allah.
3603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O  believers! Be mindful of Allah, and say what is right.
3604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He will bless your deeds for you, and forgive your sins. And whoever obeys Allah and His Messenger, has truly achieved a great triumph.
3605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We offered the trust to the heavens and the earth and the mountains, but they ˹all˺ declined to bear it, being fearful of it. But humanity assumed it, ˹for˺ they are truly wrongful ˹to themselves˺ and ignorant ˹of the consequences˺,
3606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that Allah will punish hypocrite men and women and polytheistic men and women, and Allah will turn in mercy to believing men and women. For Allah is All-Forgiving, Most Merciful.
3607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All praise is for Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And praise be to Him in the Hereafter. He is the All-Wise, All-Aware.
3608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He knows whatever goes into the earth and whatever comes out of it, and whatever descends from the sky and whatever ascends into it. And He is the Most Merciful, All-Forgiving.
3609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers say, "The Hour will never come to us." Say, ˹O Prophet,˺ "Yes—by my Lord, the Knower of the unseen—it will certainly come to you!" Not ˹even˺ an atom’s weight is hidden from Him in the heavens or the earth; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record.
3610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So He may reward those who believe and do good. It is they who will have forgiveness and an honourable provision.
3611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for those who strive to discredit Our revelations, it is they who will suffer the ˹worst˺ torment of agonizing pain.
3612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those gifted with knowledge ˹clearly˺ see that what has been revealed to you from your Lord ˹O Prophet˺ is the truth, and that it guides to the Path of the Almighty, the Praiseworthy.
3613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The disbelievers say ˹mockingly to one another˺, "Shall we show you a man who claims that when you have been utterly disintegrated you will be raised as a new creation?
3614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Has he fabricated a lie against Allah or is he insane?" In fact, those who do not believe in the Hereafter are bound for torment and have strayed farthest ˹from the truth˺.
3615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have they not then seen all that surrounds them of the heavens and the earth? If We willed, We could cause the earth to swallow them up, or cause ˹deadly˺ pieces of the sky to fall upon them. Surely in this is a sign for every servant who turns ˹to Allah˺.
3616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We granted David a ˹great˺ privilege from Us, ˹commanding:˺ "O mountains! Echo his hymns! And the birds as well." We made iron mouldable for him,
3617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 instructing: "Make full-length armour, ˹perfectly˺ balancing the links. And work righteousness ˹O family of David!˺. Indeed, I am All-Seeing of what you do."
3618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And to Solomon ˹We subjected˺ the wind: its morning stride was a month’s journey and so was its evening stride. And We caused a stream of molten copper to flow for him, and ˹We subjected˺ some of the jinn to work under him by his Lord’s Will. And whoever of them deviated from Our command, We made them taste the torment of the blaze.
3619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They made for him whatever he desired of sanctuaries, statues, basins as large as reservoirs, and cooking pots fixed ˹into the ground˺. ˹We ordered:˺ "Work gratefully, O  family of David!" ˹Only˺ a few of My servants are ˹truly˺ grateful.
3620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When We decreed Solomon’s death, nothing indicated to the ˹subjected˺ jinn that he was dead except the termites eating away his staff. So when he collapsed, the jinn realized that if they had ˹really˺ known the unseen, they would not have remained in ˹such˺ humiliating servitude.
3621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, there was a sign for ˹the tribe of˺ Sheba in their homeland: two orchards—one to the right and the other to the left. ˹They were told:˺ "Eat from the provision of your Lord, and be grateful to Him. ˹Yours is˺ a good land and a forgiving Lord."
3622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But they turned away. So We sent against them a devastating flood, and replaced their orchards with two others producing bitter fruit, fruitless bushes,
3623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is how We rewarded them for their ingratitude. Would We ever punish ˹anyone in such a way˺ except the ungrateful?
3624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We had also placed between them and the cities We showered with blessings ˹many small˺ towns within sight of one another. And We set moderate travel distances in between, ˹saying,˺ "Travel between them by day and night safely."
3625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But they said, "Our Lord! Make ˹the distances of˺ our journeys longer," wronging themselves. So We reduced them to ˹cautionary˺ tales, and scattered them utterly. Surely in this are lessons for whoever is steadfast, grateful.
3626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Iblis’ assumption about them has come true, so they ˹all˺ follow him, except a group of ˹true˺ believers.
3627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He does not have any authority over them, but ˹Our Will is˺ only to distinguish those who believe in the Hereafter from those who are in doubt about it. And your Lord is a ˹vigilant˺ Keeper over all things."
3628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "Call upon those you claim ˹to be divine˺ besides Allah. They do not possess ˹even˺ an atom’s weight either in the heavens or the earth, nor do they have any share in ˹governing˺ them. Nor is any of them a helper to Him."
3629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No intercession will be of any benefit with Him, except by those granted permission by Him. ˹At last,˺ when the dread ˹of Judgment Day˺ is relieved from their hearts ˹because they are permitted to intercede˺, they will ˹excitedly˺ ask ˹the angels˺, "What has your Lord ˹just˺ said?" The angels will reply, "The truth! And He is the Most High, All-Great."
3630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ask ˹them, O  Prophet˺, "Who provides for you from the heavens and the earth?" Say, "Allah! Now, certainly one of our two groups is ˹rightly˺ guided; the other is clearly astray."
3631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, "You will not be accountable for our misdeeds, nor will we be accountable for your deeds."
3632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, "Our Lord will gather us together, then He will judge between us with the truth. For He is the All-Knowing Judge."
3633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, "Show me those ˹idols˺ you have joined with Him as partners. No! In fact, He ˹alone˺ is Allah—the Almighty, All-Wise."
3634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner to all of humanity, but most people do not know.
3635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
3636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "A Day has ˹already˺ been appointed for you, which you can neither delay nor advance by a ˹single˺ moment."
3637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The disbelievers vow, "We will never believe in this Quran, nor in those ˹Scriptures˺ before it." If only you could see when the wrongdoers will be detained before their Lord, throwing blame at each other! The lowly ˹followers˺ will say to the arrogant ˹leaders˺, "Had it not been for you, we would certainly have been believers."
3638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The arrogant will respond to the lowly, "Did we ever hinder you from guidance after it came to you? In fact, you were wicked ˹on your own˺."
3639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The lowly will say to the arrogant, "No! It was your plotting by day and night—when you ordered us to disbelieve in Allah and to set up equals with Him." They will ˹all˺ hide ˹their˺ remorse when they see the torment. And We will put shackles around the necks of the disbelievers. Will they be rewarded except for what they used to do?
3640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whenever We sent a warner to a society, its elite would say, "We truly reject what you have been sent with."
3641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Adding, "We are far superior ˹to the believers˺ in wealth and children, and we will never be punished."
3642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills. But most people do not know."
3643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is not your wealth or children that bring you closer to Us. But those who believe and do good—it is they who will have a multiplied reward for what they did, and they will be secure in ˹elevated˺ mansions.
3644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who strive to discredit Our revelations, it is they who will be confined in punishment.
3645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills of His servants. And whatever you spend in charity, He will compensate ˹you˺ for it. For He is the Best Provider."
3646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹consider˺ the Day He will gather them all together, and then ask the angels, "Was it you that these ˹polytheists˺ used to worship?"
3647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will say, "Glory be to You! Our loyalty is to You, not them. In fact, they ˹only˺ followed the ˹temptations of evil˺ jinn, in whom most of them had faith."
3648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Today neither of you can benefit or protect each other. And We will say to the wrongdoers, "Taste the torment of the Fire, which you used to deny."
3649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When Our clear revelations are recited to them, they say, "This is only a man who wishes to hinder you from what your forefathers used to worship." They also say, "This ˹Quran˺ is no more than a fabricated lie." And the disbelievers say of the truth when it has come to them, "This is nothing but pure magic."
3650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They say so even though˺ We had never given them any scriptures to study, nor did We ever send them a warner before you ˹O Prophet˺.
3651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those ˹destroyed˺ before them denied as well—and these ˹Meccans˺ have not attained even one-tenth of what We had given their predecessors. Yet ˹when˺ they denied My messengers, how severe was My response!
3652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "I advise you to do ˹only˺ one thing: stand up for ˹the sake of˺ Allah—individually or in pairs—then reflect. Your fellow man is not insane. He is only a warner to you before ˹the coming of˺ a severe punishment."
3653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, "If I had ever asked you for a reward, you could keep it. My reward is only from Allah. And He is a Witness over all things."
3654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, "Surely my Lord hurls the truth ˹against falsehood˺. ˹He is˺ the Knower of all unseen."
3655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, "The truth has come, and falsehood will vanish, never to return."
3656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "If I am astray, the loss is only mine. And if I am guided, it is ˹only˺ because of what my Lord reveals to me. He is indeed All-Hearing, Ever Near."
3657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If only you could see when they will be horrified with no escape ˹on Judgment Day˺! And they will be seized from a nearby place.
3658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will ˹then˺ cry, "We do ˹now˺ believe in it ˹all˺." But how could they ˹possibly˺ attain faith from a place so far-off ˹from the world˺,
3659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             while they had already rejected it before, guessing blindly from a place ˹equally˺ far-away ˹from the Hereafter˺?
3660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will be sealed off from whatever they desire, as was done to their counterparts before. Indeed, they were ˹all˺ in alarming doubt.
3661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All praise is for Allah, the Originator of the heavens and the earth, Who made angels ˹as His˺ messengers with wings—two, three, or four. He increases in creation whatever He wills. Surely Allah is Most Capable of everything.
3662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whatever mercy Allah opens up for people, none can withhold it. And whatever He withholds, none but Him can release it. For He is the Almighty, All-Wise.
3663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O humanity! Remember Allah’s favours upon you. Is there any creator other than Allah who provides for you from the heavens and the earth? There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?
3664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If you are rejected by them, so too were messengers before you. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
3665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O humanity! Indeed, Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.
3666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely Satan is an enemy to you, so take him as an enemy. He only invites his followers to become inmates of the Blaze.
3667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who disbelieve will have a severe punishment. But those who believe and do good will have forgiveness and a great reward.
3668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Are those whose evil-doing is made so appealing to them that they deem it good ˹like those who are rightly guided˺? ˹It is˺ certainly Allah ˹Who˺ leaves to stray whoever He wills, and guides whoever He wills. So do not grieve yourself to death over them ˹O Prophet˺. Surely Allah is All-Knowing of what they do.
3669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, and then We drive them to a lifeless land, giving life to the earth after its death. Similar is the Resurrection.
3670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whoever seeks honour and power, then ˹let them know that˺ all honour and power belongs to Allah. To Him ˹alone˺ good words ascend, and righteous deeds are raised up by Him. As for those who plot evil, they will suffer a severe punishment. And the plotting of such ˹people˺ is doomed ˹to fail˺.
3671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹it is˺ Allah ˹Who˺ created you from dust, That is certainly easy for Allah.
3672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The two bodies of water are not alike: one is fresh, palatable, and pleasant to drink and the other is salty and bitter. Yet from them both you eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through both, so you may seek His bounty and give thanks ˹to Him˺.
3673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He merges the night into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term. That is Allah—your Lord! All authority belongs to Him. But those ˹idols˺ you invoke besides Him do not possess even the skin of a date stone.
3674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you call upon them, they cannot hear your calls. And if they were to hear, they could not respond to you. On the Day of Judgment they will disown your worship ˹of them˺. And no one can inform you ˹O Prophet˺ like the All-Knowledgeable.
3675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O humanity! It is you who stand in need of Allah, but Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.
3676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If He willed, He could eliminate you and produce a new creation.
3677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And that is not difficult for Allah ˹at all˺.
3678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     No soul burdened with sin will bear the burden of another. And if a sin-burdened soul cries for help with its burden, none of it will be carried—even by a close relative. You ˹O Prophet˺ can only warn those who stand in awe of their Lord without seeing Him and establish prayer. Whoever purifies themselves, they only do so for their own good. And to Allah is the final return.
3679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those blind ˹to the truth˺ and those who can see are not equal,
3680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           nor are the darkness and the light,
3681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nor the ˹scorching˺ heat and the ˹cool˺ shade.
3682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nor are the dead and the living equal. Indeed, Allah ˹alone˺ makes whoever He wills hear, but you ˹O Prophet˺ can never make those in the graves hear ˹your call˺.
3683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You are only a warner.
3684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have surely sent you with the truth as a deliverer of good news and a warner. There is no community that has not had a warner.
3685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If they deny you, so did those before them. Their messengers came to them with clear proofs, divine Books, and enlightening Scriptures.
3686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then I seized those who persisted in disbelief. How severe was My response!
3687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do you not see that Allah sends down rain from the sky with which We bring forth fruits of different colours? And in the mountains are streaks of varying shades of white, red, and raven black;
3688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               just as people, living beings, and cattle are of various colours as well. Of all of Allah’s servants, only the knowledgeable ˹of His might˺ are ˹truly˺ in awe of Him. Allah is indeed Almighty, All-Forgiving.
3689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely those who recite the Book of Allah, establish prayer, and donate from what We have provided for them—secretly and openly—˹can˺ hope for an exchange that will never fail,
3690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that He will reward them in full and increase them out of His grace. He is truly All-Forgiving, Most Appreciative.
3691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Book We have revealed to you ˹O Prophet˺ is the truth, confirming what came before it. Surely Allah is All-Aware, All-Seeing of His servants.
3692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then We granted the Book to those We have chosen from Our servants. Some of them wrong themselves, some follow a middle course, and some are foremost in good deeds by Allah’s Will. That is ˹truly˺ the greatest bounty.
3693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will enter the Gardens of Eternity, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk.
3694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they will say, "Praise be to Allah, Who has kept away from us all ˹causes of˺ sorrow. Our Lord is indeed All-Forgiving, Most Appreciative.
3695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹He is the One˺ Who—out of His grace—has settled us in the Home of Everlasting Stay, where we will be touched by neither fatigue nor weariness."
3696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for the disbelievers, they will have the Fire of Hell, where they will not be ˹allowed to be˺ finished by death, nor will its torment be lightened for them. This is how We reward every ˹stubborn˺ disbeliever.
3697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             There they will be ˹fervently˺ screaming, "Our Lord! Take us out ˹and send us back˺. We will do good, unlike what we used to do." ˹They will be told,˺ "Did We not give you lives long enough so that whoever wanted to be mindful could have done so? And the warner came to you. So taste ˹the punishment˺, for the wrongdoers have no helper."
3698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, Allah is the Knower of the unseen of the heavens and the earth. He surely knows best what is ˹hidden˺ in the heart.
3699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who has placed you as successors on earth. So whoever disbelieves will bear ˹the burden of˺ their own disbelief. The disbelievers’ denial only increases them in contempt in the sight of their Lord, and it will only contribute to their loss.
3700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ask ˹them, O  Prophet˺, "Have you considered your associate-gods which you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Or have We given the polytheists a Book, which serves as a clear proof for them? In fact, the wrongdoers promise each other nothing but delusion."
3701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, Allah ˹alone˺ keeps the heavens and the earth from falling apart. If they were to fall apart, none but Him could hold them up. He is truly Most Forbearing, All-Forgiving.
3702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They swore by Allah their most solemn oaths that if a warner were to come to them, they would certainly be better guided than any other community. Yet when a warner did come to them, it only drove them farther away—
3703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     behaving arrogantly in the land and plotting evil. But evil plotting only backfires on those who plot. Are they awaiting anything but the fate of those ˹destroyed˺ before? You will find no change in the way of Allah, nor will you find it diverted ˹to someone else˺.
3704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might. But there is nothing that can escape Allah in the heavens or the earth. He is certainly All-Knowing, Most Capable.
3705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If Allah were to punish people ˹immediately˺ for what they have committed, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, then surely Allah is All-Seeing of His servants.
3706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ya-Sĩn.
3707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 By the Quran, rich in wisdom!
3708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You ˹O Prophet˺ are truly one of the messengers
3709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       upon the Straight Path.
3710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹This is˺ a revelation from the Almighty, Most Merciful,
3711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that you may warn a people whose forefathers were not warned, and so are heedless.
3712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The decree ˹of torment˺ has already been justified against most of them, for they will never believe.
3713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹It is as if˺ We have put shackles around their necks up to their chins, so their heads are forced up,
3714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and have placed a barrier before them and a barrier behind them and covered them ˹all˺ up, so they fail to see ˹the truth˺.
3715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is the same whether you warn them or not—they will never believe.
3716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You can only warn those who follow the Reminder So give them good news of forgiveness and an honourable reward.
3717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is certainly We Who resurrect the dead, and write what they send forth and what they leave behind. Everything is listed by Us in a perfect Record.
3718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Give them an example ˹O Prophet˺ of the residents of a town, when the messengers came to them.
3719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We sent them two messengers, but they rejected both. So We reinforced ˹the two˺ with a third, and they declared, "We have indeed been sent to you ˹as messengers˺."
3720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The people replied, "You are only humans like us, and the Most Compassionate has not revealed anything. You are simply lying!"
3721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The messengers responded, "Our Lord knows that we have truly been sent to you.
3722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And our duty is only to deliver ˹the message˺ clearly."
3723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The people replied, "We definitely see you as a bad omen for us. If you do not desist, we will certainly stone you ˹to death˺ and you will be touched with a painful punishment from us."
3724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The messengers said, "Your bad omen lies within yourselves. Are you saying this because you are reminded ˹of the truth˺? In fact, you are a transgressing people."
3725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then from the farthest end of the city a man came, rushing. He advised, "O my people! Follow the messengers.
3726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Follow those who ask no reward of you, and are ˹rightly˺ guided.
3727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And why should I not worship the One Who has originated me, and to Whom you will be returned.
3728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How could I take besides Him other gods whose intercession would not be of any benefit to me, nor could they save me if the Most Compassionate intended to harm me?
3729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, I would then be clearly astray.
3730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I do believe in your Lord, so listen to me."
3731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹But they killed him, then˺ he was told ˹by the angels˺, "Enter Paradise!" He said, "If only my people knew
3732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           of how my Lord has forgiven me, and made me one of the honourable."
3733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We did not send any soldiers from the heavens against his people after his death, nor did We need to.
3734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All it took was one ˹mighty˺ blast, and they were extinguished at once.
3735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Oh pity, such beings! No messenger ever came to them without being mocked.
3736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have the deniers not considered how many peoples We destroyed before them who never came back to life again?
3737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet they will all be brought before Us.
3738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is a sign for them in the dead earth: We give it life, producing grain from it for them to eat.
3739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We have placed in it gardens of palm trees and grapevines, and caused springs to gush forth in it,
3740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        so that they may eat from its fruit, which they had no hand in making. Will they not then give thanks?
3741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Glory be to the One Who created all ˹things in˺ pairs—˹be it˺ what the earth produces, their genders, or what they do not know!
3742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There is also a sign for them in the night: We strip from it daylight, then—behold!—they are in darkness.
3743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sun travels for its fixed term. That is the design of the Almighty, All-Knowing.
3744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for the moon, We have ordained ˹precise˺ phases for it, until it ends up like an old, curved palm stalk.
3745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is not for the sun to catch up with the moon, nor does the night outrun the day. Each is travelling in an orbit of their own.
3746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Another sign for them is that We carried their ancestors ˹with Noah˺ in the fully loaded Ark,
3747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and created for them similar things to ride in.
3748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If We willed, We could drown them: then no one would respond to their cries, nor would they be rescued—
3749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        except by mercy from Us, allowing them enjoyment for a ˹little˺ while.
3750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Still they turn away˺ when it is said to them, "Beware of what is ahead of you ˹in the Hereafter˺ and what is behind you ˹of destroyed nations˺ so you may be shown mercy."
3751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whenever a sign comes to them from their Lord, they turn away from it.
3752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when it is said to them, "Donate from what Allah has provided for you," the disbelievers say to the believers, "Why should we feed those whom Allah could have fed if He wanted to? You are clearly astray!"
3753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
3754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They must be awaiting a single Blast, which will seize them while they are ˹entrenched˺ in ˹worldly˺ disputes.
3755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then they will not be able to make a ˹last˺ will, nor can they return to their own people.
3756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Trumpet will be blown ˹a second time˺, then—behold!—they will rush from the graves to their Lord.
3757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They will cry, "Woe to us! Who has raised us up from our place of rest? This must be what the Most Compassionate warned us of; the messengers told the truth!"
3758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It will only take one Blast, then at once they will all be brought before Us.
3759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    On that Day no soul will be wronged in the least, nor will you be rewarded except for what you used to do.
3760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, on that Day the residents of Paradise will be busy enjoying themselves.
3761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They and their spouses will be in ˹cool˺ shade, reclining on ˹canopied˺ couches.
3762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There they will have fruits and whatever they desire.
3763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And "Peace!" will be ˹their˺ greeting from the Merciful Lord.
3764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Then the disbelievers will be told,˺ "Step away ˹from the believers˺ this Day, O  wicked ones!
3765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Did I not command you, O  Children of Adam, not to follow Satan, for he is truly your sworn enemy,
3766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         but to worship Me ˹alone˺? This is the Straight Path.
3767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet he already misled great multitudes of you. Did you not have any sense?
3768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is the Hell you were warned of.
3769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Burn in it Today for your disbelief."
3770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On this Day We will seal their mouths, their hands will speak to Us, and their feet will testify to what they used to commit.
3771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Had We willed, We could have easily blinded their eyes, so they would struggle to find their way. How then could they see?
3772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And had We willed, We could have transfigured them on the spot, so they could neither progress forward nor turn back.
3773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And whoever We grant a long life, We reverse them in development. Will they not then understand?
3774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have not taught him poetry, nor is it fitting for him. This ˹Book˺ is only a Reminder and a clear Quran
3775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 to warn whoever is ˹truly˺ alive and fulfil the decree ˹of torment˺ against the disbelievers.
3776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do they not see that We singlehandedly created for them, among other things, cattle which are under their control?
3777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We have subjected these ˹animals˺ to them, so they may ride some and eat others.
3778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they derive from them other benefits and drinks. Will they not then give thanks?
3779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Still they have taken other gods besides Allah, hoping to be helped ˹by them˺.
3780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They cannot help the pagans, even though they serve the idols as dedicated guards.
3781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So do not let their words grieve you ˹O Prophet˺. Indeed, We ˹fully˺ know what they conceal and what they reveal.
3782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do people not see that We have created them from a sperm-drop, then—behold!—they openly challenge ˹Us˺?
3783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they argue with Us—forgetting they were created—saying, "Who will give life to decayed bones?"
3784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "They will be revived by the One Who produced them the first time, for He has ˹perfect˺ knowledge of every created being.
3785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹He is the One˺ Who gives you fire from green trees, and—behold!—you kindle ˹fire˺ from them.
3786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Can the One Who created the heavens and the earth not ˹easily˺ resurrect these ˹deniers˺?" Yes ˹He can˺! For He is the Master Creator, All-Knowing.
3787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All it takes, when He wills something ˹to be˺, is simply to say to it: "Be!" And it is!
3788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So glory be to the One in Whose Hands is the authority over all things, and to Whom ˹alone˺ you will ˹all˺ be returned.
3789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          By those ˹angels˺ lined up in ranks,
3790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and those who diligently drive ˹the clouds˺,
3791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and those who recite the Reminder!
3792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely your God is One!
3793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He is˺ the Lord of the heavens and the earth and everything in between, and the Lord of all points of sunrise.
3794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We have adorned the lowest heaven with the stars for decoration
3795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and ˹for˺ protection from every rebellious devil.
3796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They cannot listen to the highest assembly ˹of angels˺ for they are pelted from every side,
3797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹fiercely˺ driven away. And they will suffer an everlasting torment.
3798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But whoever manages to stealthily eavesdrop is ˹instantly˺ pursued by a piercing flare.
3799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So ask them ˹O Prophet˺, which is harder to create: them or other marvels of Our creation?
3800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In fact, you are astonished ˹by their denial˺, while they ridicule ˹you˺.
3801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When they are reminded, they are never mindful.
3802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And whenever they see a sign, they make fun of it,
3803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saying, "This is nothing but pure magic.
3804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When we are dead and reduced to dust and bones, will we really be resurrected?
3805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And our forefathers as well?"
3806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "Yes! And you will be fully humbled."
3807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It will only take one Blast, then at once they will see ˹it all˺.
3808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will cry, "Oh, woe to us! This is the Day of Judgment!"
3809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹They will be told,˺ "This is the Day of ˹Final˺ Decision which you used to deny."
3810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Allah will say to the angels,˺ "Gather ˹all˺ the wrongdoers along with their peers, and whatever they used to worship
3811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   instead of Allah, then lead them ˹all˺ to the path of Hell.
3812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And detain them, for they must be questioned."
3813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Then they will be asked,˺ "What is the matter with you that you can no longer help each other?"
3814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In fact, on that Day they will be ˹fully˺ submissive.
3815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will turn on each other, throwing blame.
3816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The misled will say, "It was you who deluded us away from what is right."
3817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The misleaders will reply, "No! You disbelieved on your own.
3818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We had no authority over you. In fact, you yourselves were a transgressing people.
3819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The decree of our Lord has come to pass against us ˹all˺: we will certainly taste ˹the punishment˺.
3820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We caused you to deviate, for we ourselves were deviant."
3821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely on that Day they will ˹all˺ share in the punishment.
3822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That is certainly how We deal with the wicked.
3823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For whenever it was said to them ˹in the world˺, "There is no god ˹worthy of worship˺ except Allah," they acted arrogantly
3824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and argued, "Should we really abandon our gods for a mad poet?"
3825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In fact, he came with the truth, confirming ˹earlier˺ messengers.
3826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 You will certainly taste the painful torment,
3827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and will only be rewarded for what you used to do.
3828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But not the chosen servants of Allah.
3829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will have a known provision:
3830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             fruits ˹of every type˺. And they will be honoured
3831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      in the Gardens of Bliss,
3832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 facing each other on thrones.
3833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A drink ˹of pure wine˺ will be passed around to them from a flowing stream:
3834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            crystal-white, delicious to drink.
3835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It will neither harm ˹them˺, nor will they be intoxicated by it.
3836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And with them will be maidens of modest gaze and gorgeous eyes,
3837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              as if they were pristine pearls.
3838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then they will turn to one another inquisitively.
3839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One of them will say, "I once had a companion ˹in the world˺
3840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             who used to ask ˹me˺, ‘Do you actually believe ˹in resurrection˺?
3841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When we are dead and reduced to dust and bones, will we really be brought to judgment?’"
3842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He will ˹then˺ ask, "Would you care to see ˹his fate˺?"
3843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then he ˹and the others˺ will look and spot him in the midst of the Hellfire.
3844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He will ˹then˺ say, "By Allah! You nearly ruined me.
3845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Had it not been for the grace of my Lord, I ˹too˺ would have certainly been among those brought ˹to Hell˺."
3846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Then he will ask his fellow believers,˺ "Can you imagine that we will never die,
3847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   except our first death, nor be punished ˹like the others˺?"
3848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is truly the ultimate triumph.
3849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For such ˹honour˺ all should strive.
3850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Is this ˹bliss˺ a better accommodation or the tree of Zaqqûm?
3851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have surely made it a test for the wrongdoers.
3852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, it is a tree that grows in the depths of Hell,
3853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             bearing fruit like devils’ heads.
3854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The evildoers will certainly ˹be left to˺ eat from it, filling up their bellies with it.
3855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then on top of that they will be given a blend of boiling drink.
3856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then they will ultimately return to ˹their place in˺ Hell.
3857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, they found their forefathers astray,
3858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            so they rushed in their footsteps!
3859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And surely most of the earlier generations had strayed before them,
3860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            although We had certainly sent warners among them.
3861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       See then what was the end of those who had been warned.
3862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But not the chosen servants of Allah.
3863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, Noah cried out to Us, and how excellent are We in responding!
3864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We delivered him and his family from the great distress,
3865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and made his descendants the sole survivors.
3866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We blessed him ˹with honourable mention˺ among later generations:
3867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "Peace be upon Noah among all peoples."
3868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, this is how We reward the good-doers.
3869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹For˺ he was truly one of Our faithful servants.
3870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We drowned the others.
3871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And indeed, one of those who followed his way was Abraham.
3872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when he came to his Lord with a pure heart,
3873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and said to his father and his people, "What are you worshipping?
3874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is it false gods that you desire instead of Allah?
3875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What then do you expect from the Lord of all worlds?"
3876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He later looked up to the stars ˹in contemplation˺,
3877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                then said, "I am really sick."
3878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So they turned their backs on him and went away.
3879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then he ˹stealthily˺ advanced towards their gods, and said ˹mockingly˺, "Will you not eat ˹your offerings˺?
3880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What is wrong with you that you cannot speak?"
3881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he swiftly turned on them, striking ˹them˺ with his right hand.
3882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Later, his people came rushing towards him ˹furiously˺.
3883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He argued, "How can you worship what you carve ˹with your own hands˺,
3884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        when it is Allah Who created you and whatever you do?"
3885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They said ˹to one another˺, "Build him a furnace and cast him into the blazing fire."
3886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And so they sought to harm him, but We made them inferior.
3887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He later said, "I am leaving ˹in obedience˺ to my Lord. He will guide me.
3888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My Lord! Bless me with righteous offspring."
3889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So We gave him good news of a forbearing son.
3890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then when the boy reached the age to work with him, Abraham said, "O my dear son! I have seen in a dream that I ˹must˺ sacrifice you. So tell me what you think." He replied, "O my dear father! Do as you are commanded. Allah willing, you will find me steadfast."
3891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then when they submitted ˹to Allah’s Will˺, and Abraham laid him on the side of his forehead ˹for sacrifice˺,
3892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We called out to him, "O Abraham!
3893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You have already fulfilled the vision." Indeed, this is how We reward the good-doers.
3894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That was truly a revealing test.
3895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We ransomed his son with a great sacrifice,
3896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and blessed Abraham ˹with honourable mention˺ among later generations:
3897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "Peace be upon Abraham."
3898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is how We reward the good-doers.
3899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He was truly one of Our faithful servants.
3900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We ˹later˺ gave him good news of Isaac—a prophet, and one of the righteous.
3901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We blessed him and Isaac as well. Some of their descendants did good, while others clearly wronged themselves.
3902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And We certainly showed favour to Moses and Aaron,
3903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and delivered them and their people from the great distress.
3904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We helped them so it was they who prevailed.
3905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We gave them the clear Scripture,
3906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and guided them to the Straight Path.
3907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We blessed them ˹with honourable mention˺ among later generations:
3908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "Peace be upon Moses and Aaron."
3909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, this is how We reward the good-doers.
3910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They were truly ˹two˺ of Our faithful servants.
3911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Elias was indeed one of the messengers.
3912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Remember˺ when he said to his people, "Will you not fear ˹Allah˺?
3913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do you call upon ˹the idol of˺ Ba’l and abandon the Best of Creators—
3914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah, your Lord and the Lord of your forefathers?"
3915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But they rejected him, so they will certainly be brought ˹for punishment˺.
3916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But not the chosen servants of Allah.
3917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We blessed him ˹with honourable mention˺ among later generations:
3918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        "Peace be upon Elias."
3919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, this is how We reward the good-doers.
3920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He was truly one of Our faithful servants.
3921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Lot was indeed one of the messengers.
3922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ when We delivered him and all of his family,
3923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               except an old woman, who was one of the doomed.
3924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then We ˹utterly˺ destroyed the rest.
3925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You ˹Meccans˺ certainly pass by their ruins day
3926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and night. Will you not then understand?
3927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jonah was indeed one of the messengers.
3928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember˺ when he fled to the overloaded ship.
3929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then ˹to save it from sinking,˺ he drew straws ˹with other passengers˺. He lost ˹and was thrown overboard˺.
3930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then the whale engulfed him while he was blameworthy.
3931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Had he not ˹constantly˺ glorified ˹Allah˺,
3932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  he would have certainly remained in its belly until the Day of Resurrection.
3933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But We cast him onto the open ˹shore˺, ˹totally˺ worn out,
3934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and caused a squash plant to grow over him.
3935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We ˹later˺ sent him ˹back˺ to ˹his city of˺ at least one hundred thousand people,
3936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         who then believed ˹in him˺, so We allowed them enjoyment for a while.
3937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ask them ˹O Prophet˺ if your Lord has daughters, while the pagans ˹prefer to˺ have sons.
3938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or ˹ask them˺ if We created the angels as females right before their eyes.
3939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, it is one of their ˹outrageous˺ fabrications to say,
3940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  "Allah has children." They are simply liars.
3941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Has He chosen daughters over sons?
3942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What is the matter with you? How do you judge?
3943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Will you not then be mindful?
3944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do you have ˹any˺ compelling proof?
3945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then bring ˹us˺ your scripture, if what you say is true!
3946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They have also established a ˹marital˺ relationship between Him and the jinn. Yet the jinn ˹themselves˺ know well that such people will certainly be brought ˹for punishment˺.
3947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Glorified is Allah far above what they claim!
3948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But not the chosen servants of Allah.
3949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely you ˹pagans˺ and whatever ˹idols˺ you worship
3950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         can never lure ˹anyone˺ away from Him
3951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      except those ˹destined˺ to burn in Hell.
3952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹The angels respond,˺ "There is not one of us without an assigned station ˹of worship˺.
3953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We are indeed the ones lined up in ranks ˹for Allah˺.
3954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And we are indeed the ones ˹constantly˺ glorifying ˹His praise˺."
3955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They certainly used to say,
3956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "If only we had a Reminder like ˹those of˺ earlier peoples,
3957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           we would have truly been Allah’s devoted servants."
3958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But ˹now˺ they reject it, so they will soon know.
3959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Word has already gone forth to Our servants, the messengers,
3960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             that they would surely be helped,
3961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and that Our forces will certainly prevail.
3962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So turn away from the deniers for a while ˹O Prophet˺.
3963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You will see ˹what will happen to˺ them, and they too will see!
3964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do they ˹really˺ wish to hasten Our punishment?
3965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yet when it descends upon them: how evil will that morning be for those who had been warned!
3966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And turn away from them for a while.
3967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You will see, and they too will see!
3968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Glorified is your Lord—the Lord of Honour and Power—above what they claim!
3969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Peace be upon the messengers.
3970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And praise be to Allah—Lord of all worlds.
3971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         sãd. By the Quran, full of reminders!
3972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹This is the truth,˺ yet the disbelievers are ˹entrenched˺ in arrogance and opposition.
3973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Imagine˺ how many peoples We destroyed before them, and they cried out when it was too late to escape.
3974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now, the pagans are astonished that a warner has come to them from among themselves. And the disbelievers say, "This is a magician, a total liar!
3975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Has he reduced ˹all˺ the gods to One God? Indeed, this is something totally astonishing."
3976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The chiefs among them went forth saying, "Carry on, and stand firm in devotion to your gods. Certainly this is just a scheme ˹for power˺.
3977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have never heard of this in the previous faith. This is nothing but a fabrication.
3978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Has the Reminder been revealed ˹only˺ to him out of ˹all of˺ us?" In fact, they are ˹only˺ in doubt of My ˹revealed˺ Reminder. In fact, ˹they do so because˺ they have not yet tasted My punishment.
3979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or ˹is it because˺ they possess the treasuries of the mercy of your Lord—the Almighty, the Giver ˹of all bounties˺.
3980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or ˹is it because˺ the kingdom of the heavens and the earth and everything in between belongs to them? Let them then climb their way ˹to heaven, if their claim is true˺.
3981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is just another ˹enemy˺ force bound for defeat out there.
3982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Before them, the people of Noah denied ˹the truth˺, as did ’ad, Pharaoh of the mighty structures,
3983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thamûd, the people of Lot, and the residents of the Forest. These were ˹all˺ enemy forces.
3984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Each rejected their messenger, so My punishment was justified.
3985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These ˹pagans˺ are awaiting nothing but a single Blast that cannot be stopped.
3986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They say ˹mockingly˺, "Our Lord! Hasten for us our share ˹of the punishment˺ before the Day of Reckoning."
3987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Be patient ˹O Prophet˺ with what they say. And remember Our servant, David, the man of strength. Indeed, he ˹constantly˺ turned ˹to Allah˺.
3988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We truly subjected the mountains to hymn ˹Our praises˺ along with him in the evening and after sunrise.
3989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹We subjected˺ the birds, flocking together. All turned to him ˹echoing his hymns˺.
3990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We strengthened his kingship, and gave him wisdom and sound judgment.
3991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Has the story of the two plaintiffs, who scaled the ˹wall of David’s˺ sanctuary, reached you ˹O Prophet˺?
3992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When they came into David’s presence, he was startled by them. They said, "Have no fear. ˹We are merely˺ two in a dispute: one of us has wronged the other. So judge between us with truth—do not go beyond ˹it˺—and guide us to the right way.
3993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is my brother. He has ninety-nine sheep while I have ˹only˺ one. ˹Still˺ he asked me to give it up to him, overwhelming me with ˹his˺ argument."
3994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   David ˹eventually˺ ruled, "He has definitely wronged you in demanding ˹to add˺ your sheep to his. And certainly many partners wrong each other, except those who believe and do good—but how few are they!" Then David realized that We had tested him so he asked for his Lord’s forgiveness, fell down in prostration, and turned ˹to Him in repentance˺.
3995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So We forgave that for him. And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!
3996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹We instructed him:˺ "O David! We have surely made you an authority in the land, so judge between people with truth. And do not follow ˹your˺ desires or they will lead you astray from Allah’s Way. Surely those who go astray from Allah’s Way will suffer a severe punishment for neglecting the Day of Reckoning."
3997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We have not created the heavens and earth and everything in between without purpose—as the disbelievers think. So woe to the disbelievers because of the Fire!
3998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or should We treat those who believe and do good like those who make mischief throughout the land? Or should We treat the righteous like the wicked?
3999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹This is˺ a blessed Book which We have revealed to you ˹O Prophet˺ so that they may contemplate its verses, and people of reason may be mindful.
4000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And We blessed David with Solomon—what an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.
4001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when the well-trained, swift horses were paraded before him in the evening.
4002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He then proclaimed, "I am truly in love with ˹these˺ fine things out of remembrance for Allah," until they went out of sight.
4003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹He ordered,˺ "Bring them back to me!" Then he began to rub down their legs and necks.
4004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And indeed, We tested Solomon, placing a ˹deformed˺ body on his throne, then he turned ˹to Allah in repentance˺.
4005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He prayed, "My Lord! Forgive me, and grant me an authority that will never be matched by anyone after me. You are indeed the Giver ˹of all bounties˺."
4006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So We subjected to him the wind, blowing gently at his command to wherever he pleased.
4007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹We subjected to him˺ every builder and diver of the jinn,
4008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and others bound together in chains.
4009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Allah said,˺ "This is Our gift, so give or withhold ˹as you wish˺, never to be called to account."
4010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!
4011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And remember Our servant Job, when he cried out to his Lord, "Satan has afflicted me with distress and suffering."
4012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹We responded,˺ "Stomp your foot: ˹now˺ here is a cool ˹and refreshing˺ spring for washing and drinking."
4013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We gave him back his family, twice as many, as a mercy from Us and a lesson for people of reason.
4014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹And We said to him,˺ "Take in your hand a bundle of grass, and strike ˹your wife˺ with it, and do not break your oath." We truly found him patient. What an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.
4015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And remember Our servants: Abraham, Isaac, and Jacob—the men of strength and insight.
4016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We truly chose them for the honour of proclaiming the Hereafter.
4017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in Our sight they are truly among the chosen and the finest.
4018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also remember Ishmael, Elisha, and Ⱬul-Kifl. All are among the best.
4019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is ˹all˺ a reminder. And the righteous will certainly have an honourable destination:
4020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the Gardens of Eternity, whose gates will be open for them.
4021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There they will recline, calling for abundant fruit and drink.
4022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And with them will be maidens of modest gaze and equal age.
4023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is what you are promised for the Day of Reckoning.
4024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is indeed Our provision that will never end.
4025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That is that. And the transgressors will certainly have the worst destination:
4026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hell, where they will burn. What an evil place to rest!
4027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let them then taste this: boiling water and ˹oozing˺ pus,
4028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and other torments of the same sort!
4029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹The misleaders will say to one another,˺ "Here is a crowd ˹of followers˺ being thrown in with us. They are not welcome, ˹for˺ they ˹too˺ will burn in the Fire."
4030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The followers will respond, "No! You are not welcome! You brought this upon us. What an evil place for settlement!"
4031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Adding, "Our Lord! Whoever brought this upon us, double their punishment in the Fire."
4032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The tyrants will ask ˹one another˺, "But why do we not see those we considered to be lowly?
4033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Were we wrong in mocking them ˹in the world˺? Or do our eyes ˹just˺ fail to see them ˹in the Fire˺?"
4034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This dispute between the residents of the Fire will certainly come to pass.
4035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "I am only a warner. And there is no god ˹worthy of worship˺ except Allah—the One, the Supreme.
4036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹He is the˺ Lord of the heavens and the earth and everything in between—the Almighty, Most Forgiving."
4037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "This ˹Quran˺ is momentous news,
4038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    from which you ˹pagans˺ are turning away."
4039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹And say,˺ "I had no knowledge of the highest assembly ˹in heaven˺ when they differed ˹concerning Adam˺.
4040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What is revealed to me is that I am only sent with a clear warning."
4041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Remember, O  Prophet˺ when your Lord said to the angels, "I am going to create a human being from clay.
4042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him."
4043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the angels prostrated all together—
4044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           but not Iblis, becoming unfaithful.
4045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah asked, "O Iblis! What prevented you from prostrating to what I created with My Own Hands? Did you ˹just˺ become proud? Or have you always been arrogant?"
4046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He replied, "I am better than he is: You created me from fire and him from clay."
4047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah commanded, "Then get out of Paradise, for you are truly cursed.
4048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And surely upon you is My condemnation until the Day of Judgment."
4049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Satan appealed, "My Lord! Then delay my end until the Day of their resurrection."
4050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah said, "You will be delayed
4051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     until the appointed Day."
4052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Satan said, "By Your Glory! I will certainly mislead them all,
4053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      except Your chosen servants among them."
4054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah concluded, "The truth is—and I ˹only˺ say the truth—:
4055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I will surely fill up Hell with you and whoever follows you from among them, all together."
4056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "I do not ask you for any reward for this ˹Quran˺, nor do I pretend to be someone I am not.
4057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is only a reminder to the whole world.
4058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And you will certainly know its truth before long."
4059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The revelation of this Book is from Allah—the Almighty, All-Wise.
4060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We have sent down the Book to you ˹O Prophet˺ in truth, so worship Allah ˹alone˺, being sincerely devoted to Him.
4061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, sincere devotion is due ˹only˺ to Allah. As for those who take other lords besides Him, ˹saying,˺ "We worship them only so they may bring us closer to Allah," surely Allah will judge between all regarding what they differed about. Allah certainly does not guide whoever persists in lying and disbelief.
4062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Had it been Allah’s Will to have offspring, He could have chosen whatever He willed of His creation. Glory be to Him! He is Allah—the One, the Supreme.
4063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He created the heavens and the earth for a purpose. He wraps the night around the day, and wraps the day around the night. And He has subjected the sun and the moon, each orbiting for an appointed term. He is truly the Almighty, Most Forgiving.
4064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He created you ˹all˺ from a single soul, That is Allah—your Lord! All authority belongs to Him. There is no god ˹worthy of worship˺ except Him. How can you then be turned away?
4065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If you disbelieve, then ˹know that˺ Allah is truly not in need of you, nor does He approve of disbelief from His servants. But if you become grateful ˹through faith˺, He will appreciate that from you. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of what you used to do. He certainly knows best what is ˹hidden˺ in the heart.
4066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When one is touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He showers them with blessings from Him, they ˹totally˺ forget the One they had cried to earlier, and set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ "Enjoy your disbelief for a little while! You will certainly be one of the inmates of the Fire."
4067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Are they better˺ or those who worship ˹their Lord˺ devoutly in the hours of the night, prostrating and standing, fearing the Hereafter and hoping for the mercy of their Lord? Say, ˹O Prophet,˺ "Are those who know equal to those who do not know?" None will be mindful ˹of this˺ except people of reason.
4068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say ˹O Prophet, that Allah says˺, "O My servants who believe! Be mindful of your Lord. Those who do good in this world will have a good reward. And Allah’s earth is spacious. Only those who endure patiently will be given their reward without limit."
4069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "I am commanded to worship Allah, being sincerely devoted to Him ˹alone˺.
4070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I am commanded to be the first of those who submit ˹to His Will˺."
4071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, "I truly fear—if I were to disobey my Lord—the torment of a tremendous Day."
4072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "It is ˹only˺ Allah that I worship, being sincere in my devotion to Him.
4073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Worship then whatever ˹gods˺ you want instead of Him." Say, "The ˹true˺ losers are those who will lose themselves and their families on Judgment Day. That is indeed the clearest loss."
4074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will have layers of fire above and below them. That is what Allah warns His servants with. So fear Me, O  My servants!
4075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And those who shun the worship of false gods, turning to Allah ˹alone˺, will have good news. So give good news to My servants ˹O Prophet˺—
4076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         those who listen to what is said and follow the best of it. These are the ones ˹rightly˺ guided by Allah, and these are ˹truly˺ the people of reason.
4077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What about those against whom the decree of torment has been justified? Is it you ˹O Prophet˺ who will then save those bound for the Fire?
4078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But those mindful of their Lord will have ˹elevated˺ mansions, built one above the other, under which rivers flow. ˹That is˺ the promise of Allah. ˹And˺ Allah never fails in ˹His˺ promise.
4079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do you not see that Allah sends down rain from the sky—channelling it through streams in the earth—then produces with it crops of various colours, then they dry up and you see them wither, and then He reduces them to chaff? Surely in this is a reminder for people of reason.
4080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Can ˹the misguided be like˺ those whose hearts Allah has opened to Islam, so they are enlightened by their Lord? So woe to those whose hearts are hardened at the remembrance of Allah! It is they who are clearly astray.
4081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹It is˺ Allah ˹Who˺ has sent down the best message—a Book of perfect consistency and repeated lessons—which causes the skin ˹and hearts˺ of those who fear their Lord to tremble, then their skin and hearts soften at the mention of ˹the mercy of˺ Allah. That is the guidance of Allah, through which He guides whoever He wills. But whoever Allah leaves to stray will be left with no guide.
4082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Are those who will only have their ˹bare˺ faces to shield themselves from the awful torment on Judgment Day ˹better than those in Paradise˺? It will ˹then˺ be said to the wrongdoers: "Reap what you sowed!"
4083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those before them ˹also˺ rejected ˹the truth˺, then the torment came upon them from where they least expected.
4084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Allah made them taste humiliation in this worldly life, but far worse is the punishment of the Hereafter, if only they knew.
4085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We have certainly set forth every ˹kind of˺ lesson for people in this Quran, so perhaps they will be mindful.
4086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹It is˺ a Quran ˹revealed˺ in Arabic without any crookedness, so perhaps they will be conscious ˹of Allah˺.
4087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah sets forth the parable of a slave owned by several quarrelsome masters, and a slave owned by only one master. Are they equal in condition? Praise be to Allah! In fact, most of them do not know.
4088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You ˹O Prophet˺ will certainly die, and they will die too.
4089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then on the Day of Judgment you will ˹all settle your˺ dispute before your Lord.
4090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who then does more wrong than those who lie about Allah and reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?
4091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the one who has brought the truth and those who embrace it—it is they who are the righteous.
4092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They will have whatever they desire with their Lord. That is the reward of the good-doers.
4093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As such, Allah will absolve them of ˹even˺ the worst of what they did and reward them according to the best of what they used to do.
4094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is Allah not sufficient for His servant? Yet they threaten you with other ˹powerless˺ gods besides Him! Whoever Allah leaves to stray will be left with no guide.
4095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whoever Allah guides, none can lead astray. Is Allah not Almighty, capable of punishment?
4096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, "Allah!" Ask ˹them˺, "Consider then whatever ˹idols˺ you invoke besides Allah: if it was Allah’s Will to harm me, could they undo that harm? Or if He willed ˹some˺ mercy for me, could they withhold His mercy?" Say, "Allah is sufficient for me. In Him ˹alone˺ the faithful put their trust."
4097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, ˹O Prophet,˺ "O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know
4098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺."
4099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely We have revealed to you the Book ˹O Prophet˺ with the truth for humanity. So whoever chooses to be guided, it is for their own good. And whoever chooses to stray, it is only to their own loss. You are not a keeper over them.
4100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It is˺ Allah ˹Who˺ calls back the souls ˹of people˺ upon their death as well as ˹the souls˺ of the living during their sleep. Then He keeps those for whom He has ordained death, and releases the others until ˹their˺ appointed time. Surely in this are signs for people who reflect.
4101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or have they taken others besides Allah as intercessors? Say, ˹O Prophet,˺ "˹Would they do so,˺ even though those ˹idols˺ have neither authority nor intelligence?"
4102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, "All intercession belongs to Allah ˹alone˺. To Him belongs the kingdom of the heavens and the earth. Then to Him you will ˹all˺ be returned."
4103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet when Allah alone is mentioned, the hearts of those who disbelieve in the Hereafter are filled with disgust. But as soon as those ˹gods˺ other than Him are mentioned, they are filled with joy.
4104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "O Allah—Originator of the heavens and the earth, Knower of the seen and unseen! You will judge between Your servants regarding their differences."
4105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Even if the wrongdoers were to possess everything in the world twice over, they would certainly offer it to ransom themselves from the horrible punishment on Judgment Day, for they will see from Allah what they had never expected.
4106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.
4107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When one is touched with hardship, they cry out to Us ˹alone˺. Then when We shower Our blessings upon them, they say, "I have been granted all this only because of ˹my˺ knowledge." Not at all! It is ˹no more than˺ a test. But most of them do not know.
4108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The same had already been said by those ˹destroyed˺ before them, but their ˹worldly˺ gains were of no benefit to them.
4109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So the evil ˹consequences˺ of their deeds overtook them. And the wrongdoers among these ˹pagans˺ will be overtaken by the evil ˹consequences˺ of their deeds. And they will have no escape.
4110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do they not know that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.
4111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet, that Allah says,˺ "O My servants who have exceeded the limits against their souls! Do not lose hope in Allah’s mercy, for Allah certainly forgives all sins. He is indeed the All-Forgiving, Most Merciful.
4112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Turn to your Lord ˹in repentance˺, and ˹fully˺ submit to Him before the punishment reaches you, ˹for˺ then you will not be helped.
4113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Follow ˹the Quran,˺ the best of what has been revealed to you from your Lord, before the punishment takes you by surprise while you are unaware,
4114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      so that no ˹sinful˺ soul will say ˹on Judgment Day˺, ‘Woe to me for neglecting ˹my duties towards˺ Allah, while ridiculing ˹the truth˺.’
4115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or ˹a soul will˺ say, ‘If only Allah had guided me, I would have certainly been one of the righteous.’
4116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or say, upon seeing the torment, ‘If only I had a second chance, I would have been one of the good-doers.’
4117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Not at all! My revelations had already come to you, but you rejected them, acted arrogantly, and were one of the disbelievers."
4118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the Day of Judgment you will see those who lied about Allah with their faces gloomy. Is Hell not a ˹fitting˺ home for the arrogant?
4119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Allah will deliver those who were mindful ˹of Him˺ to their place of ˹ultimate˺ triumph. No evil will touch them, nor will they grieve.
4120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah is the Creator of all things, and He is the Maintainer of everything.
4121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. As for those who rejected the signs of Allah, it is they who will be the ˹true˺ losers.
4122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "Are you urging me to worship ˹anyone˺ other than Allah, O  ignorant ones?"
4123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It has already been revealed to you—and to those ˹prophets˺ before you—that if you associate others ˹with Allah˺, your deeds will certainly be void and you will truly be one of the losers.
4124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rather, worship Allah ˹alone˺ and be one of the grateful.
4125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They have not shown Allah His proper reverence—when on the Day of Judgment the ˹whole˺ earth will be in His Grip, and the heavens will be rolled up in His Right Hand. Glorified and Exalted is He above what they associate ˹with Him˺!
4126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Trumpet will be blown and all those in the heavens and all those on the earth will fall dead, except those Allah wills ˹to spare˺. Then it will be blown again and they will rise up at once, looking on ˹in anticipation˺.
4127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The earth will shine with the light of its Lord, the record ˹of deeds˺ will be laid ˹open˺, the prophets and the witnesses will be brought forward—and judgment will be passed on all with fairness. None will be wronged.
4128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Every soul will be paid in full for its deeds, for Allah knows best what they have done.
4129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who disbelieved will be driven to Hell in ˹successive˺ groups. When they arrive there, its gates will be opened and its keepers will ask them: "Did messengers not come to you from among yourselves, reciting to you the revelations of your Lord and warning you of the coming of this Day of yours?" The disbelievers will cry, "Yes ˹indeed˺! But the decree of torment has come to pass against the disbelievers."
4130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It will be said to them, "Enter the gates of Hell, to stay there forever." What an evil home for the arrogant!
4131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And those who were mindful of their Lord will be led to Paradise in ˹successive˺ groups. When they arrive at its ˹already˺ open gates, its keepers will say, "Peace be upon you! You have done well, so come in, to stay forever."
4132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The righteous will say, "Praise be to Allah Who has fulfilled His promise to us, and made us inherit the ˹everlasting˺ land to settle in Paradise wherever we please." How excellent is the reward of those who work ˹righteousness˺!
4133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You will see the angels all around the Throne, glorifying the praises of their Lord, for judgment will have been passed on all with fairness. And it will be said, "Praise be to Allah—Lord of all worlds!"
4134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The revelation of this Book is from Allah—the Almighty, All-Knowing,
4136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        the Forgiver of sin and Accepter of repentance, the Severe in punishment, and Infinite in bounty. There is no god ˹worthy of worship˺ except Him. To Him ˹alone˺  is the final return.
4137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      None disputes the signs of Allah except the disbelievers, so do not be deceived by their prosperity throughout the land.
4138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Before them, the people of Noah denied ˹the truth˺, as did ˹other˺ enemy forces afterwards. Every community plotted against its prophet to seize him, and argued in falsehood, ˹hoping˺ to discredit the truth with it. So I seized them. And how ˹horrible˺ was My punishment!
4139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And so your Lord’s decree has been proven true against the disbelievers—that they will be the inmates of the Fire.
4140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those ˹angels˺ who carry the Throne and those around it glorify the praises of their Lord, have faith in Him, and seek forgiveness for the believers, ˹praying:˺ "Our Lord! You encompass everything in ˹Your˺ mercy and knowledge. So forgive those who repent and follow Your Way, and protect them from the torment of the Hellfire.
4141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Our Lord! Admit them into the Gardens of Eternity which You have promised them, along with the righteous among their parents, spouses, and descendants. You ˹alone˺ are truly the Almighty, All-Wise.
4142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And protect them from ˹the consequences of their˺ evil deeds. For whoever You protect from the evil of their deeds on that Day will have been shown Your mercy. That is ˹truly˺ the ultimate triumph."
4143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, it will be announced to the disbelievers, "Allah’s contempt for you—as you disbelieved when invited to belief—was far worse than your contempt for one another ˹Today˺."
4144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will plead, "Our Lord! You made us lifeless twice, and gave us life twice. Now we confess our sins. So is there any way out?"
4145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They will be told,˺ "˹No!˺ This is because when Allah alone was invoked, you ˹staunchly˺ disbelieved. But when others were associated with Him ˹in worship˺, you ˹readily˺ believed. So ˹Today˺ judgment belongs to Allah ˹alone˺—the Most High, All-Great."
4146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He is the One Who shows you His signs and sends down ˹rain as˺ a provision for you from the sky. ˹But˺ none will be mindful except those who turn ˹to Him˺.
4147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So call upon Allah with sincere devotion, even to the dismay of the disbelievers.
4148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹He is˺ Highly Exalted in rank, Lord of the Throne. He sends down the revelation by His command to whoever He wills of His servants to warn ˹all˺ of the Day of Meeting—
4149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 the Day all will appear ˹before Allah˺. Nothing about them will be hidden from Him. ˹He will ask,˺ "Who does all authority belong to this Day? To Allah—the One, the Supreme!
4150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Today every soul will be rewarded for what it has done. No injustice Today! Surely Allah is swift in reckoning."
4151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Warn them ˹O Prophet˺ of the approaching Day when the hearts will jump into the throats, suppressing distress. The wrongdoers will have neither a close friend nor intercessor to be heard.
4152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah ˹even˺ knows the sly glances of the eyes and whatever the hearts conceal.
4153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Allah judges with the truth, while those ˹idols˺ they invoke besides Him cannot judge at all. Indeed, Allah ˹alone˺ is the All-Hearing, All-Seeing.
4154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land. But Allah seized them for their sins, and they had no protector from Allah.
4155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That was because their messengers used to come to them with clear proofs, but they persisted in disbelief. So Allah seized them. Surely He is All-Powerful, severe in punishment.
4156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We sent Moses with Our signs and compelling proof
4157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     to Pharaoh, Haman, and Korah. But they responded: "Magician! Total liar!"
4158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then, when he came to them with the truth from Us, they said, "Kill the sons of those who believe with him and keep their women." But the plotting of the disbelievers was only in vain.
4159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh said, "Let me kill Moses, and let him call upon his Lord! I truly fear that he may change your traditions or cause mischief in the land."
4160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moses replied, "I seek refuge in my Lord and your Lord from every arrogant person who does not believe in the Day of Reckoning."
4161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A believing man from Pharaoh’s people, who was hiding his faith, argued, "Will you kill a man ˹only˺ for saying: ‘My Lord is Allah,’ while he has in fact come to you with clear proofs from your Lord? If he is a liar, it will be to his own loss. But if he is truthful, then you will be afflicted with some of what he is threatening you with. Surely Allah does not guide whoever is a transgressor, a total liar.
4162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O  my people! Authority belongs to you today, reigning supreme in the land. But who would help us against the torment of Allah, if it were to befall us?" Pharaoh assured ˹his people˺, "I am telling you only what I believe, and I am leading you only to the way of guidance."
4163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the man who believed cautioned, "O my people! I truly fear for you the doom of ˹earlier˺ enemy forces—
4164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   like the fate of the people of Noah, ’Ȃd, Thamûd, and those after them. For Allah would never will to wrong ˹His˺ servants.
4165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O  my people! I truly fear for you the Day all will be crying out ˹to each other˺—
4166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          the Day you will ˹try in vain to˺ turn your backs and run away, with no one to protect you from Allah. And whoever Allah leaves to stray will be left with no guide.
4167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joseph already came to you earlier with clear proofs, yet you never ceased to doubt what he came to you with. When he died you said, ‘Allah will never send a messenger after him.’ This is how Allah leaves every transgressor and doubter to stray—
4168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 those who dispute Allah’s signs with no proof given to them. How despicable is that for Allah and the believers! This is how Allah seals the heart of every arrogant tyrant."
4169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pharaoh ordered, "O Haman! Build me a high tower so I may reach the pathways
4170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 leading up to the heavens and look for the God of Moses, although I am sure he is a liar." And so Pharaoh’s evil deeds were made so appealing to him that he was hindered from the ˹Right˺ Way. But the plotting of Pharaoh was only in vain.
4171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the man who believed urged, "O my people! Follow me, ˹and˺ I will lead you to the Way of Guidance.
4172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O  my people! This worldly life is only ˹a fleeting˺ enjoyment, whereas the Hereafter is truly the home of settlement.
4173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoever does an evil deed will only be paid back with its equivalent. And whoever does good, whether male or female, and is a believer, they will enter Paradise, where they will be provided for without limit.
4174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O  my people! How is it that I invite you to salvation, while you invite me to the Fire!
4175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You invite me to disbelieve in Allah and associate with Him what I have no knowledge of, while I invite you to the Almighty, Most Forgiving.
4176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There is no doubt that whatever ˹idols˺ you invite me to ˹worship˺ are not worthy to be invoked either in this world or the Hereafter. ˹Undoubtedly,˺ our return is to Allah, and the transgressors will be the inmates of the Fire.
4177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You will remember what I say to you, and I entrust my affairs to Allah. Surely Allah is All-Seeing of all ˹His˺ servants."
4178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Allah protected him from the evil of their schemes. And Pharaoh’s people were overwhelmed by an evil punishment:
4179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           they are exposed to the Fire ˹in their graves˺ morning and evening. And on the Day the Hour will be established ˹it will be said˺, "Admit Pharaoh’s people into the harshest punishment ˹of Hell˺."
4180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Consider the Day˺ when they will dispute in the Fire, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, "We were your ˹dedicated˺ followers, will you then shield us from a portion of the Fire?"
4181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The arrogant will say, "We are all in it! ˹For˺ Allah has already passed judgment over ˹His˺ servants."
4182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And those in the Fire will cry out to the keepers of Hell, "Pray to your Lord to lighten the torment for us ˹even˺ for one day!"
4183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The keepers will reply, "Did your messengers not ˹constantly˺ come to you with clear proofs?" They will say, "Yes ˹they did˺." The keepers will say, "Then pray! Though the prayer of the disbelievers is only in vain."
4184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We certainly help Our messengers and the believers, ˹both˺ in this worldly life and on the Day the witnesses will stand forth ˹for testimony˺—
4185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       the Day the wrongdoers’ excuses will be of no benefit to them. They will be condemned, and will have the worst outcome.
4186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And indeed, We gave Moses ˹true˺ guidance, and made the Children of Israel inherit the Scripture—
4187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   a guide and a reminder to people of reason.
4188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So be patient ˹O Prophet˺, ˹for˺ Allah’s promise is certainly true. Seek forgiveness for your shortcomings. And glorify the praises of your Lord morning and evening.
4189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely those who dispute Allah’s signs—with no proof given to them—have nothing in their hearts but greed for dominance, which they will never attain. So seek refuge in Allah. Indeed, He alone is the All-Hearing, All-Seeing.
4190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The creation of the heavens and the earth is certainly greater than the re-creation of humankind, but most people do not know.
4191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those blind ˹to the truth˺ and those who can see are not equal, nor are those who believe and do good ˹equal˺ to those who do evil. Yet you are hardly mindful.
4192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Hour is certainly coming, there is no doubt about it. But most people do not believe.
4193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Your Lord has proclaimed, "Call upon Me, I will respond to you. Surely those who are too proud to worship Me will enter Hell, fully humbled."
4194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is Allah Who has made the night for you to rest in and the day bright. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.
4195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That is Allah, your Lord, the Creator of all things. There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?
4196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is how those who used to reject Allah’s signs were ˹also˺ deluded.
4197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is Allah Who made the earth a place of settlement for you and the sky a canopy. He shaped you ˹in the womb˺, perfecting your form. And He has provided you with what is good and lawful. That is Allah—your Lord. So Blessed is Allah, Lord of all worlds.
4198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is the Ever-Living. There is no god ˹worthy of worship˺ except Him. So call upon Him with sincere devotion, ˹saying,˺ "All praise is for Allah—Lord of all worlds."
4199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "I have been forbidden to worship those ˹idols˺ you worship besides Allah, since clear proofs have come to me from my Lord. And I have been commanded to ˹fully˺ submit to the Lord of all worlds."
4200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is the One Who created you then He brings you forth as infants, so that you may reach your prime, and become old—though some of you ˹may˺ die sooner—reaching an appointed time, so perhaps you may understand ˹Allah’s power˺.
4201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who gives life and causes death. When He decrees a matter, He simply tells it, "Be!" And it is!
4202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Have you not seen how those who dispute Allah’s signs are turned away?
4203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹They are˺ the ones who reject this Book and all ˹scriptures˺ We sent Our messengers with. So they will know ˹the consequences˺
4204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     when shackles will be around their necks and chains ˹on their legs˺. They will be dragged
4205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     through boiling water, then burned in the Fire ˹as fuel˺.
4206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then they will be asked, "Where are those ˹idols˺ you used to associate
4207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               with Allah?" They will cry, "They have ˹all˺ failed us. In fact, we did not invoke anything ˹real˺ before." This is how Allah leaves the disbelievers to stray.
4208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹They will be told,˺ "This ˹punishment˺ is for being prideful on earth unjustly and for acting arrogantly.
4209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Enter the gates of Hell, to stay there forever. What an evil home for the arrogant!"
4210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So be patient ˹O Prophet˺. Surely Allah’s promise is true. Whether We show you some of what We threaten them with, or cause you to die ˹before that˺, to Us they will ˹all˺ be returned.
4211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We already sent messengers before you. We have told you the stories of some of them, while others We have not. It was not for any messenger to bring a sign without Allah’s permission. But when Allah’s decree comes, judgment will be passed with fairness, and the people of falsehood will then be in ˹total˺ loss.
4212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is Allah Who made cattle for you so that you may ride some and eat others.
4213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also, you find in them ˹other˺ benefits. And by means of them you may reach destinations you desire. And you are carried upon ˹some of˺ them and upon ships.
4214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And He shows you His signs. Now which of Allah’s signs will you deny?
4215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have they not travelled throughout the land to see what was the end of those who were ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land, but their ˹worldly˺ gains were of no benefit to them.
4216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When their messengers came to them with clear proofs, they were prideful in whatever ˹worldly˺ knowledge they had, and were ˹ultimately˺ overwhelmed by what they used to ridicule.
4217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When they saw Our punishment, they cried, "˹Now˺ we believe in Allah alone and reject what we had been associating with Him!"
4218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But their faith was of no benefit to them when they saw Our torment. This has ˹always˺ been Allah’s way ˹of dealing˺ with His ˹wicked˺ servants. Then and there the disbelievers were in ˹total˺ loss.
4219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹This is˺ a revelation from the Most Compassionate, Most Merciful.
4221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It is˺ a Book whose verses are perfectly explained—a Quran in Arabic for people who know,
4222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            delivering good news and warning. Yet most of them turn away, so they do not hear.
4223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They say, "Our hearts are veiled against what you are calling us to, there is deafness in our ears, and there is a barrier between us and you. So do ˹whatever you want˺ and so shall we!"
4224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So take the Straight Way towards Him, and seek His forgiveness. And woe to the polytheists—
4225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             those who do not pay alms-tax and are in denial of the Hereafter.
4226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹But˺ those who believe and do good will certainly have a never-ending reward.
4227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ask ˹them, O  Prophet˺, "How can you disbelieve in the One Who created the earth in two Days? And how can you set up equals with Him? That is the Lord of all worlds.
4228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He placed on the earth firm mountains, standing high, showered His blessings upon it, and ordained ˹all˺ its means of sustenance—totaling four Days exactly—for all who ask.
4229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then He turned towards the heaven when it was ˹still like˺ smoke, saying to it and to the earth, ‘Submit, willingly or unwillingly.’ They both responded, ‘We submit willingly.’
4230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So He formed the heaven into seven heavens in two Days, assigning to each its mandate. And We adorned the lowest heaven with ˹stars like˺ lamps ˹for beauty˺ and for protection. That is the design of the Almighty, All-Knowing."
4231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If they turn away, then say, ˹O Prophet,˺ "I warn you of a ˹mighty˺ blast, like the one that befell ’Ȃd and Thamûd."
4232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The messengers had come to them from all angles, ˹proclaiming,˺ "Worship none but Allah." They responded, "Had our Lord willed, He could have easily sent down angels ˹instead˺. So we totally reject what you have been sent with."
4233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for ’Ȃd, they acted arrogantly throughout the land with no right, boasting, "Who is superior to us in might?" Did they not see that Allah ˹Himself˺, Who created them, was far superior to them in might? Still they persisted in denying Our signs.
4234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So We sent against them a furious wind, for ˹several˺ miserable days, to make them taste a humiliating punishment in this worldly life. But far more humiliating will be the punishment of the Hereafter. And they will not be helped.
4235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for Thamûd, We showed them guidance, but they preferred blindness over guidance. So the blast of a disgracing punishment overtook them for what they used to commit.
4236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We delivered those who were faithful and were mindful ˹of Allah˺.
4237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Consider˺ the Day ˹when˺ the enemies of Allah will be gathered for the Fire, all driven in ranks.
4238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When they reach it, their ears, eyes, and skin will testify against what they used to do.
4239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will ask their skin ˹furiously˺, "Why have you testified against us?" It will say, "We have been made to speak by Allah, Who causes all things to speak. He ˹is the One Who˺ created you the first time, and to Him you were bound to return.
4240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You did not ˹bother to˺ hide yourselves from your ears, eyes, and skin to prevent them from testifying against you. Rather, you assumed that Allah did not know much of what you used to do.
4241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It was that ˹false˺ assumption you entertained about your Lord that has brought about your doom, so you have become losers."
4242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Even if they endure patiently, the Fire will ˹always˺ be their home. And if they ˹beg to˺ appease ˹their Lord˺, they will never be allowed to.
4243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We placed at their disposal ˹evil˺ associates who made their past and future ˹misdeeds˺ appealing to them. ˹So˺ the fate of earlier communities of jinn and humans has been justified against them ˹as well˺, ˹for˺ they were truly losers.
4244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers advised ˹one another˺, "Do not listen to this Quran but drown it out so that you may prevail."
4245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So We will certainly make the disbelievers taste a severe punishment, and We will surely repay them according to the worst of their deeds.
4246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That is the reward of Allah’s enemies: the Fire, which will be their eternal home—a ˹fitting˺ reward for their denial of Our revelations.
4247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers will ˹then˺ cry, "Our Lord! Show us those jinn and humans who led us astray: we will put them under our feet so that they will be among the lowest ˹in Hell˺."
4248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely those who say, "Our Lord is Allah," and then remain steadfast, the angels descend upon them, ˹saying,˺ "Do not fear, nor grieve. Rather, rejoice in the good news of Paradise, which you have been promised.
4249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We are your supporters in this worldly life and in the Hereafter. There you will have whatever your souls desire, and there you will have whatever you ask for:
4250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               an accommodation from the All-Forgiving, Most Merciful ˹Lord˺."
4251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And whose words are better than someone who calls ˹others˺ to Allah, does good, and says, "I am truly one of those who submit."?
4252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Good and evil cannot be equal. Respond ˹to evil˺ with what is best, then the one you are in a feud with will be like a close friend.
4253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But this cannot be attained except by those who are patient and who are truly fortunate.
4254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if you are tempted by Satan, then seek refuge with Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.
4255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Among His signs are the day and the night, the sun and the moon. Do not prostrate to the sun or the moon, but prostrate to Allah, Who created them ˹all˺, if you ˹truly˺ worship Him ˹alone˺.
4256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if the pagans are too proud, then ˹let them know that˺ those ˹angels˺ nearest to your Lord glorify Him day and night, and never grow weary.
4257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And among His signs is that you see the earth devoid of life, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell. Indeed, the One Who revives it can easily revive the dead. He is certainly Most Capable of everything.
4258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, those who abuse Our revelations are not hidden from Us. Who is better: the one who will be cast into the Fire or the one who will be secure on Judgment Day? Do whatever you want. He is certainly All-Seeing of what you do.
4259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, those who deny the Reminder after it has come to them ˹are doomed˺, for it is truly a mighty Book.
4260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It cannot be proven false from any angle. ˹It is˺ a revelation from the ˹One Who is˺ All-Wise, Praiseworthy.
4261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹O Prophet!˺ Nothing is said to you ˹by the deniers˺ except what was already said to the messengers before you. Surely your Lord is ˹the Lord˺ of forgiveness and painful punishment.
4262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Had We revealed it as a non-Arabic Quran, they would have certainly argued, "If only its verses were made clear ˹in our language˺. What! A non-Arabic revelation for an Arab audience!" Say, ˹O Prophet,˺ "It is a guide and a healing to the believers. As for those who disbelieve, there is deafness in their ears and blindness to it ˹in their hearts˺. It is as if they are being called from a faraway place."
4263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.
4264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Your Lord is never unjust to ˹His˺ creation.
4265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    With Him ˹alone˺ is the knowledge of the Hour. No fruit comes out of its husk, nor does a female conceive or deliver without His knowledge. And ˹consider˺ the Day He will call to them, "Where are My ˹so-called˺ associate-gods?" They will cry, "We declare before you that none of us testifies to that ˹any longer˺."
4266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whatever ˹idols˺ they used to invoke besides Allah will fail them. And they will realize that they will have no escape.
4267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One never tires of praying for good. And if touched with evil, they become desperate and hopeless.
4268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if We let them taste a mercy from Us after being touched with adversity, they will certainly say, "This is what I deserve. I do not think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, the finest reward with Him will definitely be mine." But We will surely inform the disbelievers of what they used to do. And We will certainly make them taste a harsh torment.
4269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When We show favour to someone, they turn away, acting arrogantly. And when touched with evil, they make endless prayers ˹for good˺.
4270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ask ˹them, O  Prophet˺, "Imagine if this ˹Quran˺ is ˹truly˺ from Allah and you deny it: who can be more astray than those who have gone too far in opposition ˹to the truth˺?"
4271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We will show them Our signs in the universe and within themselves until it becomes clear to them that this ˹Quran˺ is the truth. Is it not enough that your Lord is a Witness over all things?
4272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They are truly in doubt of the meeting with their Lord! ˹But˺ He is indeed Fully Aware of everything.
4273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ’Aĩn-Sĩn-Qãf.
4275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And so you ˹O Prophet˺ are sent revelation, just like those before you, by Allah—the Almighty, All-Wise.
4276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To Him belongs whatever is in the heavens and whatever is on the earth. And He is the Most High, the Greatest.
4277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The heavens nearly burst, one above the other, ˹in awe of Him˺. And the angels glorify the praises of their Lord, and seek forgiveness for those on earth. Surely Allah alone is the All-Forgiving, Most Merciful.
4278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those who take other protectors besides Him, Allah is Watchful over them. And you ˹O Prophet˺ are not a keeper over them.
4279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And so We have revealed to you a Quran in Arabic, so you may warn the Mother of Cities and everyone around it, and warn of the Day of Gathering—about which there is no doubt—˹when˺ a group will be in Paradise and another in the Blaze.
4280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Had Allah willed, He could have easily made all ˹humanity˺ into a single community ˹of believers˺. But He admits into His mercy whoever He wills. And the wrongdoers will have no protector or helper.
4281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How can they take protectors besides Him? Allah alone is the Protector. He ˹alone˺ gives life to the dead. And He ˹alone˺ is Most Capable of everything.
4282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Say to the believers, O  Prophet,˺ "Whatever you may differ about, its judgment rests with Allah. That is Allah—my Lord. In Him I put my trust, and to Him I ˹always˺ turn."
4283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He is˺ the Originator of the heavens and the earth. He has made for you spouses from among yourselves, and ˹made˺ mates for cattle ˹as well˺—multiplying you ˹both˺. There is nothing like Him, for He ˹alone˺ is the All-Hearing, All-Seeing.
4284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. He gives abundant or limited provisions to whoever He wills. Indeed, He has ˹perfect˺ knowledge of all things.
4285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He has ordained for you ˹believers˺ the Way which He decreed for Noah, and what We have revealed to you ˹O Prophet˺ and what We decreed for Abraham, Moses, and Jesus, ˹commanding:˺ "Uphold the faith, and make no divisions in it." What you call the polytheists to is unbearable for them. Allah chooses for Himself whoever He wills, and guides to Himself whoever turns ˹to Him˺.
4286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They did not split ˹into sects˺ out of mutual envy until knowledge came to them. after them are truly in alarming doubt about this ˹Quran˺.
4287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Because of that, you ˹O Prophet˺ will invite ˹all˺. Be steadfast as you are commanded, and do not follow their desires. And say, "I believe in every Scripture Allah has revealed. And I am commanded to judge fairly among you. Allah is our Lord and your Lord. We will be accountable for our deeds and you for yours. There is no ˹need for˺ contention between us. Allah will gather us together ˹for judgment˺. And to Him is the final return."
4288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who dispute about Allah after He is ˹already˺ acknowledged ˹by many˺, their argument is futile in the sight of their Lord. Upon them is wrath, and they will suffer a severe punishment.
4289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is Allah Who has revealed the Book with the truth and the balance ˹of justice˺. You never know, perhaps the Hour is near.
4290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those who disbelieve in it ˹ask to˺ hasten it ˹mockingly˺. But the believers are fearful of it, knowing that it is the truth. Surely those who dispute about the Hour have gone far astray.
4291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah is Ever Kind to His servants. He provides ˹abundantly˺ to whoever He wills. And He is the All-Powerful, Almighty.
4292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoever desires the harvest of the Hereafter, We will increase their harvest. And whoever desires ˹only˺ the harvest of this world, We will give them some of it, but they will have no share in the Hereafter.
4293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they have associate-gods who have ordained for them some ˹polytheistic˺ beliefs, which Allah has not authorized? Had it not been for ˹prior˺ decree on Judgment, the matter would have certainly been settled between them ˹at once˺. And surely the wrongdoers will suffer a painful punishment.
4294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You will see the wrongdoers fearful ˹of the punishment˺ for what they committed but it will be inevitable for them, whereas those who believe and do good will be in the lush Gardens of Paradise. They will have whatever they desire from their Lord. That is ˹truly˺ the greatest bounty.
4295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That ˹reward˺ is the good news which Allah gives to His servants who believe and do good. Say, ˹O Prophet,˺ "I do not ask you for a reward for this ˹message˺—only honour for ˹our˺ kinship." Whoever earns a good deed, We will increase it in goodness for them. Surely Allah is All-Forgiving, Most Appreciative.
4296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or do they say, "He has fabricated a lie about Allah!"? ˹If you had,˺ Allah would have sealed your heart, if He willed. And Allah wipes out falsehood and establishes the truth by His Words. He certainly knows best what is ˹hidden˺ in the heart.
4297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who accepts repentance from His servants and pardons ˹their˺ sins. And He knows whatever you do.
4298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He responds to those who believe and do good, and increases their reward out of His grace. As for the disbelievers, they will suffer a severe punishment.
4299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had Allah given abundant provisions to ˹all˺ His servants, they would have certainly transgressed throughout the land. But He sends down whatever He wills in perfect measure. He is truly All-Aware, All-Seeing of His servants.
4300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who sends down rain after people have given up hope, spreading out His mercy. He is the Guardian, the Praiseworthy.
4301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And among His signs is the creation of the heavens and the earth, and all living beings He dispersed throughout both. And He is Most Capable of bringing all together whenever He wills.
4302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whatever affliction befalls you is because of what your own hands have committed. And He pardons much.
4303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You can never escape ˹Him˺ on earth, nor do you have any protector or helper besides Allah.
4304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And among His signs are the ships like mountains ˹sailing˺ in the sea.
4305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If He wills, He can calm the wind, leaving the ships motionless on the water. Surely in this are signs for whoever is steadfast, grateful.
4306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or He can wreck the ships for what the people have committed—though He forgives much—
4307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       so those who dispute about Our signs may know that they have no refuge.
4308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whatever ˹pleasure˺ you have been given is ˹no more than a fleeting˺ enjoyment of this worldly life. But what is with Allah is far better and more lasting for those who believe and put their trust in their Lord;
4309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            who avoid major sins and shameful deeds, and forgive when angered;
4310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who respond to their Lord, establish prayer, conduct their affairs by mutual consultation, and donate from what We have provided for them;
4311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and who enforce justice when wronged.
4312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The reward of an evil deed is its equivalent. But whoever pardons and seeks reconciliation, then their reward is with Allah. He certainly does not like the wrongdoers.
4313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There is no blame on those who enforce justice after being wronged.
4314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blame is only on those who wrong people and transgress in the land unjustly. It is they who will suffer a painful punishment.
4315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And whoever endures patiently and forgives—surely this is a resolve to aspire to.
4316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And whoever Allah leaves to stray will have no guide after Him. You will see the wrongdoers, when they face the torment, pleading, "Is there any way back ˹to the world˺?"
4317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And you will see them exposed to the Fire, fully humbled out of disgrace, stealing glances ˹at it˺. And the believers will say, "The ˹true˺ losers are those who have lost themselves and their families on Judgment Day." The wrongdoers will certainly be in everlasting torment.
4318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They will have no protectors to help them against Allah. And whoever Allah leaves to stray, for them there is no way.
4319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Respond to your Lord before the coming of a Day from Allah that cannot be averted. There will be no refuge for you then, nor ˹grounds for˺ denial ˹of sins˺.
4320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But if they turn away, We have not sent you ˹O Prophet˺ as a keeper over them. Your duty is only to deliver ˹the message˺. And indeed, when We let someone taste a mercy from Us, they become prideful ˹because˺ of it. But when afflicted with evil because of what their hands have done, then one becomes totally ungrateful.
4321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He creates whatever He wills. He blesses whoever He wills with daughters, and blesses whoever He wills with sons,
4322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     or grants both, sons and daughters, ˹to whoever He wills˺, and leaves whoever He wills infertile. He is indeed All-Knowing, Most Capable.
4323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is not ˹possible˺ for a human being to have Allah communicate with them, except through inspiration, or from behind a veil, or by sending a messenger-angel to reveal whatever He wills by His permission. He is surely Most High, All-Wise.
4324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so We have sent to you ˹O Prophet˺ a revelation by Our command. You did not know of ˹this˺ Book and faith ˹before˺. But We have made it a light, by which We guide whoever We will of Our servants. And you are truly leading ˹all˺ to the Straight Path—
4325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           the Path of Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. Surely to Allah all matters will return ˹for judgment˺.
4326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            By the clear Book!
4328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Certainly, We have made it a Quran in Arabic so perhaps you will understand.
4329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And indeed, it is—in the Master Record with Us—highly esteemed, rich in wisdom.
4330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Should We then turn the ˹Quranic˺ Reminder away from you ˹simply˺ because you have been a transgressing people?
4331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Imagine˺ how many prophets We sent to those ˹destroyed˺ before!
4332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But no prophet ever came to them without being mocked.
4333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So We destroyed those who were far mightier than these ˹Meccans˺. The examples of ˹their˺ predecessors have ˹already˺ been related.
4334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, "The Almighty, All-Knowing did."
4335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹He is the One˺ Who has laid out the earth for you, and set in it pathways for you so that you may find your way.
4336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹He is the One˺ Who sends down rain from the sky in perfect measure, with which We give life to a lifeless land. And so will you be brought forth ˹from the grave˺.
4337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹He is the One˺ Who created all ˹things in˺ pairs, and made for you ships and animals to ride
4338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        so that you may sit firmly on their backs, and remember your Lord’s blessings once you are settled on them, saying, "Glory be to the One Who has subjected these for us, for we could have never done so ˹on our own˺.
4339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And surely to our Lord we will ˹all˺ return."
4340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Still the pagans have made some of His creation out to be a part of Him. Indeed, humankind is clearly ungrateful.
4341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Has He taken ˹angels as His˺ daughters from what He created, and favoured you ˹O pagans˺ with sons?
4342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whenever one of them is given the good news of what they attribute to the Most Compassionate, his face grows gloomy, as he suppresses his rage.
4343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Do they attribute to Him˺ those who are brought up in fineries and are not commanding in disputes?
4344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Still they have labelled the angels, who are servants of the Most Compassionate, as female. Did they witness their creation? Their statement will be recorded, and they will be questioned!
4345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they argue, "Had the Most Compassionate willed, we would have never worshipped them." They have no knowledge ˹in support˺ of this ˹claim˺. They do nothing but lie.
4346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or have We given them a Book ˹for proof˺, before this ˹Quran˺, to which they are holding firm?
4347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In fact, they say, "We found our forefathers following a ˹particular˺ way, and we are following in their footsteps."
4348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Similarly, whenever We sent a warner to a society before you ˹O Prophet˺, its ˹spoiled˺ elite would say, "We found our forefathers following a ˹particular˺ way, and we are walking in their footsteps."
4349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Each ˹warner˺ asked, "Even if what I brought you is better guidance than what you found your forefathers practicing?" They replied, "We totally reject whatever you have been sent with."
4350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So We inflicted punishment upon them. See then what was the fate of the deniers!
4351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember, O  Prophet˺ when Abraham declared to his father and his people, "I am totally free of whatever ˹gods˺ you worship,
4352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               except the One Who originated me, and He will surely guide me."
4353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he left this enduring declaration among his descendants, so they may ˹always˺ turn back ˹to Allah˺.
4354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In fact, I had allowed enjoyment for these ˹Meccans˺ and their forefathers, until the truth came to them along with a messenger making things clear.
4355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹But˺ when the truth came to them, they said, "This is magic, and we totally reject it."
4356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they exclaimed, "If only this Quran was revealed to a great man from ˹one of˺ the two cities!"
4357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is it they who distribute your Lord’s mercy? We ˹alone˺ have distributed their ˹very˺ livelihood among them in this worldly life and raised some of them in rank above others so that some may employ others in service. ˹But˺ your Lord’s mercy is far better than whatever ˹wealth˺ they amass.
4358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Were it not that people might ˹be tempted to˺ become one community ˹of disbelievers˺, We would have supplied the homes of ˹only˺ those who disbelieve in the Most Compassionate with silver roofs and ˹silver˺ stairways to ascend,
4359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          as well as ˹silver˺ gates and thrones to recline on,
4360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and ornaments ˹of gold˺. Yet all this is no more than a ˹fleeting˺ enjoyment in this worldly life. ˹But˺ the Hereafter with your Lord is ˹only˺ for those mindful ˹of Him˺.
4361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And whoever turns a blind eye to the Reminder of the Most Compassionate, We place at the disposal of each a devilish one as their close associate,
4362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               who will certainly hinder them from the ˹Right˺ Way while they think they are ˹rightly˺ guided.
4363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But when such a person comes to Us, one will say ˹to their associate˺, "I wish you were as distant from me as the east is from the west! What an evil associate ˹you were˺!"
4364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹It will be said to both,˺ "Since you all did wrong, sharing in the punishment will be of no benefit to you this Day."
4365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Can you make the deaf hear, or guide the blind or those clearly astray?
4366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Even if We take you away ˹from this world˺, We will surely inflict punishment upon them.
4367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or if We show you what We threaten them with, We certainly have full power over them.
4368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So hold firmly to what has been revealed to you ˹O Prophet˺. You are truly on the Straight Path.
4369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely this ˹Quran˺ is a glory for you and your people. And you will ˹all˺ be questioned ˹about it˺.
4370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ask ˹the followers of˺ the messengers that We already sent before you if We ˹ever˺ appointed ˹other˺ gods to be worshipped besides the Most Compassionate.
4371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, We sent Moses with Our signs to Pharaoh and his chiefs, and he said: "I am a messenger of the Lord of all worlds."
4372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But as soon as he came to them with Our signs, they laughed at them,
4373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           although every sign We showed them was greater than the one before.
4374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Then˺ they pleaded, "O ˹mighty˺ magician! Pray to your Lord on our behalf, by virtue of the covenant He made with you. We will certainly accept guidance."
4375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But as soon as We removed the torments from them, they broke their promise.
4376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Pharaoh called out to his people, boasting, "O my people! Am I not sovereign over Egypt as well as ˹all˺ these streams flowing at my feet? Can you not see?
4377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Am I not better than this nobody who can hardly express himself?
4378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why then have no golden bracelets ˹of kingship˺ been granted to him or angels come with him as escorts!"
4379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And so he fooled his people, and they obeyed him. They were truly a rebellious people.
4380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So when they enraged Us, We inflicted punishment upon them, drowning them all.
4381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We made them an example and a lesson for those after them.
4382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When the son of Mary was cited as an example ˹in argument˺, your people ˹O Prophet˺ broke into ˹joyful˺ applause.
4383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They exclaimed, "Which is better: our gods or Jesus?" They cite him only to argue. In fact, they are a people prone to dispute.
4384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He was only a servant We showed favour to, and made as an example for the Children of Israel.
4385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had We willed, We could have easily replaced you ˹all˺ with angels, succeeding one another on earth.
4386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And his ˹second˺ coming is truly a sign for the Hour. So have no doubt about it, and follow me. This is the Straight Path.
4387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And do not let Satan hinder you, ˹for˺ he is certainly your sworn enemy.
4388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When Jesus came with clear proofs, he declared, "I have come to you with wisdom, and to clarify to you some of what you differ about. So fear Allah, and obey me.
4389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely Allah ˹alone˺ is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path."
4390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the wrongdoers when they face the torment of a painful Day!
4391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Are they waiting for the Hour to take them by surprise when they least expect ˹it˺?
4392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Close friends will be enemies to one another on that Day, except the righteous,
4393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹who will be told,˺ "O My servants! There is no fear for you Today, nor will you grieve—
4394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹those˺ who believed in Our signs and ˹fully˺ submitted ˹to Us˺.
4395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Enter Paradise, you and your spouses, rejoicing."
4396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Golden trays and cups will be passed around to them. There will be whatever the souls desire and the eyes delight in. And you will be there forever.
4397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That is the Paradise which you will be awarded for what you used to do.
4398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There you will have abundant fruit to eat from.
4399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, the wicked will be in the torment of Hell forever.
4400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It will never be lightened for them, and there they will be overwhelmed with despair.
4401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We did not wrong them, but it was they who were the wrongdoers.
4402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They will cry, "O Malik! Let your Lord finish us off." He will answer, "You are definitely here to stay."
4403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We certainly brought the truth to you, but most of you were resentful of the truth.
4404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or have they mastered some ˹evil˺ plan? Then We ˹too˺ are surely planning.
4405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or do they think that We do not hear their ˹evil˺ thoughts and secret talks? Yes ˹We do˺! And Our messenger-angels are in their presence, recording ˹it all˺.
4406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "If the Most Compassionate ˹really˺ had offspring, I would be the first worshipper."
4407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Glorified is the Lord of the heavens and the earth, the Lord of the Throne, far above what they claim.
4408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been warned of.
4409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is He Who is ˹the only˺ God in the heavens and ˹the only˺ God on the earth. For He is the All-Wise, All-Knowing.
4410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Blessed is the One to Whom belongs the kingdom of the heavens and the earth and everything in between! With Him ˹alone˺ is the knowledge of the Hour. And to Him you will ˹all˺ be returned.
4411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹But˺ those ˹objects of worship˺ they invoke besides Him have no power to intercede, except those who testify to the truth knowingly.
4412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you ask them ˹O Prophet˺ who created them, they will certainly say, "Allah!" How can they then be deluded ˹from the truth˺?
4413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Allah is Aware of˺ the Prophet’s cry: "O my Lord! Indeed, these are a people who persist in disbelief."
4414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So bear with them and respond with peace. They will soon come to know.
4415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            By the clear Book!
4417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, We sent it down on a blessed night, for We always warn ˹against evil˺.
4418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              On that night every matter of wisdom is ordained
4419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    by a command from Us, for We have always sent ˹messengers˺
4420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  as a mercy from your Lord. He ˹alone˺ is truly the All-Hearing, All-Knowing—
4421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  the Lord of the heavens and the earth and everything in between, if only you had sure faith.
4422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  There is no god ˹worthy of worship˺ except Him. He ˹alone˺ gives life and causes death. ˹He is˺ your Lord, and the Lord of your forefathers.
4423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In fact, they are in doubt, amusing themselves.
4424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wait then ˹O Prophet˺ for the day ˹when˺ the sky will be veiled in haze, clearly visible,
4425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         overwhelming the people. ˹They will cry,˺ "This is a painful torment.
4426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Our Lord! Remove ˹this˺ torment from us, ˹and˺ we will certainly believe."
4427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How can they be reminded when a messenger has already come to them, making things clear,
4428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then they turned away from him, saying, "A madman, taught by others!"?
4429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We will remove ˹that˺ torment for a while, and you ˹Meccans˺ will return ˹to disbelief˺.
4430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Then˺ on the Day We will deal ˹you˺ the fiercest blow, We will surely inflict punishment.
4431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, before them We tested Pharaoh’s people: a noble messenger came to them,
4432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹proclaiming,˺ "Hand over the servants of Allah to me. I am truly a trustworthy messenger to you.
4433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And do not be arrogant with Allah. I have certainly come to you with a compelling proof.
4434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And indeed, I seek refuge with my Lord and your Lord so you do not stone me ˹to death˺.
4435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹But˺ if you do not believe me, then let me be."
4436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ultimately, he cried out to his Lord, "These are a wicked people!"
4437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Allah responded,˺ "Leave with My servants at night, for you will surely be pursued.
4438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And leave the sea parted, for they are certainly an army bound to drown."
4439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Imagine˺ how many gardens and springs the tyrants left behind,
4440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           as well as ˹various˺ crops and splendid residences,
4441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and luxuries which they fully enjoyed.
4442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So it was. And We awarded it ˹all˺ to another people.
4443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither heaven nor earth wept over them, nor was their fate delayed.
4444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We certainly delivered the Children of Israel from the humiliating torment
4445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            of Pharaoh. He was truly a tyrant, a transgressor.
4446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And indeed, We chose the Israelites knowingly above the others.
4447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And We showed them signs in which there was a clear test.
4448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, these ˹Meccans˺ say,
4449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "There is nothing beyond our first death, and we will never be resurrected.
4450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bring ˹back˺ our forefathers, if what you say is true."
4451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Are they superior to the people of Tubba’ and those before them? We destroyed them ˹all˺, ˹for˺ they were truly wicked.
4452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We did not create the heavens and the earth and everything in between for sport.
4453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We only created them for a purpose, but most of these ˹pagans˺ do not know.
4454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely the Day of ˹Final˺ Decision is the time appointed for all—
4455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     the Day no kith or kin will be of benefit to another whatsoever, nor will they be helped,
4456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   except those shown mercy by Allah. He is truly the Almighty, Most Merciful.
4457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely ˹the fruit of˺ the tree of Zaqqûm
4458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             will be the food of the evildoer.
4459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Like molten metal, it will boil in the bellies
4460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                like the boiling of hot water.
4461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹It will be said,˺ "Seize them and drag them into the depths of the Hellfire.
4462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then pour over their heads the torment of boiling water."
4463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹The wicked will be told,˺ "Taste this. You mighty, noble one!
4464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is truly what you ˹all˺ used to doubt."
4465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, the righteous will be in a secure place,
4466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     amid Gardens and springs,
4467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dressed in fine silk and rich brocade, facing one another.
4468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So it will be. And We will pair them to maidens with gorgeous eyes.
4469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             There they will call for every fruit in serenity.
4470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There they will never taste death, beyond the first death. And He will protect them from the punishment of the Hellfire—
4471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    as ˹an act of˺ grace from your Lord. That is ˹truly˺ the ultimate triumph.
4472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so perhaps they will be mindful.
4473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wait then! They too are certainly waiting.
4474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The revelation of this Book is from Allah—the Almighty, All-Wise.
4476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely in ˹the creation of˺ the heavens and the earth are signs for the believers.
4477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And in your own creation, and whatever living beings He dispersed, are signs for people of sure faith.
4478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹in˺ the alternation of the day and the night, the provision sent down from the skies by Allah—reviving the earth after its death—and the shifting of the winds, are signs for people of understanding.
4479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. So what message will they believe in after ˹denying˺ Allah and His revelations?
4480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Woe to every sinful liar.
4481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They hear Allah’s revelations recited to them, then persist ˹in denial˺ arrogantly as if they did not hear them. So give them good news of a painful punishment.
4482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And whenever they learn anything of Our revelations, they make a mockery of it. It is they who will suffer a humiliating punishment.
4483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Awaiting them is Hell. Their ˹worldly˺ gains will not be of any benefit to them whatsoever, nor will those protectors they have taken besides Allah. And they will suffer a tremendous punishment.
4484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This ˹Quran˺ is ˹true˺ guidance. And those who deny their Lord’s revelations will suffer the ˹worst˺ torment of agonizing pain.
4485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah is the One Who has subjected the sea for you so that ships may sail upon it by His command, and that you may seek His bounty, and that perhaps you will be grateful.
4486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He ˹also˺ subjected for you whatever is in the heavens and whatever is on the earth—all by His grace. Surely in this are signs for people who reflect.
4487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹O Prophet!˺ Tell the believers to forgive those who do not fear Allah’s days ˹of torment˺, so that He will reward each group for what they used to commit.
4488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Then to your Lord you will ˹all˺ be returned.
4489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We gave the Children of Israel the Scripture, wisdom, and prophethood; granted them good, lawful provisions; and favoured them above the others.
4490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We ˹also˺ gave them clear commandments regarding ˹their˺ faith. But it was not until knowledge came to them that they differed out of mutual envy. Surely your Lord will judge between them on the Day of Judgment regarding their differences.
4491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now We have set you ˹O Prophet˺ on the ˹clear˺ Way of faith. So follow it, and do not follow the desires of those who do not know ˹the truth˺.
4492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They certainly can be of no benefit to you against Allah whatsoever. Surely the wrongdoers are patrons of each other, whereas Allah is the Patron of the righteous.
4493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This ˹Quran˺ is an insight for humanity—a guide and mercy for people of sure faith.
4494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or do those who commit evil deeds ˹simply˺ think that We will make them equal—in their life and after their death—to those who believe and do good? How wrong is their judgment!
4495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For Allah created the heavens and the earth for a purpose, so that every soul may be paid back for what it has committed. And none will be wronged.
4496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have you seen ˹O Prophet˺ those who have taken their own desires as their god? ˹And so˺ Allah left them to stray knowingly, sealed their hearing and hearts, and placed a cover on their sight. Who then can guide them after Allah? Will you ˹all˺ not then be mindful?
4497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they argue, "There is nothing beyond our worldly life. We die; others are born. And nothing destroys us but ˹the passage of˺ time." Yet they have no knowledge ˹in support˺ of this ˹claim˺. They only speculate.
4498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whenever Our clear revelations are recited to them, their only argument is to say: "Bring our forefathers back, if what you say is true!"
4499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "˹It is˺ Allah ˹Who˺ gives you life, then causes you to die, then will gather you ˹all˺ on the Day of Judgment, about which there is no doubt. But most people do not know."
4500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. On the Day the Hour will be established, the people of falsehood will then be in ˹total˺ loss.
4501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And you will see every faith-community on its knees. Every community will be summoned to its record ˹of deeds˺. ˹They all will be told,˺ "This Day you will be rewarded for what you used to do.
4502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This record of Ours speaks the truth about you. Indeed, We always had your deeds recorded ˹by the angels˺."
4503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As for those who believed and did good, their Lord will admit them into His mercy. That is ˹truly˺ the absolute triumph.
4504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And as for those who disbelieved, ˹they will be told,˺ "Were My revelations not recited to you, yet you acted arrogantly and were a wicked people?
4505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whenever it was said ˹to you˺, ‘Surely Allah’s promise ˹of judgment˺ is true and there is no doubt about the Hour,’ you said ˹mockingly˺, ‘We do not know what the Hour is! We think it is no more than speculation, and we are not convinced ˹that it will ever come˺.’"
4506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.
4507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It will be said, "This Day We will neglect you as you neglected the meeting of this Day of yours! Your home will be the Fire, and you will have no helpers.
4508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is because you made a mockery of Allah’s revelations, and were deluded by ˹your˺ worldly life." So ˹from˺ that Day ˹on˺ they will not be taken out of the Fire, nor will they be allowed to appease ˹their Lord˺.
4509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So all praise is for Allah—Lord of the heavens and Lord of the earth, Lord of all worlds.
4510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To Him belongs ˹all˺ Majesty in the heavens and the earth. And He is the Almighty, All-Wise.
4511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ha-Mĩm.
4512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The revelation of this Book is from Allah—the Almighty, All-Wise.
4513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet the disbelievers are turning away from what they have been warned about.
4514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ask ˹them, O  Prophet˺, "Have you considered whatever ˹idols˺ you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Bring me a scripture ˹revealed˺ before this ˹Quran˺ or a shred of knowledge, if what you say is true."
4515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And who could be more astray than those who call upon others besides Allah—˹others˺ that cannot respond to them until the Day of Judgment, and are ˹even˺ unaware of their calls?
4516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when ˹such˺ people will be gathered together, those ˹gods˺ will be their enemies and will disown their worship.
4517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whenever Our clear revelations are recited to them, the disbelievers say of the truth when it has come to them, "This is pure magic."
4518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or do they say, "He has fabricated this ˹Quran˺!"? Say, ˹O Prophet,˺ "If I have done so, then there is nothing whatsoever you can do to save me from Allah. He knows best what ˹slurs˺ you indulge about it. Sufficient is He as a Witness between you and me. And He is the All-Forgiving, Most Merciful."
4519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "I am not the first messenger ever sent, nor do I know what will happen to me or you. I only follow what is revealed to me. And I am only sent with a clear warning."
4520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ask ˹them, O  Prophet˺, "Consider if this ˹Quran˺ is ˹truly˺ from Allah and you deny it, and a witness from the Children of Israel attests to it and then believes, whereas you act arrogantly. Surely Allah does not guide the wrongdoing people."
4521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The disbelievers say of the believers, "Had it been ˹something˺ good, they would not have beaten us to it." Now since they reject its guidance, they will say, "˹This is˺ an ancient fabrication!"
4522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And before this ˹Quran˺ the Book of Moses was ˹revealed as˺ a guide and mercy. And this Book is a confirmation, in the Arabic tongue, to warn those who do wrong, and as good news to those who do good.
4523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely those who say, "Our Lord is Allah," and then remain steadfast—there will be no fear for them, nor will they grieve.
4524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is they who will be the residents of Paradise, staying there forever, as a reward for what they used to do.
4525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have commanded people to honour their parents. Their mothers bore them in hardship and delivered them in hardship. Their ˹period of˺ bearing and weaning is thirty months. In time, when the child reaches their prime at the age of forty, they pray, "My Lord! Inspire me to ˹always˺ be thankful for Your favours which You blessed me and my parents with, and to do good deeds that please You. And instil righteousness in my offspring. I truly repent to You, and I truly submit ˹to Your Will˺."
4526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is from these ˹people˺ that We will accept the good they did, and overlook their misdeeds—along with the residents of Paradise, ˹in fulfilment of˺ the true promise they have been given.
4527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But some scold their parents, "Enough with you! Are you warning me that I will be brought forth ˹from the grave˺, while many generations had already perished before me ˹for good˺?" The parents cry to Allah for help, ˹and warn their child,˺ "Pity you. Have faith! Surely Allah’s promise is true." But the deniers insist, "This is nothing but ancient fables."
4528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These are the ones against whom the fate of earlier communities of jinn and humans has been justified, ˹for˺ they were truly losers.
4529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Each ˹of the two groups˺ will be ranked according to what they have done so He may fully reward all. And none will be wronged.
4530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Watch for˺ the Day ˹when˺ the disbelievers will be exposed to the Fire. ˹They will be told,˺ "You ˹already˺ exhausted your ˹share of˺ pleasures during your worldly life, and ˹fully˺ enjoyed them. So Today you will be rewarded with the torment of disgrace for your arrogance throughout the land with no right, and for your rebelliousness."
4531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And remember the brother of ’Ȃd, when he warned his people, who inhabited the sand-hills—there were certainly warners before and after him—˹saying,˺ "Worship none but Allah. I truly fear for you the torment of a tremendous day."
4532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They argued, "Have you come to turn us away from our gods? Bring us then whatever you threaten us with, if what you say is true."
4533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He responded, "The knowledge ˹of its time˺ is only with Allah. I only convey to you what I have been sent with. But I can see that you are a people acting ignorantly."
4534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then when they saw the torment as a ˹dense˺ cloud approaching their valleys, they said ˹happily˺, "This is a cloud bringing us rain." ˹But Hûd replied,˺ "No, it is what you sought to hasten: a ˹fierce˺ wind carrying a painful punishment!"
4535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It destroyed everything by the command of its Lord, leaving nothing visible except their ruins. This is how We reward the wicked people.
4536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, We had established them in a way We have not established you ˹Meccans˺. And We gave them hearing, sight, and intellect. But neither their hearing, sight, nor intellect were of any benefit to them whatsoever, since they persisted in denying Allah’s signs. And ˹so˺ they were overwhelmed by what they used to ridicule.
4537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We certainly destroyed the societies around you after having varied the signs so perhaps they would return ˹to the Right Path˺.
4538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why then did those ˹idols˺ they took as gods—hoping to get closer ˹to Him˺—not come to their aid? Instead, they failed them. That is ˹the result of˺ their lies and their fabrications.
4539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember, O  Prophet,˺ when We sent a group of jinn your way to listen to the Quran. Then, upon hearing it, they said ˹to one another˺, "Listen quietly!" Then when it was over, they returned to their fellow jinn as warners.
4540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They declared, "O our fellow jinn! We have truly heard a scripture revealed after Moses, confirming what came before it. It guides to the truth and the Straight Way.
4541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O  our fellow jinn! Respond to the caller of Allah and believe in him, He will forgive your sins and protect you from a painful punishment.
4542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And whoever does not respond to the caller of Allah will have no escape on earth, nor will they have any protectors against Him. It is they who are clearly astray."
4543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do they not realize that Allah, Who created the heavens and the earth and did not tire in creating them, is able to give life to the dead? Yes ˹indeed˺! He is certainly Most Capable of everything.
4544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And on the Day the disbelievers will be exposed to the Fire, ˹they will be asked,˺ "Is this ˹Hereafter˺ not the truth?" They will cry, "Absolutely, by our Lord!" It will be said, "Then taste the punishment for your disbelief."
4545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So endure patiently, as did the Messengers of Firm Resolve. ˹This is˺ a ˹sufficient˺ warning! Then, will anyone be destroyed except the rebellious people?
4546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who disbelieve and hinder ˹others˺ from the Way of Allah, He will render their deeds void.
4547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who believe, do good, and have faith in what has been revealed to Muhammad—which is the truth from their Lord—He will absolve them of their sins and improve their condition.
4548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is because the disbelievers follow falsehood, while the believers follow the truth from their Lord. This is how Allah shows people their true state ˹of faith˺.
4549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So when you meet the disbelievers ˹in battle˺, strike ˹their˺ necks until you have thoroughly subdued them, then bind them firmly. Later ˹free them either as˺ an act of grace or by ransom until the war comes to an end. So will it be. Had Allah willed, He ˹Himself˺ could have inflicted punishment on them. But He does ˹this only to˺ test some of you by means of others. And those who are martyred in the cause of Allah, He will never render their deeds void.
4550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He will guide them ˹to their reward˺, improve their condition,
4551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and admit them into Paradise, having made it known to them.
4552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O believers! If you stand up for Allah, He will help you and make your steps firm.
4553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for the disbelievers, may they be doomed and may He render their deeds void.
4554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That is because they detest what Allah has revealed, so He has rendered their deeds void.
4555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have they not travelled throughout the land to see what was the end of those before them? Allah annihilated them, and a similar fate awaits the disbelievers.
4556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is because Allah is the Patron of the believers while the disbelievers have no patron.
4557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely Allah will admit those who believe and do good into Gardens under which rivers flow. As for the disbelievers, they enjoy themselves and feed like cattle. But the Fire will be their home.
4558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Imagine, O  Prophet,˺ how many societies We destroyed that were far superior in might than your society—which drove you out—and there was none to help them!
4559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Can those ˹believers˺ who stand on clear proof from their Lord be like those whose evil deeds are made appealing to them and ˹only˺ follow their desires?
4560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The description of the Paradise promised to the righteous is that in it are rivers of fresh water, rivers of milk that never changes in taste, rivers of wine delicious to drink, and rivers of pure honey. There they will ˹also˺ have all kinds of fruit, and forgiveness from their Lord. ˹Can they be˺ like those who will stay in the Fire forever, left to drink boiling water that will tear apart their insides?
4561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There are some of them who listen to you ˹O Prophet˺, but when they depart from you, they say ˹mockingly˺ to those ˹believers˺ gifted with knowledge, "What did he just say?" These are the ones whose hearts Allah has sealed and who ˹only˺ follow their desires.
4562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for those who are ˹rightly˺ guided, He increases them in guidance and blesses them with righteousness.
4563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Are they only waiting for the Hour to take them by surprise? Yet ˹some of˺ its signs have already come. Once it actually befalls them, will it not be too late to be mindful?
4564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So, know ˹well, O  Prophet,˺ that there is no god ˹worthy of worship˺ except Allah. And seek forgiveness for your shortcomings and for ˹the sins of˺ the believing men and women. For Allah ˹fully˺ knows your movements and places of rest ˹O people˺.
4565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the believers say, "If only a sûrah was revealed ˹allowing self-defence˺!" Yet when a precise sûrah is revealed, in which fighting is ˹explicitly˺ mentioned, you see those with sickness in their hearts staring at you like someone in the throes of death. It would have been better for them
4566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             to obey and speak rightly. Then when fighting was ordained, it surely would have been better for them if they were true to Allah.
4567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now if you ˹hypocrites˺ turn away, perhaps you would then spread corruption throughout the land and sever your ˹ties of˺ kinship!
4568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the ones who Allah has condemned, deafening them and blinding their eyes.
4569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do they not then reflect on the Quran? Or are there locks upon their hearts?
4570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, those who relapse ˹into disbelief˺ after ˹true˺ guidance has become clear to them, ˹it is˺ Satan ˹that˺ has tempted them, luring them with false hopes.
4571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That is because they said ˹privately˺ to those who ˹also˺ detest what Allah has revealed, "We will obey you in some matters." But Allah ˹fully˺ knows what they are hiding.
4572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then how ˹horrible˺ will it be when the angels take their souls, beating their faces and backs!
4573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is because they follow whatever displeases Allah and hate whatever pleases Him, so He has rendered their deeds void.
4574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or do those with sickness in their hearts think that Allah will not ˹be able to˺ expose their malice?
4575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had We willed, We could have truly shown them to you ˹O Prophet˺, and you would have certainly recognized them by their appearance. But you will surely recognize them by their tone of speech. And Allah ˹fully˺ knows your doings ˹O people˺.
4576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We will certainly test you ˹believers˺ until We prove those of you who ˹truly˺ struggle ˹in Allah’s cause˺ and remain steadfast, and reveal how you conduct yourselves.
4577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, those who disbelieve, hinder ˹others˺ from the Way of Allah, and defy the Messenger after ˹true˺ guidance has become clear to them; they will not harm Allah in the least, but He will render their deeds void.
4578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Obey Allah and obey the Messenger, and do not let your deeds be in vain.
4579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely those who disbelieve, hinder ˹others˺ from the Way of Allah, and then die as disbelievers; Allah will never forgive them.
4580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So do not falter or cry for peace, for you will have the upper hand and Allah is with you. And He will never let your deeds go to waste.
4581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This worldly life is no more than play and amusement. But if you are faithful and mindful ˹of Allah˺, He will grant you your ˹full˺ reward, and will not ask you ˹to donate all˺ your wealth.
4582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If He were to do so and pressure you, you would withhold and He would bring out your resentment.
4583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Here you are, being invited to donate ˹a little˺ in the cause of Allah. Still some of you withhold. And whoever does so, it is only to their own loss. For Allah is the Self-Sufficient, whereas you stand in need ˹of Him˺. If you ˹still˺ turn away, He will replace you with another people. And they will not be like you.
4584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We have granted you a clear triumph ˹O Prophet˺
4585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          so that Allah may forgive you for your past and future shortcomings, perfect His favour upon you, guide you along the Straight Path,
4586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and so that Allah will help you tremendously.
4587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who sent down serenity upon the hearts of the believers so that they may increase even more in their faith. To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is All-Knowing, All-Wise.
4588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So He may admit believing men and women into Gardens under which rivers flow—to stay there forever—and absolve them of their sins. And that is a supreme achievement in the sight of Allah.
4589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Also ˹so that˺ He may punish hypocrite men and women and polytheistic men and women, who harbour evil thoughts of Allah. May ill-fate befall them! Allah is displeased with them. He has condemned them and prepared for them Hell. What an evil destination!
4590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is Almighty, All-Wise.
4591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, ˹O Prophet,˺ We have sent you as a witness, a deliverer of good news, and a warner,
4592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             so that you ˹believers˺ may have faith in Allah and His Messenger, support and honour him, and glorify Allah morning and evening.
4593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely those who pledge allegiance to you ˹O Prophet˺ are actually pledging allegiance to Allah. Allah’s Hand is over theirs. Whoever breaks their pledge, it will only be to their own loss. And whoever fulfils their pledge to Allah, He will grant them a great reward.
4594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The nomadic Arabs, who stayed behind, will say to you ˹O Prophet˺, "We were preoccupied with our wealth and families, so ask for forgiveness for us." They say with their tongues what is not in their hearts. Say, "Who then can stand between you and Allah in any way, if He intends harm or benefit for you? In fact, Allah is All-Aware of what you do.
4595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The truth is: you thought that the Messenger and the believers would never return to their families again. And that was made appealing in your hearts. You harboured evil thoughts ˹about Allah˺, and ˹so˺ became a doomed people."
4596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And whoever does not believe in Allah and His Messenger, then We surely have prepared for the disbelievers a blazing Fire.
4597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.
4598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who stayed behind will say, when you ˹believers˺ set out to take the spoils of war, "Let us accompany you." They wish to change Allah’s promise. The truth is: they can hardly comprehend.
4599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say to nomadic Arabs, who stayed behind, "You will be called ˹to fight˺ against a people of great might, who you will fight unless they submit. If you then obey, Allah will grant you a fine reward. But if you turn away as you did before, He will inflict upon you a painful punishment."
4600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There is no blame on the blind, or the disabled, or the sick ˹for staying behind˺. And whoever obeys Allah and His Messenger will be admitted by Him into Gardens under which rivers flow. But whoever turns away will be subjected by Him to a painful punishment.
4601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, Allah was pleased with the believers when they pledged allegiance to you ˹O Prophet˺ under the tree. He knew what was in their hearts, so He sent down serenity upon them and rewarded them with a victory at hand,
4602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and many spoils of war they will gain. For Allah is Almighty, All-Wise.
4603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah has promised you ˹believers˺ abundant spoils, which you will gain, so He hastened this ˹truce˺ for you. And He has held people’s hands back from ˹harming˺ you, so it may be a sign for the believers, and so He may guide you along the Straight Path.
4604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹there are˺ other gains which are beyond your reach that Allah is keeping in store ˹for you˺. For Allah is Most Capable of everything.
4605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If the disbelievers were to fight you, they would certainly flee. Then they would never find any protector or helper.
4606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹This is˺ Allah’s way, already long established ˹in the past˺. And you will find no change in Allah’s way.
4607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He is the One Who held back their hands from you and your hands from them in the valley of ˹hudaibiyah, near˺ Mecca, after giving you the upper hand over ˹a group of˺ them. And Allah is All-Seeing of what you do.
4608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They are the ones who persisted in disbelief and hindered you from the Sacred Mosque, preventing the sacrificial animals from reaching their destination. Had those ˹unknown˺ believers stood apart, We would have certainly inflicted a painful punishment on the disbelievers.
4609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Remember˺ when the disbelievers had filled their hearts with pride—the pride of ˹pre-Islamic˺ ignorance for they were better entitled and more worthy of it. And Allah has ˹perfect˺ knowledge of all things.
4610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, Allah will fulfil His Messenger’s vision in all truth: Allah willing, you will surely enter the Sacred Mosque, in security—˹some with˺ heads shaved and ˹others with˺ hair shortened—without fear.
4611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is the One Who has sent His Messenger with ˹right˺ guidance and the religion of truth, making it prevail over all others. And sufficient is Allah as a Witness.
4612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Muhammad is the Messenger of Allah. And those with him are firm with the disbelievers To those of them who believe and do good, Allah has promised forgiveness and a great reward.
4613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Do not proceed ˹in any matter˺ before ˹a decree from˺ Allah and His Messenger. And fear Allah. Surely Allah is All-Hearing, All-Knowing.
4614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! Do not raise your voices above the voice of the Prophet, nor speak loudly to him as you do to one another, or your deeds will become void while you are unaware.
4615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, those who lower their voices in the presence of Allah’s Messenger are the ones whose hearts Allah has refined for righteousness. They will have forgiveness and a great reward.
4616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, most of those who call out to you ˹O Prophet˺ from outside ˹your˺ private quarters have no understanding ˹of manners˺.
4617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had they been patient until you could come out to them, it would have certainly been better for them. And Allah is All-Forgiving, Most Merciful.
4618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers, if an evildoer brings you any news, verify ˹it˺ so you do not harm people unknowingly, becoming regretful for what you have done.
4619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And keep in mind that Allah’s Messenger is ˹still˺ in your midst. If he were to yield to you in many matters, you would surely suffer ˹the consequences˺. But Allah has endeared faith to you, making it appealing in your hearts. And He has made disbelief, rebelliousness, and disobedience detestable to you. Those are the ones rightly guided.
4620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹This is˺ a bounty and a blessing from Allah. And Allah is All-Knowing, All-Wise.
4621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if two groups of believers fight each other, then make peace between them. But if one of them transgresses against the other, then fight against the transgressing group until they ˹are willing to˺ submit to the rule of Allah. If they do so, then make peace between both ˹groups˺ in all fairness and act justly. Surely Allah loves those who uphold justice.
4622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The believers are but one brotherhood, so make peace between your brothers. And be mindful of Allah so you may be shown mercy.
4623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not let some ˹men˺ ridicule others, they may be better than them, nor let ˹some˺ women ridicule other women, they may be better than them. Do not defame one another, nor call each other by offensive nicknames. How evil it is to act rebelliously after having faith! And whoever does not repent, it is they who are the ˹true˺ wrongdoers.
4624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O  believers! Avoid many suspicions, ˹for˺ indeed, some suspicions are sinful. And do not spy, nor backbite one another. Would any of you like to eat the flesh of their dead brother? You would despise that! And fear Allah. Surely Allah is ˹the˺ Accepter of Repentance, Most Merciful.
4625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O humanity! Indeed, We created you from a male and a female, and made you into peoples and tribes so that you may ˹get to˺ know one another. Surely the most noble of you in the sight of Allah is the most righteous among you. Allah is truly All-Knowing, All-Aware.
4626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Some of˺ the nomadic Arabs say, "We believe." Say, ˹O Prophet,˺ "You have not believed. But say, ‘We have submitted,’ for faith has not yet entered your hearts. But if you obey Allah and His Messenger ˹wholeheartedly˺, He will not discount anything from ˹the reward of˺ your deeds. Allah is truly All-Forgiving, Most Merciful."
4627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The ˹true˺ believers are only those who believe in Allah and His Messenger—never doubting—and strive with their wealth and their lives in the cause of Allah. They are the ones true in faith.
4628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "Do you inform Allah of your faith, when Allah ˹already˺ knows whatever is in the heavens and whatever is on the earth? And Allah has ˹perfect˺ knowledge of all things."
4629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They regard their acceptance of Islam as a favour to you. Tell ˹them, O  Prophet˺, "Do not regard your Islam as a favour to me. Rather, it is Allah Who has done you a favour by guiding you to the faith, if ˹indeed˺ you are faithful.
4630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely Allah knows the unseen of the heavens and earth. And Allah is All-Seeing of what you do."
4631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Qãf. By the glorious Quran!
4632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹All will be resurrected,˺ yet the deniers are astonished that a warner has come to them from among themselves ˹warning of resurrection˺. So the disbelievers say, "This is an astonishing thing!
4633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Will we be returned to life,˺ when we are dead and reduced to dust? Such a return is impossible."
4634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We certainly know what the earth consumes of them ˹after their death˺, and with us is a well-preserved Record.
4635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In fact, they reject the truth when it has come to them, so they are in a confused state.
4636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have they not then looked at the sky above them: how We built it and adorned it ˹with stars˺, leaving it flawless?
4637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for the earth, We spread it out and placed upon it firm mountains, and produced in it every type of pleasant plant—
4638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹all as˺ an insight and a reminder to every servant who turns ˹to Allah˺.
4639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We send down blessed rain from the sky, bringing forth gardens and grains for harvest,
4640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and towering palm trees ˹loaded˺ with clustered fruit,
4641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹as˺ a provision for ˹Our˺ servants. And with this ˹rain˺ We revive a lifeless land. Similar is the emergence ˹from the graves˺.
4642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Before them, the people of Noah denied ˹the truth,˺ as did the people of the Water-pit, Thamûd,
4643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ’Ȃd, Pharaoh, the kinfolk of Lot,
4644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the residents of the Forest, Each rejected ˹their˺ messenger, so My warning was fulfilled.
4645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Were We incapable of creating ˹them˺ the first time? In fact, they are in doubt about ˹their˺ re-creation.
4646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, ˹it is˺ We ˹Who˺ created humankind and ˹fully˺ know what their souls whisper to them, and We are closer to them than ˹their˺ jugular vein.
4647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As the two recording-angels—˹one˺ sitting to the right, and ˹the other to˺ the left—note ˹everything˺,
4648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 not a word does a person utter without having a ˹vigilant˺ observer ready ˹to write it down˺.
4649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Ultimately,˺ with the throes of death will come the truth. This is what you were trying to escape!
4650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Trumpet will be blown. This is the Day ˹you were˺ warned of.
4651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Each soul will come forth with an angel to drive it and another to testify.
4652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It will be said to the denier,˺ "You were totally heedless of this. Now We have lifted this veil of yours, so Today your sight is sharp!"
4653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And one’s accompanying-angel will say, "Here is the record ready with me."
4654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹It will be said to both angels,˺ "Throw into Hell every stubborn disbeliever,
4655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                withholder of good, transgressor, and doubter,
4656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who set up another god with Allah. So cast them into the severe punishment."
4657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One’s ˹devilish˺ associate will say, "Our Lord! I did not make them transgress. Rather, they were far astray ˹on their own˺."
4658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah will respond, "Do not dispute in My presence, since I had already given you a warning.
4659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 My Word cannot be changed, nor am I unjust to ˹My˺ creation."
4660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Beware of˺ the Day We will ask Hell, "Are you full ˹yet˺?" And it will respond, "Are there any more?"
4661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Paradise will be brought near to the righteous, not far off.
4662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹And it will be said to them,˺ "This is what you were promised, for whoever ˹constantly˺ turned ˹to Allah˺ and kept up ˹His commandments˺—
4663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             who were in awe of the Most Compassionate without seeing ˹Him˺, and have come with a heart turning ˹only to Him˺.
4664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Enter it in peace. This is the Day of eternal life!"
4665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There they will have whatever they desire, and with Us is ˹even˺ more.
4666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Imagine˺ how many peoples We destroyed before them, who were far mightier than them. Then ˹when the torment came,˺ they ˹desperately˺ sought refuge in the land. ˹But˺ was there any escape?
4667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely in this is a reminder for whoever has a ˹mindful˺ heart and lends an attentive ear.
4668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We created the heavens and the earth and everything in between in six Days,
4669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset.
4670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And glorify Him during part of the night and after the prayers.
4671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And listen! On the Day the caller will call out from a near place,
4672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 the Day all will hear the ˹mighty˺ Blast in ˹all˺ truth, that will be the Day of emergence ˹from the graves˺.
4673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is certainly We Who give life and cause death. And to Us is the final return.
4674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Beware of˺ the Day the earth will split open, letting them rush forth. That will be an easy gathering for Us.
4675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We know best what they say. And you ˹O Prophet˺ are not ˹there˺ to compel them ˹to believe˺. So remind with the Quran ˹only˺ those who fear My warning.
4676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               By the winds scattering ˹dust˺,
4677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and ˹the clouds˺ loaded with rain,
4678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and ˹the ships˺ gliding with ease,
4679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and ˹the angels˺ administering affairs by ˹Allah’s˺ command!
4680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, what you are promised is true.
4681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the Judgment will certainly come to pass.
4682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹And˺ by the heavens in their marvellous design!
4683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely you are ˹lost˺ in conflicting views ˹regarding the truth˺.
4684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Only those ˹destined to be˺ deluded are turned away from it.
4685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Condemned are the liars—
4686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       those who are ˹steeped˺ in ignorance, totally heedless.
4687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They ask ˹mockingly˺, "When is this Day of Judgment?"
4688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹It is˺ the Day they will be tormented over the Fire.
4689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They will be told,˺ "Taste your torment! This is what you sought to hasten."
4690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, the righteous will be amid Gardens and springs,
4691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹joyfully˺ receiving what their Lord will grant them. Before this ˹reward˺ they were truly good-doers ˹in the world˺:
4692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  they used to sleep only little in the night,
4693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and pray for forgiveness before dawn.
4694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And in their wealth there was a rightful share ˹fulfilled˺ for the beggar and the poor.
4695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There are ˹countless˺ signs on earth for those with sure faith,
4696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              as there are within yourselves. Can you not see?
4697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In heaven is your sustenance and whatever you are promised.
4698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then by the Lord of heaven and earth! ˹All˺ this is certainly as true as ˹the fact that˺ you can speak!
4699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Has the story of Abraham’s honoured guests reached you ˹O Prophet˺?
4700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Remember˺ when they entered his presence and greeted ˹him with˺, "Peace!" He replied, "Peace ˹be upon you˺!" ˹Then he said to himself,˺ "˹These are˺ an unfamiliar people."
4701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then he slipped off to his family and brought a fat ˹roasted˺ calf,
4702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and placed it before them, asking, "Will you not eat?"
4703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹They did not eat,˺ so he grew fearful of them.
4704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then his wife came forward with a cry, clasping her forehead ˹in astonishment˺, exclaiming, "˹A baby from˺ a barren, old woman!"
4705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They replied, "Such has your Lord decreed. He is truly the All-Wise, All-Knowing."
4706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Later,˺ Abraham asked, "What is your mission, O  messengers?"
4707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They replied, "We have actually been sent to a wicked people,
4708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     to send upon them stones of ˹baked˺ clay,
4709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   marked by your Lord for the transgressors."
4710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then ˹before the torment˺ We evacuated the believers from the city.
4711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But We only found one family that had submitted ˹to Allah˺.
4712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We have left a sign there ˹as a lesson˺ for those who fear the painful punishment.
4713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in ˹the story of˺ Moses ˹was another lesson,˺ when We sent him to Pharaoh with compelling proof,
4714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       but Pharaoh was carried away by his power, saying ˹of Moses˺, "A magician or a madman!"
4715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So We seized him and his soldiers, casting them into the sea while he was blameworthy.
4716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And in ˹the story of˺ ’ad ˹was another lesson,˺ when We sent against them the devastating wind.
4717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There was nothing it came upon that it did not reduce to ashes.
4718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And in ˹the story of˺ Thamûd ˹was another lesson,˺ when they were told, "Enjoy yourselves ˹only˺ for a ˹short˺ while."
4719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Still they persisted in defying the commands of their Lord, so they were overtaken by a ˹mighty˺ blast while they were looking on.
4720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they were not able to rise up, nor were they helped.
4721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the people of Noah ˹had also been destroyed˺ earlier. They were truly a rebellious people.
4722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We built the universe with ˹great˺ might, and We are certainly expanding ˹it˺.
4723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for the earth, We spread it out. How superbly did We smooth it out!
4724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We created pairs of all things so perhaps you would be mindful.
4725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So ˹proclaim, O  Prophet˺: "Flee to Allah! I am truly sent by Him with a clear warning to you.
4726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And do not set up another god with Allah. I am truly sent by Him with a clear warning to you."
4727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Similarly, no messenger came to those before them without being told: "A magician or a madman!"
4728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have they passed this ˹cliché˺ down to one another? In fact, they have ˹all˺ been a transgressing people.
4729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So ˹now˺ turn away from them ˹O Prophet˺, for you will not be blamed.
4730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But ˹continue to˺ remind. For certainly reminders benefit the believers.
4731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I did not create jinn and humans except to worship Me.
4732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I seek no provision from them, nor do I need them to feed Me.
4733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, Allah ˹alone˺ is the Supreme Provider—Lord of all Power, Ever Mighty.
4734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The wrongdoers will certainly have a share ˹of the torment˺ like that of their predecessors. So do not let them ask Me to hasten ˹it˺.
4735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe then to the disbelievers when they face their Day which they are warned of!
4736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 By Mount Ṭûr!
4737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And by the Book written
4738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              on open pages ˹for all to read˺!
4739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And by the ˹Sacred˺ House frequently visited!
4740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And by the canopy raised ˹high˺!
4741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And by the seas set on fire!
4742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, the punishment of your Lord will come to pass—
4743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           none will avert it—
4744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              on the Day the heavens will be shaken violently,
4745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the mountains will be blown away entirely.
4746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then woe on that Day to the deniers—
4747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    those who amuse themselves with falsehood!
4748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹It is˺ the Day they will be fiercely shoved into the Fire of Hell.
4749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They will be told,˺ "This is the Fire which you used to deny.
4750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is this magic, or do you not see?
4751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Burn in it! It is the same whether you endure ˹it˺ patiently or not. You are only rewarded for what you used to do."
4752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, the righteous will be in Gardens and bliss,
4753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                enjoying whatever their Lord will have granted them. And their Lord will have protected them from the torment of the Hellfire.
4754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They will be told,˺ "Eat and drink happily for what you used to do."
4755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They will be reclining on thrones, ˹neatly˺ lined up ˹facing each other˺. And We will pair them to maidens with gorgeous eyes.
4756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for those who believe and whose descendants follow them in faith, We will elevate their descendants to their rank, never discounting anything ˹of the reward˺ of their deeds. Every person will reap only what they sowed.
4757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We will ˹continually˺ provide them with whatever fruit or meat they desire.
4758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They will pass around to each other a drink ˹of pure wine,˺ which leads to no idle talk or sinfulness.
4759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they will be waited on by their youthful servants like spotless pearls.
4760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will turn to one another inquisitively.
4761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will say, "Before ˹this reward˺ we used to be in awe ˹of Allah˺ in the midst of our people.
4762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Allah has graced us and protected us from the torment of ˹Hell’s˺ scorching heat.
4763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, we used to call upon Him ˹alone˺ before. He is truly the Most Kind, Most Merciful."
4764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So ˹continue to˺ remind ˹all, O  Prophet˺. For you, by the grace of your Lord, are not a fortune-teller or a madman.
4765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or do they say, "˹He is˺ a poet, for whom we ˹eagerly˺ await an ill-fate!"?
4766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, "Keep waiting! I too am waiting with you."
4767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or do their ˹intelligent˺ minds prompt them to this ˹paradox˺? Or are they ˹just˺ a transgressing people?
4768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do they say, "He made this ˹Quran˺ up!"? In fact, they have no faith.
4769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let them then produce something like it, if what they say is true!
4770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or were they created by nothing, or are they ˹their own˺ creators?
4771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or did they create the heavens and the earth? In fact, they have no firm belief ˹in Allah˺.
4772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they possess the treasuries of your Lord, or are they in control ˹of everything˺?
4773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do they have a stairway, by which they eavesdrop ˹on the heavens˺? Then let those who do so bring a compelling proof.
4774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or does He have daughters ˹as you claim˺, while you ˹prefer to˺ have sons?
4775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or are you ˹O Prophet˺ asking them for a reward ˹for the message˺ so that they are overburdened by debt?
4776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?
4777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they intend to scheme ˹against the Prophet˺? Then it is the disbelievers who will fall victim to ˹their˺ schemes.
4778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or do they have a god other than Allah? Glorified is Allah far above what they associate ˹with Him˺!
4779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If they were to see a ˹deadly˺ piece of the sky fall down ˹upon them˺, still they would say, "˹This is just˺ a pile of clouds."
4780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So leave them until they face their Day in which they will be struck dead—
4781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     the Day their scheming will be of no benefit to them whatsoever, nor will they be helped.
4782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Also, the wrongdoers will certainly have another torment before that ˹Day˺, but most of them do not know.
4783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So be patient with your Lord’s decree, for you are truly under Our ˹watchful˺ Eyes. And glorify the praises of your Lord when you rise.
4784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And glorify Him during part of the night and at the fading of the stars.
4785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             By the stars when they fade away!
4786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your fellow man is neither misguided nor astray.
4787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nor does he speak of his own whims.
4788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is only a revelation sent down ˹to him˺.
4789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He has been taught by one ˹angel˺ of mighty power
4790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and great perfection, who once rose to ˹his˺ true form
4791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 while on the highest point above the horizon,
4792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then he approached ˹the Prophet˺, coming so close
4793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          that he was only two arms-lengths away or even less.
4794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then Allah revealed to His servant what He revealed ˹through Gabriel˺.
4795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ˹Prophet’s˺ heart did not doubt what he saw.
4796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How can you ˹O pagans˺ then dispute with him regarding what he saw?
4797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he certainly saw that ˹angel descend˺ a second time
4798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           at the Lote Tree of the most extreme limit ˹in the seventh heaven˺—
4799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              near which is the Garden of ˹Eternal˺ Residence—
4800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               while the Lote Tree was overwhelmed with ˹heavenly˺ splendours!
4801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The ˹Prophet’s˺ sight never wandered, nor did it overreach.
4802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He certainly saw some of his Lord’s greatest signs.
4803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now, have you considered ˹the idols of˺ Lat and ’Uzza,
4804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and the third one, Manat, as well?
4805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you ˹prefer to˺ have sons while ˹you attribute˺ to Him daughters?
4806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then this is ˹truly˺ a biased distribution!
4807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These ˹idols˺ are mere names that you and your forefathers have made up—a practice Allah has never authorized. They follow nothing but ˹inherited˺ assumptions and whatever ˹their˺ souls desire, although ˹true˺ guidance has already come to them from their Lord.
4808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or should every person ˹simply˺ have whatever ˹intercessors˺ they desire?
4809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In fact, to Allah ˹alone˺ belongs this world and the next.
4810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Imagine˺ how many ˹noble˺ angels are in the heavens! ˹Even˺ their intercession would be of no benefit whatsoever, until Allah gives permission to whoever He wills and ˹only for the people He˺ approves.
4811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, those who do not believe in the Hereafter label angels as female,
4812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                although they have no knowledge ˹in support˺ of this. They follow nothing but ˹inherited˺ assumptions. And surely assumptions can in no way replace the truth.
4813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So turn away ˹O Prophet˺ from whoever has shunned Our Reminder, only seeking the ˹fleeting˺ life of this world.
4814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is the extent of their knowledge. Surely your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.
4815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth so that He may reward the evildoers according to what they did, and reward the good-doers with the finest reward—
4816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         those who avoid major sins and shameful deeds, despite ˹stumbling on˺ minor sins. Surely your Lord is infinite in forgiveness. He knew well what would become of you as He created you from the earth So do not ˹falsely˺ elevate yourselves. He knows best who is ˹truly˺ righteous.
4817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have you seen the one who turned away ˹from Islam,˺
4818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and ˹initially˺ paid a little ˹for his salvation˺, and then stopped?
4819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Does he have the knowledge of the unseen so that he sees ˹the Hereafter˺?
4820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or has he not been informed of what is in the Scripture of Moses,
4821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and ˹that of˺ Abraham, who ˹perfectly˺ fulfilled ˹his covenant˺?
4822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They state˺ that no soul burdened with sin will bear the burden of another,
4823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and that each person will only have what they endeavoured towards,
4824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and that ˹the outcome of˺ their endeavours will be seen ˹in their record˺,
4825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then they will be fully rewarded,
4826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and that to your Lord ˹alone˺ is the ultimate return ˹of all things˺.
4827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moreover, He is the One Who brings about joy and sadness.
4828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And He is the One Who gives life and causes death.
4829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And He created the pairs—males and females—
4830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         from a sperm-drop when it is emitted.
4831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it is upon Him to bring about re-creation.
4832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And He is the One Who enriches and impoverishes.
4833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And He alone is the Lord of Sirius.
4834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And He destroyed the first ˹people of˺ ’Ȃd,
4835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and ˹then˺ Thamûd, sparing no one.
4836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And before ˹that He destroyed˺ the people of Noah, who were truly far worse in wrongdoing and transgression.
4837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹it was˺ He ˹Who˺ turned the cities ˹of Sodom and Gomorrah˺ upside down.
4838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How overwhelming was what covered ˹them˺!
4839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now, which of your Lord’s favours will you dispute?
4840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This ˹Prophet˺ is a warner like earlier ones.
4841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The approaching ˹Hour˺ has drawn near.
4842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               None but Allah can disclose it.
4843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do you find this revelation astonishing,
4844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    laughing ˹at it˺ and not weeping ˹in awe˺,
4845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             while persisting in heedlessness?
4846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Instead, prostrate to Allah and worship ˹Him alone˺!
4847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Hour has drawn near and the moon was split ˹in two˺.
4848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Yet, whenever they see a sign, they turn away, saying, "Same old magic!"
4849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They rejected ˹the truth˺ and followed their own desires—and every matter will be settled—
4850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     even though the stories ˹of destroyed nations˺ that have already come to them are a sufficient deterrent.
4851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹This Quran is˺ profound ˹in˺ wisdom, but warnings are of no benefit ˹to them˺.
4852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So turn away from them ˹O Prophet˺. ˹And wait for˺ the Day ˹when˺ the caller
4853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    With eyes downcast, they will come forth from the graves as if they were swarming locusts,
4854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             rushing towards the caller. The disbelievers will cry, "This is a difficult Day!"
4855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Before them, the people of Noah denied ˹the truth˺ and rejected Our servant, calling ˹him˺ insane. And he was intimidated.
4856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So he cried out to his Lord, "I am helpless, so help ˹me˺!"
4857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So We opened the gates of the sky with pouring rain,
4858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and caused the earth to burst with springs, so the waters met for a fate already set.
4859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We carried him on that ˹Ark made˺ of planks and nails,
4860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     sailing under Our ˹watchful˺ Eyes—a ˹fair˺ punishment on behalf of the one ˹they˺ denied.
4861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We certainly left this as a sign. So is there anyone who will be mindful?
4862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then how ˹dreadful˺ were My punishment and warnings!
4863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ’Ȃd ˹also˺ rejected ˹the truth˺. Then how ˹dreadful˺ were My punishment and warnings!
4865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, We sent against them a furious wind, on a day of unrelenting misery,
4866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     that snatched people up, leaving them like trunks of uprooted palm trees.
4867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then how ˹dreadful˺ were My punishment and warnings!
4868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thamûd rejected the warnings ˹as well˺,
4870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             arguing, "How can we follow one ˹average˺ human being from among us? We would then truly be misguided and insane.
4871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Has the revelation been sent down ˹only˺ to him out of ˹all of˺ us? In fact, he is a boastful liar."
4872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It was revealed to salih,˺ "They will soon know who the boastful liar is.
4873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We are sending the she-camel as a test for them. So watch them ˹closely˺, and have patience.
4874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And tell them that the ˹drinking˺ water must be divided between them ˹and her˺, each taking a turn to drink ˹every other day˺."
4875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But they roused a companion of theirs, so he dared to kill ˹her˺.
4876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then how ˹dreadful˺ were My punishment and warnings!
4877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We sent against them ˹only˺ one ˹mighty˺ blast, leaving them like the twigs of fence-builders.
4878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The people of Lot ˹also˺ rejected the warnings.
4880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We unleashed upon them a storm of stones. As for ˹the believers of˺ Lot’s family, We delivered them before dawn
4881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            as a blessing from Us. This is how We reward whoever gives thanks.
4882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He had already warned them of Our ˹crushing˺ blow but they disputed the warnings.
4883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they even demanded his angel-guests from him, so We blinded their eyes. ˹And they were told,˺ "Taste then My punishment and warnings!"
4884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And indeed, by the early morning they were overwhelmed by an unrelenting torment.
4885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Again they were told,˺ "Taste now My punishment and warnings!"
4886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And indeed, the warnings ˹also˺ came to the people of Pharaoh.
4888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹But˺ they rejected all of Our signs, so We seized them with the ˹crushing˺ grip of the Almighty, Most Powerful.
4889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now, are you ˹Meccan˺ disbelievers superior to those ˹destroyed peoples˺? Or have you ˹been granted˺ immunity ˹from punishment˺ in divine Books?
4890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or do they say, "We are all ˹a˺ united ˹front˺, bound to prevail."?
4891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Soon˺ their united front will be defeated and ˹forced to˺ flee.
4892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Better yet, the Hour is their appointed time—and the Hour will be most catastrophic and most bitter.
4893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, the wicked are ˹entrenched˺ in misguidance, and ˹are bound for˺ blazes.
4894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On the Day they will be dragged into the Fire on their faces, ˹they will be told,˺ "Taste the touch of Hell!"
4895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, We have created everything, perfectly preordained.
4896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our command done in the blink of an eye.
4897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have already destroyed the likes of you. So will any ˹of you˺ be mindful?
4898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Everything they have done is ˹listed˺ in ˹their˺ records.
4899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Every matter, small and large, is written ˹precisely˺.
4900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, the righteous will be amid Gardens and rivers,
4901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         at the Seat of Honour in the presence of the Most Powerful Sovereign.
4902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Most Compassionate
4903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             taught the Quran,
4904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             created humanity,
4905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹and˺ taught them speech.
4906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The sun and the moon ˹travel˺ with precision.
4907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The stars and the trees bow down ˹in submission˺.
4908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the sky, He raised it ˹high˺, and set the balance ˹of justice˺
4909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        so that you do not defraud the scales.
4910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Weigh with justice, and do not give short measure.
4911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He laid out the earth for all beings.
4912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In it are fruit, palm trees with date stalks,
4913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and grain with husks, and aromatic plants.
4914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then which of your Lord’s favours will you ˹humans and jinn˺ both deny?
4915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He created humankind from ˹sounding˺ clay like pottery,
4916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and created jinn from a ˹smokeless˺ flame of fire.
4917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹He is˺ Lord of the two easts and the two wests.
4919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He merges the two bodies of ˹fresh and salt˺ water,
4921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               yet between them is a barrier they never cross.
4922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Out of both ˹waters˺ come forth pearls and coral.
4924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To Him belong the ships with raised sails, sailing through the seas like mountains.
4926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Every being on earth is bound to perish.
4928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Only your Lord Himself,
4929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              All those in the heavens and the earth are dependent on Him. Day in and day out He has something to bring about.
4931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We will soon attend to you ˹for judgment˺, O  two multitudes ˹of jinn and humans˺!
4933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O  assembly of jinn and humans! If you can penetrate beyond the realms of the heavens and the earth, then do so. ˹But˺ you cannot do that without ˹Our˺ authority.
4935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flames of fire and ˹molten˺ copper will be sent against you, and you will not be able to defend one another.
4937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹How horrible will it be˺ when the heavens will split apart, becoming rose-red like ˹burnt˺ oil!
4939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On that Day there will be no need for any human or jinn to be asked about their sins.
4941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The wicked will be recognized by their appearance, then will be seized by ˹their˺ forelocks and feet.
4943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹They will be told,˺ "This is the Hell which the wicked denied."
4945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They will alternate between its flames and scalding water.
4946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And whoever is in awe of standing before their Lord will have two Gardens.
4948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Both will be˺ with lush branches.
4950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In each ˹Garden˺ will be two flowing springs.
4952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In each will be two types of every fruit.
4954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those ˹believers˺ will recline on furnishings lined with rich brocade. And the fruit of both Gardens will hang within reach.
4956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In both ˹Gardens˺ will be maidens of modest gaze, who no human or jinn has ever touched before.
4958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those ˹maidens˺ will be ˹as elegant˺ as rubies and coral.
4960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is there any reward for goodness except goodness?
4962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And below these two ˹Gardens˺ will be two others.
4964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Both will be dark green.
4966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In each will be two gushing springs.
4968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In both will be fruit, palm trees, and pomegranates.
4970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In all Gardens will be noble, pleasant mates.
4972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹They will be˺ maidens with gorgeous eyes, reserved in pavilions.
4974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     No human or jinn has ever touched these ˹maidens˺ before.
4976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All ˹believers˺ will be reclining on green cushions and splendid carpets.
4978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then which of your Lord’s favours will you both deny?
4979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blessed is the Name of your Lord, full of Majesty and Honour.
4980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When the Inevitable Event takes place,
4981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then no one can deny it has come.
4982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It will debase ˹some˺ and elevate ˹others˺.
4983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the earth will be violently shaken,
4984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and the mountains will be crushed to pieces,
4985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       becoming scattered ˹particles of˺ dust,
4986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                you will ˹all˺ be ˹divided into˺ three groups:
4987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          the people of the right, how ˹blessed˺ will they be;
4988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         the people of the left, how ˹miserable˺ will they be;
4989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and the foremost ˹in faith˺ will be the foremost ˹in Paradise˺.
4990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They are the ones nearest ˹to Allah˺,
4991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      in the Gardens of Bliss.
4992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹They will be˺ a multitude from earlier generations
4993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and a few from later generations.
4994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹All will be˺ on jewelled thrones,
4995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       reclining face to face.
4996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will be waited on by eternal youths
4997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        with cups, pitchers, and a drink ˹of pure wine˺ from a flowing stream,
4998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       that will cause them neither headache nor intoxication.
4999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹They will also be served˺ any fruit they choose
5000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and meat from any bird they desire.
5001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹they will have˺ maidens with gorgeous eyes,
5002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         like pristine pearls,
5003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹all˺ as a reward for what they used to do.
5004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There they will never hear any idle or sinful talk—
5005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                only good and virtuous speech.
5006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people of the right—how ˹blessed˺ will they be!
5007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹They will be˺ amid thornless lote trees,
5008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          clusters of bananas,
5009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               extended shade,
5010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                flowing water,
5011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               abundant fruit—
5012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            never out of season nor forbidden—
5013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and elevated furnishings.
5014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We will have perfectly created their mates,
5015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          making them virgins,
5016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      loving and of equal age,
5017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  for the people of the right,
5018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹who will be˺ a multitude from earlier generations
5019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and a multitude from later generations.
5020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the people of the left—how ˹miserable˺ will they be!
5021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹They will be˺ in scorching heat and boiling water,
5022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  in the shade of black smoke,
5023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  neither cool nor refreshing.
5024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, before this ˹torment˺ they were spoiled by luxury,
5025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and persisted in the worst of sin.
5026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They used to ask ˹mockingly˺, "When we are dead and reduced to dust and bones, will we really be resurrected?
5027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And our forefathers as well?"
5028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Most certainly, earlier and later generations
5029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     will surely be gathered ˹together˺ for the appointed Day.
5030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then you, O  misguided deniers,
5031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   will certainly eat from ˹the fruit of˺ the trees of Zaqqûm,
5032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            filling up ˹your˺ bellies with it.
5033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then on top of that you will drink boiling water—
5034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and you will drink ˹it˺ like thirsty camels do."
5035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This will be their accommodation on the Day of Judgment.
5036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is We Who created you. Will you not then believe ˹in resurrection˺?
5037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have you considered what you ejaculate?
5038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is it you who create ˹a child out of˺ it, or is it We Who do so?
5039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We have ordained death for ˹all of˺ you, and We cannot be prevented
5040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 from transforming and recreating you in forms unknown to you.
5041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You already know how you were first created. Will you not then be mindful?
5042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Have you considered what you sow?
5043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Is it you who cause it to grow, or is it We Who do so?
5044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If We willed, We could simply reduce this ˹harvest˺ to chaff, leaving you to lament,
5045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "We have truly suffered a ˹great˺ loss.
5046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In fact, we have been deprived ˹of our livelihood˺."
5047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have you considered the water you drink?
5048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Is it you who bring it down from the clouds, or is it We Who do so?
5049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If We willed, We could make it salty. Will you not then give thanks?
5050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have you considered the fire you kindle?
5051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Is it you who produce its trees, or is it We Who do so?
5052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have made it ˹as˺ a reminder ˹of the Hellfire˺ and a provision for the travellers.
5053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So glorify the Name of your Lord, the Greatest.
5054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So I do swear by the positions of the stars—
5055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and this, if only you knew, is indeed a great oath—
5056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             that this is truly a noble Quran,
5057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   in a well-preserved Record,
5058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 touched by none except the purified ˹angels˺.
5059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹It is˺ a revelation from the Lord of all worlds.
5060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How can you then take this message lightly,
5061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and repay ˹Allah for˺ your provisions with denial?
5062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Why then ˹are you helpless˺ when the soul ˹of a dying person˺ reaches ˹their˺ throat,
5063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     while you are looking on?
5064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And We are nearer to such a person than you, but you cannot see.
5065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now, if you are not subject to Our Will ˹as you claim˺,
5066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bring that soul back, if what you say is true.
5067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So, if the deceased is one of those brought near ˹to Us˺,
5068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    then ˹such a person will have˺ serenity, fragrance, and a Garden of Bliss.
5069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if the deceased is one of the people of the right,
5070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    then ˹they will be told,˺ "Greetings to you from the people of the right."
5071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if such person is one of the misguided deniers,
5072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     then their accommodation will be boiling water ˹to drink˺
5073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and burning in Hellfire.
5074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, this is the absolute truth.
5075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So glorify the Name of your Lord, the Greatest.
5076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whatever is in the heavens and the earth glorifies Allah, for He is the Almighty, All-Wise.
5077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To Him belongs the kingdom of the heavens and the earth. He gives life and causes death. And He is Most Capable of everything.
5078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is the First and the Last, the Most High and Most Near, and He has ˹perfect˺ knowledge of all things.
5079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is the One Who created the heavens and the earth in six Days, For Allah is All-Seeing of what you do.
5080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               To Him belongs the kingdom of the heavens and the earth. And to Allah all matters are returned.
5081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He merges the night into day and the day into night. And He knows best what is ˹hidden˺ in the heart.
5082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Believe in Allah and His Messenger, and donate from what He has entrusted you with. So those of you who believe and donate will have a mighty reward.
5083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Why do you not believe in Allah while the Messenger is inviting you to have faith in your Lord, although He has already taken your covenant, if you will ever believe.
5084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is the One Who sends down clear revelations to His servant to bring you out of darkness and into light. For indeed Allah is Ever Gracious and Most Merciful to you.
5085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And why should you not spend in the cause of Allah, while Allah is the ˹sole˺ inheritor of the heavens and the earth? Those of you who donated and fought before the victory ˹over Mecca˺ are unparalleled. They are far greater in rank than those who donated and fought afterwards. Yet Allah has promised each a fine reward. And Allah is All-Aware of what you do.
5086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who is it that will lend to Allah a good loan which Allah will multiply ˹many times over˺ for them, and they will have an honourable reward?
5087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On that Day you will see believing men and women with their light shining ahead of them and on their right. ˹They will be told,˺ "Today you have good news of Gardens, under which rivers flow, ˹for you˺ to stay in forever. This is ˹truly˺ the ultimate triumph."
5088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On that Day hypocrite men and women will beg the believers, "Wait for us so that we may have some of your light." It will be said ˹mockingly˺, "Go back ˹to the world˺ and seek a light ˹there˺!" Then a ˹separating˺ wall with a gate will be erected between them. On the near side will be grace and on the far side will be torment.
5089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The tormented will cry out to those graced, "Were we not with you?" They will reply, "Yes ˹you were˺. But you chose to be tempted ˹by hypocrisy˺, ˹eagerly˺ awaited ˹our demise˺, doubted ˹the truth˺, and were deluded by false hopes until Allah’s decree ˹of your death˺ came to pass. And ˹so˺ the Chief Deceiver deceived you about Allah.
5090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Today no ransom will be accepted from you ˹hypocrites˺, nor from the disbelievers. Your home is the Fire—it is the ˹only˺ fitting place for you. What an evil destination!"
5091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Has the time not yet come for believers’ hearts to be humbled at the remembrance of Allah and what has been revealed of the truth, and not be like those given the Scripture before—˹those˺ who were spoiled for so long that their hearts became hardened. And many of them are ˹still˺ rebellious.
5092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Know that Allah revives the earth after its death. We have certainly made the signs clear for you so perhaps you will understand.
5093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, those men and women who give in charity and lend to Allah a good loan will have it multiplied for them, and they will have an honourable reward.
5094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹As for˺ those who believe in Allah and His messengers, it is they who are ˹truly˺ the people of truth. And the martyrs, with their Lord, will have their reward and their light. But ˹as for˺ those who disbelieve and reject Our signs, it is they who will be the residents of the Hellfire.
5095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Know that this worldly life is no more than play, amusement, luxury, mutual boasting, and competition in wealth and children. This is like rain that causes plants to grow, to the delight of the planters. But later the plants dry up and you see them wither, then they are reduced to chaff. And in the Hereafter there will be either severe punishment or forgiveness and pleasure of Allah, whereas the life of this world is no more than the delusion of enjoyment.
5096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹So˺ compete with one another for forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those who believe in Allah and His messengers. This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.
5097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               No calamity ˹or blessing˺ occurs on earth or in yourselves without being ˹written˺ in a Record before We bring it into being. This is certainly easy for Allah.
5098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹We let you know this˺ so that you neither grieve over what you have missed nor boast over what He has granted you. For Allah does not like whoever is arrogant, boastful—
5099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 those who are stingy and promote stinginess among people. And whoever turns away ˹should know that˺ Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.
5100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We sent Our messengers with clear proofs, and with them We sent down the Scripture and the balance ˹of justice˺ so that people may administer justice. And We sent down iron with its great might, benefits for humanity, and means for Allah to prove who ˹is willing to˺ stand up for Him and His messengers without seeing Him. Surely Allah is All-Powerful, Almighty.
5101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And indeed, We sent Noah and Abraham and reserved prophethood and revelation for their descendants. Some of them are ˹rightly˺ guided, while most are rebellious.
5102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then in the footsteps of these ˹prophets˺, We sent Our messengers, and ˹after them˺ We sent Jesus, son of Mary, and granted him the Gospel, and instilled compassion and mercy into the hearts of his followers. As for monasticism, they made it up—We never ordained it for them—only seeking to please Allah, yet they did not ˹even˺ observe it strictly. So We rewarded those of them who were faithful. But most of them are rebellious.
5103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O people of faith! Fear Allah and believe in His Messenger. ˹And˺ He will grant you a double share of His mercy, provide you with a light to walk in ˹on Judgment Day˺, and forgive you. For Allah is All-Forgiving, Most Merciful.
5104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹This is so˺ that the People of the Book ˹who deny the Prophet˺ may know that they do not have any control over Allah’s grace, and that all grace is in Allah’s Hands. He grants it to whoever He wills. For Allah is the Lord of infinite bounty.
5105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, Allah has heard the argument of the woman who pleaded with you ˹O Prophet˺ concerning her husband, and appealed to Allah. Allah has heard your exchange. Surely Allah is All-Hearing, All-Seeing.
5106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those of you who ˹sinfully˺ divorce their wives by comparing them to their mothers ˹should know that˺ their wives are in no way their mothers. None can be their mothers except those who gave birth to them. What they say is certainly detestable and false. Yet Allah is truly Ever-Pardoning, All-Forgiving.
5107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Those who divorce their wives in this manner, then ˹wish to˺ retract what they said, must free a slave before they touch each other. This ˹penalty˺ is meant to deter you. And Allah is All-Aware of what you do.
5108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if the husband cannot afford this, let him then fast two consecutive months before the couple touch each other. But if he is unable ˹to fast˺, then let him feed sixty poor people. This is to re-affirm your faith in Allah and His Messenger. These are the limits set by Allah. And the disbelievers will suffer a painful punishment.
5109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those who defy Allah and His Messenger will be debased, just like those before them. We have certainly sent down clear revelations. And the disbelievers will suffer a humiliating punishment.
5110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On the Day Allah resurrects them all together, He will then inform them of what they have done. Allah has kept account of it all, while they have forgotten it. For Allah is a Witness over all things.
5111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do you not see that Allah knows whatever is in the heavens and whatever is on the earth? If three converse privately, He is their fourth. If five, He is their sixth. Whether fewer or more, He is with them wherever they may be. Then, on the Day of Judgment, He will inform them of what they have done. Surely Allah has ˹perfect˺ knowledge of all things.
5112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you not seen those who were forbidden from secret talks, yet they ˹always˺ return to what they were forbidden from, conspiring in sin, aggression, and disobedience to the Messenger? And when they come to you ˹O Prophet˺, they greet you not as Allah greets you, and say to one another, "Why does Allah not punish us for what we say?" Hell is enough for them—they will burn in it. And what an evil destination!
5113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O believers! When you converse privately, let it not be for sin, aggression, or disobedience to the Messenger, but let it be for goodness and righteousness. And fear Allah, to Whom you will ˹all˺ be gathered.
5114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Secret talks are only inspired by Satan to grieve the believers. Yet he cannot harm them whatsoever except by Allah’s Will. So in Allah let the believers put their trust.
5115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O believers! When you are told to make room in gatherings, then do so. Allah will make room for you ˹in His grace˺. And if you are told to rise, then do so. Allah will elevate those of you who are faithful, and ˹raise˺ those gifted with knowledge in rank. And Allah is All-Aware of what you do.
5116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! When you consult the Messenger privately, give something in charity before your consultation. That is better and purer for you. But if you lack the means, then Allah is truly All-Forgiving, Most Merciful.
5117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Are you afraid of spending in charity before your private consultations ˹with him˺? Since you are unable to do so, and Allah has turned to you in mercy, then ˹continue to˺ establish prayer, pay alms-tax, and obey Allah and His Messenger. And Allah is All-Aware of what you do.
5118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have you not seen those ˹hypocrites˺ who ally themselves with a people with whom Allah is displeased? They are neither with you nor with them. And they swear to lies knowingly.
5119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah has prepared for them a severe punishment. Evil indeed is what they do.
5120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the cause of Allah. So they will suffer a humiliating punishment.
5121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Neither their wealth nor children will be of any help to them against Allah whatsoever. It is they who will be the residents of the Fire. They will be there forever.
5122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On the Day Allah resurrects them all, they will ˹falsely˺ swear to Him as they swear to you, thinking they have something to stand on. Indeed, it is they who are the ˹total˺ liars.
5123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Satan has taken hold of them, causing them to forget the remembrance of Allah. They are the party of Satan. Surely Satan’s party is bound to lose.
5124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹As for˺ those who defy Allah and His Messenger, they will definitely be among the most debased.
5125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah has decreed, "I and My messengers will certainly prevail." Surely Allah is All-Powerful, Almighty.
5126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You will never find a people who ˹truly˺ believe in Allah and the Last Day loyal to those who defy Allah and His Messenger, even if they were their parents, children, siblings, or extended family. For those ˹believers˺, Allah has instilled faith in their hearts and strengthened them with a spirit from Him. He will admit them into Gardens under which rivers flow, to stay there forever. Allah is pleased with them and they are pleased with Him. They are the party of Allah. Indeed, Allah’s party is bound to succeed.
5127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whatever is in the heavens and whatever is on the earth glorifies Allah. For He is the Almighty, All-Wise.
5128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He is the One Who expelled the disbelievers of the People of the Book from their homes for ˹their˺ first banishment ˹ever˺. You never thought they would go. And they thought their strongholds would put them out of Allah’s reach. But ˹the decree of˺ Allah came upon them from where they never expected. And He cast horror into their hearts so they destroyed their houses with their own hands and the hands of the believers. So take a lesson ˹from this˺, O  people of insight!
5129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Had Allah not decreed exile for them, He would have certainly punished them in this world. And in the Hereafter they will suffer the punishment of the Fire.
5130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is because they defied Allah and His Messenger. And whoever defies Allah, then Allah is truly severe in punishment.
5131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whatever palm trees you ˹believers˺ cut down or left standing intact, it was ˹all˺ by Allah’s Will, so that He might disgrace the rebellious.
5132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for the gains Allah has turned over to His Messenger from them—you did not ˹even˺ spur on any horse or camel for such gains. But Allah gives authority to His messengers over whoever He wills. For Allah is Most Capable of everything.
5133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for gains granted by Allah to His Messenger from the people of ˹other˺ lands, they are for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers so that wealth may not merely circulate among your rich. Whatever the Messenger gives you, take it. And whatever he forbids you from, leave it. And fear Allah. Surely Allah is severe in punishment.
5134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Some of the gains will be˺ for poor emigrants who were driven out of their homes and wealth, seeking Allah’s bounty and pleasure, and standing up for Allah and His Messenger. They are the ones true in faith.
5135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who had settled in the city and ˹embraced˺ the faith before ˹the arrival of˺ the emigrants, they love whoever immigrates to them, never having a desire in their hearts for whatever ˹of the gains˺ is given to the emigrants. They give ˹the emigrants˺ preference over themselves even though they may be in need. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.
5136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And those who come after them will pray, "Our Lord! Forgive us and our fellow believers who preceded us in faith, and do not allow bitterness into our hearts towards those who believe. Our Lord! Indeed, You are Ever Gracious, Most Merciful."
5137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Have you ˹O Prophet˺ not seen the hypocrites who say to their fellow disbelievers from the People of the Book, "If you are expelled, we will certainly leave with you, and We will never obey anyone against you. And if you are fought against, we will surely help you."? But Allah bears witness that they are truly liars.
5138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, if they are expelled, the hypocrites will never leave with them. And if they are fought against, the hypocrites will never help them. And even if the hypocrites did so, they would certainly flee, then the disbelievers would be left with no help.
5139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, there is more fear in their hearts for you ˹believers˺ than for Allah. That is because they are a people who do not comprehend.
5140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Even united, they would not ˹dare˺ fight against you except ˹from˺ within fortified strongholds or from behind walls. Their malice for each other is intense: you think they are united, yet their hearts are divided. That is because they are a people with no ˹real˺ understanding.
5141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They are ˹both just˺ like those who recently went down before them: they tasted the evil consequences of their doings. And they will suffer a painful punishment.
5142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They are˺ like Satan when he lures someone to disbelieve. Then after they have done so, he will say ˹on Judgment Day˺, "I have absolutely nothing to do with you. I truly fear Allah—the Lord of all worlds."
5143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So they will both end up in the Fire, staying there forever. That is the reward of the wrongdoers.
5144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Be mindful of Allah and let every soul look to what ˹deeds˺ it has sent forth for tomorrow. And fear Allah, ˹for˺ certainly Allah is All-Aware of what you do.
5145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And do not be like those who forgot Allah, so He made them forget themselves. It is they who are ˹truly˺ rebellious.
5146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The residents of the Fire cannot be equal to the residents of Paradise. ˹Only˺ the residents of Paradise will be successful.
5147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Had We sent down this Quran upon a mountain, you would have certainly seen it humbled and torn apart in awe of Allah. We set forth such comparisons for people, ˹so˺ perhaps they may reflect.
5148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is Allah—there is no god ˹worthy of worship˺ except Him: Knower of the seen and unseen. He is the Most Compassionate, Most Merciful.
5149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He is Allah—there is no god except Him: the King, the Most Holy, the All-Perfect, the Source of Serenity, the Watcher ˹of all˺, the Almighty, the Supreme in Might, the Majestic. Glorified is Allah far above what they associate with Him ˹in worship˺!
5150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He is Allah: the Creator, the Inventor, the Shaper. He ˹alone˺ has the Most Beautiful Names. Whatever is in the heavens and the earth ˹constantly˺ glorifies Him. And He is the Almighty, All-Wise.
5151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not take My enemies and yours as trusted allies, showing them affection even though they deny what has come to you of the truth. They drove the Messenger and yourselves out ˹of Mecca˺, simply for your belief in Allah, your Lord. If you ˹truly˺ emigrated to struggle in My cause and seek My pleasure, ˹then do not take them as allies,˺ disclosing secrets ˹of the believers˺ to the pagans out of affection for them, when I know best whatever you conceal and whatever you reveal. And whoever of you does this has truly strayed from the Right Way.
5152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If they gain the upper hand over you, they would be your ˹open˺ enemies, unleashing their hands and tongues to harm you, and wishing that you would abandon faith.
5153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Neither your relatives nor children will benefit you on Judgment Day—He will decide between you ˹all˺. For Allah is All-Seeing of what you do.
5154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 You already have an excellent example in Abraham and those with him, when they said to their people, "We totally dissociate ourselves from you and ˹shun˺ whatever ˹idols˺ you worship besides Allah. We reject you. The enmity and hatred that has arisen between us and you will last until you believe in Allah alone." The only exception is when Abraham said to his father, "I will seek forgiveness for you,˹" adding, "but˺ I cannot protect you from Allah at all." ˹The believers prayed,˺ "Our Lord! In You we trust. And to You we ˹always˺ turn. And to You is the final return.
5155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Lord! Do not subject us to the persecution of the disbelievers. Forgive us, our Lord! You ˹alone˺ are truly the Almighty, All-Wise."
5156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       You certainly have an excellent example in them for whoever has hope in Allah and the Last Day. But whoever turns away, then surely Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.
5157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹In time,˺ Allah may bring about goodwill between you and those of them you ˹now˺ hold as enemies. For Allah is Most Capable. And Allah is All-Forgiving, Most Merciful.
5158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah does not forbid you from dealing kindly and fairly with those who have neither fought nor driven you out of your homes. Surely Allah loves those who are fair.
5159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah only forbids you from befriending those who have fought you for ˹your˺ faith, driven you out of your homes, or supported ˹others˺ in doing so. And whoever takes them as friends, then it is they who are the ˹true˺ wrongdoers.
5160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! When the believing women come to you as emigrants, ˹But˺ demand ˹repayment of˺ whatever ˹dowries˺ you had paid, and let the disbelievers do the same. That is the judgment of Allah—He judges between you. And Allah is All-Knowing, All-Wise.
5161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if any of your wives desert you to the disbelievers, and later you take spoils from them, then pay those whose wives have gone, the equivalent of whatever ˹dowry˺ they had paid. And be mindful of Allah, in Whom you believe.
5162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O Prophet! When the believing women come to you, pledging to you that they will neither associate anything with Allah ˹in worship˺, nor steal, nor fornicate, nor kill their children, nor falsely attribute ˹illegitimate˺ children to their husbands, nor disobey you in what is right, then accept their pledge, and ask Allah to forgive them. Surely Allah is All-Forgiving, Most Merciful.
5163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Do not ally yourselves with a people Allah is displeased with. They already have no hope for the Hereafter, just like the disbelievers lying in ˹their˺ graves.
5164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whatever is in the heavens and whatever is on the earth glorifies Allah. For He ˹alone˺ is the Almighty, All-Wise.
5165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Why do you say what you do not do?
5166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How despicable it is in the sight of Allah that you say what you do not do!
5167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely Allah loves those who fight in His cause in ˹solid˺ ranks as if they were one concrete structure.
5168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Remember, O  Prophet,˺ when Moses said to his people, "O my people! Why do you hurt me when you already know I am Allah’s messenger to you?" So when they ˹persistently˺ deviated, Allah caused their hearts to deviate. For Allah does not guide the rebellious people.
5169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹remember˺ when Jesus, son of Mary, said, "O children of Israel! I am truly Allah’s messenger to you, confirming the Torah which came before me, and giving good news of a messenger after me whose name will be Ahmad." Yet when the Prophet came to them with clear proofs, they said, "This is pure magic."
5170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Who does more wrong than the one who fabricates lies about Allah when invited to submit ˹to Him˺? For Allah does not guide the wrongdoing people.
5171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They wish to extinguish Allah’s light with their mouths, but Allah will ˹certainly˺ perfect His light, even to the dismay of the disbelievers.
5172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.
5173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Shall I guide you to an exchange that will save you from a painful punishment?
5174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹It is to˺ have faith in Allah and His Messenger, and strive in the cause of Allah with your wealth and your lives. That is best for you, if only you knew.
5175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He will forgive your sins, and admit you into Gardens under which rivers flow, and ˹house you in˺ splendid homes in the Gardens of Eternity. That is the ultimate triumph.
5176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹He will also give you˺ another favour that you long for: help from Allah and an imminent victory. ˹So˺ give good news ˹O Prophet˺ to the believers.
5177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Stand up for Allah, as Jesus, son of Mary, asked the disciples, "Who will stand up with me for Allah?" The disciples replied, "We will stand up for Allah." Then a group from the Children of Israel believed while another disbelieved. We then supported the believers against their enemies, so they prevailed.
5178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah—the King, the Most Holy, the Almighty, the All-Wise.
5179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He is the One Who raised for the illiterate ˹people˺ a messenger from among themselves—reciting to them His revelations, purifying them, and teaching them the Book and wisdom, for indeed they had previously been clearly astray—
5180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          along with others of them who have not yet joined them ˹in faith˺. For He is the Almighty, All-Wise.
5181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.
5182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The example of those who were entrusted with ˹observing˺ the Torah but failed to do so, is that of a donkey carrying books. How evil is the example of those who reject Allah’s signs! For Allah does not guide the wrongdoing people.
5183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "O Jews! If you claim to be Allah’s chosen ˹people˺ out of all humanity, then wish for death, if what you say is true."
5184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.
5185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, "The death you are running away from will inevitably come to you. Then you will be returned to the Knower of the seen and unseen, and He will inform you of what you used to do."
5186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! When the call to prayer is made on Friday, then proceed ˹diligently˺ to the remembrance of Allah and leave off ˹your˺ business. That is best for you, if only you knew.
5187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Once the prayer is over, disperse throughout the land and seek the bounty of Allah. And remember Allah often so you may be successful.
5188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When they saw the fanfare along with the caravan, they ˹almost all˺ flocked to it, leaving you ˹O Prophet˺ standing ˹on the pulpit˺. Say, "What is with Allah is far better than amusement and merchandise. And Allah is the Best Provider."
5189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the hypocrites come to you ˹O Prophet˺, they say, "We bear witness that you are certainly the Messenger of Allah"—and surely Allah knows that you are His Messenger—but Allah bears witness that the hypocrites are truly liars.
5190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the Way of Allah. Evil indeed is what they do!
5191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is because they believed and then abandoned faith. Therefore, their hearts have been sealed, so they do not comprehend.
5192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When you see them, their appearance impresses you. And when they speak, you listen to their ˹impressive˺ speech. But they are ˹just˺ like ˹worthless˺ planks of wood leaned ˹against a wall˺. They think every cry is against them. They are the enemy, so beware of them. May Allah condemn them! How can they be deluded ˹from the truth˺?
5193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When it is said to them, "Come! The Messenger of Allah will pray for you to be forgiven," they turn their heads ˹in disgust˺, and you see them ˹O Prophet˺ turn away in arrogance.
5194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is the same whether you pray for their forgiveness or not, Allah will not forgive them. Surely Allah does not guide the rebellious people.
5195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They are the ones who say ˹to one another˺, "Do not spend ˹anything˺ on those ˹emigrants˺ with the Messenger of Allah so that they will break away ˹from him˺." But to Allah ˹alone˺ belong the treasuries of the heavens and the earth, yet the hypocrites do not comprehend.
5196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They say, "If we return to Medina, the honourable will definitely expel the inferior." But all honour and power belongs to Allah, His Messenger, and the believers, yet the hypocrites do not know.
5197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! Do not let your wealth or your children divert you from the remembrance of Allah. For whoever does so, it is they who are the ˹true˺ losers.
5198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And donate from what We have provided for you before death comes to one of you, and you cry, "My Lord! If only You delayed me for a short while, I would give in charity and be one of the righteous."
5199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But Allah never delays a soul when its appointed time comes. And Allah is All-Aware of what you do.
5200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah. The kingdom is His, and all praise is for Him. For He is Most Capable of everything.
5201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who created you, yet some of you are disbelievers while some are believers. And Allah is All-Seeing of what you do.
5202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He created the heavens and the earth for a purpose. He shaped you ˹in the womb˺, perfecting your form. And to Him is the final return.
5203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He knows whatever is in the heavens and the earth. And He knows whatever you conceal and whatever you reveal. For Allah knows best what is ˹hidden˺ in the heart.
5204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have the stories of those who disbelieved before not reached you ˹pagans˺? They tasted the evil consequences of their doings, and they will suffer a painful punishment.
5205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That was because their messengers used to come to them with clear proofs, but they said ˹mockingly˺, "How can humans be our guides?" So they persisted in disbelief and turned away. And Allah was not in need ˹of their faith˺. For Allah is Self-Sufficient, Praiseworthy.
5206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The disbelievers claim they will not be resurrected. Say, ˹O Prophet,˺ "Yes, by my Lord, you will surely be resurrected, then you will certainly be informed of what you have done. And that is easy for Allah."
5207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So believe in Allah and His Messenger and in the Light We have revealed. And Allah is All-Aware of what you do.
5208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Consider˺ the Day He will gather you ˹all˺ for the Day of Gathering—that will be the Day of mutual loss and gain. So whoever believes in Allah and does good, He will absolve them of their sins and admit them into Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.
5209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those who disbelieve and reject Our revelations, they will be the residents of the Fire, staying there forever. What an evil destination!
5210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               No calamity befalls ˹anyone˺ except by Allah’s Will. And whoever has faith in Allah, He will ˹rightly˺ guide their hearts ˹through adversity˺. And Allah has ˹perfect˺ knowledge of all things.
5211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Obey Allah and obey the Messenger! But if you turn away, then Our Messenger’s duty is only to deliver ˹the message˺ clearly.
5212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah—there is no god ˹worthy of worship˺ except Him. So in Allah let the believers put their trust.
5213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! Indeed, some of your spouses and children are enemies to you, so beware of them. But if you pardon, overlook, and forgive ˹their faults˺, then Allah is truly All-Forgiving, Most Merciful.
5214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your wealth and children are only a test, but Allah ˹alone˺ has a great reward.
5215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So be mindful of Allah to the best of your ability, hear and obey, and spend in charity—that will be best for you. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.
5216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you lend to Allah a good loan, He will multiply it for you and forgive you. For Allah is Most Appreciative, Most Forbearing.
5217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹He is the˺ Knower of the seen and unseen—the Almighty, All-Wise.
5218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Prophet! ˹Instruct the believers:˺ When you ˹intend to˺ divorce women, then divorce them with concern for their waiting period,
5219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then when they have ˹almost˺ reached the end of their waiting period, either retain them honourably or separate from them honourably. And call two of your reliable men to witness ˹either way˺—and ˹let the witnesses˺ bear true testimony for ˹the sake of˺ Allah. This is enjoined on whoever has faith in Allah and the Last Day. And whoever is mindful of Allah, He will make a way out for them,
5220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and provide for them from sources they could never imagine. And whoever puts their trust in Allah, then He ˹alone˺ is sufficient for them. Certainly Allah achieves His Will. Allah has already set a destiny for everything.
5221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for your women past the age of menstruation, in case you do not know, their waiting period is three months, and those who have not menstruated as well. As for those who are pregnant, their waiting period ends with delivery. And whoever is mindful of Allah, He will make their matters easy for them.
5222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is the commandment of Allah, which He has revealed to you. And whoever is mindful of Allah, He will absolve them of their sins and reward them immensely.
5223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let them live where you live ˹during their waiting period˺, according to your means. And do not harass them to make their stay unbearable. If they are pregnant, then maintain them until they deliver. And if they nurse your child, compensate them, and consult together courteously. But if you fail to reach an agreement, then another woman will nurse ˹the child˺ for the father.
5224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let the man of wealth provide according to his means. As for the one with limited resources, let him provide according to whatever Allah has given him. Allah does not require of any soul beyond what He has given it. After hardship, Allah will bring about ease.
5225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Imagine˺ how many societies rebelled against the commandments of their Lord and His messengers, so We called each ˹society˺ to a severe account and subjected them to a horrible punishment.
5226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So they tasted the evil consequences of their doings, and the outcome of their doings was ˹total˺ loss.
5227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Allah has ˹also˺ prepared for them a severe punishment. So fear Allah, O  people of reason and faith. Allah has indeed revealed to you a Reminder,
5228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹and sent˺ a messenger reciting to you Allah’s revelations, making things clear so that He may bring those who believe and do good out of darkness and into light. And whoever believes in Allah and does good will be admitted by Him into Gardens under which rivers flow, to stay there for ever and ever. Allah will have indeed granted them an excellent provision.
5229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah is the One Who created seven heavens ˹in layers˺, and likewise for the earth. The ˹divine˺ command descends between them so you may know that Allah is Most Capable of everything and that Allah certainly encompasses all things in ˹His˺ knowledge.
5230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O Prophet! Why do you prohibit ˹yourself˺ from what Allah has made lawful to you, seeking to please your wives? And Allah is All-Forgiving, Most Merciful.
5231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah has already ordained for you ˹believers˺ the way to absolve yourselves from your oaths. For Allah is your Guardian. And He is the All-Knowing, All-Wise.
5232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Remember˺ when the Prophet had ˹once˺ confided something to one of his wives, then when she disclosed it ˹to another wife˺ and Allah made it known to him, he presented ˹to her˺ part of what was disclosed and overlooked a part. So when he informed her of it, she exclaimed, "Who told you this?" He replied, "I was informed by the All-Knowing, All-Aware."
5233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹It will be better˺ if you ˹wives˺ both turn to Allah in repentance, for your hearts have certainly faltered. But if you ˹continue to˺ collaborate against him, then ˹know that˺ Allah Himself is his Guardian. And Gabriel, the righteous believers, and the angels are ˹all˺ his supporters as well.
5234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Perhaps, if he were to divorce you ˹all˺, his Lord would replace you with better wives who are submissive ˹to Allah˺, faithful ˹to Him˺, devout, repentant, dedicated to worship and fasting—previously married or virgins.
5235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Protect yourselves and your families from a Fire whose fuel is people and stones, overseen by formidable and severe angels, who never disobey whatever Allah orders—always doing as commanded.
5236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹The deniers will then be told,˺ "O disbelievers! Make no excuses this Day! You are only rewarded for what you used to do."
5237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! Turn to Allah in sincere repentance, so your Lord may absolve you of your sins and admit you into Gardens, under which rivers flow, on the Day Allah will not disgrace the Prophet or the believers with him. Their light will shine ahead of them and on their right. They will say, "Our Lord! Perfect our light for us, and forgive us. ˹For˺ You are truly Most Capable of everything."
5238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!
5239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah sets forth an example for the disbelievers: the wife of Noah and the wife of Lot. Each was married to one of Our righteous servants, yet betrayed them. So their husbands were of no benefit to them against Allah whatsoever. Both were told, "Enter the Fire, along with the others!"
5240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Allah sets forth an example for the believers: the wife of Pharaoh, who prayed, "My Lord! Build me a house in Paradise near You, deliver me from Pharaoh and his ˹evil˺ doing, and save me from the wrongdoing people."
5241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹There is˺ also ˹the example of˺ Mary, the daughter of ’Imran, who guarded her chastity, so We breathed into her ˹womb˺ through Our angel ˹Gabriel˺. She testified to the words of her Lord and His Scriptures, and was one of the ˹sincerely˺ devout.
5242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Blessed is the One in Whose Hands rests all authority. And He is Most Capable of everything.
5243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹He is the One˺ Who created death and life in order to test which of you is best in deeds. And He is the Almighty, All-Forgiving.
5244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹He is the One˺ Who created seven heavens, one above the other. You will never see any imperfection in the creation of the Most Compassionate. So look again: do you see any flaws?
5245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then look again and again—your sight will return frustrated and weary.
5246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And indeed, We adorned the lowest heaven with ˹stars like˺ lamps, and made them ˹as missiles˺ for stoning ˹eavesdropping˺ devils, for whom We have also prepared the torment of the Blaze.
5247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who disbelieve in their Lord will suffer the punishment of Hell. What an evil destination!
5248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When they are tossed into it, they will hear its roaring as it boils over,
5249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       almost bursting in fury. Every time a group is cast into it, its keepers will ask them, "Did a warner not come to you?"
5250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will reply, "Yes, a warner did come to us, but we denied and said, ‘Allah has revealed nothing. You are extremely astray.’"
5251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they will lament, "If only we had listened and reasoned, we would not be among the residents of the Blaze!"
5252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so they will confess their sins. So away with the residents of the Blaze!
5253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, those in awe of their Lord without seeing Him will have forgiveness and a mighty reward.
5254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whether you speak secretly or openly—He surely knows best what is ˹hidden˺ in the heart.
5255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How could He not know His Own creation? For He ˹alone˺ is the Most Subtle, All-Aware.
5256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He is the One Who smoothed out the earth for you, so move about in its regions and eat from His provisions. And to Him is the resurrection ˹of all˺.
5257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do you feel secure that the One Who is in heaven will not cause the earth to swallow you up as it quakes violently?
5258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do you feel secure that the One Who is in heaven will not unleash upon you a storm of stones. Only then would you know how ˹serious˺ My warning was!
5259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And certainly those before them denied ˹as well˺, then how severe was My response!
5260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have they not seen the birds above them, spreading and folding their wings? None holds them up except the Most Compassionate. Indeed, He is All-Seeing of everything.
5261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Also, which ˹powerless˺ force will come to your help instead of the Most Compassionate? Indeed, the disbelievers are only ˹lost˺ in delusion.
5262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or who is it that will provide for you if He withholds His provision? In fact, they persist in arrogance and aversion ˹to the truth˺.
5263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Who is ˹rightly˺ guided: the one who crawls facedown or the one who walks upright on the Straight Path?
5264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "He is the One Who brought you into being and gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks."
5265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Also˺ say, "He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered."
5266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Still˺ they ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
5267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "That knowledge is with Allah alone, and I am only sent with a clear warning."
5268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then when they see the torment drawing near, the faces of the disbelievers will become gloomy, and it will be said ˹to them˺, "This is what you claimed would never come."
5269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Consider this: whether Allah causes me and those with me to die or shows us mercy, who will save the disbelievers from a painful punishment?"
5270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "He is the Most Compassionate—in Him ˹alone˺ we believe, and in Him ˹alone˺ we trust. You will soon know who is clearly astray."
5271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, "Consider this: if your water were to sink ˹into the earth˺, then who ˹else˺ could bring you flowing water?"
5272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nũn. By the pen and what everyone writes!
5273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    By the grace of your Lord, you ˹O Prophet˺ are not insane.
5274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You will certainly have a never-ending reward.
5275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And you are truly ˹a man˺ of outstanding character.
5276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Soon you and the pagans will see,
5277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          which of you is mad.
5278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.
5279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So do not give in to the deniers.
5280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They wish you would compromise so they would yield ˹to you˺.
5281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And do not obey the despicable, vain oath-taker,
5282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     slanderer, gossip-monger,
5283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   withholder of good, transgressor, evildoer,
5284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          brute, and—on top of all that—an illegitimate child.
5285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now, ˹simply˺ because he has been blessed with ˹abundant˺ wealth and children,
5286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       whenever Our revelations are recited to him, he says, "Ancient fables!"
5287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We will soon mark his snout.
5288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, We have tested those ˹Meccans˺ as We tested the owners of the garden—when they swore they would surely harvest ˹all˺ its fruit in the early morning,
5289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          leaving no thought for Allah’s Will.
5290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then it was struck by a torment from your Lord while they slept,
5291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   so it was reduced to ashes.
5292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then by daybreak they called out to each other,
5293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹saying,˺ "Go early to your harvest, if you want to pick ˹all˺ the fruit."
5294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they went off, whispering to one another,
5295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         "Do not let any poor person enter your garden today."
5296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they proceeded early, totally fixated on their purpose.
5297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But when they saw it ˹devastated˺, they cried, "We must have lost ˹our˺ way!
5298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In fact, we have been deprived ˹of our livelihood˺."
5299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The most sensible of them said, "Did I not urge you to say, ‘Allah willing.’?"
5300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They replied, "Glory be to our Lord! We have truly been wrongdoers."
5301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then they turned on each other, throwing blame.
5302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They said, "Woe to us! We have certainly been transgressors.
5303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We trust our Lord will give us a better garden than this, ˹for˺ we are indeed turning to our Lord with hope."
5304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That is the ˹way of Our˺ punishment ˹in this world˺. But the punishment of the Hereafter is certainly far worse, if only they knew.
5305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, the righteous will have the Gardens of Bliss with their Lord.
5306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Should We then treat those who have submitted like the wicked?
5307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What is the matter with you? How do you judge?
5308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or do you have a scripture, in which you read
5309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       that you will have whatever you choose?
5310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or do you have oaths binding on Us until the Day of Judgment that you will have whatever you decide?
5311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ask them ˹O Prophet˺ which of them can guarantee all that.
5312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or do they have associate-gods ˹supporting this claim˺? Then let them bring forth their associate-gods, if what they say is true.
5313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Beware of˺ the Day the Shin ˹of Allah˺ will be bared, and the wicked will be asked to prostrate, but they will not be able to do so,
5314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            with eyes downcast, totally covered with disgrace. For they were ˹always˺ called to prostrate ˹in the world˺ when they were fully capable ˹but they chose not to˺.
5315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So leave to Me ˹O Prophet˺ those who reject this message. We will gradually draw them to destruction in ways they cannot comprehend.
5316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I ˹only˺ delay their end for a while, but My planning is flawless.
5317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or are you asking them for a reward ˹for the message˺ so that they are overburdened by debt?
5318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?
5319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So be patient with your Lord’s decree, and do not be like ˹Jonah,˺ the Man of the Whale, who cried out ˹to Allah˺, in total distress.
5320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had he not been shown grace by his Lord, he would have certainly been cast onto the open ˹shore˺, still blameworthy.
5321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then his Lord chose him, making him one of the righteous.
5322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The disbelievers would almost cut you down with their eyes when they hear ˹you recite˺ the Reminder, and say, "He is certainly a madman."
5323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But it is simply a reminder to the whole world.
5324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Inevitable Hour!
5325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What is the Inevitable Hour?
5326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And what will make you realize what the Inevitable Hour is?
5327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Both˺ Thamûd and ’Ȃd denied the Striking Disaster.
5328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for Thamûd, they were destroyed by an overwhelming blast.
5329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And as for ’Ȃd, they were destroyed by a furious, bitter wind
5330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 which Allah unleashed on them non-stop for seven nights and eight days, so that you would have seen its people lying dead like trunks of uprooted palm trees.
5331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do you see any of them left alive?
5332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Also, Pharaoh and those before him, and ˹the people of˺ the overturned cities ˹of Lot˺ indulged in sin,
5333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               each disobeying their Lord’s messenger, so He seized them with a crushing grip.
5334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, when the floodwater had overflowed, We carried you in the floating Ark ˹with Noah˺,
5335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             so that We may make this a reminder to you, and that attentive ears may grasp it.
5336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       At last, when the Trumpet will be blown with one blast,
5337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the earth and mountains will be lifted up and crushed with one blow,
5338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      on that Day the Inevitable Event will have come to pass.
5339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sky will then be so torn that it will be frail,
5340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 with the angels on its sides. On that Day eight ˹mighty angels˺ will bear the Throne of your Lord above them.
5341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You will then be presented ˹before Him for judgment˺, and none of your secrets will stay hidden.
5342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those given their records in their right hand, they will cry ˹happily˺, "Here ˹everyone˺! Read my record!
5343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I surely knew I would face my reckoning."
5344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will be in a life of bliss,
5345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        in an elevated Garden,
5346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           whose fruit will hang within reach.
5347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹They will be told,˺ "Eat and drink joyfully for what you did in the days gone by."
5348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And as for those given their record in their left hand, they will cry ˹bitterly˺, "I wish I had not been given my record,
5349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           nor known anything of my reckoning!
5350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I wish death was the end!
5351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               My wealth has not benefited me!
5352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      My authority has been stripped from me."
5353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹It will be said,˺ "Seize and shackle them,
5354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       then burn them in Hell,
5355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               then tie them up with chains seventy arms long.
5356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For they never had faith in Allah, the Greatest,
5357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       nor encouraged the feeding of the poor.
5358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So this Day they will have no close friend here,
5359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             nor any food except ˹oozing˺ pus,
5360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    which none will eat except the evildoers."
5361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now, I do swear by whatever you see,
5362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and whatever you cannot see!
5363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, this ˹Quran˺ is the recitation of a noble Messenger.
5364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is not the prose of a poet ˹as you claim˺, ˹yet˺ you hardly have any faith.
5365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nor is it the mumbling of a fortune-teller, ˹yet˺ you are hardly mindful.
5366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹It is˺ a revelation from the Lord of all worlds.
5367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had the Messenger made up something in Our Name,
5368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We would have certainly seized him by his right hand,
5369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       then severed his aorta,
5370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and none of you could have shielded him ˹from Us˺!
5371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, this ˹Quran˺ is a reminder to those mindful ˹of Allah˺.
5372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We certainly know that some of you will persist in denial,
5373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and it will surely be a source of regret for the disbelievers.
5374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And indeed, this ˹Quran˺ is the absolute truth.
5375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So glorify the Name of your Lord, the Greatest.
5376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A challenger has demanded a punishment bound to come
5377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   for the disbelievers—to be averted by none—
5378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            from Allah, Lord of pathways of ˹heavenly˺ ascent,
5379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹through which˺ the angels and the ˹holy˺ spirit
5380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So endure ˹this denial, O  Prophet,˺ with beautiful patience.
5381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They truly see this ˹Day˺ as impossible,
5382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  but We see it as inevitable.
5383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On that Day the sky will be like molten brass
5384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and the mountains like ˹tufts of˺ wool.
5385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And no close friend will ask ˹about˺ their friends,
5386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹although˺ they will be made to see each other. The wicked will wish to ransom themselves from the punishment of that Day by their children,
5387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                their spouses, their siblings,
5388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               their clan that sheltered them,
5389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and everyone on earth altogether, just to save themselves.
5390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! There will certainly be a raging Flame
5391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ripping off scalps.
5392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It will summon whoever turned their backs ˹on Allah˺ and turned away ˹from the truth˺,
5393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and gathered and hoarded ˹wealth˺.
5394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, humankind was created impatient:
5395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            distressed when touched with evil,
5396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and withholding when touched with good—
5397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        except those who pray,
5398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        consistently performing their prayers;
5399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and who give the rightful share of their wealth
5400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   to the beggar and the poor;
5401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and who ˹firmly˺ believe in the Day of Judgment;
5402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and those who fear the punishment of their Lord—
5403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹knowing that˺ none should feel secure from their Lord’s punishment—
5404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and those who guard their chastity
5405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,
5406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          but whoever seeks beyond that are the transgressors.
5407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹The faithful are˺ also those who are true to their trusts and covenants;
5408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and who are honest in their testimony;
5409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and who are ˹properly˺ observant of their prayers.
5410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These will be in Gardens, held in honour.
5411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So what is the matter with the disbelievers that they rush ˹head-long˺ towards you ˹O Prophet˺,
5412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         from the right and the left, in groups ˹to mock you˺?
5413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Does every one of them expect to be admitted into a Garden of Bliss?
5414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! Indeed, they ˹already˺ know what We created them from.
5415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So, I do swear by the Lord of ˹all˺ the points of sunrise and sunset that We are truly capable
5416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 of replacing them with ˹others˺ better than them, and We cannot be prevented ˹from doing so˺.
5417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been threatened with—
5418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               the Day they will come forth from the graves swiftly, as if racing to an idol ˹for a blessing˺,
5419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         with eyes downcast, utterly covered with disgrace. That is the Day they have ˹always˺ been warned of.
5420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We sent Noah to his people ˹saying to him˺, "Warn your people before a painful punishment comes to them."
5421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Noah proclaimed, "O my people! I am truly sent to you with a clear warning:
5422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 worship Allah ˹alone˺, fear Him, and obey me.
5423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He will forgive your sins, and delay your end until the appointed time. Indeed, when the time set by Allah comes, it cannot be delayed, if only you knew!"
5424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He cried, "My Lord! I have surely called my people day and night,
5425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 but my calls only made them run farther away.
5426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And whenever I invite them to be forgiven by You, they press their fingers into their ears, cover themselves with their clothes, persist ˹in denial˺, and act very arrogantly.
5427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then I certainly called them openly,
5428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then I surely preached to them publicly and privately,
5429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saying, ‘Seek your Lord’s forgiveness, ˹for˺ He is truly Most Forgiving.
5430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He will shower you with abundant rain,
5431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  supply you with wealth and children, and give you gardens as well as rivers.
5432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What is the matter with you that you are not in awe of the Majesty of Allah,
5433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         when He truly created you in stages ˹of development˺?
5434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you not see how Allah created seven heavens, one above the other,
5435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         placing the moon within them as a ˹reflected˺ light, and the sun as a ˹radiant˺ lamp?
5436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah ˹alone˺ caused you to grow from the earth like a plant.
5437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then He will return you to it, and then simply bring you forth ˹again˺.
5438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Allah ˹alone˺ spread out the earth for you
5439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to walk along its spacious pathways.’"
5440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Eventually,˺ Noah cried, "My Lord! They have certainly persisted in disobeying me, and followed ˹instead˺ those ˹elite˺ whose ˹abundant˺ wealth and children only increase them in loss,
5441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and who have devised a tremendous plot,
5442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       urging ˹their followers˺, ‘Do not abandon your idols—especially Wadd, Suwa’, Yaghûth, Ya’ûq, and Nasr.’
5443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those ˹elite˺ have already led many astray. So ˹O Lord˺, only allow the wrongdoers to stray farther away."
5444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So because of their sins, they were drowned, then admitted into the Fire. And they found none to help them against Allah.
5445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Noah had prayed, "My Lord! Do not leave a single disbeliever on earth.
5446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For if You spare ˹any of˺ them, they will certainly mislead Your servants, and give birth only to ˹wicked˺ sinners, staunch disbelievers.
5447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My Lord! Forgive me, my parents, and whoever enters my house in faith, and ˹all˺ believing men and women. And increase the wrongdoers only in destruction."
5448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "It has been revealed to me that a group of jinn listened ˹to the Quran,˺ and said ˹to their fellow jinn˺: ‘Indeed, we have heard a wondrous recitation.
5449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It leads to Right Guidance so we believed in it, and we will never associate anyone with our Lord ˹in worship˺.
5450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Now, we believe that˺ our Lord—Exalted is His Majesty—has neither taken a mate nor offspring,
5451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and that the foolish of us used to utter ˹outrageous˺ falsehoods about Allah.
5452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We certainly thought that humans and jinn would never speak lies about Allah.
5453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And some men used to seek refuge with some jinn—so they increased each other in wickedness.
5454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And those ˹humans˺ thought, just like you ˹jinn˺, that Allah would not resurrect anyone ˹for judgment˺.
5455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Earlier˺ we tried to reach heaven ˹for news˺, only to find it filled with stern guards and shooting stars.
5456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We used to take up positions there for eavesdropping, but whoever dares eavesdrop now will find a flare lying in wait for them.
5457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, we have no clue whether evil is intended for those on earth, or their Lord intends for them what is right.
5458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Among us are those who are righteous and those who are less so. We have been of different factions.
5459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Now,˺ we truly know that we cannot frustrate Allah on earth, nor can we escape from Him ˹into heaven˺.
5460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When we heard the guidance ˹of the Quran˺, we ˹readily˺ believed in it. For whoever believes in their Lord will have no fear of being denied ˹a reward˺ or wronged.
5461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And among us are those who have submitted ˹to Allah˺ and those who are deviant. So ˹as for˺ those who submitted, it is they who have attained Right Guidance.
5462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as for the deviant, they will be fuel for Hell.’"
5463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had the deniers followed the Right Way, We would have certainly granted them abundant rain to drink—
5464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        as a test for them. And whoever turns away from the remembrance of their Lord will be admitted by Him into an overwhelming punishment.
5465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The places of worship are ˹only˺ for Allah, so do not invoke anyone besides Him.
5466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet when the servant of Allah stood up calling upon Him ˹alone˺, the pagans almost swarmed over him.
5467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "I call only upon my Lord, associating none with Him ˹in worship˺."
5468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "It is not in my power to harm or benefit you."
5469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, "No one can protect me from Allah ˹if I were to disobey Him˺, nor can I find any refuge other than Him.
5470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹My duty is˺ only to convey ˹the truth˺ from Allah and ˹deliver˺ His messages." And whoever disobeys Allah and His Messenger will certainly be in the Fire of Hell, to stay there for ever and ever.
5471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Only when they see what they have been threatened with will they know who is weaker in helpers and inferior in manpower.
5472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "I do not know if what you are promised is near or my Lord has set a distant time for it.
5473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹He is the˺ Knower of the unseen, disclosing none of it to anyone,
5474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         except messengers of His choice. Then He appoints angel-guards before and behind them
5475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            to ensure that the messengers fully deliver the messages of their Lord—though He ˹already˺ knows all about them, and keeps account of everything."
5476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O you wrapped ˹in your clothes˺!
5477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stand all night ˹in prayer˺ except a little—
5478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹pray˺ half the night, or a little less,
5479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           or a little more—and recite the Quran ˹properly˺ in a measured way.
5480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹For˺ We will soon send upon you a weighty revelation.
5481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, worship in the night is more impactful and suitable for recitation.
5482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For during the day you are over-occupied ˹with worldly duties˺.
5483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Always˺ remember the Name of your Lord, and devote yourself to Him wholeheartedly.
5484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹He is the˺ Lord of the east and the west. There is no god ˹worthy of worship˺ except Him, so take Him ˹alone˺ as a Trustee of Affairs.
5485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Be patient ˹O Prophet˺ with what they say, and depart from them courteously.
5486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And leave to Me the deniers—the people of luxury—and bear with them for a little while.
5487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹For˺ We certainly have shackles, a ˹raging˺ Fire,
5488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    choking food, and a painful punishment ˹in store for them˺
5489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         on the Day the earth and mountains will shake ˹violently˺, and mountains will be ˹reduced to˺ dunes of shifting sand.
5490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We have sent to you a messenger as a witness over you, just as We sent a messenger to Pharaoh.
5491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But Pharaoh disobeyed the messenger, so We seized him with a stern grip.
5492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you ˹pagans˺ persist in disbelief, then how will you guard yourselves against ˹the horrors of˺ a Day which will turn children’s hair grey?
5493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It will ˹even˺ cause the sky to split apart. His promise ˹of judgment˺ must be fulfilled.
5494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.
5495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely your Lord knows that you ˹O Prophet˺ stand ˹in prayer˺ for nearly two-thirds of the night, or ˹sometimes˺ half of it, or a third, as do some of those with you. Allah ˹alone˺ keeps a ˹precise˺ measure of the day and night. He knows that you ˹believers˺ are unable to endure this, and has turned to you in mercy. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful.
5496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O you covered up ˹in your clothes˺!
5497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Arise and warn ˹all˺.
5498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Revere your Lord ˹alone˺.
5499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Purify your garments.
5500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Continue to˺ shun idols.
5501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do not do a favour expecting more ˹in return˺.
5502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And persevere for ˹the sake of˺ your Lord.
5503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹For˺ when the Trumpet will be sounded,
5504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         that will ˹truly˺ be a difficult Day—
5505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           far from easy for the disbelievers.
5506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And leave to me ˹O Prophet˺ the one I created all by Myself,
5507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and granted him abundant wealth,
5508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and children always by his side,
5509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and made life very easy for him.
5510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet he is hungry for more.
5511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! ˹For˺ he has been truly stubborn with Our revelations.
5512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I will make his fate unbearable,
5513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         for he contemplated and determined ˹a degrading label for the Quran˺.
5514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         May he be condemned! How evil was what he determined!
5515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               May he be condemned even more! How evil was what he determined!
5516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then he re-contemplated ˹in frustration˺,
5517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     then frowned and scowled,
5518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     then turned his back ˹on the truth˺ and acted arrogantly,
5519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 saying, "This ˹Quran˺ is nothing but magic from the ancients.
5520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is no more than the word of a man."
5521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Soon I will burn him in Hell!
5522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And what will make you realize what Hell is?
5523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It does not let anyone live or die,
5524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           scorching the skin.
5525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is overseen by nineteen ˹keepers˺.
5526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We have appointed only ˹stern˺ angels as wardens of the Fire. And We have made their number only as a test for the disbelievers, so that the People of the Book will be certain, and the believers will increase in faith, and neither the People of the Book nor the believers will have any doubts, and so that those ˹hypocrites˺ with sickness in their hearts and the disbelievers will argue, "What does Allah mean by such a number?" In this way Allah leaves whoever He wills to stray and guides whoever He wills. And none knows the forces of your Lord except He. And this ˹description of Hell˺ is only a reminder to humanity.
5527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But no! By the moon,
5528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the night as it retreats,
5529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and the day as it breaks!
5530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely Hell is one of the mightiest catastrophes—
5531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       a warning to humankind,
5532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   to whichever of you chooses to take the lead or lag behind.
5533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Every soul will be detained for what it has done,
5534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               except the people of the right,
5535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who will be in Gardens, asking one another
5536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    about the wicked ˹who will then be asked˺:
5537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "What has landed you in Hell?"
5538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will reply, "We were not of those who prayed,
5539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     nor did we feed the poor.
5540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We used to indulge ˹in falsehood˺ along with others,
5541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and deny the Day of Judgment,
5542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             until the inevitable came to us."
5543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So the pleas of intercessors will be of no benefit to them.
5544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, what is the matter with them that they are turning away from the reminder,
5545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                as if they were spooked zebras
5546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fleeing from a lion?
5547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In fact, each one of them wishes to be given a ˹personal˺ letter ˹from Allah˺ for all ˹to read˺.
5548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But no! In fact, they do not fear the Hereafter.
5549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Enough! Surely this ˹Quran˺ is a reminder.
5550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So let whoever wills be mindful of it.
5551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But they cannot do so unless Allah wills. He ˹alone˺ is worthy to be feared and entitled to forgive.
5552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do swear by the Day of Judgment!
5553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I do swear by the self-reproaching soul!
5554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do people think We cannot reassemble their bones?
5555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yes ˹indeed˺! We are ˹most˺ capable of restoring ˹even˺ their very fingertips.
5556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Still people want to deny what is yet to come,
5557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           asking ˹mockingly˺, "When is this Day of Judgment?"
5558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But when the sight is stunned,
5559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and the moon is dimmed,
5560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the sun and the moon are brought together,
5561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              on that Day one will cry, "Where is the escape?"
5562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But no! There will be no refuge.
5563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On that Day all will end up before your Lord.
5564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All will then be informed of what they have sent forth and left behind.
5565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In fact, people will testify against their own souls,
5566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        despite the excuses they come up with.
5567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not rush your tongue trying to memorize ˹a revelation of˺ the Quran.
5568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is certainly upon Us to ˹make you˺ memorize and recite it.
5569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So once We have recited a revelation ˹through Gabriel˺, follow its recitation ˹closely˺.
5570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then it is surely upon Us to make it clear ˹to you˺.
5571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! In fact, you love this fleeting world,
5572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and neglect the Hereafter.
5573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On that Day ˹some˺ faces will be bright,
5574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        looking at their Lord.
5575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹other˺ faces will be gloomy,
5576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            anticipating something devastating to befall them.
5577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But no! ˹Beware of the day˺ when the soul reaches the collar bone ˹as it leaves˺,
5578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and it will be said, "Is there any healer ˹who can save this life˺?"
5579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the dying person realizes it is ˹their˺ time to depart,
5580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and ˹then˺ their feet are tied together ˹in a shroud˺.
5581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On that day they will be driven to your Lord ˹alone˺.
5582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This denier neither believed nor prayed,
5583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      but persisted in denial and turned away,
5584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            then went to their own people, walking boastfully.
5585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Woe to you, and more woe!
5586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Again, woe to you, and even more woe!
5587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do people think they will be left without purpose?
5588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Were they not ˹once˺ a sperm-drop emitted?
5589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then they became a clinging clot ˹of blood˺, then He developed and perfected their form,
5590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                producing from it both sexes, male and female.
5591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Is such ˹a Creator˺ unable to bring the dead back to life?
5592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Is there not a period of time when each human is nothing yet worth mentioning?
5593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹For˺ indeed, We ˹alone˺ created humans from a drop of mixed fluids, ˹in order˺ to test them, so We made them hear and see.
5594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We already showed them the Way, whether they ˹choose to˺ be grateful or ungrateful.
5595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We have prepared for the disbelievers chains, shackles, and a blazing Fire.
5596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, the virtuous will have a drink ˹of pure wine˺—flavoured with camphor—
5597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹from˺ a spring where Allah’s servants will drink, flowing at their will.
5598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They ˹are those who˺ fulfil ˹their˺ vows and fear a Day of sweeping horror,
5599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and give food—despite their desire for it—to the poor, the orphan, and the captive,
5600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹saying to themselves,˺ "We feed you only for the sake of Allah, seeking neither reward nor thanks from you.
5601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We fear from our Lord a horribly distressful Day."
5602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Allah will deliver them from the horror of that Day, and grant them radiance and joy,
5603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and reward them for their perseverance with a Garden ˹in Paradise˺ and ˹garments of˺ silk.
5604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There they will be reclining on ˹canopied˺ couches, never seeing scorching heat or bitter cold.
5605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Garden’s shade will be right above them, and its fruit will be made very easy to reach.
5606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will be waited on with silver vessels and cups of crystal—
5607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              crystalline silver, filled precisely as desired.
5608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they will be given a drink ˹of pure wine˺ flavoured with ginger
5609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         from a spring there, called Salsabil.
5610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They will be waited on by eternal youths. If you saw them, you would think they were scattered pearls.
5611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if you looked around, you would see ˹indescribable˺ bliss and a vast kingdom.
5612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The virtuous will be ˹dressed˺ in garments of fine green silk and rich brocade, and adorned with bracelets of silver, and their Lord will give them a purifying drink.
5613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹And they will be told,˺ "All this is surely a reward for you. Your striving has been appreciated."
5614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, it is We Who have revealed the Quran to you ˹O Prophet˺ in stages.
5615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So be patient with your Lord’s decree, and do not yield to any evildoer or ˹staunch˺ disbeliever from among them.
5616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Always˺ remember the Name of your Lord morning and evening,
5617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and prostrate before Him during part of the night,
5618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely those ˹pagans˺ love this fleeting world, ˹totally˺ neglecting a weighty Day ahead of them.
5619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is We Who created them and perfected their ˹physical˺ form. But if We will, We can easily replace them with others.
5620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.
5621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But you cannot will ˹to do so˺ unless Allah wills. Indeed, Allah is All-Knowing, All-Wise.
5622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He admits whoever He wills into His mercy. As for the wrongdoers, He has prepared for them a painful punishment
5623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     By those ˹winds˺ sent forth successively,
5624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and those blowing violently,
5625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and those scattering ˹rainclouds˺ widely!
5626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹by˺ those ˹angels˺ fully distinguishing ˹truth from falsehood˺,
5627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and those delivering revelation,
5628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ending excuses and giving warnings.
5629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely, what you are promised will come to pass.
5630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So when the stars are put out,
5631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and the sky is torn apart,
5632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and the mountains are blown away,
5633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and the messengers’ time ˹to testify˺ comes up—
5634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          for which Day has all this been set?
5635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the Day of ˹Final˺ Decision!
5636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And what will make you realize what the Day of Decision is?
5637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Did We not destroy earlier disbelievers?
5639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We will make the later disbelievers follow them.
5640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is how We deal with the wicked.
5641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Did We not create you from a humble fluid,
5643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  placing it in a secure place
5644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      until an appointed time?
5645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We ˹perfectly˺ ordained ˹its development˺. How excellent are We in doing so!
5646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have We not made the earth a lodging
5648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  for the living and the dead,
5649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and placed upon it towering, firm mountains, and given you fresh water to drink?
5650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹The disbelievers will be told,˺ "Proceed into that ˹Fire˺ which you used to deny!
5652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Proceed into the shade ˹of smoke˺ which rises in three columns,
5653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       providing neither coolness nor shelter from the flames.
5654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, it hurls sparks ˹as big˺ as huge castles,
5655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and ˹as dark˺ as black camels."
5656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On that Day they will not ˹be in a position to˺ speak,
5658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nor will they be permitted to offer excuses.
5659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹They will be told by Allah,˺ "This is the Day of ˹Final˺ Decision: We have gathered you along with earlier disbelievers ˹for punishment˺.
5661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So if you have a scheme ˹to save yourselves˺, then use it against Me."
5662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, the righteous will be amid ˹cool˺ shade and springs
5664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and any fruit they desire.
5665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They will be told,˺ "Eat and drink happily for what you used to do."
5666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely this is how We reward the good-doers.
5667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹But˺ woe on that Day to the deniers!
5668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "Eat and enjoy yourselves for a little while, ˹for˺ you are truly wicked."
5669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When it is said to them, "Bow down ˹before Allah," they do not bow.
5671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers!
5672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So what message after this ˹Quran˺ would they believe in?
5673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What are they asking one another about?
5674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     About the momentous news,
5675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     over which they disagree.
5676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But no! They will come to know.
5677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Again, no! They will come to know.
5678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have We not smoothed out the earth ˹like a bed˺,
5679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and ˹made˺ the mountains as ˹its˺ pegs,
5680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and created you in pairs,
5681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and made your sleep for rest,
5682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and made the night as a cover,
5683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and made the day for livelihood,
5684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and built above you seven mighty ˹heavens˺,
5685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and placed ˹in them˺ a shining lamp,
5686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and sent down from rainclouds pouring water,
5687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   producing by it grain and ˹various˺ plants,
5688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and dense orchards?
5689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, the Day of ˹Final˺ Decision is an appointed time—
5690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹it is˺ the Day the Trumpet will be blown, and you will ˹all˺ come forth in crowds.
5691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sky will be ˹split˺ open, becoming ˹many˺ gates,
5692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and the mountains will be blown away, becoming ˹like˺ a mirage.
5693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, Hell is lying in ambush
5694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              as a home for the transgressors,
5695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    where they will remain for ˹endless˺ ages.
5696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There they will not taste any coolness or drink,
5697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        except boiling water and ˹oozing˺ pus—
5698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             a fitting reward.
5699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For they never expected any reckoning,
5700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and totally rejected Our signs.
5701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We have everything recorded precisely.
5702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹So the deniers will be told,˺ "Taste ˹the punishment˺, for all you will get from Us is more torment."
5703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, the righteous will have salvation—
5704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Gardens, vineyards,
5705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and full-bosomed maidens of equal age,
5706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and full cups ˹of pure wine˺,
5707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 never to hear any idle talk or lying therein—
5708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         a ˹fitting˺ reward as a generous gift from your Lord,
5709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        the Lord of the heavens and the earth and everything in between, the Most Compassionate. No one will dare speak to Him
5710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          on the Day the ˹holy˺ spirit and the angels will stand in ranks. None will talk, except those granted permission by the Most Compassionate and whose words are true.
5711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That Day is the ˹ultimate˺ truth. So let whoever wills take the path leading back to their Lord.
5712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We have warned you of an imminent punishment—the Day every person will see ˹the consequences of˺ what their hands have done, and the disbelievers will cry, "I wish I were dust."
5713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         By those ˹angels˺ stripping out ˹evil souls˺ harshly,
5714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and those pulling out ˹good souls˺ gently,
5715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and those gliding ˹through heavens˺ swiftly,
5716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and those taking the lead vigorously,
5717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and those conducting affairs ˹obediently˺!
5718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Consider˺ the Day ˹when˺ the quaking Blast will come to pass,
5719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   followed by a second Blast.
5720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹The deniers’˺ hearts on that Day will be trembling ˹in horror˺,
5721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     with their eyes downcast.
5722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹But now˺ they ask ˹mockingly˺, "Will we really be restored to our former state,
5723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            even after we have been reduced to decayed bones?"
5724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Adding, "Then such a return would be a ˹total˺ loss ˹for us˺!"
5725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But indeed, it will take only one ˹mighty˺ Blast,
5726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and at once they will be above ground.
5727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Has the story of Moses reached you ˹O Prophet˺?
5728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             His Lord called him in the sacred valley of Ṭuwa,
5729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹commanding,˺ "Go to Pharaoh, for he has truly transgressed ˹all bounds˺.
5730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And say, ‘Would you ˹be willing to˺ purify yourself,
5731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and let me guide you to your Lord so that you will be in awe ˹of Him˺?’"
5732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Moses showed him the great sign,
5733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          but he denied and disobeyed ˹Allah˺,
5734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           then turned his back, striving ˹against the truth˺.
5735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then he summoned ˹his people˺ and called out,
5736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saying, "I am your lord, the most high!"
5737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Allah overtook him, making him an example in this life and the next.
5738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely in this is a lesson for whoever stands in awe of ˹Allah˺.
5739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Which is harder to create: you or the sky? He built it,
5740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    raising it high and forming it flawlessly.
5741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He dimmed its night, and brought forth its daylight.
5742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for the earth, He spread it out as well,
5743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         bringing forth its water and pastures
5744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and setting the mountains firmly ˹upon it˺—
5745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      all as ˹a means of˺ sustenance for you and your animals.
5746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But, when the Supreme Disaster comes to pass—
5747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the Day every person will remember all ˹their˺ striving,
5748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and the Hellfire will be displayed for all to see—
5749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            then as for those who transgressed
5750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and preferred the ˹fleeting˺ life of this world,
5751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  the Hellfire will certainly be ˹their˺ home.
5752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And as for those who were in awe of standing before their Lord and restrained themselves from ˹evil˺ desires,
5753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Paradise will certainly be ˹their˺ home.
5754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They ask you ˹O Prophet˺ regarding the Hour, "When will it be?"
5755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But it is not for you to tell its time.
5756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That knowledge rests with your Lord ˹alone˺.
5757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Your duty is only to warn whoever is in awe of it.
5758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              On the Day they see it, it will be as if they had stayed ˹in the world˺ no more than one evening or its morning.
5759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He frowned and turned ˹his attention˺ away,
5760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹simply˺ because the blind man came to him ˹interrupting˺.
5761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       You never know ˹O Prophet˺, perhaps he may be purified,
5762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          or he may be mindful, benefitting from the reminder.
5763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for the one who was indifferent,
5764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      you gave him your ˹undivided˺ attention,
5765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 even though you are not to blame if he would not be purified.
5766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But as for the one who came to you, eager ˹to learn˺,
5767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      being in awe ˹of Allah˺,
5768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  you were inattentive to him.
5769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! This ˹revelation˺ is truly a reminder.
5770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So let whoever wills be mindful of it.
5771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It is ˹written˺ on pages held in honour—
5772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    highly esteemed, purified—
5773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                by the hands of angel-scribes,
5774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      honourable and virtuous.
5775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Condemned are ˹disbelieving˺ humans! How ungrateful they are ˹to Allah˺!
5776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From what substance did He create them?
5777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He created them from a sperm-drop, and ordained their development.
5778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then He makes the way easy for them,
5779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then causes them to die and be buried.
5780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then when He wills, He will resurrect them.
5781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But no! They have failed to comply with what He ordered.
5782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let people then consider their food:
5783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            how We pour down rain in abundance
5784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and meticulously split the earth open ˹for sprouts˺,
5785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  causing grain to grow in it,
5786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 as well as grapes and greens,
5787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and olives and palm trees,
5788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and dense orchards,
5789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and fruit and fodder—
5790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      all as ˹a means of˺ sustenance for you and your animals.
5791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then, when the Deafening Blast comes to pass—
5792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   on that Day every person will flee from their own siblings,
5793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and ˹even˺ their mother and father,
5794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and ˹even˺ their spouse and children.
5795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For then everyone will have enough concern of their own.
5796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On that Day ˹some˺ faces will be bright,
5797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       laughing and rejoicing,
5798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            while ˹other˺ faces will be dusty,
5799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                cast in gloom—
5800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             those are the disbelievers, the ˹wicked˺ sinners.
5801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the sun is put out,
5802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and when the stars fall down,
5803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and when the mountains are blown away,
5804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and when pregnant camels are left untended,
5805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and when wild beasts are gathered together,
5806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and when the seas are set on fire,
5807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and when the souls ˹and their bodies˺ are paired ˹once more˺,
5808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and when baby girls, buried alive, are asked
5809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        for what crime they were put to death,
5810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and when the records ˹of deeds˺ are laid open,
5811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and when the sky is stripped away,
5812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and when the Hellfire is fiercely flared up,
5813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and when Paradise is brought near—
5814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹on that Day˺ each soul will know what ˹deeds˺ it has brought along.
5815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I do swear by the receding stars
5816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        which travel and hide,
5817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and the night as it falls
5818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and the day as it breaks!
5819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, this ˹Quran˺ is the Word of ˹Allah delivered by Gabriel,˺ a noble messenger-angel,
5820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      full of power, held in honour by the Lord of the Throne,
5821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    obeyed there ˹in heaven˺, and trustworthy.
5822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And your fellow man is not insane.
5823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did see that ˹angel˺ on the clear horizon,
5824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and he does not withhold ˹what is revealed to him of˺ the unseen.
5825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And this ˹Quran˺ is not the word of an outcast devil.
5826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So what ˹other˺ path would you take?
5827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely this ˹Quran˺ is only a reminder to the whole world—
5828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             to whoever of you wills to take the Straight Way.
5829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But you cannot will ˹to do so˺, except by the Will of Allah, the Lord of all worlds.
5830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When the sky splits open,
5831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and when the stars fall away,
5832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and when the seas burst forth,
5833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and when the graves spill out,
5834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹then˺ each soul will know what it has sent forth or left behind.
5835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O humanity! What has emboldened you against your Lord, the Most Generous,
5836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who created you, fashioned you, and perfected your design,
5837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      moulding you in whatever form He willed?
5838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But no! In fact, you deny the ˹final˺ Judgment,
5839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 while you are certainly observed by vigilant,
5840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    honourable angels, recording ˹everything˺.
5841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They know whatever you do.
5842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, the virtuous will be in bliss,
5843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and the wicked will be in Hell,
5844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                burning in it on Judgment Day,
5845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and they will have no escape from it.
5846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What will make you realize what Judgment Day is?
5847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Again, what will make you realize what Judgment Day is?
5848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹It is˺ the Day no soul will be of ˹any˺ benefit to another whatsoever, for all authority on that Day belongs to Allah ˹entirely˺.
5849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Woe to the defrauders!
5850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Those who take full measure ˹when they buy˺ from people,
5851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          but give less when they measure or weigh for buyers.
5852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do such people not think that they will be resurrected
5853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         for a tremendous Day—
5854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                the Day ˹all˺ people will stand before the Lord of all worlds?
5855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But no! The wicked are certainly bound for Sijjin ˹in the depths of Hell˺—
5856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and what will make you realize what Sijjin is?—
5857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      a fate ˹already˺ sealed.
5858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe on that Day to the deniers—
5859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  those who deny Judgment Day!
5860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       None would deny it except every evildoing transgressor.
5861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whenever Our revelations are recited to them, they say, "Ancient fables!"
5862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But no! In fact, their hearts have been stained by all ˹the evil˺ they used to commit!
5863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Undoubtedly, they will be sealed off from their Lord on that Day.
5864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moreover, they will surely burn in Hell,
5865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and then be told, "This is what you used to deny."
5866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But no! The virtuous are certainly bound for ’Illiyûn ˹in elevated Gardens˺—
5867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and what will make you realize what ’Illiyûn is?—
5868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      a fate ˹already˺ sealed,
5869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        witnessed by those nearest ˹to Allah˺.
5870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely the virtuous will be in bliss,
5871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹seated˺ on ˹canopied˺ couches, gazing around.
5872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You will recognize on their faces the glow of delight.
5873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will be given a drink of sealed, pure wine,
5874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      whose last sip will smell like musk. So let whoever aspires to this strive ˹diligently˺.
5875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this drink’s flavour will come from Tasnim—
5876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      a spring from which those nearest ˹to Allah˺ will drink.
5877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, the wicked used to laugh at the believers,
5878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  wink to one another whenever they passed by,
5879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and muse ˹over these exploits˺ upon returning to their own people.
5880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when they saw the faithful, they would say, "These ˹people˺ are truly astray,"
5881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 even though they were not sent as keepers over the believers.
5882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But on that Day the believers will be laughing at the disbelievers,
5883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                as they sit on ˹canopied˺ couches, looking on.
5884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹The believers will be asked,˺ "Have the disbelievers ˹not˺ been paid back for what they used to do?"
5885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When the sky bursts open,
5886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  obeying its Lord as it must,
5887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and when the earth is flattened out,
5888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and ejects ˹all˺ its contents and becomes empty,
5889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 obeying its Lord as it must, ˹surely you will all be judged˺.
5890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O humanity! Indeed, you are labouring restlessly towards your Lord, and will ˹eventually˺ meet the consequences.
5891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who are given their record in their right hand,
5892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             they will have an easy reckoning,
5893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and will return to their people joyfully.
5894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And as for those who are given their record ˹in their left hand˺ from behind their backs,
5895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      they will cry for ˹instant˺ destruction,
5896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and will burn in the blazing Fire.
5897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For they used to be prideful among their people,
5898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  thinking they would never return ˹to Allah˺.
5899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yes ˹they would˺! Surely their Lord has always been All-Seeing of them.
5900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So, I do swear by the twilight!
5901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And by the night and whatever it envelops!
5902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And by the moon when it waxes full!
5903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You will certainly pass from one state to another.
5904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So what is the matter with them that they do not believe,
5905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and when the Quran is recited to them, they do not bow down ˹in submission˺?
5906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In fact, the disbelievers persist in denial.
5907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But Allah knows best whatever they hide.
5908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So give them good news of a painful punishment.
5909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But those who believe and do good will have a never-ending reward.
5910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            By the sky full of constellations,
5911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and the promised Day ˹of Judgment˺,
5912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and the witness and what is witnessed!
5913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Condemned are the makers of the ditch—
5914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             the fire ˹pit˺, filled with fuel—
5915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      when they sat around it,
5916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 watching what they had ˹ordered to be˺ done to the believers,
5917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who they resented for no reason other than belief in Allah—the Almighty, the Praiseworthy—
5918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹the One˺ to Whom belongs the kingdom of the heavens and earth. And Allah is a Witness over all things.
5919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who persecute the believing men and women and then do not repent will certainly suffer the punishment of Hell and the torment of burning.
5920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely those who believe and do good will have Gardens under which rivers flow. That is the greatest triumph.
5921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, the ˹crushing˺ grip of your Lord is severe.
5922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹For˺ He is certainly the One Who originates and resurrects ˹all˺.
5923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And He is the All-Forgiving, All-Loving—
5924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lord of the Throne, the All-Glorious,
5925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doer of whatever He wills.
5926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Has the story of the ˹destroyed˺ forces reached you ˹O Prophet˺—
5927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹the forces of˺ Pharaoh and Thamûd?
5928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Yet the disbelievers ˹still˺ persist in denial.
5929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But Allah encompasses them from all sides.
5930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In fact, this is a glorious Quran,
5931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹recorded˺ in a Preserved Tablet.
5932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           By the heaven and the nightly star!
5933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And what will make you realize what the nightly star is?
5934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It is˺ the star of piercing brightness.
5935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             There is no soul without a vigilant angel ˹recording everything˺.
5936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let people then consider what they were created from!
5937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹They were˺ created from a spurting fluid,
5938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           stemming from between the backbone and the ribcage.
5939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely He is fully capable of bringing them back ˹to life˺
5940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     on the Day all secrets will be disclosed.
5941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then one will have neither power nor ˹any˺ helper.
5942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         By the sky with its recurring cycles,
5943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the earth with its sprouting plants!
5944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely this ˹Quran˺ is a decisive word,
5945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and is not to be taken lightly.
5946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They are certainly devising ˹evil˺ plans,
5947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        but I too am planning.
5948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So bear with the disbelievers ˹O Prophet˺. Let them be for ˹just˺ a little while.
5949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Glorify the Name of your Lord, the Most High,
5950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who created and ˹perfectly˺ fashioned ˹all˺,
5951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and Who ordained precisely and inspired accordingly,
5952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and Who brings forth ˹green˺ pasture,
5953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            then reduces it to withered chaff.
5954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We will have you recite ˹the Quran, O  Prophet,˺ so you will not forget ˹any of it˺,
5955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                unless Allah wills otherwise. He surely knows what is open and what is hidden.
5956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We will facilitate for you the Way of Ease.
5957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So ˹always˺ remind ˹with the Quran˺—˹even˺ if the reminder is beneficial ˹only to some˺.
5958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those in awe ˹of Allah˺ will be mindful ˹of it˺.
5959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But it will be shunned by the most wretched,
5960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           who will burn in the greatest Fire,
5961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 where they will not ˹be able to˺ live or die.
5962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Successful indeed are those who purify themselves,
5963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    remember the Name of their Lord, and pray.
5964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But you ˹deniers only˺ prefer the life of this world,
5965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     even though the Hereafter is far better and more lasting.
5966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is certainly ˹mentioned˺ in the earlier Scriptures—
5967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          the Scriptures of Abraham and Moses.
5968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Has the news of the Overwhelming Event reached you ˹O Prophet˺?
5969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    On that Day ˹some˺ faces will be downcast,
5970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹totally˺ overburdened, exhausted,
5971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  burning in a scorching Fire,
5972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         left to drink from a scalding spring.
5973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They will have no food except a foul, thorny shrub,
5974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     neither nourishing nor satisfying hunger.
5975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On that Day ˹other˺ faces will be glowing with bliss,
5976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹fully˺ pleased with their striving,
5977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        in an elevated Garden,
5978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             where no idle talk will be heard.
5979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In it will be a running spring,
5980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               along with thrones raised high,
5981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and cups set at hand,
5982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and ˹fine˺ cushions lined up,
5983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and ˹splendid˺ carpets spread out.
5984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do they not ever reflect on camels—how they were ˹masterfully˺ created;
5985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and the sky—how it was raised ˹high˺;
5986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the mountains—how they were firmly set up;
5987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and the earth—how it was levelled out?
5988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So, ˹continue to˺ remind ˹all, O  Prophet˺, for your duty is only to remind.
5989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You are not ˹there˺ to compel them ˹to believe˺.
5990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But whoever turns away, persisting in disbelief,
5991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       then Allah will inflict upon them the major punishment.
5992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely to Us is their return,
5993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       then surely with Us is their reckoning.
5994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  By the dawn,
5995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and the ten nights,
5996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and the even and the odd,
5997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the night when it passes!
5998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Is all this ˹not˺ a sufficient oath for those who have sense?
5999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Did you not see how your Lord dealt with ’Ȃd—
6000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹the people˺ of Iram—with ˹their˺ great stature,
6001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unmatched in any other land;
6002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and Thamûd who carved ˹their homes into˺ the rocks in the ˹Stone˺ Valley;
6003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and the Pharaoh of mighty structures?
6004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They all transgressed throughout the land,
6005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              spreading much corruption there.
6006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So your Lord unleashed on them a scourge of punishment.
6007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹For˺ your Lord is truly vigilant.
6008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, whenever a human being is tested by their Lord through ˹His˺ generosity and blessings, they boast, "My Lord has ˹deservedly˺ honoured me!"
6009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But when He tests them by limiting their provision, they protest, "My Lord has ˹undeservedly˺ humiliated me!"
6010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Absolutely not! In fact, you are not ˹even˺ gracious to the orphan,
6011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 nor do you urge one another to feed the poor.
6012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And you devour ˹others’˺ inheritance greedily,
6013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and love wealth fervently.
6014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Enough! When the earth is entirely crushed over and over,
6015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and your Lord comes ˹to judge˺ with angels, rank upon rank,
6016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and Hell is brought forth on that Day—this is when every ˹disbelieving˺ person will remember ˹their own sins˺. But what is the use of remembering then?
6017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will cry, "I wish I had sent forth ˹something good˺ for my ˹true˺ life."
6018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    On that Day He will punish ˹them˺ severely, like no other,
6019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and bind ˹them˺ tightly, like no other.
6020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Allah will say to the righteous,˺ "O tranquil soul!
6021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return to your Lord, well pleased ˹with Him˺ and well pleasing ˹to Him˺.
6022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So join My servants,
6023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and enter My Paradise."
6024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I do swear by this city ˹of Mecca˺—
6025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                even though you ˹O Prophet˺ are subject to abuse in this city—
6026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and by every parent and ˹their˺ child!
6027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We have created humankind in ˹constant˺ struggle.
6028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do they think that no one has power over them,
6029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   boasting, "I have wasted enormous wealth!"?
6030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do they think that no one sees them?
6031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have We not given them two eyes,
6032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       a tongue, and two lips;
6033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and shown them the two ways ˹of right and wrong˺?
6034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If only they had attempted the challenging path ˹of goodness instead˺!
6035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And what will make you realize what ˹attempting˺ the challenging path is?
6036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is to free a slave,
6037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or to give food in times of famine
6038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       to an orphaned relative
6039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              or to a poor person in distress,
6040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and—above all—to be one of those who have faith and urge each other to perseverance and urge each other to compassion.
6041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the people of the right.
6042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for those who deny Our signs, they are the people of the left.
6043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Fire will be sealed over them.
6044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                By the sun and its brightness,
6045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the moon as it follows it,
6046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the day as it unveils it,
6047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and the night as it conceals it!
6048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And by heaven and ˹the One˺ Who built it,
6049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and the earth and ˹the One˺ Who spread it!
6050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And by the soul and ˹the One˺ Who fashioned it,
6051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     then with ˹the knowledge of˺ right and wrong inspired it!
6052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Successful indeed is the one who purifies their soul,
6053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and doomed is the one who corrupts it!
6054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thamûd rejected ˹the truth˺ out of arrogance,
6055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              when the most wicked of them was roused ˹to kill the she-camel˺.
6056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the messenger of Allah warned them, "˹Do not disturb˺ Allah’s camel and her ˹turn to˺ drink!"
6057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Still they defied him and slaughtered her. So their Lord crushed them for their crime, levelling all to the ground.
6058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He has no fear of consequences.
6059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  By the night when it covers,
6060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and the day when it shines!
6061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And by ˹the One˺ Who created male and female!
6062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely the ends you strive for are diverse.
6063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the one who is charitable, mindful ˹of Allah˺,
6064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and ˹firmly˺ believes in the finest reward,
6065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We will facilitate for them the Way of Ease.
6066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And as for the one who is stingy, indifferent ˹to Allah˺,
6067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and ˹staunchly˺ denies the finest reward,
6068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We will facilitate for them the path of hardship.
6069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And their wealth will be of no benefit to them when they tumble ˹into Hell˺.
6070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is certainly upon Us ˹alone˺ to show ˹the way to˺ guidance.
6071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And surely to Us ˹alone˺ belong this life and the next.
6072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And so I have warned you of a raging Fire,
6073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             in which none will burn except the most wretched—
6074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       who deny and turn away.
6075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the righteous will be spared from it—
6076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who donate ˹some of˺ their wealth only to purify themselves,
6077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          not in return for someone’s favours,
6078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        but seeking the pleasure of their Lord, the Most High.
6079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will certainly be pleased.
6080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By the morning sunlight,
6081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and the night when it falls still!
6082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your Lord ˹O Prophet˺ has not abandoned you, nor has He become hateful ˹of you˺.
6083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the next life is certainly far better for you than this one.
6084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹surely˺ your Lord will give so much to you that you will be pleased.
6085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Did He not find you as an orphan then sheltered you?
6086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Did He not find you unguided then guided you?
6087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And did He not find you needy then satisfied your needs?
6088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So do not oppress the orphan,
6089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       nor repulse the beggar.
6090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And proclaim the blessings of your Lord.
6091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have We not uplifted your heart for you ˹O Prophet˺,
6092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    relieved you of the burden
6093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        which weighed so heavily on your back,
6094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and elevated your renown for you?
6095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So, surely with hardship comes ease.
6096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely with ˹that˺ hardship comes ˹more˺ ease.
6097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So once you have fulfilled ˹your duty˺, strive ˹in devotion˺,
6098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       turning to your Lord ˹alone˺ with hope.
6099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By the fig and the olive ˹of Jerusalem˺,
6100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and Mount Sinai,
6101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and this secure city ˹of Mecca˺!
6102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, We created humans in the best form.
6103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But We will reduce them to the lowest of the low ˹in Hell˺,
6104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    except those who believe and do good—they will have a never-ending reward.
6105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now, what makes you deny the ˹final˺ Judgment?
6106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Is Allah not the most just of all judges?
6107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Read, ˹O Prophet,˺ in the Name of your Lord Who created—
6108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          created humans from a clinging clot.
6109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Read! And your Lord is the Most Generous,
6110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Who taught by the pen—
6111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           taught humanity what they knew not.
6112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Most certainly, one exceeds all bounds
6113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     once they think they are self-sufficient.
6114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹But˺ surely to your Lord is the return ˹of all˺.
6115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have you seen the man who prevents
6116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             a servant ˹of Ours˺ from praying?
6117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What if this ˹servant˺ is ˹rightly˺ guided,
6118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  or encourages righteousness?
6119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         What if that ˹man˺ persists in denial and turns away?
6120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Does he not know that Allah sees ˹all˺?
6121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But no! If he does not desist, We will certainly drag him by the forelock—
6122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     a lying, sinful forelock.
6123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So let him call his associates.
6124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We will call the wardens of Hell.
6125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Again, no! Never obey him ˹O Prophet˺! Rather, ˹continue to˺ prostrate and draw near ˹to Allah˺.
6126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, ˹it is˺ We ˹Who˺ sent this ˹Quran˺ down on the Night of Glory.
6127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what will make you realize what the Night of Glory is?
6128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Night of Glory is better than a thousand months.
6129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That night the angels and the ˹holy˺ spirit descend, by the permission of their Lord, for every ˹decreed˺ matter.
6130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It is all peace until the break of dawn.
6131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers from the People of the Book and the polytheists were not going to desist ˹from disbelief˺ until the clear proof came to them:
6132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  a messenger from Allah, reciting scrolls of ˹utmost˺ purity,
6133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              containing upright commandments.
6134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It was not until this clear proof came to the People of the Book that they became divided ˹about his prophethood˺—
6135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   even though they were only commanded to worship Allah ˹alone˺ with sincere devotion to Him in all uprightness, establish prayer, and pay alms-tax. That is the upright Way.
6136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, those who disbelieve from the People of the Book and the polytheists will be in the Fire of Hell, to stay there forever. They are the worst of ˹all˺ beings.
6137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, those who believe and do good—they are the best of ˹all˺ beings.
6138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Their reward with their Lord will be Gardens of Eternity, under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. This is ˹only˺ for those in awe of their Lord.
6139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When the earth is shaken ˹in˺ its ultimate quaking,
6140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and when the earth throws out ˹all˺ its contents,
6141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and humanity cries, "What is wrong with it?"—
6142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                on that Day the earth will recount everything,
6143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 having been inspired by your Lord ˹to do so˺.
6144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             On that Day people will proceed in separate groups to be shown ˹the consequences of˺ their deeds.
6145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So whoever does an atom’s weight of good will see it.
6146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And whoever does an atom’s weight of evil will see it.
6147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ’ By the galloping, panting horses,
6148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   striking sparks of fire ˹with their hoofs˺,
6149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      launching raids at dawn,
6150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 stirring up ˹clouds of˺ dust,
6151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and penetrating into the heart of enemy lines!
6152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely humankind is ungrateful to their Lord—
6153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and they certainly attest to this—
6154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and they are truly extreme in their love of ˹worldly˺ gains.
6155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do they not know that when the contents of the graves will be spilled out,
6156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and the secrets of the hearts will be laid bare—
6157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           surely their Lord is All-Aware of them on that Day.
6158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Striking Disaster!
6159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What is the Striking Disaster?
6160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And what will make you realize what the Striking Disaster is?
6161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹It is˺ the Day people will be like scattered moths,
6162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and the mountains will be like carded wool.
6163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So as for those whose scale is heavy ˹with good deeds˺,
6164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              they will be in a life of bliss.
6165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And as for those whose scale is light,
6166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 their home will be the abyss.
6167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And what will make you realize what that is?
6168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It is˺ a scorching Fire.
6169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Competition for more ˹gains˺ diverts you ˹from Allah˺,
6170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            until you end up in ˹your˺ graves.
6171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But no! You will soon come to know.
6172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Again, no! You will soon come to know.
6173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, if you were to know ˹your fate˺ with certainty, ˹you would have acted differently˺.
6174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹But˺ you will surely see the Hellfire.
6175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Again, you will surely see it with the eye of certainty.
6176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then, on that Day, you will definitely be questioned about ˹your worldly˺ pleasures.
6177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     By the ˹passage of˺ time!
6178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely humanity is in ˹grave˺ loss,
6179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  except those who have faith, do good, and urge each other to the truth, and urge each other to perseverance.
6180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Woe to every backbiter, slanderer,
6181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who amasses wealth ˹greedily˺ and counts it ˹repeatedly˺,
6182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           thinking that their wealth will make them immortal!
6183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Not at all! Such a person will certainly be tossed into the Crusher.
6184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And what will make you realize what the Crusher is?
6185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹It is˺ Allah’s kindled Fire,
6186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  which rages over the hearts.
6187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It will be sealed over them,
6188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹tightly secured˺ with long braces.
6189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have you not seen ˹O Prophet˺ how your Lord dealt with the Army of the Elephant?
6190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Did He not frustrate their scheme?
6191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For He sent against them flocks of birds,
6192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   that pelted them with stones of baked clay,
6193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            leaving them like chewed up straw.
6194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹At least˺ for ˹the favour of˺ making Quraysh habitually secure—
6195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           secure in their trading caravan ˹to Yemen˺ in the winter and ˹Syria˺ in the summer—
6196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             let them worship the Lord of this ˹Sacred˺ House,
6197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who has fed them against hunger and made them secure against fear.
6198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Have you seen the one who denies the ˹final˺ Judgment?
6199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That is the one who repulses the orphan,
6200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and does not encourage the feeding of the poor.
6201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So woe to those ˹hypocrites˺ who pray
6202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           yet are unmindful of their prayers;
6203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    those who ˹only˺ show off,
6204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and refuse to give ˹even the simplest˺ aid.
6205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, We have granted you ˹O Prophet˺ abundant goodness.
6206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So pray and sacrifice to your Lord ˹alone˺.
6207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Only the one who hates you is truly cut off ˹from any goodness˺.
6208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "O you disbelievers!
6209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do not worship what you worship,
6210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nor do you worship what I worship.
6211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I will never worship what you worship,
6212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     nor will you ever worship what I worship.
6213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You have your way, and I have my Way."
6214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When Allah’s ˹ultimate˺ help comes and the victory ˹over Mecca is achieved˺,
6215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and you ˹O Prophet˺ see the people embracing Allah’s Way in crowds,
6216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then glorify the praises of your Lord and seek His forgiveness, for certainly He is ever Accepting of Repentance.
6217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   May the hands of Abu Lahab perish, and he ˹himself˺ perish!
6218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Neither his wealth nor ˹worldly˺ gains will benefit him.
6219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He will burn in a flaming Fire,
6220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and ˹so will˺ his wife, the carrier of ˹thorny˺ kindling,
6221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 around her neck will be a rope of palm-fibre.
6222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "He is Allah—One ˹and Indivisible˺;
6223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah—the Sustainer ˹needed by all˺.
6224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He has never had offspring, nor was He born.
6225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And there is none comparable to Him."
6226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "I seek refuge in the Lord of the daybreak
6227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     from the evil of whatever He has created,
6228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and from the evil of the night when it grows dark,
6229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and from the evil of those ˹witches casting spells by˺ blowing onto knots,
6230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and from the evil of an envier when they envy."
6231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "I seek refuge in the Lord of humankind,
6232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the Master of humankind,
6233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         the God of humankind,
6234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       from the evil of the lurking whisperer—
6235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who whispers into the hearts of humankind—
6236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               from among jinn and humankind."
     overall_n          title
1            1 The Holy Quran
2            2 The Holy Quran
3            3 The Holy Quran
4            4 The Holy Quran
5            5 The Holy Quran
6            6 The Holy Quran
7            7 The Holy Quran
8            8 The Holy Quran
9            9 The Holy Quran
10          10 The Holy Quran
11          11 The Holy Quran
12          12 The Holy Quran
13          13 The Holy Quran
14          14 The Holy Quran
15          15 The Holy Quran
16          16 The Holy Quran
17          17 The Holy Quran
18          18 The Holy Quran
19          19 The Holy Quran
20          20 The Holy Quran
21          21 The Holy Quran
22          22 The Holy Quran
23          23 The Holy Quran
24          24 The Holy Quran
25          25 The Holy Quran
26          26 The Holy Quran
27          27 The Holy Quran
28          28 The Holy Quran
29          29 The Holy Quran
30          30 The Holy Quran
31          31 The Holy Quran
32          32 The Holy Quran
33          33 The Holy Quran
34          34 The Holy Quran
35          35 The Holy Quran
36          36 The Holy Quran
37          37 The Holy Quran
38          38 The Holy Quran
39          39 The Holy Quran
40          40 The Holy Quran
41          41 The Holy Quran
42          42 The Holy Quran
43          43 The Holy Quran
44          44 The Holy Quran
45          45 The Holy Quran
46          46 The Holy Quran
47          47 The Holy Quran
48          48 The Holy Quran
49          49 The Holy Quran
50          50 The Holy Quran
51          51 The Holy Quran
52          52 The Holy Quran
53          53 The Holy Quran
54          54 The Holy Quran
55          55 The Holy Quran
56          56 The Holy Quran
57          57 The Holy Quran
58          58 The Holy Quran
59          59 The Holy Quran
60          60 The Holy Quran
61          61 The Holy Quran
62          62 The Holy Quran
63          63 The Holy Quran
64          64 The Holy Quran
65          65 The Holy Quran
66          66 The Holy Quran
67          67 The Holy Quran
68          68 The Holy Quran
69          69 The Holy Quran
70          70 The Holy Quran
71          71 The Holy Quran
72          72 The Holy Quran
73          73 The Holy Quran
74          74 The Holy Quran
75          75 The Holy Quran
76          76 The Holy Quran
77          77 The Holy Quran
78          78 The Holy Quran
79          79 The Holy Quran
80          80 The Holy Quran
81          81 The Holy Quran
82          82 The Holy Quran
83          83 The Holy Quran
84          84 The Holy Quran
85          85 The Holy Quran
86          86 The Holy Quran
87          87 The Holy Quran
88          88 The Holy Quran
89          89 The Holy Quran
90          90 The Holy Quran
91          91 The Holy Quran
92          92 The Holy Quran
93          93 The Holy Quran
94          94 The Holy Quran
95          95 The Holy Quran
96          96 The Holy Quran
97          97 The Holy Quran
98          98 The Holy Quran
99          99 The Holy Quran
100        100 The Holy Quran
101        101 The Holy Quran
102        102 The Holy Quran
103        103 The Holy Quran
104        104 The Holy Quran
105        105 The Holy Quran
106        106 The Holy Quran
107        107 The Holy Quran
108        108 The Holy Quran
109        109 The Holy Quran
110        110 The Holy Quran
111        111 The Holy Quran
112        112 The Holy Quran
113        113 The Holy Quran
114        114 The Holy Quran
115        115 The Holy Quran
116        116 The Holy Quran
117        117 The Holy Quran
118        118 The Holy Quran
119        119 The Holy Quran
120        120 The Holy Quran
121        121 The Holy Quran
122        122 The Holy Quran
123        123 The Holy Quran
124        124 The Holy Quran
125        125 The Holy Quran
126        126 The Holy Quran
127        127 The Holy Quran
128        128 The Holy Quran
129        129 The Holy Quran
130        130 The Holy Quran
131        131 The Holy Quran
132        132 The Holy Quran
133        133 The Holy Quran
134        134 The Holy Quran
135        135 The Holy Quran
136        136 The Holy Quran
137        137 The Holy Quran
138        138 The Holy Quran
139        139 The Holy Quran
140        140 The Holy Quran
141        141 The Holy Quran
142        142 The Holy Quran
143        143 The Holy Quran
144        144 The Holy Quran
145        145 The Holy Quran
146        146 The Holy Quran
147        147 The Holy Quran
148        148 The Holy Quran
149        149 The Holy Quran
150        150 The Holy Quran
151        151 The Holy Quran
152        152 The Holy Quran
153        153 The Holy Quran
154        154 The Holy Quran
155        155 The Holy Quran
156        156 The Holy Quran
157        157 The Holy Quran
158        158 The Holy Quran
159        159 The Holy Quran
160        160 The Holy Quran
161        161 The Holy Quran
162        162 The Holy Quran
163        163 The Holy Quran
164        164 The Holy Quran
165        165 The Holy Quran
166        166 The Holy Quran
167        167 The Holy Quran
168        168 The Holy Quran
169        169 The Holy Quran
170        170 The Holy Quran
171        171 The Holy Quran
172        172 The Holy Quran
173        173 The Holy Quran
174        174 The Holy Quran
175        175 The Holy Quran
176        176 The Holy Quran
177        177 The Holy Quran
178        178 The Holy Quran
179        179 The Holy Quran
180        180 The Holy Quran
181        181 The Holy Quran
182        182 The Holy Quran
183        183 The Holy Quran
184        184 The Holy Quran
185        185 The Holy Quran
186        186 The Holy Quran
187        187 The Holy Quran
188        188 The Holy Quran
189        189 The Holy Quran
190        190 The Holy Quran
191        191 The Holy Quran
192        192 The Holy Quran
193        193 The Holy Quran
194        194 The Holy Quran
195        195 The Holy Quran
196        196 The Holy Quran
197        197 The Holy Quran
198        198 The Holy Quran
199        199 The Holy Quran
200        200 The Holy Quran
201        201 The Holy Quran
202        202 The Holy Quran
203        203 The Holy Quran
204        204 The Holy Quran
205        205 The Holy Quran
206        206 The Holy Quran
207        207 The Holy Quran
208        208 The Holy Quran
209        209 The Holy Quran
210        210 The Holy Quran
211        211 The Holy Quran
212        212 The Holy Quran
213        213 The Holy Quran
214        214 The Holy Quran
215        215 The Holy Quran
216        216 The Holy Quran
217        217 The Holy Quran
218        218 The Holy Quran
219        219 The Holy Quran
220        220 The Holy Quran
221        221 The Holy Quran
222        222 The Holy Quran
223        223 The Holy Quran
224        224 The Holy Quran
225        225 The Holy Quran
226        226 The Holy Quran
227        227 The Holy Quran
228        228 The Holy Quran
229        229 The Holy Quran
230        230 The Holy Quran
231        231 The Holy Quran
232        232 The Holy Quran
233        233 The Holy Quran
234        234 The Holy Quran
235        235 The Holy Quran
236        236 The Holy Quran
237        237 The Holy Quran
238        238 The Holy Quran
239        239 The Holy Quran
240        240 The Holy Quran
241        241 The Holy Quran
242        242 The Holy Quran
243        243 The Holy Quran
244        244 The Holy Quran
245        245 The Holy Quran
246        246 The Holy Quran
247        247 The Holy Quran
248        248 The Holy Quran
249        249 The Holy Quran
250        250 The Holy Quran
251        251 The Holy Quran
252        252 The Holy Quran
253        253 The Holy Quran
254        254 The Holy Quran
255        255 The Holy Quran
256        256 The Holy Quran
257        257 The Holy Quran
258        258 The Holy Quran
259        259 The Holy Quran
260        260 The Holy Quran
261        261 The Holy Quran
262        262 The Holy Quran
263        263 The Holy Quran
264        264 The Holy Quran
265        265 The Holy Quran
266        266 The Holy Quran
267        267 The Holy Quran
268        268 The Holy Quran
269        269 The Holy Quran
270        270 The Holy Quran
271        271 The Holy Quran
272        272 The Holy Quran
273        273 The Holy Quran
274        274 The Holy Quran
275        275 The Holy Quran
276        276 The Holy Quran
277        277 The Holy Quran
278        278 The Holy Quran
279        279 The Holy Quran
280        280 The Holy Quran
281        281 The Holy Quran
282        282 The Holy Quran
283        283 The Holy Quran
284        284 The Holy Quran
285        285 The Holy Quran
286        286 The Holy Quran
287        287 The Holy Quran
288        288 The Holy Quran
289        289 The Holy Quran
290        290 The Holy Quran
291        291 The Holy Quran
292        292 The Holy Quran
293        293 The Holy Quran
294        294 The Holy Quran
295        295 The Holy Quran
296        296 The Holy Quran
297        297 The Holy Quran
298        298 The Holy Quran
299        299 The Holy Quran
300        300 The Holy Quran
301        301 The Holy Quran
302        302 The Holy Quran
303        303 The Holy Quran
304        304 The Holy Quran
305        305 The Holy Quran
306        306 The Holy Quran
307        307 The Holy Quran
308        308 The Holy Quran
309        309 The Holy Quran
310        310 The Holy Quran
311        311 The Holy Quran
312        312 The Holy Quran
313        313 The Holy Quran
314        314 The Holy Quran
315        315 The Holy Quran
316        316 The Holy Quran
317        317 The Holy Quran
318        318 The Holy Quran
319        319 The Holy Quran
320        320 The Holy Quran
321        321 The Holy Quran
322        322 The Holy Quran
323        323 The Holy Quran
324        324 The Holy Quran
325        325 The Holy Quran
326        326 The Holy Quran
327        327 The Holy Quran
328        328 The Holy Quran
329        329 The Holy Quran
330        330 The Holy Quran
331        331 The Holy Quran
332        332 The Holy Quran
333        333 The Holy Quran
334        334 The Holy Quran
335        335 The Holy Quran
336        336 The Holy Quran
337        337 The Holy Quran
338        338 The Holy Quran
339        339 The Holy Quran
340        340 The Holy Quran
341        341 The Holy Quran
342        342 The Holy Quran
343        343 The Holy Quran
344        344 The Holy Quran
345        345 The Holy Quran
346        346 The Holy Quran
347        347 The Holy Quran
348        348 The Holy Quran
349        349 The Holy Quran
350        350 The Holy Quran
351        351 The Holy Quran
352        352 The Holy Quran
353        353 The Holy Quran
354        354 The Holy Quran
355        355 The Holy Quran
356        356 The Holy Quran
357        357 The Holy Quran
358        358 The Holy Quran
359        359 The Holy Quran
360        360 The Holy Quran
361        361 The Holy Quran
362        362 The Holy Quran
363        363 The Holy Quran
364        364 The Holy Quran
365        365 The Holy Quran
366        366 The Holy Quran
367        367 The Holy Quran
368        368 The Holy Quran
369        369 The Holy Quran
370        370 The Holy Quran
371        371 The Holy Quran
372        372 The Holy Quran
373        373 The Holy Quran
374        374 The Holy Quran
375        375 The Holy Quran
376        376 The Holy Quran
377        377 The Holy Quran
378        378 The Holy Quran
379        379 The Holy Quran
380        380 The Holy Quran
381        381 The Holy Quran
382        382 The Holy Quran
383        383 The Holy Quran
384        384 The Holy Quran
385        385 The Holy Quran
386        386 The Holy Quran
387        387 The Holy Quran
388        388 The Holy Quran
389        389 The Holy Quran
390        390 The Holy Quran
391        391 The Holy Quran
392        392 The Holy Quran
393        393 The Holy Quran
394        394 The Holy Quran
395        395 The Holy Quran
396        396 The Holy Quran
397        397 The Holy Quran
398        398 The Holy Quran
399        399 The Holy Quran
400        400 The Holy Quran
401        401 The Holy Quran
402        402 The Holy Quran
403        403 The Holy Quran
404        404 The Holy Quran
405        405 The Holy Quran
406        406 The Holy Quran
407        407 The Holy Quran
408        408 The Holy Quran
409        409 The Holy Quran
410        410 The Holy Quran
411        411 The Holy Quran
412        412 The Holy Quran
413        413 The Holy Quran
414        414 The Holy Quran
415        415 The Holy Quran
416        416 The Holy Quran
417        417 The Holy Quran
418        418 The Holy Quran
419        419 The Holy Quran
420        420 The Holy Quran
421        421 The Holy Quran
422        422 The Holy Quran
423        423 The Holy Quran
424        424 The Holy Quran
425        425 The Holy Quran
426        426 The Holy Quran
427        427 The Holy Quran
428        428 The Holy Quran
429        429 The Holy Quran
430        430 The Holy Quran
431        431 The Holy Quran
432        432 The Holy Quran
433        433 The Holy Quran
434        434 The Holy Quran
435        435 The Holy Quran
436        436 The Holy Quran
437        437 The Holy Quran
438        438 The Holy Quran
439        439 The Holy Quran
440        440 The Holy Quran
441        441 The Holy Quran
442        442 The Holy Quran
443        443 The Holy Quran
444        444 The Holy Quran
445        445 The Holy Quran
446        446 The Holy Quran
447        447 The Holy Quran
448        448 The Holy Quran
449        449 The Holy Quran
450        450 The Holy Quran
451        451 The Holy Quran
452        452 The Holy Quran
453        453 The Holy Quran
454        454 The Holy Quran
455        455 The Holy Quran
456        456 The Holy Quran
457        457 The Holy Quran
458        458 The Holy Quran
459        459 The Holy Quran
460        460 The Holy Quran
461        461 The Holy Quran
462        462 The Holy Quran
463        463 The Holy Quran
464        464 The Holy Quran
465        465 The Holy Quran
466        466 The Holy Quran
467        467 The Holy Quran
468        468 The Holy Quran
469        469 The Holy Quran
470        470 The Holy Quran
471        471 The Holy Quran
472        472 The Holy Quran
473        473 The Holy Quran
474        474 The Holy Quran
475        475 The Holy Quran
476        476 The Holy Quran
477        477 The Holy Quran
478        478 The Holy Quran
479        479 The Holy Quran
480        480 The Holy Quran
481        481 The Holy Quran
482        482 The Holy Quran
483        483 The Holy Quran
484        484 The Holy Quran
485        485 The Holy Quran
486        486 The Holy Quran
487        487 The Holy Quran
488        488 The Holy Quran
489        489 The Holy Quran
490        490 The Holy Quran
491        491 The Holy Quran
492        492 The Holy Quran
493        493 The Holy Quran
494        494 The Holy Quran
495        495 The Holy Quran
496        496 The Holy Quran
497        497 The Holy Quran
498        498 The Holy Quran
499        499 The Holy Quran
500        500 The Holy Quran
501        501 The Holy Quran
502        502 The Holy Quran
503        503 The Holy Quran
504        504 The Holy Quran
505        505 The Holy Quran
506        506 The Holy Quran
507        507 The Holy Quran
508        508 The Holy Quran
509        509 The Holy Quran
510        510 The Holy Quran
511        511 The Holy Quran
512        512 The Holy Quran
513        513 The Holy Quran
514        514 The Holy Quran
515        515 The Holy Quran
516        516 The Holy Quran
517        517 The Holy Quran
518        518 The Holy Quran
519        519 The Holy Quran
520        520 The Holy Quran
521        521 The Holy Quran
522        522 The Holy Quran
523        523 The Holy Quran
524        524 The Holy Quran
525        525 The Holy Quran
526        526 The Holy Quran
527        527 The Holy Quran
528        528 The Holy Quran
529        529 The Holy Quran
530        530 The Holy Quran
531        531 The Holy Quran
532        532 The Holy Quran
533        533 The Holy Quran
534        534 The Holy Quran
535        535 The Holy Quran
536        536 The Holy Quran
537        537 The Holy Quran
538        538 The Holy Quran
539        539 The Holy Quran
540        540 The Holy Quran
541        541 The Holy Quran
542        542 The Holy Quran
543        543 The Holy Quran
544        544 The Holy Quran
545        545 The Holy Quran
546        546 The Holy Quran
547        547 The Holy Quran
548        548 The Holy Quran
549        549 The Holy Quran
550        550 The Holy Quran
551        551 The Holy Quran
552        552 The Holy Quran
553        553 The Holy Quran
554        554 The Holy Quran
555        555 The Holy Quran
556        556 The Holy Quran
557        557 The Holy Quran
558        558 The Holy Quran
559        559 The Holy Quran
560        560 The Holy Quran
561        561 The Holy Quran
562        562 The Holy Quran
563        563 The Holy Quran
564        564 The Holy Quran
565        565 The Holy Quran
566        566 The Holy Quran
567        567 The Holy Quran
568        568 The Holy Quran
569        569 The Holy Quran
570        570 The Holy Quran
571        571 The Holy Quran
572        572 The Holy Quran
573        573 The Holy Quran
574        574 The Holy Quran
575        575 The Holy Quran
576        576 The Holy Quran
577        577 The Holy Quran
578        578 The Holy Quran
579        579 The Holy Quran
580        580 The Holy Quran
581        581 The Holy Quran
582        582 The Holy Quran
583        583 The Holy Quran
584        584 The Holy Quran
585        585 The Holy Quran
586        586 The Holy Quran
587        587 The Holy Quran
588        588 The Holy Quran
589        589 The Holy Quran
590        590 The Holy Quran
591        591 The Holy Quran
592        592 The Holy Quran
593        593 The Holy Quran
594        594 The Holy Quran
595        595 The Holy Quran
596        596 The Holy Quran
597        597 The Holy Quran
598        598 The Holy Quran
599        599 The Holy Quran
600        600 The Holy Quran
601        601 The Holy Quran
602        602 The Holy Quran
603        603 The Holy Quran
604        604 The Holy Quran
605        605 The Holy Quran
606        606 The Holy Quran
607        607 The Holy Quran
608        608 The Holy Quran
609        609 The Holy Quran
610        610 The Holy Quran
611        611 The Holy Quran
612        612 The Holy Quran
613        613 The Holy Quran
614        614 The Holy Quran
615        615 The Holy Quran
616        616 The Holy Quran
617        617 The Holy Quran
618        618 The Holy Quran
619        619 The Holy Quran
620        620 The Holy Quran
621        621 The Holy Quran
622        622 The Holy Quran
623        623 The Holy Quran
624        624 The Holy Quran
625        625 The Holy Quran
626        626 The Holy Quran
627        627 The Holy Quran
628        628 The Holy Quran
629        629 The Holy Quran
630        630 The Holy Quran
631        631 The Holy Quran
632        632 The Holy Quran
633        633 The Holy Quran
634        634 The Holy Quran
635        635 The Holy Quran
636        636 The Holy Quran
637        637 The Holy Quran
638        638 The Holy Quran
639        639 The Holy Quran
640        640 The Holy Quran
641        641 The Holy Quran
642        642 The Holy Quran
643        643 The Holy Quran
644        644 The Holy Quran
645        645 The Holy Quran
646        646 The Holy Quran
647        647 The Holy Quran
648        648 The Holy Quran
649        649 The Holy Quran
650        650 The Holy Quran
651        651 The Holy Quran
652        652 The Holy Quran
653        653 The Holy Quran
654        654 The Holy Quran
655        655 The Holy Quran
656        656 The Holy Quran
657        657 The Holy Quran
658        658 The Holy Quran
659        659 The Holy Quran
660        660 The Holy Quran
661        661 The Holy Quran
662        662 The Holy Quran
663        663 The Holy Quran
664        664 The Holy Quran
665        665 The Holy Quran
666        666 The Holy Quran
667        667 The Holy Quran
668        668 The Holy Quran
669        669 The Holy Quran
670        670 The Holy Quran
671        671 The Holy Quran
672        672 The Holy Quran
673        673 The Holy Quran
674        674 The Holy Quran
675        675 The Holy Quran
676        676 The Holy Quran
677        677 The Holy Quran
678        678 The Holy Quran
679        679 The Holy Quran
680        680 The Holy Quran
681        681 The Holy Quran
682        682 The Holy Quran
683        683 The Holy Quran
684        684 The Holy Quran
685        685 The Holy Quran
686        686 The Holy Quran
687        687 The Holy Quran
688        688 The Holy Quran
689        689 The Holy Quran
690        690 The Holy Quran
691        691 The Holy Quran
692        692 The Holy Quran
693        693 The Holy Quran
694        694 The Holy Quran
695        695 The Holy Quran
696        696 The Holy Quran
697        697 The Holy Quran
698        698 The Holy Quran
699        699 The Holy Quran
700        700 The Holy Quran
701        701 The Holy Quran
702        702 The Holy Quran
703        703 The Holy Quran
704        704 The Holy Quran
705        705 The Holy Quran
706        706 The Holy Quran
707        707 The Holy Quran
708        708 The Holy Quran
709        709 The Holy Quran
710        710 The Holy Quran
711        711 The Holy Quran
712        712 The Holy Quran
713        713 The Holy Quran
714        714 The Holy Quran
715        715 The Holy Quran
716        716 The Holy Quran
717        717 The Holy Quran
718        718 The Holy Quran
719        719 The Holy Quran
720        720 The Holy Quran
721        721 The Holy Quran
722        722 The Holy Quran
723        723 The Holy Quran
724        724 The Holy Quran
725        725 The Holy Quran
726        726 The Holy Quran
727        727 The Holy Quran
728        728 The Holy Quran
729        729 The Holy Quran
730        730 The Holy Quran
731        731 The Holy Quran
732        732 The Holy Quran
733        733 The Holy Quran
734        734 The Holy Quran
735        735 The Holy Quran
736        736 The Holy Quran
737        737 The Holy Quran
738        738 The Holy Quran
739        739 The Holy Quran
740        740 The Holy Quran
741        741 The Holy Quran
742        742 The Holy Quran
743        743 The Holy Quran
744        744 The Holy Quran
745        745 The Holy Quran
746        746 The Holy Quran
747        747 The Holy Quran
748        748 The Holy Quran
749        749 The Holy Quran
750        750 The Holy Quran
751        751 The Holy Quran
752        752 The Holy Quran
753        753 The Holy Quran
754        754 The Holy Quran
755        755 The Holy Quran
756        756 The Holy Quran
757        757 The Holy Quran
758        758 The Holy Quran
759        759 The Holy Quran
760        760 The Holy Quran
761        761 The Holy Quran
762        762 The Holy Quran
763        763 The Holy Quran
764        764 The Holy Quran
765        765 The Holy Quran
766        766 The Holy Quran
767        767 The Holy Quran
768        768 The Holy Quran
769        769 The Holy Quran
770        770 The Holy Quran
771        771 The Holy Quran
772        772 The Holy Quran
773        773 The Holy Quran
774        774 The Holy Quran
775        775 The Holy Quran
776        776 The Holy Quran
777        777 The Holy Quran
778        778 The Holy Quran
779        779 The Holy Quran
780        780 The Holy Quran
781        781 The Holy Quran
782        782 The Holy Quran
783        783 The Holy Quran
784        784 The Holy Quran
785        785 The Holy Quran
786        786 The Holy Quran
787        787 The Holy Quran
788        788 The Holy Quran
789        789 The Holy Quran
790        790 The Holy Quran
791        791 The Holy Quran
792        792 The Holy Quran
793        793 The Holy Quran
794        794 The Holy Quran
795        795 The Holy Quran
796        796 The Holy Quran
797        797 The Holy Quran
798        798 The Holy Quran
799        799 The Holy Quran
800        800 The Holy Quran
801        801 The Holy Quran
802        802 The Holy Quran
803        803 The Holy Quran
804        804 The Holy Quran
805        805 The Holy Quran
806        806 The Holy Quran
807        807 The Holy Quran
808        808 The Holy Quran
809        809 The Holy Quran
810        810 The Holy Quran
811        811 The Holy Quran
812        812 The Holy Quran
813        813 The Holy Quran
814        814 The Holy Quran
815        815 The Holy Quran
816        816 The Holy Quran
817        817 The Holy Quran
818        818 The Holy Quran
819        819 The Holy Quran
820        820 The Holy Quran
821        821 The Holy Quran
822        822 The Holy Quran
823        823 The Holy Quran
824        824 The Holy Quran
825        825 The Holy Quran
826        826 The Holy Quran
827        827 The Holy Quran
828        828 The Holy Quran
829        829 The Holy Quran
830        830 The Holy Quran
831        831 The Holy Quran
832        832 The Holy Quran
833        833 The Holy Quran
834        834 The Holy Quran
835        835 The Holy Quran
836        836 The Holy Quran
837        837 The Holy Quran
838        838 The Holy Quran
839        839 The Holy Quran
840        840 The Holy Quran
841        841 The Holy Quran
842        842 The Holy Quran
843        843 The Holy Quran
844        844 The Holy Quran
845        845 The Holy Quran
846        846 The Holy Quran
847        847 The Holy Quran
848        848 The Holy Quran
849        849 The Holy Quran
850        850 The Holy Quran
851        851 The Holy Quran
852        852 The Holy Quran
853        853 The Holy Quran
854        854 The Holy Quran
855        855 The Holy Quran
856        856 The Holy Quran
857        857 The Holy Quran
858        858 The Holy Quran
859        859 The Holy Quran
860        860 The Holy Quran
861        861 The Holy Quran
862        862 The Holy Quran
863        863 The Holy Quran
864        864 The Holy Quran
865        865 The Holy Quran
866        866 The Holy Quran
867        867 The Holy Quran
868        868 The Holy Quran
869        869 The Holy Quran
870        870 The Holy Quran
871        871 The Holy Quran
872        872 The Holy Quran
873        873 The Holy Quran
874        874 The Holy Quran
875        875 The Holy Quran
876        876 The Holy Quran
877        877 The Holy Quran
878        878 The Holy Quran
879        879 The Holy Quran
880        880 The Holy Quran
881        881 The Holy Quran
882        882 The Holy Quran
883        883 The Holy Quran
884        884 The Holy Quran
885        885 The Holy Quran
886        886 The Holy Quran
887        887 The Holy Quran
888        888 The Holy Quran
889        889 The Holy Quran
890        890 The Holy Quran
891        891 The Holy Quran
892        892 The Holy Quran
893        893 The Holy Quran
894        894 The Holy Quran
895        895 The Holy Quran
896        896 The Holy Quran
897        897 The Holy Quran
898        898 The Holy Quran
899        899 The Holy Quran
900        900 The Holy Quran
901        901 The Holy Quran
902        902 The Holy Quran
903        903 The Holy Quran
904        904 The Holy Quran
905        905 The Holy Quran
906        906 The Holy Quran
907        907 The Holy Quran
908        908 The Holy Quran
909        909 The Holy Quran
910        910 The Holy Quran
911        911 The Holy Quran
912        912 The Holy Quran
913        913 The Holy Quran
914        914 The Holy Quran
915        915 The Holy Quran
916        916 The Holy Quran
917        917 The Holy Quran
918        918 The Holy Quran
919        919 The Holy Quran
920        920 The Holy Quran
921        921 The Holy Quran
922        922 The Holy Quran
923        923 The Holy Quran
924        924 The Holy Quran
925        925 The Holy Quran
926        926 The Holy Quran
927        927 The Holy Quran
928        928 The Holy Quran
929        929 The Holy Quran
930        930 The Holy Quran
931        931 The Holy Quran
932        932 The Holy Quran
933        933 The Holy Quran
934        934 The Holy Quran
935        935 The Holy Quran
936        936 The Holy Quran
937        937 The Holy Quran
938        938 The Holy Quran
939        939 The Holy Quran
940        940 The Holy Quran
941        941 The Holy Quran
942        942 The Holy Quran
943        943 The Holy Quran
944        944 The Holy Quran
945        945 The Holy Quran
946        946 The Holy Quran
947        947 The Holy Quran
948        948 The Holy Quran
949        949 The Holy Quran
950        950 The Holy Quran
951        951 The Holy Quran
952        952 The Holy Quran
953        953 The Holy Quran
954        954 The Holy Quran
955        955 The Holy Quran
956        956 The Holy Quran
957        957 The Holy Quran
958        958 The Holy Quran
959        959 The Holy Quran
960        960 The Holy Quran
961        961 The Holy Quran
962        962 The Holy Quran
963        963 The Holy Quran
964        964 The Holy Quran
965        965 The Holy Quran
966        966 The Holy Quran
967        967 The Holy Quran
968        968 The Holy Quran
969        969 The Holy Quran
970        970 The Holy Quran
971        971 The Holy Quran
972        972 The Holy Quran
973        973 The Holy Quran
974        974 The Holy Quran
975        975 The Holy Quran
976        976 The Holy Quran
977        977 The Holy Quran
978        978 The Holy Quran
979        979 The Holy Quran
980        980 The Holy Quran
981        981 The Holy Quran
982        982 The Holy Quran
983        983 The Holy Quran
984        984 The Holy Quran
985        985 The Holy Quran
986        986 The Holy Quran
987        987 The Holy Quran
988        988 The Holy Quran
989        989 The Holy Quran
990        990 The Holy Quran
991        991 The Holy Quran
992        992 The Holy Quran
993        993 The Holy Quran
994        994 The Holy Quran
995        995 The Holy Quran
996        996 The Holy Quran
997        997 The Holy Quran
998        998 The Holy Quran
999        999 The Holy Quran
1000      1000 The Holy Quran
1001      1001 The Holy Quran
1002      1002 The Holy Quran
1003      1003 The Holy Quran
1004      1004 The Holy Quran
1005      1005 The Holy Quran
1006      1006 The Holy Quran
1007      1007 The Holy Quran
1008      1008 The Holy Quran
1009      1009 The Holy Quran
1010      1010 The Holy Quran
1011      1011 The Holy Quran
1012      1012 The Holy Quran
1013      1013 The Holy Quran
1014      1014 The Holy Quran
1015      1015 The Holy Quran
1016      1016 The Holy Quran
1017      1017 The Holy Quran
1018      1018 The Holy Quran
1019      1019 The Holy Quran
1020      1020 The Holy Quran
1021      1021 The Holy Quran
1022      1022 The Holy Quran
1023      1023 The Holy Quran
1024      1024 The Holy Quran
1025      1025 The Holy Quran
1026      1026 The Holy Quran
1027      1027 The Holy Quran
1028      1028 The Holy Quran
1029      1029 The Holy Quran
1030      1030 The Holy Quran
1031      1031 The Holy Quran
1032      1032 The Holy Quran
1033      1033 The Holy Quran
1034      1034 The Holy Quran
1035      1035 The Holy Quran
1036      1036 The Holy Quran
1037      1037 The Holy Quran
1038      1038 The Holy Quran
1039      1039 The Holy Quran
1040      1040 The Holy Quran
1041      1041 The Holy Quran
1042      1042 The Holy Quran
1043      1043 The Holy Quran
1044      1044 The Holy Quran
1045      1045 The Holy Quran
1046      1046 The Holy Quran
1047      1047 The Holy Quran
1048      1048 The Holy Quran
1049      1049 The Holy Quran
1050      1050 The Holy Quran
1051      1051 The Holy Quran
1052      1052 The Holy Quran
1053      1053 The Holy Quran
1054      1054 The Holy Quran
1055      1055 The Holy Quran
1056      1056 The Holy Quran
1057      1057 The Holy Quran
1058      1058 The Holy Quran
1059      1059 The Holy Quran
1060      1060 The Holy Quran
1061      1061 The Holy Quran
1062      1062 The Holy Quran
1063      1063 The Holy Quran
1064      1064 The Holy Quran
1065      1065 The Holy Quran
1066      1066 The Holy Quran
1067      1067 The Holy Quran
1068      1068 The Holy Quran
1069      1069 The Holy Quran
1070      1070 The Holy Quran
1071      1071 The Holy Quran
1072      1072 The Holy Quran
1073      1073 The Holy Quran
1074      1074 The Holy Quran
1075      1075 The Holy Quran
1076      1076 The Holy Quran
1077      1077 The Holy Quran
1078      1078 The Holy Quran
1079      1079 The Holy Quran
1080      1080 The Holy Quran
1081      1081 The Holy Quran
1082      1082 The Holy Quran
1083      1083 The Holy Quran
1084      1084 The Holy Quran
1085      1085 The Holy Quran
1086      1086 The Holy Quran
1087      1087 The Holy Quran
1088      1088 The Holy Quran
1089      1089 The Holy Quran
1090      1090 The Holy Quran
1091      1091 The Holy Quran
1092      1092 The Holy Quran
1093      1093 The Holy Quran
1094      1094 The Holy Quran
1095      1095 The Holy Quran
1096      1096 The Holy Quran
1097      1097 The Holy Quran
1098      1098 The Holy Quran
1099      1099 The Holy Quran
1100      1100 The Holy Quran
1101      1101 The Holy Quran
1102      1102 The Holy Quran
1103      1103 The Holy Quran
1104      1104 The Holy Quran
1105      1105 The Holy Quran
1106      1106 The Holy Quran
1107      1107 The Holy Quran
1108      1108 The Holy Quran
1109      1109 The Holy Quran
1110      1110 The Holy Quran
1111      1111 The Holy Quran
1112      1112 The Holy Quran
1113      1113 The Holy Quran
1114      1114 The Holy Quran
1115      1115 The Holy Quran
1116      1116 The Holy Quran
1117      1117 The Holy Quran
1118      1118 The Holy Quran
1119      1119 The Holy Quran
1120      1120 The Holy Quran
1121      1121 The Holy Quran
1122      1122 The Holy Quran
1123      1123 The Holy Quran
1124      1124 The Holy Quran
1125      1125 The Holy Quran
1126      1126 The Holy Quran
1127      1127 The Holy Quran
1128      1128 The Holy Quran
1129      1129 The Holy Quran
1130      1130 The Holy Quran
1131      1131 The Holy Quran
1132      1132 The Holy Quran
1133      1133 The Holy Quran
1134      1134 The Holy Quran
1135      1135 The Holy Quran
1136      1136 The Holy Quran
1137      1137 The Holy Quran
1138      1138 The Holy Quran
1139      1139 The Holy Quran
1140      1140 The Holy Quran
1141      1141 The Holy Quran
1142      1142 The Holy Quran
1143      1143 The Holy Quran
1144      1144 The Holy Quran
1145      1145 The Holy Quran
1146      1146 The Holy Quran
1147      1147 The Holy Quran
1148      1148 The Holy Quran
1149      1149 The Holy Quran
1150      1150 The Holy Quran
1151      1151 The Holy Quran
1152      1152 The Holy Quran
1153      1153 The Holy Quran
1154      1154 The Holy Quran
1155      1155 The Holy Quran
1156      1156 The Holy Quran
1157      1157 The Holy Quran
1158      1158 The Holy Quran
1159      1159 The Holy Quran
1160      1160 The Holy Quran
1161      1161 The Holy Quran
1162      1162 The Holy Quran
1163      1163 The Holy Quran
1164      1164 The Holy Quran
1165      1165 The Holy Quran
1166      1166 The Holy Quran
1167      1167 The Holy Quran
1168      1168 The Holy Quran
1169      1169 The Holy Quran
1170      1170 The Holy Quran
1171      1171 The Holy Quran
1172      1172 The Holy Quran
1173      1173 The Holy Quran
1174      1174 The Holy Quran
1175      1175 The Holy Quran
1176      1176 The Holy Quran
1177      1177 The Holy Quran
1178      1178 The Holy Quran
1179      1179 The Holy Quran
1180      1180 The Holy Quran
1181      1181 The Holy Quran
1182      1182 The Holy Quran
1183      1183 The Holy Quran
1184      1184 The Holy Quran
1185      1185 The Holy Quran
1186      1186 The Holy Quran
1187      1187 The Holy Quran
1188      1188 The Holy Quran
1189      1189 The Holy Quran
1190      1190 The Holy Quran
1191      1191 The Holy Quran
1192      1192 The Holy Quran
1193      1193 The Holy Quran
1194      1194 The Holy Quran
1195      1195 The Holy Quran
1196      1196 The Holy Quran
1197      1197 The Holy Quran
1198      1198 The Holy Quran
1199      1199 The Holy Quran
1200      1200 The Holy Quran
1201      1201 The Holy Quran
1202      1202 The Holy Quran
1203      1203 The Holy Quran
1204      1204 The Holy Quran
1205      1205 The Holy Quran
1206      1206 The Holy Quran
1207      1207 The Holy Quran
1208      1208 The Holy Quran
1209      1209 The Holy Quran
1210      1210 The Holy Quran
1211      1211 The Holy Quran
1212      1212 The Holy Quran
1213      1213 The Holy Quran
1214      1214 The Holy Quran
1215      1215 The Holy Quran
1216      1216 The Holy Quran
1217      1217 The Holy Quran
1218      1218 The Holy Quran
1219      1219 The Holy Quran
1220      1220 The Holy Quran
1221      1221 The Holy Quran
1222      1222 The Holy Quran
1223      1223 The Holy Quran
1224      1224 The Holy Quran
1225      1225 The Holy Quran
1226      1226 The Holy Quran
1227      1227 The Holy Quran
1228      1228 The Holy Quran
1229      1229 The Holy Quran
1230      1230 The Holy Quran
1231      1231 The Holy Quran
1232      1232 The Holy Quran
1233      1233 The Holy Quran
1234      1234 The Holy Quran
1235      1235 The Holy Quran
1236      1236 The Holy Quran
1237      1237 The Holy Quran
1238      1238 The Holy Quran
1239      1239 The Holy Quran
1240      1240 The Holy Quran
1241      1241 The Holy Quran
1242      1242 The Holy Quran
1243      1243 The Holy Quran
1244      1244 The Holy Quran
1245      1245 The Holy Quran
1246      1246 The Holy Quran
1247      1247 The Holy Quran
1248      1248 The Holy Quran
1249      1249 The Holy Quran
1250      1250 The Holy Quran
1251      1251 The Holy Quran
1252      1252 The Holy Quran
1253      1253 The Holy Quran
1254      1254 The Holy Quran
1255      1255 The Holy Quran
1256      1256 The Holy Quran
1257      1257 The Holy Quran
1258      1258 The Holy Quran
1259      1259 The Holy Quran
1260      1260 The Holy Quran
1261      1261 The Holy Quran
1262      1262 The Holy Quran
1263      1263 The Holy Quran
1264      1264 The Holy Quran
1265      1265 The Holy Quran
1266      1266 The Holy Quran
1267      1267 The Holy Quran
1268      1268 The Holy Quran
1269      1269 The Holy Quran
1270      1270 The Holy Quran
1271      1271 The Holy Quran
1272      1272 The Holy Quran
1273      1273 The Holy Quran
1274      1274 The Holy Quran
1275      1275 The Holy Quran
1276      1276 The Holy Quran
1277      1277 The Holy Quran
1278      1278 The Holy Quran
1279      1279 The Holy Quran
1280      1280 The Holy Quran
1281      1281 The Holy Quran
1282      1282 The Holy Quran
1283      1283 The Holy Quran
1284      1284 The Holy Quran
1285      1285 The Holy Quran
1286      1286 The Holy Quran
1287      1287 The Holy Quran
1288      1288 The Holy Quran
1289      1289 The Holy Quran
1290      1290 The Holy Quran
1291      1291 The Holy Quran
1292      1292 The Holy Quran
1293      1293 The Holy Quran
1294      1294 The Holy Quran
1295      1295 The Holy Quran
1296      1296 The Holy Quran
1297      1297 The Holy Quran
1298      1298 The Holy Quran
1299      1299 The Holy Quran
1300      1300 The Holy Quran
1301      1301 The Holy Quran
1302      1302 The Holy Quran
1303      1303 The Holy Quran
1304      1304 The Holy Quran
1305      1305 The Holy Quran
1306      1306 The Holy Quran
1307      1307 The Holy Quran
1308      1308 The Holy Quran
1309      1309 The Holy Quran
1310      1310 The Holy Quran
1311      1311 The Holy Quran
1312      1312 The Holy Quran
1313      1313 The Holy Quran
1314      1314 The Holy Quran
1315      1315 The Holy Quran
1316      1316 The Holy Quran
1317      1317 The Holy Quran
1318      1318 The Holy Quran
1319      1319 The Holy Quran
1320      1320 The Holy Quran
1321      1321 The Holy Quran
1322      1322 The Holy Quran
1323      1323 The Holy Quran
1324      1324 The Holy Quran
1325      1325 The Holy Quran
1326      1326 The Holy Quran
1327      1327 The Holy Quran
1328      1328 The Holy Quran
1329      1329 The Holy Quran
1330      1330 The Holy Quran
1331      1331 The Holy Quran
1332      1332 The Holy Quran
1333      1333 The Holy Quran
1334      1334 The Holy Quran
1335      1335 The Holy Quran
1336      1336 The Holy Quran
1337      1337 The Holy Quran
1338      1338 The Holy Quran
1339      1339 The Holy Quran
1340      1340 The Holy Quran
1341      1341 The Holy Quran
1342      1342 The Holy Quran
1343      1343 The Holy Quran
1344      1344 The Holy Quran
1345      1345 The Holy Quran
1346      1346 The Holy Quran
1347      1347 The Holy Quran
1348      1348 The Holy Quran
1349      1349 The Holy Quran
1350      1350 The Holy Quran
1351      1351 The Holy Quran
1352      1352 The Holy Quran
1353      1353 The Holy Quran
1354      1354 The Holy Quran
1355      1355 The Holy Quran
1356      1356 The Holy Quran
1357      1357 The Holy Quran
1358      1358 The Holy Quran
1359      1359 The Holy Quran
1360      1360 The Holy Quran
1361      1361 The Holy Quran
1362      1362 The Holy Quran
1363      1363 The Holy Quran
1364      1364 The Holy Quran
1365      1365 The Holy Quran
1366      1366 The Holy Quran
1367      1367 The Holy Quran
1368      1368 The Holy Quran
1369      1369 The Holy Quran
1370      1370 The Holy Quran
1371      1371 The Holy Quran
1372      1372 The Holy Quran
1373      1373 The Holy Quran
1374      1374 The Holy Quran
1375      1375 The Holy Quran
1376      1376 The Holy Quran
1377      1377 The Holy Quran
1378      1378 The Holy Quran
1379      1379 The Holy Quran
1380      1380 The Holy Quran
1381      1381 The Holy Quran
1382      1382 The Holy Quran
1383      1383 The Holy Quran
1384      1384 The Holy Quran
1385      1385 The Holy Quran
1386      1386 The Holy Quran
1387      1387 The Holy Quran
1388      1388 The Holy Quran
1389      1389 The Holy Quran
1390      1390 The Holy Quran
1391      1391 The Holy Quran
1392      1392 The Holy Quran
1393      1393 The Holy Quran
1394      1394 The Holy Quran
1395      1395 The Holy Quran
1396      1396 The Holy Quran
1397      1397 The Holy Quran
1398      1398 The Holy Quran
1399      1399 The Holy Quran
1400      1400 The Holy Quran
1401      1401 The Holy Quran
1402      1402 The Holy Quran
1403      1403 The Holy Quran
1404      1404 The Holy Quran
1405      1405 The Holy Quran
1406      1406 The Holy Quran
1407      1407 The Holy Quran
1408      1408 The Holy Quran
1409      1409 The Holy Quran
1410      1410 The Holy Quran
1411      1411 The Holy Quran
1412      1412 The Holy Quran
1413      1413 The Holy Quran
1414      1414 The Holy Quran
1415      1415 The Holy Quran
1416      1416 The Holy Quran
1417      1417 The Holy Quran
1418      1418 The Holy Quran
1419      1419 The Holy Quran
1420      1420 The Holy Quran
1421      1421 The Holy Quran
1422      1422 The Holy Quran
1423      1423 The Holy Quran
1424      1424 The Holy Quran
1425      1425 The Holy Quran
1426      1426 The Holy Quran
1427      1427 The Holy Quran
1428      1428 The Holy Quran
1429      1429 The Holy Quran
1430      1430 The Holy Quran
1431      1431 The Holy Quran
1432      1432 The Holy Quran
1433      1433 The Holy Quran
1434      1434 The Holy Quran
1435      1435 The Holy Quran
1436      1436 The Holy Quran
1437      1437 The Holy Quran
1438      1438 The Holy Quran
1439      1439 The Holy Quran
1440      1440 The Holy Quran
1441      1441 The Holy Quran
1442      1442 The Holy Quran
1443      1443 The Holy Quran
1444      1444 The Holy Quran
1445      1445 The Holy Quran
1446      1446 The Holy Quran
1447      1447 The Holy Quran
1448      1448 The Holy Quran
1449      1449 The Holy Quran
1450      1450 The Holy Quran
1451      1451 The Holy Quran
1452      1452 The Holy Quran
1453      1453 The Holy Quran
1454      1454 The Holy Quran
1455      1455 The Holy Quran
1456      1456 The Holy Quran
1457      1457 The Holy Quran
1458      1458 The Holy Quran
1459      1459 The Holy Quran
1460      1460 The Holy Quran
1461      1461 The Holy Quran
1462      1462 The Holy Quran
1463      1463 The Holy Quran
1464      1464 The Holy Quran
1465      1465 The Holy Quran
1466      1466 The Holy Quran
1467      1467 The Holy Quran
1468      1468 The Holy Quran
1469      1469 The Holy Quran
1470      1470 The Holy Quran
1471      1471 The Holy Quran
1472      1472 The Holy Quran
1473      1473 The Holy Quran
1474      1474 The Holy Quran
1475      1475 The Holy Quran
1476      1476 The Holy Quran
1477      1477 The Holy Quran
1478      1478 The Holy Quran
1479      1479 The Holy Quran
1480      1480 The Holy Quran
1481      1481 The Holy Quran
1482      1482 The Holy Quran
1483      1483 The Holy Quran
1484      1484 The Holy Quran
1485      1485 The Holy Quran
1486      1486 The Holy Quran
1487      1487 The Holy Quran
1488      1488 The Holy Quran
1489      1489 The Holy Quran
1490      1490 The Holy Quran
1491      1491 The Holy Quran
1492      1492 The Holy Quran
1493      1493 The Holy Quran
1494      1494 The Holy Quran
1495      1495 The Holy Quran
1496      1496 The Holy Quran
1497      1497 The Holy Quran
1498      1498 The Holy Quran
1499      1499 The Holy Quran
1500      1500 The Holy Quran
1501      1501 The Holy Quran
1502      1502 The Holy Quran
1503      1503 The Holy Quran
1504      1504 The Holy Quran
1505      1505 The Holy Quran
1506      1506 The Holy Quran
1507      1507 The Holy Quran
1508      1508 The Holy Quran
1509      1509 The Holy Quran
1510      1510 The Holy Quran
1511      1511 The Holy Quran
1512      1512 The Holy Quran
1513      1513 The Holy Quran
1514      1514 The Holy Quran
1515      1515 The Holy Quran
1516      1516 The Holy Quran
1517      1517 The Holy Quran
1518      1518 The Holy Quran
1519      1519 The Holy Quran
1520      1520 The Holy Quran
1521      1521 The Holy Quran
1522      1522 The Holy Quran
1523      1523 The Holy Quran
1524      1524 The Holy Quran
1525      1525 The Holy Quran
1526      1526 The Holy Quran
1527      1527 The Holy Quran
1528      1528 The Holy Quran
1529      1529 The Holy Quran
1530      1530 The Holy Quran
1531      1531 The Holy Quran
1532      1532 The Holy Quran
1533      1533 The Holy Quran
1534      1534 The Holy Quran
1535      1535 The Holy Quran
1536      1536 The Holy Quran
1537      1537 The Holy Quran
1538      1538 The Holy Quran
1539      1539 The Holy Quran
1540      1540 The Holy Quran
1541      1541 The Holy Quran
1542      1542 The Holy Quran
1543      1543 The Holy Quran
1544      1544 The Holy Quran
1545      1545 The Holy Quran
1546      1546 The Holy Quran
1547      1547 The Holy Quran
1548      1548 The Holy Quran
1549      1549 The Holy Quran
1550      1550 The Holy Quran
1551      1551 The Holy Quran
1552      1552 The Holy Quran
1553      1553 The Holy Quran
1554      1554 The Holy Quran
1555      1555 The Holy Quran
1556      1556 The Holy Quran
1557      1557 The Holy Quran
1558      1558 The Holy Quran
1559      1559 The Holy Quran
1560      1560 The Holy Quran
1561      1561 The Holy Quran
1562      1562 The Holy Quran
1563      1563 The Holy Quran
1564      1564 The Holy Quran
1565      1565 The Holy Quran
1566      1566 The Holy Quran
1567      1567 The Holy Quran
1568      1568 The Holy Quran
1569      1569 The Holy Quran
1570      1570 The Holy Quran
1571      1571 The Holy Quran
1572      1572 The Holy Quran
1573      1573 The Holy Quran
1574      1574 The Holy Quran
1575      1575 The Holy Quran
1576      1576 The Holy Quran
1577      1577 The Holy Quran
1578      1578 The Holy Quran
1579      1579 The Holy Quran
1580      1580 The Holy Quran
1581      1581 The Holy Quran
1582      1582 The Holy Quran
1583      1583 The Holy Quran
1584      1584 The Holy Quran
1585      1585 The Holy Quran
1586      1586 The Holy Quran
1587      1587 The Holy Quran
1588      1588 The Holy Quran
1589      1589 The Holy Quran
1590      1590 The Holy Quran
1591      1591 The Holy Quran
1592      1592 The Holy Quran
1593      1593 The Holy Quran
1594      1594 The Holy Quran
1595      1595 The Holy Quran
1596      1596 The Holy Quran
1597      1597 The Holy Quran
1598      1598 The Holy Quran
1599      1599 The Holy Quran
1600      1600 The Holy Quran
1601      1601 The Holy Quran
1602      1602 The Holy Quran
1603      1603 The Holy Quran
1604      1604 The Holy Quran
1605      1605 The Holy Quran
1606      1606 The Holy Quran
1607      1607 The Holy Quran
1608      1608 The Holy Quran
1609      1609 The Holy Quran
1610      1610 The Holy Quran
1611      1611 The Holy Quran
1612      1612 The Holy Quran
1613      1613 The Holy Quran
1614      1614 The Holy Quran
1615      1615 The Holy Quran
1616      1616 The Holy Quran
1617      1617 The Holy Quran
1618      1618 The Holy Quran
1619      1619 The Holy Quran
1620      1620 The Holy Quran
1621      1621 The Holy Quran
1622      1622 The Holy Quran
1623      1623 The Holy Quran
1624      1624 The Holy Quran
1625      1625 The Holy Quran
1626      1626 The Holy Quran
1627      1627 The Holy Quran
1628      1628 The Holy Quran
1629      1629 The Holy Quran
1630      1630 The Holy Quran
1631      1631 The Holy Quran
1632      1632 The Holy Quran
1633      1633 The Holy Quran
1634      1634 The Holy Quran
1635      1635 The Holy Quran
1636      1636 The Holy Quran
1637      1637 The Holy Quran
1638      1638 The Holy Quran
1639      1639 The Holy Quran
1640      1640 The Holy Quran
1641      1641 The Holy Quran
1642      1642 The Holy Quran
1643      1643 The Holy Quran
1644      1644 The Holy Quran
1645      1645 The Holy Quran
1646      1646 The Holy Quran
1647      1647 The Holy Quran
1648      1648 The Holy Quran
1649      1649 The Holy Quran
1650      1650 The Holy Quran
1651      1651 The Holy Quran
1652      1652 The Holy Quran
1653      1653 The Holy Quran
1654      1654 The Holy Quran
1655      1655 The Holy Quran
1656      1656 The Holy Quran
1657      1657 The Holy Quran
1658      1658 The Holy Quran
1659      1659 The Holy Quran
1660      1660 The Holy Quran
1661      1661 The Holy Quran
1662      1662 The Holy Quran
1663      1663 The Holy Quran
1664      1664 The Holy Quran
1665      1665 The Holy Quran
1666      1666 The Holy Quran
1667      1667 The Holy Quran
1668      1668 The Holy Quran
1669      1669 The Holy Quran
1670      1670 The Holy Quran
1671      1671 The Holy Quran
1672      1672 The Holy Quran
1673      1673 The Holy Quran
1674      1674 The Holy Quran
1675      1675 The Holy Quran
1676      1676 The Holy Quran
1677      1677 The Holy Quran
1678      1678 The Holy Quran
1679      1679 The Holy Quran
1680      1680 The Holy Quran
1681      1681 The Holy Quran
1682      1682 The Holy Quran
1683      1683 The Holy Quran
1684      1684 The Holy Quran
1685      1685 The Holy Quran
1686      1686 The Holy Quran
1687      1687 The Holy Quran
1688      1688 The Holy Quran
1689      1689 The Holy Quran
1690      1690 The Holy Quran
1691      1691 The Holy Quran
1692      1692 The Holy Quran
1693      1693 The Holy Quran
1694      1694 The Holy Quran
1695      1695 The Holy Quran
1696      1696 The Holy Quran
1697      1697 The Holy Quran
1698      1698 The Holy Quran
1699      1699 The Holy Quran
1700      1700 The Holy Quran
1701      1701 The Holy Quran
1702      1702 The Holy Quran
1703      1703 The Holy Quran
1704      1704 The Holy Quran
1705      1705 The Holy Quran
1706      1706 The Holy Quran
1707      1707 The Holy Quran
1708      1708 The Holy Quran
1709      1709 The Holy Quran
1710      1710 The Holy Quran
1711      1711 The Holy Quran
1712      1712 The Holy Quran
1713      1713 The Holy Quran
1714      1714 The Holy Quran
1715      1715 The Holy Quran
1716      1716 The Holy Quran
1717      1717 The Holy Quran
1718      1718 The Holy Quran
1719      1719 The Holy Quran
1720      1720 The Holy Quran
1721      1721 The Holy Quran
1722      1722 The Holy Quran
1723      1723 The Holy Quran
1724      1724 The Holy Quran
1725      1725 The Holy Quran
1726      1726 The Holy Quran
1727      1727 The Holy Quran
1728      1728 The Holy Quran
1729      1729 The Holy Quran
1730      1730 The Holy Quran
1731      1731 The Holy Quran
1732      1732 The Holy Quran
1733      1733 The Holy Quran
1734      1734 The Holy Quran
1735      1735 The Holy Quran
1736      1736 The Holy Quran
1737      1737 The Holy Quran
1738      1738 The Holy Quran
1739      1739 The Holy Quran
1740      1740 The Holy Quran
1741      1741 The Holy Quran
1742      1742 The Holy Quran
1743      1743 The Holy Quran
1744      1744 The Holy Quran
1745      1745 The Holy Quran
1746      1746 The Holy Quran
1747      1747 The Holy Quran
1748      1748 The Holy Quran
1749      1749 The Holy Quran
1750      1750 The Holy Quran
1751      1751 The Holy Quran
1752      1752 The Holy Quran
1753      1753 The Holy Quran
1754      1754 The Holy Quran
1755      1755 The Holy Quran
1756      1756 The Holy Quran
1757      1757 The Holy Quran
1758      1758 The Holy Quran
1759      1759 The Holy Quran
1760      1760 The Holy Quran
1761      1761 The Holy Quran
1762      1762 The Holy Quran
1763      1763 The Holy Quran
1764      1764 The Holy Quran
1765      1765 The Holy Quran
1766      1766 The Holy Quran
1767      1767 The Holy Quran
1768      1768 The Holy Quran
1769      1769 The Holy Quran
1770      1770 The Holy Quran
1771      1771 The Holy Quran
1772      1772 The Holy Quran
1773      1773 The Holy Quran
1774      1774 The Holy Quran
1775      1775 The Holy Quran
1776      1776 The Holy Quran
1777      1777 The Holy Quran
1778      1778 The Holy Quran
1779      1779 The Holy Quran
1780      1780 The Holy Quran
1781      1781 The Holy Quran
1782      1782 The Holy Quran
1783      1783 The Holy Quran
1784      1784 The Holy Quran
1785      1785 The Holy Quran
1786      1786 The Holy Quran
1787      1787 The Holy Quran
1788      1788 The Holy Quran
1789      1789 The Holy Quran
1790      1790 The Holy Quran
1791      1791 The Holy Quran
1792      1792 The Holy Quran
1793      1793 The Holy Quran
1794      1794 The Holy Quran
1795      1795 The Holy Quran
1796      1796 The Holy Quran
1797      1797 The Holy Quran
1798      1798 The Holy Quran
1799      1799 The Holy Quran
1800      1800 The Holy Quran
1801      1801 The Holy Quran
1802      1802 The Holy Quran
1803      1803 The Holy Quran
1804      1804 The Holy Quran
1805      1805 The Holy Quran
1806      1806 The Holy Quran
1807      1807 The Holy Quran
1808      1808 The Holy Quran
1809      1809 The Holy Quran
1810      1810 The Holy Quran
1811      1811 The Holy Quran
1812      1812 The Holy Quran
1813      1813 The Holy Quran
1814      1814 The Holy Quran
1815      1815 The Holy Quran
1816      1816 The Holy Quran
1817      1817 The Holy Quran
1818      1818 The Holy Quran
1819      1819 The Holy Quran
1820      1820 The Holy Quran
1821      1821 The Holy Quran
1822      1822 The Holy Quran
1823      1823 The Holy Quran
1824      1824 The Holy Quran
1825      1825 The Holy Quran
1826      1826 The Holy Quran
1827      1827 The Holy Quran
1828      1828 The Holy Quran
1829      1829 The Holy Quran
1830      1830 The Holy Quran
1831      1831 The Holy Quran
1832      1832 The Holy Quran
1833      1833 The Holy Quran
1834      1834 The Holy Quran
1835      1835 The Holy Quran
1836      1836 The Holy Quran
1837      1837 The Holy Quran
1838      1838 The Holy Quran
1839      1839 The Holy Quran
1840      1840 The Holy Quran
1841      1841 The Holy Quran
1842      1842 The Holy Quran
1843      1843 The Holy Quran
1844      1844 The Holy Quran
1845      1845 The Holy Quran
1846      1846 The Holy Quran
1847      1847 The Holy Quran
1848      1848 The Holy Quran
1849      1849 The Holy Quran
1850      1850 The Holy Quran
1851      1851 The Holy Quran
1852      1852 The Holy Quran
1853      1853 The Holy Quran
1854      1854 The Holy Quran
1855      1855 The Holy Quran
1856      1856 The Holy Quran
1857      1857 The Holy Quran
1858      1858 The Holy Quran
1859      1859 The Holy Quran
1860      1860 The Holy Quran
1861      1861 The Holy Quran
1862      1862 The Holy Quran
1863      1863 The Holy Quran
1864      1864 The Holy Quran
1865      1865 The Holy Quran
1866      1866 The Holy Quran
1867      1867 The Holy Quran
1868      1868 The Holy Quran
1869      1869 The Holy Quran
1870      1870 The Holy Quran
1871      1871 The Holy Quran
1872      1872 The Holy Quran
1873      1873 The Holy Quran
1874      1874 The Holy Quran
1875      1875 The Holy Quran
1876      1876 The Holy Quran
1877      1877 The Holy Quran
1878      1878 The Holy Quran
1879      1879 The Holy Quran
1880      1880 The Holy Quran
1881      1881 The Holy Quran
1882      1882 The Holy Quran
1883      1883 The Holy Quran
1884      1884 The Holy Quran
1885      1885 The Holy Quran
1886      1886 The Holy Quran
1887      1887 The Holy Quran
1888      1888 The Holy Quran
1889      1889 The Holy Quran
1890      1890 The Holy Quran
1891      1891 The Holy Quran
1892      1892 The Holy Quran
1893      1893 The Holy Quran
1894      1894 The Holy Quran
1895      1895 The Holy Quran
1896      1896 The Holy Quran
1897      1897 The Holy Quran
1898      1898 The Holy Quran
1899      1899 The Holy Quran
1900      1900 The Holy Quran
1901      1901 The Holy Quran
1902      1902 The Holy Quran
1903      1903 The Holy Quran
1904      1904 The Holy Quran
1905      1905 The Holy Quran
1906      1906 The Holy Quran
1907      1907 The Holy Quran
1908      1908 The Holy Quran
1909      1909 The Holy Quran
1910      1910 The Holy Quran
1911      1911 The Holy Quran
1912      1912 The Holy Quran
1913      1913 The Holy Quran
1914      1914 The Holy Quran
1915      1915 The Holy Quran
1916      1916 The Holy Quran
1917      1917 The Holy Quran
1918      1918 The Holy Quran
1919      1919 The Holy Quran
1920      1920 The Holy Quran
1921      1921 The Holy Quran
1922      1922 The Holy Quran
1923      1923 The Holy Quran
1924      1924 The Holy Quran
1925      1925 The Holy Quran
1926      1926 The Holy Quran
1927      1927 The Holy Quran
1928      1928 The Holy Quran
1929      1929 The Holy Quran
1930      1930 The Holy Quran
1931      1931 The Holy Quran
1932      1932 The Holy Quran
1933      1933 The Holy Quran
1934      1934 The Holy Quran
1935      1935 The Holy Quran
1936      1936 The Holy Quran
1937      1937 The Holy Quran
1938      1938 The Holy Quran
1939      1939 The Holy Quran
1940      1940 The Holy Quran
1941      1941 The Holy Quran
1942      1942 The Holy Quran
1943      1943 The Holy Quran
1944      1944 The Holy Quran
1945      1945 The Holy Quran
1946      1946 The Holy Quran
1947      1947 The Holy Quran
1948      1948 The Holy Quran
1949      1949 The Holy Quran
1950      1950 The Holy Quran
1951      1951 The Holy Quran
1952      1952 The Holy Quran
1953      1953 The Holy Quran
1954      1954 The Holy Quran
1955      1955 The Holy Quran
1956      1956 The Holy Quran
1957      1957 The Holy Quran
1958      1958 The Holy Quran
1959      1959 The Holy Quran
1960      1960 The Holy Quran
1961      1961 The Holy Quran
1962      1962 The Holy Quran
1963      1963 The Holy Quran
1964      1964 The Holy Quran
1965      1965 The Holy Quran
1966      1966 The Holy Quran
1967      1967 The Holy Quran
1968      1968 The Holy Quran
1969      1969 The Holy Quran
1970      1970 The Holy Quran
1971      1971 The Holy Quran
1972      1972 The Holy Quran
1973      1973 The Holy Quran
1974      1974 The Holy Quran
1975      1975 The Holy Quran
1976      1976 The Holy Quran
1977      1977 The Holy Quran
1978      1978 The Holy Quran
1979      1979 The Holy Quran
1980      1980 The Holy Quran
1981      1981 The Holy Quran
1982      1982 The Holy Quran
1983      1983 The Holy Quran
1984      1984 The Holy Quran
1985      1985 The Holy Quran
1986      1986 The Holy Quran
1987      1987 The Holy Quran
1988      1988 The Holy Quran
1989      1989 The Holy Quran
1990      1990 The Holy Quran
1991      1991 The Holy Quran
1992      1992 The Holy Quran
1993      1993 The Holy Quran
1994      1994 The Holy Quran
1995      1995 The Holy Quran
1996      1996 The Holy Quran
1997      1997 The Holy Quran
1998      1998 The Holy Quran
1999      1999 The Holy Quran
2000      2000 The Holy Quran
2001      2001 The Holy Quran
2002      2002 The Holy Quran
2003      2003 The Holy Quran
2004      2004 The Holy Quran
2005      2005 The Holy Quran
2006      2006 The Holy Quran
2007      2007 The Holy Quran
2008      2008 The Holy Quran
2009      2009 The Holy Quran
2010      2010 The Holy Quran
2011      2011 The Holy Quran
2012      2012 The Holy Quran
2013      2013 The Holy Quran
2014      2014 The Holy Quran
2015      2015 The Holy Quran
2016      2016 The Holy Quran
2017      2017 The Holy Quran
2018      2018 The Holy Quran
2019      2019 The Holy Quran
2020      2020 The Holy Quran
2021      2021 The Holy Quran
2022      2022 The Holy Quran
2023      2023 The Holy Quran
2024      2024 The Holy Quran
2025      2025 The Holy Quran
2026      2026 The Holy Quran
2027      2027 The Holy Quran
2028      2028 The Holy Quran
2029      2029 The Holy Quran
2030      2030 The Holy Quran
2031      2031 The Holy Quran
2032      2032 The Holy Quran
2033      2033 The Holy Quran
2034      2034 The Holy Quran
2035      2035 The Holy Quran
2036      2036 The Holy Quran
2037      2037 The Holy Quran
2038      2038 The Holy Quran
2039      2039 The Holy Quran
2040      2040 The Holy Quran
2041      2041 The Holy Quran
2042      2042 The Holy Quran
2043      2043 The Holy Quran
2044      2044 The Holy Quran
2045      2045 The Holy Quran
2046      2046 The Holy Quran
2047      2047 The Holy Quran
2048      2048 The Holy Quran
2049      2049 The Holy Quran
2050      2050 The Holy Quran
2051      2051 The Holy Quran
2052      2052 The Holy Quran
2053      2053 The Holy Quran
2054      2054 The Holy Quran
2055      2055 The Holy Quran
2056      2056 The Holy Quran
2057      2057 The Holy Quran
2058      2058 The Holy Quran
2059      2059 The Holy Quran
2060      2060 The Holy Quran
2061      2061 The Holy Quran
2062      2062 The Holy Quran
2063      2063 The Holy Quran
2064      2064 The Holy Quran
2065      2065 The Holy Quran
2066      2066 The Holy Quran
2067      2067 The Holy Quran
2068      2068 The Holy Quran
2069      2069 The Holy Quran
2070      2070 The Holy Quran
2071      2071 The Holy Quran
2072      2072 The Holy Quran
2073      2073 The Holy Quran
2074      2074 The Holy Quran
2075      2075 The Holy Quran
2076      2076 The Holy Quran
2077      2077 The Holy Quran
2078      2078 The Holy Quran
2079      2079 The Holy Quran
2080      2080 The Holy Quran
2081      2081 The Holy Quran
2082      2082 The Holy Quran
2083      2083 The Holy Quran
2084      2084 The Holy Quran
2085      2085 The Holy Quran
2086      2086 The Holy Quran
2087      2087 The Holy Quran
2088      2088 The Holy Quran
2089      2089 The Holy Quran
2090      2090 The Holy Quran
2091      2091 The Holy Quran
2092      2092 The Holy Quran
2093      2093 The Holy Quran
2094      2094 The Holy Quran
2095      2095 The Holy Quran
2096      2096 The Holy Quran
2097      2097 The Holy Quran
2098      2098 The Holy Quran
2099      2099 The Holy Quran
2100      2100 The Holy Quran
2101      2101 The Holy Quran
2102      2102 The Holy Quran
2103      2103 The Holy Quran
2104      2104 The Holy Quran
2105      2105 The Holy Quran
2106      2106 The Holy Quran
2107      2107 The Holy Quran
2108      2108 The Holy Quran
2109      2109 The Holy Quran
2110      2110 The Holy Quran
2111      2111 The Holy Quran
2112      2112 The Holy Quran
2113      2113 The Holy Quran
2114      2114 The Holy Quran
2115      2115 The Holy Quran
2116      2116 The Holy Quran
2117      2117 The Holy Quran
2118      2118 The Holy Quran
2119      2119 The Holy Quran
2120      2120 The Holy Quran
2121      2121 The Holy Quran
2122      2122 The Holy Quran
2123      2123 The Holy Quran
2124      2124 The Holy Quran
2125      2125 The Holy Quran
2126      2126 The Holy Quran
2127      2127 The Holy Quran
2128      2128 The Holy Quran
2129      2129 The Holy Quran
2130      2130 The Holy Quran
2131      2131 The Holy Quran
2132      2132 The Holy Quran
2133      2133 The Holy Quran
2134      2134 The Holy Quran
2135      2135 The Holy Quran
2136      2136 The Holy Quran
2137      2137 The Holy Quran
2138      2138 The Holy Quran
2139      2139 The Holy Quran
2140      2140 The Holy Quran
2141      2141 The Holy Quran
2142      2142 The Holy Quran
2143      2143 The Holy Quran
2144      2144 The Holy Quran
2145      2145 The Holy Quran
2146      2146 The Holy Quran
2147      2147 The Holy Quran
2148      2148 The Holy Quran
2149      2149 The Holy Quran
2150      2150 The Holy Quran
2151      2151 The Holy Quran
2152      2152 The Holy Quran
2153      2153 The Holy Quran
2154      2154 The Holy Quran
2155      2155 The Holy Quran
2156      2156 The Holy Quran
2157      2157 The Holy Quran
2158      2158 The Holy Quran
2159      2159 The Holy Quran
2160      2160 The Holy Quran
2161      2161 The Holy Quran
2162      2162 The Holy Quran
2163      2163 The Holy Quran
2164      2164 The Holy Quran
2165      2165 The Holy Quran
2166      2166 The Holy Quran
2167      2167 The Holy Quran
2168      2168 The Holy Quran
2169      2169 The Holy Quran
2170      2170 The Holy Quran
2171      2171 The Holy Quran
2172      2172 The Holy Quran
2173      2173 The Holy Quran
2174      2174 The Holy Quran
2175      2175 The Holy Quran
2176      2176 The Holy Quran
2177      2177 The Holy Quran
2178      2178 The Holy Quran
2179      2179 The Holy Quran
2180      2180 The Holy Quran
2181      2181 The Holy Quran
2182      2182 The Holy Quran
2183      2183 The Holy Quran
2184      2184 The Holy Quran
2185      2185 The Holy Quran
2186      2186 The Holy Quran
2187      2187 The Holy Quran
2188      2188 The Holy Quran
2189      2189 The Holy Quran
2190      2190 The Holy Quran
2191      2191 The Holy Quran
2192      2192 The Holy Quran
2193      2193 The Holy Quran
2194      2194 The Holy Quran
2195      2195 The Holy Quran
2196      2196 The Holy Quran
2197      2197 The Holy Quran
2198      2198 The Holy Quran
2199      2199 The Holy Quran
2200      2200 The Holy Quran
2201      2201 The Holy Quran
2202      2202 The Holy Quran
2203      2203 The Holy Quran
2204      2204 The Holy Quran
2205      2205 The Holy Quran
2206      2206 The Holy Quran
2207      2207 The Holy Quran
2208      2208 The Holy Quran
2209      2209 The Holy Quran
2210      2210 The Holy Quran
2211      2211 The Holy Quran
2212      2212 The Holy Quran
2213      2213 The Holy Quran
2214      2214 The Holy Quran
2215      2215 The Holy Quran
2216      2216 The Holy Quran
2217      2217 The Holy Quran
2218      2218 The Holy Quran
2219      2219 The Holy Quran
2220      2220 The Holy Quran
2221      2221 The Holy Quran
2222      2222 The Holy Quran
2223      2223 The Holy Quran
2224      2224 The Holy Quran
2225      2225 The Holy Quran
2226      2226 The Holy Quran
2227      2227 The Holy Quran
2228      2228 The Holy Quran
2229      2229 The Holy Quran
2230      2230 The Holy Quran
2231      2231 The Holy Quran
2232      2232 The Holy Quran
2233      2233 The Holy Quran
2234      2234 The Holy Quran
2235      2235 The Holy Quran
2236      2236 The Holy Quran
2237      2237 The Holy Quran
2238      2238 The Holy Quran
2239      2239 The Holy Quran
2240      2240 The Holy Quran
2241      2241 The Holy Quran
2242      2242 The Holy Quran
2243      2243 The Holy Quran
2244      2244 The Holy Quran
2245      2245 The Holy Quran
2246      2246 The Holy Quran
2247      2247 The Holy Quran
2248      2248 The Holy Quran
2249      2249 The Holy Quran
2250      2250 The Holy Quran
2251      2251 The Holy Quran
2252      2252 The Holy Quran
2253      2253 The Holy Quran
2254      2254 The Holy Quran
2255      2255 The Holy Quran
2256      2256 The Holy Quran
2257      2257 The Holy Quran
2258      2258 The Holy Quran
2259      2259 The Holy Quran
2260      2260 The Holy Quran
2261      2261 The Holy Quran
2262      2262 The Holy Quran
2263      2263 The Holy Quran
2264      2264 The Holy Quran
2265      2265 The Holy Quran
2266      2266 The Holy Quran
2267      2267 The Holy Quran
2268      2268 The Holy Quran
2269      2269 The Holy Quran
2270      2270 The Holy Quran
2271      2271 The Holy Quran
2272      2272 The Holy Quran
2273      2273 The Holy Quran
2274      2274 The Holy Quran
2275      2275 The Holy Quran
2276      2276 The Holy Quran
2277      2277 The Holy Quran
2278      2278 The Holy Quran
2279      2279 The Holy Quran
2280      2280 The Holy Quran
2281      2281 The Holy Quran
2282      2282 The Holy Quran
2283      2283 The Holy Quran
2284      2284 The Holy Quran
2285      2285 The Holy Quran
2286      2286 The Holy Quran
2287      2287 The Holy Quran
2288      2288 The Holy Quran
2289      2289 The Holy Quran
2290      2290 The Holy Quran
2291      2291 The Holy Quran
2292      2292 The Holy Quran
2293      2293 The Holy Quran
2294      2294 The Holy Quran
2295      2295 The Holy Quran
2296      2296 The Holy Quran
2297      2297 The Holy Quran
2298      2298 The Holy Quran
2299      2299 The Holy Quran
2300      2300 The Holy Quran
2301      2301 The Holy Quran
2302      2302 The Holy Quran
2303      2303 The Holy Quran
2304      2304 The Holy Quran
2305      2305 The Holy Quran
2306      2306 The Holy Quran
2307      2307 The Holy Quran
2308      2308 The Holy Quran
2309      2309 The Holy Quran
2310      2310 The Holy Quran
2311      2311 The Holy Quran
2312      2312 The Holy Quran
2313      2313 The Holy Quran
2314      2314 The Holy Quran
2315      2315 The Holy Quran
2316      2316 The Holy Quran
2317      2317 The Holy Quran
2318      2318 The Holy Quran
2319      2319 The Holy Quran
2320      2320 The Holy Quran
2321      2321 The Holy Quran
2322      2322 The Holy Quran
2323      2323 The Holy Quran
2324      2324 The Holy Quran
2325      2325 The Holy Quran
2326      2326 The Holy Quran
2327      2327 The Holy Quran
2328      2328 The Holy Quran
2329      2329 The Holy Quran
2330      2330 The Holy Quran
2331      2331 The Holy Quran
2332      2332 The Holy Quran
2333      2333 The Holy Quran
2334      2334 The Holy Quran
2335      2335 The Holy Quran
2336      2336 The Holy Quran
2337      2337 The Holy Quran
2338      2338 The Holy Quran
2339      2339 The Holy Quran
2340      2340 The Holy Quran
2341      2341 The Holy Quran
2342      2342 The Holy Quran
2343      2343 The Holy Quran
2344      2344 The Holy Quran
2345      2345 The Holy Quran
2346      2346 The Holy Quran
2347      2347 The Holy Quran
2348      2348 The Holy Quran
2349      2349 The Holy Quran
2350      2350 The Holy Quran
2351      2351 The Holy Quran
2352      2352 The Holy Quran
2353      2353 The Holy Quran
2354      2354 The Holy Quran
2355      2355 The Holy Quran
2356      2356 The Holy Quran
2357      2357 The Holy Quran
2358      2358 The Holy Quran
2359      2359 The Holy Quran
2360      2360 The Holy Quran
2361      2361 The Holy Quran
2362      2362 The Holy Quran
2363      2363 The Holy Quran
2364      2364 The Holy Quran
2365      2365 The Holy Quran
2366      2366 The Holy Quran
2367      2367 The Holy Quran
2368      2368 The Holy Quran
2369      2369 The Holy Quran
2370      2370 The Holy Quran
2371      2371 The Holy Quran
2372      2372 The Holy Quran
2373      2373 The Holy Quran
2374      2374 The Holy Quran
2375      2375 The Holy Quran
2376      2376 The Holy Quran
2377      2377 The Holy Quran
2378      2378 The Holy Quran
2379      2379 The Holy Quran
2380      2380 The Holy Quran
2381      2381 The Holy Quran
2382      2382 The Holy Quran
2383      2383 The Holy Quran
2384      2384 The Holy Quran
2385      2385 The Holy Quran
2386      2386 The Holy Quran
2387      2387 The Holy Quran
2388      2388 The Holy Quran
2389      2389 The Holy Quran
2390      2390 The Holy Quran
2391      2391 The Holy Quran
2392      2392 The Holy Quran
2393      2393 The Holy Quran
2394      2394 The Holy Quran
2395      2395 The Holy Quran
2396      2396 The Holy Quran
2397      2397 The Holy Quran
2398      2398 The Holy Quran
2399      2399 The Holy Quran
2400      2400 The Holy Quran
2401      2401 The Holy Quran
2402      2402 The Holy Quran
2403      2403 The Holy Quran
2404      2404 The Holy Quran
2405      2405 The Holy Quran
2406      2406 The Holy Quran
2407      2407 The Holy Quran
2408      2408 The Holy Quran
2409      2409 The Holy Quran
2410      2410 The Holy Quran
2411      2411 The Holy Quran
2412      2412 The Holy Quran
2413      2413 The Holy Quran
2414      2414 The Holy Quran
2415      2415 The Holy Quran
2416      2416 The Holy Quran
2417      2417 The Holy Quran
2418      2418 The Holy Quran
2419      2419 The Holy Quran
2420      2420 The Holy Quran
2421      2421 The Holy Quran
2422      2422 The Holy Quran
2423      2423 The Holy Quran
2424      2424 The Holy Quran
2425      2425 The Holy Quran
2426      2426 The Holy Quran
2427      2427 The Holy Quran
2428      2428 The Holy Quran
2429      2429 The Holy Quran
2430      2430 The Holy Quran
2431      2431 The Holy Quran
2432      2432 The Holy Quran
2433      2433 The Holy Quran
2434      2434 The Holy Quran
2435      2435 The Holy Quran
2436      2436 The Holy Quran
2437      2437 The Holy Quran
2438      2438 The Holy Quran
2439      2439 The Holy Quran
2440      2440 The Holy Quran
2441      2441 The Holy Quran
2442      2442 The Holy Quran
2443      2443 The Holy Quran
2444      2444 The Holy Quran
2445      2445 The Holy Quran
2446      2446 The Holy Quran
2447      2447 The Holy Quran
2448      2448 The Holy Quran
2449      2449 The Holy Quran
2450      2450 The Holy Quran
2451      2451 The Holy Quran
2452      2452 The Holy Quran
2453      2453 The Holy Quran
2454      2454 The Holy Quran
2455      2455 The Holy Quran
2456      2456 The Holy Quran
2457      2457 The Holy Quran
2458      2458 The Holy Quran
2459      2459 The Holy Quran
2460      2460 The Holy Quran
2461      2461 The Holy Quran
2462      2462 The Holy Quran
2463      2463 The Holy Quran
2464      2464 The Holy Quran
2465      2465 The Holy Quran
2466      2466 The Holy Quran
2467      2467 The Holy Quran
2468      2468 The Holy Quran
2469      2469 The Holy Quran
2470      2470 The Holy Quran
2471      2471 The Holy Quran
2472      2472 The Holy Quran
2473      2473 The Holy Quran
2474      2474 The Holy Quran
2475      2475 The Holy Quran
2476      2476 The Holy Quran
2477      2477 The Holy Quran
2478      2478 The Holy Quran
2479      2479 The Holy Quran
2480      2480 The Holy Quran
2481      2481 The Holy Quran
2482      2482 The Holy Quran
2483      2483 The Holy Quran
2484      2484 The Holy Quran
2485      2485 The Holy Quran
2486      2486 The Holy Quran
2487      2487 The Holy Quran
2488      2488 The Holy Quran
2489      2489 The Holy Quran
2490      2490 The Holy Quran
2491      2491 The Holy Quran
2492      2492 The Holy Quran
2493      2493 The Holy Quran
2494      2494 The Holy Quran
2495      2495 The Holy Quran
2496      2496 The Holy Quran
2497      2497 The Holy Quran
2498      2498 The Holy Quran
2499      2499 The Holy Quran
2500      2500 The Holy Quran
2501      2501 The Holy Quran
2502      2502 The Holy Quran
2503      2503 The Holy Quran
2504      2504 The Holy Quran
2505      2505 The Holy Quran
2506      2506 The Holy Quran
2507      2507 The Holy Quran
2508      2508 The Holy Quran
2509      2509 The Holy Quran
2510      2510 The Holy Quran
2511      2511 The Holy Quran
2512      2512 The Holy Quran
2513      2513 The Holy Quran
2514      2514 The Holy Quran
2515      2515 The Holy Quran
2516      2516 The Holy Quran
2517      2517 The Holy Quran
2518      2518 The Holy Quran
2519      2519 The Holy Quran
2520      2520 The Holy Quran
2521      2521 The Holy Quran
2522      2522 The Holy Quran
2523      2523 The Holy Quran
2524      2524 The Holy Quran
2525      2525 The Holy Quran
2526      2526 The Holy Quran
2527      2527 The Holy Quran
2528      2528 The Holy Quran
2529      2529 The Holy Quran
2530      2530 The Holy Quran
2531      2531 The Holy Quran
2532      2532 The Holy Quran
2533      2533 The Holy Quran
2534      2534 The Holy Quran
2535      2535 The Holy Quran
2536      2536 The Holy Quran
2537      2537 The Holy Quran
2538      2538 The Holy Quran
2539      2539 The Holy Quran
2540      2540 The Holy Quran
2541      2541 The Holy Quran
2542      2542 The Holy Quran
2543      2543 The Holy Quran
2544      2544 The Holy Quran
2545      2545 The Holy Quran
2546      2546 The Holy Quran
2547      2547 The Holy Quran
2548      2548 The Holy Quran
2549      2549 The Holy Quran
2550      2550 The Holy Quran
2551      2551 The Holy Quran
2552      2552 The Holy Quran
2553      2553 The Holy Quran
2554      2554 The Holy Quran
2555      2555 The Holy Quran
2556      2556 The Holy Quran
2557      2557 The Holy Quran
2558      2558 The Holy Quran
2559      2559 The Holy Quran
2560      2560 The Holy Quran
2561      2561 The Holy Quran
2562      2562 The Holy Quran
2563      2563 The Holy Quran
2564      2564 The Holy Quran
2565      2565 The Holy Quran
2566      2566 The Holy Quran
2567      2567 The Holy Quran
2568      2568 The Holy Quran
2569      2569 The Holy Quran
2570      2570 The Holy Quran
2571      2571 The Holy Quran
2572      2572 The Holy Quran
2573      2573 The Holy Quran
2574      2574 The Holy Quran
2575      2575 The Holy Quran
2576      2576 The Holy Quran
2577      2577 The Holy Quran
2578      2578 The Holy Quran
2579      2579 The Holy Quran
2580      2580 The Holy Quran
2581      2581 The Holy Quran
2582      2582 The Holy Quran
2583      2583 The Holy Quran
2584      2584 The Holy Quran
2585      2585 The Holy Quran
2586      2586 The Holy Quran
2587      2587 The Holy Quran
2588      2588 The Holy Quran
2589      2589 The Holy Quran
2590      2590 The Holy Quran
2591      2591 The Holy Quran
2592      2592 The Holy Quran
2593      2593 The Holy Quran
2594      2594 The Holy Quran
2595      2595 The Holy Quran
2596      2596 The Holy Quran
2597      2597 The Holy Quran
2598      2598 The Holy Quran
2599      2599 The Holy Quran
2600      2600 The Holy Quran
2601      2601 The Holy Quran
2602      2602 The Holy Quran
2603      2603 The Holy Quran
2604      2604 The Holy Quran
2605      2605 The Holy Quran
2606      2606 The Holy Quran
2607      2607 The Holy Quran
2608      2608 The Holy Quran
2609      2609 The Holy Quran
2610      2610 The Holy Quran
2611      2611 The Holy Quran
2612      2612 The Holy Quran
2613      2613 The Holy Quran
2614      2614 The Holy Quran
2615      2615 The Holy Quran
2616      2616 The Holy Quran
2617      2617 The Holy Quran
2618      2618 The Holy Quran
2619      2619 The Holy Quran
2620      2620 The Holy Quran
2621      2621 The Holy Quran
2622      2622 The Holy Quran
2623      2623 The Holy Quran
2624      2624 The Holy Quran
2625      2625 The Holy Quran
2626      2626 The Holy Quran
2627      2627 The Holy Quran
2628      2628 The Holy Quran
2629      2629 The Holy Quran
2630      2630 The Holy Quran
2631      2631 The Holy Quran
2632      2632 The Holy Quran
2633      2633 The Holy Quran
2634      2634 The Holy Quran
2635      2635 The Holy Quran
2636      2636 The Holy Quran
2637      2637 The Holy Quran
2638      2638 The Holy Quran
2639      2639 The Holy Quran
2640      2640 The Holy Quran
2641      2641 The Holy Quran
2642      2642 The Holy Quran
2643      2643 The Holy Quran
2644      2644 The Holy Quran
2645      2645 The Holy Quran
2646      2646 The Holy Quran
2647      2647 The Holy Quran
2648      2648 The Holy Quran
2649      2649 The Holy Quran
2650      2650 The Holy Quran
2651      2651 The Holy Quran
2652      2652 The Holy Quran
2653      2653 The Holy Quran
2654      2654 The Holy Quran
2655      2655 The Holy Quran
2656      2656 The Holy Quran
2657      2657 The Holy Quran
2658      2658 The Holy Quran
2659      2659 The Holy Quran
2660      2660 The Holy Quran
2661      2661 The Holy Quran
2662      2662 The Holy Quran
2663      2663 The Holy Quran
2664      2664 The Holy Quran
2665      2665 The Holy Quran
2666      2666 The Holy Quran
2667      2667 The Holy Quran
2668      2668 The Holy Quran
2669      2669 The Holy Quran
2670      2670 The Holy Quran
2671      2671 The Holy Quran
2672      2672 The Holy Quran
2673      2673 The Holy Quran
2674      2674 The Holy Quran
2675      2675 The Holy Quran
2676      2676 The Holy Quran
2677      2677 The Holy Quran
2678      2678 The Holy Quran
2679      2679 The Holy Quran
2680      2680 The Holy Quran
2681      2681 The Holy Quran
2682      2682 The Holy Quran
2683      2683 The Holy Quran
2684      2684 The Holy Quran
2685      2685 The Holy Quran
2686      2686 The Holy Quran
2687      2687 The Holy Quran
2688      2688 The Holy Quran
2689      2689 The Holy Quran
2690      2690 The Holy Quran
2691      2691 The Holy Quran
2692      2692 The Holy Quran
2693      2693 The Holy Quran
2694      2694 The Holy Quran
2695      2695 The Holy Quran
2696      2696 The Holy Quran
2697      2697 The Holy Quran
2698      2698 The Holy Quran
2699      2699 The Holy Quran
2700      2700 The Holy Quran
2701      2701 The Holy Quran
2702      2702 The Holy Quran
2703      2703 The Holy Quran
2704      2704 The Holy Quran
2705      2705 The Holy Quran
2706      2706 The Holy Quran
2707      2707 The Holy Quran
2708      2708 The Holy Quran
2709      2709 The Holy Quran
2710      2710 The Holy Quran
2711      2711 The Holy Quran
2712      2712 The Holy Quran
2713      2713 The Holy Quran
2714      2714 The Holy Quran
2715      2715 The Holy Quran
2716      2716 The Holy Quran
2717      2717 The Holy Quran
2718      2718 The Holy Quran
2719      2719 The Holy Quran
2720      2720 The Holy Quran
2721      2721 The Holy Quran
2722      2722 The Holy Quran
2723      2723 The Holy Quran
2724      2724 The Holy Quran
2725      2725 The Holy Quran
2726      2726 The Holy Quran
2727      2727 The Holy Quran
2728      2728 The Holy Quran
2729      2729 The Holy Quran
2730      2730 The Holy Quran
2731      2731 The Holy Quran
2732      2732 The Holy Quran
2733      2733 The Holy Quran
2734      2734 The Holy Quran
2735      2735 The Holy Quran
2736      2736 The Holy Quran
2737      2737 The Holy Quran
2738      2738 The Holy Quran
2739      2739 The Holy Quran
2740      2740 The Holy Quran
2741      2741 The Holy Quran
2742      2742 The Holy Quran
2743      2743 The Holy Quran
2744      2744 The Holy Quran
2745      2745 The Holy Quran
2746      2746 The Holy Quran
2747      2747 The Holy Quran
2748      2748 The Holy Quran
2749      2749 The Holy Quran
2750      2750 The Holy Quran
2751      2751 The Holy Quran
2752      2752 The Holy Quran
2753      2753 The Holy Quran
2754      2754 The Holy Quran
2755      2755 The Holy Quran
2756      2756 The Holy Quran
2757      2757 The Holy Quran
2758      2758 The Holy Quran
2759      2759 The Holy Quran
2760      2760 The Holy Quran
2761      2761 The Holy Quran
2762      2762 The Holy Quran
2763      2763 The Holy Quran
2764      2764 The Holy Quran
2765      2765 The Holy Quran
2766      2766 The Holy Quran
2767      2767 The Holy Quran
2768      2768 The Holy Quran
2769      2769 The Holy Quran
2770      2770 The Holy Quran
2771      2771 The Holy Quran
2772      2772 The Holy Quran
2773      2773 The Holy Quran
2774      2774 The Holy Quran
2775      2775 The Holy Quran
2776      2776 The Holy Quran
2777      2777 The Holy Quran
2778      2778 The Holy Quran
2779      2779 The Holy Quran
2780      2780 The Holy Quran
2781      2781 The Holy Quran
2782      2782 The Holy Quran
2783      2783 The Holy Quran
2784      2784 The Holy Quran
2785      2785 The Holy Quran
2786      2786 The Holy Quran
2787      2787 The Holy Quran
2788      2788 The Holy Quran
2789      2789 The Holy Quran
2790      2790 The Holy Quran
2791      2791 The Holy Quran
2792      2792 The Holy Quran
2793      2793 The Holy Quran
2794      2794 The Holy Quran
2795      2795 The Holy Quran
2796      2796 The Holy Quran
2797      2797 The Holy Quran
2798      2798 The Holy Quran
2799      2799 The Holy Quran
2800      2800 The Holy Quran
2801      2801 The Holy Quran
2802      2802 The Holy Quran
2803      2803 The Holy Quran
2804      2804 The Holy Quran
2805      2805 The Holy Quran
2806      2806 The Holy Quran
2807      2807 The Holy Quran
2808      2808 The Holy Quran
2809      2809 The Holy Quran
2810      2810 The Holy Quran
2811      2811 The Holy Quran
2812      2812 The Holy Quran
2813      2813 The Holy Quran
2814      2814 The Holy Quran
2815      2815 The Holy Quran
2816      2816 The Holy Quran
2817      2817 The Holy Quran
2818      2818 The Holy Quran
2819      2819 The Holy Quran
2820      2820 The Holy Quran
2821      2821 The Holy Quran
2822      2822 The Holy Quran
2823      2823 The Holy Quran
2824      2824 The Holy Quran
2825      2825 The Holy Quran
2826      2826 The Holy Quran
2827      2827 The Holy Quran
2828      2828 The Holy Quran
2829      2829 The Holy Quran
2830      2830 The Holy Quran
2831      2831 The Holy Quran
2832      2832 The Holy Quran
2833      2833 The Holy Quran
2834      2834 The Holy Quran
2835      2835 The Holy Quran
2836      2836 The Holy Quran
2837      2837 The Holy Quran
2838      2838 The Holy Quran
2839      2839 The Holy Quran
2840      2840 The Holy Quran
2841      2841 The Holy Quran
2842      2842 The Holy Quran
2843      2843 The Holy Quran
2844      2844 The Holy Quran
2845      2845 The Holy Quran
2846      2846 The Holy Quran
2847      2847 The Holy Quran
2848      2848 The Holy Quran
2849      2849 The Holy Quran
2850      2850 The Holy Quran
2851      2851 The Holy Quran
2852      2852 The Holy Quran
2853      2853 The Holy Quran
2854      2854 The Holy Quran
2855      2855 The Holy Quran
2856      2856 The Holy Quran
2857      2857 The Holy Quran
2858      2858 The Holy Quran
2859      2859 The Holy Quran
2860      2860 The Holy Quran
2861      2861 The Holy Quran
2862      2862 The Holy Quran
2863      2863 The Holy Quran
2864      2864 The Holy Quran
2865      2865 The Holy Quran
2866      2866 The Holy Quran
2867      2867 The Holy Quran
2868      2868 The Holy Quran
2869      2869 The Holy Quran
2870      2870 The Holy Quran
2871      2871 The Holy Quran
2872      2872 The Holy Quran
2873      2873 The Holy Quran
2874      2874 The Holy Quran
2875      2875 The Holy Quran
2876      2876 The Holy Quran
2877      2877 The Holy Quran
2878      2878 The Holy Quran
2879      2879 The Holy Quran
2880      2880 The Holy Quran
2881      2881 The Holy Quran
2882      2882 The Holy Quran
2883      2883 The Holy Quran
2884      2884 The Holy Quran
2885      2885 The Holy Quran
2886      2886 The Holy Quran
2887      2887 The Holy Quran
2888      2888 The Holy Quran
2889      2889 The Holy Quran
2890      2890 The Holy Quran
2891      2891 The Holy Quran
2892      2892 The Holy Quran
2893      2893 The Holy Quran
2894      2894 The Holy Quran
2895      2895 The Holy Quran
2896      2896 The Holy Quran
2897      2897 The Holy Quran
2898      2898 The Holy Quran
2899      2899 The Holy Quran
2900      2900 The Holy Quran
2901      2901 The Holy Quran
2902      2902 The Holy Quran
2903      2903 The Holy Quran
2904      2904 The Holy Quran
2905      2905 The Holy Quran
2906      2906 The Holy Quran
2907      2907 The Holy Quran
2908      2908 The Holy Quran
2909      2909 The Holy Quran
2910      2910 The Holy Quran
2911      2911 The Holy Quran
2912      2912 The Holy Quran
2913      2913 The Holy Quran
2914      2914 The Holy Quran
2915      2915 The Holy Quran
2916      2916 The Holy Quran
2917      2917 The Holy Quran
2918      2918 The Holy Quran
2919      2919 The Holy Quran
2920      2920 The Holy Quran
2921      2921 The Holy Quran
2922      2922 The Holy Quran
2923      2923 The Holy Quran
2924      2924 The Holy Quran
2925      2925 The Holy Quran
2926      2926 The Holy Quran
2927      2927 The Holy Quran
2928      2928 The Holy Quran
2929      2929 The Holy Quran
2930      2930 The Holy Quran
2931      2931 The Holy Quran
2932      2932 The Holy Quran
2933      2933 The Holy Quran
2934      2934 The Holy Quran
2935      2935 The Holy Quran
2936      2936 The Holy Quran
2937      2937 The Holy Quran
2938      2938 The Holy Quran
2939      2939 The Holy Quran
2940      2940 The Holy Quran
2941      2941 The Holy Quran
2942      2942 The Holy Quran
2943      2943 The Holy Quran
2944      2944 The Holy Quran
2945      2945 The Holy Quran
2946      2946 The Holy Quran
2947      2947 The Holy Quran
2948      2948 The Holy Quran
2949      2949 The Holy Quran
2950      2950 The Holy Quran
2951      2951 The Holy Quran
2952      2952 The Holy Quran
2953      2953 The Holy Quran
2954      2954 The Holy Quran
2955      2955 The Holy Quran
2956      2956 The Holy Quran
2957      2957 The Holy Quran
2958      2958 The Holy Quran
2959      2959 The Holy Quran
2960      2960 The Holy Quran
2961      2961 The Holy Quran
2962      2962 The Holy Quran
2963      2963 The Holy Quran
2964      2964 The Holy Quran
2965      2965 The Holy Quran
2966      2966 The Holy Quran
2967      2967 The Holy Quran
2968      2968 The Holy Quran
2969      2969 The Holy Quran
2970      2970 The Holy Quran
2971      2971 The Holy Quran
2972      2972 The Holy Quran
2973      2973 The Holy Quran
2974      2974 The Holy Quran
2975      2975 The Holy Quran
2976      2976 The Holy Quran
2977      2977 The Holy Quran
2978      2978 The Holy Quran
2979      2979 The Holy Quran
2980      2980 The Holy Quran
2981      2981 The Holy Quran
2982      2982 The Holy Quran
2983      2983 The Holy Quran
2984      2984 The Holy Quran
2985      2985 The Holy Quran
2986      2986 The Holy Quran
2987      2987 The Holy Quran
2988      2988 The Holy Quran
2989      2989 The Holy Quran
2990      2990 The Holy Quran
2991      2991 The Holy Quran
2992      2992 The Holy Quran
2993      2993 The Holy Quran
2994      2994 The Holy Quran
2995      2995 The Holy Quran
2996      2996 The Holy Quran
2997      2997 The Holy Quran
2998      2998 The Holy Quran
2999      2999 The Holy Quran
3000      3000 The Holy Quran
3001      3001 The Holy Quran
3002      3002 The Holy Quran
3003      3003 The Holy Quran
3004      3004 The Holy Quran
3005      3005 The Holy Quran
3006      3006 The Holy Quran
3007      3007 The Holy Quran
3008      3008 The Holy Quran
3009      3009 The Holy Quran
3010      3010 The Holy Quran
3011      3011 The Holy Quran
3012      3012 The Holy Quran
3013      3013 The Holy Quran
3014      3014 The Holy Quran
3015      3015 The Holy Quran
3016      3016 The Holy Quran
3017      3017 The Holy Quran
3018      3018 The Holy Quran
3019      3019 The Holy Quran
3020      3020 The Holy Quran
3021      3021 The Holy Quran
3022      3022 The Holy Quran
3023      3023 The Holy Quran
3024      3024 The Holy Quran
3025      3025 The Holy Quran
3026      3026 The Holy Quran
3027      3027 The Holy Quran
3028      3028 The Holy Quran
3029      3029 The Holy Quran
3030      3030 The Holy Quran
3031      3031 The Holy Quran
3032      3032 The Holy Quran
3033      3033 The Holy Quran
3034      3034 The Holy Quran
3035      3035 The Holy Quran
3036      3036 The Holy Quran
3037      3037 The Holy Quran
3038      3038 The Holy Quran
3039      3039 The Holy Quran
3040      3040 The Holy Quran
3041      3041 The Holy Quran
3042      3042 The Holy Quran
3043      3043 The Holy Quran
3044      3044 The Holy Quran
3045      3045 The Holy Quran
3046      3046 The Holy Quran
3047      3047 The Holy Quran
3048      3048 The Holy Quran
3049      3049 The Holy Quran
3050      3050 The Holy Quran
3051      3051 The Holy Quran
3052      3052 The Holy Quran
3053      3053 The Holy Quran
3054      3054 The Holy Quran
3055      3055 The Holy Quran
3056      3056 The Holy Quran
3057      3057 The Holy Quran
3058      3058 The Holy Quran
3059      3059 The Holy Quran
3060      3060 The Holy Quran
3061      3061 The Holy Quran
3062      3062 The Holy Quran
3063      3063 The Holy Quran
3064      3064 The Holy Quran
3065      3065 The Holy Quran
3066      3066 The Holy Quran
3067      3067 The Holy Quran
3068      3068 The Holy Quran
3069      3069 The Holy Quran
3070      3070 The Holy Quran
3071      3071 The Holy Quran
3072      3072 The Holy Quran
3073      3073 The Holy Quran
3074      3074 The Holy Quran
3075      3075 The Holy Quran
3076      3076 The Holy Quran
3077      3077 The Holy Quran
3078      3078 The Holy Quran
3079      3079 The Holy Quran
3080      3080 The Holy Quran
3081      3081 The Holy Quran
3082      3082 The Holy Quran
3083      3083 The Holy Quran
3084      3084 The Holy Quran
3085      3085 The Holy Quran
3086      3086 The Holy Quran
3087      3087 The Holy Quran
3088      3088 The Holy Quran
3089      3089 The Holy Quran
3090      3090 The Holy Quran
3091      3091 The Holy Quran
3092      3092 The Holy Quran
3093      3093 The Holy Quran
3094      3094 The Holy Quran
3095      3095 The Holy Quran
3096      3096 The Holy Quran
3097      3097 The Holy Quran
3098      3098 The Holy Quran
3099      3099 The Holy Quran
3100      3100 The Holy Quran
3101      3101 The Holy Quran
3102      3102 The Holy Quran
3103      3103 The Holy Quran
3104      3104 The Holy Quran
3105      3105 The Holy Quran
3106      3106 The Holy Quran
3107      3107 The Holy Quran
3108      3108 The Holy Quran
3109      3109 The Holy Quran
3110      3110 The Holy Quran
3111      3111 The Holy Quran
3112      3112 The Holy Quran
3113      3113 The Holy Quran
3114      3114 The Holy Quran
3115      3115 The Holy Quran
3116      3116 The Holy Quran
3117      3117 The Holy Quran
3118      3118 The Holy Quran
3119      3119 The Holy Quran
3120      3120 The Holy Quran
3121      3121 The Holy Quran
3122      3122 The Holy Quran
3123      3123 The Holy Quran
3124      3124 The Holy Quran
3125      3125 The Holy Quran
3126      3126 The Holy Quran
3127      3127 The Holy Quran
3128      3128 The Holy Quran
3129      3129 The Holy Quran
3130      3130 The Holy Quran
3131      3131 The Holy Quran
3132      3132 The Holy Quran
3133      3133 The Holy Quran
3134      3134 The Holy Quran
3135      3135 The Holy Quran
3136      3136 The Holy Quran
3137      3137 The Holy Quran
3138      3138 The Holy Quran
3139      3139 The Holy Quran
3140      3140 The Holy Quran
3141      3141 The Holy Quran
3142      3142 The Holy Quran
3143      3143 The Holy Quran
3144      3144 The Holy Quran
3145      3145 The Holy Quran
3146      3146 The Holy Quran
3147      3147 The Holy Quran
3148      3148 The Holy Quran
3149      3149 The Holy Quran
3150      3150 The Holy Quran
3151      3151 The Holy Quran
3152      3152 The Holy Quran
3153      3153 The Holy Quran
3154      3154 The Holy Quran
3155      3155 The Holy Quran
3156      3156 The Holy Quran
3157      3157 The Holy Quran
3158      3158 The Holy Quran
3159      3159 The Holy Quran
3160      3160 The Holy Quran
3161      3161 The Holy Quran
3162      3162 The Holy Quran
3163      3163 The Holy Quran
3164      3164 The Holy Quran
3165      3165 The Holy Quran
3166      3166 The Holy Quran
3167      3167 The Holy Quran
3168      3168 The Holy Quran
3169      3169 The Holy Quran
3170      3170 The Holy Quran
3171      3171 The Holy Quran
3172      3172 The Holy Quran
3173      3173 The Holy Quran
3174      3174 The Holy Quran
3175      3175 The Holy Quran
3176      3176 The Holy Quran
3177      3177 The Holy Quran
3178      3178 The Holy Quran
3179      3179 The Holy Quran
3180      3180 The Holy Quran
3181      3181 The Holy Quran
3182      3182 The Holy Quran
3183      3183 The Holy Quran
3184      3184 The Holy Quran
3185      3185 The Holy Quran
3186      3186 The Holy Quran
3187      3187 The Holy Quran
3188      3188 The Holy Quran
3189      3189 The Holy Quran
3190      3190 The Holy Quran
3191      3191 The Holy Quran
3192      3192 The Holy Quran
3193      3193 The Holy Quran
3194      3194 The Holy Quran
3195      3195 The Holy Quran
3196      3196 The Holy Quran
3197      3197 The Holy Quran
3198      3198 The Holy Quran
3199      3199 The Holy Quran
3200      3200 The Holy Quran
3201      3201 The Holy Quran
3202      3202 The Holy Quran
3203      3203 The Holy Quran
3204      3204 The Holy Quran
3205      3205 The Holy Quran
3206      3206 The Holy Quran
3207      3207 The Holy Quran
3208      3208 The Holy Quran
3209      3209 The Holy Quran
3210      3210 The Holy Quran
3211      3211 The Holy Quran
3212      3212 The Holy Quran
3213      3213 The Holy Quran
3214      3214 The Holy Quran
3215      3215 The Holy Quran
3216      3216 The Holy Quran
3217      3217 The Holy Quran
3218      3218 The Holy Quran
3219      3219 The Holy Quran
3220      3220 The Holy Quran
3221      3221 The Holy Quran
3222      3222 The Holy Quran
3223      3223 The Holy Quran
3224      3224 The Holy Quran
3225      3225 The Holy Quran
3226      3226 The Holy Quran
3227      3227 The Holy Quran
3228      3228 The Holy Quran
3229      3229 The Holy Quran
3230      3230 The Holy Quran
3231      3231 The Holy Quran
3232      3232 The Holy Quran
3233      3233 The Holy Quran
3234      3234 The Holy Quran
3235      3235 The Holy Quran
3236      3236 The Holy Quran
3237      3237 The Holy Quran
3238      3238 The Holy Quran
3239      3239 The Holy Quran
3240      3240 The Holy Quran
3241      3241 The Holy Quran
3242      3242 The Holy Quran
3243      3243 The Holy Quran
3244      3244 The Holy Quran
3245      3245 The Holy Quran
3246      3246 The Holy Quran
3247      3247 The Holy Quran
3248      3248 The Holy Quran
3249      3249 The Holy Quran
3250      3250 The Holy Quran
3251      3251 The Holy Quran
3252      3252 The Holy Quran
3253      3253 The Holy Quran
3254      3254 The Holy Quran
3255      3255 The Holy Quran
3256      3256 The Holy Quran
3257      3257 The Holy Quran
3258      3258 The Holy Quran
3259      3259 The Holy Quran
3260      3260 The Holy Quran
3261      3261 The Holy Quran
3262      3262 The Holy Quran
3263      3263 The Holy Quran
3264      3264 The Holy Quran
3265      3265 The Holy Quran
3266      3266 The Holy Quran
3267      3267 The Holy Quran
3268      3268 The Holy Quran
3269      3269 The Holy Quran
3270      3270 The Holy Quran
3271      3271 The Holy Quran
3272      3272 The Holy Quran
3273      3273 The Holy Quran
3274      3274 The Holy Quran
3275      3275 The Holy Quran
3276      3276 The Holy Quran
3277      3277 The Holy Quran
3278      3278 The Holy Quran
3279      3279 The Holy Quran
3280      3280 The Holy Quran
3281      3281 The Holy Quran
3282      3282 The Holy Quran
3283      3283 The Holy Quran
3284      3284 The Holy Quran
3285      3285 The Holy Quran
3286      3286 The Holy Quran
3287      3287 The Holy Quran
3288      3288 The Holy Quran
3289      3289 The Holy Quran
3290      3290 The Holy Quran
3291      3291 The Holy Quran
3292      3292 The Holy Quran
3293      3293 The Holy Quran
3294      3294 The Holy Quran
3295      3295 The Holy Quran
3296      3296 The Holy Quran
3297      3297 The Holy Quran
3298      3298 The Holy Quran
3299      3299 The Holy Quran
3300      3300 The Holy Quran
3301      3301 The Holy Quran
3302      3302 The Holy Quran
3303      3303 The Holy Quran
3304      3304 The Holy Quran
3305      3305 The Holy Quran
3306      3306 The Holy Quran
3307      3307 The Holy Quran
3308      3308 The Holy Quran
3309      3309 The Holy Quran
3310      3310 The Holy Quran
3311      3311 The Holy Quran
3312      3312 The Holy Quran
3313      3313 The Holy Quran
3314      3314 The Holy Quran
3315      3315 The Holy Quran
3316      3316 The Holy Quran
3317      3317 The Holy Quran
3318      3318 The Holy Quran
3319      3319 The Holy Quran
3320      3320 The Holy Quran
3321      3321 The Holy Quran
3322      3322 The Holy Quran
3323      3323 The Holy Quran
3324      3324 The Holy Quran
3325      3325 The Holy Quran
3326      3326 The Holy Quran
3327      3327 The Holy Quran
3328      3328 The Holy Quran
3329      3329 The Holy Quran
3330      3330 The Holy Quran
3331      3331 The Holy Quran
3332      3332 The Holy Quran
3333      3333 The Holy Quran
3334      3334 The Holy Quran
3335      3335 The Holy Quran
3336      3336 The Holy Quran
3337      3337 The Holy Quran
3338      3338 The Holy Quran
3339      3339 The Holy Quran
3340      3340 The Holy Quran
3341      3341 The Holy Quran
3342      3342 The Holy Quran
3343      3343 The Holy Quran
3344      3344 The Holy Quran
3345      3345 The Holy Quran
3346      3346 The Holy Quran
3347      3347 The Holy Quran
3348      3348 The Holy Quran
3349      3349 The Holy Quran
3350      3350 The Holy Quran
3351      3351 The Holy Quran
3352      3352 The Holy Quran
3353      3353 The Holy Quran
3354      3354 The Holy Quran
3355      3355 The Holy Quran
3356      3356 The Holy Quran
3357      3357 The Holy Quran
3358      3358 The Holy Quran
3359      3359 The Holy Quran
3360      3360 The Holy Quran
3361      3361 The Holy Quran
3362      3362 The Holy Quran
3363      3363 The Holy Quran
3364      3364 The Holy Quran
3365      3365 The Holy Quran
3366      3366 The Holy Quran
3367      3367 The Holy Quran
3368      3368 The Holy Quran
3369      3369 The Holy Quran
3370      3370 The Holy Quran
3371      3371 The Holy Quran
3372      3372 The Holy Quran
3373      3373 The Holy Quran
3374      3374 The Holy Quran
3375      3375 The Holy Quran
3376      3376 The Holy Quran
3377      3377 The Holy Quran
3378      3378 The Holy Quran
3379      3379 The Holy Quran
3380      3380 The Holy Quran
3381      3381 The Holy Quran
3382      3382 The Holy Quran
3383      3383 The Holy Quran
3384      3384 The Holy Quran
3385      3385 The Holy Quran
3386      3386 The Holy Quran
3387      3387 The Holy Quran
3388      3388 The Holy Quran
3389      3389 The Holy Quran
3390      3390 The Holy Quran
3391      3391 The Holy Quran
3392      3392 The Holy Quran
3393      3393 The Holy Quran
3394      3394 The Holy Quran
3395      3395 The Holy Quran
3396      3396 The Holy Quran
3397      3397 The Holy Quran
3398      3398 The Holy Quran
3399      3399 The Holy Quran
3400      3400 The Holy Quran
3401      3401 The Holy Quran
3402      3402 The Holy Quran
3403      3403 The Holy Quran
3404      3404 The Holy Quran
3405      3405 The Holy Quran
3406      3406 The Holy Quran
3407      3407 The Holy Quran
3408      3408 The Holy Quran
3409      3409 The Holy Quran
3410      3410 The Holy Quran
3411      3411 The Holy Quran
3412      3412 The Holy Quran
3413      3413 The Holy Quran
3414      3414 The Holy Quran
3415      3415 The Holy Quran
3416      3416 The Holy Quran
3417      3417 The Holy Quran
3418      3418 The Holy Quran
3419      3419 The Holy Quran
3420      3420 The Holy Quran
3421      3421 The Holy Quran
3422      3422 The Holy Quran
3423      3423 The Holy Quran
3424      3424 The Holy Quran
3425      3425 The Holy Quran
3426      3426 The Holy Quran
3427      3427 The Holy Quran
3428      3428 The Holy Quran
3429      3429 The Holy Quran
3430      3430 The Holy Quran
3431      3431 The Holy Quran
3432      3432 The Holy Quran
3433      3433 The Holy Quran
3434      3434 The Holy Quran
3435      3435 The Holy Quran
3436      3436 The Holy Quran
3437      3437 The Holy Quran
3438      3438 The Holy Quran
3439      3439 The Holy Quran
3440      3440 The Holy Quran
3441      3441 The Holy Quran
3442      3442 The Holy Quran
3443      3443 The Holy Quran
3444      3444 The Holy Quran
3445      3445 The Holy Quran
3446      3446 The Holy Quran
3447      3447 The Holy Quran
3448      3448 The Holy Quran
3449      3449 The Holy Quran
3450      3450 The Holy Quran
3451      3451 The Holy Quran
3452      3452 The Holy Quran
3453      3453 The Holy Quran
3454      3454 The Holy Quran
3455      3455 The Holy Quran
3456      3456 The Holy Quran
3457      3457 The Holy Quran
3458      3458 The Holy Quran
3459      3459 The Holy Quran
3460      3460 The Holy Quran
3461      3461 The Holy Quran
3462      3462 The Holy Quran
3463      3463 The Holy Quran
3464      3464 The Holy Quran
3465      3465 The Holy Quran
3466      3466 The Holy Quran
3467      3467 The Holy Quran
3468      3468 The Holy Quran
3469      3469 The Holy Quran
3470      3470 The Holy Quran
3471      3471 The Holy Quran
3472      3472 The Holy Quran
3473      3473 The Holy Quran
3474      3474 The Holy Quran
3475      3475 The Holy Quran
3476      3476 The Holy Quran
3477      3477 The Holy Quran
3478      3478 The Holy Quran
3479      3479 The Holy Quran
3480      3480 The Holy Quran
3481      3481 The Holy Quran
3482      3482 The Holy Quran
3483      3483 The Holy Quran
3484      3484 The Holy Quran
3485      3485 The Holy Quran
3486      3486 The Holy Quran
3487      3487 The Holy Quran
3488      3488 The Holy Quran
3489      3489 The Holy Quran
3490      3490 The Holy Quran
3491      3491 The Holy Quran
3492      3492 The Holy Quran
3493      3493 The Holy Quran
3494      3494 The Holy Quran
3495      3495 The Holy Quran
3496      3496 The Holy Quran
3497      3497 The Holy Quran
3498      3498 The Holy Quran
3499      3499 The Holy Quran
3500      3500 The Holy Quran
3501      3501 The Holy Quran
3502      3502 The Holy Quran
3503      3503 The Holy Quran
3504      3504 The Holy Quran
3505      3505 The Holy Quran
3506      3506 The Holy Quran
3507      3507 The Holy Quran
3508      3508 The Holy Quran
3509      3509 The Holy Quran
3510      3510 The Holy Quran
3511      3511 The Holy Quran
3512      3512 The Holy Quran
3513      3513 The Holy Quran
3514      3514 The Holy Quran
3515      3515 The Holy Quran
3516      3516 The Holy Quran
3517      3517 The Holy Quran
3518      3518 The Holy Quran
3519      3519 The Holy Quran
3520      3520 The Holy Quran
3521      3521 The Holy Quran
3522      3522 The Holy Quran
3523      3523 The Holy Quran
3524      3524 The Holy Quran
3525      3525 The Holy Quran
3526      3526 The Holy Quran
3527      3527 The Holy Quran
3528      3528 The Holy Quran
3529      3529 The Holy Quran
3530      3530 The Holy Quran
3531      3531 The Holy Quran
3532      3532 The Holy Quran
3533      3533 The Holy Quran
3534      3534 The Holy Quran
3535      3535 The Holy Quran
3536      3536 The Holy Quran
3537      3537 The Holy Quran
3538      3538 The Holy Quran
3539      3539 The Holy Quran
3540      3540 The Holy Quran
3541      3541 The Holy Quran
3542      3542 The Holy Quran
3543      3543 The Holy Quran
3544      3544 The Holy Quran
3545      3545 The Holy Quran
3546      3546 The Holy Quran
3547      3547 The Holy Quran
3548      3548 The Holy Quran
3549      3549 The Holy Quran
3550      3550 The Holy Quran
3551      3551 The Holy Quran
3552      3552 The Holy Quran
3553      3553 The Holy Quran
3554      3554 The Holy Quran
3555      3555 The Holy Quran
3556      3556 The Holy Quran
3557      3557 The Holy Quran
3558      3558 The Holy Quran
3559      3559 The Holy Quran
3560      3560 The Holy Quran
3561      3561 The Holy Quran
3562      3562 The Holy Quran
3563      3563 The Holy Quran
3564      3564 The Holy Quran
3565      3565 The Holy Quran
3566      3566 The Holy Quran
3567      3567 The Holy Quran
3568      3568 The Holy Quran
3569      3569 The Holy Quran
3570      3570 The Holy Quran
3571      3571 The Holy Quran
3572      3572 The Holy Quran
3573      3573 The Holy Quran
3574      3574 The Holy Quran
3575      3575 The Holy Quran
3576      3576 The Holy Quran
3577      3577 The Holy Quran
3578      3578 The Holy Quran
3579      3579 The Holy Quran
3580      3580 The Holy Quran
3581      3581 The Holy Quran
3582      3582 The Holy Quran
3583      3583 The Holy Quran
3584      3584 The Holy Quran
3585      3585 The Holy Quran
3586      3586 The Holy Quran
3587      3587 The Holy Quran
3588      3588 The Holy Quran
3589      3589 The Holy Quran
3590      3590 The Holy Quran
3591      3591 The Holy Quran
3592      3592 The Holy Quran
3593      3593 The Holy Quran
3594      3594 The Holy Quran
3595      3595 The Holy Quran
3596      3596 The Holy Quran
3597      3597 The Holy Quran
3598      3598 The Holy Quran
3599      3599 The Holy Quran
3600      3600 The Holy Quran
3601      3601 The Holy Quran
3602      3602 The Holy Quran
3603      3603 The Holy Quran
3604      3604 The Holy Quran
3605      3605 The Holy Quran
3606      3606 The Holy Quran
3607      3607 The Holy Quran
3608      3608 The Holy Quran
3609      3609 The Holy Quran
3610      3610 The Holy Quran
3611      3611 The Holy Quran
3612      3612 The Holy Quran
3613      3613 The Holy Quran
3614      3614 The Holy Quran
3615      3615 The Holy Quran
3616      3616 The Holy Quran
3617      3617 The Holy Quran
3618      3618 The Holy Quran
3619      3619 The Holy Quran
3620      3620 The Holy Quran
3621      3621 The Holy Quran
3622      3622 The Holy Quran
3623      3623 The Holy Quran
3624      3624 The Holy Quran
3625      3625 The Holy Quran
3626      3626 The Holy Quran
3627      3627 The Holy Quran
3628      3628 The Holy Quran
3629      3629 The Holy Quran
3630      3630 The Holy Quran
3631      3631 The Holy Quran
3632      3632 The Holy Quran
3633      3633 The Holy Quran
3634      3634 The Holy Quran
3635      3635 The Holy Quran
3636      3636 The Holy Quran
3637      3637 The Holy Quran
3638      3638 The Holy Quran
3639      3639 The Holy Quran
3640      3640 The Holy Quran
3641      3641 The Holy Quran
3642      3642 The Holy Quran
3643      3643 The Holy Quran
3644      3644 The Holy Quran
3645      3645 The Holy Quran
3646      3646 The Holy Quran
3647      3647 The Holy Quran
3648      3648 The Holy Quran
3649      3649 The Holy Quran
3650      3650 The Holy Quran
3651      3651 The Holy Quran
3652      3652 The Holy Quran
3653      3653 The Holy Quran
3654      3654 The Holy Quran
3655      3655 The Holy Quran
3656      3656 The Holy Quran
3657      3657 The Holy Quran
3658      3658 The Holy Quran
3659      3659 The Holy Quran
3660      3660 The Holy Quran
3661      3661 The Holy Quran
3662      3662 The Holy Quran
3663      3663 The Holy Quran
3664      3664 The Holy Quran
3665      3665 The Holy Quran
3666      3666 The Holy Quran
3667      3667 The Holy Quran
3668      3668 The Holy Quran
3669      3669 The Holy Quran
3670      3670 The Holy Quran
3671      3671 The Holy Quran
3672      3672 The Holy Quran
3673      3673 The Holy Quran
3674      3674 The Holy Quran
3675      3675 The Holy Quran
3676      3676 The Holy Quran
3677      3677 The Holy Quran
3678      3678 The Holy Quran
3679      3679 The Holy Quran
3680      3680 The Holy Quran
3681      3681 The Holy Quran
3682      3682 The Holy Quran
3683      3683 The Holy Quran
3684      3684 The Holy Quran
3685      3685 The Holy Quran
3686      3686 The Holy Quran
3687      3687 The Holy Quran
3688      3688 The Holy Quran
3689      3689 The Holy Quran
3690      3690 The Holy Quran
3691      3691 The Holy Quran
3692      3692 The Holy Quran
3693      3693 The Holy Quran
3694      3694 The Holy Quran
3695      3695 The Holy Quran
3696      3696 The Holy Quran
3697      3697 The Holy Quran
3698      3698 The Holy Quran
3699      3699 The Holy Quran
3700      3700 The Holy Quran
3701      3701 The Holy Quran
3702      3702 The Holy Quran
3703      3703 The Holy Quran
3704      3704 The Holy Quran
3705      3705 The Holy Quran
3706      3706 The Holy Quran
3707      3707 The Holy Quran
3708      3708 The Holy Quran
3709      3709 The Holy Quran
3710      3710 The Holy Quran
3711      3711 The Holy Quran
3712      3712 The Holy Quran
3713      3713 The Holy Quran
3714      3714 The Holy Quran
3715      3715 The Holy Quran
3716      3716 The Holy Quran
3717      3717 The Holy Quran
3718      3718 The Holy Quran
3719      3719 The Holy Quran
3720      3720 The Holy Quran
3721      3721 The Holy Quran
3722      3722 The Holy Quran
3723      3723 The Holy Quran
3724      3724 The Holy Quran
3725      3725 The Holy Quran
3726      3726 The Holy Quran
3727      3727 The Holy Quran
3728      3728 The Holy Quran
3729      3729 The Holy Quran
3730      3730 The Holy Quran
3731      3731 The Holy Quran
3732      3732 The Holy Quran
3733      3733 The Holy Quran
3734      3734 The Holy Quran
3735      3735 The Holy Quran
3736      3736 The Holy Quran
3737      3737 The Holy Quran
3738      3738 The Holy Quran
3739      3739 The Holy Quran
3740      3740 The Holy Quran
3741      3741 The Holy Quran
3742      3742 The Holy Quran
3743      3743 The Holy Quran
3744      3744 The Holy Quran
3745      3745 The Holy Quran
3746      3746 The Holy Quran
3747      3747 The Holy Quran
3748      3748 The Holy Quran
3749      3749 The Holy Quran
3750      3750 The Holy Quran
3751      3751 The Holy Quran
3752      3752 The Holy Quran
3753      3753 The Holy Quran
3754      3754 The Holy Quran
3755      3755 The Holy Quran
3756      3756 The Holy Quran
3757      3757 The Holy Quran
3758      3758 The Holy Quran
3759      3759 The Holy Quran
3760      3760 The Holy Quran
3761      3761 The Holy Quran
3762      3762 The Holy Quran
3763      3763 The Holy Quran
3764      3764 The Holy Quran
3765      3765 The Holy Quran
3766      3766 The Holy Quran
3767      3767 The Holy Quran
3768      3768 The Holy Quran
3769      3769 The Holy Quran
3770      3770 The Holy Quran
3771      3771 The Holy Quran
3772      3772 The Holy Quran
3773      3773 The Holy Quran
3774      3774 The Holy Quran
3775      3775 The Holy Quran
3776      3776 The Holy Quran
3777      3777 The Holy Quran
3778      3778 The Holy Quran
3779      3779 The Holy Quran
3780      3780 The Holy Quran
3781      3781 The Holy Quran
3782      3782 The Holy Quran
3783      3783 The Holy Quran
3784      3784 The Holy Quran
3785      3785 The Holy Quran
3786      3786 The Holy Quran
3787      3787 The Holy Quran
3788      3788 The Holy Quran
3789      3789 The Holy Quran
3790      3790 The Holy Quran
3791      3791 The Holy Quran
3792      3792 The Holy Quran
3793      3793 The Holy Quran
3794      3794 The Holy Quran
3795      3795 The Holy Quran
3796      3796 The Holy Quran
3797      3797 The Holy Quran
3798      3798 The Holy Quran
3799      3799 The Holy Quran
3800      3800 The Holy Quran
3801      3801 The Holy Quran
3802      3802 The Holy Quran
3803      3803 The Holy Quran
3804      3804 The Holy Quran
3805      3805 The Holy Quran
3806      3806 The Holy Quran
3807      3807 The Holy Quran
3808      3808 The Holy Quran
3809      3809 The Holy Quran
3810      3810 The Holy Quran
3811      3811 The Holy Quran
3812      3812 The Holy Quran
3813      3813 The Holy Quran
3814      3814 The Holy Quran
3815      3815 The Holy Quran
3816      3816 The Holy Quran
3817      3817 The Holy Quran
3818      3818 The Holy Quran
3819      3819 The Holy Quran
3820      3820 The Holy Quran
3821      3821 The Holy Quran
3822      3822 The Holy Quran
3823      3823 The Holy Quran
3824      3824 The Holy Quran
3825      3825 The Holy Quran
3826      3826 The Holy Quran
3827      3827 The Holy Quran
3828      3828 The Holy Quran
3829      3829 The Holy Quran
3830      3830 The Holy Quran
3831      3831 The Holy Quran
3832      3832 The Holy Quran
3833      3833 The Holy Quran
3834      3834 The Holy Quran
3835      3835 The Holy Quran
3836      3836 The Holy Quran
3837      3837 The Holy Quran
3838      3838 The Holy Quran
3839      3839 The Holy Quran
3840      3840 The Holy Quran
3841      3841 The Holy Quran
3842      3842 The Holy Quran
3843      3843 The Holy Quran
3844      3844 The Holy Quran
3845      3845 The Holy Quran
3846      3846 The Holy Quran
3847      3847 The Holy Quran
3848      3848 The Holy Quran
3849      3849 The Holy Quran
3850      3850 The Holy Quran
3851      3851 The Holy Quran
3852      3852 The Holy Quran
3853      3853 The Holy Quran
3854      3854 The Holy Quran
3855      3855 The Holy Quran
3856      3856 The Holy Quran
3857      3857 The Holy Quran
3858      3858 The Holy Quran
3859      3859 The Holy Quran
3860      3860 The Holy Quran
3861      3861 The Holy Quran
3862      3862 The Holy Quran
3863      3863 The Holy Quran
3864      3864 The Holy Quran
3865      3865 The Holy Quran
3866      3866 The Holy Quran
3867      3867 The Holy Quran
3868      3868 The Holy Quran
3869      3869 The Holy Quran
3870      3870 The Holy Quran
3871      3871 The Holy Quran
3872      3872 The Holy Quran
3873      3873 The Holy Quran
3874      3874 The Holy Quran
3875      3875 The Holy Quran
3876      3876 The Holy Quran
3877      3877 The Holy Quran
3878      3878 The Holy Quran
3879      3879 The Holy Quran
3880      3880 The Holy Quran
3881      3881 The Holy Quran
3882      3882 The Holy Quran
3883      3883 The Holy Quran
3884      3884 The Holy Quran
3885      3885 The Holy Quran
3886      3886 The Holy Quran
3887      3887 The Holy Quran
3888      3888 The Holy Quran
3889      3889 The Holy Quran
3890      3890 The Holy Quran
3891      3891 The Holy Quran
3892      3892 The Holy Quran
3893      3893 The Holy Quran
3894      3894 The Holy Quran
3895      3895 The Holy Quran
3896      3896 The Holy Quran
3897      3897 The Holy Quran
3898      3898 The Holy Quran
3899      3899 The Holy Quran
3900      3900 The Holy Quran
3901      3901 The Holy Quran
3902      3902 The Holy Quran
3903      3903 The Holy Quran
3904      3904 The Holy Quran
3905      3905 The Holy Quran
3906      3906 The Holy Quran
3907      3907 The Holy Quran
3908      3908 The Holy Quran
3909      3909 The Holy Quran
3910      3910 The Holy Quran
3911      3911 The Holy Quran
3912      3912 The Holy Quran
3913      3913 The Holy Quran
3914      3914 The Holy Quran
3915      3915 The Holy Quran
3916      3916 The Holy Quran
3917      3917 The Holy Quran
3918      3918 The Holy Quran
3919      3919 The Holy Quran
3920      3920 The Holy Quran
3921      3921 The Holy Quran
3922      3922 The Holy Quran
3923      3923 The Holy Quran
3924      3924 The Holy Quran
3925      3925 The Holy Quran
3926      3926 The Holy Quran
3927      3927 The Holy Quran
3928      3928 The Holy Quran
3929      3929 The Holy Quran
3930      3930 The Holy Quran
3931      3931 The Holy Quran
3932      3932 The Holy Quran
3933      3933 The Holy Quran
3934      3934 The Holy Quran
3935      3935 The Holy Quran
3936      3936 The Holy Quran
3937      3937 The Holy Quran
3938      3938 The Holy Quran
3939      3939 The Holy Quran
3940      3940 The Holy Quran
3941      3941 The Holy Quran
3942      3942 The Holy Quran
3943      3943 The Holy Quran
3944      3944 The Holy Quran
3945      3945 The Holy Quran
3946      3946 The Holy Quran
3947      3947 The Holy Quran
3948      3948 The Holy Quran
3949      3949 The Holy Quran
3950      3950 The Holy Quran
3951      3951 The Holy Quran
3952      3952 The Holy Quran
3953      3953 The Holy Quran
3954      3954 The Holy Quran
3955      3955 The Holy Quran
3956      3956 The Holy Quran
3957      3957 The Holy Quran
3958      3958 The Holy Quran
3959      3959 The Holy Quran
3960      3960 The Holy Quran
3961      3961 The Holy Quran
3962      3962 The Holy Quran
3963      3963 The Holy Quran
3964      3964 The Holy Quran
3965      3965 The Holy Quran
3966      3966 The Holy Quran
3967      3967 The Holy Quran
3968      3968 The Holy Quran
3969      3969 The Holy Quran
3970      3970 The Holy Quran
3971      3971 The Holy Quran
3972      3972 The Holy Quran
3973      3973 The Holy Quran
3974      3974 The Holy Quran
3975      3975 The Holy Quran
3976      3976 The Holy Quran
3977      3977 The Holy Quran
3978      3978 The Holy Quran
3979      3979 The Holy Quran
3980      3980 The Holy Quran
3981      3981 The Holy Quran
3982      3982 The Holy Quran
3983      3983 The Holy Quran
3984      3984 The Holy Quran
3985      3985 The Holy Quran
3986      3986 The Holy Quran
3987      3987 The Holy Quran
3988      3988 The Holy Quran
3989      3989 The Holy Quran
3990      3990 The Holy Quran
3991      3991 The Holy Quran
3992      3992 The Holy Quran
3993      3993 The Holy Quran
3994      3994 The Holy Quran
3995      3995 The Holy Quran
3996      3996 The Holy Quran
3997      3997 The Holy Quran
3998      3998 The Holy Quran
3999      3999 The Holy Quran
4000      4000 The Holy Quran
4001      4001 The Holy Quran
4002      4002 The Holy Quran
4003      4003 The Holy Quran
4004      4004 The Holy Quran
4005      4005 The Holy Quran
4006      4006 The Holy Quran
4007      4007 The Holy Quran
4008      4008 The Holy Quran
4009      4009 The Holy Quran
4010      4010 The Holy Quran
4011      4011 The Holy Quran
4012      4012 The Holy Quran
4013      4013 The Holy Quran
4014      4014 The Holy Quran
4015      4015 The Holy Quran
4016      4016 The Holy Quran
4017      4017 The Holy Quran
4018      4018 The Holy Quran
4019      4019 The Holy Quran
4020      4020 The Holy Quran
4021      4021 The Holy Quran
4022      4022 The Holy Quran
4023      4023 The Holy Quran
4024      4024 The Holy Quran
4025      4025 The Holy Quran
4026      4026 The Holy Quran
4027      4027 The Holy Quran
4028      4028 The Holy Quran
4029      4029 The Holy Quran
4030      4030 The Holy Quran
4031      4031 The Holy Quran
4032      4032 The Holy Quran
4033      4033 The Holy Quran
4034      4034 The Holy Quran
4035      4035 The Holy Quran
4036      4036 The Holy Quran
4037      4037 The Holy Quran
4038      4038 The Holy Quran
4039      4039 The Holy Quran
4040      4040 The Holy Quran
4041      4041 The Holy Quran
4042      4042 The Holy Quran
4043      4043 The Holy Quran
4044      4044 The Holy Quran
4045      4045 The Holy Quran
4046      4046 The Holy Quran
4047      4047 The Holy Quran
4048      4048 The Holy Quran
4049      4049 The Holy Quran
4050      4050 The Holy Quran
4051      4051 The Holy Quran
4052      4052 The Holy Quran
4053      4053 The Holy Quran
4054      4054 The Holy Quran
4055      4055 The Holy Quran
4056      4056 The Holy Quran
4057      4057 The Holy Quran
4058      4058 The Holy Quran
4059      4059 The Holy Quran
4060      4060 The Holy Quran
4061      4061 The Holy Quran
4062      4062 The Holy Quran
4063      4063 The Holy Quran
4064      4064 The Holy Quran
4065      4065 The Holy Quran
4066      4066 The Holy Quran
4067      4067 The Holy Quran
4068      4068 The Holy Quran
4069      4069 The Holy Quran
4070      4070 The Holy Quran
4071      4071 The Holy Quran
4072      4072 The Holy Quran
4073      4073 The Holy Quran
4074      4074 The Holy Quran
4075      4075 The Holy Quran
4076      4076 The Holy Quran
4077      4077 The Holy Quran
4078      4078 The Holy Quran
4079      4079 The Holy Quran
4080      4080 The Holy Quran
4081      4081 The Holy Quran
4082      4082 The Holy Quran
4083      4083 The Holy Quran
4084      4084 The Holy Quran
4085      4085 The Holy Quran
4086      4086 The Holy Quran
4087      4087 The Holy Quran
4088      4088 The Holy Quran
4089      4089 The Holy Quran
4090      4090 The Holy Quran
4091      4091 The Holy Quran
4092      4092 The Holy Quran
4093      4093 The Holy Quran
4094      4094 The Holy Quran
4095      4095 The Holy Quran
4096      4096 The Holy Quran
4097      4097 The Holy Quran
4098      4098 The Holy Quran
4099      4099 The Holy Quran
4100      4100 The Holy Quran
4101      4101 The Holy Quran
4102      4102 The Holy Quran
4103      4103 The Holy Quran
4104      4104 The Holy Quran
4105      4105 The Holy Quran
4106      4106 The Holy Quran
4107      4107 The Holy Quran
4108      4108 The Holy Quran
4109      4109 The Holy Quran
4110      4110 The Holy Quran
4111      4111 The Holy Quran
4112      4112 The Holy Quran
4113      4113 The Holy Quran
4114      4114 The Holy Quran
4115      4115 The Holy Quran
4116      4116 The Holy Quran
4117      4117 The Holy Quran
4118      4118 The Holy Quran
4119      4119 The Holy Quran
4120      4120 The Holy Quran
4121      4121 The Holy Quran
4122      4122 The Holy Quran
4123      4123 The Holy Quran
4124      4124 The Holy Quran
4125      4125 The Holy Quran
4126      4126 The Holy Quran
4127      4127 The Holy Quran
4128      4128 The Holy Quran
4129      4129 The Holy Quran
4130      4130 The Holy Quran
4131      4131 The Holy Quran
4132      4132 The Holy Quran
4133      4133 The Holy Quran
4134      4134 The Holy Quran
4135      4135 The Holy Quran
4136      4136 The Holy Quran
4137      4137 The Holy Quran
4138      4138 The Holy Quran
4139      4139 The Holy Quran
4140      4140 The Holy Quran
4141      4141 The Holy Quran
4142      4142 The Holy Quran
4143      4143 The Holy Quran
4144      4144 The Holy Quran
4145      4145 The Holy Quran
4146      4146 The Holy Quran
4147      4147 The Holy Quran
4148      4148 The Holy Quran
4149      4149 The Holy Quran
4150      4150 The Holy Quran
4151      4151 The Holy Quran
4152      4152 The Holy Quran
4153      4153 The Holy Quran
4154      4154 The Holy Quran
4155      4155 The Holy Quran
4156      4156 The Holy Quran
4157      4157 The Holy Quran
4158      4158 The Holy Quran
4159      4159 The Holy Quran
4160      4160 The Holy Quran
4161      4161 The Holy Quran
4162      4162 The Holy Quran
4163      4163 The Holy Quran
4164      4164 The Holy Quran
4165      4165 The Holy Quran
4166      4166 The Holy Quran
4167      4167 The Holy Quran
4168      4168 The Holy Quran
4169      4169 The Holy Quran
4170      4170 The Holy Quran
4171      4171 The Holy Quran
4172      4172 The Holy Quran
4173      4173 The Holy Quran
4174      4174 The Holy Quran
4175      4175 The Holy Quran
4176      4176 The Holy Quran
4177      4177 The Holy Quran
4178      4178 The Holy Quran
4179      4179 The Holy Quran
4180      4180 The Holy Quran
4181      4181 The Holy Quran
4182      4182 The Holy Quran
4183      4183 The Holy Quran
4184      4184 The Holy Quran
4185      4185 The Holy Quran
4186      4186 The Holy Quran
4187      4187 The Holy Quran
4188      4188 The Holy Quran
4189      4189 The Holy Quran
4190      4190 The Holy Quran
4191      4191 The Holy Quran
4192      4192 The Holy Quran
4193      4193 The Holy Quran
4194      4194 The Holy Quran
4195      4195 The Holy Quran
4196      4196 The Holy Quran
4197      4197 The Holy Quran
4198      4198 The Holy Quran
4199      4199 The Holy Quran
4200      4200 The Holy Quran
4201      4201 The Holy Quran
4202      4202 The Holy Quran
4203      4203 The Holy Quran
4204      4204 The Holy Quran
4205      4205 The Holy Quran
4206      4206 The Holy Quran
4207      4207 The Holy Quran
4208      4208 The Holy Quran
4209      4209 The Holy Quran
4210      4210 The Holy Quran
4211      4211 The Holy Quran
4212      4212 The Holy Quran
4213      4213 The Holy Quran
4214      4214 The Holy Quran
4215      4215 The Holy Quran
4216      4216 The Holy Quran
4217      4217 The Holy Quran
4218      4218 The Holy Quran
4219      4219 The Holy Quran
4220      4220 The Holy Quran
4221      4221 The Holy Quran
4222      4222 The Holy Quran
4223      4223 The Holy Quran
4224      4224 The Holy Quran
4225      4225 The Holy Quran
4226      4226 The Holy Quran
4227      4227 The Holy Quran
4228      4228 The Holy Quran
4229      4229 The Holy Quran
4230      4230 The Holy Quran
4231      4231 The Holy Quran
4232      4232 The Holy Quran
4233      4233 The Holy Quran
4234      4234 The Holy Quran
4235      4235 The Holy Quran
4236      4236 The Holy Quran
4237      4237 The Holy Quran
4238      4238 The Holy Quran
4239      4239 The Holy Quran
4240      4240 The Holy Quran
4241      4241 The Holy Quran
4242      4242 The Holy Quran
4243      4243 The Holy Quran
4244      4244 The Holy Quran
4245      4245 The Holy Quran
4246      4246 The Holy Quran
4247      4247 The Holy Quran
4248      4248 The Holy Quran
4249      4249 The Holy Quran
4250      4250 The Holy Quran
4251      4251 The Holy Quran
4252      4252 The Holy Quran
4253      4253 The Holy Quran
4254      4254 The Holy Quran
4255      4255 The Holy Quran
4256      4256 The Holy Quran
4257      4257 The Holy Quran
4258      4258 The Holy Quran
4259      4259 The Holy Quran
4260      4260 The Holy Quran
4261      4261 The Holy Quran
4262      4262 The Holy Quran
4263      4263 The Holy Quran
4264      4264 The Holy Quran
4265      4265 The Holy Quran
4266      4266 The Holy Quran
4267      4267 The Holy Quran
4268      4268 The Holy Quran
4269      4269 The Holy Quran
4270      4270 The Holy Quran
4271      4271 The Holy Quran
4272      4272 The Holy Quran
4273      4273 The Holy Quran
4274      4274 The Holy Quran
4275      4275 The Holy Quran
4276      4276 The Holy Quran
4277      4277 The Holy Quran
4278      4278 The Holy Quran
4279      4279 The Holy Quran
4280      4280 The Holy Quran
4281      4281 The Holy Quran
4282      4282 The Holy Quran
4283      4283 The Holy Quran
4284      4284 The Holy Quran
4285      4285 The Holy Quran
4286      4286 The Holy Quran
4287      4287 The Holy Quran
4288      4288 The Holy Quran
4289      4289 The Holy Quran
4290      4290 The Holy Quran
4291      4291 The Holy Quran
4292      4292 The Holy Quran
4293      4293 The Holy Quran
4294      4294 The Holy Quran
4295      4295 The Holy Quran
4296      4296 The Holy Quran
4297      4297 The Holy Quran
4298      4298 The Holy Quran
4299      4299 The Holy Quran
4300      4300 The Holy Quran
4301      4301 The Holy Quran
4302      4302 The Holy Quran
4303      4303 The Holy Quran
4304      4304 The Holy Quran
4305      4305 The Holy Quran
4306      4306 The Holy Quran
4307      4307 The Holy Quran
4308      4308 The Holy Quran
4309      4309 The Holy Quran
4310      4310 The Holy Quran
4311      4311 The Holy Quran
4312      4312 The Holy Quran
4313      4313 The Holy Quran
4314      4314 The Holy Quran
4315      4315 The Holy Quran
4316      4316 The Holy Quran
4317      4317 The Holy Quran
4318      4318 The Holy Quran
4319      4319 The Holy Quran
4320      4320 The Holy Quran
4321      4321 The Holy Quran
4322      4322 The Holy Quran
4323      4323 The Holy Quran
4324      4324 The Holy Quran
4325      4325 The Holy Quran
4326      4326 The Holy Quran
4327      4327 The Holy Quran
4328      4328 The Holy Quran
4329      4329 The Holy Quran
4330      4330 The Holy Quran
4331      4331 The Holy Quran
4332      4332 The Holy Quran
4333      4333 The Holy Quran
4334      4334 The Holy Quran
4335      4335 The Holy Quran
4336      4336 The Holy Quran
4337      4337 The Holy Quran
4338      4338 The Holy Quran
4339      4339 The Holy Quran
4340      4340 The Holy Quran
4341      4341 The Holy Quran
4342      4342 The Holy Quran
4343      4343 The Holy Quran
4344      4344 The Holy Quran
4345      4345 The Holy Quran
4346      4346 The Holy Quran
4347      4347 The Holy Quran
4348      4348 The Holy Quran
4349      4349 The Holy Quran
4350      4350 The Holy Quran
4351      4351 The Holy Quran
4352      4352 The Holy Quran
4353      4353 The Holy Quran
4354      4354 The Holy Quran
4355      4355 The Holy Quran
4356      4356 The Holy Quran
4357      4357 The Holy Quran
4358      4358 The Holy Quran
4359      4359 The Holy Quran
4360      4360 The Holy Quran
4361      4361 The Holy Quran
4362      4362 The Holy Quran
4363      4363 The Holy Quran
4364      4364 The Holy Quran
4365      4365 The Holy Quran
4366      4366 The Holy Quran
4367      4367 The Holy Quran
4368      4368 The Holy Quran
4369      4369 The Holy Quran
4370      4370 The Holy Quran
4371      4371 The Holy Quran
4372      4372 The Holy Quran
4373      4373 The Holy Quran
4374      4374 The Holy Quran
4375      4375 The Holy Quran
4376      4376 The Holy Quran
4377      4377 The Holy Quran
4378      4378 The Holy Quran
4379      4379 The Holy Quran
4380      4380 The Holy Quran
4381      4381 The Holy Quran
4382      4382 The Holy Quran
4383      4383 The Holy Quran
4384      4384 The Holy Quran
4385      4385 The Holy Quran
4386      4386 The Holy Quran
4387      4387 The Holy Quran
4388      4388 The Holy Quran
4389      4389 The Holy Quran
4390      4390 The Holy Quran
4391      4391 The Holy Quran
4392      4392 The Holy Quran
4393      4393 The Holy Quran
4394      4394 The Holy Quran
4395      4395 The Holy Quran
4396      4396 The Holy Quran
4397      4397 The Holy Quran
4398      4398 The Holy Quran
4399      4399 The Holy Quran
4400      4400 The Holy Quran
4401      4401 The Holy Quran
4402      4402 The Holy Quran
4403      4403 The Holy Quran
4404      4404 The Holy Quran
4405      4405 The Holy Quran
4406      4406 The Holy Quran
4407      4407 The Holy Quran
4408      4408 The Holy Quran
4409      4409 The Holy Quran
4410      4410 The Holy Quran
4411      4411 The Holy Quran
4412      4412 The Holy Quran
4413      4413 The Holy Quran
4414      4414 The Holy Quran
4415      4415 The Holy Quran
4416      4416 The Holy Quran
4417      4417 The Holy Quran
4418      4418 The Holy Quran
4419      4419 The Holy Quran
4420      4420 The Holy Quran
4421      4421 The Holy Quran
4422      4422 The Holy Quran
4423      4423 The Holy Quran
4424      4424 The Holy Quran
4425      4425 The Holy Quran
4426      4426 The Holy Quran
4427      4427 The Holy Quran
4428      4428 The Holy Quran
4429      4429 The Holy Quran
4430      4430 The Holy Quran
4431      4431 The Holy Quran
4432      4432 The Holy Quran
4433      4433 The Holy Quran
4434      4434 The Holy Quran
4435      4435 The Holy Quran
4436      4436 The Holy Quran
4437      4437 The Holy Quran
4438      4438 The Holy Quran
4439      4439 The Holy Quran
4440      4440 The Holy Quran
4441      4441 The Holy Quran
4442      4442 The Holy Quran
4443      4443 The Holy Quran
4444      4444 The Holy Quran
4445      4445 The Holy Quran
4446      4446 The Holy Quran
4447      4447 The Holy Quran
4448      4448 The Holy Quran
4449      4449 The Holy Quran
4450      4450 The Holy Quran
4451      4451 The Holy Quran
4452      4452 The Holy Quran
4453      4453 The Holy Quran
4454      4454 The Holy Quran
4455      4455 The Holy Quran
4456      4456 The Holy Quran
4457      4457 The Holy Quran
4458      4458 The Holy Quran
4459      4459 The Holy Quran
4460      4460 The Holy Quran
4461      4461 The Holy Quran
4462      4462 The Holy Quran
4463      4463 The Holy Quran
4464      4464 The Holy Quran
4465      4465 The Holy Quran
4466      4466 The Holy Quran
4467      4467 The Holy Quran
4468      4468 The Holy Quran
4469      4469 The Holy Quran
4470      4470 The Holy Quran
4471      4471 The Holy Quran
4472      4472 The Holy Quran
4473      4473 The Holy Quran
4474      4474 The Holy Quran
4475      4475 The Holy Quran
4476      4476 The Holy Quran
4477      4477 The Holy Quran
4478      4478 The Holy Quran
4479      4479 The Holy Quran
4480      4480 The Holy Quran
4481      4481 The Holy Quran
4482      4482 The Holy Quran
4483      4483 The Holy Quran
4484      4484 The Holy Quran
4485      4485 The Holy Quran
4486      4486 The Holy Quran
4487      4487 The Holy Quran
4488      4488 The Holy Quran
4489      4489 The Holy Quran
4490      4490 The Holy Quran
4491      4491 The Holy Quran
4492      4492 The Holy Quran
4493      4493 The Holy Quran
4494      4494 The Holy Quran
4495      4495 The Holy Quran
4496      4496 The Holy Quran
4497      4497 The Holy Quran
4498      4498 The Holy Quran
4499      4499 The Holy Quran
4500      4500 The Holy Quran
4501      4501 The Holy Quran
4502      4502 The Holy Quran
4503      4503 The Holy Quran
4504      4504 The Holy Quran
4505      4505 The Holy Quran
4506      4506 The Holy Quran
4507      4507 The Holy Quran
4508      4508 The Holy Quran
4509      4509 The Holy Quran
4510      4510 The Holy Quran
4511      4511 The Holy Quran
4512      4512 The Holy Quran
4513      4513 The Holy Quran
4514      4514 The Holy Quran
4515      4515 The Holy Quran
4516      4516 The Holy Quran
4517      4517 The Holy Quran
4518      4518 The Holy Quran
4519      4519 The Holy Quran
4520      4520 The Holy Quran
4521      4521 The Holy Quran
4522      4522 The Holy Quran
4523      4523 The Holy Quran
4524      4524 The Holy Quran
4525      4525 The Holy Quran
4526      4526 The Holy Quran
4527      4527 The Holy Quran
4528      4528 The Holy Quran
4529      4529 The Holy Quran
4530      4530 The Holy Quran
4531      4531 The Holy Quran
4532      4532 The Holy Quran
4533      4533 The Holy Quran
4534      4534 The Holy Quran
4535      4535 The Holy Quran
4536      4536 The Holy Quran
4537      4537 The Holy Quran
4538      4538 The Holy Quran
4539      4539 The Holy Quran
4540      4540 The Holy Quran
4541      4541 The Holy Quran
4542      4542 The Holy Quran
4543      4543 The Holy Quran
4544      4544 The Holy Quran
4545      4545 The Holy Quran
4546      4546 The Holy Quran
4547      4547 The Holy Quran
4548      4548 The Holy Quran
4549      4549 The Holy Quran
4550      4550 The Holy Quran
4551      4551 The Holy Quran
4552      4552 The Holy Quran
4553      4553 The Holy Quran
4554      4554 The Holy Quran
4555      4555 The Holy Quran
4556      4556 The Holy Quran
4557      4557 The Holy Quran
4558      4558 The Holy Quran
4559      4559 The Holy Quran
4560      4560 The Holy Quran
4561      4561 The Holy Quran
4562      4562 The Holy Quran
4563      4563 The Holy Quran
4564      4564 The Holy Quran
4565      4565 The Holy Quran
4566      4566 The Holy Quran
4567      4567 The Holy Quran
4568      4568 The Holy Quran
4569      4569 The Holy Quran
4570      4570 The Holy Quran
4571      4571 The Holy Quran
4572      4572 The Holy Quran
4573      4573 The Holy Quran
4574      4574 The Holy Quran
4575      4575 The Holy Quran
4576      4576 The Holy Quran
4577      4577 The Holy Quran
4578      4578 The Holy Quran
4579      4579 The Holy Quran
4580      4580 The Holy Quran
4581      4581 The Holy Quran
4582      4582 The Holy Quran
4583      4583 The Holy Quran
4584      4584 The Holy Quran
4585      4585 The Holy Quran
4586      4586 The Holy Quran
4587      4587 The Holy Quran
4588      4588 The Holy Quran
4589      4589 The Holy Quran
4590      4590 The Holy Quran
4591      4591 The Holy Quran
4592      4592 The Holy Quran
4593      4593 The Holy Quran
4594      4594 The Holy Quran
4595      4595 The Holy Quran
4596      4596 The Holy Quran
4597      4597 The Holy Quran
4598      4598 The Holy Quran
4599      4599 The Holy Quran
4600      4600 The Holy Quran
4601      4601 The Holy Quran
4602      4602 The Holy Quran
4603      4603 The Holy Quran
4604      4604 The Holy Quran
4605      4605 The Holy Quran
4606      4606 The Holy Quran
4607      4607 The Holy Quran
4608      4608 The Holy Quran
4609      4609 The Holy Quran
4610      4610 The Holy Quran
4611      4611 The Holy Quran
4612      4612 The Holy Quran
4613      4613 The Holy Quran
4614      4614 The Holy Quran
4615      4615 The Holy Quran
4616      4616 The Holy Quran
4617      4617 The Holy Quran
4618      4618 The Holy Quran
4619      4619 The Holy Quran
4620      4620 The Holy Quran
4621      4621 The Holy Quran
4622      4622 The Holy Quran
4623      4623 The Holy Quran
4624      4624 The Holy Quran
4625      4625 The Holy Quran
4626      4626 The Holy Quran
4627      4627 The Holy Quran
4628      4628 The Holy Quran
4629      4629 The Holy Quran
4630      4630 The Holy Quran
4631      4631 The Holy Quran
4632      4632 The Holy Quran
4633      4633 The Holy Quran
4634      4634 The Holy Quran
4635      4635 The Holy Quran
4636      4636 The Holy Quran
4637      4637 The Holy Quran
4638      4638 The Holy Quran
4639      4639 The Holy Quran
4640      4640 The Holy Quran
4641      4641 The Holy Quran
4642      4642 The Holy Quran
4643      4643 The Holy Quran
4644      4644 The Holy Quran
4645      4645 The Holy Quran
4646      4646 The Holy Quran
4647      4647 The Holy Quran
4648      4648 The Holy Quran
4649      4649 The Holy Quran
4650      4650 The Holy Quran
4651      4651 The Holy Quran
4652      4652 The Holy Quran
4653      4653 The Holy Quran
4654      4654 The Holy Quran
4655      4655 The Holy Quran
4656      4656 The Holy Quran
4657      4657 The Holy Quran
4658      4658 The Holy Quran
4659      4659 The Holy Quran
4660      4660 The Holy Quran
4661      4661 The Holy Quran
4662      4662 The Holy Quran
4663      4663 The Holy Quran
4664      4664 The Holy Quran
4665      4665 The Holy Quran
4666      4666 The Holy Quran
4667      4667 The Holy Quran
4668      4668 The Holy Quran
4669      4669 The Holy Quran
4670      4670 The Holy Quran
4671      4671 The Holy Quran
4672      4672 The Holy Quran
4673      4673 The Holy Quran
4674      4674 The Holy Quran
4675      4675 The Holy Quran
4676      4676 The Holy Quran
4677      4677 The Holy Quran
4678      4678 The Holy Quran
4679      4679 The Holy Quran
4680      4680 The Holy Quran
4681      4681 The Holy Quran
4682      4682 The Holy Quran
4683      4683 The Holy Quran
4684      4684 The Holy Quran
4685      4685 The Holy Quran
4686      4686 The Holy Quran
4687      4687 The Holy Quran
4688      4688 The Holy Quran
4689      4689 The Holy Quran
4690      4690 The Holy Quran
4691      4691 The Holy Quran
4692      4692 The Holy Quran
4693      4693 The Holy Quran
4694      4694 The Holy Quran
4695      4695 The Holy Quran
4696      4696 The Holy Quran
4697      4697 The Holy Quran
4698      4698 The Holy Quran
4699      4699 The Holy Quran
4700      4700 The Holy Quran
4701      4701 The Holy Quran
4702      4702 The Holy Quran
4703      4703 The Holy Quran
4704      4704 The Holy Quran
4705      4705 The Holy Quran
4706      4706 The Holy Quran
4707      4707 The Holy Quran
4708      4708 The Holy Quran
4709      4709 The Holy Quran
4710      4710 The Holy Quran
4711      4711 The Holy Quran
4712      4712 The Holy Quran
4713      4713 The Holy Quran
4714      4714 The Holy Quran
4715      4715 The Holy Quran
4716      4716 The Holy Quran
4717      4717 The Holy Quran
4718      4718 The Holy Quran
4719      4719 The Holy Quran
4720      4720 The Holy Quran
4721      4721 The Holy Quran
4722      4722 The Holy Quran
4723      4723 The Holy Quran
4724      4724 The Holy Quran
4725      4725 The Holy Quran
4726      4726 The Holy Quran
4727      4727 The Holy Quran
4728      4728 The Holy Quran
4729      4729 The Holy Quran
4730      4730 The Holy Quran
4731      4731 The Holy Quran
4732      4732 The Holy Quran
4733      4733 The Holy Quran
4734      4734 The Holy Quran
4735      4735 The Holy Quran
4736      4736 The Holy Quran
4737      4737 The Holy Quran
4738      4738 The Holy Quran
4739      4739 The Holy Quran
4740      4740 The Holy Quran
4741      4741 The Holy Quran
4742      4742 The Holy Quran
4743      4743 The Holy Quran
4744      4744 The Holy Quran
4745      4745 The Holy Quran
4746      4746 The Holy Quran
4747      4747 The Holy Quran
4748      4748 The Holy Quran
4749      4749 The Holy Quran
4750      4750 The Holy Quran
4751      4751 The Holy Quran
4752      4752 The Holy Quran
4753      4753 The Holy Quran
4754      4754 The Holy Quran
4755      4755 The Holy Quran
4756      4756 The Holy Quran
4757      4757 The Holy Quran
4758      4758 The Holy Quran
4759      4759 The Holy Quran
4760      4760 The Holy Quran
4761      4761 The Holy Quran
4762      4762 The Holy Quran
4763      4763 The Holy Quran
4764      4764 The Holy Quran
4765      4765 The Holy Quran
4766      4766 The Holy Quran
4767      4767 The Holy Quran
4768      4768 The Holy Quran
4769      4769 The Holy Quran
4770      4770 The Holy Quran
4771      4771 The Holy Quran
4772      4772 The Holy Quran
4773      4773 The Holy Quran
4774      4774 The Holy Quran
4775      4775 The Holy Quran
4776      4776 The Holy Quran
4777      4777 The Holy Quran
4778      4778 The Holy Quran
4779      4779 The Holy Quran
4780      4780 The Holy Quran
4781      4781 The Holy Quran
4782      4782 The Holy Quran
4783      4783 The Holy Quran
4784      4784 The Holy Quran
4785      4785 The Holy Quran
4786      4786 The Holy Quran
4787      4787 The Holy Quran
4788      4788 The Holy Quran
4789      4789 The Holy Quran
4790      4790 The Holy Quran
4791      4791 The Holy Quran
4792      4792 The Holy Quran
4793      4793 The Holy Quran
4794      4794 The Holy Quran
4795      4795 The Holy Quran
4796      4796 The Holy Quran
4797      4797 The Holy Quran
4798      4798 The Holy Quran
4799      4799 The Holy Quran
4800      4800 The Holy Quran
4801      4801 The Holy Quran
4802      4802 The Holy Quran
4803      4803 The Holy Quran
4804      4804 The Holy Quran
4805      4805 The Holy Quran
4806      4806 The Holy Quran
4807      4807 The Holy Quran
4808      4808 The Holy Quran
4809      4809 The Holy Quran
4810      4810 The Holy Quran
4811      4811 The Holy Quran
4812      4812 The Holy Quran
4813      4813 The Holy Quran
4814      4814 The Holy Quran
4815      4815 The Holy Quran
4816      4816 The Holy Quran
4817      4817 The Holy Quran
4818      4818 The Holy Quran
4819      4819 The Holy Quran
4820      4820 The Holy Quran
4821      4821 The Holy Quran
4822      4822 The Holy Quran
4823      4823 The Holy Quran
4824      4824 The Holy Quran
4825      4825 The Holy Quran
4826      4826 The Holy Quran
4827      4827 The Holy Quran
4828      4828 The Holy Quran
4829      4829 The Holy Quran
4830      4830 The Holy Quran
4831      4831 The Holy Quran
4832      4832 The Holy Quran
4833      4833 The Holy Quran
4834      4834 The Holy Quran
4835      4835 The Holy Quran
4836      4836 The Holy Quran
4837      4837 The Holy Quran
4838      4838 The Holy Quran
4839      4839 The Holy Quran
4840      4840 The Holy Quran
4841      4841 The Holy Quran
4842      4842 The Holy Quran
4843      4843 The Holy Quran
4844      4844 The Holy Quran
4845      4845 The Holy Quran
4846      4846 The Holy Quran
4847      4847 The Holy Quran
4848      4848 The Holy Quran
4849      4849 The Holy Quran
4850      4850 The Holy Quran
4851      4851 The Holy Quran
4852      4852 The Holy Quran
4853      4853 The Holy Quran
4854      4854 The Holy Quran
4855      4855 The Holy Quran
4856      4856 The Holy Quran
4857      4857 The Holy Quran
4858      4858 The Holy Quran
4859      4859 The Holy Quran
4860      4860 The Holy Quran
4861      4861 The Holy Quran
4862      4862 The Holy Quran
4863      4863 The Holy Quran
4864      4864 The Holy Quran
4865      4865 The Holy Quran
4866      4866 The Holy Quran
4867      4867 The Holy Quran
4868      4868 The Holy Quran
4869      4869 The Holy Quran
4870      4870 The Holy Quran
4871      4871 The Holy Quran
4872      4872 The Holy Quran
4873      4873 The Holy Quran
4874      4874 The Holy Quran
4875      4875 The Holy Quran
4876      4876 The Holy Quran
4877      4877 The Holy Quran
4878      4878 The Holy Quran
4879      4879 The Holy Quran
4880      4880 The Holy Quran
4881      4881 The Holy Quran
4882      4882 The Holy Quran
4883      4883 The Holy Quran
4884      4884 The Holy Quran
4885      4885 The Holy Quran
4886      4886 The Holy Quran
4887      4887 The Holy Quran
4888      4888 The Holy Quran
4889      4889 The Holy Quran
4890      4890 The Holy Quran
4891      4891 The Holy Quran
4892      4892 The Holy Quran
4893      4893 The Holy Quran
4894      4894 The Holy Quran
4895      4895 The Holy Quran
4896      4896 The Holy Quran
4897      4897 The Holy Quran
4898      4898 The Holy Quran
4899      4899 The Holy Quran
4900      4900 The Holy Quran
4901      4901 The Holy Quran
4902      4902 The Holy Quran
4903      4903 The Holy Quran
4904      4904 The Holy Quran
4905      4905 The Holy Quran
4906      4906 The Holy Quran
4907      4907 The Holy Quran
4908      4908 The Holy Quran
4909      4909 The Holy Quran
4910      4910 The Holy Quran
4911      4911 The Holy Quran
4912      4912 The Holy Quran
4913      4913 The Holy Quran
4914      4914 The Holy Quran
4915      4915 The Holy Quran
4916      4916 The Holy Quran
4917      4917 The Holy Quran
4918      4918 The Holy Quran
4919      4919 The Holy Quran
4920      4920 The Holy Quran
4921      4921 The Holy Quran
4922      4922 The Holy Quran
4923      4923 The Holy Quran
4924      4924 The Holy Quran
4925      4925 The Holy Quran
4926      4926 The Holy Quran
4927      4927 The Holy Quran
4928      4928 The Holy Quran
4929      4929 The Holy Quran
4930      4930 The Holy Quran
4931      4931 The Holy Quran
4932      4932 The Holy Quran
4933      4933 The Holy Quran
4934      4934 The Holy Quran
4935      4935 The Holy Quran
4936      4936 The Holy Quran
4937      4937 The Holy Quran
4938      4938 The Holy Quran
4939      4939 The Holy Quran
4940      4940 The Holy Quran
4941      4941 The Holy Quran
4942      4942 The Holy Quran
4943      4943 The Holy Quran
4944      4944 The Holy Quran
4945      4945 The Holy Quran
4946      4946 The Holy Quran
4947      4947 The Holy Quran
4948      4948 The Holy Quran
4949      4949 The Holy Quran
4950      4950 The Holy Quran
4951      4951 The Holy Quran
4952      4952 The Holy Quran
4953      4953 The Holy Quran
4954      4954 The Holy Quran
4955      4955 The Holy Quran
4956      4956 The Holy Quran
4957      4957 The Holy Quran
4958      4958 The Holy Quran
4959      4959 The Holy Quran
4960      4960 The Holy Quran
4961      4961 The Holy Quran
4962      4962 The Holy Quran
4963      4963 The Holy Quran
4964      4964 The Holy Quran
4965      4965 The Holy Quran
4966      4966 The Holy Quran
4967      4967 The Holy Quran
4968      4968 The Holy Quran
4969      4969 The Holy Quran
4970      4970 The Holy Quran
4971      4971 The Holy Quran
4972      4972 The Holy Quran
4973      4973 The Holy Quran
4974      4974 The Holy Quran
4975      4975 The Holy Quran
4976      4976 The Holy Quran
4977      4977 The Holy Quran
4978      4978 The Holy Quran
4979      4979 The Holy Quran
4980      4980 The Holy Quran
4981      4981 The Holy Quran
4982      4982 The Holy Quran
4983      4983 The Holy Quran
4984      4984 The Holy Quran
4985      4985 The Holy Quran
4986      4986 The Holy Quran
4987      4987 The Holy Quran
4988      4988 The Holy Quran
4989      4989 The Holy Quran
4990      4990 The Holy Quran
4991      4991 The Holy Quran
4992      4992 The Holy Quran
4993      4993 The Holy Quran
4994      4994 The Holy Quran
4995      4995 The Holy Quran
4996      4996 The Holy Quran
4997      4997 The Holy Quran
4998      4998 The Holy Quran
4999      4999 The Holy Quran
5000      5000 The Holy Quran
5001      5001 The Holy Quran
5002      5002 The Holy Quran
5003      5003 The Holy Quran
5004      5004 The Holy Quran
5005      5005 The Holy Quran
5006      5006 The Holy Quran
5007      5007 The Holy Quran
5008      5008 The Holy Quran
5009      5009 The Holy Quran
5010      5010 The Holy Quran
5011      5011 The Holy Quran
5012      5012 The Holy Quran
5013      5013 The Holy Quran
5014      5014 The Holy Quran
5015      5015 The Holy Quran
5016      5016 The Holy Quran
5017      5017 The Holy Quran
5018      5018 The Holy Quran
5019      5019 The Holy Quran
5020      5020 The Holy Quran
5021      5021 The Holy Quran
5022      5022 The Holy Quran
5023      5023 The Holy Quran
5024      5024 The Holy Quran
5025      5025 The Holy Quran
5026      5026 The Holy Quran
5027      5027 The Holy Quran
5028      5028 The Holy Quran
5029      5029 The Holy Quran
5030      5030 The Holy Quran
5031      5031 The Holy Quran
5032      5032 The Holy Quran
5033      5033 The Holy Quran
5034      5034 The Holy Quran
5035      5035 The Holy Quran
5036      5036 The Holy Quran
5037      5037 The Holy Quran
5038      5038 The Holy Quran
5039      5039 The Holy Quran
5040      5040 The Holy Quran
5041      5041 The Holy Quran
5042      5042 The Holy Quran
5043      5043 The Holy Quran
5044      5044 The Holy Quran
5045      5045 The Holy Quran
5046      5046 The Holy Quran
5047      5047 The Holy Quran
5048      5048 The Holy Quran
5049      5049 The Holy Quran
5050      5050 The Holy Quran
5051      5051 The Holy Quran
5052      5052 The Holy Quran
5053      5053 The Holy Quran
5054      5054 The Holy Quran
5055      5055 The Holy Quran
5056      5056 The Holy Quran
5057      5057 The Holy Quran
5058      5058 The Holy Quran
5059      5059 The Holy Quran
5060      5060 The Holy Quran
5061      5061 The Holy Quran
5062      5062 The Holy Quran
5063      5063 The Holy Quran
5064      5064 The Holy Quran
5065      5065 The Holy Quran
5066      5066 The Holy Quran
5067      5067 The Holy Quran
5068      5068 The Holy Quran
5069      5069 The Holy Quran
5070      5070 The Holy Quran
5071      5071 The Holy Quran
5072      5072 The Holy Quran
5073      5073 The Holy Quran
5074      5074 The Holy Quran
5075      5075 The Holy Quran
5076      5076 The Holy Quran
5077      5077 The Holy Quran
5078      5078 The Holy Quran
5079      5079 The Holy Quran
5080      5080 The Holy Quran
5081      5081 The Holy Quran
5082      5082 The Holy Quran
5083      5083 The Holy Quran
5084      5084 The Holy Quran
5085      5085 The Holy Quran
5086      5086 The Holy Quran
5087      5087 The Holy Quran
5088      5088 The Holy Quran
5089      5089 The Holy Quran
5090      5090 The Holy Quran
5091      5091 The Holy Quran
5092      5092 The Holy Quran
5093      5093 The Holy Quran
5094      5094 The Holy Quran
5095      5095 The Holy Quran
5096      5096 The Holy Quran
5097      5097 The Holy Quran
5098      5098 The Holy Quran
5099      5099 The Holy Quran
5100      5100 The Holy Quran
5101      5101 The Holy Quran
5102      5102 The Holy Quran
5103      5103 The Holy Quran
5104      5104 The Holy Quran
5105      5105 The Holy Quran
5106      5106 The Holy Quran
5107      5107 The Holy Quran
5108      5108 The Holy Quran
5109      5109 The Holy Quran
5110      5110 The Holy Quran
5111      5111 The Holy Quran
5112      5112 The Holy Quran
5113      5113 The Holy Quran
5114      5114 The Holy Quran
5115      5115 The Holy Quran
5116      5116 The Holy Quran
5117      5117 The Holy Quran
5118      5118 The Holy Quran
5119      5119 The Holy Quran
5120      5120 The Holy Quran
5121      5121 The Holy Quran
5122      5122 The Holy Quran
5123      5123 The Holy Quran
5124      5124 The Holy Quran
5125      5125 The Holy Quran
5126      5126 The Holy Quran
5127      5127 The Holy Quran
5128      5128 The Holy Quran
5129      5129 The Holy Quran
5130      5130 The Holy Quran
5131      5131 The Holy Quran
5132      5132 The Holy Quran
5133      5133 The Holy Quran
5134      5134 The Holy Quran
5135      5135 The Holy Quran
5136      5136 The Holy Quran
5137      5137 The Holy Quran
5138      5138 The Holy Quran
5139      5139 The Holy Quran
5140      5140 The Holy Quran
5141      5141 The Holy Quran
5142      5142 The Holy Quran
5143      5143 The Holy Quran
5144      5144 The Holy Quran
5145      5145 The Holy Quran
5146      5146 The Holy Quran
5147      5147 The Holy Quran
5148      5148 The Holy Quran
5149      5149 The Holy Quran
5150      5150 The Holy Quran
5151      5151 The Holy Quran
5152      5152 The Holy Quran
5153      5153 The Holy Quran
5154      5154 The Holy Quran
5155      5155 The Holy Quran
5156      5156 The Holy Quran
5157      5157 The Holy Quran
5158      5158 The Holy Quran
5159      5159 The Holy Quran
5160      5160 The Holy Quran
5161      5161 The Holy Quran
5162      5162 The Holy Quran
5163      5163 The Holy Quran
5164      5164 The Holy Quran
5165      5165 The Holy Quran
5166      5166 The Holy Quran
5167      5167 The Holy Quran
5168      5168 The Holy Quran
5169      5169 The Holy Quran
5170      5170 The Holy Quran
5171      5171 The Holy Quran
5172      5172 The Holy Quran
5173      5173 The Holy Quran
5174      5174 The Holy Quran
5175      5175 The Holy Quran
5176      5176 The Holy Quran
5177      5177 The Holy Quran
5178      5178 The Holy Quran
5179      5179 The Holy Quran
5180      5180 The Holy Quran
5181      5181 The Holy Quran
5182      5182 The Holy Quran
5183      5183 The Holy Quran
5184      5184 The Holy Quran
5185      5185 The Holy Quran
5186      5186 The Holy Quran
5187      5187 The Holy Quran
5188      5188 The Holy Quran
5189      5189 The Holy Quran
5190      5190 The Holy Quran
5191      5191 The Holy Quran
5192      5192 The Holy Quran
5193      5193 The Holy Quran
5194      5194 The Holy Quran
5195      5195 The Holy Quran
5196      5196 The Holy Quran
5197      5197 The Holy Quran
5198      5198 The Holy Quran
5199      5199 The Holy Quran
5200      5200 The Holy Quran
5201      5201 The Holy Quran
5202      5202 The Holy Quran
5203      5203 The Holy Quran
5204      5204 The Holy Quran
5205      5205 The Holy Quran
5206      5206 The Holy Quran
5207      5207 The Holy Quran
5208      5208 The Holy Quran
5209      5209 The Holy Quran
5210      5210 The Holy Quran
5211      5211 The Holy Quran
5212      5212 The Holy Quran
5213      5213 The Holy Quran
5214      5214 The Holy Quran
5215      5215 The Holy Quran
5216      5216 The Holy Quran
5217      5217 The Holy Quran
5218      5218 The Holy Quran
5219      5219 The Holy Quran
5220      5220 The Holy Quran
5221      5221 The Holy Quran
5222      5222 The Holy Quran
5223      5223 The Holy Quran
5224      5224 The Holy Quran
5225      5225 The Holy Quran
5226      5226 The Holy Quran
5227      5227 The Holy Quran
5228      5228 The Holy Quran
5229      5229 The Holy Quran
5230      5230 The Holy Quran
5231      5231 The Holy Quran
5232      5232 The Holy Quran
5233      5233 The Holy Quran
5234      5234 The Holy Quran
5235      5235 The Holy Quran
5236      5236 The Holy Quran
5237      5237 The Holy Quran
5238      5238 The Holy Quran
5239      5239 The Holy Quran
5240      5240 The Holy Quran
5241      5241 The Holy Quran
5242      5242 The Holy Quran
5243      5243 The Holy Quran
5244      5244 The Holy Quran
5245      5245 The Holy Quran
5246      5246 The Holy Quran
5247      5247 The Holy Quran
5248      5248 The Holy Quran
5249      5249 The Holy Quran
5250      5250 The Holy Quran
5251      5251 The Holy Quran
5252      5252 The Holy Quran
5253      5253 The Holy Quran
5254      5254 The Holy Quran
5255      5255 The Holy Quran
5256      5256 The Holy Quran
5257      5257 The Holy Quran
5258      5258 The Holy Quran
5259      5259 The Holy Quran
5260      5260 The Holy Quran
5261      5261 The Holy Quran
5262      5262 The Holy Quran
5263      5263 The Holy Quran
5264      5264 The Holy Quran
5265      5265 The Holy Quran
5266      5266 The Holy Quran
5267      5267 The Holy Quran
5268      5268 The Holy Quran
5269      5269 The Holy Quran
5270      5270 The Holy Quran
5271      5271 The Holy Quran
5272      5272 The Holy Quran
5273      5273 The Holy Quran
5274      5274 The Holy Quran
5275      5275 The Holy Quran
5276      5276 The Holy Quran
5277      5277 The Holy Quran
5278      5278 The Holy Quran
5279      5279 The Holy Quran
5280      5280 The Holy Quran
5281      5281 The Holy Quran
5282      5282 The Holy Quran
5283      5283 The Holy Quran
5284      5284 The Holy Quran
5285      5285 The Holy Quran
5286      5286 The Holy Quran
5287      5287 The Holy Quran
5288      5288 The Holy Quran
5289      5289 The Holy Quran
5290      5290 The Holy Quran
5291      5291 The Holy Quran
5292      5292 The Holy Quran
5293      5293 The Holy Quran
5294      5294 The Holy Quran
5295      5295 The Holy Quran
5296      5296 The Holy Quran
5297      5297 The Holy Quran
5298      5298 The Holy Quran
5299      5299 The Holy Quran
5300      5300 The Holy Quran
5301      5301 The Holy Quran
5302      5302 The Holy Quran
5303      5303 The Holy Quran
5304      5304 The Holy Quran
5305      5305 The Holy Quran
5306      5306 The Holy Quran
5307      5307 The Holy Quran
5308      5308 The Holy Quran
5309      5309 The Holy Quran
5310      5310 The Holy Quran
5311      5311 The Holy Quran
5312      5312 The Holy Quran
5313      5313 The Holy Quran
5314      5314 The Holy Quran
5315      5315 The Holy Quran
5316      5316 The Holy Quran
5317      5317 The Holy Quran
5318      5318 The Holy Quran
5319      5319 The Holy Quran
5320      5320 The Holy Quran
5321      5321 The Holy Quran
5322      5322 The Holy Quran
5323      5323 The Holy Quran
5324      5324 The Holy Quran
5325      5325 The Holy Quran
5326      5326 The Holy Quran
5327      5327 The Holy Quran
5328      5328 The Holy Quran
5329      5329 The Holy Quran
5330      5330 The Holy Quran
5331      5331 The Holy Quran
5332      5332 The Holy Quran
5333      5333 The Holy Quran
5334      5334 The Holy Quran
5335      5335 The Holy Quran
5336      5336 The Holy Quran
5337      5337 The Holy Quran
5338      5338 The Holy Quran
5339      5339 The Holy Quran
5340      5340 The Holy Quran
5341      5341 The Holy Quran
5342      5342 The Holy Quran
5343      5343 The Holy Quran
5344      5344 The Holy Quran
5345      5345 The Holy Quran
5346      5346 The Holy Quran
5347      5347 The Holy Quran
5348      5348 The Holy Quran
5349      5349 The Holy Quran
5350      5350 The Holy Quran
5351      5351 The Holy Quran
5352      5352 The Holy Quran
5353      5353 The Holy Quran
5354      5354 The Holy Quran
5355      5355 The Holy Quran
5356      5356 The Holy Quran
5357      5357 The Holy Quran
5358      5358 The Holy Quran
5359      5359 The Holy Quran
5360      5360 The Holy Quran
5361      5361 The Holy Quran
5362      5362 The Holy Quran
5363      5363 The Holy Quran
5364      5364 The Holy Quran
5365      5365 The Holy Quran
5366      5366 The Holy Quran
5367      5367 The Holy Quran
5368      5368 The Holy Quran
5369      5369 The Holy Quran
5370      5370 The Holy Quran
5371      5371 The Holy Quran
5372      5372 The Holy Quran
5373      5373 The Holy Quran
5374      5374 The Holy Quran
5375      5375 The Holy Quran
5376      5376 The Holy Quran
5377      5377 The Holy Quran
5378      5378 The Holy Quran
5379      5379 The Holy Quran
5380      5380 The Holy Quran
5381      5381 The Holy Quran
5382      5382 The Holy Quran
5383      5383 The Holy Quran
5384      5384 The Holy Quran
5385      5385 The Holy Quran
5386      5386 The Holy Quran
5387      5387 The Holy Quran
5388      5388 The Holy Quran
5389      5389 The Holy Quran
5390      5390 The Holy Quran
5391      5391 The Holy Quran
5392      5392 The Holy Quran
5393      5393 The Holy Quran
5394      5394 The Holy Quran
5395      5395 The Holy Quran
5396      5396 The Holy Quran
5397      5397 The Holy Quran
5398      5398 The Holy Quran
5399      5399 The Holy Quran
5400      5400 The Holy Quran
5401      5401 The Holy Quran
5402      5402 The Holy Quran
5403      5403 The Holy Quran
5404      5404 The Holy Quran
5405      5405 The Holy Quran
5406      5406 The Holy Quran
5407      5407 The Holy Quran
5408      5408 The Holy Quran
5409      5409 The Holy Quran
5410      5410 The Holy Quran
5411      5411 The Holy Quran
5412      5412 The Holy Quran
5413      5413 The Holy Quran
5414      5414 The Holy Quran
5415      5415 The Holy Quran
5416      5416 The Holy Quran
5417      5417 The Holy Quran
5418      5418 The Holy Quran
5419      5419 The Holy Quran
5420      5420 The Holy Quran
5421      5421 The Holy Quran
5422      5422 The Holy Quran
5423      5423 The Holy Quran
5424      5424 The Holy Quran
5425      5425 The Holy Quran
5426      5426 The Holy Quran
5427      5427 The Holy Quran
5428      5428 The Holy Quran
5429      5429 The Holy Quran
5430      5430 The Holy Quran
5431      5431 The Holy Quran
5432      5432 The Holy Quran
5433      5433 The Holy Quran
5434      5434 The Holy Quran
5435      5435 The Holy Quran
5436      5436 The Holy Quran
5437      5437 The Holy Quran
5438      5438 The Holy Quran
5439      5439 The Holy Quran
5440      5440 The Holy Quran
5441      5441 The Holy Quran
5442      5442 The Holy Quran
5443      5443 The Holy Quran
5444      5444 The Holy Quran
5445      5445 The Holy Quran
5446      5446 The Holy Quran
5447      5447 The Holy Quran
5448      5448 The Holy Quran
5449      5449 The Holy Quran
5450      5450 The Holy Quran
5451      5451 The Holy Quran
5452      5452 The Holy Quran
5453      5453 The Holy Quran
5454      5454 The Holy Quran
5455      5455 The Holy Quran
5456      5456 The Holy Quran
5457      5457 The Holy Quran
5458      5458 The Holy Quran
5459      5459 The Holy Quran
5460      5460 The Holy Quran
5461      5461 The Holy Quran
5462      5462 The Holy Quran
5463      5463 The Holy Quran
5464      5464 The Holy Quran
5465      5465 The Holy Quran
5466      5466 The Holy Quran
5467      5467 The Holy Quran
5468      5468 The Holy Quran
5469      5469 The Holy Quran
5470      5470 The Holy Quran
5471      5471 The Holy Quran
5472      5472 The Holy Quran
5473      5473 The Holy Quran
5474      5474 The Holy Quran
5475      5475 The Holy Quran
5476      5476 The Holy Quran
5477      5477 The Holy Quran
5478      5478 The Holy Quran
5479      5479 The Holy Quran
5480      5480 The Holy Quran
5481      5481 The Holy Quran
5482      5482 The Holy Quran
5483      5483 The Holy Quran
5484      5484 The Holy Quran
5485      5485 The Holy Quran
5486      5486 The Holy Quran
5487      5487 The Holy Quran
5488      5488 The Holy Quran
5489      5489 The Holy Quran
5490      5490 The Holy Quran
5491      5491 The Holy Quran
5492      5492 The Holy Quran
5493      5493 The Holy Quran
5494      5494 The Holy Quran
5495      5495 The Holy Quran
5496      5496 The Holy Quran
5497      5497 The Holy Quran
5498      5498 The Holy Quran
5499      5499 The Holy Quran
5500      5500 The Holy Quran
5501      5501 The Holy Quran
5502      5502 The Holy Quran
5503      5503 The Holy Quran
5504      5504 The Holy Quran
5505      5505 The Holy Quran
5506      5506 The Holy Quran
5507      5507 The Holy Quran
5508      5508 The Holy Quran
5509      5509 The Holy Quran
5510      5510 The Holy Quran
5511      5511 The Holy Quran
5512      5512 The Holy Quran
5513      5513 The Holy Quran
5514      5514 The Holy Quran
5515      5515 The Holy Quran
5516      5516 The Holy Quran
5517      5517 The Holy Quran
5518      5518 The Holy Quran
5519      5519 The Holy Quran
5520      5520 The Holy Quran
5521      5521 The Holy Quran
5522      5522 The Holy Quran
5523      5523 The Holy Quran
5524      5524 The Holy Quran
5525      5525 The Holy Quran
5526      5526 The Holy Quran
5527      5527 The Holy Quran
5528      5528 The Holy Quran
5529      5529 The Holy Quran
5530      5530 The Holy Quran
5531      5531 The Holy Quran
5532      5532 The Holy Quran
5533      5533 The Holy Quran
5534      5534 The Holy Quran
5535      5535 The Holy Quran
5536      5536 The Holy Quran
5537      5537 The Holy Quran
5538      5538 The Holy Quran
5539      5539 The Holy Quran
5540      5540 The Holy Quran
5541      5541 The Holy Quran
5542      5542 The Holy Quran
5543      5543 The Holy Quran
5544      5544 The Holy Quran
5545      5545 The Holy Quran
5546      5546 The Holy Quran
5547      5547 The Holy Quran
5548      5548 The Holy Quran
5549      5549 The Holy Quran
5550      5550 The Holy Quran
5551      5551 The Holy Quran
5552      5552 The Holy Quran
5553      5553 The Holy Quran
5554      5554 The Holy Quran
5555      5555 The Holy Quran
5556      5556 The Holy Quran
5557      5557 The Holy Quran
5558      5558 The Holy Quran
5559      5559 The Holy Quran
5560      5560 The Holy Quran
5561      5561 The Holy Quran
5562      5562 The Holy Quran
5563      5563 The Holy Quran
5564      5564 The Holy Quran
5565      5565 The Holy Quran
5566      5566 The Holy Quran
5567      5567 The Holy Quran
5568      5568 The Holy Quran
5569      5569 The Holy Quran
5570      5570 The Holy Quran
5571      5571 The Holy Quran
5572      5572 The Holy Quran
5573      5573 The Holy Quran
5574      5574 The Holy Quran
5575      5575 The Holy Quran
5576      5576 The Holy Quran
5577      5577 The Holy Quran
5578      5578 The Holy Quran
5579      5579 The Holy Quran
5580      5580 The Holy Quran
5581      5581 The Holy Quran
5582      5582 The Holy Quran
5583      5583 The Holy Quran
5584      5584 The Holy Quran
5585      5585 The Holy Quran
5586      5586 The Holy Quran
5587      5587 The Holy Quran
5588      5588 The Holy Quran
5589      5589 The Holy Quran
5590      5590 The Holy Quran
5591      5591 The Holy Quran
5592      5592 The Holy Quran
5593      5593 The Holy Quran
5594      5594 The Holy Quran
5595      5595 The Holy Quran
5596      5596 The Holy Quran
5597      5597 The Holy Quran
5598      5598 The Holy Quran
5599      5599 The Holy Quran
5600      5600 The Holy Quran
5601      5601 The Holy Quran
5602      5602 The Holy Quran
5603      5603 The Holy Quran
5604      5604 The Holy Quran
5605      5605 The Holy Quran
5606      5606 The Holy Quran
5607      5607 The Holy Quran
5608      5608 The Holy Quran
5609      5609 The Holy Quran
5610      5610 The Holy Quran
5611      5611 The Holy Quran
5612      5612 The Holy Quran
5613      5613 The Holy Quran
5614      5614 The Holy Quran
5615      5615 The Holy Quran
5616      5616 The Holy Quran
5617      5617 The Holy Quran
5618      5618 The Holy Quran
5619      5619 The Holy Quran
5620      5620 The Holy Quran
5621      5621 The Holy Quran
5622      5622 The Holy Quran
5623      5623 The Holy Quran
5624      5624 The Holy Quran
5625      5625 The Holy Quran
5626      5626 The Holy Quran
5627      5627 The Holy Quran
5628      5628 The Holy Quran
5629      5629 The Holy Quran
5630      5630 The Holy Quran
5631      5631 The Holy Quran
5632      5632 The Holy Quran
5633      5633 The Holy Quran
5634      5634 The Holy Quran
5635      5635 The Holy Quran
5636      5636 The Holy Quran
5637      5637 The Holy Quran
5638      5638 The Holy Quran
5639      5639 The Holy Quran
5640      5640 The Holy Quran
5641      5641 The Holy Quran
5642      5642 The Holy Quran
5643      5643 The Holy Quran
5644      5644 The Holy Quran
5645      5645 The Holy Quran
5646      5646 The Holy Quran
5647      5647 The Holy Quran
5648      5648 The Holy Quran
5649      5649 The Holy Quran
5650      5650 The Holy Quran
5651      5651 The Holy Quran
5652      5652 The Holy Quran
5653      5653 The Holy Quran
5654      5654 The Holy Quran
5655      5655 The Holy Quran
5656      5656 The Holy Quran
5657      5657 The Holy Quran
5658      5658 The Holy Quran
5659      5659 The Holy Quran
5660      5660 The Holy Quran
5661      5661 The Holy Quran
5662      5662 The Holy Quran
5663      5663 The Holy Quran
5664      5664 The Holy Quran
5665      5665 The Holy Quran
5666      5666 The Holy Quran
5667      5667 The Holy Quran
5668      5668 The Holy Quran
5669      5669 The Holy Quran
5670      5670 The Holy Quran
5671      5671 The Holy Quran
5672      5672 The Holy Quran
5673      5673 The Holy Quran
5674      5674 The Holy Quran
5675      5675 The Holy Quran
5676      5676 The Holy Quran
5677      5677 The Holy Quran
5678      5678 The Holy Quran
5679      5679 The Holy Quran
5680      5680 The Holy Quran
5681      5681 The Holy Quran
5682      5682 The Holy Quran
5683      5683 The Holy Quran
5684      5684 The Holy Quran
5685      5685 The Holy Quran
5686      5686 The Holy Quran
5687      5687 The Holy Quran
5688      5688 The Holy Quran
5689      5689 The Holy Quran
5690      5690 The Holy Quran
5691      5691 The Holy Quran
5692      5692 The Holy Quran
5693      5693 The Holy Quran
5694      5694 The Holy Quran
5695      5695 The Holy Quran
5696      5696 The Holy Quran
5697      5697 The Holy Quran
5698      5698 The Holy Quran
5699      5699 The Holy Quran
5700      5700 The Holy Quran
5701      5701 The Holy Quran
5702      5702 The Holy Quran
5703      5703 The Holy Quran
5704      5704 The Holy Quran
5705      5705 The Holy Quran
5706      5706 The Holy Quran
5707      5707 The Holy Quran
5708      5708 The Holy Quran
5709      5709 The Holy Quran
5710      5710 The Holy Quran
5711      5711 The Holy Quran
5712      5712 The Holy Quran
5713      5713 The Holy Quran
5714      5714 The Holy Quran
5715      5715 The Holy Quran
5716      5716 The Holy Quran
5717      5717 The Holy Quran
5718      5718 The Holy Quran
5719      5719 The Holy Quran
5720      5720 The Holy Quran
5721      5721 The Holy Quran
5722      5722 The Holy Quran
5723      5723 The Holy Quran
5724      5724 The Holy Quran
5725      5725 The Holy Quran
5726      5726 The Holy Quran
5727      5727 The Holy Quran
5728      5728 The Holy Quran
5729      5729 The Holy Quran
5730      5730 The Holy Quran
5731      5731 The Holy Quran
5732      5732 The Holy Quran
5733      5733 The Holy Quran
5734      5734 The Holy Quran
5735      5735 The Holy Quran
5736      5736 The Holy Quran
5737      5737 The Holy Quran
5738      5738 The Holy Quran
5739      5739 The Holy Quran
5740      5740 The Holy Quran
5741      5741 The Holy Quran
5742      5742 The Holy Quran
5743      5743 The Holy Quran
5744      5744 The Holy Quran
5745      5745 The Holy Quran
5746      5746 The Holy Quran
5747      5747 The Holy Quran
5748      5748 The Holy Quran
5749      5749 The Holy Quran
5750      5750 The Holy Quran
5751      5751 The Holy Quran
5752      5752 The Holy Quran
5753      5753 The Holy Quran
5754      5754 The Holy Quran
5755      5755 The Holy Quran
5756      5756 The Holy Quran
5757      5757 The Holy Quran
5758      5758 The Holy Quran
5759      5759 The Holy Quran
5760      5760 The Holy Quran
5761      5761 The Holy Quran
5762      5762 The Holy Quran
5763      5763 The Holy Quran
5764      5764 The Holy Quran
5765      5765 The Holy Quran
5766      5766 The Holy Quran
5767      5767 The Holy Quran
5768      5768 The Holy Quran
5769      5769 The Holy Quran
5770      5770 The Holy Quran
5771      5771 The Holy Quran
5772      5772 The Holy Quran
5773      5773 The Holy Quran
5774      5774 The Holy Quran
5775      5775 The Holy Quran
5776      5776 The Holy Quran
5777      5777 The Holy Quran
5778      5778 The Holy Quran
5779      5779 The Holy Quran
5780      5780 The Holy Quran
5781      5781 The Holy Quran
5782      5782 The Holy Quran
5783      5783 The Holy Quran
5784      5784 The Holy Quran
5785      5785 The Holy Quran
5786      5786 The Holy Quran
5787      5787 The Holy Quran
5788      5788 The Holy Quran
5789      5789 The Holy Quran
5790      5790 The Holy Quran
5791      5791 The Holy Quran
5792      5792 The Holy Quran
5793      5793 The Holy Quran
5794      5794 The Holy Quran
5795      5795 The Holy Quran
5796      5796 The Holy Quran
5797      5797 The Holy Quran
5798      5798 The Holy Quran
5799      5799 The Holy Quran
5800      5800 The Holy Quran
5801      5801 The Holy Quran
5802      5802 The Holy Quran
5803      5803 The Holy Quran
5804      5804 The Holy Quran
5805      5805 The Holy Quran
5806      5806 The Holy Quran
5807      5807 The Holy Quran
5808      5808 The Holy Quran
5809      5809 The Holy Quran
5810      5810 The Holy Quran
5811      5811 The Holy Quran
5812      5812 The Holy Quran
5813      5813 The Holy Quran
5814      5814 The Holy Quran
5815      5815 The Holy Quran
5816      5816 The Holy Quran
5817      5817 The Holy Quran
5818      5818 The Holy Quran
5819      5819 The Holy Quran
5820      5820 The Holy Quran
5821      5821 The Holy Quran
5822      5822 The Holy Quran
5823      5823 The Holy Quran
5824      5824 The Holy Quran
5825      5825 The Holy Quran
5826      5826 The Holy Quran
5827      5827 The Holy Quran
5828      5828 The Holy Quran
5829      5829 The Holy Quran
5830      5830 The Holy Quran
5831      5831 The Holy Quran
5832      5832 The Holy Quran
5833      5833 The Holy Quran
5834      5834 The Holy Quran
5835      5835 The Holy Quran
5836      5836 The Holy Quran
5837      5837 The Holy Quran
5838      5838 The Holy Quran
5839      5839 The Holy Quran
5840      5840 The Holy Quran
5841      5841 The Holy Quran
5842      5842 The Holy Quran
5843      5843 The Holy Quran
5844      5844 The Holy Quran
5845      5845 The Holy Quran
5846      5846 The Holy Quran
5847      5847 The Holy Quran
5848      5848 The Holy Quran
5849      5849 The Holy Quran
5850      5850 The Holy Quran
5851      5851 The Holy Quran
5852      5852 The Holy Quran
5853      5853 The Holy Quran
5854      5854 The Holy Quran
5855      5855 The Holy Quran
5856      5856 The Holy Quran
5857      5857 The Holy Quran
5858      5858 The Holy Quran
5859      5859 The Holy Quran
5860      5860 The Holy Quran
5861      5861 The Holy Quran
5862      5862 The Holy Quran
5863      5863 The Holy Quran
5864      5864 The Holy Quran
5865      5865 The Holy Quran
5866      5866 The Holy Quran
5867      5867 The Holy Quran
5868      5868 The Holy Quran
5869      5869 The Holy Quran
5870      5870 The Holy Quran
5871      5871 The Holy Quran
5872      5872 The Holy Quran
5873      5873 The Holy Quran
5874      5874 The Holy Quran
5875      5875 The Holy Quran
5876      5876 The Holy Quran
5877      5877 The Holy Quran
5878      5878 The Holy Quran
5879      5879 The Holy Quran
5880      5880 The Holy Quran
5881      5881 The Holy Quran
5882      5882 The Holy Quran
5883      5883 The Holy Quran
5884      5884 The Holy Quran
5885      5885 The Holy Quran
5886      5886 The Holy Quran
5887      5887 The Holy Quran
5888      5888 The Holy Quran
5889      5889 The Holy Quran
5890      5890 The Holy Quran
5891      5891 The Holy Quran
5892      5892 The Holy Quran
5893      5893 The Holy Quran
5894      5894 The Holy Quran
5895      5895 The Holy Quran
5896      5896 The Holy Quran
5897      5897 The Holy Quran
5898      5898 The Holy Quran
5899      5899 The Holy Quran
5900      5900 The Holy Quran
5901      5901 The Holy Quran
5902      5902 The Holy Quran
5903      5903 The Holy Quran
5904      5904 The Holy Quran
5905      5905 The Holy Quran
5906      5906 The Holy Quran
5907      5907 The Holy Quran
5908      5908 The Holy Quran
5909      5909 The Holy Quran
5910      5910 The Holy Quran
5911      5911 The Holy Quran
5912      5912 The Holy Quran
5913      5913 The Holy Quran
5914      5914 The Holy Quran
5915      5915 The Holy Quran
5916      5916 The Holy Quran
5917      5917 The Holy Quran
5918      5918 The Holy Quran
5919      5919 The Holy Quran
5920      5920 The Holy Quran
5921      5921 The Holy Quran
5922      5922 The Holy Quran
5923      5923 The Holy Quran
5924      5924 The Holy Quran
5925      5925 The Holy Quran
5926      5926 The Holy Quran
5927      5927 The Holy Quran
5928      5928 The Holy Quran
5929      5929 The Holy Quran
5930      5930 The Holy Quran
5931      5931 The Holy Quran
5932      5932 The Holy Quran
5933      5933 The Holy Quran
5934      5934 The Holy Quran
5935      5935 The Holy Quran
5936      5936 The Holy Quran
5937      5937 The Holy Quran
5938      5938 The Holy Quran
5939      5939 The Holy Quran
5940      5940 The Holy Quran
5941      5941 The Holy Quran
5942      5942 The Holy Quran
5943      5943 The Holy Quran
5944      5944 The Holy Quran
5945      5945 The Holy Quran
5946      5946 The Holy Quran
5947      5947 The Holy Quran
5948      5948 The Holy Quran
5949      5949 The Holy Quran
5950      5950 The Holy Quran
5951      5951 The Holy Quran
5952      5952 The Holy Quran
5953      5953 The Holy Quran
5954      5954 The Holy Quran
5955      5955 The Holy Quran
5956      5956 The Holy Quran
5957      5957 The Holy Quran
5958      5958 The Holy Quran
5959      5959 The Holy Quran
5960      5960 The Holy Quran
5961      5961 The Holy Quran
5962      5962 The Holy Quran
5963      5963 The Holy Quran
5964      5964 The Holy Quran
5965      5965 The Holy Quran
5966      5966 The Holy Quran
5967      5967 The Holy Quran
5968      5968 The Holy Quran
5969      5969 The Holy Quran
5970      5970 The Holy Quran
5971      5971 The Holy Quran
5972      5972 The Holy Quran
5973      5973 The Holy Quran
5974      5974 The Holy Quran
5975      5975 The Holy Quran
5976      5976 The Holy Quran
5977      5977 The Holy Quran
5978      5978 The Holy Quran
5979      5979 The Holy Quran
5980      5980 The Holy Quran
5981      5981 The Holy Quran
5982      5982 The Holy Quran
5983      5983 The Holy Quran
5984      5984 The Holy Quran
5985      5985 The Holy Quran
5986      5986 The Holy Quran
5987      5987 The Holy Quran
5988      5988 The Holy Quran
5989      5989 The Holy Quran
5990      5990 The Holy Quran
5991      5991 The Holy Quran
5992      5992 The Holy Quran
5993      5993 The Holy Quran
5994      5994 The Holy Quran
5995      5995 The Holy Quran
5996      5996 The Holy Quran
5997      5997 The Holy Quran
5998      5998 The Holy Quran
5999      5999 The Holy Quran
6000      6000 The Holy Quran
6001      6001 The Holy Quran
6002      6002 The Holy Quran
6003      6003 The Holy Quran
6004      6004 The Holy Quran
6005      6005 The Holy Quran
6006      6006 The Holy Quran
6007      6007 The Holy Quran
6008      6008 The Holy Quran
6009      6009 The Holy Quran
6010      6010 The Holy Quran
6011      6011 The Holy Quran
6012      6012 The Holy Quran
6013      6013 The Holy Quran
6014      6014 The Holy Quran
6015      6015 The Holy Quran
6016      6016 The Holy Quran
6017      6017 The Holy Quran
6018      6018 The Holy Quran
6019      6019 The Holy Quran
6020      6020 The Holy Quran
6021      6021 The Holy Quran
6022      6022 The Holy Quran
6023      6023 The Holy Quran
6024      6024 The Holy Quran
6025      6025 The Holy Quran
6026      6026 The Holy Quran
6027      6027 The Holy Quran
6028      6028 The Holy Quran
6029      6029 The Holy Quran
6030      6030 The Holy Quran
6031      6031 The Holy Quran
6032      6032 The Holy Quran
6033      6033 The Holy Quran
6034      6034 The Holy Quran
6035      6035 The Holy Quran
6036      6036 The Holy Quran
6037      6037 The Holy Quran
6038      6038 The Holy Quran
6039      6039 The Holy Quran
6040      6040 The Holy Quran
6041      6041 The Holy Quran
6042      6042 The Holy Quran
6043      6043 The Holy Quran
6044      6044 The Holy Quran
6045      6045 The Holy Quran
6046      6046 The Holy Quran
6047      6047 The Holy Quran
6048      6048 The Holy Quran
6049      6049 The Holy Quran
6050      6050 The Holy Quran
6051      6051 The Holy Quran
6052      6052 The Holy Quran
6053      6053 The Holy Quran
6054      6054 The Holy Quran
6055      6055 The Holy Quran
6056      6056 The Holy Quran
6057      6057 The Holy Quran
6058      6058 The Holy Quran
6059      6059 The Holy Quran
6060      6060 The Holy Quran
6061      6061 The Holy Quran
6062      6062 The Holy Quran
6063      6063 The Holy Quran
6064      6064 The Holy Quran
6065      6065 The Holy Quran
6066      6066 The Holy Quran
6067      6067 The Holy Quran
6068      6068 The Holy Quran
6069      6069 The Holy Quran
6070      6070 The Holy Quran
6071      6071 The Holy Quran
6072      6072 The Holy Quran
6073      6073 The Holy Quran
6074      6074 The Holy Quran
6075      6075 The Holy Quran
6076      6076 The Holy Quran
6077      6077 The Holy Quran
6078      6078 The Holy Quran
6079      6079 The Holy Quran
6080      6080 The Holy Quran
6081      6081 The Holy Quran
6082      6082 The Holy Quran
6083      6083 The Holy Quran
6084      6084 The Holy Quran
6085      6085 The Holy Quran
6086      6086 The Holy Quran
6087      6087 The Holy Quran
6088      6088 The Holy Quran
6089      6089 The Holy Quran
6090      6090 The Holy Quran
6091      6091 The Holy Quran
6092      6092 The Holy Quran
6093      6093 The Holy Quran
6094      6094 The Holy Quran
6095      6095 The Holy Quran
6096      6096 The Holy Quran
6097      6097 The Holy Quran
6098      6098 The Holy Quran
6099      6099 The Holy Quran
6100      6100 The Holy Quran
6101      6101 The Holy Quran
6102      6102 The Holy Quran
6103      6103 The Holy Quran
6104      6104 The Holy Quran
6105      6105 The Holy Quran
6106      6106 The Holy Quran
6107      6107 The Holy Quran
6108      6108 The Holy Quran
6109      6109 The Holy Quran
6110      6110 The Holy Quran
6111      6111 The Holy Quran
6112      6112 The Holy Quran
6113      6113 The Holy Quran
6114      6114 The Holy Quran
6115      6115 The Holy Quran
6116      6116 The Holy Quran
6117      6117 The Holy Quran
6118      6118 The Holy Quran
6119      6119 The Holy Quran
6120      6120 The Holy Quran
6121      6121 The Holy Quran
6122      6122 The Holy Quran
6123      6123 The Holy Quran
6124      6124 The Holy Quran
6125      6125 The Holy Quran
6126      6126 The Holy Quran
6127      6127 The Holy Quran
6128      6128 The Holy Quran
6129      6129 The Holy Quran
6130      6130 The Holy Quran
6131      6131 The Holy Quran
6132      6132 The Holy Quran
6133      6133 The Holy Quran
6134      6134 The Holy Quran
6135      6135 The Holy Quran
6136      6136 The Holy Quran
6137      6137 The Holy Quran
6138      6138 The Holy Quran
6139      6139 The Holy Quran
6140      6140 The Holy Quran
6141      6141 The Holy Quran
6142      6142 The Holy Quran
6143      6143 The Holy Quran
6144      6144 The Holy Quran
6145      6145 The Holy Quran
6146      6146 The Holy Quran
6147      6147 The Holy Quran
6148      6148 The Holy Quran
6149      6149 The Holy Quran
6150      6150 The Holy Quran
6151      6151 The Holy Quran
6152      6152 The Holy Quran
6153      6153 The Holy Quran
6154      6154 The Holy Quran
6155      6155 The Holy Quran
6156      6156 The Holy Quran
6157      6157 The Holy Quran
6158      6158 The Holy Quran
6159      6159 The Holy Quran
6160      6160 The Holy Quran
6161      6161 The Holy Quran
6162      6162 The Holy Quran
6163      6163 The Holy Quran
6164      6164 The Holy Quran
6165      6165 The Holy Quran
6166      6166 The Holy Quran
6167      6167 The Holy Quran
6168      6168 The Holy Quran
6169      6169 The Holy Quran
6170      6170 The Holy Quran
6171      6171 The Holy Quran
6172      6172 The Holy Quran
6173      6173 The Holy Quran
6174      6174 The Holy Quran
6175      6175 The Holy Quran
6176      6176 The Holy Quran
6177      6177 The Holy Quran
6178      6178 The Holy Quran
6179      6179 The Holy Quran
6180      6180 The Holy Quran
6181      6181 The Holy Quran
6182      6182 The Holy Quran
6183      6183 The Holy Quran
6184      6184 The Holy Quran
6185      6185 The Holy Quran
6186      6186 The Holy Quran
6187      6187 The Holy Quran
6188      6188 The Holy Quran
6189      6189 The Holy Quran
6190      6190 The Holy Quran
6191      6191 The Holy Quran
6192      6192 The Holy Quran
6193      6193 The Holy Quran
6194      6194 The Holy Quran
6195      6195 The Holy Quran
6196      6196 The Holy Quran
6197      6197 The Holy Quran
6198      6198 The Holy Quran
6199      6199 The Holy Quran
6200      6200 The Holy Quran
6201      6201 The Holy Quran
6202      6202 The Holy Quran
6203      6203 The Holy Quran
6204      6204 The Holy Quran
6205      6205 The Holy Quran
6206      6206 The Holy Quran
6207      6207 The Holy Quran
6208      6208 The Holy Quran
6209      6209 The Holy Quran
6210      6210 The Holy Quran
6211      6211 The Holy Quran
6212      6212 The Holy Quran
6213      6213 The Holy Quran
6214      6214 The Holy Quran
6215      6215 The Holy Quran
6216      6216 The Holy Quran
6217      6217 The Holy Quran
6218      6218 The Holy Quran
6219      6219 The Holy Quran
6220      6220 The Holy Quran
6221      6221 The Holy Quran
6222      6222 The Holy Quran
6223      6223 The Holy Quran
6224      6224 The Holy Quran
6225      6225 The Holy Quran
6226      6226 The Holy Quran
6227      6227 The Holy Quran
6228      6228 The Holy Quran
6229      6229 The Holy Quran
6230      6230 The Holy Quran
6231      6231 The Holy Quran
6232      6232 The Holy Quran
6233      6233 The Holy Quran
6234      6234 The Holy Quran
6235      6235 The Holy Quran
6236      6236 The Holy Quran
#loading in the King James Version Bible from Kaggle
bible <- read.csv("~/Desktop/mini_project_website/bible.csv")


# cleaning up the columns, adding an id column that displays a unique id for each verse based on row, and adding a title column
bible <- bible |>
  select(-id) |>
  rename(book = b,
         surah_chapter = c, 
         ayah_verse = v,
         text = t) |>
  mutate(overall_n = row_number(),
         title = "King James Version Bible")

bible
      book surah_chapter ayah_verse
1        1             1          1
2        1             1          2
3        1             1          3
4        1             1          4
5        1             1          5
6        1             1          6
7        1             1          7
8        1             1          8
9        1             1          9
10       1             1         10
11       1             1         11
12       1             1         12
13       1             1         13
14       1             1         14
15       1             1         15
16       1             1         16
17       1             1         17
18       1             1         18
19       1             1         19
20       1             1         20
21       1             1         21
22       1             1         22
23       1             1         23
24       1             1         24
25       1             1         25
26       1             1         26
27       1             1         27
28       1             1         28
29       1             1         29
30       1             1         30
31       1             1         31
32       1             2          1
33       1             2          2
34       1             2          3
35       1             2          4
36       1             2          5
37       1             2          6
38       1             2          7
39       1             2          8
40       1             2          9
41       1             2         10
42       1             2         11
43       1             2         12
44       1             2         13
45       1             2         14
46       1             2         15
47       1             2         16
48       1             2         17
49       1             2         18
50       1             2         19
51       1             2         20
52       1             2         21
53       1             2         22
54       1             2         23
55       1             2         24
56       1             2         25
57       1             3          1
58       1             3          2
59       1             3          3
60       1             3          4
61       1             3          5
62       1             3          6
63       1             3          7
64       1             3          8
65       1             3          9
66       1             3         10
67       1             3         11
68       1             3         12
69       1             3         13
70       1             3         14
71       1             3         15
72       1             3         16
73       1             3         17
74       1             3         18
75       1             3         19
76       1             3         20
77       1             3         21
78       1             3         22
79       1             3         23
80       1             3         24
81       1             4          1
82       1             4          2
83       1             4          3
84       1             4          4
85       1             4          5
86       1             4          6
87       1             4          7
88       1             4          8
89       1             4          9
90       1             4         10
91       1             4         11
92       1             4         12
93       1             4         13
94       1             4         14
95       1             4         15
96       1             4         16
97       1             4         17
98       1             4         18
99       1             4         19
100      1             4         20
101      1             4         21
102      1             4         22
103      1             4         23
104      1             4         24
105      1             4         25
106      1             4         26
107      1             5          1
108      1             5          2
109      1             5          3
110      1             5          4
111      1             5          5
112      1             5          6
113      1             5          7
114      1             5          8
115      1             5          9
116      1             5         10
117      1             5         11
118      1             5         12
119      1             5         13
120      1             5         14
121      1             5         15
122      1             5         16
123      1             5         17
124      1             5         18
125      1             5         19
126      1             5         20
127      1             5         21
128      1             5         22
129      1             5         23
130      1             5         24
131      1             5         25
132      1             5         26
133      1             5         27
134      1             5         28
135      1             5         29
136      1             5         30
137      1             5         31
138      1             5         32
139      1             6          1
140      1             6          2
141      1             6          3
142      1             6          4
143      1             6          5
144      1             6          6
145      1             6          7
146      1             6          8
147      1             6          9
148      1             6         10
149      1             6         11
150      1             6         12
151      1             6         13
152      1             6         14
153      1             6         15
154      1             6         16
155      1             6         17
156      1             6         18
157      1             6         19
158      1             6         20
159      1             6         21
160      1             6         22
161      1             7          1
162      1             7          2
163      1             7          3
164      1             7          4
165      1             7          5
166      1             7          6
167      1             7          7
168      1             7          8
169      1             7          9
170      1             7         10
171      1             7         11
172      1             7         12
173      1             7         13
174      1             7         14
175      1             7         15
176      1             7         16
177      1             7         17
178      1             7         18
179      1             7         19
180      1             7         20
181      1             7         21
182      1             7         22
183      1             7         23
184      1             7         24
185      1             8          1
186      1             8          2
187      1             8          3
188      1             8          4
189      1             8          5
190      1             8          6
191      1             8          7
192      1             8          8
193      1             8          9
194      1             8         10
195      1             8         11
196      1             8         12
197      1             8         13
198      1             8         14
199      1             8         15
200      1             8         16
201      1             8         17
202      1             8         18
203      1             8         19
204      1             8         20
205      1             8         21
206      1             8         22
207      1             9          1
208      1             9          2
209      1             9          3
210      1             9          4
211      1             9          5
212      1             9          6
213      1             9          7
214      1             9          8
215      1             9          9
216      1             9         10
217      1             9         11
218      1             9         12
219      1             9         13
220      1             9         14
221      1             9         15
222      1             9         16
223      1             9         17
224      1             9         18
225      1             9         19
226      1             9         20
227      1             9         21
228      1             9         22
229      1             9         23
230      1             9         24
231      1             9         25
232      1             9         26
233      1             9         27
234      1             9         28
235      1             9         29
236      1            10          1
237      1            10          2
238      1            10          3
239      1            10          4
240      1            10          5
241      1            10          6
242      1            10          7
243      1            10          8
244      1            10          9
245      1            10         10
246      1            10         11
247      1            10         12
248      1            10         13
249      1            10         14
250      1            10         15
251      1            10         16
252      1            10         17
253      1            10         18
254      1            10         19
255      1            10         20
256      1            10         21
257      1            10         22
258      1            10         23
259      1            10         24
260      1            10         25
261      1            10         26
262      1            10         27
263      1            10         28
264      1            10         29
265      1            10         30
266      1            10         31
267      1            10         32
268      1            11          1
269      1            11          2
270      1            11          3
271      1            11          4
272      1            11          5
273      1            11          6
274      1            11          7
275      1            11          8
276      1            11          9
277      1            11         10
278      1            11         11
279      1            11         12
280      1            11         13
281      1            11         14
282      1            11         15
283      1            11         16
284      1            11         17
285      1            11         18
286      1            11         19
287      1            11         20
288      1            11         21
289      1            11         22
290      1            11         23
291      1            11         24
292      1            11         25
293      1            11         26
294      1            11         27
295      1            11         28
296      1            11         29
297      1            11         30
298      1            11         31
299      1            11         32
300      1            12          1
301      1            12          2
302      1            12          3
303      1            12          4
304      1            12          5
305      1            12          6
306      1            12          7
307      1            12          8
308      1            12          9
309      1            12         10
310      1            12         11
311      1            12         12
312      1            12         13
313      1            12         14
314      1            12         15
315      1            12         16
316      1            12         17
317      1            12         18
318      1            12         19
319      1            12         20
320      1            13          1
321      1            13          2
322      1            13          3
323      1            13          4
324      1            13          5
325      1            13          6
326      1            13          7
327      1            13          8
328      1            13          9
329      1            13         10
330      1            13         11
331      1            13         12
332      1            13         13
333      1            13         14
334      1            13         15
335      1            13         16
336      1            13         17
337      1            13         18
338      1            14          1
339      1            14          2
340      1            14          3
341      1            14          4
342      1            14          5
343      1            14          6
344      1            14          7
345      1            14          8
346      1            14          9
347      1            14         10
348      1            14         11
349      1            14         12
350      1            14         13
351      1            14         14
352      1            14         15
353      1            14         16
354      1            14         17
355      1            14         18
356      1            14         19
357      1            14         20
358      1            14         21
359      1            14         22
360      1            14         23
361      1            14         24
362      1            15          1
363      1            15          2
364      1            15          3
365      1            15          4
366      1            15          5
367      1            15          6
368      1            15          7
369      1            15          8
370      1            15          9
371      1            15         10
372      1            15         11
373      1            15         12
374      1            15         13
375      1            15         14
376      1            15         15
377      1            15         16
378      1            15         17
379      1            15         18
380      1            15         19
381      1            15         20
382      1            15         21
383      1            16          1
384      1            16          2
385      1            16          3
386      1            16          4
387      1            16          5
388      1            16          6
389      1            16          7
390      1            16          8
391      1            16          9
392      1            16         10
393      1            16         11
394      1            16         12
395      1            16         13
396      1            16         14
397      1            16         15
398      1            16         16
399      1            17          1
400      1            17          2
401      1            17          3
402      1            17          4
403      1            17          5
404      1            17          6
405      1            17          7
406      1            17          8
407      1            17          9
408      1            17         10
409      1            17         11
410      1            17         12
411      1            17         13
412      1            17         14
413      1            17         15
414      1            17         16
415      1            17         17
416      1            17         18
417      1            17         19
418      1            17         20
419      1            17         21
420      1            17         22
421      1            17         23
422      1            17         24
423      1            17         25
424      1            17         26
425      1            17         27
426      1            18          1
427      1            18          2
428      1            18          3
429      1            18          4
430      1            18          5
431      1            18          6
432      1            18          7
433      1            18          8
434      1            18          9
435      1            18         10
436      1            18         11
437      1            18         12
438      1            18         13
439      1            18         14
440      1            18         15
441      1            18         16
442      1            18         17
443      1            18         18
444      1            18         19
445      1            18         20
446      1            18         21
447      1            18         22
448      1            18         23
449      1            18         24
450      1            18         25
451      1            18         26
452      1            18         27
453      1            18         28
454      1            18         29
455      1            18         30
456      1            18         31
457      1            18         32
458      1            18         33
459      1            19          1
460      1            19          2
461      1            19          3
462      1            19          4
463      1            19          5
464      1            19          6
465      1            19          7
466      1            19          8
467      1            19          9
468      1            19         10
469      1            19         11
470      1            19         12
471      1            19         13
472      1            19         14
473      1            19         15
474      1            19         16
475      1            19         17
476      1            19         18
477      1            19         19
478      1            19         20
479      1            19         21
480      1            19         22
481      1            19         23
482      1            19         24
483      1            19         25
484      1            19         26
485      1            19         27
486      1            19         28
487      1            19         29
488      1            19         30
489      1            19         31
490      1            19         32
491      1            19         33
492      1            19         34
493      1            19         35
494      1            19         36
495      1            19         37
496      1            19         38
497      1            20          1
498      1            20          2
499      1            20          3
500      1            20          4
501      1            20          5
502      1            20          6
503      1            20          7
504      1            20          8
505      1            20          9
506      1            20         10
507      1            20         11
508      1            20         12
509      1            20         13
510      1            20         14
511      1            20         15
512      1            20         16
513      1            20         17
514      1            20         18
515      1            21          1
516      1            21          2
517      1            21          3
518      1            21          4
519      1            21          5
520      1            21          6
521      1            21          7
522      1            21          8
523      1            21          9
524      1            21         10
525      1            21         11
526      1            21         12
527      1            21         13
528      1            21         14
529      1            21         15
530      1            21         16
531      1            21         17
532      1            21         18
533      1            21         19
534      1            21         20
535      1            21         21
536      1            21         22
537      1            21         23
538      1            21         24
539      1            21         25
540      1            21         26
541      1            21         27
542      1            21         28
543      1            21         29
544      1            21         30
545      1            21         31
546      1            21         32
547      1            21         33
548      1            21         34
549      1            22          1
550      1            22          2
551      1            22          3
552      1            22          4
553      1            22          5
554      1            22          6
555      1            22          7
556      1            22          8
557      1            22          9
558      1            22         10
559      1            22         11
560      1            22         12
561      1            22         13
562      1            22         14
563      1            22         15
564      1            22         16
565      1            22         17
566      1            22         18
567      1            22         19
568      1            22         20
569      1            22         21
570      1            22         22
571      1            22         23
572      1            22         24
573      1            23          1
574      1            23          2
575      1            23          3
576      1            23          4
577      1            23          5
578      1            23          6
579      1            23          7
580      1            23          8
581      1            23          9
582      1            23         10
583      1            23         11
584      1            23         12
585      1            23         13
586      1            23         14
587      1            23         15
588      1            23         16
589      1            23         17
590      1            23         18
591      1            23         19
592      1            23         20
593      1            24          1
594      1            24          2
595      1            24          3
596      1            24          4
597      1            24          5
598      1            24          6
599      1            24          7
600      1            24          8
601      1            24          9
602      1            24         10
603      1            24         11
604      1            24         12
605      1            24         13
606      1            24         14
607      1            24         15
608      1            24         16
609      1            24         17
610      1            24         18
611      1            24         19
612      1            24         20
613      1            24         21
614      1            24         22
615      1            24         23
616      1            24         24
617      1            24         25
618      1            24         26
619      1            24         27
620      1            24         28
621      1            24         29
622      1            24         30
623      1            24         31
624      1            24         32
625      1            24         33
626      1            24         34
627      1            24         35
628      1            24         36
629      1            24         37
630      1            24         38
631      1            24         39
632      1            24         40
633      1            24         41
634      1            24         42
635      1            24         43
636      1            24         44
637      1            24         45
638      1            24         46
639      1            24         47
640      1            24         48
641      1            24         49
642      1            24         50
643      1            24         51
644      1            24         52
645      1            24         53
646      1            24         54
647      1            24         55
648      1            24         56
649      1            24         57
650      1            24         58
651      1            24         59
652      1            24         60
653      1            24         61
654      1            24         62
655      1            24         63
656      1            24         64
657      1            24         65
658      1            24         66
659      1            24         67
660      1            25          1
661      1            25          2
662      1            25          3
663      1            25          4
664      1            25          5
665      1            25          6
666      1            25          7
667      1            25          8
668      1            25          9
669      1            25         10
670      1            25         11
671      1            25         12
672      1            25         13
673      1            25         14
674      1            25         15
675      1            25         16
676      1            25         17
677      1            25         18
678      1            25         19
679      1            25         20
680      1            25         21
681      1            25         22
682      1            25         23
683      1            25         24
684      1            25         25
685      1            25         26
686      1            25         27
687      1            25         28
688      1            25         29
689      1            25         30
690      1            25         31
691      1            25         32
692      1            25         33
693      1            25         34
694      1            26          1
695      1            26          2
696      1            26          3
697      1            26          4
698      1            26          5
699      1            26          6
700      1            26          7
701      1            26          8
702      1            26          9
703      1            26         10
704      1            26         11
705      1            26         12
706      1            26         13
707      1            26         14
708      1            26         15
709      1            26         16
710      1            26         17
711      1            26         18
712      1            26         19
713      1            26         20
714      1            26         21
715      1            26         22
716      1            26         23
717      1            26         24
718      1            26         25
719      1            26         26
720      1            26         27
721      1            26         28
722      1            26         29
723      1            26         30
724      1            26         31
725      1            26         32
726      1            26         33
727      1            26         34
728      1            26         35
729      1            27          1
730      1            27          2
731      1            27          3
732      1            27          4
733      1            27          5
734      1            27          6
735      1            27          7
736      1            27          8
737      1            27          9
738      1            27         10
739      1            27         11
740      1            27         12
741      1            27         13
742      1            27         14
743      1            27         15
744      1            27         16
745      1            27         17
746      1            27         18
747      1            27         19
748      1            27         20
749      1            27         21
750      1            27         22
751      1            27         23
752      1            27         24
753      1            27         25
754      1            27         26
755      1            27         27
756      1            27         28
757      1            27         29
758      1            27         30
759      1            27         31
760      1            27         32
761      1            27         33
762      1            27         34
763      1            27         35
764      1            27         36
765      1            27         37
766      1            27         38
767      1            27         39
768      1            27         40
769      1            27         41
770      1            27         42
771      1            27         43
772      1            27         44
773      1            27         45
774      1            27         46
775      1            28          1
776      1            28          2
777      1            28          3
778      1            28          4
779      1            28          5
780      1            28          6
781      1            28          7
782      1            28          8
783      1            28          9
784      1            28         10
785      1            28         11
786      1            28         12
787      1            28         13
788      1            28         14
789      1            28         15
790      1            28         16
791      1            28         17
792      1            28         18
793      1            28         19
794      1            28         20
795      1            28         21
796      1            28         22
797      1            29          1
798      1            29          2
799      1            29          3
800      1            29          4
801      1            29          5
802      1            29          6
803      1            29          7
804      1            29          8
805      1            29          9
806      1            29         10
807      1            29         11
808      1            29         12
809      1            29         13
810      1            29         14
811      1            29         15
812      1            29         16
813      1            29         17
814      1            29         18
815      1            29         19
816      1            29         20
817      1            29         21
818      1            29         22
819      1            29         23
820      1            29         24
821      1            29         25
822      1            29         26
823      1            29         27
824      1            29         28
825      1            29         29
826      1            29         30
827      1            29         31
828      1            29         32
829      1            29         33
830      1            29         34
831      1            29         35
832      1            30          1
833      1            30          2
834      1            30          3
835      1            30          4
836      1            30          5
837      1            30          6
838      1            30          7
839      1            30          8
840      1            30          9
841      1            30         10
842      1            30         11
843      1            30         12
844      1            30         13
845      1            30         14
846      1            30         15
847      1            30         16
848      1            30         17
849      1            30         18
850      1            30         19
851      1            30         20
852      1            30         21
853      1            30         22
854      1            30         23
855      1            30         24
856      1            30         25
857      1            30         26
858      1            30         27
859      1            30         28
860      1            30         29
861      1            30         30
862      1            30         31
863      1            30         32
864      1            30         33
865      1            30         34
866      1            30         35
867      1            30         36
868      1            30         37
869      1            30         38
870      1            30         39
871      1            30         40
872      1            30         41
873      1            30         42
874      1            30         43
875      1            31          1
876      1            31          2
877      1            31          3
878      1            31          4
879      1            31          5
880      1            31          6
881      1            31          7
882      1            31          8
883      1            31          9
884      1            31         10
885      1            31         11
886      1            31         12
887      1            31         13
888      1            31         14
889      1            31         15
890      1            31         16
891      1            31         17
892      1            31         18
893      1            31         19
894      1            31         20
895      1            31         21
896      1            31         22
897      1            31         23
898      1            31         24
899      1            31         25
900      1            31         26
901      1            31         27
902      1            31         28
903      1            31         29
904      1            31         30
905      1            31         31
906      1            31         32
907      1            31         33
908      1            31         34
909      1            31         35
910      1            31         36
911      1            31         37
912      1            31         38
913      1            31         39
914      1            31         40
915      1            31         41
916      1            31         42
917      1            31         43
918      1            31         44
919      1            31         45
920      1            31         46
921      1            31         47
922      1            31         48
923      1            31         49
924      1            31         50
925      1            31         51
926      1            31         52
927      1            31         53
928      1            31         54
929      1            31         55
930      1            32          1
931      1            32          2
932      1            32          3
933      1            32          4
934      1            32          5
935      1            32          6
936      1            32          7
937      1            32          8
938      1            32          9
939      1            32         10
940      1            32         11
941      1            32         12
942      1            32         13
943      1            32         14
944      1            32         15
945      1            32         16
946      1            32         17
947      1            32         18
948      1            32         19
949      1            32         20
950      1            32         21
951      1            32         22
952      1            32         23
953      1            32         24
954      1            32         25
955      1            32         26
956      1            32         27
957      1            32         28
958      1            32         29
959      1            32         30
960      1            32         31
961      1            32         32
962      1            33          1
963      1            33          2
964      1            33          3
965      1            33          4
966      1            33          5
967      1            33          6
968      1            33          7
969      1            33          8
970      1            33          9
971      1            33         10
972      1            33         11
973      1            33         12
974      1            33         13
975      1            33         14
976      1            33         15
977      1            33         16
978      1            33         17
979      1            33         18
980      1            33         19
981      1            33         20
982      1            34          1
983      1            34          2
984      1            34          3
985      1            34          4
986      1            34          5
987      1            34          6
988      1            34          7
989      1            34          8
990      1            34          9
991      1            34         10
992      1            34         11
993      1            34         12
994      1            34         13
995      1            34         14
996      1            34         15
997      1            34         16
998      1            34         17
999      1            34         18
1000     1            34         19
1001     1            34         20
1002     1            34         21
1003     1            34         22
1004     1            34         23
1005     1            34         24
1006     1            34         25
1007     1            34         26
1008     1            34         27
1009     1            34         28
1010     1            34         29
1011     1            34         30
1012     1            34         31
1013     1            35          1
1014     1            35          2
1015     1            35          3
1016     1            35          4
1017     1            35          5
1018     1            35          6
1019     1            35          7
1020     1            35          8
1021     1            35          9
1022     1            35         10
1023     1            35         11
1024     1            35         12
1025     1            35         13
1026     1            35         14
1027     1            35         15
1028     1            35         16
1029     1            35         17
1030     1            35         18
1031     1            35         19
1032     1            35         20
1033     1            35         21
1034     1            35         22
1035     1            35         23
1036     1            35         24
1037     1            35         25
1038     1            35         26
1039     1            35         27
1040     1            35         28
1041     1            35         29
1042     1            36          1
1043     1            36          2
1044     1            36          3
1045     1            36          4
1046     1            36          5
1047     1            36          6
1048     1            36          7
1049     1            36          8
1050     1            36          9
1051     1            36         10
1052     1            36         11
1053     1            36         12
1054     1            36         13
1055     1            36         14
1056     1            36         15
1057     1            36         16
1058     1            36         17
1059     1            36         18
1060     1            36         19
1061     1            36         20
1062     1            36         21
1063     1            36         22
1064     1            36         23
1065     1            36         24
1066     1            36         25
1067     1            36         26
1068     1            36         27
1069     1            36         28
1070     1            36         29
1071     1            36         30
1072     1            36         31
1073     1            36         32
1074     1            36         33
1075     1            36         34
1076     1            36         35
1077     1            36         36
1078     1            36         37
1079     1            36         38
1080     1            36         39
1081     1            36         40
1082     1            36         41
1083     1            36         42
1084     1            36         43
1085     1            37          1
1086     1            37          2
1087     1            37          3
1088     1            37          4
1089     1            37          5
1090     1            37          6
1091     1            37          7
1092     1            37          8
1093     1            37          9
1094     1            37         10
1095     1            37         11
1096     1            37         12
1097     1            37         13
1098     1            37         14
1099     1            37         15
1100     1            37         16
1101     1            37         17
1102     1            37         18
1103     1            37         19
1104     1            37         20
1105     1            37         21
1106     1            37         22
1107     1            37         23
1108     1            37         24
1109     1            37         25
1110     1            37         26
1111     1            37         27
1112     1            37         28
1113     1            37         29
1114     1            37         30
1115     1            37         31
1116     1            37         32
1117     1            37         33
1118     1            37         34
1119     1            37         35
1120     1            37         36
1121     1            38          1
1122     1            38          2
1123     1            38          3
1124     1            38          4
1125     1            38          5
1126     1            38          6
1127     1            38          7
1128     1            38          8
1129     1            38          9
1130     1            38         10
1131     1            38         11
1132     1            38         12
1133     1            38         13
1134     1            38         14
1135     1            38         15
1136     1            38         16
1137     1            38         17
1138     1            38         18
1139     1            38         19
1140     1            38         20
1141     1            38         21
1142     1            38         22
1143     1            38         23
1144     1            38         24
1145     1            38         25
1146     1            38         26
1147     1            38         27
1148     1            38         28
1149     1            38         29
1150     1            38         30
1151     1            39          1
1152     1            39          2
1153     1            39          3
1154     1            39          4
1155     1            39          5
1156     1            39          6
1157     1            39          7
1158     1            39          8
1159     1            39          9
1160     1            39         10
1161     1            39         11
1162     1            39         12
1163     1            39         13
1164     1            39         14
1165     1            39         15
1166     1            39         16
1167     1            39         17
1168     1            39         18
1169     1            39         19
1170     1            39         20
1171     1            39         21
1172     1            39         22
1173     1            39         23
1174     1            40          1
1175     1            40          2
1176     1            40          3
1177     1            40          4
1178     1            40          5
1179     1            40          6
1180     1            40          7
1181     1            40          8
1182     1            40          9
1183     1            40         10
1184     1            40         11
1185     1            40         12
1186     1            40         13
1187     1            40         14
1188     1            40         15
1189     1            40         16
1190     1            40         17
1191     1            40         18
1192     1            40         19
1193     1            40         20
1194     1            40         21
1195     1            40         22
1196     1            40         23
1197     1            41          1
1198     1            41          2
1199     1            41          3
1200     1            41          4
1201     1            41          5
1202     1            41          6
1203     1            41          7
1204     1            41          8
1205     1            41          9
1206     1            41         10
1207     1            41         11
1208     1            41         12
1209     1            41         13
1210     1            41         14
1211     1            41         15
1212     1            41         16
1213     1            41         17
1214     1            41         18
1215     1            41         19
1216     1            41         20
1217     1            41         21
1218     1            41         22
1219     1            41         23
1220     1            41         24
1221     1            41         25
1222     1            41         26
1223     1            41         27
1224     1            41         28
1225     1            41         29
1226     1            41         30
1227     1            41         31
1228     1            41         32
1229     1            41         33
1230     1            41         34
1231     1            41         35
1232     1            41         36
1233     1            41         37
1234     1            41         38
1235     1            41         39
1236     1            41         40
1237     1            41         41
1238     1            41         42
1239     1            41         43
1240     1            41         44
1241     1            41         45
1242     1            41         46
1243     1            41         47
1244     1            41         48
1245     1            41         49
1246     1            41         50
1247     1            41         51
1248     1            41         52
1249     1            41         53
1250     1            41         54
1251     1            41         55
1252     1            41         56
1253     1            41         57
1254     1            42          1
1255     1            42          2
1256     1            42          3
1257     1            42          4
1258     1            42          5
1259     1            42          6
1260     1            42          7
1261     1            42          8
1262     1            42          9
1263     1            42         10
1264     1            42         11
1265     1            42         12
1266     1            42         13
1267     1            42         14
1268     1            42         15
1269     1            42         16
1270     1            42         17
1271     1            42         18
1272     1            42         19
1273     1            42         20
1274     1            42         21
1275     1            42         22
1276     1            42         23
1277     1            42         24
1278     1            42         25
1279     1            42         26
1280     1            42         27
1281     1            42         28
1282     1            42         29
1283     1            42         30
1284     1            42         31
1285     1            42         32
1286     1            42         33
1287     1            42         34
1288     1            42         35
1289     1            42         36
1290     1            42         37
1291     1            42         38
1292     1            43          1
1293     1            43          2
1294     1            43          3
1295     1            43          4
1296     1            43          5
1297     1            43          6
1298     1            43          7
1299     1            43          8
1300     1            43          9
1301     1            43         10
1302     1            43         11
1303     1            43         12
1304     1            43         13
1305     1            43         14
1306     1            43         15
1307     1            43         16
1308     1            43         17
1309     1            43         18
1310     1            43         19
1311     1            43         20
1312     1            43         21
1313     1            43         22
1314     1            43         23
1315     1            43         24
1316     1            43         25
1317     1            43         26
1318     1            43         27
1319     1            43         28
1320     1            43         29
1321     1            43         30
1322     1            43         31
1323     1            43         32
1324     1            43         33
1325     1            43         34
1326     1            44          1
1327     1            44          2
1328     1            44          3
1329     1            44          4
1330     1            44          5
1331     1            44          6
1332     1            44          7
1333     1            44          8
1334     1            44          9
1335     1            44         10
1336     1            44         11
1337     1            44         12
1338     1            44         13
1339     1            44         14
1340     1            44         15
1341     1            44         16
1342     1            44         17
1343     1            44         18
1344     1            44         19
1345     1            44         20
1346     1            44         21
1347     1            44         22
1348     1            44         23
1349     1            44         24
1350     1            44         25
1351     1            44         26
1352     1            44         27
1353     1            44         28
1354     1            44         29
1355     1            44         30
1356     1            44         31
1357     1            44         32
1358     1            44         33
1359     1            44         34
1360     1            45          1
1361     1            45          2
1362     1            45          3
1363     1            45          4
1364     1            45          5
1365     1            45          6
1366     1            45          7
1367     1            45          8
1368     1            45          9
1369     1            45         10
1370     1            45         11
1371     1            45         12
1372     1            45         13
1373     1            45         14
1374     1            45         15
1375     1            45         16
1376     1            45         17
1377     1            45         18
1378     1            45         19
1379     1            45         20
1380     1            45         21
1381     1            45         22
1382     1            45         23
1383     1            45         24
1384     1            45         25
1385     1            45         26
1386     1            45         27
1387     1            45         28
1388     1            46          1
1389     1            46          2
1390     1            46          3
1391     1            46          4
1392     1            46          5
1393     1            46          6
1394     1            46          7
1395     1            46          8
1396     1            46          9
1397     1            46         10
1398     1            46         11
1399     1            46         12
1400     1            46         13
1401     1            46         14
1402     1            46         15
1403     1            46         16
1404     1            46         17
1405     1            46         18
1406     1            46         19
1407     1            46         20
1408     1            46         21
1409     1            46         22
1410     1            46         23
1411     1            46         24
1412     1            46         25
1413     1            46         26
1414     1            46         27
1415     1            46         28
1416     1            46         29
1417     1            46         30
1418     1            46         31
1419     1            46         32
1420     1            46         33
1421     1            46         34
1422     1            47          1
1423     1            47          2
1424     1            47          3
1425     1            47          4
1426     1            47          5
1427     1            47          6
1428     1            47          7
1429     1            47          8
1430     1            47          9
1431     1            47         10
1432     1            47         11
1433     1            47         12
1434     1            47         13
1435     1            47         14
1436     1            47         15
1437     1            47         16
1438     1            47         17
1439     1            47         18
1440     1            47         19
1441     1            47         20
1442     1            47         21
1443     1            47         22
1444     1            47         23
1445     1            47         24
1446     1            47         25
1447     1            47         26
1448     1            47         27
1449     1            47         28
1450     1            47         29
1451     1            47         30
1452     1            47         31
1453     1            48          1
1454     1            48          2
1455     1            48          3
1456     1            48          4
1457     1            48          5
1458     1            48          6
1459     1            48          7
1460     1            48          8
1461     1            48          9
1462     1            48         10
1463     1            48         11
1464     1            48         12
1465     1            48         13
1466     1            48         14
1467     1            48         15
1468     1            48         16
1469     1            48         17
1470     1            48         18
1471     1            48         19
1472     1            48         20
1473     1            48         21
1474     1            48         22
1475     1            49          1
1476     1            49          2
1477     1            49          3
1478     1            49          4
1479     1            49          5
1480     1            49          6
1481     1            49          7
1482     1            49          8
1483     1            49          9
1484     1            49         10
1485     1            49         11
1486     1            49         12
1487     1            49         13
1488     1            49         14
1489     1            49         15
1490     1            49         16
1491     1            49         17
1492     1            49         18
1493     1            49         19
1494     1            49         20
1495     1            49         21
1496     1            49         22
1497     1            49         23
1498     1            49         24
1499     1            49         25
1500     1            49         26
1501     1            49         27
1502     1            49         28
1503     1            49         29
1504     1            49         30
1505     1            49         31
1506     1            49         32
1507     1            49         33
1508     1            50          1
1509     1            50          2
1510     1            50          3
1511     1            50          4
1512     1            50          5
1513     1            50          6
1514     1            50          7
1515     1            50          8
1516     1            50          9
1517     1            50         10
1518     1            50         11
1519     1            50         12
1520     1            50         13
1521     1            50         14
1522     1            50         15
1523     1            50         16
1524     1            50         17
1525     1            50         18
1526     1            50         19
1527     1            50         20
1528     1            50         21
1529     1            50         22
1530     1            50         23
1531     1            50         24
1532     1            50         25
1533     1            50         26
1534     2             1          1
1535     2             1          2
1536     2             1          3
1537     2             1          4
1538     2             1          5
1539     2             1          6
1540     2             1          7
1541     2             1          8
1542     2             1          9
1543     2             1         10
1544     2             1         11
1545     2             1         12
1546     2             1         13
1547     2             1         14
1548     2             1         15
1549     2             1         16
1550     2             1         17
1551     2             1         18
1552     2             1         19
1553     2             1         20
1554     2             1         21
1555     2             1         22
1556     2             2          1
1557     2             2          2
1558     2             2          3
1559     2             2          4
1560     2             2          5
1561     2             2          6
1562     2             2          7
1563     2             2          8
1564     2             2          9
1565     2             2         10
1566     2             2         11
1567     2             2         12
1568     2             2         13
1569     2             2         14
1570     2             2         15
1571     2             2         16
1572     2             2         17
1573     2             2         18
1574     2             2         19
1575     2             2         20
1576     2             2         21
1577     2             2         22
1578     2             2         23
1579     2             2         24
1580     2             2         25
1581     2             3          1
1582     2             3          2
1583     2             3          3
1584     2             3          4
1585     2             3          5
1586     2             3          6
1587     2             3          7
1588     2             3          8
1589     2             3          9
1590     2             3         10
1591     2             3         11
1592     2             3         12
1593     2             3         13
1594     2             3         14
1595     2             3         15
1596     2             3         16
1597     2             3         17
1598     2             3         18
1599     2             3         19
1600     2             3         20
1601     2             3         21
1602     2             3         22
1603     2             4          1
1604     2             4          2
1605     2             4          3
1606     2             4          4
1607     2             4          5
1608     2             4          6
1609     2             4          7
1610     2             4          8
1611     2             4          9
1612     2             4         10
1613     2             4         11
1614     2             4         12
1615     2             4         13
1616     2             4         14
1617     2             4         15
1618     2             4         16
1619     2             4         17
1620     2             4         18
1621     2             4         19
1622     2             4         20
1623     2             4         21
1624     2             4         22
1625     2             4         23
1626     2             4         24
1627     2             4         25
1628     2             4         26
1629     2             4         27
1630     2             4         28
1631     2             4         29
1632     2             4         30
1633     2             4         31
1634     2             5          1
1635     2             5          2
1636     2             5          3
1637     2             5          4
1638     2             5          5
1639     2             5          6
1640     2             5          7
1641     2             5          8
1642     2             5          9
1643     2             5         10
1644     2             5         11
1645     2             5         12
1646     2             5         13
1647     2             5         14
1648     2             5         15
1649     2             5         16
1650     2             5         17
1651     2             5         18
1652     2             5         19
1653     2             5         20
1654     2             5         21
1655     2             5         22
1656     2             5         23
1657     2             6          1
1658     2             6          2
1659     2             6          3
1660     2             6          4
1661     2             6          5
1662     2             6          6
1663     2             6          7
1664     2             6          8
1665     2             6          9
1666     2             6         10
1667     2             6         11
1668     2             6         12
1669     2             6         13
1670     2             6         14
1671     2             6         15
1672     2             6         16
1673     2             6         17
1674     2             6         18
1675     2             6         19
1676     2             6         20
1677     2             6         21
1678     2             6         22
1679     2             6         23
1680     2             6         24
1681     2             6         25
1682     2             6         26
1683     2             6         27
1684     2             6         28
1685     2             6         29
1686     2             6         30
1687     2             7          1
1688     2             7          2
1689     2             7          3
1690     2             7          4
1691     2             7          5
1692     2             7          6
1693     2             7          7
1694     2             7          8
1695     2             7          9
1696     2             7         10
1697     2             7         11
1698     2             7         12
1699     2             7         13
1700     2             7         14
1701     2             7         15
1702     2             7         16
1703     2             7         17
1704     2             7         18
1705     2             7         19
1706     2             7         20
1707     2             7         21
1708     2             7         22
1709     2             7         23
1710     2             7         24
1711     2             7         25
1712     2             8          1
1713     2             8          2
1714     2             8          3
1715     2             8          4
1716     2             8          5
1717     2             8          6
1718     2             8          7
1719     2             8          8
1720     2             8          9
1721     2             8         10
1722     2             8         11
1723     2             8         12
1724     2             8         13
1725     2             8         14
1726     2             8         15
1727     2             8         16
1728     2             8         17
1729     2             8         18
1730     2             8         19
1731     2             8         20
1732     2             8         21
1733     2             8         22
1734     2             8         23
1735     2             8         24
1736     2             8         25
1737     2             8         26
1738     2             8         27
1739     2             8         28
1740     2             8         29
1741     2             8         30
1742     2             8         31
1743     2             8         32
1744     2             9          1
1745     2             9          2
1746     2             9          3
1747     2             9          4
1748     2             9          5
1749     2             9          6
1750     2             9          7
1751     2             9          8
1752     2             9          9
1753     2             9         10
1754     2             9         11
1755     2             9         12
1756     2             9         13
1757     2             9         14
1758     2             9         15
1759     2             9         16
1760     2             9         17
1761     2             9         18
1762     2             9         19
1763     2             9         20
1764     2             9         21
1765     2             9         22
1766     2             9         23
1767     2             9         24
1768     2             9         25
1769     2             9         26
1770     2             9         27
1771     2             9         28
1772     2             9         29
1773     2             9         30
1774     2             9         31
1775     2             9         32
1776     2             9         33
1777     2             9         34
1778     2             9         35
1779     2            10          1
1780     2            10          2
1781     2            10          3
1782     2            10          4
1783     2            10          5
1784     2            10          6
1785     2            10          7
1786     2            10          8
1787     2            10          9
1788     2            10         10
1789     2            10         11
1790     2            10         12
1791     2            10         13
1792     2            10         14
1793     2            10         15
1794     2            10         16
1795     2            10         17
1796     2            10         18
1797     2            10         19
1798     2            10         20
1799     2            10         21
1800     2            10         22
1801     2            10         23
1802     2            10         24
1803     2            10         25
1804     2            10         26
1805     2            10         27
1806     2            10         28
1807     2            10         29
1808     2            11          1
1809     2            11          2
1810     2            11          3
1811     2            11          4
1812     2            11          5
1813     2            11          6
1814     2            11          7
1815     2            11          8
1816     2            11          9
1817     2            11         10
1818     2            12          1
1819     2            12          2
1820     2            12          3
1821     2            12          4
1822     2            12          5
1823     2            12          6
1824     2            12          7
1825     2            12          8
1826     2            12          9
1827     2            12         10
1828     2            12         11
1829     2            12         12
1830     2            12         13
1831     2            12         14
1832     2            12         15
1833     2            12         16
1834     2            12         17
1835     2            12         18
1836     2            12         19
1837     2            12         20
1838     2            12         21
1839     2            12         22
1840     2            12         23
1841     2            12         24
1842     2            12         25
1843     2            12         26
1844     2            12         27
1845     2            12         28
1846     2            12         29
1847     2            12         30
1848     2            12         31
1849     2            12         32
1850     2            12         33
1851     2            12         34
1852     2            12         35
1853     2            12         36
1854     2            12         37
1855     2            12         38
1856     2            12         39
1857     2            12         40
1858     2            12         41
1859     2            12         42
1860     2            12         43
1861     2            12         44
1862     2            12         45
1863     2            12         46
1864     2            12         47
1865     2            12         48
1866     2            12         49
1867     2            12         50
1868     2            12         51
1869     2            13          1
1870     2            13          2
1871     2            13          3
1872     2            13          4
1873     2            13          5
1874     2            13          6
1875     2            13          7
1876     2            13          8
1877     2            13          9
1878     2            13         10
1879     2            13         11
1880     2            13         12
1881     2            13         13
1882     2            13         14
1883     2            13         15
1884     2            13         16
1885     2            13         17
1886     2            13         18
1887     2            13         19
1888     2            13         20
1889     2            13         21
1890     2            13         22
1891     2            14          1
1892     2            14          2
1893     2            14          3
1894     2            14          4
1895     2            14          5
1896     2            14          6
1897     2            14          7
1898     2            14          8
1899     2            14          9
1900     2            14         10
1901     2            14         11
1902     2            14         12
1903     2            14         13
1904     2            14         14
1905     2            14         15
1906     2            14         16
1907     2            14         17
1908     2            14         18
1909     2            14         19
1910     2            14         20
1911     2            14         21
1912     2            14         22
1913     2            14         23
1914     2            14         24
1915     2            14         25
1916     2            14         26
1917     2            14         27
1918     2            14         28
1919     2            14         29
1920     2            14         30
1921     2            14         31
1922     2            15          1
1923     2            15          2
1924     2            15          3
1925     2            15          4
1926     2            15          5
1927     2            15          6
1928     2            15          7
1929     2            15          8
1930     2            15          9
1931     2            15         10
1932     2            15         11
1933     2            15         12
1934     2            15         13
1935     2            15         14
1936     2            15         15
1937     2            15         16
1938     2            15         17
1939     2            15         18
1940     2            15         19
1941     2            15         20
1942     2            15         21
1943     2            15         22
1944     2            15         23
1945     2            15         24
1946     2            15         25
1947     2            15         26
1948     2            15         27
1949     2            16          1
1950     2            16          2
1951     2            16          3
1952     2            16          4
1953     2            16          5
1954     2            16          6
1955     2            16          7
1956     2            16          8
1957     2            16          9
1958     2            16         10
1959     2            16         11
1960     2            16         12
1961     2            16         13
1962     2            16         14
1963     2            16         15
1964     2            16         16
1965     2            16         17
1966     2            16         18
1967     2            16         19
1968     2            16         20
1969     2            16         21
1970     2            16         22
1971     2            16         23
1972     2            16         24
1973     2            16         25
1974     2            16         26
1975     2            16         27
1976     2            16         28
1977     2            16         29
1978     2            16         30
1979     2            16         31
1980     2            16         32
1981     2            16         33
1982     2            16         34
1983     2            16         35
1984     2            16         36
1985     2            17          1
1986     2            17          2
1987     2            17          3
1988     2            17          4
1989     2            17          5
1990     2            17          6
1991     2            17          7
1992     2            17          8
1993     2            17          9
1994     2            17         10
1995     2            17         11
1996     2            17         12
1997     2            17         13
1998     2            17         14
1999     2            17         15
2000     2            17         16
2001     2            18          1
2002     2            18          2
2003     2            18          3
2004     2            18          4
2005     2            18          5
2006     2            18          6
2007     2            18          7
2008     2            18          8
2009     2            18          9
2010     2            18         10
2011     2            18         11
2012     2            18         12
2013     2            18         13
2014     2            18         14
2015     2            18         15
2016     2            18         16
2017     2            18         17
2018     2            18         18
2019     2            18         19
2020     2            18         20
2021     2            18         21
2022     2            18         22
2023     2            18         23
2024     2            18         24
2025     2            18         25
2026     2            18         26
2027     2            18         27
2028     2            19          1
2029     2            19          2
2030     2            19          3
2031     2            19          4
2032     2            19          5
2033     2            19          6
2034     2            19          7
2035     2            19          8
2036     2            19          9
2037     2            19         10
2038     2            19         11
2039     2            19         12
2040     2            19         13
2041     2            19         14
2042     2            19         15
2043     2            19         16
2044     2            19         17
2045     2            19         18
2046     2            19         19
2047     2            19         20
2048     2            19         21
2049     2            19         22
2050     2            19         23
2051     2            19         24
2052     2            19         25
2053     2            20          1
2054     2            20          2
2055     2            20          3
2056     2            20          4
2057     2            20          5
2058     2            20          6
2059     2            20          7
2060     2            20          8
2061     2            20          9
2062     2            20         10
2063     2            20         11
2064     2            20         12
2065     2            20         13
2066     2            20         14
2067     2            20         15
2068     2            20         16
2069     2            20         17
2070     2            20         18
2071     2            20         19
2072     2            20         20
2073     2            20         21
2074     2            20         22
2075     2            20         23
2076     2            20         24
2077     2            20         25
2078     2            20         26
2079     2            21          1
2080     2            21          2
2081     2            21          3
2082     2            21          4
2083     2            21          5
2084     2            21          6
2085     2            21          7
2086     2            21          8
2087     2            21          9
2088     2            21         10
2089     2            21         11
2090     2            21         12
2091     2            21         13
2092     2            21         14
2093     2            21         15
2094     2            21         16
2095     2            21         17
2096     2            21         18
2097     2            21         19
2098     2            21         20
2099     2            21         21
2100     2            21         22
2101     2            21         23
2102     2            21         24
2103     2            21         25
2104     2            21         26
2105     2            21         27
2106     2            21         28
2107     2            21         29
2108     2            21         30
2109     2            21         31
2110     2            21         32
2111     2            21         33
2112     2            21         34
2113     2            21         35
2114     2            21         36
2115     2            22          1
2116     2            22          2
2117     2            22          3
2118     2            22          4
2119     2            22          5
2120     2            22          6
2121     2            22          7
2122     2            22          8
2123     2            22          9
2124     2            22         10
2125     2            22         11
2126     2            22         12
2127     2            22         13
2128     2            22         14
2129     2            22         15
2130     2            22         16
2131     2            22         17
2132     2            22         18
2133     2            22         19
2134     2            22         20
2135     2            22         21
2136     2            22         22
2137     2            22         23
2138     2            22         24
2139     2            22         25
2140     2            22         26
2141     2            22         27
2142     2            22         28
2143     2            22         29
2144     2            22         30
2145     2            22         31
2146     2            23          1
2147     2            23          2
2148     2            23          3
2149     2            23          4
2150     2            23          5
2151     2            23          6
2152     2            23          7
2153     2            23          8
2154     2            23          9
2155     2            23         10
2156     2            23         11
2157     2            23         12
2158     2            23         13
2159     2            23         14
2160     2            23         15
2161     2            23         16
2162     2            23         17
2163     2            23         18
2164     2            23         19
2165     2            23         20
2166     2            23         21
2167     2            23         22
2168     2            23         23
2169     2            23         24
2170     2            23         25
2171     2            23         26
2172     2            23         27
2173     2            23         28
2174     2            23         29
2175     2            23         30
2176     2            23         31
2177     2            23         32
2178     2            23         33
2179     2            24          1
2180     2            24          2
2181     2            24          3
2182     2            24          4
2183     2            24          5
2184     2            24          6
2185     2            24          7
2186     2            24          8
2187     2            24          9
2188     2            24         10
2189     2            24         11
2190     2            24         12
2191     2            24         13
2192     2            24         14
2193     2            24         15
2194     2            24         16
2195     2            24         17
2196     2            24         18
2197     2            25          1
2198     2            25          2
2199     2            25          3
2200     2            25          4
2201     2            25          5
2202     2            25          6
2203     2            25          7
2204     2            25          8
2205     2            25          9
2206     2            25         10
2207     2            25         11
2208     2            25         12
2209     2            25         13
2210     2            25         14
2211     2            25         15
2212     2            25         16
2213     2            25         17
2214     2            25         18
2215     2            25         19
2216     2            25         20
2217     2            25         21
2218     2            25         22
2219     2            25         23
2220     2            25         24
2221     2            25         25
2222     2            25         26
2223     2            25         27
2224     2            25         28
2225     2            25         29
2226     2            25         30
2227     2            25         31
2228     2            25         32
2229     2            25         33
2230     2            25         34
2231     2            25         35
2232     2            25         36
2233     2            25         37
2234     2            25         38
2235     2            25         39
2236     2            25         40
2237     2            26          1
2238     2            26          2
2239     2            26          3
2240     2            26          4
2241     2            26          5
2242     2            26          6
2243     2            26          7
2244     2            26          8
2245     2            26          9
2246     2            26         10
2247     2            26         11
2248     2            26         12
2249     2            26         13
2250     2            26         14
2251     2            26         15
2252     2            26         16
2253     2            26         17
2254     2            26         18
2255     2            26         19
2256     2            26         20
2257     2            26         21
2258     2            26         22
2259     2            26         23
2260     2            26         24
2261     2            26         25
2262     2            26         26
2263     2            26         27
2264     2            26         28
2265     2            26         29
2266     2            26         30
2267     2            26         31
2268     2            26         32
2269     2            26         33
2270     2            26         34
2271     2            26         35
2272     2            26         36
2273     2            26         37
2274     2            27          1
2275     2            27          2
2276     2            27          3
2277     2            27          4
2278     2            27          5
2279     2            27          6
2280     2            27          7
2281     2            27          8
2282     2            27          9
2283     2            27         10
2284     2            27         11
2285     2            27         12
2286     2            27         13
2287     2            27         14
2288     2            27         15
2289     2            27         16
2290     2            27         17
2291     2            27         18
2292     2            27         19
2293     2            27         20
2294     2            27         21
2295     2            28          1
2296     2            28          2
2297     2            28          3
2298     2            28          4
2299     2            28          5
2300     2            28          6
2301     2            28          7
2302     2            28          8
2303     2            28          9
2304     2            28         10
2305     2            28         11
2306     2            28         12
2307     2            28         13
2308     2            28         14
2309     2            28         15
2310     2            28         16
2311     2            28         17
2312     2            28         18
2313     2            28         19
2314     2            28         20
2315     2            28         21
2316     2            28         22
2317     2            28         23
2318     2            28         24
2319     2            28         25
2320     2            28         26
2321     2            28         27
2322     2            28         28
2323     2            28         29
2324     2            28         30
2325     2            28         31
2326     2            28         32
2327     2            28         33
2328     2            28         34
2329     2            28         35
2330     2            28         36
2331     2            28         37
2332     2            28         38
2333     2            28         39
2334     2            28         40
2335     2            28         41
2336     2            28         42
2337     2            28         43
2338     2            29          1
2339     2            29          2
2340     2            29          3
2341     2            29          4
2342     2            29          5
2343     2            29          6
2344     2            29          7
2345     2            29          8
2346     2            29          9
2347     2            29         10
2348     2            29         11
2349     2            29         12
2350     2            29         13
2351     2            29         14
2352     2            29         15
2353     2            29         16
2354     2            29         17
2355     2            29         18
2356     2            29         19
2357     2            29         20
2358     2            29         21
2359     2            29         22
2360     2            29         23
2361     2            29         24
2362     2            29         25
2363     2            29         26
2364     2            29         27
2365     2            29         28
2366     2            29         29
2367     2            29         30
2368     2            29         31
2369     2            29         32
2370     2            29         33
2371     2            29         34
2372     2            29         35
2373     2            29         36
2374     2            29         37
2375     2            29         38
2376     2            29         39
2377     2            29         40
2378     2            29         41
2379     2            29         42
2380     2            29         43
2381     2            29         44
2382     2            29         45
2383     2            29         46
2384     2            30          1
2385     2            30          2
2386     2            30          3
2387     2            30          4
2388     2            30          5
2389     2            30          6
2390     2            30          7
2391     2            30          8
2392     2            30          9
2393     2            30         10
2394     2            30         11
2395     2            30         12
2396     2            30         13
2397     2            30         14
2398     2            30         15
2399     2            30         16
2400     2            30         17
2401     2            30         18
2402     2            30         19
2403     2            30         20
2404     2            30         21
2405     2            30         22
2406     2            30         23
2407     2            30         24
2408     2            30         25
2409     2            30         26
2410     2            30         27
2411     2            30         28
2412     2            30         29
2413     2            30         30
2414     2            30         31
2415     2            30         32
2416     2            30         33
2417     2            30         34
2418     2            30         35
2419     2            30         36
2420     2            30         37
2421     2            30         38
2422     2            31          1
2423     2            31          2
2424     2            31          3
2425     2            31          4
2426     2            31          5
2427     2            31          6
2428     2            31          7
2429     2            31          8
2430     2            31          9
2431     2            31         10
2432     2            31         11
2433     2            31         12
2434     2            31         13
2435     2            31         14
2436     2            31         15
2437     2            31         16
2438     2            31         17
2439     2            31         18
2440     2            32          1
2441     2            32          2
2442     2            32          3
2443     2            32          4
2444     2            32          5
2445     2            32          6
2446     2            32          7
2447     2            32          8
2448     2            32          9
2449     2            32         10
2450     2            32         11
2451     2            32         12
2452     2            32         13
2453     2            32         14
2454     2            32         15
2455     2            32         16
2456     2            32         17
2457     2            32         18
2458     2            32         19
2459     2            32         20
2460     2            32         21
2461     2            32         22
2462     2            32         23
2463     2            32         24
2464     2            32         25
2465     2            32         26
2466     2            32         27
2467     2            32         28
2468     2            32         29
2469     2            32         30
2470     2            32         31
2471     2            32         32
2472     2            32         33
2473     2            32         34
2474     2            32         35
2475     2            33          1
2476     2            33          2
2477     2            33          3
2478     2            33          4
2479     2            33          5
2480     2            33          6
2481     2            33          7
2482     2            33          8
2483     2            33          9
2484     2            33         10
2485     2            33         11
2486     2            33         12
2487     2            33         13
2488     2            33         14
2489     2            33         15
2490     2            33         16
2491     2            33         17
2492     2            33         18
2493     2            33         19
2494     2            33         20
2495     2            33         21
2496     2            33         22
2497     2            33         23
2498     2            34          1
2499     2            34          2
2500     2            34          3
2501     2            34          4
2502     2            34          5
2503     2            34          6
2504     2            34          7
2505     2            34          8
2506     2            34          9
2507     2            34         10
2508     2            34         11
2509     2            34         12
2510     2            34         13
2511     2            34         14
2512     2            34         15
2513     2            34         16
2514     2            34         17
2515     2            34         18
2516     2            34         19
2517     2            34         20
2518     2            34         21
2519     2            34         22
2520     2            34         23
2521     2            34         24
2522     2            34         25
2523     2            34         26
2524     2            34         27
2525     2            34         28
2526     2            34         29
2527     2            34         30
2528     2            34         31
2529     2            34         32
2530     2            34         33
2531     2            34         34
2532     2            34         35
2533     2            35          1
2534     2            35          2
2535     2            35          3
2536     2            35          4
2537     2            35          5
2538     2            35          6
2539     2            35          7
2540     2            35          8
2541     2            35          9
2542     2            35         10
2543     2            35         11
2544     2            35         12
2545     2            35         13
2546     2            35         14
2547     2            35         15
2548     2            35         16
2549     2            35         17
2550     2            35         18
2551     2            35         19
2552     2            35         20
2553     2            35         21
2554     2            35         22
2555     2            35         23
2556     2            35         24
2557     2            35         25
2558     2            35         26
2559     2            35         27
2560     2            35         28
2561     2            35         29
2562     2            35         30
2563     2            35         31
2564     2            35         32
2565     2            35         33
2566     2            35         34
2567     2            35         35
2568     2            36          1
2569     2            36          2
2570     2            36          3
2571     2            36          4
2572     2            36          5
2573     2            36          6
2574     2            36          7
2575     2            36          8
2576     2            36          9
2577     2            36         10
2578     2            36         11
2579     2            36         12
2580     2            36         13
2581     2            36         14
2582     2            36         15
2583     2            36         16
2584     2            36         17
2585     2            36         18
2586     2            36         19
2587     2            36         20
2588     2            36         21
2589     2            36         22
2590     2            36         23
2591     2            36         24
2592     2            36         25
2593     2            36         26
2594     2            36         27
2595     2            36         28
2596     2            36         29
2597     2            36         30
2598     2            36         31
2599     2            36         32
2600     2            36         33
2601     2            36         34
2602     2            36         35
2603     2            36         36
2604     2            36         37
2605     2            36         38
2606     2            37          1
2607     2            37          2
2608     2            37          3
2609     2            37          4
2610     2            37          5
2611     2            37          6
2612     2            37          7
2613     2            37          8
2614     2            37          9
2615     2            37         10
2616     2            37         11
2617     2            37         12
2618     2            37         13
2619     2            37         14
2620     2            37         15
2621     2            37         16
2622     2            37         17
2623     2            37         18
2624     2            37         19
2625     2            37         20
2626     2            37         21
2627     2            37         22
2628     2            37         23
2629     2            37         24
2630     2            37         25
2631     2            37         26
2632     2            37         27
2633     2            37         28
2634     2            37         29
2635     2            38          1
2636     2            38          2
2637     2            38          3
2638     2            38          4
2639     2            38          5
2640     2            38          6
2641     2            38          7
2642     2            38          8
2643     2            38          9
2644     2            38         10
2645     2            38         11
2646     2            38         12
2647     2            38         13
2648     2            38         14
2649     2            38         15
2650     2            38         16
2651     2            38         17
2652     2            38         18
2653     2            38         19
2654     2            38         20
2655     2            38         21
2656     2            38         22
2657     2            38         23
2658     2            38         24
2659     2            38         25
2660     2            38         26
2661     2            38         27
2662     2            38         28
2663     2            38         29
2664     2            38         30
2665     2            38         31
2666     2            39          1
2667     2            39          2
2668     2            39          3
2669     2            39          4
2670     2            39          5
2671     2            39          6
2672     2            39          7
2673     2            39          8
2674     2            39          9
2675     2            39         10
2676     2            39         11
2677     2            39         12
2678     2            39         13
2679     2            39         14
2680     2            39         15
2681     2            39         16
2682     2            39         17
2683     2            39         18
2684     2            39         19
2685     2            39         20
2686     2            39         21
2687     2            39         22
2688     2            39         23
2689     2            39         24
2690     2            39         25
2691     2            39         26
2692     2            39         27
2693     2            39         28
2694     2            39         29
2695     2            39         30
2696     2            39         31
2697     2            39         32
2698     2            39         33
2699     2            39         34
2700     2            39         35
2701     2            39         36
2702     2            39         37
2703     2            39         38
2704     2            39         39
2705     2            39         40
2706     2            39         41
2707     2            39         42
2708     2            39         43
2709     2            40          1
2710     2            40          2
2711     2            40          3
2712     2            40          4
2713     2            40          5
2714     2            40          6
2715     2            40          7
2716     2            40          8
2717     2            40          9
2718     2            40         10
2719     2            40         11
2720     2            40         12
2721     2            40         13
2722     2            40         14
2723     2            40         15
2724     2            40         16
2725     2            40         17
2726     2            40         18
2727     2            40         19
2728     2            40         20
2729     2            40         21
2730     2            40         22
2731     2            40         23
2732     2            40         24
2733     2            40         25
2734     2            40         26
2735     2            40         27
2736     2            40         28
2737     2            40         29
2738     2            40         30
2739     2            40         31
2740     2            40         32
2741     2            40         33
2742     2            40         34
2743     2            40         35
2744     2            40         36
2745     2            40         37
2746     2            40         38
2747     3             1          1
2748     3             1          2
2749     3             1          3
2750     3             1          4
2751     3             1          5
2752     3             1          6
2753     3             1          7
2754     3             1          8
2755     3             1          9
2756     3             1         10
2757     3             1         11
2758     3             1         12
2759     3             1         13
2760     3             1         14
2761     3             1         15
2762     3             1         16
2763     3             1         17
2764     3             2          1
2765     3             2          2
2766     3             2          3
2767     3             2          4
2768     3             2          5
2769     3             2          6
2770     3             2          7
2771     3             2          8
2772     3             2          9
2773     3             2         10
2774     3             2         11
2775     3             2         12
2776     3             2         13
2777     3             2         14
2778     3             2         15
2779     3             2         16
2780     3             3          1
2781     3             3          2
2782     3             3          3
2783     3             3          4
2784     3             3          5
2785     3             3          6
2786     3             3          7
2787     3             3          8
2788     3             3          9
2789     3             3         10
2790     3             3         11
2791     3             3         12
2792     3             3         13
2793     3             3         14
2794     3             3         15
2795     3             3         16
2796     3             3         17
2797     3             4          1
2798     3             4          2
2799     3             4          3
2800     3             4          4
2801     3             4          5
2802     3             4          6
2803     3             4          7
2804     3             4          8
2805     3             4          9
2806     3             4         10
2807     3             4         11
2808     3             4         12
2809     3             4         13
2810     3             4         14
2811     3             4         15
2812     3             4         16
2813     3             4         17
2814     3             4         18
2815     3             4         19
2816     3             4         20
2817     3             4         21
2818     3             4         22
2819     3             4         23
2820     3             4         24
2821     3             4         25
2822     3             4         26
2823     3             4         27
2824     3             4         28
2825     3             4         29
2826     3             4         30
2827     3             4         31
2828     3             4         32
2829     3             4         33
2830     3             4         34
2831     3             4         35
2832     3             5          1
2833     3             5          2
2834     3             5          3
2835     3             5          4
2836     3             5          5
2837     3             5          6
2838     3             5          7
2839     3             5          8
2840     3             5          9
2841     3             5         10
2842     3             5         11
2843     3             5         12
2844     3             5         13
2845     3             5         14
2846     3             5         15
2847     3             5         16
2848     3             5         17
2849     3             5         18
2850     3             5         19
2851     3             6          1
2852     3             6          2
2853     3             6          3
2854     3             6          4
2855     3             6          5
2856     3             6          6
2857     3             6          7
2858     3             6          8
2859     3             6          9
2860     3             6         10
2861     3             6         11
2862     3             6         12
2863     3             6         13
2864     3             6         14
2865     3             6         15
2866     3             6         16
2867     3             6         17
2868     3             6         18
2869     3             6         19
2870     3             6         20
2871     3             6         21
2872     3             6         22
2873     3             6         23
2874     3             6         24
2875     3             6         25
2876     3             6         26
2877     3             6         27
2878     3             6         28
2879     3             6         29
2880     3             6         30
2881     3             7          1
2882     3             7          2
2883     3             7          3
2884     3             7          4
2885     3             7          5
2886     3             7          6
2887     3             7          7
2888     3             7          8
2889     3             7          9
2890     3             7         10
2891     3             7         11
2892     3             7         12
2893     3             7         13
2894     3             7         14
2895     3             7         15
2896     3             7         16
2897     3             7         17
2898     3             7         18
2899     3             7         19
2900     3             7         20
2901     3             7         21
2902     3             7         22
2903     3             7         23
2904     3             7         24
2905     3             7         25
2906     3             7         26
2907     3             7         27
2908     3             7         28
2909     3             7         29
2910     3             7         30
2911     3             7         31
2912     3             7         32
2913     3             7         33
2914     3             7         34
2915     3             7         35
2916     3             7         36
2917     3             7         37
2918     3             7         38
2919     3             8          1
2920     3             8          2
2921     3             8          3
2922     3             8          4
2923     3             8          5
2924     3             8          6
2925     3             8          7
2926     3             8          8
2927     3             8          9
2928     3             8         10
2929     3             8         11
2930     3             8         12
2931     3             8         13
2932     3             8         14
2933     3             8         15
2934     3             8         16
2935     3             8         17
2936     3             8         18
2937     3             8         19
2938     3             8         20
2939     3             8         21
2940     3             8         22
2941     3             8         23
2942     3             8         24
2943     3             8         25
2944     3             8         26
2945     3             8         27
2946     3             8         28
2947     3             8         29
2948     3             8         30
2949     3             8         31
2950     3             8         32
2951     3             8         33
2952     3             8         34
2953     3             8         35
2954     3             8         36
2955     3             9          1
2956     3             9          2
2957     3             9          3
2958     3             9          4
2959     3             9          5
2960     3             9          6
2961     3             9          7
2962     3             9          8
2963     3             9          9
2964     3             9         10
2965     3             9         11
2966     3             9         12
2967     3             9         13
2968     3             9         14
2969     3             9         15
2970     3             9         16
2971     3             9         17
2972     3             9         18
2973     3             9         19
2974     3             9         20
2975     3             9         21
2976     3             9         22
2977     3             9         23
2978     3             9         24
2979     3            10          1
2980     3            10          2
2981     3            10          3
2982     3            10          4
2983     3            10          5
2984     3            10          6
2985     3            10          7
2986     3            10          8
2987     3            10          9
2988     3            10         10
2989     3            10         11
2990     3            10         12
2991     3            10         13
2992     3            10         14
2993     3            10         15
2994     3            10         16
2995     3            10         17
2996     3            10         18
2997     3            10         19
2998     3            10         20
2999     3            11          1
3000     3            11          2
3001     3            11          3
3002     3            11          4
3003     3            11          5
3004     3            11          6
3005     3            11          7
3006     3            11          8
3007     3            11          9
3008     3            11         10
3009     3            11         11
3010     3            11         12
3011     3            11         13
3012     3            11         14
3013     3            11         15
3014     3            11         16
3015     3            11         17
3016     3            11         18
3017     3            11         19
3018     3            11         20
3019     3            11         21
3020     3            11         22
3021     3            11         23
3022     3            11         24
3023     3            11         25
3024     3            11         26
3025     3            11         27
3026     3            11         28
3027     3            11         29
3028     3            11         30
3029     3            11         31
3030     3            11         32
3031     3            11         33
3032     3            11         34
3033     3            11         35
3034     3            11         36
3035     3            11         37
3036     3            11         38
3037     3            11         39
3038     3            11         40
3039     3            11         41
3040     3            11         42
3041     3            11         43
3042     3            11         44
3043     3            11         45
3044     3            11         46
3045     3            11         47
3046     3            12          1
3047     3            12          2
3048     3            12          3
3049     3            12          4
3050     3            12          5
3051     3            12          6
3052     3            12          7
3053     3            12          8
3054     3            13          1
3055     3            13          2
3056     3            13          3
3057     3            13          4
3058     3            13          5
3059     3            13          6
3060     3            13          7
3061     3            13          8
3062     3            13          9
3063     3            13         10
3064     3            13         11
3065     3            13         12
3066     3            13         13
3067     3            13         14
3068     3            13         15
3069     3            13         16
3070     3            13         17
3071     3            13         18
3072     3            13         19
3073     3            13         20
3074     3            13         21
3075     3            13         22
3076     3            13         23
3077     3            13         24
3078     3            13         25
3079     3            13         26
3080     3            13         27
3081     3            13         28
3082     3            13         29
3083     3            13         30
3084     3            13         31
3085     3            13         32
3086     3            13         33
3087     3            13         34
3088     3            13         35
3089     3            13         36
3090     3            13         37
3091     3            13         38
3092     3            13         39
3093     3            13         40
3094     3            13         41
3095     3            13         42
3096     3            13         43
3097     3            13         44
3098     3            13         45
3099     3            13         46
3100     3            13         47
3101     3            13         48
3102     3            13         49
3103     3            13         50
3104     3            13         51
3105     3            13         52
3106     3            13         53
3107     3            13         54
3108     3            13         55
3109     3            13         56
3110     3            13         57
3111     3            13         58
3112     3            13         59
3113     3            14          1
3114     3            14          2
3115     3            14          3
3116     3            14          4
3117     3            14          5
3118     3            14          6
3119     3            14          7
3120     3            14          8
3121     3            14          9
3122     3            14         10
3123     3            14         11
3124     3            14         12
3125     3            14         13
3126     3            14         14
3127     3            14         15
3128     3            14         16
3129     3            14         17
3130     3            14         18
3131     3            14         19
3132     3            14         20
3133     3            14         21
3134     3            14         22
3135     3            14         23
3136     3            14         24
3137     3            14         25
3138     3            14         26
3139     3            14         27
3140     3            14         28
3141     3            14         29
3142     3            14         30
3143     3            14         31
3144     3            14         32
3145     3            14         33
3146     3            14         34
3147     3            14         35
3148     3            14         36
3149     3            14         37
3150     3            14         38
3151     3            14         39
3152     3            14         40
3153     3            14         41
3154     3            14         42
3155     3            14         43
3156     3            14         44
3157     3            14         45
3158     3            14         46
3159     3            14         47
3160     3            14         48
3161     3            14         49
3162     3            14         50
3163     3            14         51
3164     3            14         52
3165     3            14         53
3166     3            14         54
3167     3            14         55
3168     3            14         56
3169     3            14         57
3170     3            15          1
3171     3            15          2
3172     3            15          3
3173     3            15          4
3174     3            15          5
3175     3            15          6
3176     3            15          7
3177     3            15          8
3178     3            15          9
3179     3            15         10
3180     3            15         11
3181     3            15         12
3182     3            15         13
3183     3            15         14
3184     3            15         15
3185     3            15         16
3186     3            15         17
3187     3            15         18
3188     3            15         19
3189     3            15         20
3190     3            15         21
3191     3            15         22
3192     3            15         23
3193     3            15         24
3194     3            15         25
3195     3            15         26
3196     3            15         27
3197     3            15         28
3198     3            15         29
3199     3            15         30
3200     3            15         31
3201     3            15         32
3202     3            15         33
3203     3            16          1
3204     3            16          2
3205     3            16          3
3206     3            16          4
3207     3            16          5
3208     3            16          6
3209     3            16          7
3210     3            16          8
3211     3            16          9
3212     3            16         10
3213     3            16         11
3214     3            16         12
3215     3            16         13
3216     3            16         14
3217     3            16         15
3218     3            16         16
3219     3            16         17
3220     3            16         18
3221     3            16         19
3222     3            16         20
3223     3            16         21
3224     3            16         22
3225     3            16         23
3226     3            16         24
3227     3            16         25
3228     3            16         26
3229     3            16         27
3230     3            16         28
3231     3            16         29
3232     3            16         30
3233     3            16         31
3234     3            16         32
3235     3            16         33
3236     3            16         34
3237     3            17          1
3238     3            17          2
3239     3            17          3
3240     3            17          4
3241     3            17          5
3242     3            17          6
3243     3            17          7
3244     3            17          8
3245     3            17          9
3246     3            17         10
3247     3            17         11
3248     3            17         12
3249     3            17         13
3250     3            17         14
3251     3            17         15
3252     3            17         16
3253     3            18          1
3254     3            18          2
3255     3            18          3
3256     3            18          4
3257     3            18          5
3258     3            18          6
3259     3            18          7
3260     3            18          8
3261     3            18          9
3262     3            18         10
3263     3            18         11
3264     3            18         12
3265     3            18         13
3266     3            18         14
3267     3            18         15
3268     3            18         16
3269     3            18         17
3270     3            18         18
3271     3            18         19
3272     3            18         20
3273     3            18         21
3274     3            18         22
3275     3            18         23
3276     3            18         24
3277     3            18         25
3278     3            18         26
3279     3            18         27
3280     3            18         28
3281     3            18         29
3282     3            18         30
3283     3            19          1
3284     3            19          2
3285     3            19          3
3286     3            19          4
3287     3            19          5
3288     3            19          6
3289     3            19          7
3290     3            19          8
3291     3            19          9
3292     3            19         10
3293     3            19         11
3294     3            19         12
3295     3            19         13
3296     3            19         14
3297     3            19         15
3298     3            19         16
3299     3            19         17
3300     3            19         18
3301     3            19         19
3302     3            19         20
3303     3            19         21
3304     3            19         22
3305     3            19         23
3306     3            19         24
3307     3            19         25
3308     3            19         26
3309     3            19         27
3310     3            19         28
3311     3            19         29
3312     3            19         30
3313     3            19         31
3314     3            19         32
3315     3            19         33
3316     3            19         34
3317     3            19         35
3318     3            19         36
3319     3            19         37
3320     3            20          1
3321     3            20          2
3322     3            20          3
3323     3            20          4
3324     3            20          5
3325     3            20          6
3326     3            20          7
3327     3            20          8
3328     3            20          9
3329     3            20         10
3330     3            20         11
3331     3            20         12
3332     3            20         13
3333     3            20         14
3334     3            20         15
3335     3            20         16
3336     3            20         17
3337     3            20         18
3338     3            20         19
3339     3            20         20
3340     3            20         21
3341     3            20         22
3342     3            20         23
3343     3            20         24
3344     3            20         25
3345     3            20         26
3346     3            20         27
3347     3            21          1
3348     3            21          2
3349     3            21          3
3350     3            21          4
3351     3            21          5
3352     3            21          6
3353     3            21          7
3354     3            21          8
3355     3            21          9
3356     3            21         10
3357     3            21         11
3358     3            21         12
3359     3            21         13
3360     3            21         14
3361     3            21         15
3362     3            21         16
3363     3            21         17
3364     3            21         18
3365     3            21         19
3366     3            21         20
3367     3            21         21
3368     3            21         22
3369     3            21         23
3370     3            21         24
3371     3            22          1
3372     3            22          2
3373     3            22          3
3374     3            22          4
3375     3            22          5
3376     3            22          6
3377     3            22          7
3378     3            22          8
3379     3            22          9
3380     3            22         10
3381     3            22         11
3382     3            22         12
3383     3            22         13
3384     3            22         14
3385     3            22         15
3386     3            22         16
3387     3            22         17
3388     3            22         18
3389     3            22         19
3390     3            22         20
3391     3            22         21
3392     3            22         22
3393     3            22         23
3394     3            22         24
3395     3            22         25
3396     3            22         26
3397     3            22         27
3398     3            22         28
3399     3            22         29
3400     3            22         30
3401     3            22         31
3402     3            22         32
3403     3            22         33
3404     3            23          1
3405     3            23          2
3406     3            23          3
3407     3            23          4
3408     3            23          5
3409     3            23          6
3410     3            23          7
3411     3            23          8
3412     3            23          9
3413     3            23         10
3414     3            23         11
3415     3            23         12
3416     3            23         13
3417     3            23         14
3418     3            23         15
3419     3            23         16
3420     3            23         17
3421     3            23         18
3422     3            23         19
3423     3            23         20
3424     3            23         21
3425     3            23         22
3426     3            23         23
3427     3            23         24
3428     3            23         25
3429     3            23         26
3430     3            23         27
3431     3            23         28
3432     3            23         29
3433     3            23         30
3434     3            23         31
3435     3            23         32
3436     3            23         33
3437     3            23         34
3438     3            23         35
3439     3            23         36
3440     3            23         37
3441     3            23         38
3442     3            23         39
3443     3            23         40
3444     3            23         41
3445     3            23         42
3446     3            23         43
3447     3            23         44
3448     3            24          1
3449     3            24          2
3450     3            24          3
3451     3            24          4
3452     3            24          5
3453     3            24          6
3454     3            24          7
3455     3            24          8
3456     3            24          9
3457     3            24         10
3458     3            24         11
3459     3            24         12
3460     3            24         13
3461     3            24         14
3462     3            24         15
3463     3            24         16
3464     3            24         17
3465     3            24         18
3466     3            24         19
3467     3            24         20
3468     3            24         21
3469     3            24         22
3470     3            24         23
3471     3            25          1
3472     3            25          2
3473     3            25          3
3474     3            25          4
3475     3            25          5
3476     3            25          6
3477     3            25          7
3478     3            25          8
3479     3            25          9
3480     3            25         10
3481     3            25         11
3482     3            25         12
3483     3            25         13
3484     3            25         14
3485     3            25         15
3486     3            25         16
3487     3            25         17
3488     3            25         18
3489     3            25         19
3490     3            25         20
3491     3            25         21
3492     3            25         22
3493     3            25         23
3494     3            25         24
3495     3            25         25
3496     3            25         26
3497     3            25         27
3498     3            25         28
3499     3            25         29
3500     3            25         30
3501     3            25         31
3502     3            25         32
3503     3            25         33
3504     3            25         34
3505     3            25         35
3506     3            25         36
3507     3            25         37
3508     3            25         38
3509     3            25         39
3510     3            25         40
3511     3            25         41
3512     3            25         42
3513     3            25         43
3514     3            25         44
3515     3            25         45
3516     3            25         46
3517     3            25         47
3518     3            25         48
3519     3            25         49
3520     3            25         50
3521     3            25         51
3522     3            25         52
3523     3            25         53
3524     3            25         54
3525     3            25         55
3526     3            26          1
3527     3            26          2
3528     3            26          3
3529     3            26          4
3530     3            26          5
3531     3            26          6
3532     3            26          7
3533     3            26          8
3534     3            26          9
3535     3            26         10
3536     3            26         11
3537     3            26         12
3538     3            26         13
3539     3            26         14
3540     3            26         15
3541     3            26         16
3542     3            26         17
3543     3            26         18
3544     3            26         19
3545     3            26         20
3546     3            26         21
3547     3            26         22
3548     3            26         23
3549     3            26         24
3550     3            26         25
3551     3            26         26
3552     3            26         27
3553     3            26         28
3554     3            26         29
3555     3            26         30
3556     3            26         31
3557     3            26         32
3558     3            26         33
3559     3            26         34
3560     3            26         35
3561     3            26         36
3562     3            26         37
3563     3            26         38
3564     3            26         39
3565     3            26         40
3566     3            26         41
3567     3            26         42
3568     3            26         43
3569     3            26         44
3570     3            26         45
3571     3            26         46
3572     3            27          1
3573     3            27          2
3574     3            27          3
3575     3            27          4
3576     3            27          5
3577     3            27          6
3578     3            27          7
3579     3            27          8
3580     3            27          9
3581     3            27         10
3582     3            27         11
3583     3            27         12
3584     3            27         13
3585     3            27         14
3586     3            27         15
3587     3            27         16
3588     3            27         17
3589     3            27         18
3590     3            27         19
3591     3            27         20
3592     3            27         21
3593     3            27         22
3594     3            27         23
3595     3            27         24
3596     3            27         25
3597     3            27         26
3598     3            27         27
3599     3            27         28
3600     3            27         29
3601     3            27         30
3602     3            27         31
3603     3            27         32
3604     3            27         33
3605     3            27         34
3606     4             1          1
3607     4             1          2
3608     4             1          3
3609     4             1          4
3610     4             1          5
3611     4             1          6
3612     4             1          7
3613     4             1          8
3614     4             1          9
3615     4             1         10
3616     4             1         11
3617     4             1         12
3618     4             1         13
3619     4             1         14
3620     4             1         15
3621     4             1         16
3622     4             1         17
3623     4             1         18
3624     4             1         19
3625     4             1         20
3626     4             1         21
3627     4             1         22
3628     4             1         23
3629     4             1         24
3630     4             1         25
3631     4             1         26
3632     4             1         27
3633     4             1         28
3634     4             1         29
3635     4             1         30
3636     4             1         31
3637     4             1         32
3638     4             1         33
3639     4             1         34
3640     4             1         35
3641     4             1         36
3642     4             1         37
3643     4             1         38
3644     4             1         39
3645     4             1         40
3646     4             1         41
3647     4             1         42
3648     4             1         43
3649     4             1         44
3650     4             1         45
3651     4             1         46
3652     4             1         47
3653     4             1         48
3654     4             1         49
3655     4             1         50
3656     4             1         51
3657     4             1         52
3658     4             1         53
3659     4             1         54
3660     4             2          1
3661     4             2          2
3662     4             2          3
3663     4             2          4
3664     4             2          5
3665     4             2          6
3666     4             2          7
3667     4             2          8
3668     4             2          9
3669     4             2         10
3670     4             2         11
3671     4             2         12
3672     4             2         13
3673     4             2         14
3674     4             2         15
3675     4             2         16
3676     4             2         17
3677     4             2         18
3678     4             2         19
3679     4             2         20
3680     4             2         21
3681     4             2         22
3682     4             2         23
3683     4             2         24
3684     4             2         25
3685     4             2         26
3686     4             2         27
3687     4             2         28
3688     4             2         29
3689     4             2         30
3690     4             2         31
3691     4             2         32
3692     4             2         33
3693     4             2         34
3694     4             3          1
3695     4             3          2
3696     4             3          3
3697     4             3          4
3698     4             3          5
3699     4             3          6
3700     4             3          7
3701     4             3          8
3702     4             3          9
3703     4             3         10
3704     4             3         11
3705     4             3         12
3706     4             3         13
3707     4             3         14
3708     4             3         15
3709     4             3         16
3710     4             3         17
3711     4             3         18
3712     4             3         19
3713     4             3         20
3714     4             3         21
3715     4             3         22
3716     4             3         23
3717     4             3         24
3718     4             3         25
3719     4             3         26
3720     4             3         27
3721     4             3         28
3722     4             3         29
3723     4             3         30
3724     4             3         31
3725     4             3         32
3726     4             3         33
3727     4             3         34
3728     4             3         35
3729     4             3         36
3730     4             3         37
3731     4             3         38
3732     4             3         39
3733     4             3         40
3734     4             3         41
3735     4             3         42
3736     4             3         43
3737     4             3         44
3738     4             3         45
3739     4             3         46
3740     4             3         47
3741     4             3         48
3742     4             3         49
3743     4             3         50
3744     4             3         51
3745     4             4          1
3746     4             4          2
3747     4             4          3
3748     4             4          4
3749     4             4          5
3750     4             4          6
3751     4             4          7
3752     4             4          8
3753     4             4          9
3754     4             4         10
3755     4             4         11
3756     4             4         12
3757     4             4         13
3758     4             4         14
3759     4             4         15
3760     4             4         16
3761     4             4         17
3762     4             4         18
3763     4             4         19
3764     4             4         20
3765     4             4         21
3766     4             4         22
3767     4             4         23
3768     4             4         24
3769     4             4         25
3770     4             4         26
3771     4             4         27
3772     4             4         28
3773     4             4         29
3774     4             4         30
3775     4             4         31
3776     4             4         32
3777     4             4         33
3778     4             4         34
3779     4             4         35
3780     4             4         36
3781     4             4         37
3782     4             4         38
3783     4             4         39
3784     4             4         40
3785     4             4         41
3786     4             4         42
3787     4             4         43
3788     4             4         44
3789     4             4         45
3790     4             4         46
3791     4             4         47
3792     4             4         48
3793     4             4         49
3794     4             5          1
3795     4             5          2
3796     4             5          3
3797     4             5          4
3798     4             5          5
3799     4             5          6
3800     4             5          7
3801     4             5          8
3802     4             5          9
3803     4             5         10
3804     4             5         11
3805     4             5         12
3806     4             5         13
3807     4             5         14
3808     4             5         15
3809     4             5         16
3810     4             5         17
3811     4             5         18
3812     4             5         19
3813     4             5         20
3814     4             5         21
3815     4             5         22
3816     4             5         23
3817     4             5         24
3818     4             5         25
3819     4             5         26
3820     4             5         27
3821     4             5         28
3822     4             5         29
3823     4             5         30
3824     4             5         31
3825     4             6          1
3826     4             6          2
3827     4             6          3
3828     4             6          4
3829     4             6          5
3830     4             6          6
3831     4             6          7
3832     4             6          8
3833     4             6          9
3834     4             6         10
3835     4             6         11
3836     4             6         12
3837     4             6         13
3838     4             6         14
3839     4             6         15
3840     4             6         16
3841     4             6         17
3842     4             6         18
3843     4             6         19
3844     4             6         20
3845     4             6         21
3846     4             6         22
3847     4             6         23
3848     4             6         24
3849     4             6         25
3850     4             6         26
3851     4             6         27
3852     4             7          1
3853     4             7          2
3854     4             7          3
3855     4             7          4
3856     4             7          5
3857     4             7          6
3858     4             7          7
3859     4             7          8
3860     4             7          9
3861     4             7         10
3862     4             7         11
3863     4             7         12
3864     4             7         13
3865     4             7         14
3866     4             7         15
3867     4             7         16
3868     4             7         17
3869     4             7         18
3870     4             7         19
3871     4             7         20
3872     4             7         21
3873     4             7         22
3874     4             7         23
3875     4             7         24
3876     4             7         25
3877     4             7         26
3878     4             7         27
3879     4             7         28
3880     4             7         29
3881     4             7         30
3882     4             7         31
3883     4             7         32
3884     4             7         33
3885     4             7         34
3886     4             7         35
3887     4             7         36
3888     4             7         37
3889     4             7         38
3890     4             7         39
3891     4             7         40
3892     4             7         41
3893     4             7         42
3894     4             7         43
3895     4             7         44
3896     4             7         45
3897     4             7         46
3898     4             7         47
3899     4             7         48
3900     4             7         49
3901     4             7         50
3902     4             7         51
3903     4             7         52
3904     4             7         53
3905     4             7         54
3906     4             7         55
3907     4             7         56
3908     4             7         57
3909     4             7         58
3910     4             7         59
3911     4             7         60
3912     4             7         61
3913     4             7         62
3914     4             7         63
3915     4             7         64
3916     4             7         65
3917     4             7         66
3918     4             7         67
3919     4             7         68
3920     4             7         69
3921     4             7         70
3922     4             7         71
3923     4             7         72
3924     4             7         73
3925     4             7         74
3926     4             7         75
3927     4             7         76
3928     4             7         77
3929     4             7         78
3930     4             7         79
3931     4             7         80
3932     4             7         81
3933     4             7         82
3934     4             7         83
3935     4             7         84
3936     4             7         85
3937     4             7         86
3938     4             7         87
3939     4             7         88
3940     4             7         89
3941     4             8          1
3942     4             8          2
3943     4             8          3
3944     4             8          4
3945     4             8          5
3946     4             8          6
3947     4             8          7
3948     4             8          8
3949     4             8          9
3950     4             8         10
3951     4             8         11
3952     4             8         12
3953     4             8         13
3954     4             8         14
3955     4             8         15
3956     4             8         16
3957     4             8         17
3958     4             8         18
3959     4             8         19
3960     4             8         20
3961     4             8         21
3962     4             8         22
3963     4             8         23
3964     4             8         24
3965     4             8         25
3966     4             8         26
3967     4             9          1
3968     4             9          2
3969     4             9          3
3970     4             9          4
3971     4             9          5
3972     4             9          6
3973     4             9          7
3974     4             9          8
3975     4             9          9
3976     4             9         10
3977     4             9         11
3978     4             9         12
3979     4             9         13
3980     4             9         14
3981     4             9         15
3982     4             9         16
3983     4             9         17
3984     4             9         18
3985     4             9         19
3986     4             9         20
3987     4             9         21
3988     4             9         22
3989     4             9         23
3990     4            10          1
3991     4            10          2
3992     4            10          3
3993     4            10          4
3994     4            10          5
3995     4            10          6
3996     4            10          7
3997     4            10          8
3998     4            10          9
3999     4            10         10
4000     4            10         11
4001     4            10         12
4002     4            10         13
4003     4            10         14
4004     4            10         15
4005     4            10         16
4006     4            10         17
4007     4            10         18
4008     4            10         19
4009     4            10         20
4010     4            10         21
4011     4            10         22
4012     4            10         23
4013     4            10         24
4014     4            10         25
4015     4            10         26
4016     4            10         27
4017     4            10         28
4018     4            10         29
4019     4            10         30
4020     4            10         31
4021     4            10         32
4022     4            10         33
4023     4            10         34
4024     4            10         35
4025     4            10         36
4026     4            11          1
4027     4            11          2
4028     4            11          3
4029     4            11          4
4030     4            11          5
4031     4            11          6
4032     4            11          7
4033     4            11          8
4034     4            11          9
4035     4            11         10
4036     4            11         11
4037     4            11         12
4038     4            11         13
4039     4            11         14
4040     4            11         15
4041     4            11         16
4042     4            11         17
4043     4            11         18
4044     4            11         19
4045     4            11         20
4046     4            11         21
4047     4            11         22
4048     4            11         23
4049     4            11         24
4050     4            11         25
4051     4            11         26
4052     4            11         27
4053     4            11         28
4054     4            11         29
4055     4            11         30
4056     4            11         31
4057     4            11         32
4058     4            11         33
4059     4            11         34
4060     4            11         35
4061     4            12          1
4062     4            12          2
4063     4            12          3
4064     4            12          4
4065     4            12          5
4066     4            12          6
4067     4            12          7
4068     4            12          8
4069     4            12          9
4070     4            12         10
4071     4            12         11
4072     4            12         12
4073     4            12         13
4074     4            12         14
4075     4            12         15
4076     4            12         16
4077     4            13          1
4078     4            13          2
4079     4            13          3
4080     4            13          4
4081     4            13          5
4082     4            13          6
4083     4            13          7
4084     4            13          8
4085     4            13          9
4086     4            13         10
4087     4            13         11
4088     4            13         12
4089     4            13         13
4090     4            13         14
4091     4            13         15
4092     4            13         16
4093     4            13         17
4094     4            13         18
4095     4            13         19
4096     4            13         20
4097     4            13         21
4098     4            13         22
4099     4            13         23
4100     4            13         24
4101     4            13         25
4102     4            13         26
4103     4            13         27
4104     4            13         28
4105     4            13         29
4106     4            13         30
4107     4            13         31
4108     4            13         32
4109     4            13         33
4110     4            14          1
4111     4            14          2
4112     4            14          3
4113     4            14          4
4114     4            14          5
4115     4            14          6
4116     4            14          7
4117     4            14          8
4118     4            14          9
4119     4            14         10
4120     4            14         11
4121     4            14         12
4122     4            14         13
4123     4            14         14
4124     4            14         15
4125     4            14         16
4126     4            14         17
4127     4            14         18
4128     4            14         19
4129     4            14         20
4130     4            14         21
4131     4            14         22
4132     4            14         23
4133     4            14         24
4134     4            14         25
4135     4            14         26
4136     4            14         27
4137     4            14         28
4138     4            14         29
4139     4            14         30
4140     4            14         31
4141     4            14         32
4142     4            14         33
4143     4            14         34
4144     4            14         35
4145     4            14         36
4146     4            14         37
4147     4            14         38
4148     4            14         39
4149     4            14         40
4150     4            14         41
4151     4            14         42
4152     4            14         43
4153     4            14         44
4154     4            14         45
4155     4            15          1
4156     4            15          2
4157     4            15          3
4158     4            15          4
4159     4            15          5
4160     4            15          6
4161     4            15          7
4162     4            15          8
4163     4            15          9
4164     4            15         10
4165     4            15         11
4166     4            15         12
4167     4            15         13
4168     4            15         14
4169     4            15         15
4170     4            15         16
4171     4            15         17
4172     4            15         18
4173     4            15         19
4174     4            15         20
4175     4            15         21
4176     4            15         22
4177     4            15         23
4178     4            15         24
4179     4            15         25
4180     4            15         26
4181     4            15         27
4182     4            15         28
4183     4            15         29
4184     4            15         30
4185     4            15         31
4186     4            15         32
4187     4            15         33
4188     4            15         34
4189     4            15         35
4190     4            15         36
4191     4            15         37
4192     4            15         38
4193     4            15         39
4194     4            15         40
4195     4            15         41
4196     4            16          1
4197     4            16          2
4198     4            16          3
4199     4            16          4
4200     4            16          5
4201     4            16          6
4202     4            16          7
4203     4            16          8
4204     4            16          9
4205     4            16         10
4206     4            16         11
4207     4            16         12
4208     4            16         13
4209     4            16         14
4210     4            16         15
4211     4            16         16
4212     4            16         17
4213     4            16         18
4214     4            16         19
4215     4            16         20
4216     4            16         21
4217     4            16         22
4218     4            16         23
4219     4            16         24
4220     4            16         25
4221     4            16         26
4222     4            16         27
4223     4            16         28
4224     4            16         29
4225     4            16         30
4226     4            16         31
4227     4            16         32
4228     4            16         33
4229     4            16         34
4230     4            16         35
4231     4            16         36
4232     4            16         37
4233     4            16         38
4234     4            16         39
4235     4            16         40
4236     4            16         41
4237     4            16         42
4238     4            16         43
4239     4            16         44
4240     4            16         45
4241     4            16         46
4242     4            16         47
4243     4            16         48
4244     4            16         49
4245     4            16         50
4246     4            17          1
4247     4            17          2
4248     4            17          3
4249     4            17          4
4250     4            17          5
4251     4            17          6
4252     4            17          7
4253     4            17          8
4254     4            17          9
4255     4            17         10
4256     4            17         11
4257     4            17         12
4258     4            17         13
4259     4            18          1
4260     4            18          2
4261     4            18          3
4262     4            18          4
4263     4            18          5
4264     4            18          6
4265     4            18          7
4266     4            18          8
4267     4            18          9
4268     4            18         10
4269     4            18         11
4270     4            18         12
4271     4            18         13
4272     4            18         14
4273     4            18         15
4274     4            18         16
4275     4            18         17
4276     4            18         18
4277     4            18         19
4278     4            18         20
4279     4            18         21
4280     4            18         22
4281     4            18         23
4282     4            18         24
4283     4            18         25
4284     4            18         26
4285     4            18         27
4286     4            18         28
4287     4            18         29
4288     4            18         30
4289     4            18         31
4290     4            18         32
4291     4            19          1
4292     4            19          2
4293     4            19          3
4294     4            19          4
4295     4            19          5
4296     4            19          6
4297     4            19          7
4298     4            19          8
4299     4            19          9
4300     4            19         10
4301     4            19         11
4302     4            19         12
4303     4            19         13
4304     4            19         14
4305     4            19         15
4306     4            19         16
4307     4            19         17
4308     4            19         18
4309     4            19         19
4310     4            19         20
4311     4            19         21
4312     4            19         22
4313     4            20          1
4314     4            20          2
4315     4            20          3
4316     4            20          4
4317     4            20          5
4318     4            20          6
4319     4            20          7
4320     4            20          8
4321     4            20          9
4322     4            20         10
4323     4            20         11
4324     4            20         12
4325     4            20         13
4326     4            20         14
4327     4            20         15
4328     4            20         16
4329     4            20         17
4330     4            20         18
4331     4            20         19
4332     4            20         20
4333     4            20         21
4334     4            20         22
4335     4            20         23
4336     4            20         24
4337     4            20         25
4338     4            20         26
4339     4            20         27
4340     4            20         28
4341     4            20         29
4342     4            21          1
4343     4            21          2
4344     4            21          3
4345     4            21          4
4346     4            21          5
4347     4            21          6
4348     4            21          7
4349     4            21          8
4350     4            21          9
4351     4            21         10
4352     4            21         11
4353     4            21         12
4354     4            21         13
4355     4            21         14
4356     4            21         15
4357     4            21         16
4358     4            21         17
4359     4            21         18
4360     4            21         19
4361     4            21         20
4362     4            21         21
4363     4            21         22
4364     4            21         23
4365     4            21         24
4366     4            21         25
4367     4            21         26
4368     4            21         27
4369     4            21         28
4370     4            21         29
4371     4            21         30
4372     4            21         31
4373     4            21         32
4374     4            21         33
4375     4            21         34
4376     4            21         35
4377     4            22          1
4378     4            22          2
4379     4            22          3
4380     4            22          4
4381     4            22          5
4382     4            22          6
4383     4            22          7
4384     4            22          8
4385     4            22          9
4386     4            22         10
4387     4            22         11
4388     4            22         12
4389     4            22         13
4390     4            22         14
4391     4            22         15
4392     4            22         16
4393     4            22         17
4394     4            22         18
4395     4            22         19
4396     4            22         20
4397     4            22         21
4398     4            22         22
4399     4            22         23
4400     4            22         24
4401     4            22         25
4402     4            22         26
4403     4            22         27
4404     4            22         28
4405     4            22         29
4406     4            22         30
4407     4            22         31
4408     4            22         32
4409     4            22         33
4410     4            22         34
4411     4            22         35
4412     4            22         36
4413     4            22         37
4414     4            22         38
4415     4            22         39
4416     4            22         40
4417     4            22         41
4418     4            23          1
4419     4            23          2
4420     4            23          3
4421     4            23          4
4422     4            23          5
4423     4            23          6
4424     4            23          7
4425     4            23          8
4426     4            23          9
4427     4            23         10
4428     4            23         11
4429     4            23         12
4430     4            23         13
4431     4            23         14
4432     4            23         15
4433     4            23         16
4434     4            23         17
4435     4            23         18
4436     4            23         19
4437     4            23         20
4438     4            23         21
4439     4            23         22
4440     4            23         23
4441     4            23         24
4442     4            23         25
4443     4            23         26
4444     4            23         27
4445     4            23         28
4446     4            23         29
4447     4            23         30
4448     4            24          1
4449     4            24          2
4450     4            24          3
4451     4            24          4
4452     4            24          5
4453     4            24          6
4454     4            24          7
4455     4            24          8
4456     4            24          9
4457     4            24         10
4458     4            24         11
4459     4            24         12
4460     4            24         13
4461     4            24         14
4462     4            24         15
4463     4            24         16
4464     4            24         17
4465     4            24         18
4466     4            24         19
4467     4            24         20
4468     4            24         21
4469     4            24         22
4470     4            24         23
4471     4            24         24
4472     4            24         25
4473     4            25          1
4474     4            25          2
4475     4            25          3
4476     4            25          4
4477     4            25          5
4478     4            25          6
4479     4            25          7
4480     4            25          8
4481     4            25          9
4482     4            25         10
4483     4            25         11
4484     4            25         12
4485     4            25         13
4486     4            25         14
4487     4            25         15
4488     4            25         16
4489     4            25         17
4490     4            25         18
4491     4            26          1
4492     4            26          2
4493     4            26          3
4494     4            26          4
4495     4            26          5
4496     4            26          6
4497     4            26          7
4498     4            26          8
4499     4            26          9
4500     4            26         10
4501     4            26         11
4502     4            26         12
4503     4            26         13
4504     4            26         14
4505     4            26         15
4506     4            26         16
4507     4            26         17
4508     4            26         18
4509     4            26         19
4510     4            26         20
4511     4            26         21
4512     4            26         22
4513     4            26         23
4514     4            26         24
4515     4            26         25
4516     4            26         26
4517     4            26         27
4518     4            26         28
4519     4            26         29
4520     4            26         30
4521     4            26         31
4522     4            26         32
4523     4            26         33
4524     4            26         34
4525     4            26         35
4526     4            26         36
4527     4            26         37
4528     4            26         38
4529     4            26         39
4530     4            26         40
4531     4            26         41
4532     4            26         42
4533     4            26         43
4534     4            26         44
4535     4            26         45
4536     4            26         46
4537     4            26         47
4538     4            26         48
4539     4            26         49
4540     4            26         50
4541     4            26         51
4542     4            26         52
4543     4            26         53
4544     4            26         54
4545     4            26         55
4546     4            26         56
4547     4            26         57
4548     4            26         58
4549     4            26         59
4550     4            26         60
4551     4            26         61
4552     4            26         62
4553     4            26         63
4554     4            26         64
4555     4            26         65
4556     4            27          1
4557     4            27          2
4558     4            27          3
4559     4            27          4
4560     4            27          5
4561     4            27          6
4562     4            27          7
4563     4            27          8
4564     4            27          9
4565     4            27         10
4566     4            27         11
4567     4            27         12
4568     4            27         13
4569     4            27         14
4570     4            27         15
4571     4            27         16
4572     4            27         17
4573     4            27         18
4574     4            27         19
4575     4            27         20
4576     4            27         21
4577     4            27         22
4578     4            27         23
4579     4            28          1
4580     4            28          2
4581     4            28          3
4582     4            28          4
4583     4            28          5
4584     4            28          6
4585     4            28          7
4586     4            28          8
4587     4            28          9
4588     4            28         10
4589     4            28         11
4590     4            28         12
4591     4            28         13
4592     4            28         14
4593     4            28         15
4594     4            28         16
4595     4            28         17
4596     4            28         18
4597     4            28         19
4598     4            28         20
4599     4            28         21
4600     4            28         22
4601     4            28         23
4602     4            28         24
4603     4            28         25
4604     4            28         26
4605     4            28         27
4606     4            28         28
4607     4            28         29
4608     4            28         30
4609     4            28         31
4610     4            29          1
4611     4            29          2
4612     4            29          3
4613     4            29          4
4614     4            29          5
4615     4            29          6
4616     4            29          7
4617     4            29          8
4618     4            29          9
4619     4            29         10
4620     4            29         11
4621     4            29         12
4622     4            29         13
4623     4            29         14
4624     4            29         15
4625     4            29         16
4626     4            29         17
4627     4            29         18
4628     4            29         19
4629     4            29         20
4630     4            29         21
4631     4            29         22
4632     4            29         23
4633     4            29         24
4634     4            29         25
4635     4            29         26
4636     4            29         27
4637     4            29         28
4638     4            29         29
4639     4            29         30
4640     4            29         31
4641     4            29         32
4642     4            29         33
4643     4            29         34
4644     4            29         35
4645     4            29         36
4646     4            29         37
4647     4            29         38
4648     4            29         39
4649     4            29         40
4650     4            30          1
4651     4            30          2
4652     4            30          3
4653     4            30          4
4654     4            30          5
4655     4            30          6
4656     4            30          7
4657     4            30          8
4658     4            30          9
4659     4            30         10
4660     4            30         11
4661     4            30         12
4662     4            30         13
4663     4            30         14
4664     4            30         15
4665     4            30         16
4666     4            31          1
4667     4            31          2
4668     4            31          3
4669     4            31          4
4670     4            31          5
4671     4            31          6
4672     4            31          7
4673     4            31          8
4674     4            31          9
4675     4            31         10
4676     4            31         11
4677     4            31         12
4678     4            31         13
4679     4            31         14
4680     4            31         15
4681     4            31         16
4682     4            31         17
4683     4            31         18
4684     4            31         19
4685     4            31         20
4686     4            31         21
4687     4            31         22
4688     4            31         23
4689     4            31         24
4690     4            31         25
4691     4            31         26
4692     4            31         27
4693     4            31         28
4694     4            31         29
4695     4            31         30
4696     4            31         31
4697     4            31         32
4698     4            31         33
4699     4            31         34
4700     4            31         35
4701     4            31         36
4702     4            31         37
4703     4            31         38
4704     4            31         39
4705     4            31         40
4706     4            31         41
4707     4            31         42
4708     4            31         43
4709     4            31         44
4710     4            31         45
4711     4            31         46
4712     4            31         47
4713     4            31         48
4714     4            31         49
4715     4            31         50
4716     4            31         51
4717     4            31         52
4718     4            31         53
4719     4            31         54
4720     4            32          1
4721     4            32          2
4722     4            32          3
4723     4            32          4
4724     4            32          5
4725     4            32          6
4726     4            32          7
4727     4            32          8
4728     4            32          9
4729     4            32         10
4730     4            32         11
4731     4            32         12
4732     4            32         13
4733     4            32         14
4734     4            32         15
4735     4            32         16
4736     4            32         17
4737     4            32         18
4738     4            32         19
4739     4            32         20
4740     4            32         21
4741     4            32         22
4742     4            32         23
4743     4            32         24
4744     4            32         25
4745     4            32         26
4746     4            32         27
4747     4            32         28
4748     4            32         29
4749     4            32         30
4750     4            32         31
4751     4            32         32
4752     4            32         33
4753     4            32         34
4754     4            32         35
4755     4            32         36
4756     4            32         37
4757     4            32         38
4758     4            32         39
4759     4            32         40
4760     4            32         41
4761     4            32         42
4762     4            33          1
4763     4            33          2
4764     4            33          3
4765     4            33          4
4766     4            33          5
4767     4            33          6
4768     4            33          7
4769     4            33          8
4770     4            33          9
4771     4            33         10
4772     4            33         11
4773     4            33         12
4774     4            33         13
4775     4            33         14
4776     4            33         15
4777     4            33         16
4778     4            33         17
4779     4            33         18
4780     4            33         19
4781     4            33         20
4782     4            33         21
4783     4            33         22
4784     4            33         23
4785     4            33         24
4786     4            33         25
4787     4            33         26
4788     4            33         27
4789     4            33         28
4790     4            33         29
4791     4            33         30
4792     4            33         31
4793     4            33         32
4794     4            33         33
4795     4            33         34
4796     4            33         35
4797     4            33         36
4798     4            33         37
4799     4            33         38
4800     4            33         39
4801     4            33         40
4802     4            33         41
4803     4            33         42
4804     4            33         43
4805     4            33         44
4806     4            33         45
4807     4            33         46
4808     4            33         47
4809     4            33         48
4810     4            33         49
4811     4            33         50
4812     4            33         51
4813     4            33         52
4814     4            33         53
4815     4            33         54
4816     4            33         55
4817     4            33         56
4818     4            34          1
4819     4            34          2
4820     4            34          3
4821     4            34          4
4822     4            34          5
4823     4            34          6
4824     4            34          7
4825     4            34          8
4826     4            34          9
4827     4            34         10
4828     4            34         11
4829     4            34         12
4830     4            34         13
4831     4            34         14
4832     4            34         15
4833     4            34         16
4834     4            34         17
4835     4            34         18
4836     4            34         19
4837     4            34         20
4838     4            34         21
4839     4            34         22
4840     4            34         23
4841     4            34         24
4842     4            34         25
4843     4            34         26
4844     4            34         27
4845     4            34         28
4846     4            34         29
4847     4            35          1
4848     4            35          2
4849     4            35          3
4850     4            35          4
4851     4            35          5
4852     4            35          6
4853     4            35          7
4854     4            35          8
4855     4            35          9
4856     4            35         10
4857     4            35         11
4858     4            35         12
4859     4            35         13
4860     4            35         14
4861     4            35         15
4862     4            35         16
4863     4            35         17
4864     4            35         18
4865     4            35         19
4866     4            35         20
4867     4            35         21
4868     4            35         22
4869     4            35         23
4870     4            35         24
4871     4            35         25
4872     4            35         26
4873     4            35         27
4874     4            35         28
4875     4            35         29
4876     4            35         30
4877     4            35         31
4878     4            35         32
4879     4            35         33
4880     4            35         34
4881     4            36          1
4882     4            36          2
4883     4            36          3
4884     4            36          4
4885     4            36          5
4886     4            36          6
4887     4            36          7
4888     4            36          8
4889     4            36          9
4890     4            36         10
4891     4            36         11
4892     4            36         12
4893     4            36         13
4894     5             1          1
4895     5             1          2
4896     5             1          3
4897     5             1          4
4898     5             1          5
4899     5             1          6
4900     5             1          7
4901     5             1          8
4902     5             1          9
4903     5             1         10
4904     5             1         11
4905     5             1         12
4906     5             1         13
4907     5             1         14
4908     5             1         15
4909     5             1         16
4910     5             1         17
4911     5             1         18
4912     5             1         19
4913     5             1         20
4914     5             1         21
4915     5             1         22
4916     5             1         23
4917     5             1         24
4918     5             1         25
4919     5             1         26
4920     5             1         27
4921     5             1         28
4922     5             1         29
4923     5             1         30
4924     5             1         31
4925     5             1         32
4926     5             1         33
4927     5             1         34
4928     5             1         35
4929     5             1         36
4930     5             1         37
4931     5             1         38
4932     5             1         39
4933     5             1         40
4934     5             1         41
4935     5             1         42
4936     5             1         43
4937     5             1         44
4938     5             1         45
4939     5             1         46
4940     5             2          1
4941     5             2          2
4942     5             2          3
4943     5             2          4
4944     5             2          5
4945     5             2          6
4946     5             2          7
4947     5             2          8
4948     5             2          9
4949     5             2         10
4950     5             2         11
4951     5             2         12
4952     5             2         13
4953     5             2         14
4954     5             2         15
4955     5             2         16
4956     5             2         17
4957     5             2         18
4958     5             2         19
4959     5             2         20
4960     5             2         21
4961     5             2         22
4962     5             2         23
4963     5             2         24
4964     5             2         25
4965     5             2         26
4966     5             2         27
4967     5             2         28
4968     5             2         29
4969     5             2         30
4970     5             2         31
4971     5             2         32
4972     5             2         33
4973     5             2         34
4974     5             2         35
4975     5             2         36
4976     5             2         37
4977     5             3          1
4978     5             3          2
4979     5             3          3
4980     5             3          4
4981     5             3          5
4982     5             3          6
4983     5             3          7
4984     5             3          8
4985     5             3          9
4986     5             3         10
4987     5             3         11
4988     5             3         12
4989     5             3         13
4990     5             3         14
4991     5             3         15
4992     5             3         16
4993     5             3         17
4994     5             3         18
4995     5             3         19
4996     5             3         20
4997     5             3         21
4998     5             3         22
4999     5             3         23
5000     5             3         24
5001     5             3         25
5002     5             3         26
5003     5             3         27
5004     5             3         28
5005     5             3         29
5006     5             4          1
5007     5             4          2
5008     5             4          3
5009     5             4          4
5010     5             4          5
5011     5             4          6
5012     5             4          7
5013     5             4          8
5014     5             4          9
5015     5             4         10
5016     5             4         11
5017     5             4         12
5018     5             4         13
5019     5             4         14
5020     5             4         15
5021     5             4         16
5022     5             4         17
5023     5             4         18
5024     5             4         19
5025     5             4         20
5026     5             4         21
5027     5             4         22
5028     5             4         23
5029     5             4         24
5030     5             4         25
5031     5             4         26
5032     5             4         27
5033     5             4         28
5034     5             4         29
5035     5             4         30
5036     5             4         31
5037     5             4         32
5038     5             4         33
5039     5             4         34
5040     5             4         35
5041     5             4         36
5042     5             4         37
5043     5             4         38
5044     5             4         39
5045     5             4         40
5046     5             4         41
5047     5             4         42
5048     5             4         43
5049     5             4         44
5050     5             4         45
5051     5             4         46
5052     5             4         47
5053     5             4         48
5054     5             4         49
5055     5             5          1
5056     5             5          2
5057     5             5          3
5058     5             5          4
5059     5             5          5
5060     5             5          6
5061     5             5          7
5062     5             5          8
5063     5             5          9
5064     5             5         10
5065     5             5         11
5066     5             5         12
5067     5             5         13
5068     5             5         14
5069     5             5         15
5070     5             5         16
5071     5             5         17
5072     5             5         18
5073     5             5         19
5074     5             5         20
5075     5             5         21
5076     5             5         22
5077     5             5         23
5078     5             5         24
5079     5             5         25
5080     5             5         26
5081     5             5         27
5082     5             5         28
5083     5             5         29
5084     5             5         30
5085     5             5         31
5086     5             5         32
5087     5             5         33
5088     5             6          1
5089     5             6          2
5090     5             6          3
5091     5             6          4
5092     5             6          5
5093     5             6          6
5094     5             6          7
5095     5             6          8
5096     5             6          9
5097     5             6         10
5098     5             6         11
5099     5             6         12
5100     5             6         13
5101     5             6         14
5102     5             6         15
5103     5             6         16
5104     5             6         17
5105     5             6         18
5106     5             6         19
5107     5             6         20
5108     5             6         21
5109     5             6         22
5110     5             6         23
5111     5             6         24
5112     5             6         25
5113     5             7          1
5114     5             7          2
5115     5             7          3
5116     5             7          4
5117     5             7          5
5118     5             7          6
5119     5             7          7
5120     5             7          8
5121     5             7          9
5122     5             7         10
5123     5             7         11
5124     5             7         12
5125     5             7         13
5126     5             7         14
5127     5             7         15
5128     5             7         16
5129     5             7         17
5130     5             7         18
5131     5             7         19
5132     5             7         20
5133     5             7         21
5134     5             7         22
5135     5             7         23
5136     5             7         24
5137     5             7         25
5138     5             7         26
5139     5             8          1
5140     5             8          2
5141     5             8          3
5142     5             8          4
5143     5             8          5
5144     5             8          6
5145     5             8          7
5146     5             8          8
5147     5             8          9
5148     5             8         10
5149     5             8         11
5150     5             8         12
5151     5             8         13
5152     5             8         14
5153     5             8         15
5154     5             8         16
5155     5             8         17
5156     5             8         18
5157     5             8         19
5158     5             8         20
5159     5             9          1
5160     5             9          2
5161     5             9          3
5162     5             9          4
5163     5             9          5
5164     5             9          6
5165     5             9          7
5166     5             9          8
5167     5             9          9
5168     5             9         10
5169     5             9         11
5170     5             9         12
5171     5             9         13
5172     5             9         14
5173     5             9         15
5174     5             9         16
5175     5             9         17
5176     5             9         18
5177     5             9         19
5178     5             9         20
5179     5             9         21
5180     5             9         22
5181     5             9         23
5182     5             9         24
5183     5             9         25
5184     5             9         26
5185     5             9         27
5186     5             9         28
5187     5             9         29
5188     5            10          1
5189     5            10          2
5190     5            10          3
5191     5            10          4
5192     5            10          5
5193     5            10          6
5194     5            10          7
5195     5            10          8
5196     5            10          9
5197     5            10         10
5198     5            10         11
5199     5            10         12
5200     5            10         13
5201     5            10         14
5202     5            10         15
5203     5            10         16
5204     5            10         17
5205     5            10         18
5206     5            10         19
5207     5            10         20
5208     5            10         21
5209     5            10         22
5210     5            11          1
5211     5            11          2
5212     5            11          3
5213     5            11          4
5214     5            11          5
5215     5            11          6
5216     5            11          7
5217     5            11          8
5218     5            11          9
5219     5            11         10
5220     5            11         11
5221     5            11         12
5222     5            11         13
5223     5            11         14
5224     5            11         15
5225     5            11         16
5226     5            11         17
5227     5            11         18
5228     5            11         19
5229     5            11         20
5230     5            11         21
5231     5            11         22
5232     5            11         23
5233     5            11         24
5234     5            11         25
5235     5            11         26
5236     5            11         27
5237     5            11         28
5238     5            11         29
5239     5            11         30
5240     5            11         31
5241     5            11         32
5242     5            12          1
5243     5            12          2
5244     5            12          3
5245     5            12          4
5246     5            12          5
5247     5            12          6
5248     5            12          7
5249     5            12          8
5250     5            12          9
5251     5            12         10
5252     5            12         11
5253     5            12         12
5254     5            12         13
5255     5            12         14
5256     5            12         15
5257     5            12         16
5258     5            12         17
5259     5            12         18
5260     5            12         19
5261     5            12         20
5262     5            12         21
5263     5            12         22
5264     5            12         23
5265     5            12         24
5266     5            12         25
5267     5            12         26
5268     5            12         27
5269     5            12         28
5270     5            12         29
5271     5            12         30
5272     5            12         31
5273     5            12         32
5274     5            13          1
5275     5            13          2
5276     5            13          3
5277     5            13          4
5278     5            13          5
5279     5            13          6
5280     5            13          7
5281     5            13          8
5282     5            13          9
5283     5            13         10
5284     5            13         11
5285     5            13         12
5286     5            13         13
5287     5            13         14
5288     5            13         15
5289     5            13         16
5290     5            13         17
5291     5            13         18
5292     5            14          1
5293     5            14          2
5294     5            14          3
5295     5            14          4
5296     5            14          5
5297     5            14          6
5298     5            14          7
5299     5            14          8
5300     5            14          9
5301     5            14         10
5302     5            14         11
5303     5            14         12
5304     5            14         13
5305     5            14         14
5306     5            14         15
5307     5            14         16
5308     5            14         17
5309     5            14         18
5310     5            14         19
5311     5            14         20
5312     5            14         21
5313     5            14         22
5314     5            14         23
5315     5            14         24
5316     5            14         25
5317     5            14         26
5318     5            14         27
5319     5            14         28
5320     5            14         29
5321     5            15          1
5322     5            15          2
5323     5            15          3
5324     5            15          4
5325     5            15          5
5326     5            15          6
5327     5            15          7
5328     5            15          8
5329     5            15          9
5330     5            15         10
5331     5            15         11
5332     5            15         12
5333     5            15         13
5334     5            15         14
5335     5            15         15
5336     5            15         16
5337     5            15         17
5338     5            15         18
5339     5            15         19
5340     5            15         20
5341     5            15         21
5342     5            15         22
5343     5            15         23
5344     5            16          1
5345     5            16          2
5346     5            16          3
5347     5            16          4
5348     5            16          5
5349     5            16          6
5350     5            16          7
5351     5            16          8
5352     5            16          9
5353     5            16         10
5354     5            16         11
5355     5            16         12
5356     5            16         13
5357     5            16         14
5358     5            16         15
5359     5            16         16
5360     5            16         17
5361     5            16         18
5362     5            16         19
5363     5            16         20
5364     5            16         21
5365     5            16         22
5366     5            17          1
5367     5            17          2
5368     5            17          3
5369     5            17          4
5370     5            17          5
5371     5            17          6
5372     5            17          7
5373     5            17          8
5374     5            17          9
5375     5            17         10
5376     5            17         11
5377     5            17         12
5378     5            17         13
5379     5            17         14
5380     5            17         15
5381     5            17         16
5382     5            17         17
5383     5            17         18
5384     5            17         19
5385     5            17         20
5386     5            18          1
5387     5            18          2
5388     5            18          3
5389     5            18          4
5390     5            18          5
5391     5            18          6
5392     5            18          7
5393     5            18          8
5394     5            18          9
5395     5            18         10
5396     5            18         11
5397     5            18         12
5398     5            18         13
5399     5            18         14
5400     5            18         15
5401     5            18         16
5402     5            18         17
5403     5            18         18
5404     5            18         19
5405     5            18         20
5406     5            18         21
5407     5            18         22
5408     5            19          1
5409     5            19          2
5410     5            19          3
5411     5            19          4
5412     5            19          5
5413     5            19          6
5414     5            19          7
5415     5            19          8
5416     5            19          9
5417     5            19         10
5418     5            19         11
5419     5            19         12
5420     5            19         13
5421     5            19         14
5422     5            19         15
5423     5            19         16
5424     5            19         17
5425     5            19         18
5426     5            19         19
5427     5            19         20
5428     5            19         21
5429     5            20          1
5430     5            20          2
5431     5            20          3
5432     5            20          4
5433     5            20          5
5434     5            20          6
5435     5            20          7
5436     5            20          8
5437     5            20          9
5438     5            20         10
5439     5            20         11
5440     5            20         12
5441     5            20         13
5442     5            20         14
5443     5            20         15
5444     5            20         16
5445     5            20         17
5446     5            20         18
5447     5            20         19
5448     5            20         20
5449     5            21          1
5450     5            21          2
5451     5            21          3
5452     5            21          4
5453     5            21          5
5454     5            21          6
5455     5            21          7
5456     5            21          8
5457     5            21          9
5458     5            21         10
5459     5            21         11
5460     5            21         12
5461     5            21         13
5462     5            21         14
5463     5            21         15
5464     5            21         16
5465     5            21         17
5466     5            21         18
5467     5            21         19
5468     5            21         20
5469     5            21         21
5470     5            21         22
5471     5            21         23
5472     5            22          1
5473     5            22          2
5474     5            22          3
5475     5            22          4
5476     5            22          5
5477     5            22          6
5478     5            22          7
5479     5            22          8
5480     5            22          9
5481     5            22         10
5482     5            22         11
5483     5            22         12
5484     5            22         13
5485     5            22         14
5486     5            22         15
5487     5            22         16
5488     5            22         17
5489     5            22         18
5490     5            22         19
5491     5            22         20
5492     5            22         21
5493     5            22         22
5494     5            22         23
5495     5            22         24
5496     5            22         25
5497     5            22         26
5498     5            22         27
5499     5            22         28
5500     5            22         29
5501     5            22         30
5502     5            23          1
5503     5            23          2
5504     5            23          3
5505     5            23          4
5506     5            23          5
5507     5            23          6
5508     5            23          7
5509     5            23          8
5510     5            23          9
5511     5            23         10
5512     5            23         11
5513     5            23         12
5514     5            23         13
5515     5            23         14
5516     5            23         15
5517     5            23         16
5518     5            23         17
5519     5            23         18
5520     5            23         19
5521     5            23         20
5522     5            23         21
5523     5            23         22
5524     5            23         23
5525     5            23         24
5526     5            23         25
5527     5            24          1
5528     5            24          2
5529     5            24          3
5530     5            24          4
5531     5            24          5
5532     5            24          6
5533     5            24          7
5534     5            24          8
5535     5            24          9
5536     5            24         10
5537     5            24         11
5538     5            24         12
5539     5            24         13
5540     5            24         14
5541     5            24         15
5542     5            24         16
5543     5            24         17
5544     5            24         18
5545     5            24         19
5546     5            24         20
5547     5            24         21
5548     5            24         22
5549     5            25          1
5550     5            25          2
5551     5            25          3
5552     5            25          4
5553     5            25          5
5554     5            25          6
5555     5            25          7
5556     5            25          8
5557     5            25          9
5558     5            25         10
5559     5            25         11
5560     5            25         12
5561     5            25         13
5562     5            25         14
5563     5            25         15
5564     5            25         16
5565     5            25         17
5566     5            25         18
5567     5            25         19
5568     5            26          1
5569     5            26          2
5570     5            26          3
5571     5            26          4
5572     5            26          5
5573     5            26          6
5574     5            26          7
5575     5            26          8
5576     5            26          9
5577     5            26         10
5578     5            26         11
5579     5            26         12
5580     5            26         13
5581     5            26         14
5582     5            26         15
5583     5            26         16
5584     5            26         17
5585     5            26         18
5586     5            26         19
5587     5            27          1
5588     5            27          2
5589     5            27          3
5590     5            27          4
5591     5            27          5
5592     5            27          6
5593     5            27          7
5594     5            27          8
5595     5            27          9
5596     5            27         10
5597     5            27         11
5598     5            27         12
5599     5            27         13
5600     5            27         14
5601     5            27         15
5602     5            27         16
5603     5            27         17
5604     5            27         18
5605     5            27         19
5606     5            27         20
5607     5            27         21
5608     5            27         22
5609     5            27         23
5610     5            27         24
5611     5            27         25
5612     5            27         26
5613     5            28          1
5614     5            28          2
5615     5            28          3
5616     5            28          4
5617     5            28          5
5618     5            28          6
5619     5            28          7
5620     5            28          8
5621     5            28          9
5622     5            28         10
5623     5            28         11
5624     5            28         12
5625     5            28         13
5626     5            28         14
5627     5            28         15
5628     5            28         16
5629     5            28         17
5630     5            28         18
5631     5            28         19
5632     5            28         20
5633     5            28         21
5634     5            28         22
5635     5            28         23
5636     5            28         24
5637     5            28         25
5638     5            28         26
5639     5            28         27
5640     5            28         28
5641     5            28         29
5642     5            28         30
5643     5            28         31
5644     5            28         32
5645     5            28         33
5646     5            28         34
5647     5            28         35
5648     5            28         36
5649     5            28         37
5650     5            28         38
5651     5            28         39
5652     5            28         40
5653     5            28         41
5654     5            28         42
5655     5            28         43
5656     5            28         44
5657     5            28         45
5658     5            28         46
5659     5            28         47
5660     5            28         48
5661     5            28         49
5662     5            28         50
5663     5            28         51
5664     5            28         52
5665     5            28         53
5666     5            28         54
5667     5            28         55
5668     5            28         56
5669     5            28         57
5670     5            28         58
5671     5            28         59
5672     5            28         60
5673     5            28         61
5674     5            28         62
5675     5            28         63
5676     5            28         64
5677     5            28         65
5678     5            28         66
5679     5            28         67
5680     5            28         68
5681     5            29          1
5682     5            29          2
5683     5            29          3
5684     5            29          4
5685     5            29          5
5686     5            29          6
5687     5            29          7
5688     5            29          8
5689     5            29          9
5690     5            29         10
5691     5            29         11
5692     5            29         12
5693     5            29         13
5694     5            29         14
5695     5            29         15
5696     5            29         16
5697     5            29         17
5698     5            29         18
5699     5            29         19
5700     5            29         20
5701     5            29         21
5702     5            29         22
5703     5            29         23
5704     5            29         24
5705     5            29         25
5706     5            29         26
5707     5            29         27
5708     5            29         28
5709     5            29         29
5710     5            30          1
5711     5            30          2
5712     5            30          3
5713     5            30          4
5714     5            30          5
5715     5            30          6
5716     5            30          7
5717     5            30          8
5718     5            30          9
5719     5            30         10
5720     5            30         11
5721     5            30         12
5722     5            30         13
5723     5            30         14
5724     5            30         15
5725     5            30         16
5726     5            30         17
5727     5            30         18
5728     5            30         19
5729     5            30         20
5730     5            31          1
5731     5            31          2
5732     5            31          3
5733     5            31          4
5734     5            31          5
5735     5            31          6
5736     5            31          7
5737     5            31          8
5738     5            31          9
5739     5            31         10
5740     5            31         11
5741     5            31         12
5742     5            31         13
5743     5            31         14
5744     5            31         15
5745     5            31         16
5746     5            31         17
5747     5            31         18
5748     5            31         19
5749     5            31         20
5750     5            31         21
5751     5            31         22
5752     5            31         23
5753     5            31         24
5754     5            31         25
5755     5            31         26
5756     5            31         27
5757     5            31         28
5758     5            31         29
5759     5            31         30
5760     5            32          1
5761     5            32          2
5762     5            32          3
5763     5            32          4
5764     5            32          5
5765     5            32          6
5766     5            32          7
5767     5            32          8
5768     5            32          9
5769     5            32         10
5770     5            32         11
5771     5            32         12
5772     5            32         13
5773     5            32         14
5774     5            32         15
5775     5            32         16
5776     5            32         17
5777     5            32         18
5778     5            32         19
5779     5            32         20
5780     5            32         21
5781     5            32         22
5782     5            32         23
5783     5            32         24
5784     5            32         25
5785     5            32         26
5786     5            32         27
5787     5            32         28
5788     5            32         29
5789     5            32         30
5790     5            32         31
5791     5            32         32
5792     5            32         33
5793     5            32         34
5794     5            32         35
5795     5            32         36
5796     5            32         37
5797     5            32         38
5798     5            32         39
5799     5            32         40
5800     5            32         41
5801     5            32         42
5802     5            32         43
5803     5            32         44
5804     5            32         45
5805     5            32         46
5806     5            32         47
5807     5            32         48
5808     5            32         49
5809     5            32         50
5810     5            32         51
5811     5            32         52
5812     5            33          1
5813     5            33          2
5814     5            33          3
5815     5            33          4
5816     5            33          5
5817     5            33          6
5818     5            33          7
5819     5            33          8
5820     5            33          9
5821     5            33         10
5822     5            33         11
5823     5            33         12
5824     5            33         13
5825     5            33         14
5826     5            33         15
5827     5            33         16
5828     5            33         17
5829     5            33         18
5830     5            33         19
5831     5            33         20
5832     5            33         21
5833     5            33         22
5834     5            33         23
5835     5            33         24
5836     5            33         25
5837     5            33         26
5838     5            33         27
5839     5            33         28
5840     5            33         29
5841     5            34          1
5842     5            34          2
5843     5            34          3
5844     5            34          4
5845     5            34          5
5846     5            34          6
5847     5            34          7
5848     5            34          8
5849     5            34          9
5850     5            34         10
5851     5            34         11
5852     5            34         12
5853     6             1          1
5854     6             1          2
5855     6             1          3
5856     6             1          4
5857     6             1          5
5858     6             1          6
5859     6             1          7
5860     6             1          8
5861     6             1          9
5862     6             1         10
5863     6             1         11
5864     6             1         12
5865     6             1         13
5866     6             1         14
5867     6             1         15
5868     6             1         16
5869     6             1         17
5870     6             1         18
5871     6             2          1
5872     6             2          2
5873     6             2          3
5874     6             2          4
5875     6             2          5
5876     6             2          6
5877     6             2          7
5878     6             2          8
5879     6             2          9
5880     6             2         10
5881     6             2         11
5882     6             2         12
5883     6             2         13
5884     6             2         14
5885     6             2         15
5886     6             2         16
5887     6             2         17
5888     6             2         18
5889     6             2         19
5890     6             2         20
5891     6             2         21
5892     6             2         22
5893     6             2         23
5894     6             2         24
5895     6             3          1
5896     6             3          2
5897     6             3          3
5898     6             3          4
5899     6             3          5
5900     6             3          6
5901     6             3          7
5902     6             3          8
5903     6             3          9
5904     6             3         10
5905     6             3         11
5906     6             3         12
5907     6             3         13
5908     6             3         14
5909     6             3         15
5910     6             3         16
5911     6             3         17
5912     6             4          1
5913     6             4          2
5914     6             4          3
5915     6             4          4
5916     6             4          5
5917     6             4          6
5918     6             4          7
5919     6             4          8
5920     6             4          9
5921     6             4         10
5922     6             4         11
5923     6             4         12
5924     6             4         13
5925     6             4         14
5926     6             4         15
5927     6             4         16
5928     6             4         17
5929     6             4         18
5930     6             4         19
5931     6             4         20
5932     6             4         21
5933     6             4         22
5934     6             4         23
5935     6             4         24
5936     6             5          1
5937     6             5          2
5938     6             5          3
5939     6             5          4
5940     6             5          5
5941     6             5          6
5942     6             5          7
5943     6             5          8
5944     6             5          9
5945     6             5         10
5946     6             5         11
5947     6             5         12
5948     6             5         13
5949     6             5         14
5950     6             5         15
5951     6             6          1
5952     6             6          2
5953     6             6          3
5954     6             6          4
5955     6             6          5
5956     6             6          6
5957     6             6          7
5958     6             6          8
5959     6             6          9
5960     6             6         10
5961     6             6         11
5962     6             6         12
5963     6             6         13
5964     6             6         14
5965     6             6         15
5966     6             6         16
5967     6             6         17
5968     6             6         18
5969     6             6         19
5970     6             6         20
5971     6             6         21
5972     6             6         22
5973     6             6         23
5974     6             6         24
5975     6             6         25
5976     6             6         26
5977     6             6         27
5978     6             7          1
5979     6             7          2
5980     6             7          3
5981     6             7          4
5982     6             7          5
5983     6             7          6
5984     6             7          7
5985     6             7          8
5986     6             7          9
5987     6             7         10
5988     6             7         11
5989     6             7         12
5990     6             7         13
5991     6             7         14
5992     6             7         15
5993     6             7         16
5994     6             7         17
5995     6             7         18
5996     6             7         19
5997     6             7         20
5998     6             7         21
5999     6             7         22
6000     6             7         23
6001     6             7         24
6002     6             7         25
6003     6             7         26
6004     6             8          1
6005     6             8          2
6006     6             8          3
6007     6             8          4
6008     6             8          5
6009     6             8          6
6010     6             8          7
6011     6             8          8
6012     6             8          9
6013     6             8         10
6014     6             8         11
6015     6             8         12
6016     6             8         13
6017     6             8         14
6018     6             8         15
6019     6             8         16
6020     6             8         17
6021     6             8         18
6022     6             8         19
6023     6             8         20
6024     6             8         21
6025     6             8         22
6026     6             8         23
6027     6             8         24
6028     6             8         25
6029     6             8         26
6030     6             8         27
6031     6             8         28
6032     6             8         29
6033     6             8         30
6034     6             8         31
6035     6             8         32
6036     6             8         33
6037     6             8         34
6038     6             8         35
6039     6             9          1
6040     6             9          2
6041     6             9          3
6042     6             9          4
6043     6             9          5
6044     6             9          6
6045     6             9          7
6046     6             9          8
6047     6             9          9
6048     6             9         10
6049     6             9         11
6050     6             9         12
6051     6             9         13
6052     6             9         14
6053     6             9         15
6054     6             9         16
6055     6             9         17
6056     6             9         18
6057     6             9         19
6058     6             9         20
6059     6             9         21
6060     6             9         22
6061     6             9         23
6062     6             9         24
6063     6             9         25
6064     6             9         26
6065     6             9         27
6066     6            10          1
6067     6            10          2
6068     6            10          3
6069     6            10          4
6070     6            10          5
6071     6            10          6
6072     6            10          7
6073     6            10          8
6074     6            10          9
6075     6            10         10
6076     6            10         11
6077     6            10         12
6078     6            10         13
6079     6            10         14
6080     6            10         15
6081     6            10         16
6082     6            10         17
6083     6            10         18
6084     6            10         19
6085     6            10         20
6086     6            10         21
6087     6            10         22
6088     6            10         23
6089     6            10         24
6090     6            10         25
6091     6            10         26
6092     6            10         27
6093     6            10         28
6094     6            10         29
6095     6            10         30
6096     6            10         31
6097     6            10         32
6098     6            10         33
6099     6            10         34
6100     6            10         35
6101     6            10         36
6102     6            10         37
6103     6            10         38
6104     6            10         39
6105     6            10         40
6106     6            10         41
6107     6            10         42
6108     6            10         43
6109     6            11          1
6110     6            11          2
6111     6            11          3
6112     6            11          4
6113     6            11          5
6114     6            11          6
6115     6            11          7
6116     6            11          8
6117     6            11          9
6118     6            11         10
6119     6            11         11
6120     6            11         12
6121     6            11         13
6122     6            11         14
6123     6            11         15
6124     6            11         16
6125     6            11         17
6126     6            11         18
6127     6            11         19
6128     6            11         20
6129     6            11         21
6130     6            11         22
6131     6            11         23
6132     6            12          1
6133     6            12          2
6134     6            12          3
6135     6            12          4
6136     6            12          5
6137     6            12          6
6138     6            12          7
6139     6            12          8
6140     6            12          9
6141     6            12         10
6142     6            12         11
6143     6            12         12
6144     6            12         13
6145     6            12         14
6146     6            12         15
6147     6            12         16
6148     6            12         17
6149     6            12         18
6150     6            12         19
6151     6            12         20
6152     6            12         21
6153     6            12         22
6154     6            12         23
6155     6            12         24
6156     6            13          1
6157     6            13          2
6158     6            13          3
6159     6            13          4
6160     6            13          5
6161     6            13          6
6162     6            13          7
6163     6            13          8
6164     6            13          9
6165     6            13         10
6166     6            13         11
6167     6            13         12
6168     6            13         13
6169     6            13         14
6170     6            13         15
6171     6            13         16
6172     6            13         17
6173     6            13         18
6174     6            13         19
6175     6            13         20
6176     6            13         21
6177     6            13         22
6178     6            13         23
6179     6            13         24
6180     6            13         25
6181     6            13         26
6182     6            13         27
6183     6            13         28
6184     6            13         29
6185     6            13         30
6186     6            13         31
6187     6            13         32
6188     6            13         33
6189     6            14          1
6190     6            14          2
6191     6            14          3
6192     6            14          4
6193     6            14          5
6194     6            14          6
6195     6            14          7
6196     6            14          8
6197     6            14          9
6198     6            14         10
6199     6            14         11
6200     6            14         12
6201     6            14         13
6202     6            14         14
6203     6            14         15
6204     6            15          1
6205     6            15          2
6206     6            15          3
6207     6            15          4
6208     6            15          5
6209     6            15          6
6210     6            15          7
6211     6            15          8
6212     6            15          9
6213     6            15         10
6214     6            15         11
6215     6            15         12
6216     6            15         13
6217     6            15         14
6218     6            15         15
6219     6            15         16
6220     6            15         17
6221     6            15         18
6222     6            15         19
6223     6            15         20
6224     6            15         21
6225     6            15         22
6226     6            15         23
6227     6            15         24
6228     6            15         25
6229     6            15         26
6230     6            15         27
6231     6            15         28
6232     6            15         29
6233     6            15         30
6234     6            15         31
6235     6            15         32
6236     6            15         33
6237     6            15         34
6238     6            15         35
6239     6            15         36
6240     6            15         37
6241     6            15         38
6242     6            15         39
6243     6            15         40
6244     6            15         41
6245     6            15         42
6246     6            15         43
6247     6            15         44
6248     6            15         45
6249     6            15         46
6250     6            15         47
6251     6            15         48
6252     6            15         49
6253     6            15         50
6254     6            15         51
6255     6            15         52
6256     6            15         53
6257     6            15         54
6258     6            15         55
6259     6            15         56
6260     6            15         57
6261     6            15         58
6262     6            15         59
6263     6            15         60
6264     6            15         61
6265     6            15         62
6266     6            15         63
6267     6            16          1
6268     6            16          2
6269     6            16          3
6270     6            16          4
6271     6            16          5
6272     6            16          6
6273     6            16          7
6274     6            16          8
6275     6            16          9
6276     6            16         10
6277     6            17          1
6278     6            17          2
6279     6            17          3
6280     6            17          4
6281     6            17          5
6282     6            17          6
6283     6            17          7
6284     6            17          8
6285     6            17          9
6286     6            17         10
6287     6            17         11
6288     6            17         12
6289     6            17         13
6290     6            17         14
6291     6            17         15
6292     6            17         16
6293     6            17         17
6294     6            17         18
6295     6            18          1
6296     6            18          2
6297     6            18          3
6298     6            18          4
6299     6            18          5
6300     6            18          6
6301     6            18          7
6302     6            18          8
6303     6            18          9
6304     6            18         10
6305     6            18         11
6306     6            18         12
6307     6            18         13
6308     6            18         14
6309     6            18         15
6310     6            18         16
6311     6            18         17
6312     6            18         18
6313     6            18         19
6314     6            18         20
6315     6            18         21
6316     6            18         22
6317     6            18         23
6318     6            18         24
6319     6            18         25
6320     6            18         26
6321     6            18         27
6322     6            18         28
6323     6            19          1
6324     6            19          2
6325     6            19          3
6326     6            19          4
6327     6            19          5
6328     6            19          6
6329     6            19          7
6330     6            19          8
6331     6            19          9
6332     6            19         10
6333     6            19         11
6334     6            19         12
6335     6            19         13
6336     6            19         14
6337     6            19         15
6338     6            19         16
6339     6            19         17
6340     6            19         18
6341     6            19         19
6342     6            19         20
6343     6            19         21
6344     6            19         22
6345     6            19         23
6346     6            19         24
6347     6            19         25
6348     6            19         26
6349     6            19         27
6350     6            19         28
6351     6            19         29
6352     6            19         30
6353     6            19         31
6354     6            19         32
6355     6            19         33
6356     6            19         34
6357     6            19         35
6358     6            19         36
6359     6            19         37
6360     6            19         38
6361     6            19         39
6362     6            19         40
6363     6            19         41
6364     6            19         42
6365     6            19         43
6366     6            19         44
6367     6            19         45
6368     6            19         46
6369     6            19         47
6370     6            19         48
6371     6            19         49
6372     6            19         50
6373     6            19         51
6374     6            20          1
6375     6            20          2
6376     6            20          3
6377     6            20          4
6378     6            20          5
6379     6            20          6
6380     6            20          7
6381     6            20          8
6382     6            20          9
6383     6            21          1
6384     6            21          2
6385     6            21          3
6386     6            21          4
6387     6            21          5
6388     6            21          6
6389     6            21          7
6390     6            21          8
6391     6            21          9
6392     6            21         10
6393     6            21         11
6394     6            21         12
6395     6            21         13
6396     6            21         14
6397     6            21         15
6398     6            21         16
6399     6            21         17
6400     6            21         18
6401     6            21         19
6402     6            21         20
6403     6            21         21
6404     6            21         22
6405     6            21         23
6406     6            21         24
6407     6            21         25
6408     6            21         26
6409     6            21         27
6410     6            21         28
6411     6            21         29
6412     6            21         30
6413     6            21         31
6414     6            21         32
6415     6            21         33
6416     6            21         34
6417     6            21         35
6418     6            21         36
6419     6            21         37
6420     6            21         38
6421     6            21         39
6422     6            21         40
6423     6            21         41
6424     6            21         42
6425     6            21         43
6426     6            21         44
6427     6            21         45
6428     6            22          1
6429     6            22          2
6430     6            22          3
6431     6            22          4
6432     6            22          5
6433     6            22          6
6434     6            22          7
6435     6            22          8
6436     6            22          9
6437     6            22         10
6438     6            22         11
6439     6            22         12
6440     6            22         13
6441     6            22         14
6442     6            22         15
6443     6            22         16
6444     6            22         17
6445     6            22         18
6446     6            22         19
6447     6            22         20
6448     6            22         21
6449     6            22         22
6450     6            22         23
6451     6            22         24
6452     6            22         25
6453     6            22         26
6454     6            22         27
6455     6            22         28
6456     6            22         29
6457     6            22         30
6458     6            22         31
6459     6            22         32
6460     6            22         33
6461     6            22         34
6462     6            23          1
6463     6            23          2
6464     6            23          3
6465     6            23          4
6466     6            23          5
6467     6            23          6
6468     6            23          7
6469     6            23          8
6470     6            23          9
6471     6            23         10
6472     6            23         11
6473     6            23         12
6474     6            23         13
6475     6            23         14
6476     6            23         15
6477     6            23         16
6478     6            24          1
6479     6            24          2
6480     6            24          3
6481     6            24          4
6482     6            24          5
6483     6            24          6
6484     6            24          7
6485     6            24          8
6486     6            24          9
6487     6            24         10
6488     6            24         11
6489     6            24         12
6490     6            24         13
6491     6            24         14
6492     6            24         15
6493     6            24         16
6494     6            24         17
6495     6            24         18
6496     6            24         19
6497     6            24         20
6498     6            24         21
6499     6            24         22
6500     6            24         23
6501     6            24         24
6502     6            24         25
6503     6            24         26
6504     6            24         27
6505     6            24         28
6506     6            24         29
6507     6            24         30
6508     6            24         31
6509     6            24         32
6510     6            24         33
6511     7             1          1
6512     7             1          2
6513     7             1          3
6514     7             1          4
6515     7             1          5
6516     7             1          6
6517     7             1          7
6518     7             1          8
6519     7             1          9
6520     7             1         10
6521     7             1         11
6522     7             1         12
6523     7             1         13
6524     7             1         14
6525     7             1         15
6526     7             1         16
6527     7             1         17
6528     7             1         18
6529     7             1         19
6530     7             1         20
6531     7             1         21
6532     7             1         22
6533     7             1         23
6534     7             1         24
6535     7             1         25
6536     7             1         26
6537     7             1         27
6538     7             1         28
6539     7             1         29
6540     7             1         30
6541     7             1         31
6542     7             1         32
6543     7             1         33
6544     7             1         34
6545     7             1         35
6546     7             1         36
6547     7             2          1
6548     7             2          2
6549     7             2          3
6550     7             2          4
6551     7             2          5
6552     7             2          6
6553     7             2          7
6554     7             2          8
6555     7             2          9
6556     7             2         10
6557     7             2         11
6558     7             2         12
6559     7             2         13
6560     7             2         14
6561     7             2         15
6562     7             2         16
6563     7             2         17
6564     7             2         18
6565     7             2         19
6566     7             2         20
6567     7             2         21
6568     7             2         22
6569     7             2         23
6570     7             3          1
6571     7             3          2
6572     7             3          3
6573     7             3          4
6574     7             3          5
6575     7             3          6
6576     7             3          7
6577     7             3          8
6578     7             3          9
6579     7             3         10
6580     7             3         11
6581     7             3         12
6582     7             3         13
6583     7             3         14
6584     7             3         15
6585     7             3         16
6586     7             3         17
6587     7             3         18
6588     7             3         19
6589     7             3         20
6590     7             3         21
6591     7             3         22
6592     7             3         23
6593     7             3         24
6594     7             3         25
6595     7             3         26
6596     7             3         27
6597     7             3         28
6598     7             3         29
6599     7             3         30
6600     7             3         31
6601     7             4          1
6602     7             4          2
6603     7             4          3
6604     7             4          4
6605     7             4          5
6606     7             4          6
6607     7             4          7
6608     7             4          8
6609     7             4          9
6610     7             4         10
6611     7             4         11
6612     7             4         12
6613     7             4         13
6614     7             4         14
6615     7             4         15
6616     7             4         16
6617     7             4         17
6618     7             4         18
6619     7             4         19
6620     7             4         20
6621     7             4         21
6622     7             4         22
6623     7             4         23
6624     7             4         24
6625     7             5          1
6626     7             5          2
6627     7             5          3
6628     7             5          4
6629     7             5          5
6630     7             5          6
6631     7             5          7
6632     7             5          8
6633     7             5          9
6634     7             5         10
6635     7             5         11
6636     7             5         12
6637     7             5         13
6638     7             5         14
6639     7             5         15
6640     7             5         16
6641     7             5         17
6642     7             5         18
6643     7             5         19
6644     7             5         20
6645     7             5         21
6646     7             5         22
6647     7             5         23
6648     7             5         24
6649     7             5         25
6650     7             5         26
6651     7             5         27
6652     7             5         28
6653     7             5         29
6654     7             5         30
6655     7             5         31
6656     7             6          1
6657     7             6          2
6658     7             6          3
6659     7             6          4
6660     7             6          5
6661     7             6          6
6662     7             6          7
6663     7             6          8
6664     7             6          9
6665     7             6         10
6666     7             6         11
6667     7             6         12
6668     7             6         13
6669     7             6         14
6670     7             6         15
6671     7             6         16
6672     7             6         17
6673     7             6         18
6674     7             6         19
6675     7             6         20
6676     7             6         21
6677     7             6         22
6678     7             6         23
6679     7             6         24
6680     7             6         25
6681     7             6         26
6682     7             6         27
6683     7             6         28
6684     7             6         29
6685     7             6         30
6686     7             6         31
6687     7             6         32
6688     7             6         33
6689     7             6         34
6690     7             6         35
6691     7             6         36
6692     7             6         37
6693     7             6         38
6694     7             6         39
6695     7             6         40
6696     7             7          1
6697     7             7          2
6698     7             7          3
6699     7             7          4
6700     7             7          5
6701     7             7          6
6702     7             7          7
6703     7             7          8
6704     7             7          9
6705     7             7         10
6706     7             7         11
6707     7             7         12
6708     7             7         13
6709     7             7         14
6710     7             7         15
6711     7             7         16
6712     7             7         17
6713     7             7         18
6714     7             7         19
6715     7             7         20
6716     7             7         21
6717     7             7         22
6718     7             7         23
6719     7             7         24
6720     7             7         25
6721     7             8          1
6722     7             8          2
6723     7             8          3
6724     7             8          4
6725     7             8          5
6726     7             8          6
6727     7             8          7
6728     7             8          8
6729     7             8          9
6730     7             8         10
6731     7             8         11
6732     7             8         12
6733     7             8         13
6734     7             8         14
6735     7             8         15
6736     7             8         16
6737     7             8         17
6738     7             8         18
6739     7             8         19
6740     7             8         20
6741     7             8         21
6742     7             8         22
6743     7             8         23
6744     7             8         24
6745     7             8         25
6746     7             8         26
6747     7             8         27
6748     7             8         28
6749     7             8         29
6750     7             8         30
6751     7             8         31
6752     7             8         32
6753     7             8         33
6754     7             8         34
6755     7             8         35
6756     7             9          1
6757     7             9          2
6758     7             9          3
6759     7             9          4
6760     7             9          5
6761     7             9          6
6762     7             9          7
6763     7             9          8
6764     7             9          9
6765     7             9         10
6766     7             9         11
6767     7             9         12
6768     7             9         13
6769     7             9         14
6770     7             9         15
6771     7             9         16
6772     7             9         17
6773     7             9         18
6774     7             9         19
6775     7             9         20
6776     7             9         21
6777     7             9         22
6778     7             9         23
6779     7             9         24
6780     7             9         25
6781     7             9         26
6782     7             9         27
6783     7             9         28
6784     7             9         29
6785     7             9         30
6786     7             9         31
6787     7             9         32
6788     7             9         33
6789     7             9         34
6790     7             9         35
6791     7             9         36
6792     7             9         37
6793     7             9         38
6794     7             9         39
6795     7             9         40
6796     7             9         41
6797     7             9         42
6798     7             9         43
6799     7             9         44
6800     7             9         45
6801     7             9         46
6802     7             9         47
6803     7             9         48
6804     7             9         49
6805     7             9         50
6806     7             9         51
6807     7             9         52
6808     7             9         53
6809     7             9         54
6810     7             9         55
6811     7             9         56
6812     7             9         57
6813     7            10          1
6814     7            10          2
6815     7            10          3
6816     7            10          4
6817     7            10          5
6818     7            10          6
6819     7            10          7
6820     7            10          8
6821     7            10          9
6822     7            10         10
6823     7            10         11
6824     7            10         12
6825     7            10         13
6826     7            10         14
6827     7            10         15
6828     7            10         16
6829     7            10         17
6830     7            10         18
6831     7            11          1
6832     7            11          2
6833     7            11          3
6834     7            11          4
6835     7            11          5
6836     7            11          6
6837     7            11          7
6838     7            11          8
6839     7            11          9
6840     7            11         10
6841     7            11         11
6842     7            11         12
6843     7            11         13
6844     7            11         14
6845     7            11         15
6846     7            11         16
6847     7            11         17
6848     7            11         18
6849     7            11         19
6850     7            11         20
6851     7            11         21
6852     7            11         22
6853     7            11         23
6854     7            11         24
6855     7            11         25
6856     7            11         26
6857     7            11         27
6858     7            11         28
6859     7            11         29
6860     7            11         30
6861     7            11         31
6862     7            11         32
6863     7            11         33
6864     7            11         34
6865     7            11         35
6866     7            11         36
6867     7            11         37
6868     7            11         38
6869     7            11         39
6870     7            11         40
6871     7            12          1
6872     7            12          2
6873     7            12          3
6874     7            12          4
6875     7            12          5
6876     7            12          6
6877     7            12          7
6878     7            12          8
6879     7            12          9
6880     7            12         10
6881     7            12         11
6882     7            12         12
6883     7            12         13
6884     7            12         14
6885     7            12         15
6886     7            13          1
6887     7            13          2
6888     7            13          3
6889     7            13          4
6890     7            13          5
6891     7            13          6
6892     7            13          7
6893     7            13          8
6894     7            13          9
6895     7            13         10
6896     7            13         11
6897     7            13         12
6898     7            13         13
6899     7            13         14
6900     7            13         15
6901     7            13         16
6902     7            13         17
6903     7            13         18
6904     7            13         19
6905     7            13         20
6906     7            13         21
6907     7            13         22
6908     7            13         23
6909     7            13         24
6910     7            13         25
6911     7            14          1
6912     7            14          2
6913     7            14          3
6914     7            14          4
6915     7            14          5
6916     7            14          6
6917     7            14          7
6918     7            14          8
6919     7            14          9
6920     7            14         10
6921     7            14         11
6922     7            14         12
6923     7            14         13
6924     7            14         14
6925     7            14         15
6926     7            14         16
6927     7            14         17
6928     7            14         18
6929     7            14         19
6930     7            14         20
6931     7            15          1
6932     7            15          2
6933     7            15          3
6934     7            15          4
6935     7            15          5
6936     7            15          6
6937     7            15          7
6938     7            15          8
6939     7            15          9
6940     7            15         10
6941     7            15         11
6942     7            15         12
6943     7            15         13
6944     7            15         14
6945     7            15         15
6946     7            15         16
6947     7            15         17
6948     7            15         18
6949     7            15         19
6950     7            15         20
6951     7            16          1
6952     7            16          2
6953     7            16          3
6954     7            16          4
6955     7            16          5
6956     7            16          6
6957     7            16          7
6958     7            16          8
6959     7            16          9
6960     7            16         10
6961     7            16         11
6962     7            16         12
6963     7            16         13
6964     7            16         14
6965     7            16         15
6966     7            16         16
6967     7            16         17
6968     7            16         18
6969     7            16         19
6970     7            16         20
6971     7            16         21
6972     7            16         22
6973     7            16         23
6974     7            16         24
6975     7            16         25
6976     7            16         26
6977     7            16         27
6978     7            16         28
6979     7            16         29
6980     7            16         30
6981     7            16         31
6982     7            17          1
6983     7            17          2
6984     7            17          3
6985     7            17          4
6986     7            17          5
6987     7            17          6
6988     7            17          7
6989     7            17          8
6990     7            17          9
6991     7            17         10
6992     7            17         11
6993     7            17         12
6994     7            17         13
6995     7            18          1
6996     7            18          2
6997     7            18          3
6998     7            18          4
6999     7            18          5
7000     7            18          6
7001     7            18          7
7002     7            18          8
7003     7            18          9
7004     7            18         10
7005     7            18         11
7006     7            18         12
7007     7            18         13
7008     7            18         14
7009     7            18         15
7010     7            18         16
7011     7            18         17
7012     7            18         18
7013     7            18         19
7014     7            18         20
7015     7            18         21
7016     7            18         22
7017     7            18         23
7018     7            18         24
7019     7            18         25
7020     7            18         26
7021     7            18         27
7022     7            18         28
7023     7            18         29
7024     7            18         30
7025     7            18         31
7026     7            19          1
7027     7            19          2
7028     7            19          3
7029     7            19          4
7030     7            19          5
7031     7            19          6
7032     7            19          7
7033     7            19          8
7034     7            19          9
7035     7            19         10
7036     7            19         11
7037     7            19         12
7038     7            19         13
7039     7            19         14
7040     7            19         15
7041     7            19         16
7042     7            19         17
7043     7            19         18
7044     7            19         19
7045     7            19         20
7046     7            19         21
7047     7            19         22
7048     7            19         23
7049     7            19         24
7050     7            19         25
7051     7            19         26
7052     7            19         27
7053     7            19         28
7054     7            19         29
7055     7            19         30
7056     7            20          1
7057     7            20          2
7058     7            20          3
7059     7            20          4
7060     7            20          5
7061     7            20          6
7062     7            20          7
7063     7            20          8
7064     7            20          9
7065     7            20         10
7066     7            20         11
7067     7            20         12
7068     7            20         13
7069     7            20         14
7070     7            20         15
7071     7            20         16
7072     7            20         17
7073     7            20         18
7074     7            20         19
7075     7            20         20
7076     7            20         21
7077     7            20         22
7078     7            20         23
7079     7            20         24
7080     7            20         25
7081     7            20         26
7082     7            20         27
7083     7            20         28
7084     7            20         29
7085     7            20         30
7086     7            20         31
7087     7            20         32
7088     7            20         33
7089     7            20         34
7090     7            20         35
7091     7            20         36
7092     7            20         37
7093     7            20         38
7094     7            20         39
7095     7            20         40
7096     7            20         41
7097     7            20         42
7098     7            20         43
7099     7            20         44
7100     7            20         45
7101     7            20         46
7102     7            20         47
7103     7            20         48
7104     7            21          1
7105     7            21          2
7106     7            21          3
7107     7            21          4
7108     7            21          5
7109     7            21          6
7110     7            21          7
7111     7            21          8
7112     7            21          9
7113     7            21         10
7114     7            21         11
7115     7            21         12
7116     7            21         13
7117     7            21         14
7118     7            21         15
7119     7            21         16
7120     7            21         17
7121     7            21         18
7122     7            21         19
7123     7            21         20
7124     7            21         21
7125     7            21         22
7126     7            21         23
7127     7            21         24
7128     7            21         25
7129     8             1          1
7130     8             1          2
7131     8             1          3
7132     8             1          4
7133     8             1          5
7134     8             1          6
7135     8             1          7
7136     8             1          8
7137     8             1          9
7138     8             1         10
7139     8             1         11
7140     8             1         12
7141     8             1         13
7142     8             1         14
7143     8             1         15
7144     8             1         16
7145     8             1         17
7146     8             1         18
7147     8             1         19
7148     8             1         20
7149     8             1         21
7150     8             1         22
7151     8             2          1
7152     8             2          2
7153     8             2          3
7154     8             2          4
7155     8             2          5
7156     8             2          6
7157     8             2          7
7158     8             2          8
7159     8             2          9
7160     8             2         10
7161     8             2         11
7162     8             2         12
7163     8             2         13
7164     8             2         14
7165     8             2         15
7166     8             2         16
7167     8             2         17
7168     8             2         18
7169     8             2         19
7170     8             2         20
7171     8             2         21
7172     8             2         22
7173     8             2         23
7174     8             3          1
7175     8             3          2
7176     8             3          3
7177     8             3          4
7178     8             3          5
7179     8             3          6
7180     8             3          7
7181     8             3          8
7182     8             3          9
7183     8             3         10
7184     8             3         11
7185     8             3         12
7186     8             3         13
7187     8             3         14
7188     8             3         15
7189     8             3         16
7190     8             3         17
7191     8             3         18
7192     8             4          1
7193     8             4          2
7194     8             4          3
7195     8             4          4
7196     8             4          5
7197     8             4          6
7198     8             4          7
7199     8             4          8
7200     8             4          9
7201     8             4         10
7202     8             4         11
7203     8             4         12
7204     8             4         13
7205     8             4         14
7206     8             4         15
7207     8             4         16
7208     8             4         17
7209     8             4         18
7210     8             4         19
7211     8             4         20
7212     8             4         21
7213     8             4         22
7214     9             1          1
7215     9             1          2
7216     9             1          3
7217     9             1          4
7218     9             1          5
7219     9             1          6
7220     9             1          7
7221     9             1          8
7222     9             1          9
7223     9             1         10
7224     9             1         11
7225     9             1         12
7226     9             1         13
7227     9             1         14
7228     9             1         15
7229     9             1         16
7230     9             1         17
7231     9             1         18
7232     9             1         19
7233     9             1         20
7234     9             1         21
7235     9             1         22
7236     9             1         23
7237     9             1         24
7238     9             1         25
7239     9             1         26
7240     9             1         27
7241     9             1         28
7242     9             2          1
7243     9             2          2
7244     9             2          3
7245     9             2          4
7246     9             2          5
7247     9             2          6
7248     9             2          7
7249     9             2          8
7250     9             2          9
7251     9             2         10
7252     9             2         11
7253     9             2         12
7254     9             2         13
7255     9             2         14
7256     9             2         15
7257     9             2         16
7258     9             2         17
7259     9             2         18
7260     9             2         19
7261     9             2         20
7262     9             2         21
7263     9             2         22
7264     9             2         23
7265     9             2         24
7266     9             2         25
7267     9             2         26
7268     9             2         27
7269     9             2         28
7270     9             2         29
7271     9             2         30
7272     9             2         31
7273     9             2         32
7274     9             2         33
7275     9             2         34
7276     9             2         35
7277     9             2         36
7278     9             3          1
7279     9             3          2
7280     9             3          3
7281     9             3          4
7282     9             3          5
7283     9             3          6
7284     9             3          7
7285     9             3          8
7286     9             3          9
7287     9             3         10
7288     9             3         11
7289     9             3         12
7290     9             3         13
7291     9             3         14
7292     9             3         15
7293     9             3         16
7294     9             3         17
7295     9             3         18
7296     9             3         19
7297     9             3         20
7298     9             3         21
7299     9             4          1
7300     9             4          2
7301     9             4          3
7302     9             4          4
7303     9             4          5
7304     9             4          6
7305     9             4          7
7306     9             4          8
7307     9             4          9
7308     9             4         10
7309     9             4         11
7310     9             4         12
7311     9             4         13
7312     9             4         14
7313     9             4         15
7314     9             4         16
7315     9             4         17
7316     9             4         18
7317     9             4         19
7318     9             4         20
7319     9             4         21
7320     9             4         22
7321     9             5          1
7322     9             5          2
7323     9             5          3
7324     9             5          4
7325     9             5          5
7326     9             5          6
7327     9             5          7
7328     9             5          8
7329     9             5          9
7330     9             5         10
7331     9             5         11
7332     9             5         12
7333     9             6          1
7334     9             6          2
7335     9             6          3
7336     9             6          4
7337     9             6          5
7338     9             6          6
7339     9             6          7
7340     9             6          8
7341     9             6          9
7342     9             6         10
7343     9             6         11
7344     9             6         12
7345     9             6         13
7346     9             6         14
7347     9             6         15
7348     9             6         16
7349     9             6         17
7350     9             6         18
7351     9             6         19
7352     9             6         20
7353     9             6         21
7354     9             7          1
7355     9             7          2
7356     9             7          3
7357     9             7          4
7358     9             7          5
7359     9             7          6
7360     9             7          7
7361     9             7          8
7362     9             7          9
7363     9             7         10
7364     9             7         11
7365     9             7         12
7366     9             7         13
7367     9             7         14
7368     9             7         15
7369     9             7         16
7370     9             7         17
7371     9             8          1
7372     9             8          2
7373     9             8          3
7374     9             8          4
7375     9             8          5
7376     9             8          6
7377     9             8          7
7378     9             8          8
7379     9             8          9
7380     9             8         10
7381     9             8         11
7382     9             8         12
7383     9             8         13
7384     9             8         14
7385     9             8         15
7386     9             8         16
7387     9             8         17
7388     9             8         18
7389     9             8         19
7390     9             8         20
7391     9             8         21
7392     9             8         22
7393     9             9          1
7394     9             9          2
7395     9             9          3
7396     9             9          4
7397     9             9          5
7398     9             9          6
7399     9             9          7
7400     9             9          8
7401     9             9          9
7402     9             9         10
7403     9             9         11
7404     9             9         12
7405     9             9         13
7406     9             9         14
7407     9             9         15
7408     9             9         16
7409     9             9         17
7410     9             9         18
7411     9             9         19
7412     9             9         20
7413     9             9         21
7414     9             9         22
7415     9             9         23
7416     9             9         24
7417     9             9         25
7418     9             9         26
7419     9             9         27
7420     9            10          1
7421     9            10          2
7422     9            10          3
7423     9            10          4
7424     9            10          5
7425     9            10          6
7426     9            10          7
7427     9            10          8
7428     9            10          9
7429     9            10         10
7430     9            10         11
7431     9            10         12
7432     9            10         13
7433     9            10         14
7434     9            10         15
7435     9            10         16
7436     9            10         17
7437     9            10         18
7438     9            10         19
7439     9            10         20
7440     9            10         21
7441     9            10         22
7442     9            10         23
7443     9            10         24
7444     9            10         25
7445     9            10         26
7446     9            10         27
7447     9            11          1
7448     9            11          2
7449     9            11          3
7450     9            11          4
7451     9            11          5
7452     9            11          6
7453     9            11          7
7454     9            11          8
7455     9            11          9
7456     9            11         10
7457     9            11         11
7458     9            11         12
7459     9            11         13
7460     9            11         14
7461     9            11         15
7462     9            12          1
7463     9            12          2
7464     9            12          3
7465     9            12          4
7466     9            12          5
7467     9            12          6
7468     9            12          7
7469     9            12          8
7470     9            12          9
7471     9            12         10
7472     9            12         11
7473     9            12         12
7474     9            12         13
7475     9            12         14
7476     9            12         15
7477     9            12         16
7478     9            12         17
7479     9            12         18
7480     9            12         19
7481     9            12         20
7482     9            12         21
7483     9            12         22
7484     9            12         23
7485     9            12         24
7486     9            12         25
7487     9            13          1
7488     9            13          2
7489     9            13          3
7490     9            13          4
7491     9            13          5
7492     9            13          6
7493     9            13          7
7494     9            13          8
7495     9            13          9
7496     9            13         10
7497     9            13         11
7498     9            13         12
7499     9            13         13
7500     9            13         14
7501     9            13         15
7502     9            13         16
7503     9            13         17
7504     9            13         18
7505     9            13         19
7506     9            13         20
7507     9            13         21
7508     9            13         22
7509     9            13         23
7510     9            14          1
7511     9            14          2
7512     9            14          3
7513     9            14          4
7514     9            14          5
7515     9            14          6
7516     9            14          7
7517     9            14          8
7518     9            14          9
7519     9            14         10
7520     9            14         11
7521     9            14         12
7522     9            14         13
7523     9            14         14
7524     9            14         15
7525     9            14         16
7526     9            14         17
7527     9            14         18
7528     9            14         19
7529     9            14         20
7530     9            14         21
7531     9            14         22
7532     9            14         23
7533     9            14         24
7534     9            14         25
7535     9            14         26
7536     9            14         27
7537     9            14         28
7538     9            14         29
7539     9            14         30
7540     9            14         31
7541     9            14         32
7542     9            14         33
7543     9            14         34
7544     9            14         35
7545     9            14         36
7546     9            14         37
7547     9            14         38
7548     9            14         39
7549     9            14         40
7550     9            14         41
7551     9            14         42
7552     9            14         43
7553     9            14         44
7554     9            14         45
7555     9            14         46
7556     9            14         47
7557     9            14         48
7558     9            14         49
7559     9            14         50
7560     9            14         51
7561     9            14         52
7562     9            15          1
7563     9            15          2
7564     9            15          3
7565     9            15          4
7566     9            15          5
7567     9            15          6
7568     9            15          7
7569     9            15          8
7570     9            15          9
7571     9            15         10
7572     9            15         11
7573     9            15         12
7574     9            15         13
7575     9            15         14
7576     9            15         15
7577     9            15         16
7578     9            15         17
7579     9            15         18
7580     9            15         19
7581     9            15         20
7582     9            15         21
7583     9            15         22
7584     9            15         23
7585     9            15         24
7586     9            15         25
7587     9            15         26
7588     9            15         27
7589     9            15         28
7590     9            15         29
7591     9            15         30
7592     9            15         31
7593     9            15         32
7594     9            15         33
7595     9            15         34
7596     9            15         35
7597     9            16          1
7598     9            16          2
7599     9            16          3
7600     9            16          4
7601     9            16          5
7602     9            16          6
7603     9            16          7
7604     9            16          8
7605     9            16          9
7606     9            16         10
7607     9            16         11
7608     9            16         12
7609     9            16         13
7610     9            16         14
7611     9            16         15
7612     9            16         16
7613     9            16         17
7614     9            16         18
7615     9            16         19
7616     9            16         20
7617     9            16         21
7618     9            16         22
7619     9            16         23
7620     9            17          1
7621     9            17          2
7622     9            17          3
7623     9            17          4
7624     9            17          5
7625     9            17          6
7626     9            17          7
7627     9            17          8
7628     9            17          9
7629     9            17         10
7630     9            17         11
7631     9            17         12
7632     9            17         13
7633     9            17         14
7634     9            17         15
7635     9            17         16
7636     9            17         17
7637     9            17         18
7638     9            17         19
7639     9            17         20
7640     9            17         21
7641     9            17         22
7642     9            17         23
7643     9            17         24
7644     9            17         25
7645     9            17         26
7646     9            17         27
7647     9            17         28
7648     9            17         29
7649     9            17         30
7650     9            17         31
7651     9            17         32
7652     9            17         33
7653     9            17         34
7654     9            17         35
7655     9            17         36
7656     9            17         37
7657     9            17         38
7658     9            17         39
7659     9            17         40
7660     9            17         41
7661     9            17         42
7662     9            17         43
7663     9            17         44
7664     9            17         45
7665     9            17         46
7666     9            17         47
7667     9            17         48
7668     9            17         49
7669     9            17         50
7670     9            17         51
7671     9            17         52
7672     9            17         53
7673     9            17         54
7674     9            17         55
7675     9            17         56
7676     9            17         57
7677     9            17         58
7678     9            18          1
7679     9            18          2
7680     9            18          3
7681     9            18          4
7682     9            18          5
7683     9            18          6
7684     9            18          7
7685     9            18          8
7686     9            18          9
7687     9            18         10
7688     9            18         11
7689     9            18         12
7690     9            18         13
7691     9            18         14
7692     9            18         15
7693     9            18         16
7694     9            18         17
7695     9            18         18
7696     9            18         19
7697     9            18         20
7698     9            18         21
7699     9            18         22
7700     9            18         23
7701     9            18         24
7702     9            18         25
7703     9            18         26
7704     9            18         27
7705     9            18         28
7706     9            18         29
7707     9            18         30
7708     9            19          1
7709     9            19          2
7710     9            19          3
7711     9            19          4
7712     9            19          5
7713     9            19          6
7714     9            19          7
7715     9            19          8
7716     9            19          9
7717     9            19         10
7718     9            19         11
7719     9            19         12
7720     9            19         13
7721     9            19         14
7722     9            19         15
7723     9            19         16
7724     9            19         17
7725     9            19         18
7726     9            19         19
7727     9            19         20
7728     9            19         21
7729     9            19         22
7730     9            19         23
7731     9            19         24
7732     9            20          1
7733     9            20          2
7734     9            20          3
7735     9            20          4
7736     9            20          5
7737     9            20          6
7738     9            20          7
7739     9            20          8
7740     9            20          9
7741     9            20         10
7742     9            20         11
7743     9            20         12
7744     9            20         13
7745     9            20         14
7746     9            20         15
7747     9            20         16
7748     9            20         17
7749     9            20         18
7750     9            20         19
7751     9            20         20
7752     9            20         21
7753     9            20         22
7754     9            20         23
7755     9            20         24
7756     9            20         25
7757     9            20         26
7758     9            20         27
7759     9            20         28
7760     9            20         29
7761     9            20         30
7762     9            20         31
7763     9            20         32
7764     9            20         33
7765     9            20         34
7766     9            20         35
7767     9            20         36
7768     9            20         37
7769     9            20         38
7770     9            20         39
7771     9            20         40
7772     9            20         41
7773     9            20         42
7774     9            21          1
7775     9            21          2
7776     9            21          3
7777     9            21          4
7778     9            21          5
7779     9            21          6
7780     9            21          7
7781     9            21          8
7782     9            21          9
7783     9            21         10
7784     9            21         11
7785     9            21         12
7786     9            21         13
7787     9            21         14
7788     9            21         15
7789     9            22          1
7790     9            22          2
7791     9            22          3
7792     9            22          4
7793     9            22          5
7794     9            22          6
7795     9            22          7
7796     9            22          8
7797     9            22          9
7798     9            22         10
7799     9            22         11
7800     9            22         12
7801     9            22         13
7802     9            22         14
7803     9            22         15
7804     9            22         16
7805     9            22         17
7806     9            22         18
7807     9            22         19
7808     9            22         20
7809     9            22         21
7810     9            22         22
7811     9            22         23
7812     9            23          1
7813     9            23          2
7814     9            23          3
7815     9            23          4
7816     9            23          5
7817     9            23          6
7818     9            23          7
7819     9            23          8
7820     9            23          9
7821     9            23         10
7822     9            23         11
7823     9            23         12
7824     9            23         13
7825     9            23         14
7826     9            23         15
7827     9            23         16
7828     9            23         17
7829     9            23         18
7830     9            23         19
7831     9            23         20
7832     9            23         21
7833     9            23         22
7834     9            23         23
7835     9            23         24
7836     9            23         25
7837     9            23         26
7838     9            23         27
7839     9            23         28
7840     9            23         29
7841     9            24          1
7842     9            24          2
7843     9            24          3
7844     9            24          4
7845     9            24          5
7846     9            24          6
7847     9            24          7
7848     9            24          8
7849     9            24          9
7850     9            24         10
7851     9            24         11
7852     9            24         12
7853     9            24         13
7854     9            24         14
7855     9            24         15
7856     9            24         16
7857     9            24         17
7858     9            24         18
7859     9            24         19
7860     9            24         20
7861     9            24         21
7862     9            24         22
7863     9            25          1
7864     9            25          2
7865     9            25          3
7866     9            25          4
7867     9            25          5
7868     9            25          6
7869     9            25          7
7870     9            25          8
7871     9            25          9
7872     9            25         10
7873     9            25         11
7874     9            25         12
7875     9            25         13
7876     9            25         14
7877     9            25         15
7878     9            25         16
7879     9            25         17
7880     9            25         18
7881     9            25         19
7882     9            25         20
7883     9            25         21
7884     9            25         22
7885     9            25         23
7886     9            25         24
7887     9            25         25
7888     9            25         26
7889     9            25         27
7890     9            25         28
7891     9            25         29
7892     9            25         30
7893     9            25         31
7894     9            25         32
7895     9            25         33
7896     9            25         34
7897     9            25         35
7898     9            25         36
7899     9            25         37
7900     9            25         38
7901     9            25         39
7902     9            25         40
7903     9            25         41
7904     9            25         42
7905     9            25         43
7906     9            25         44
7907     9            26          1
7908     9            26          2
7909     9            26          3
7910     9            26          4
7911     9            26          5
7912     9            26          6
7913     9            26          7
7914     9            26          8
7915     9            26          9
7916     9            26         10
7917     9            26         11
7918     9            26         12
7919     9            26         13
7920     9            26         14
7921     9            26         15
7922     9            26         16
7923     9            26         17
7924     9            26         18
7925     9            26         19
7926     9            26         20
7927     9            26         21
7928     9            26         22
7929     9            26         23
7930     9            26         24
7931     9            26         25
7932     9            27          1
7933     9            27          2
7934     9            27          3
7935     9            27          4
7936     9            27          5
7937     9            27          6
7938     9            27          7
7939     9            27          8
7940     9            27          9
7941     9            27         10
7942     9            27         11
7943     9            27         12
7944     9            28          1
7945     9            28          2
7946     9            28          3
7947     9            28          4
7948     9            28          5
7949     9            28          6
7950     9            28          7
7951     9            28          8
7952     9            28          9
7953     9            28         10
7954     9            28         11
7955     9            28         12
7956     9            28         13
7957     9            28         14
7958     9            28         15
7959     9            28         16
7960     9            28         17
7961     9            28         18
7962     9            28         19
7963     9            28         20
7964     9            28         21
7965     9            28         22
7966     9            28         23
7967     9            28         24
7968     9            28         25
7969     9            29          1
7970     9            29          2
7971     9            29          3
7972     9            29          4
7973     9            29          5
7974     9            29          6
7975     9            29          7
7976     9            29          8
7977     9            29          9
7978     9            29         10
7979     9            29         11
7980     9            30          1
7981     9            30          2
7982     9            30          3
7983     9            30          4
7984     9            30          5
7985     9            30          6
7986     9            30          7
7987     9            30          8
7988     9            30          9
7989     9            30         10
7990     9            30         11
7991     9            30         12
7992     9            30         13
7993     9            30         14
7994     9            30         15
7995     9            30         16
7996     9            30         17
7997     9            30         18
7998     9            30         19
7999     9            30         20
8000     9            30         21
8001     9            30         22
8002     9            30         23
8003     9            30         24
8004     9            30         25
8005     9            30         26
8006     9            30         27
8007     9            30         28
8008     9            30         29
8009     9            30         30
8010     9            30         31
8011     9            31          1
8012     9            31          2
8013     9            31          3
8014     9            31          4
8015     9            31          5
8016     9            31          6
8017     9            31          7
8018     9            31          8
8019     9            31          9
8020     9            31         10
8021     9            31         11
8022     9            31         12
8023     9            31         13
8024    10             1          1
8025    10             1          2
8026    10             1          3
8027    10             1          4
8028    10             1          5
8029    10             1          6
8030    10             1          7
8031    10             1          8
8032    10             1          9
8033    10             1         10
8034    10             1         11
8035    10             1         12
8036    10             1         13
8037    10             1         14
8038    10             1         15
8039    10             1         16
8040    10             1         17
8041    10             1         18
8042    10             1         19
8043    10             1         20
8044    10             1         21
8045    10             1         22
8046    10             1         23
8047    10             1         24
8048    10             1         25
8049    10             1         26
8050    10             1         27
8051    10             2          1
8052    10             2          2
8053    10             2          3
8054    10             2          4
8055    10             2          5
8056    10             2          6
8057    10             2          7
8058    10             2          8
8059    10             2          9
8060    10             2         10
8061    10             2         11
8062    10             2         12
8063    10             2         13
8064    10             2         14
8065    10             2         15
8066    10             2         16
8067    10             2         17
8068    10             2         18
8069    10             2         19
8070    10             2         20
8071    10             2         21
8072    10             2         22
8073    10             2         23
8074    10             2         24
8075    10             2         25
8076    10             2         26
8077    10             2         27
8078    10             2         28
8079    10             2         29
8080    10             2         30
8081    10             2         31
8082    10             2         32
8083    10             3          1
8084    10             3          2
8085    10             3          3
8086    10             3          4
8087    10             3          5
8088    10             3          6
8089    10             3          7
8090    10             3          8
8091    10             3          9
8092    10             3         10
8093    10             3         11
8094    10             3         12
8095    10             3         13
8096    10             3         14
8097    10             3         15
8098    10             3         16
8099    10             3         17
8100    10             3         18
8101    10             3         19
8102    10             3         20
8103    10             3         21
8104    10             3         22
8105    10             3         23
8106    10             3         24
8107    10             3         25
8108    10             3         26
8109    10             3         27
8110    10             3         28
8111    10             3         29
8112    10             3         30
8113    10             3         31
8114    10             3         32
8115    10             3         33
8116    10             3         34
8117    10             3         35
8118    10             3         36
8119    10             3         37
8120    10             3         38
8121    10             3         39
8122    10             4          1
8123    10             4          2
8124    10             4          3
8125    10             4          4
8126    10             4          5
8127    10             4          6
8128    10             4          7
8129    10             4          8
8130    10             4          9
8131    10             4         10
8132    10             4         11
8133    10             4         12
8134    10             5          1
8135    10             5          2
8136    10             5          3
8137    10             5          4
8138    10             5          5
8139    10             5          6
8140    10             5          7
8141    10             5          8
8142    10             5          9
8143    10             5         10
8144    10             5         11
8145    10             5         12
8146    10             5         13
8147    10             5         14
8148    10             5         15
8149    10             5         16
8150    10             5         17
8151    10             5         18
8152    10             5         19
8153    10             5         20
8154    10             5         21
8155    10             5         22
8156    10             5         23
8157    10             5         24
8158    10             5         25
8159    10             6          1
8160    10             6          2
8161    10             6          3
8162    10             6          4
8163    10             6          5
8164    10             6          6
8165    10             6          7
8166    10             6          8
8167    10             6          9
8168    10             6         10
8169    10             6         11
8170    10             6         12
8171    10             6         13
8172    10             6         14
8173    10             6         15
8174    10             6         16
8175    10             6         17
8176    10             6         18
8177    10             6         19
8178    10             6         20
8179    10             6         21
8180    10             6         22
8181    10             6         23
8182    10             7          1
8183    10             7          2
8184    10             7          3
8185    10             7          4
8186    10             7          5
8187    10             7          6
8188    10             7          7
8189    10             7          8
8190    10             7          9
8191    10             7         10
8192    10             7         11
8193    10             7         12
8194    10             7         13
8195    10             7         14
8196    10             7         15
8197    10             7         16
8198    10             7         17
8199    10             7         18
8200    10             7         19
8201    10             7         20
8202    10             7         21
8203    10             7         22
8204    10             7         23
8205    10             7         24
8206    10             7         25
8207    10             7         26
8208    10             7         27
8209    10             7         28
8210    10             7         29
8211    10             8          1
8212    10             8          2
8213    10             8          3
8214    10             8          4
8215    10             8          5
8216    10             8          6
8217    10             8          7
8218    10             8          8
8219    10             8          9
8220    10             8         10
8221    10             8         11
8222    10             8         12
8223    10             8         13
8224    10             8         14
8225    10             8         15
8226    10             8         16
8227    10             8         17
8228    10             8         18
8229    10             9          1
8230    10             9          2
8231    10             9          3
8232    10             9          4
8233    10             9          5
8234    10             9          6
8235    10             9          7
8236    10             9          8
8237    10             9          9
8238    10             9         10
8239    10             9         11
8240    10             9         12
8241    10             9         13
8242    10            10          1
8243    10            10          2
8244    10            10          3
8245    10            10          4
8246    10            10          5
8247    10            10          6
8248    10            10          7
8249    10            10          8
8250    10            10          9
8251    10            10         10
8252    10            10         11
8253    10            10         12
8254    10            10         13
8255    10            10         14
8256    10            10         15
8257    10            10         16
8258    10            10         17
8259    10            10         18
8260    10            10         19
8261    10            11          1
8262    10            11          2
8263    10            11          3
8264    10            11          4
8265    10            11          5
8266    10            11          6
8267    10            11          7
8268    10            11          8
8269    10            11          9
8270    10            11         10
8271    10            11         11
8272    10            11         12
8273    10            11         13
8274    10            11         14
8275    10            11         15
8276    10            11         16
8277    10            11         17
8278    10            11         18
8279    10            11         19
8280    10            11         20
8281    10            11         21
8282    10            11         22
8283    10            11         23
8284    10            11         24
8285    10            11         25
8286    10            11         26
8287    10            11         27
8288    10            12          1
8289    10            12          2
8290    10            12          3
8291    10            12          4
8292    10            12          5
8293    10            12          6
8294    10            12          7
8295    10            12          8
8296    10            12          9
8297    10            12         10
8298    10            12         11
8299    10            12         12
8300    10            12         13
8301    10            12         14
8302    10            12         15
8303    10            12         16
8304    10            12         17
8305    10            12         18
8306    10            12         19
8307    10            12         20
8308    10            12         21
8309    10            12         22
8310    10            12         23
8311    10            12         24
8312    10            12         25
8313    10            12         26
8314    10            12         27
8315    10            12         28
8316    10            12         29
8317    10            12         30
8318    10            12         31
8319    10            13          1
8320    10            13          2
8321    10            13          3
8322    10            13          4
8323    10            13          5
8324    10            13          6
8325    10            13          7
8326    10            13          8
8327    10            13          9
8328    10            13         10
8329    10            13         11
8330    10            13         12
8331    10            13         13
8332    10            13         14
8333    10            13         15
8334    10            13         16
8335    10            13         17
8336    10            13         18
8337    10            13         19
8338    10            13         20
8339    10            13         21
8340    10            13         22
8341    10            13         23
8342    10            13         24
8343    10            13         25
8344    10            13         26
8345    10            13         27
8346    10            13         28
8347    10            13         29
8348    10            13         30
8349    10            13         31
8350    10            13         32
8351    10            13         33
8352    10            13         34
8353    10            13         35
8354    10            13         36
8355    10            13         37
8356    10            13         38
8357    10            13         39
8358    10            14          1
8359    10            14          2
8360    10            14          3
8361    10            14          4
8362    10            14          5
8363    10            14          6
8364    10            14          7
8365    10            14          8
8366    10            14          9
8367    10            14         10
8368    10            14         11
8369    10            14         12
8370    10            14         13
8371    10            14         14
8372    10            14         15
8373    10            14         16
8374    10            14         17
8375    10            14         18
8376    10            14         19
8377    10            14         20
8378    10            14         21
8379    10            14         22
8380    10            14         23
8381    10            14         24
8382    10            14         25
8383    10            14         26
8384    10            14         27
8385    10            14         28
8386    10            14         29
8387    10            14         30
8388    10            14         31
8389    10            14         32
8390    10            14         33
8391    10            15          1
8392    10            15          2
8393    10            15          3
8394    10            15          4
8395    10            15          5
8396    10            15          6
8397    10            15          7
8398    10            15          8
8399    10            15          9
8400    10            15         10
8401    10            15         11
8402    10            15         12
8403    10            15         13
8404    10            15         14
8405    10            15         15
8406    10            15         16
8407    10            15         17
8408    10            15         18
8409    10            15         19
8410    10            15         20
8411    10            15         21
8412    10            15         22
8413    10            15         23
8414    10            15         24
8415    10            15         25
8416    10            15         26
8417    10            15         27
8418    10            15         28
8419    10            15         29
8420    10            15         30
8421    10            15         31
8422    10            15         32
8423    10            15         33
8424    10            15         34
8425    10            15         35
8426    10            15         36
8427    10            15         37
8428    10            16          1
8429    10            16          2
8430    10            16          3
8431    10            16          4
8432    10            16          5
8433    10            16          6
8434    10            16          7
8435    10            16          8
8436    10            16          9
8437    10            16         10
8438    10            16         11
8439    10            16         12
8440    10            16         13
8441    10            16         14
8442    10            16         15
8443    10            16         16
8444    10            16         17
8445    10            16         18
8446    10            16         19
8447    10            16         20
8448    10            16         21
8449    10            16         22
8450    10            16         23
8451    10            17          1
8452    10            17          2
8453    10            17          3
8454    10            17          4
8455    10            17          5
8456    10            17          6
8457    10            17          7
8458    10            17          8
8459    10            17          9
8460    10            17         10
8461    10            17         11
8462    10            17         12
8463    10            17         13
8464    10            17         14
8465    10            17         15
8466    10            17         16
8467    10            17         17
8468    10            17         18
8469    10            17         19
8470    10            17         20
8471    10            17         21
8472    10            17         22
8473    10            17         23
8474    10            17         24
8475    10            17         25
8476    10            17         26
8477    10            17         27
8478    10            17         28
8479    10            17         29
8480    10            18          1
8481    10            18          2
8482    10            18          3
8483    10            18          4
8484    10            18          5
8485    10            18          6
8486    10            18          7
8487    10            18          8
8488    10            18          9
8489    10            18         10
8490    10            18         11
8491    10            18         12
8492    10            18         13
8493    10            18         14
8494    10            18         15
8495    10            18         16
8496    10            18         17
8497    10            18         18
8498    10            18         19
8499    10            18         20
8500    10            18         21
8501    10            18         22
8502    10            18         23
8503    10            18         24
8504    10            18         25
8505    10            18         26
8506    10            18         27
8507    10            18         28
8508    10            18         29
8509    10            18         30
8510    10            18         31
8511    10            18         32
8512    10            18         33
8513    10            19          1
8514    10            19          2
8515    10            19          3
8516    10            19          4
8517    10            19          5
8518    10            19          6
8519    10            19          7
8520    10            19          8
8521    10            19          9
8522    10            19         10
8523    10            19         11
8524    10            19         12
8525    10            19         13
8526    10            19         14
8527    10            19         15
8528    10            19         16
8529    10            19         17
8530    10            19         18
8531    10            19         19
8532    10            19         20
8533    10            19         21
8534    10            19         22
8535    10            19         23
8536    10            19         24
8537    10            19         25
8538    10            19         26
8539    10            19         27
8540    10            19         28
8541    10            19         29
8542    10            19         30
8543    10            19         31
8544    10            19         32
8545    10            19         33
8546    10            19         34
8547    10            19         35
8548    10            19         36
8549    10            19         37
8550    10            19         38
8551    10            19         39
8552    10            19         40
8553    10            19         41
8554    10            19         42
8555    10            19         43
8556    10            20          1
8557    10            20          2
8558    10            20          3
8559    10            20          4
8560    10            20          5
8561    10            20          6
8562    10            20          7
8563    10            20          8
8564    10            20          9
8565    10            20         10
8566    10            20         11
8567    10            20         12
8568    10            20         13
8569    10            20         14
8570    10            20         15
8571    10            20         16
8572    10            20         17
8573    10            20         18
8574    10            20         19
8575    10            20         20
8576    10            20         21
8577    10            20         22
8578    10            20         23
8579    10            20         24
8580    10            20         25
8581    10            20         26
8582    10            21          1
8583    10            21          2
8584    10            21          3
8585    10            21          4
8586    10            21          5
8587    10            21          6
8588    10            21          7
8589    10            21          8
8590    10            21          9
8591    10            21         10
8592    10            21         11
8593    10            21         12
8594    10            21         13
8595    10            21         14
8596    10            21         15
8597    10            21         16
8598    10            21         17
8599    10            21         18
8600    10            21         19
8601    10            21         20
8602    10            21         21
8603    10            21         22
8604    10            22          1
8605    10            22          2
8606    10            22          3
8607    10            22          4
8608    10            22          5
8609    10            22          6
8610    10            22          7
8611    10            22          8
8612    10            22          9
8613    10            22         10
8614    10            22         11
8615    10            22         12
8616    10            22         13
8617    10            22         14
8618    10            22         15
8619    10            22         16
8620    10            22         17
8621    10            22         18
8622    10            22         19
8623    10            22         20
8624    10            22         21
8625    10            22         22
8626    10            22         23
8627    10            22         24
8628    10            22         25
8629    10            22         26
8630    10            22         27
8631    10            22         28
8632    10            22         29
8633    10            22         30
8634    10            22         31
8635    10            22         32
8636    10            22         33
8637    10            22         34
8638    10            22         35
8639    10            22         36
8640    10            22         37
8641    10            22         38
8642    10            22         39
8643    10            22         40
8644    10            22         41
8645    10            22         42
8646    10            22         43
8647    10            22         44
8648    10            22         45
8649    10            22         46
8650    10            22         47
8651    10            22         48
8652    10            22         49
8653    10            22         50
8654    10            22         51
8655    10            23          1
8656    10            23          2
8657    10            23          3
8658    10            23          4
8659    10            23          5
8660    10            23          6
8661    10            23          7
8662    10            23          8
8663    10            23          9
8664    10            23         10
8665    10            23         11
8666    10            23         12
8667    10            23         13
8668    10            23         14
8669    10            23         15
8670    10            23         16
8671    10            23         17
8672    10            23         18
8673    10            23         19
8674    10            23         20
8675    10            23         21
8676    10            23         22
8677    10            23         23
8678    10            23         24
8679    10            23         25
8680    10            23         26
8681    10            23         27
8682    10            23         28
8683    10            23         29
8684    10            23         30
8685    10            23         31
8686    10            23         32
8687    10            23         33
8688    10            23         34
8689    10            23         35
8690    10            23         36
8691    10            23         37
8692    10            23         38
8693    10            23         39
8694    10            24          1
8695    10            24          2
8696    10            24          3
8697    10            24          4
8698    10            24          5
8699    10            24          6
8700    10            24          7
8701    10            24          8
8702    10            24          9
8703    10            24         10
8704    10            24         11
8705    10            24         12
8706    10            24         13
8707    10            24         14
8708    10            24         15
8709    10            24         16
8710    10            24         17
8711    10            24         18
8712    10            24         19
8713    10            24         20
8714    10            24         21
8715    10            24         22
8716    10            24         23
8717    10            24         24
8718    10            24         25
8719    11             1          1
8720    11             1          2
8721    11             1          3
8722    11             1          4
8723    11             1          5
8724    11             1          6
8725    11             1          7
8726    11             1          8
8727    11             1          9
8728    11             1         10
8729    11             1         11
8730    11             1         12
8731    11             1         13
8732    11             1         14
8733    11             1         15
8734    11             1         16
8735    11             1         17
8736    11             1         18
8737    11             1         19
8738    11             1         20
8739    11             1         21
8740    11             1         22
8741    11             1         23
8742    11             1         24
8743    11             1         25
8744    11             1         26
8745    11             1         27
8746    11             1         28
8747    11             1         29
8748    11             1         30
8749    11             1         31
8750    11             1         32
8751    11             1         33
8752    11             1         34
8753    11             1         35
8754    11             1         36
8755    11             1         37
8756    11             1         38
8757    11             1         39
8758    11             1         40
8759    11             1         41
8760    11             1         42
8761    11             1         43
8762    11             1         44
8763    11             1         45
8764    11             1         46
8765    11             1         47
8766    11             1         48
8767    11             1         49
8768    11             1         50
8769    11             1         51
8770    11             1         52
8771    11             1         53
8772    11             2          1
8773    11             2          2
8774    11             2          3
8775    11             2          4
8776    11             2          5
8777    11             2          6
8778    11             2          7
8779    11             2          8
8780    11             2          9
8781    11             2         10
8782    11             2         11
8783    11             2         12
8784    11             2         13
8785    11             2         14
8786    11             2         15
8787    11             2         16
8788    11             2         17
8789    11             2         18
8790    11             2         19
8791    11             2         20
8792    11             2         21
8793    11             2         22
8794    11             2         23
8795    11             2         24
8796    11             2         25
8797    11             2         26
8798    11             2         27
8799    11             2         28
8800    11             2         29
8801    11             2         30
8802    11             2         31
8803    11             2         32
8804    11             2         33
8805    11             2         34
8806    11             2         35
8807    11             2         36
8808    11             2         37
8809    11             2         38
8810    11             2         39
8811    11             2         40
8812    11             2         41
8813    11             2         42
8814    11             2         43
8815    11             2         44
8816    11             2         45
8817    11             2         46
8818    11             3          1
8819    11             3          2
8820    11             3          3
8821    11             3          4
8822    11             3          5
8823    11             3          6
8824    11             3          7
8825    11             3          8
8826    11             3          9
8827    11             3         10
8828    11             3         11
8829    11             3         12
8830    11             3         13
8831    11             3         14
8832    11             3         15
8833    11             3         16
8834    11             3         17
8835    11             3         18
8836    11             3         19
8837    11             3         20
8838    11             3         21
8839    11             3         22
8840    11             3         23
8841    11             3         24
8842    11             3         25
8843    11             3         26
8844    11             3         27
8845    11             3         28
8846    11             4          1
8847    11             4          2
8848    11             4          3
8849    11             4          4
8850    11             4          5
8851    11             4          6
8852    11             4          7
8853    11             4          8
8854    11             4          9
8855    11             4         10
8856    11             4         11
8857    11             4         12
8858    11             4         13
8859    11             4         14
8860    11             4         15
8861    11             4         16
8862    11             4         17
8863    11             4         18
8864    11             4         19
8865    11             4         20
8866    11             4         21
8867    11             4         22
8868    11             4         23
8869    11             4         24
8870    11             4         25
8871    11             4         26
8872    11             4         27
8873    11             4         28
8874    11             4         29
8875    11             4         30
8876    11             4         31
8877    11             4         32
8878    11             4         33
8879    11             4         34
8880    11             5          1
8881    11             5          2
8882    11             5          3
8883    11             5          4
8884    11             5          5
8885    11             5          6
8886    11             5          7
8887    11             5          8
8888    11             5          9
8889    11             5         10
8890    11             5         11
8891    11             5         12
8892    11             5         13
8893    11             5         14
8894    11             5         15
8895    11             5         16
8896    11             5         17
8897    11             5         18
8898    11             6          1
8899    11             6          2
8900    11             6          3
8901    11             6          4
8902    11             6          5
8903    11             6          6
8904    11             6          7
8905    11             6          8
8906    11             6          9
8907    11             6         10
8908    11             6         11
8909    11             6         12
8910    11             6         13
8911    11             6         14
8912    11             6         15
8913    11             6         16
8914    11             6         17
8915    11             6         18
8916    11             6         19
8917    11             6         20
8918    11             6         21
8919    11             6         22
8920    11             6         23
8921    11             6         24
8922    11             6         25
8923    11             6         26
8924    11             6         27
8925    11             6         28
8926    11             6         29
8927    11             6         30
8928    11             6         31
8929    11             6         32
8930    11             6         33
8931    11             6         34
8932    11             6         35
8933    11             6         36
8934    11             6         37
8935    11             6         38
8936    11             7          1
8937    11             7          2
8938    11             7          3
8939    11             7          4
8940    11             7          5
8941    11             7          6
8942    11             7          7
8943    11             7          8
8944    11             7          9
8945    11             7         10
8946    11             7         11
8947    11             7         12
8948    11             7         13
8949    11             7         14
8950    11             7         15
8951    11             7         16
8952    11             7         17
8953    11             7         18
8954    11             7         19
8955    11             7         20
8956    11             7         21
8957    11             7         22
8958    11             7         23
8959    11             7         24
8960    11             7         25
8961    11             7         26
8962    11             7         27
8963    11             7         28
8964    11             7         29
8965    11             7         30
8966    11             7         31
8967    11             7         32
8968    11             7         33
8969    11             7         34
8970    11             7         35
8971    11             7         36
8972    11             7         37
8973    11             7         38
8974    11             7         39
8975    11             7         40
8976    11             7         41
8977    11             7         42
8978    11             7         43
8979    11             7         44
8980    11             7         45
8981    11             7         46
8982    11             7         47
8983    11             7         48
8984    11             7         49
8985    11             7         50
8986    11             7         51
8987    11             8          1
8988    11             8          2
8989    11             8          3
8990    11             8          4
8991    11             8          5
8992    11             8          6
8993    11             8          7
8994    11             8          8
8995    11             8          9
8996    11             8         10
8997    11             8         11
8998    11             8         12
8999    11             8         13
9000    11             8         14
9001    11             8         15
9002    11             8         16
9003    11             8         17
9004    11             8         18
9005    11             8         19
9006    11             8         20
9007    11             8         21
9008    11             8         22
9009    11             8         23
9010    11             8         24
9011    11             8         25
9012    11             8         26
9013    11             8         27
9014    11             8         28
9015    11             8         29
9016    11             8         30
9017    11             8         31
9018    11             8         32
9019    11             8         33
9020    11             8         34
9021    11             8         35
9022    11             8         36
9023    11             8         37
9024    11             8         38
9025    11             8         39
9026    11             8         40
9027    11             8         41
9028    11             8         42
9029    11             8         43
9030    11             8         44
9031    11             8         45
9032    11             8         46
9033    11             8         47
9034    11             8         48
9035    11             8         49
9036    11             8         50
9037    11             8         51
9038    11             8         52
9039    11             8         53
9040    11             8         54
9041    11             8         55
9042    11             8         56
9043    11             8         57
9044    11             8         58
9045    11             8         59
9046    11             8         60
9047    11             8         61
9048    11             8         62
9049    11             8         63
9050    11             8         64
9051    11             8         65
9052    11             8         66
9053    11             9          1
9054    11             9          2
9055    11             9          3
9056    11             9          4
9057    11             9          5
9058    11             9          6
9059    11             9          7
9060    11             9          8
9061    11             9          9
9062    11             9         10
9063    11             9         11
9064    11             9         12
9065    11             9         13
9066    11             9         14
9067    11             9         15
9068    11             9         16
9069    11             9         17
9070    11             9         18
9071    11             9         19
9072    11             9         20
9073    11             9         21
9074    11             9         22
9075    11             9         23
9076    11             9         24
9077    11             9         25
9078    11             9         26
9079    11             9         27
9080    11             9         28
9081    11            10          1
9082    11            10          2
9083    11            10          3
9084    11            10          4
9085    11            10          5
9086    11            10          6
9087    11            10          7
9088    11            10          8
9089    11            10          9
9090    11            10         10
9091    11            10         11
9092    11            10         12
9093    11            10         13
9094    11            10         14
9095    11            10         15
9096    11            10         16
9097    11            10         17
9098    11            10         18
9099    11            10         19
9100    11            10         20
9101    11            10         21
9102    11            10         22
9103    11            10         23
9104    11            10         24
9105    11            10         25
9106    11            10         26
9107    11            10         27
9108    11            10         28
9109    11            10         29
9110    11            11          1
9111    11            11          2
9112    11            11          3
9113    11            11          4
9114    11            11          5
9115    11            11          6
9116    11            11          7
9117    11            11          8
9118    11            11          9
9119    11            11         10
9120    11            11         11
9121    11            11         12
9122    11            11         13
9123    11            11         14
9124    11            11         15
9125    11            11         16
9126    11            11         17
9127    11            11         18
9128    11            11         19
9129    11            11         20
9130    11            11         21
9131    11            11         22
9132    11            11         23
9133    11            11         24
9134    11            11         25
9135    11            11         26
9136    11            11         27
9137    11            11         28
9138    11            11         29
9139    11            11         30
9140    11            11         31
9141    11            11         32
9142    11            11         33
9143    11            11         34
9144    11            11         35
9145    11            11         36
9146    11            11         37
9147    11            11         38
9148    11            11         39
9149    11            11         40
9150    11            11         41
9151    11            11         42
9152    11            11         43
9153    11            12          1
9154    11            12          2
9155    11            12          3
9156    11            12          4
9157    11            12          5
9158    11            12          6
9159    11            12          7
9160    11            12          8
9161    11            12          9
9162    11            12         10
9163    11            12         11
9164    11            12         12
9165    11            12         13
9166    11            12         14
9167    11            12         15
9168    11            12         16
9169    11            12         17
9170    11            12         18
9171    11            12         19
9172    11            12         20
9173    11            12         21
9174    11            12         22
9175    11            12         23
9176    11            12         24
9177    11            12         25
9178    11            12         26
9179    11            12         27
9180    11            12         28
9181    11            12         29
9182    11            12         30
9183    11            12         31
9184    11            12         32
9185    11            12         33
9186    11            13          1
9187    11            13          2
9188    11            13          3
9189    11            13          4
9190    11            13          5
9191    11            13          6
9192    11            13          7
9193    11            13          8
9194    11            13          9
9195    11            13         10
9196    11            13         11
9197    11            13         12
9198    11            13         13
9199    11            13         14
9200    11            13         15
9201    11            13         16
9202    11            13         17
9203    11            13         18
9204    11            13         19
9205    11            13         20
9206    11            13         21
9207    11            13         22
9208    11            13         23
9209    11            13         24
9210    11            13         25
9211    11            13         26
9212    11            13         27
9213    11            13         28
9214    11            13         29
9215    11            13         30
9216    11            13         31
9217    11            13         32
9218    11            13         33
9219    11            13         34
9220    11            14          1
9221    11            14          2
9222    11            14          3
9223    11            14          4
9224    11            14          5
9225    11            14          6
9226    11            14          7
9227    11            14          8
9228    11            14          9
9229    11            14         10
9230    11            14         11
9231    11            14         12
9232    11            14         13
9233    11            14         14
9234    11            14         15
9235    11            14         16
9236    11            14         17
9237    11            14         18
9238    11            14         19
9239    11            14         20
9240    11            14         21
9241    11            14         22
9242    11            14         23
9243    11            14         24
9244    11            14         25
9245    11            14         26
9246    11            14         27
9247    11            14         28
9248    11            14         29
9249    11            14         30
9250    11            14         31
9251    11            15          1
9252    11            15          2
9253    11            15          3
9254    11            15          4
9255    11            15          5
9256    11            15          6
9257    11            15          7
9258    11            15          8
9259    11            15          9
9260    11            15         10
9261    11            15         11
9262    11            15         12
9263    11            15         13
9264    11            15         14
9265    11            15         15
9266    11            15         16
9267    11            15         17
9268    11            15         18
9269    11            15         19
9270    11            15         20
9271    11            15         21
9272    11            15         22
9273    11            15         23
9274    11            15         24
9275    11            15         25
9276    11            15         26
9277    11            15         27
9278    11            15         28
9279    11            15         29
9280    11            15         30
9281    11            15         31
9282    11            15         32
9283    11            15         33
9284    11            15         34
9285    11            16          1
9286    11            16          2
9287    11            16          3
9288    11            16          4
9289    11            16          5
9290    11            16          6
9291    11            16          7
9292    11            16          8
9293    11            16          9
9294    11            16         10
9295    11            16         11
9296    11            16         12
9297    11            16         13
9298    11            16         14
9299    11            16         15
9300    11            16         16
9301    11            16         17
9302    11            16         18
9303    11            16         19
9304    11            16         20
9305    11            16         21
9306    11            16         22
9307    11            16         23
9308    11            16         24
9309    11            16         25
9310    11            16         26
9311    11            16         27
9312    11            16         28
9313    11            16         29
9314    11            16         30
9315    11            16         31
9316    11            16         32
9317    11            16         33
9318    11            16         34
9319    11            17          1
9320    11            17          2
9321    11            17          3
9322    11            17          4
9323    11            17          5
9324    11            17          6
9325    11            17          7
9326    11            17          8
9327    11            17          9
9328    11            17         10
9329    11            17         11
9330    11            17         12
9331    11            17         13
9332    11            17         14
9333    11            17         15
9334    11            17         16
9335    11            17         17
9336    11            17         18
9337    11            17         19
9338    11            17         20
9339    11            17         21
9340    11            17         22
9341    11            17         23
9342    11            17         24
9343    11            18          1
9344    11            18          2
9345    11            18          3
9346    11            18          4
9347    11            18          5
9348    11            18          6
9349    11            18          7
9350    11            18          8
9351    11            18          9
9352    11            18         10
9353    11            18         11
9354    11            18         12
9355    11            18         13
9356    11            18         14
9357    11            18         15
9358    11            18         16
9359    11            18         17
9360    11            18         18
9361    11            18         19
9362    11            18         20
9363    11            18         21
9364    11            18         22
9365    11            18         23
9366    11            18         24
9367    11            18         25
9368    11            18         26
9369    11            18         27
9370    11            18         28
9371    11            18         29
9372    11            18         30
9373    11            18         31
9374    11            18         32
9375    11            18         33
9376    11            18         34
9377    11            18         35
9378    11            18         36
9379    11            18         37
9380    11            18         38
9381    11            18         39
9382    11            18         40
9383    11            18         41
9384    11            18         42
9385    11            18         43
9386    11            18         44
9387    11            18         45
9388    11            18         46
9389    11            19          1
9390    11            19          2
9391    11            19          3
9392    11            19          4
9393    11            19          5
9394    11            19          6
9395    11            19          7
9396    11            19          8
9397    11            19          9
9398    11            19         10
9399    11            19         11
9400    11            19         12
9401    11            19         13
9402    11            19         14
9403    11            19         15
9404    11            19         16
9405    11            19         17
9406    11            19         18
9407    11            19         19
9408    11            19         20
9409    11            19         21
9410    11            20          1
9411    11            20          2
9412    11            20          3
9413    11            20          4
9414    11            20          5
9415    11            20          6
9416    11            20          7
9417    11            20          8
9418    11            20          9
9419    11            20         10
9420    11            20         11
9421    11            20         12
9422    11            20         13
9423    11            20         14
9424    11            20         15
9425    11            20         16
9426    11            20         17
9427    11            20         18
9428    11            20         19
9429    11            20         20
9430    11            20         21
9431    11            20         22
9432    11            20         23
9433    11            20         24
9434    11            20         25
9435    11            20         26
9436    11            20         27
9437    11            20         28
9438    11            20         29
9439    11            20         30
9440    11            20         31
9441    11            20         32
9442    11            20         33
9443    11            20         34
9444    11            20         35
9445    11            20         36
9446    11            20         37
9447    11            20         38
9448    11            20         39
9449    11            20         40
9450    11            20         41
9451    11            20         42
9452    11            20         43
9453    11            21          1
9454    11            21          2
9455    11            21          3
9456    11            21          4
9457    11            21          5
9458    11            21          6
9459    11            21          7
9460    11            21          8
9461    11            21          9
9462    11            21         10
9463    11            21         11
9464    11            21         12
9465    11            21         13
9466    11            21         14
9467    11            21         15
9468    11            21         16
9469    11            21         17
9470    11            21         18
9471    11            21         19
9472    11            21         20
9473    11            21         21
9474    11            21         22
9475    11            21         23
9476    11            21         24
9477    11            21         25
9478    11            21         26
9479    11            21         27
9480    11            21         28
9481    11            21         29
9482    11            22          1
9483    11            22          2
9484    11            22          3
9485    11            22          4
9486    11            22          5
9487    11            22          6
9488    11            22          7
9489    11            22          8
9490    11            22          9
9491    11            22         10
9492    11            22         11
9493    11            22         12
9494    11            22         13
9495    11            22         14
9496    11            22         15
9497    11            22         16
9498    11            22         17
9499    11            22         18
9500    11            22         19
9501    11            22         20
9502    11            22         21
9503    11            22         22
9504    11            22         23
9505    11            22         24
9506    11            22         25
9507    11            22         26
9508    11            22         27
9509    11            22         28
9510    11            22         29
9511    11            22         30
9512    11            22         31
9513    11            22         32
9514    11            22         33
9515    11            22         34
9516    11            22         35
9517    11            22         36
9518    11            22         37
9519    11            22         38
9520    11            22         39
9521    11            22         40
9522    11            22         41
9523    11            22         42
9524    11            22         43
9525    11            22         44
9526    11            22         45
9527    11            22         46
9528    11            22         47
9529    11            22         48
9530    11            22         49
9531    11            22         50
9532    11            22         51
9533    11            22         52
9534    11            22         53
9535    12             1          1
9536    12             1          2
9537    12             1          3
9538    12             1          4
9539    12             1          5
9540    12             1          6
9541    12             1          7
9542    12             1          8
9543    12             1          9
9544    12             1         10
9545    12             1         11
9546    12             1         12
9547    12             1         13
9548    12             1         14
9549    12             1         15
9550    12             1         16
9551    12             1         17
9552    12             1         18
9553    12             2          1
9554    12             2          2
9555    12             2          3
9556    12             2          4
9557    12             2          5
9558    12             2          6
9559    12             2          7
9560    12             2          8
9561    12             2          9
9562    12             2         10
9563    12             2         11
9564    12             2         12
9565    12             2         13
9566    12             2         14
9567    12             2         15
9568    12             2         16
9569    12             2         17
9570    12             2         18
9571    12             2         19
9572    12             2         20
9573    12             2         21
9574    12             2         22
9575    12             2         23
9576    12             2         24
9577    12             2         25
9578    12             3          1
9579    12             3          2
9580    12             3          3
9581    12             3          4
9582    12             3          5
9583    12             3          6
9584    12             3          7
9585    12             3          8
9586    12             3          9
9587    12             3         10
9588    12             3         11
9589    12             3         12
9590    12             3         13
9591    12             3         14
9592    12             3         15
9593    12             3         16
9594    12             3         17
9595    12             3         18
9596    12             3         19
9597    12             3         20
9598    12             3         21
9599    12             3         22
9600    12             3         23
9601    12             3         24
9602    12             3         25
9603    12             3         26
9604    12             3         27
9605    12             4          1
9606    12             4          2
9607    12             4          3
9608    12             4          4
9609    12             4          5
9610    12             4          6
9611    12             4          7
9612    12             4          8
9613    12             4          9
9614    12             4         10
9615    12             4         11
9616    12             4         12
9617    12             4         13
9618    12             4         14
9619    12             4         15
9620    12             4         16
9621    12             4         17
9622    12             4         18
9623    12             4         19
9624    12             4         20
9625    12             4         21
9626    12             4         22
9627    12             4         23
9628    12             4         24
9629    12             4         25
9630    12             4         26
9631    12             4         27
9632    12             4         28
9633    12             4         29
9634    12             4         30
9635    12             4         31
9636    12             4         32
9637    12             4         33
9638    12             4         34
9639    12             4         35
9640    12             4         36
9641    12             4         37
9642    12             4         38
9643    12             4         39
9644    12             4         40
9645    12             4         41
9646    12             4         42
9647    12             4         43
9648    12             4         44
9649    12             5          1
9650    12             5          2
9651    12             5          3
9652    12             5          4
9653    12             5          5
9654    12             5          6
9655    12             5          7
9656    12             5          8
9657    12             5          9
9658    12             5         10
9659    12             5         11
9660    12             5         12
9661    12             5         13
9662    12             5         14
9663    12             5         15
9664    12             5         16
9665    12             5         17
9666    12             5         18
9667    12             5         19
9668    12             5         20
9669    12             5         21
9670    12             5         22
9671    12             5         23
9672    12             5         24
9673    12             5         25
9674    12             5         26
9675    12             5         27
9676    12             6          1
9677    12             6          2
9678    12             6          3
9679    12             6          4
9680    12             6          5
9681    12             6          6
9682    12             6          7
9683    12             6          8
9684    12             6          9
9685    12             6         10
9686    12             6         11
9687    12             6         12
9688    12             6         13
9689    12             6         14
9690    12             6         15
9691    12             6         16
9692    12             6         17
9693    12             6         18
9694    12             6         19
9695    12             6         20
9696    12             6         21
9697    12             6         22
9698    12             6         23
9699    12             6         24
9700    12             6         25
9701    12             6         26
9702    12             6         27
9703    12             6         28
9704    12             6         29
9705    12             6         30
9706    12             6         31
9707    12             6         32
9708    12             6         33
9709    12             7          1
9710    12             7          2
9711    12             7          3
9712    12             7          4
9713    12             7          5
9714    12             7          6
9715    12             7          7
9716    12             7          8
9717    12             7          9
9718    12             7         10
9719    12             7         11
9720    12             7         12
9721    12             7         13
9722    12             7         14
9723    12             7         15
9724    12             7         16
9725    12             7         17
9726    12             7         18
9727    12             7         19
9728    12             7         20
9729    12             8          1
9730    12             8          2
9731    12             8          3
9732    12             8          4
9733    12             8          5
9734    12             8          6
9735    12             8          7
9736    12             8          8
9737    12             8          9
9738    12             8         10
9739    12             8         11
9740    12             8         12
9741    12             8         13
9742    12             8         14
9743    12             8         15
9744    12             8         16
9745    12             8         17
9746    12             8         18
9747    12             8         19
9748    12             8         20
9749    12             8         21
9750    12             8         22
9751    12             8         23
9752    12             8         24
9753    12             8         25
9754    12             8         26
9755    12             8         27
9756    12             8         28
9757    12             8         29
9758    12             9          1
9759    12             9          2
9760    12             9          3
9761    12             9          4
9762    12             9          5
9763    12             9          6
9764    12             9          7
9765    12             9          8
9766    12             9          9
9767    12             9         10
9768    12             9         11
9769    12             9         12
9770    12             9         13
9771    12             9         14
9772    12             9         15
9773    12             9         16
9774    12             9         17
9775    12             9         18
9776    12             9         19
9777    12             9         20
9778    12             9         21
9779    12             9         22
9780    12             9         23
9781    12             9         24
9782    12             9         25
9783    12             9         26
9784    12             9         27
9785    12             9         28
9786    12             9         29
9787    12             9         30
9788    12             9         31
9789    12             9         32
9790    12             9         33
9791    12             9         34
9792    12             9         35
9793    12             9         36
9794    12             9         37
9795    12            10          1
9796    12            10          2
9797    12            10          3
9798    12            10          4
9799    12            10          5
9800    12            10          6
9801    12            10          7
9802    12            10          8
9803    12            10          9
9804    12            10         10
9805    12            10         11
9806    12            10         12
9807    12            10         13
9808    12            10         14
9809    12            10         15
9810    12            10         16
9811    12            10         17
9812    12            10         18
9813    12            10         19
9814    12            10         20
9815    12            10         21
9816    12            10         22
9817    12            10         23
9818    12            10         24
9819    12            10         25
9820    12            10         26
9821    12            10         27
9822    12            10         28
9823    12            10         29
9824    12            10         30
9825    12            10         31
9826    12            10         32
9827    12            10         33
9828    12            10         34
9829    12            10         35
9830    12            10         36
9831    12            11          1
9832    12            11          2
9833    12            11          3
9834    12            11          4
9835    12            11          5
9836    12            11          6
9837    12            11          7
9838    12            11          8
9839    12            11          9
9840    12            11         10
9841    12            11         11
9842    12            11         12
9843    12            11         13
9844    12            11         14
9845    12            11         15
9846    12            11         16
9847    12            11         17
9848    12            11         18
9849    12            11         19
9850    12            11         20
9851    12            11         21
9852    12            12          1
9853    12            12          2
9854    12            12          3
9855    12            12          4
9856    12            12          5
9857    12            12          6
9858    12            12          7
9859    12            12          8
9860    12            12          9
9861    12            12         10
9862    12            12         11
9863    12            12         12
9864    12            12         13
9865    12            12         14
9866    12            12         15
9867    12            12         16
9868    12            12         17
9869    12            12         18
9870    12            12         19
9871    12            12         20
9872    12            12         21
9873    12            13          1
9874    12            13          2
9875    12            13          3
9876    12            13          4
9877    12            13          5
9878    12            13          6
9879    12            13          7
9880    12            13          8
9881    12            13          9
9882    12            13         10
9883    12            13         11
9884    12            13         12
9885    12            13         13
9886    12            13         14
9887    12            13         15
9888    12            13         16
9889    12            13         17
9890    12            13         18
9891    12            13         19
9892    12            13         20
9893    12            13         21
9894    12            13         22
9895    12            13         23
9896    12            13         24
9897    12            13         25
9898    12            14          1
9899    12            14          2
9900    12            14          3
9901    12            14          4
9902    12            14          5
9903    12            14          6
9904    12            14          7
9905    12            14          8
9906    12            14          9
9907    12            14         10
9908    12            14         11
9909    12            14         12
9910    12            14         13
9911    12            14         14
9912    12            14         15
9913    12            14         16
9914    12            14         17
9915    12            14         18
9916    12            14         19
9917    12            14         20
9918    12            14         21
9919    12            14         22
9920    12            14         23
9921    12            14         24
9922    12            14         25
9923    12            14         26
9924    12            14         27
9925    12            14         28
9926    12            14         29
9927    12            15          1
9928    12            15          2
9929    12            15          3
9930    12            15          4
9931    12            15          5
9932    12            15          6
9933    12            15          7
9934    12            15          8
9935    12            15          9
9936    12            15         10
9937    12            15         11
9938    12            15         12
9939    12            15         13
9940    12            15         14
9941    12            15         15
9942    12            15         16
9943    12            15         17
9944    12            15         18
9945    12            15         19
9946    12            15         20
9947    12            15         21
9948    12            15         22
9949    12            15         23
9950    12            15         24
9951    12            15         25
9952    12            15         26
9953    12            15         27
9954    12            15         28
9955    12            15         29
9956    12            15         30
9957    12            15         31
9958    12            15         32
9959    12            15         33
9960    12            15         34
9961    12            15         35
9962    12            15         36
9963    12            15         37
9964    12            15         38
9965    12            16          1
9966    12            16          2
9967    12            16          3
9968    12            16          4
9969    12            16          5
9970    12            16          6
9971    12            16          7
9972    12            16          8
9973    12            16          9
9974    12            16         10
9975    12            16         11
9976    12            16         12
9977    12            16         13
9978    12            16         14
9979    12            16         15
9980    12            16         16
9981    12            16         17
9982    12            16         18
9983    12            16         19
9984    12            16         20
9985    12            17          1
9986    12            17          2
9987    12            17          3
9988    12            17          4
9989    12            17          5
9990    12            17          6
9991    12            17          7
9992    12            17          8
9993    12            17          9
9994    12            17         10
9995    12            17         11
9996    12            17         12
9997    12            17         13
9998    12            17         14
9999    12            17         15
10000   12            17         16
10001   12            17         17
10002   12            17         18
10003   12            17         19
10004   12            17         20
10005   12            17         21
10006   12            17         22
10007   12            17         23
10008   12            17         24
10009   12            17         25
10010   12            17         26
10011   12            17         27
10012   12            17         28
10013   12            17         29
10014   12            17         30
10015   12            17         31
10016   12            17         32
10017   12            17         33
10018   12            17         34
10019   12            17         35
10020   12            17         36
10021   12            17         37
10022   12            17         38
10023   12            17         39
10024   12            17         40
10025   12            17         41
10026   12            18          1
10027   12            18          2
10028   12            18          3
10029   12            18          4
10030   12            18          5
10031   12            18          6
10032   12            18          7
10033   12            18          8
10034   12            18          9
10035   12            18         10
10036   12            18         11
10037   12            18         12
10038   12            18         13
10039   12            18         14
10040   12            18         15
10041   12            18         16
10042   12            18         17
10043   12            18         18
10044   12            18         19
10045   12            18         20
10046   12            18         21
10047   12            18         22
10048   12            18         23
10049   12            18         24
10050   12            18         25
10051   12            18         26
10052   12            18         27
10053   12            18         28
10054   12            18         29
10055   12            18         30
10056   12            18         31
10057   12            18         32
10058   12            18         33
10059   12            18         34
10060   12            18         35
10061   12            18         36
10062   12            18         37
10063   12            19          1
10064   12            19          2
10065   12            19          3
10066   12            19          4
10067   12            19          5
10068   12            19          6
10069   12            19          7
10070   12            19          8
10071   12            19          9
10072   12            19         10
10073   12            19         11
10074   12            19         12
10075   12            19         13
10076   12            19         14
10077   12            19         15
10078   12            19         16
10079   12            19         17
10080   12            19         18
10081   12            19         19
10082   12            19         20
10083   12            19         21
10084   12            19         22
10085   12            19         23
10086   12            19         24
10087   12            19         25
10088   12            19         26
10089   12            19         27
10090   12            19         28
10091   12            19         29
10092   12            19         30
10093   12            19         31
10094   12            19         32
10095   12            19         33
10096   12            19         34
10097   12            19         35
10098   12            19         36
10099   12            19         37
10100   12            20          1
10101   12            20          2
10102   12            20          3
10103   12            20          4
10104   12            20          5
10105   12            20          6
10106   12            20          7
10107   12            20          8
10108   12            20          9
10109   12            20         10
10110   12            20         11
10111   12            20         12
10112   12            20         13
10113   12            20         14
10114   12            20         15
10115   12            20         16
10116   12            20         17
10117   12            20         18
10118   12            20         19
10119   12            20         20
10120   12            20         21
10121   12            21          1
10122   12            21          2
10123   12            21          3
10124   12            21          4
10125   12            21          5
10126   12            21          6
10127   12            21          7
10128   12            21          8
10129   12            21          9
10130   12            21         10
10131   12            21         11
10132   12            21         12
10133   12            21         13
10134   12            21         14
10135   12            21         15
10136   12            21         16
10137   12            21         17
10138   12            21         18
10139   12            21         19
10140   12            21         20
10141   12            21         21
10142   12            21         22
10143   12            21         23
10144   12            21         24
10145   12            21         25
10146   12            21         26
10147   12            22          1
10148   12            22          2
10149   12            22          3
10150   12            22          4
10151   12            22          5
10152   12            22          6
10153   12            22          7
10154   12            22          8
10155   12            22          9
10156   12            22         10
10157   12            22         11
10158   12            22         12
10159   12            22         13
10160   12            22         14
10161   12            22         15
10162   12            22         16
10163   12            22         17
10164   12            22         18
10165   12            22         19
10166   12            22         20
10167   12            23          1
10168   12            23          2
10169   12            23          3
10170   12            23          4
10171   12            23          5
10172   12            23          6
10173   12            23          7
10174   12            23          8
10175   12            23          9
10176   12            23         10
10177   12            23         11
10178   12            23         12
10179   12            23         13
10180   12            23         14
10181   12            23         15
10182   12            23         16
10183   12            23         17
10184   12            23         18
10185   12            23         19
10186   12            23         20
10187   12            23         21
10188   12            23         22
10189   12            23         23
10190   12            23         24
10191   12            23         25
10192   12            23         26
10193   12            23         27
10194   12            23         28
10195   12            23         29
10196   12            23         30
10197   12            23         31
10198   12            23         32
10199   12            23         33
10200   12            23         34
10201   12            23         35
10202   12            23         36
10203   12            23         37
10204   12            24          1
10205   12            24          2
10206   12            24          3
10207   12            24          4
10208   12            24          5
10209   12            24          6
10210   12            24          7
10211   12            24          8
10212   12            24          9
10213   12            24         10
10214   12            24         11
10215   12            24         12
10216   12            24         13
10217   12            24         14
10218   12            24         15
10219   12            24         16
10220   12            24         17
10221   12            24         18
10222   12            24         19
10223   12            24         20
10224   12            25          1
10225   12            25          2
10226   12            25          3
10227   12            25          4
10228   12            25          5
10229   12            25          6
10230   12            25          7
10231   12            25          8
10232   12            25          9
10233   12            25         10
10234   12            25         11
10235   12            25         12
10236   12            25         13
10237   12            25         14
10238   12            25         15
10239   12            25         16
10240   12            25         17
10241   12            25         18
10242   12            25         19
10243   12            25         20
10244   12            25         21
10245   12            25         22
10246   12            25         23
10247   12            25         24
10248   12            25         25
10249   12            25         26
10250   12            25         27
10251   12            25         28
10252   12            25         29
10253   12            25         30
10254   13             1          1
10255   13             1          2
10256   13             1          3
10257   13             1          4
10258   13             1          5
10259   13             1          6
10260   13             1          7
10261   13             1          8
10262   13             1          9
10263   13             1         10
10264   13             1         11
10265   13             1         12
10266   13             1         13
10267   13             1         14
10268   13             1         15
10269   13             1         16
10270   13             1         17
10271   13             1         18
10272   13             1         19
10273   13             1         20
10274   13             1         21
10275   13             1         22
10276   13             1         23
10277   13             1         24
10278   13             1         25
10279   13             1         26
10280   13             1         27
10281   13             1         28
10282   13             1         29
10283   13             1         30
10284   13             1         31
10285   13             1         32
10286   13             1         33
10287   13             1         34
10288   13             1         35
10289   13             1         36
10290   13             1         37
10291   13             1         38
10292   13             1         39
10293   13             1         40
10294   13             1         41
10295   13             1         42
10296   13             1         43
10297   13             1         44
10298   13             1         45
10299   13             1         46
10300   13             1         47
10301   13             1         48
10302   13             1         49
10303   13             1         50
10304   13             1         51
10305   13             1         52
10306   13             1         53
10307   13             1         54
10308   13             2          1
10309   13             2          2
10310   13             2          3
10311   13             2          4
10312   13             2          5
10313   13             2          6
10314   13             2          7
10315   13             2          8
10316   13             2          9
10317   13             2         10
10318   13             2         11
10319   13             2         12
10320   13             2         13
10321   13             2         14
10322   13             2         15
10323   13             2         16
10324   13             2         17
10325   13             2         18
10326   13             2         19
10327   13             2         20
10328   13             2         21
10329   13             2         22
10330   13             2         23
10331   13             2         24
10332   13             2         25
10333   13             2         26
10334   13             2         27
10335   13             2         28
10336   13             2         29
10337   13             2         30
10338   13             2         31
10339   13             2         32
10340   13             2         33
10341   13             2         34
10342   13             2         35
10343   13             2         36
10344   13             2         37
10345   13             2         38
10346   13             2         39
10347   13             2         40
10348   13             2         41
10349   13             2         42
10350   13             2         43
10351   13             2         44
10352   13             2         45
10353   13             2         46
10354   13             2         47
10355   13             2         48
10356   13             2         49
10357   13             2         50
10358   13             2         51
10359   13             2         52
10360   13             2         53
10361   13             2         54
10362   13             2         55
10363   13             3          1
10364   13             3          2
10365   13             3          3
10366   13             3          4
10367   13             3          5
10368   13             3          6
10369   13             3          7
10370   13             3          8
10371   13             3          9
10372   13             3         10
10373   13             3         11
10374   13             3         12
10375   13             3         13
10376   13             3         14
10377   13             3         15
10378   13             3         16
10379   13             3         17
10380   13             3         18
10381   13             3         19
10382   13             3         20
10383   13             3         21
10384   13             3         22
10385   13             3         23
10386   13             3         24
10387   13             4          1
10388   13             4          2
10389   13             4          3
10390   13             4          4
10391   13             4          5
10392   13             4          6
10393   13             4          7
10394   13             4          8
10395   13             4          9
10396   13             4         10
10397   13             4         11
10398   13             4         12
10399   13             4         13
10400   13             4         14
10401   13             4         15
10402   13             4         16
10403   13             4         17
10404   13             4         18
10405   13             4         19
10406   13             4         20
10407   13             4         21
10408   13             4         22
10409   13             4         23
10410   13             4         24
10411   13             4         25
10412   13             4         26
10413   13             4         27
10414   13             4         28
10415   13             4         29
10416   13             4         30
10417   13             4         31
10418   13             4         32
10419   13             4         33
10420   13             4         34
10421   13             4         35
10422   13             4         36
10423   13             4         37
10424   13             4         38
10425   13             4         39
10426   13             4         40
10427   13             4         41
10428   13             4         42
10429   13             4         43
10430   13             5          1
10431   13             5          2
10432   13             5          3
10433   13             5          4
10434   13             5          5
10435   13             5          6
10436   13             5          7
10437   13             5          8
10438   13             5          9
10439   13             5         10
10440   13             5         11
10441   13             5         12
10442   13             5         13
10443   13             5         14
10444   13             5         15
10445   13             5         16
10446   13             5         17
10447   13             5         18
10448   13             5         19
10449   13             5         20
10450   13             5         21
10451   13             5         22
10452   13             5         23
10453   13             5         24
10454   13             5         25
10455   13             5         26
10456   13             6          1
10457   13             6          2
10458   13             6          3
10459   13             6          4
10460   13             6          5
10461   13             6          6
10462   13             6          7
10463   13             6          8
10464   13             6          9
10465   13             6         10
10466   13             6         11
10467   13             6         12
10468   13             6         13
10469   13             6         14
10470   13             6         15
10471   13             6         16
10472   13             6         17
10473   13             6         18
10474   13             6         19
10475   13             6         20
10476   13             6         21
10477   13             6         22
10478   13             6         23
10479   13             6         24
10480   13             6         25
10481   13             6         26
10482   13             6         27
10483   13             6         28
10484   13             6         29
10485   13             6         30
10486   13             6         31
10487   13             6         32
10488   13             6         33
10489   13             6         34
10490   13             6         35
10491   13             6         36
10492   13             6         37
10493   13             6         38
10494   13             6         39
10495   13             6         40
10496   13             6         41
10497   13             6         42
10498   13             6         43
10499   13             6         44
10500   13             6         45
10501   13             6         46
10502   13             6         47
10503   13             6         48
10504   13             6         49
10505   13             6         50
10506   13             6         51
10507   13             6         52
10508   13             6         53
10509   13             6         54
10510   13             6         55
10511   13             6         56
10512   13             6         57
10513   13             6         58
10514   13             6         59
10515   13             6         60
10516   13             6         61
10517   13             6         62
10518   13             6         63
10519   13             6         64
10520   13             6         65
10521   13             6         66
10522   13             6         67
10523   13             6         68
10524   13             6         69
10525   13             6         70
10526   13             6         71
10527   13             6         72
10528   13             6         73
10529   13             6         74
10530   13             6         75
10531   13             6         76
10532   13             6         77
10533   13             6         78
10534   13             6         79
10535   13             6         80
10536   13             6         81
10537   13             7          1
10538   13             7          2
10539   13             7          3
10540   13             7          4
10541   13             7          5
10542   13             7          6
10543   13             7          7
10544   13             7          8
10545   13             7          9
10546   13             7         10
10547   13             7         11
10548   13             7         12
10549   13             7         13
10550   13             7         14
10551   13             7         15
10552   13             7         16
10553   13             7         17
10554   13             7         18
10555   13             7         19
10556   13             7         20
10557   13             7         21
10558   13             7         22
10559   13             7         23
10560   13             7         24
10561   13             7         25
10562   13             7         26
10563   13             7         27
10564   13             7         28
10565   13             7         29
10566   13             7         30
10567   13             7         31
10568   13             7         32
10569   13             7         33
10570   13             7         34
10571   13             7         35
10572   13             7         36
10573   13             7         37
10574   13             7         38
10575   13             7         39
10576   13             7         40
10577   13             8          1
10578   13             8          2
10579   13             8          3
10580   13             8          4
10581   13             8          5
10582   13             8          6
10583   13             8          7
10584   13             8          8
10585   13             8          9
10586   13             8         10
10587   13             8         11
10588   13             8         12
10589   13             8         13
10590   13             8         14
10591   13             8         15
10592   13             8         16
10593   13             8         17
10594   13             8         18
10595   13             8         19
10596   13             8         20
10597   13             8         21
10598   13             8         22
10599   13             8         23
10600   13             8         24
10601   13             8         25
10602   13             8         26
10603   13             8         27
10604   13             8         28
10605   13             8         29
10606   13             8         30
10607   13             8         31
10608   13             8         32
10609   13             8         33
10610   13             8         34
10611   13             8         35
10612   13             8         36
10613   13             8         37
10614   13             8         38
10615   13             8         39
10616   13             8         40
10617   13             9          1
10618   13             9          2
10619   13             9          3
10620   13             9          4
10621   13             9          5
10622   13             9          6
10623   13             9          7
10624   13             9          8
10625   13             9          9
10626   13             9         10
10627   13             9         11
10628   13             9         12
10629   13             9         13
10630   13             9         14
10631   13             9         15
10632   13             9         16
10633   13             9         17
10634   13             9         18
10635   13             9         19
10636   13             9         20
10637   13             9         21
10638   13             9         22
10639   13             9         23
10640   13             9         24
10641   13             9         25
10642   13             9         26
10643   13             9         27
10644   13             9         28
10645   13             9         29
10646   13             9         30
10647   13             9         31
10648   13             9         32
10649   13             9         33
10650   13             9         34
10651   13             9         35
10652   13             9         36
10653   13             9         37
10654   13             9         38
10655   13             9         39
10656   13             9         40
10657   13             9         41
10658   13             9         42
10659   13             9         43
10660   13             9         44
10661   13            10          1
10662   13            10          2
10663   13            10          3
10664   13            10          4
10665   13            10          5
10666   13            10          6
10667   13            10          7
10668   13            10          8
10669   13            10          9
10670   13            10         10
10671   13            10         11
10672   13            10         12
10673   13            10         13
10674   13            10         14
10675   13            11          1
10676   13            11          2
10677   13            11          3
10678   13            11          4
10679   13            11          5
10680   13            11          6
10681   13            11          7
10682   13            11          8
10683   13            11          9
10684   13            11         10
10685   13            11         11
10686   13            11         12
10687   13            11         13
10688   13            11         14
10689   13            11         15
10690   13            11         16
10691   13            11         17
10692   13            11         18
10693   13            11         19
10694   13            11         20
10695   13            11         21
10696   13            11         22
10697   13            11         23
10698   13            11         24
10699   13            11         25
10700   13            11         26
10701   13            11         27
10702   13            11         28
10703   13            11         29
10704   13            11         30
10705   13            11         31
10706   13            11         32
10707   13            11         33
10708   13            11         34
10709   13            11         35
10710   13            11         36
10711   13            11         37
10712   13            11         38
10713   13            11         39
10714   13            11         40
10715   13            11         41
10716   13            11         42
10717   13            11         43
10718   13            11         44
10719   13            11         45
10720   13            11         46
10721   13            11         47
10722   13            12          1
10723   13            12          2
10724   13            12          3
10725   13            12          4
10726   13            12          5
10727   13            12          6
10728   13            12          7
10729   13            12          8
10730   13            12          9
10731   13            12         10
10732   13            12         11
10733   13            12         12
10734   13            12         13
10735   13            12         14
10736   13            12         15
10737   13            12         16
10738   13            12         17
10739   13            12         18
10740   13            12         19
10741   13            12         20
10742   13            12         21
10743   13            12         22
10744   13            12         23
10745   13            12         24
10746   13            12         25
10747   13            12         26
10748   13            12         27
10749   13            12         28
10750   13            12         29
10751   13            12         30
10752   13            12         31
10753   13            12         32
10754   13            12         33
10755   13            12         34
10756   13            12         35
10757   13            12         36
10758   13            12         37
10759   13            12         38
10760   13            12         39
10761   13            12         40
10762   13            13          1
10763   13            13          2
10764   13            13          3
10765   13            13          4
10766   13            13          5
10767   13            13          6
10768   13            13          7
10769   13            13          8
10770   13            13          9
10771   13            13         10
10772   13            13         11
10773   13            13         12
10774   13            13         13
10775   13            13         14
10776   13            14          1
10777   13            14          2
10778   13            14          3
10779   13            14          4
10780   13            14          5
10781   13            14          6
10782   13            14          7
10783   13            14          8
10784   13            14          9
10785   13            14         10
10786   13            14         11
10787   13            14         12
10788   13            14         13
10789   13            14         14
10790   13            14         15
10791   13            14         16
10792   13            14         17
10793   13            15          1
10794   13            15          2
10795   13            15          3
10796   13            15          4
10797   13            15          5
10798   13            15          6
10799   13            15          7
10800   13            15          8
10801   13            15          9
10802   13            15         10
10803   13            15         11
10804   13            15         12
10805   13            15         13
10806   13            15         14
10807   13            15         15
10808   13            15         16
10809   13            15         17
10810   13            15         18
10811   13            15         19
10812   13            15         20
10813   13            15         21
10814   13            15         22
10815   13            15         23
10816   13            15         24
10817   13            15         25
10818   13            15         26
10819   13            15         27
10820   13            15         28
10821   13            15         29
10822   13            16          1
10823   13            16          2
10824   13            16          3
10825   13            16          4
10826   13            16          5
10827   13            16          6
10828   13            16          7
10829   13            16          8
10830   13            16          9
10831   13            16         10
10832   13            16         11
10833   13            16         12
10834   13            16         13
10835   13            16         14
10836   13            16         15
10837   13            16         16
10838   13            16         17
10839   13            16         18
10840   13            16         19
10841   13            16         20
10842   13            16         21
10843   13            16         22
10844   13            16         23
10845   13            16         24
10846   13            16         25
10847   13            16         26
10848   13            16         27
10849   13            16         28
10850   13            16         29
10851   13            16         30
10852   13            16         31
10853   13            16         32
10854   13            16         33
10855   13            16         34
10856   13            16         35
10857   13            16         36
10858   13            16         37
10859   13            16         38
10860   13            16         39
10861   13            16         40
10862   13            16         41
10863   13            16         42
10864   13            16         43
10865   13            17          1
10866   13            17          2
10867   13            17          3
10868   13            17          4
10869   13            17          5
10870   13            17          6
10871   13            17          7
10872   13            17          8
10873   13            17          9
10874   13            17         10
10875   13            17         11
10876   13            17         12
10877   13            17         13
10878   13            17         14
10879   13            17         15
10880   13            17         16
10881   13            17         17
10882   13            17         18
10883   13            17         19
10884   13            17         20
10885   13            17         21
10886   13            17         22
10887   13            17         23
10888   13            17         24
10889   13            17         25
10890   13            17         26
10891   13            17         27
10892   13            18          1
10893   13            18          2
10894   13            18          3
10895   13            18          4
10896   13            18          5
10897   13            18          6
10898   13            18          7
10899   13            18          8
10900   13            18          9
10901   13            18         10
10902   13            18         11
10903   13            18         12
10904   13            18         13
10905   13            18         14
10906   13            18         15
10907   13            18         16
10908   13            18         17
10909   13            19          1
10910   13            19          2
10911   13            19          3
10912   13            19          4
10913   13            19          5
10914   13            19          6
10915   13            19          7
10916   13            19          8
10917   13            19          9
10918   13            19         10
10919   13            19         11
10920   13            19         12
10921   13            19         13
10922   13            19         14
10923   13            19         15
10924   13            19         16
10925   13            19         17
10926   13            19         18
10927   13            19         19
10928   13            20          1
10929   13            20          2
10930   13            20          3
10931   13            20          4
10932   13            20          5
10933   13            20          6
10934   13            20          7
10935   13            20          8
10936   13            21          1
10937   13            21          2
10938   13            21          3
10939   13            21          4
10940   13            21          5
10941   13            21          6
10942   13            21          7
10943   13            21          8
10944   13            21          9
10945   13            21         10
10946   13            21         11
10947   13            21         12
10948   13            21         13
10949   13            21         14
10950   13            21         15
10951   13            21         16
10952   13            21         17
10953   13            21         18
10954   13            21         19
10955   13            21         20
10956   13            21         21
10957   13            21         22
10958   13            21         23
10959   13            21         24
10960   13            21         25
10961   13            21         26
10962   13            21         27
10963   13            21         28
10964   13            21         29
10965   13            21         30
10966   13            22          1
10967   13            22          2
10968   13            22          3
10969   13            22          4
10970   13            22          5
10971   13            22          6
10972   13            22          7
10973   13            22          8
10974   13            22          9
10975   13            22         10
10976   13            22         11
10977   13            22         12
10978   13            22         13
10979   13            22         14
10980   13            22         15
10981   13            22         16
10982   13            22         17
10983   13            22         18
10984   13            22         19
10985   13            23          1
10986   13            23          2
10987   13            23          3
10988   13            23          4
10989   13            23          5
10990   13            23          6
10991   13            23          7
10992   13            23          8
10993   13            23          9
10994   13            23         10
10995   13            23         11
10996   13            23         12
10997   13            23         13
10998   13            23         14
10999   13            23         15
11000   13            23         16
11001   13            23         17
11002   13            23         18
11003   13            23         19
11004   13            23         20
11005   13            23         21
11006   13            23         22
11007   13            23         23
11008   13            23         24
11009   13            23         25
11010   13            23         26
11011   13            23         27
11012   13            23         28
11013   13            23         29
11014   13            23         30
11015   13            23         31
11016   13            23         32
11017   13            24          1
11018   13            24          2
11019   13            24          3
11020   13            24          4
11021   13            24          5
11022   13            24          6
11023   13            24          7
11024   13            24          8
11025   13            24          9
11026   13            24         10
11027   13            24         11
11028   13            24         12
11029   13            24         13
11030   13            24         14
11031   13            24         15
11032   13            24         16
11033   13            24         17
11034   13            24         18
11035   13            24         19
11036   13            24         20
11037   13            24         21
11038   13            24         22
11039   13            24         23
11040   13            24         24
11041   13            24         25
11042   13            24         26
11043   13            24         27
11044   13            24         28
11045   13            24         29
11046   13            24         30
11047   13            24         31
11048   13            25          1
11049   13            25          2
11050   13            25          3
11051   13            25          4
11052   13            25          5
11053   13            25          6
11054   13            25          7
11055   13            25          8
11056   13            25          9
11057   13            25         10
11058   13            25         11
11059   13            25         12
11060   13            25         13
11061   13            25         14
11062   13            25         15
11063   13            25         16
11064   13            25         17
11065   13            25         18
11066   13            25         19
11067   13            25         20
11068   13            25         21
11069   13            25         22
11070   13            25         23
11071   13            25         24
11072   13            25         25
11073   13            25         26
11074   13            25         27
11075   13            25         28
11076   13            25         29
11077   13            25         30
11078   13            25         31
11079   13            26          1
11080   13            26          2
11081   13            26          3
11082   13            26          4
11083   13            26          5
11084   13            26          6
11085   13            26          7
11086   13            26          8
11087   13            26          9
11088   13            26         10
11089   13            26         11
11090   13            26         12
11091   13            26         13
11092   13            26         14
11093   13            26         15
11094   13            26         16
11095   13            26         17
11096   13            26         18
11097   13            26         19
11098   13            26         20
11099   13            26         21
11100   13            26         22
11101   13            26         23
11102   13            26         24
11103   13            26         25
11104   13            26         26
11105   13            26         27
11106   13            26         28
11107   13            26         29
11108   13            26         30
11109   13            26         31
11110   13            26         32
11111   13            27          1
11112   13            27          2
11113   13            27          3
11114   13            27          4
11115   13            27          5
11116   13            27          6
11117   13            27          7
11118   13            27          8
11119   13            27          9
11120   13            27         10
11121   13            27         11
11122   13            27         12
11123   13            27         13
11124   13            27         14
11125   13            27         15
11126   13            27         16
11127   13            27         17
11128   13            27         18
11129   13            27         19
11130   13            27         20
11131   13            27         21
11132   13            27         22
11133   13            27         23
11134   13            27         24
11135   13            27         25
11136   13            27         26
11137   13            27         27
11138   13            27         28
11139   13            27         29
11140   13            27         30
11141   13            27         31
11142   13            27         32
11143   13            27         33
11144   13            27         34
11145   13            28          1
11146   13            28          2
11147   13            28          3
11148   13            28          4
11149   13            28          5
11150   13            28          6
11151   13            28          7
11152   13            28          8
11153   13            28          9
11154   13            28         10
11155   13            28         11
11156   13            28         12
11157   13            28         13
11158   13            28         14
11159   13            28         15
11160   13            28         16
11161   13            28         17
11162   13            28         18
11163   13            28         19
11164   13            28         20
11165   13            28         21
11166   13            29          1
11167   13            29          2
11168   13            29          3
11169   13            29          4
11170   13            29          5
11171   13            29          6
11172   13            29          7
11173   13            29          8
11174   13            29          9
11175   13            29         10
11176   13            29         11
11177   13            29         12
11178   13            29         13
11179   13            29         14
11180   13            29         15
11181   13            29         16
11182   13            29         17
11183   13            29         18
11184   13            29         19
11185   13            29         20
11186   13            29         21
11187   13            29         22
11188   13            29         23
11189   13            29         24
11190   13            29         25
11191   13            29         26
11192   13            29         27
11193   13            29         28
11194   13            29         29
11195   13            29         30
11196   14             1          1
11197   14             1          2
11198   14             1          3
11199   14             1          4
11200   14             1          5
11201   14             1          6
11202   14             1          7
11203   14             1          8
11204   14             1          9
11205   14             1         10
11206   14             1         11
11207   14             1         12
11208   14             1         13
11209   14             1         14
11210   14             1         15
11211   14             1         16
11212   14             1         17
11213   14             2          1
11214   14             2          2
11215   14             2          3
11216   14             2          4
11217   14             2          5
11218   14             2          6
11219   14             2          7
11220   14             2          8
11221   14             2          9
11222   14             2         10
11223   14             2         11
11224   14             2         12
11225   14             2         13
11226   14             2         14
11227   14             2         15
11228   14             2         16
11229   14             2         17
11230   14             2         18
11231   14             3          1
11232   14             3          2
11233   14             3          3
11234   14             3          4
11235   14             3          5
11236   14             3          6
11237   14             3          7
11238   14             3          8
11239   14             3          9
11240   14             3         10
11241   14             3         11
11242   14             3         12
11243   14             3         13
11244   14             3         14
11245   14             3         15
11246   14             3         16
11247   14             3         17
11248   14             4          1
11249   14             4          2
11250   14             4          3
11251   14             4          4
11252   14             4          5
11253   14             4          6
11254   14             4          7
11255   14             4          8
11256   14             4          9
11257   14             4         10
11258   14             4         11
11259   14             4         12
11260   14             4         13
11261   14             4         14
11262   14             4         15
11263   14             4         16
11264   14             4         17
11265   14             4         18
11266   14             4         19
11267   14             4         20
11268   14             4         21
11269   14             4         22
11270   14             5          1
11271   14             5          2
11272   14             5          3
11273   14             5          4
11274   14             5          5
11275   14             5          6
11276   14             5          7
11277   14             5          8
11278   14             5          9
11279   14             5         10
11280   14             5         11
11281   14             5         12
11282   14             5         13
11283   14             5         14
11284   14             6          1
11285   14             6          2
11286   14             6          3
11287   14             6          4
11288   14             6          5
11289   14             6          6
11290   14             6          7
11291   14             6          8
11292   14             6          9
11293   14             6         10
11294   14             6         11
11295   14             6         12
11296   14             6         13
11297   14             6         14
11298   14             6         15
11299   14             6         16
11300   14             6         17
11301   14             6         18
11302   14             6         19
11303   14             6         20
11304   14             6         21
11305   14             6         22
11306   14             6         23
11307   14             6         24
11308   14             6         25
11309   14             6         26
11310   14             6         27
11311   14             6         28
11312   14             6         29
11313   14             6         30
11314   14             6         31
11315   14             6         32
11316   14             6         33
11317   14             6         34
11318   14             6         35
11319   14             6         36
11320   14             6         37
11321   14             6         38
11322   14             6         39
11323   14             6         40
11324   14             6         41
11325   14             6         42
11326   14             7          1
11327   14             7          2
11328   14             7          3
11329   14             7          4
11330   14             7          5
11331   14             7          6
11332   14             7          7
11333   14             7          8
11334   14             7          9
11335   14             7         10
11336   14             7         11
11337   14             7         12
11338   14             7         13
11339   14             7         14
11340   14             7         15
11341   14             7         16
11342   14             7         17
11343   14             7         18
11344   14             7         19
11345   14             7         20
11346   14             7         21
11347   14             7         22
11348   14             8          1
11349   14             8          2
11350   14             8          3
11351   14             8          4
11352   14             8          5
11353   14             8          6
11354   14             8          7
11355   14             8          8
11356   14             8          9
11357   14             8         10
11358   14             8         11
11359   14             8         12
11360   14             8         13
11361   14             8         14
11362   14             8         15
11363   14             8         16
11364   14             8         17
11365   14             8         18
11366   14             9          1
11367   14             9          2
11368   14             9          3
11369   14             9          4
11370   14             9          5
11371   14             9          6
11372   14             9          7
11373   14             9          8
11374   14             9          9
11375   14             9         10
11376   14             9         11
11377   14             9         12
11378   14             9         13
11379   14             9         14
11380   14             9         15
11381   14             9         16
11382   14             9         17
11383   14             9         18
11384   14             9         19
11385   14             9         20
11386   14             9         21
11387   14             9         22
11388   14             9         23
11389   14             9         24
11390   14             9         25
11391   14             9         26
11392   14             9         27
11393   14             9         28
11394   14             9         29
11395   14             9         30
11396   14             9         31
11397   14            10          1
11398   14            10          2
11399   14            10          3
11400   14            10          4
11401   14            10          5
11402   14            10          6
11403   14            10          7
11404   14            10          8
11405   14            10          9
11406   14            10         10
11407   14            10         11
11408   14            10         12
11409   14            10         13
11410   14            10         14
11411   14            10         15
11412   14            10         16
11413   14            10         17
11414   14            10         18
11415   14            10         19
11416   14            11          1
11417   14            11          2
11418   14            11          3
11419   14            11          4
11420   14            11          5
11421   14            11          6
11422   14            11          7
11423   14            11          8
11424   14            11          9
11425   14            11         10
11426   14            11         11
11427   14            11         12
11428   14            11         13
11429   14            11         14
11430   14            11         15
11431   14            11         16
11432   14            11         17
11433   14            11         18
11434   14            11         19
11435   14            11         20
11436   14            11         21
11437   14            11         22
11438   14            11         23
11439   14            12          1
11440   14            12          2
11441   14            12          3
11442   14            12          4
11443   14            12          5
11444   14            12          6
11445   14            12          7
11446   14            12          8
11447   14            12          9
11448   14            12         10
11449   14            12         11
11450   14            12         12
11451   14            12         13
11452   14            12         14
11453   14            12         15
11454   14            12         16
11455   14            13          1
11456   14            13          2
11457   14            13          3
11458   14            13          4
11459   14            13          5
11460   14            13          6
11461   14            13          7
11462   14            13          8
11463   14            13          9
11464   14            13         10
11465   14            13         11
11466   14            13         12
11467   14            13         13
11468   14            13         14
11469   14            13         15
11470   14            13         16
11471   14            13         17
11472   14            13         18
11473   14            13         19
11474   14            13         20
11475   14            13         21
11476   14            13         22
11477   14            14          1
11478   14            14          2
11479   14            14          3
11480   14            14          4
11481   14            14          5
11482   14            14          6
11483   14            14          7
11484   14            14          8
11485   14            14          9
11486   14            14         10
11487   14            14         11
11488   14            14         12
11489   14            14         13
11490   14            14         14
11491   14            14         15
11492   14            15          1
11493   14            15          2
11494   14            15          3
11495   14            15          4
11496   14            15          5
11497   14            15          6
11498   14            15          7
11499   14            15          8
11500   14            15          9
11501   14            15         10
11502   14            15         11
11503   14            15         12
11504   14            15         13
11505   14            15         14
11506   14            15         15
11507   14            15         16
11508   14            15         17
11509   14            15         18
11510   14            15         19
11511   14            16          1
11512   14            16          2
11513   14            16          3
11514   14            16          4
11515   14            16          5
11516   14            16          6
11517   14            16          7
11518   14            16          8
11519   14            16          9
11520   14            16         10
11521   14            16         11
11522   14            16         12
11523   14            16         13
11524   14            16         14
11525   14            17          1
11526   14            17          2
11527   14            17          3
11528   14            17          4
11529   14            17          5
11530   14            17          6
11531   14            17          7
11532   14            17          8
11533   14            17          9
11534   14            17         10
11535   14            17         11
11536   14            17         12
11537   14            17         13
11538   14            17         14
11539   14            17         15
11540   14            17         16
11541   14            17         17
11542   14            17         18
11543   14            17         19
11544   14            18          1
11545   14            18          2
11546   14            18          3
11547   14            18          4
11548   14            18          5
11549   14            18          6
11550   14            18          7
11551   14            18          8
11552   14            18          9
11553   14            18         10
11554   14            18         11
11555   14            18         12
11556   14            18         13
11557   14            18         14
11558   14            18         15
11559   14            18         16
11560   14            18         17
11561   14            18         18
11562   14            18         19
11563   14            18         20
11564   14            18         21
11565   14            18         22
11566   14            18         23
11567   14            18         24
11568   14            18         25
11569   14            18         26
11570   14            18         27
11571   14            18         28
11572   14            18         29
11573   14            18         30
11574   14            18         31
11575   14            18         32
11576   14            18         33
11577   14            18         34
11578   14            19          1
11579   14            19          2
11580   14            19          3
11581   14            19          4
11582   14            19          5
11583   14            19          6
11584   14            19          7
11585   14            19          8
11586   14            19          9
11587   14            19         10
11588   14            19         11
11589   14            20          1
11590   14            20          2
11591   14            20          3
11592   14            20          4
11593   14            20          5
11594   14            20          6
11595   14            20          7
11596   14            20          8
11597   14            20          9
11598   14            20         10
11599   14            20         11
11600   14            20         12
11601   14            20         13
11602   14            20         14
11603   14            20         15
11604   14            20         16
11605   14            20         17
11606   14            20         18
11607   14            20         19
11608   14            20         20
11609   14            20         21
11610   14            20         22
11611   14            20         23
11612   14            20         24
11613   14            20         25
11614   14            20         26
11615   14            20         27
11616   14            20         28
11617   14            20         29
11618   14            20         30
11619   14            20         31
11620   14            20         32
11621   14            20         33
11622   14            20         34
11623   14            20         35
11624   14            20         36
11625   14            20         37
11626   14            21          1
11627   14            21          2
11628   14            21          3
11629   14            21          4
11630   14            21          5
11631   14            21          6
11632   14            21          7
11633   14            21          8
11634   14            21          9
11635   14            21         10
11636   14            21         11
11637   14            21         12
11638   14            21         13
11639   14            21         14
11640   14            21         15
11641   14            21         16
11642   14            21         17
11643   14            21         18
11644   14            21         19
11645   14            21         20
11646   14            22          1
11647   14            22          2
11648   14            22          3
11649   14            22          4
11650   14            22          5
11651   14            22          6
11652   14            22          7
11653   14            22          8
11654   14            22          9
11655   14            22         10
11656   14            22         11
11657   14            22         12
11658   14            23          1
11659   14            23          2
11660   14            23          3
11661   14            23          4
11662   14            23          5
11663   14            23          6
11664   14            23          7
11665   14            23          8
11666   14            23          9
11667   14            23         10
11668   14            23         11
11669   14            23         12
11670   14            23         13
11671   14            23         14
11672   14            23         15
11673   14            23         16
11674   14            23         17
11675   14            23         18
11676   14            23         19
11677   14            23         20
11678   14            23         21
11679   14            24          1
11680   14            24          2
11681   14            24          3
11682   14            24          4
11683   14            24          5
11684   14            24          6
11685   14            24          7
11686   14            24          8
11687   14            24          9
11688   14            24         10
11689   14            24         11
11690   14            24         12
11691   14            24         13
11692   14            24         14
11693   14            24         15
11694   14            24         16
11695   14            24         17
11696   14            24         18
11697   14            24         19
11698   14            24         20
11699   14            24         21
11700   14            24         22
11701   14            24         23
11702   14            24         24
11703   14            24         25
11704   14            24         26
11705   14            24         27
11706   14            25          1
11707   14            25          2
11708   14            25          3
11709   14            25          4
11710   14            25          5
11711   14            25          6
11712   14            25          7
11713   14            25          8
11714   14            25          9
11715   14            25         10
11716   14            25         11
11717   14            25         12
11718   14            25         13
11719   14            25         14
11720   14            25         15
11721   14            25         16
11722   14            25         17
11723   14            25         18
11724   14            25         19
11725   14            25         20
11726   14            25         21
11727   14            25         22
11728   14            25         23
11729   14            25         24
11730   14            25         25
11731   14            25         26
11732   14            25         27
11733   14            25         28
11734   14            26          1
11735   14            26          2
11736   14            26          3
11737   14            26          4
11738   14            26          5
11739   14            26          6
11740   14            26          7
11741   14            26          8
11742   14            26          9
11743   14            26         10
11744   14            26         11
11745   14            26         12
11746   14            26         13
11747   14            26         14
11748   14            26         15
11749   14            26         16
11750   14            26         17
11751   14            26         18
11752   14            26         19
11753   14            26         20
11754   14            26         21
11755   14            26         22
11756   14            26         23
11757   14            27          1
11758   14            27          2
11759   14            27          3
11760   14            27          4
11761   14            27          5
11762   14            27          6
11763   14            27          7
11764   14            27          8
11765   14            27          9
11766   14            28          1
11767   14            28          2
11768   14            28          3
11769   14            28          4
11770   14            28          5
11771   14            28          6
11772   14            28          7
11773   14            28          8
11774   14            28          9
11775   14            28         10
11776   14            28         11
11777   14            28         12
11778   14            28         13
11779   14            28         14
11780   14            28         15
11781   14            28         16
11782   14            28         17
11783   14            28         18
11784   14            28         19
11785   14            28         20
11786   14            28         21
11787   14            28         22
11788   14            28         23
11789   14            28         24
11790   14            28         25
11791   14            28         26
11792   14            28         27
11793   14            29          1
11794   14            29          2
11795   14            29          3
11796   14            29          4
11797   14            29          5
11798   14            29          6
11799   14            29          7
11800   14            29          8
11801   14            29          9
11802   14            29         10
11803   14            29         11
11804   14            29         12
11805   14            29         13
11806   14            29         14
11807   14            29         15
11808   14            29         16
11809   14            29         17
11810   14            29         18
11811   14            29         19
11812   14            29         20
11813   14            29         21
11814   14            29         22
11815   14            29         23
11816   14            29         24
11817   14            29         25
11818   14            29         26
11819   14            29         27
11820   14            29         28
11821   14            29         29
11822   14            29         30
11823   14            29         31
11824   14            29         32
11825   14            29         33
11826   14            29         34
11827   14            29         35
11828   14            29         36
11829   14            30          1
11830   14            30          2
11831   14            30          3
11832   14            30          4
11833   14            30          5
11834   14            30          6
11835   14            30          7
11836   14            30          8
11837   14            30          9
11838   14            30         10
11839   14            30         11
11840   14            30         12
11841   14            30         13
11842   14            30         14
11843   14            30         15
11844   14            30         16
11845   14            30         17
11846   14            30         18
11847   14            30         19
11848   14            30         20
11849   14            30         21
11850   14            30         22
11851   14            30         23
11852   14            30         24
11853   14            30         25
11854   14            30         26
11855   14            30         27
11856   14            31          1
11857   14            31          2
11858   14            31          3
11859   14            31          4
11860   14            31          5
11861   14            31          6
11862   14            31          7
11863   14            31          8
11864   14            31          9
11865   14            31         10
11866   14            31         11
11867   14            31         12
11868   14            31         13
11869   14            31         14
11870   14            31         15
11871   14            31         16
11872   14            31         17
11873   14            31         18
11874   14            31         19
11875   14            31         20
11876   14            31         21
11877   14            32          1
11878   14            32          2
11879   14            32          3
11880   14            32          4
11881   14            32          5
11882   14            32          6
11883   14            32          7
11884   14            32          8
11885   14            32          9
11886   14            32         10
11887   14            32         11
11888   14            32         12
11889   14            32         13
11890   14            32         14
11891   14            32         15
11892   14            32         16
11893   14            32         17
11894   14            32         18
11895   14            32         19
11896   14            32         20
11897   14            32         21
11898   14            32         22
11899   14            32         23
11900   14            32         24
11901   14            32         25
11902   14            32         26
11903   14            32         27
11904   14            32         28
11905   14            32         29
11906   14            32         30
11907   14            32         31
11908   14            32         32
11909   14            32         33
11910   14            33          1
11911   14            33          2
11912   14            33          3
11913   14            33          4
11914   14            33          5
11915   14            33          6
11916   14            33          7
11917   14            33          8
11918   14            33          9
11919   14            33         10
11920   14            33         11
11921   14            33         12
11922   14            33         13
11923   14            33         14
11924   14            33         15
11925   14            33         16
11926   14            33         17
11927   14            33         18
11928   14            33         19
11929   14            33         20
11930   14            33         21
11931   14            33         22
11932   14            33         23
11933   14            33         24
11934   14            33         25
11935   14            34          1
11936   14            34          2
11937   14            34          3
11938   14            34          4
11939   14            34          5
11940   14            34          6
11941   14            34          7
11942   14            34          8
11943   14            34          9
11944   14            34         10
11945   14            34         11
11946   14            34         12
11947   14            34         13
11948   14            34         14
11949   14            34         15
11950   14            34         16
11951   14            34         17
11952   14            34         18
11953   14            34         19
11954   14            34         20
11955   14            34         21
11956   14            34         22
11957   14            34         23
11958   14            34         24
11959   14            34         25
11960   14            34         26
11961   14            34         27
11962   14            34         28
11963   14            34         29
11964   14            34         30
11965   14            34         31
11966   14            34         32
11967   14            34         33
11968   14            35          1
11969   14            35          2
11970   14            35          3
11971   14            35          4
11972   14            35          5
11973   14            35          6
11974   14            35          7
11975   14            35          8
11976   14            35          9
11977   14            35         10
11978   14            35         11
11979   14            35         12
11980   14            35         13
11981   14            35         14
11982   14            35         15
11983   14            35         16
11984   14            35         17
11985   14            35         18
11986   14            35         19
11987   14            35         20
11988   14            35         21
11989   14            35         22
11990   14            35         23
11991   14            35         24
11992   14            35         25
11993   14            35         26
11994   14            35         27
11995   14            36          1
11996   14            36          2
11997   14            36          3
11998   14            36          4
11999   14            36          5
12000   14            36          6
12001   14            36          7
12002   14            36          8
12003   14            36          9
12004   14            36         10
12005   14            36         11
12006   14            36         12
12007   14            36         13
12008   14            36         14
12009   14            36         15
12010   14            36         16
12011   14            36         17
12012   14            36         18
12013   14            36         19
12014   14            36         20
12015   14            36         21
12016   14            36         22
12017   14            36         23
12018   15             1          1
12019   15             1          2
12020   15             1          3
12021   15             1          4
12022   15             1          5
12023   15             1          6
12024   15             1          7
12025   15             1          8
12026   15             1          9
12027   15             1         10
12028   15             1         11
12029   15             2          1
12030   15             2          2
12031   15             2          3
12032   15             2          4
12033   15             2          5
12034   15             2          6
12035   15             2          7
12036   15             2          8
12037   15             2          9
12038   15             2         10
12039   15             2         11
12040   15             2         12
12041   15             2         13
12042   15             2         14
12043   15             2         15
12044   15             2         16
12045   15             2         17
12046   15             2         18
12047   15             2         19
12048   15             2         20
12049   15             2         21
12050   15             2         22
12051   15             2         23
12052   15             2         24
12053   15             2         25
12054   15             2         26
12055   15             2         27
12056   15             2         28
12057   15             2         29
12058   15             2         30
12059   15             2         31
12060   15             2         32
12061   15             2         33
12062   15             2         34
12063   15             2         35
12064   15             2         36
12065   15             2         37
12066   15             2         38
12067   15             2         39
12068   15             2         40
12069   15             2         41
12070   15             2         42
12071   15             2         43
12072   15             2         44
12073   15             2         45
12074   15             2         46
12075   15             2         47
12076   15             2         48
12077   15             2         49
12078   15             2         50
12079   15             2         51
12080   15             2         52
12081   15             2         53
12082   15             2         54
12083   15             2         55
12084   15             2         56
12085   15             2         57
12086   15             2         58
12087   15             2         59
12088   15             2         60
12089   15             2         61
12090   15             2         62
12091   15             2         63
12092   15             2         64
12093   15             2         65
12094   15             2         66
12095   15             2         67
12096   15             2         68
12097   15             2         69
12098   15             2         70
12099   15             3          1
12100   15             3          2
12101   15             3          3
12102   15             3          4
12103   15             3          5
12104   15             3          6
12105   15             3          7
12106   15             3          8
12107   15             3          9
12108   15             3         10
12109   15             3         11
12110   15             3         12
12111   15             3         13
12112   15             4          1
12113   15             4          2
12114   15             4          3
12115   15             4          4
12116   15             4          5
12117   15             4          6
12118   15             4          7
12119   15             4          8
12120   15             4          9
12121   15             4         10
12122   15             4         11
12123   15             4         12
12124   15             4         13
12125   15             4         14
12126   15             4         15
12127   15             4         16
12128   15             4         17
12129   15             4         18
12130   15             4         19
12131   15             4         20
12132   15             4         21
12133   15             4         22
12134   15             4         23
12135   15             4         24
12136   15             5          1
12137   15             5          2
12138   15             5          3
12139   15             5          4
12140   15             5          5
12141   15             5          6
12142   15             5          7
12143   15             5          8
12144   15             5          9
12145   15             5         10
12146   15             5         11
12147   15             5         12
12148   15             5         13
12149   15             5         14
12150   15             5         15
12151   15             5         16
12152   15             5         17
12153   15             6          1
12154   15             6          2
12155   15             6          3
12156   15             6          4
12157   15             6          5
12158   15             6          6
12159   15             6          7
12160   15             6          8
12161   15             6          9
12162   15             6         10
12163   15             6         11
12164   15             6         12
12165   15             6         13
12166   15             6         14
12167   15             6         15
12168   15             6         16
12169   15             6         17
12170   15             6         18
12171   15             6         19
12172   15             6         20
12173   15             6         21
12174   15             6         22
12175   15             7          1
12176   15             7          2
12177   15             7          3
12178   15             7          4
12179   15             7          5
12180   15             7          6
12181   15             7          7
12182   15             7          8
12183   15             7          9
12184   15             7         10
12185   15             7         11
12186   15             7         12
12187   15             7         13
12188   15             7         14
12189   15             7         15
12190   15             7         16
12191   15             7         17
12192   15             7         18
12193   15             7         19
12194   15             7         20
12195   15             7         21
12196   15             7         22
12197   15             7         23
12198   15             7         24
12199   15             7         25
12200   15             7         26
12201   15             7         27
12202   15             7         28
12203   15             8          1
12204   15             8          2
12205   15             8          3
12206   15             8          4
12207   15             8          5
12208   15             8          6
12209   15             8          7
12210   15             8          8
12211   15             8          9
12212   15             8         10
12213   15             8         11
12214   15             8         12
12215   15             8         13
12216   15             8         14
12217   15             8         15
12218   15             8         16
12219   15             8         17
12220   15             8         18
12221   15             8         19
12222   15             8         20
12223   15             8         21
12224   15             8         22
12225   15             8         23
12226   15             8         24
12227   15             8         25
12228   15             8         26
12229   15             8         27
12230   15             8         28
12231   15             8         29
12232   15             8         30
12233   15             8         31
12234   15             8         32
12235   15             8         33
12236   15             8         34
12237   15             8         35
12238   15             8         36
12239   15             9          1
12240   15             9          2
12241   15             9          3
12242   15             9          4
12243   15             9          5
12244   15             9          6
12245   15             9          7
12246   15             9          8
12247   15             9          9
12248   15             9         10
12249   15             9         11
12250   15             9         12
12251   15             9         13
12252   15             9         14
12253   15             9         15
12254   15            10          1
12255   15            10          2
12256   15            10          3
12257   15            10          4
12258   15            10          5
12259   15            10          6
12260   15            10          7
12261   15            10          8
12262   15            10          9
12263   15            10         10
12264   15            10         11
12265   15            10         12
12266   15            10         13
12267   15            10         14
12268   15            10         15
12269   15            10         16
12270   15            10         17
12271   15            10         18
12272   15            10         19
12273   15            10         20
12274   15            10         21
12275   15            10         22
12276   15            10         23
12277   15            10         24
12278   15            10         25
12279   15            10         26
12280   15            10         27
12281   15            10         28
12282   15            10         29
12283   15            10         30
12284   15            10         31
12285   15            10         32
12286   15            10         33
12287   15            10         34
12288   15            10         35
12289   15            10         36
12290   15            10         37
12291   15            10         38
12292   15            10         39
12293   15            10         40
12294   15            10         41
12295   15            10         42
12296   15            10         43
12297   15            10         44
12298   16             1          1
12299   16             1          2
12300   16             1          3
12301   16             1          4
12302   16             1          5
12303   16             1          6
12304   16             1          7
12305   16             1          8
12306   16             1          9
12307   16             1         10
12308   16             1         11
12309   16             2          1
12310   16             2          2
12311   16             2          3
12312   16             2          4
12313   16             2          5
12314   16             2          6
12315   16             2          7
12316   16             2          8
12317   16             2          9
12318   16             2         10
12319   16             2         11
12320   16             2         12
12321   16             2         13
12322   16             2         14
12323   16             2         15
12324   16             2         16
12325   16             2         17
12326   16             2         18
12327   16             2         19
12328   16             2         20
12329   16             3          1
12330   16             3          2
12331   16             3          3
12332   16             3          4
12333   16             3          5
12334   16             3          6
12335   16             3          7
12336   16             3          8
12337   16             3          9
12338   16             3         10
12339   16             3         11
12340   16             3         12
12341   16             3         13
12342   16             3         14
12343   16             3         15
12344   16             3         16
12345   16             3         17
12346   16             3         18
12347   16             3         19
12348   16             3         20
12349   16             3         21
12350   16             3         22
12351   16             3         23
12352   16             3         24
12353   16             3         25
12354   16             3         26
12355   16             3         27
12356   16             3         28
12357   16             3         29
12358   16             3         30
12359   16             3         31
12360   16             3         32
12361   16             4          1
12362   16             4          2
12363   16             4          3
12364   16             4          4
12365   16             4          5
12366   16             4          6
12367   16             4          7
12368   16             4          8
12369   16             4          9
12370   16             4         10
12371   16             4         11
12372   16             4         12
12373   16             4         13
12374   16             4         14
12375   16             4         15
12376   16             4         16
12377   16             4         17
12378   16             4         18
12379   16             4         19
12380   16             4         20
12381   16             4         21
12382   16             4         22
12383   16             4         23
12384   16             5          1
12385   16             5          2
12386   16             5          3
12387   16             5          4
12388   16             5          5
12389   16             5          6
12390   16             5          7
12391   16             5          8
12392   16             5          9
12393   16             5         10
12394   16             5         11
12395   16             5         12
12396   16             5         13
12397   16             5         14
12398   16             5         15
12399   16             5         16
12400   16             5         17
12401   16             5         18
12402   16             5         19
12403   16             6          1
12404   16             6          2
12405   16             6          3
12406   16             6          4
12407   16             6          5
12408   16             6          6
12409   16             6          7
12410   16             6          8
12411   16             6          9
12412   16             6         10
12413   16             6         11
12414   16             6         12
12415   16             6         13
12416   16             6         14
12417   16             6         15
12418   16             6         16
12419   16             6         17
12420   16             6         18
12421   16             6         19
12422   16             7          1
12423   16             7          2
12424   16             7          3
12425   16             7          4
12426   16             7          5
12427   16             7          6
12428   16             7          7
12429   16             7          8
12430   16             7          9
12431   16             7         10
12432   16             7         11
12433   16             7         12
12434   16             7         13
12435   16             7         14
12436   16             7         15
12437   16             7         16
12438   16             7         17
12439   16             7         18
12440   16             7         19
12441   16             7         20
12442   16             7         21
12443   16             7         22
12444   16             7         23
12445   16             7         24
12446   16             7         25
12447   16             7         26
12448   16             7         27
12449   16             7         28
12450   16             7         29
12451   16             7         30
12452   16             7         31
12453   16             7         32
12454   16             7         33
12455   16             7         34
12456   16             7         35
12457   16             7         36
12458   16             7         37
12459   16             7         38
12460   16             7         39
12461   16             7         40
12462   16             7         41
12463   16             7         42
12464   16             7         43
12465   16             7         44
12466   16             7         45
12467   16             7         46
12468   16             7         47
12469   16             7         48
12470   16             7         49
12471   16             7         50
12472   16             7         51
12473   16             7         52
12474   16             7         53
12475   16             7         54
12476   16             7         55
12477   16             7         56
12478   16             7         57
12479   16             7         58
12480   16             7         59
12481   16             7         60
12482   16             7         61
12483   16             7         62
12484   16             7         63
12485   16             7         64
12486   16             7         65
12487   16             7         66
12488   16             7         67
12489   16             7         68
12490   16             7         69
12491   16             7         70
12492   16             7         71
12493   16             7         72
12494   16             7         73
12495   16             8          1
12496   16             8          2
12497   16             8          3
12498   16             8          4
12499   16             8          5
12500   16             8          6
12501   16             8          7
12502   16             8          8
12503   16             8          9
12504   16             8         10
12505   16             8         11
12506   16             8         12
12507   16             8         13
12508   16             8         14
12509   16             8         15
12510   16             8         16
12511   16             8         17
12512   16             8         18
12513   16             9          1
12514   16             9          2
12515   16             9          3
12516   16             9          4
12517   16             9          5
12518   16             9          6
12519   16             9          7
12520   16             9          8
12521   16             9          9
12522   16             9         10
12523   16             9         11
12524   16             9         12
12525   16             9         13
12526   16             9         14
12527   16             9         15
12528   16             9         16
12529   16             9         17
12530   16             9         18
12531   16             9         19
12532   16             9         20
12533   16             9         21
12534   16             9         22
12535   16             9         23
12536   16             9         24
12537   16             9         25
12538   16             9         26
12539   16             9         27
12540   16             9         28
12541   16             9         29
12542   16             9         30
12543   16             9         31
12544   16             9         32
12545   16             9         33
12546   16             9         34
12547   16             9         35
12548   16             9         36
12549   16             9         37
12550   16             9         38
12551   16            10          1
12552   16            10          2
12553   16            10          3
12554   16            10          4
12555   16            10          5
12556   16            10          6
12557   16            10          7
12558   16            10          8
12559   16            10          9
12560   16            10         10
12561   16            10         11
12562   16            10         12
12563   16            10         13
12564   16            10         14
12565   16            10         15
12566   16            10         16
12567   16            10         17
12568   16            10         18
12569   16            10         19
12570   16            10         20
12571   16            10         21
12572   16            10         22
12573   16            10         23
12574   16            10         24
12575   16            10         25
12576   16            10         26
12577   16            10         27
12578   16            10         28
12579   16            10         29
12580   16            10         30
12581   16            10         31
12582   16            10         32
12583   16            10         33
12584   16            10         34
12585   16            10         35
12586   16            10         36
12587   16            10         37
12588   16            10         38
12589   16            10         39
12590   16            11          1
12591   16            11          2
12592   16            11          3
12593   16            11          4
12594   16            11          5
12595   16            11          6
12596   16            11          7
12597   16            11          8
12598   16            11          9
12599   16            11         10
12600   16            11         11
12601   16            11         12
12602   16            11         13
12603   16            11         14
12604   16            11         15
12605   16            11         16
12606   16            11         17
12607   16            11         18
12608   16            11         19
12609   16            11         20
12610   16            11         21
12611   16            11         22
12612   16            11         23
12613   16            11         24
12614   16            11         25
12615   16            11         26
12616   16            11         27
12617   16            11         28
12618   16            11         29
12619   16            11         30
12620   16            11         31
12621   16            11         32
12622   16            11         33
12623   16            11         34
12624   16            11         35
12625   16            11         36
12626   16            12          1
12627   16            12          2
12628   16            12          3
12629   16            12          4
12630   16            12          5
12631   16            12          6
12632   16            12          7
12633   16            12          8
12634   16            12          9
12635   16            12         10
12636   16            12         11
12637   16            12         12
12638   16            12         13
12639   16            12         14
12640   16            12         15
12641   16            12         16
12642   16            12         17
12643   16            12         18
12644   16            12         19
12645   16            12         20
12646   16            12         21
12647   16            12         22
12648   16            12         23
12649   16            12         24
12650   16            12         25
12651   16            12         26
12652   16            12         27
12653   16            12         28
12654   16            12         29
12655   16            12         30
12656   16            12         31
12657   16            12         32
12658   16            12         33
12659   16            12         34
12660   16            12         35
12661   16            12         36
12662   16            12         37
12663   16            12         38
12664   16            12         39
12665   16            12         40
12666   16            12         41
12667   16            12         42
12668   16            12         43
12669   16            12         44
12670   16            12         45
12671   16            12         46
12672   16            12         47
12673   16            13          1
12674   16            13          2
12675   16            13          3
12676   16            13          4
12677   16            13          5
12678   16            13          6
12679   16            13          7
12680   16            13          8
12681   16            13          9
12682   16            13         10
12683   16            13         11
12684   16            13         12
12685   16            13         13
12686   16            13         14
12687   16            13         15
12688   16            13         16
12689   16            13         17
12690   16            13         18
12691   16            13         19
12692   16            13         20
12693   16            13         21
12694   16            13         22
12695   16            13         23
12696   16            13         24
12697   16            13         25
12698   16            13         26
12699   16            13         27
12700   16            13         28
12701   16            13         29
12702   16            13         30
12703   16            13         31
12704   17             1          1
12705   17             1          2
12706   17             1          3
12707   17             1          4
12708   17             1          5
12709   17             1          6
12710   17             1          7
12711   17             1          8
12712   17             1          9
12713   17             1         10
12714   17             1         11
12715   17             1         12
12716   17             1         13
12717   17             1         14
12718   17             1         15
12719   17             1         16
12720   17             1         17
12721   17             1         18
12722   17             1         19
12723   17             1         20
12724   17             1         21
12725   17             1         22
12726   17             2          1
12727   17             2          2
12728   17             2          3
12729   17             2          4
12730   17             2          5
12731   17             2          6
12732   17             2          7
12733   17             2          8
12734   17             2          9
12735   17             2         10
12736   17             2         11
12737   17             2         12
12738   17             2         13
12739   17             2         14
12740   17             2         15
12741   17             2         16
12742   17             2         17
12743   17             2         18
12744   17             2         19
12745   17             2         20
12746   17             2         21
12747   17             2         22
12748   17             2         23
12749   17             3          1
12750   17             3          2
12751   17             3          3
12752   17             3          4
12753   17             3          5
12754   17             3          6
12755   17             3          7
12756   17             3          8
12757   17             3          9
12758   17             3         10
12759   17             3         11
12760   17             3         12
12761   17             3         13
12762   17             3         14
12763   17             3         15
12764   17             4          1
12765   17             4          2
12766   17             4          3
12767   17             4          4
12768   17             4          5
12769   17             4          6
12770   17             4          7
12771   17             4          8
12772   17             4          9
12773   17             4         10
12774   17             4         11
12775   17             4         12
12776   17             4         13
12777   17             4         14
12778   17             4         15
12779   17             4         16
12780   17             4         17
12781   17             5          1
12782   17             5          2
12783   17             5          3
12784   17             5          4
12785   17             5          5
12786   17             5          6
12787   17             5          7
12788   17             5          8
12789   17             5          9
12790   17             5         10
12791   17             5         11
12792   17             5         12
12793   17             5         13
12794   17             5         14
12795   17             6          1
12796   17             6          2
12797   17             6          3
12798   17             6          4
12799   17             6          5
12800   17             6          6
12801   17             6          7
12802   17             6          8
12803   17             6          9
12804   17             6         10
12805   17             6         11
12806   17             6         12
12807   17             6         13
12808   17             6         14
12809   17             7          1
12810   17             7          2
12811   17             7          3
12812   17             7          4
12813   17             7          5
12814   17             7          6
12815   17             7          7
12816   17             7          8
12817   17             7          9
12818   17             7         10
12819   17             8          1
12820   17             8          2
12821   17             8          3
12822   17             8          4
12823   17             8          5
12824   17             8          6
12825   17             8          7
12826   17             8          8
12827   17             8          9
12828   17             8         10
12829   17             8         11
12830   17             8         12
12831   17             8         13
12832   17             8         14
12833   17             8         15
12834   17             8         16
12835   17             8         17
12836   17             9          1
12837   17             9          2
12838   17             9          3
12839   17             9          4
12840   17             9          5
12841   17             9          6
12842   17             9          7
12843   17             9          8
12844   17             9          9
12845   17             9         10
12846   17             9         11
12847   17             9         12
12848   17             9         13
12849   17             9         14
12850   17             9         15
12851   17             9         16
12852   17             9         17
12853   17             9         18
12854   17             9         19
12855   17             9         20
12856   17             9         21
12857   17             9         22
12858   17             9         23
12859   17             9         24
12860   17             9         25
12861   17             9         26
12862   17             9         27
12863   17             9         28
12864   17             9         29
12865   17             9         30
12866   17             9         31
12867   17             9         32
12868   17            10          1
12869   17            10          2
12870   17            10          3
12871   18             1          1
12872   18             1          2
12873   18             1          3
12874   18             1          4
12875   18             1          5
12876   18             1          6
12877   18             1          7
12878   18             1          8
12879   18             1          9
12880   18             1         10
12881   18             1         11
12882   18             1         12
12883   18             1         13
12884   18             1         14
12885   18             1         15
12886   18             1         16
12887   18             1         17
12888   18             1         18
12889   18             1         19
12890   18             1         20
12891   18             1         21
12892   18             1         22
12893   18             2          1
12894   18             2          2
12895   18             2          3
12896   18             2          4
12897   18             2          5
12898   18             2          6
12899   18             2          7
12900   18             2          8
12901   18             2          9
12902   18             2         10
12903   18             2         11
12904   18             2         12
12905   18             2         13
12906   18             3          1
12907   18             3          2
12908   18             3          3
12909   18             3          4
12910   18             3          5
12911   18             3          6
12912   18             3          7
12913   18             3          8
12914   18             3          9
12915   18             3         10
12916   18             3         11
12917   18             3         12
12918   18             3         13
12919   18             3         14
12920   18             3         15
12921   18             3         16
12922   18             3         17
12923   18             3         18
12924   18             3         19
12925   18             3         20
12926   18             3         21
12927   18             3         22
12928   18             3         23
12929   18             3         24
12930   18             3         25
12931   18             3         26
12932   18             4          1
12933   18             4          2
12934   18             4          3
12935   18             4          4
12936   18             4          5
12937   18             4          6
12938   18             4          7
12939   18             4          8
12940   18             4          9
12941   18             4         10
12942   18             4         11
12943   18             4         12
12944   18             4         13
12945   18             4         14
12946   18             4         15
12947   18             4         16
12948   18             4         17
12949   18             4         18
12950   18             4         19
12951   18             4         20
12952   18             4         21
12953   18             5          1
12954   18             5          2
12955   18             5          3
12956   18             5          4
12957   18             5          5
12958   18             5          6
12959   18             5          7
12960   18             5          8
12961   18             5          9
12962   18             5         10
12963   18             5         11
12964   18             5         12
12965   18             5         13
12966   18             5         14
12967   18             5         15
12968   18             5         16
12969   18             5         17
12970   18             5         18
12971   18             5         19
12972   18             5         20
12973   18             5         21
12974   18             5         22
12975   18             5         23
12976   18             5         24
12977   18             5         25
12978   18             5         26
12979   18             5         27
12980   18             6          1
12981   18             6          2
12982   18             6          3
12983   18             6          4
12984   18             6          5
12985   18             6          6
12986   18             6          7
12987   18             6          8
12988   18             6          9
12989   18             6         10
12990   18             6         11
12991   18             6         12
12992   18             6         13
12993   18             6         14
12994   18             6         15
12995   18             6         16
12996   18             6         17
12997   18             6         18
12998   18             6         19
12999   18             6         20
13000   18             6         21
13001   18             6         22
13002   18             6         23
13003   18             6         24
13004   18             6         25
13005   18             6         26
13006   18             6         27
13007   18             6         28
13008   18             6         29
13009   18             6         30
13010   18             7          1
13011   18             7          2
13012   18             7          3
13013   18             7          4
13014   18             7          5
13015   18             7          6
13016   18             7          7
13017   18             7          8
13018   18             7          9
13019   18             7         10
13020   18             7         11
13021   18             7         12
13022   18             7         13
13023   18             7         14
13024   18             7         15
13025   18             7         16
13026   18             7         17
13027   18             7         18
13028   18             7         19
13029   18             7         20
13030   18             7         21
13031   18             8          1
13032   18             8          2
13033   18             8          3
13034   18             8          4
13035   18             8          5
13036   18             8          6
13037   18             8          7
13038   18             8          8
13039   18             8          9
13040   18             8         10
13041   18             8         11
13042   18             8         12
13043   18             8         13
13044   18             8         14
13045   18             8         15
13046   18             8         16
13047   18             8         17
13048   18             8         18
13049   18             8         19
13050   18             8         20
13051   18             8         21
13052   18             8         22
13053   18             9          1
13054   18             9          2
13055   18             9          3
13056   18             9          4
13057   18             9          5
13058   18             9          6
13059   18             9          7
13060   18             9          8
13061   18             9          9
13062   18             9         10
13063   18             9         11
13064   18             9         12
13065   18             9         13
13066   18             9         14
13067   18             9         15
13068   18             9         16
13069   18             9         17
13070   18             9         18
13071   18             9         19
13072   18             9         20
13073   18             9         21
13074   18             9         22
13075   18             9         23
13076   18             9         24
13077   18             9         25
13078   18             9         26
13079   18             9         27
13080   18             9         28
13081   18             9         29
13082   18             9         30
13083   18             9         31
13084   18             9         32
13085   18             9         33
13086   18             9         34
13087   18             9         35
13088   18            10          1
13089   18            10          2
13090   18            10          3
13091   18            10          4
13092   18            10          5
13093   18            10          6
13094   18            10          7
13095   18            10          8
13096   18            10          9
13097   18            10         10
13098   18            10         11
13099   18            10         12
13100   18            10         13
13101   18            10         14
13102   18            10         15
13103   18            10         16
13104   18            10         17
13105   18            10         18
13106   18            10         19
13107   18            10         20
13108   18            10         21
13109   18            10         22
13110   18            11          1
13111   18            11          2
13112   18            11          3
13113   18            11          4
13114   18            11          5
13115   18            11          6
13116   18            11          7
13117   18            11          8
13118   18            11          9
13119   18            11         10
13120   18            11         11
13121   18            11         12
13122   18            11         13
13123   18            11         14
13124   18            11         15
13125   18            11         16
13126   18            11         17
13127   18            11         18
13128   18            11         19
13129   18            11         20
13130   18            12          1
13131   18            12          2
13132   18            12          3
13133   18            12          4
13134   18            12          5
13135   18            12          6
13136   18            12          7
13137   18            12          8
13138   18            12          9
13139   18            12         10
13140   18            12         11
13141   18            12         12
13142   18            12         13
13143   18            12         14
13144   18            12         15
13145   18            12         16
13146   18            12         17
13147   18            12         18
13148   18            12         19
13149   18            12         20
13150   18            12         21
13151   18            12         22
13152   18            12         23
13153   18            12         24
13154   18            12         25
13155   18            13          1
13156   18            13          2
13157   18            13          3
13158   18            13          4
13159   18            13          5
13160   18            13          6
13161   18            13          7
13162   18            13          8
13163   18            13          9
13164   18            13         10
13165   18            13         11
13166   18            13         12
13167   18            13         13
13168   18            13         14
13169   18            13         15
13170   18            13         16
13171   18            13         17
13172   18            13         18
13173   18            13         19
13174   18            13         20
13175   18            13         21
13176   18            13         22
13177   18            13         23
13178   18            13         24
13179   18            13         25
13180   18            13         26
13181   18            13         27
13182   18            13         28
13183   18            14          1
13184   18            14          2
13185   18            14          3
13186   18            14          4
13187   18            14          5
13188   18            14          6
13189   18            14          7
13190   18            14          8
13191   18            14          9
13192   18            14         10
13193   18            14         11
13194   18            14         12
13195   18            14         13
13196   18            14         14
13197   18            14         15
13198   18            14         16
13199   18            14         17
13200   18            14         18
13201   18            14         19
13202   18            14         20
13203   18            14         21
13204   18            14         22
13205   18            15          1
13206   18            15          2
13207   18            15          3
13208   18            15          4
13209   18            15          5
13210   18            15          6
13211   18            15          7
13212   18            15          8
13213   18            15          9
13214   18            15         10
13215   18            15         11
13216   18            15         12
13217   18            15         13
13218   18            15         14
13219   18            15         15
13220   18            15         16
13221   18            15         17
13222   18            15         18
13223   18            15         19
13224   18            15         20
13225   18            15         21
13226   18            15         22
13227   18            15         23
13228   18            15         24
13229   18            15         25
13230   18            15         26
13231   18            15         27
13232   18            15         28
13233   18            15         29
13234   18            15         30
13235   18            15         31
13236   18            15         32
13237   18            15         33
13238   18            15         34
13239   18            15         35
13240   18            16          1
13241   18            16          2
13242   18            16          3
13243   18            16          4
13244   18            16          5
13245   18            16          6
13246   18            16          7
13247   18            16          8
13248   18            16          9
13249   18            16         10
13250   18            16         11
13251   18            16         12
13252   18            16         13
13253   18            16         14
13254   18            16         15
13255   18            16         16
13256   18            16         17
13257   18            16         18
13258   18            16         19
13259   18            16         20
13260   18            16         21
13261   18            16         22
13262   18            17          1
13263   18            17          2
13264   18            17          3
13265   18            17          4
13266   18            17          5
13267   18            17          6
13268   18            17          7
13269   18            17          8
13270   18            17          9
13271   18            17         10
13272   18            17         11
13273   18            17         12
13274   18            17         13
13275   18            17         14
13276   18            17         15
13277   18            17         16
13278   18            18          1
13279   18            18          2
13280   18            18          3
13281   18            18          4
13282   18            18          5
13283   18            18          6
13284   18            18          7
13285   18            18          8
13286   18            18          9
13287   18            18         10
13288   18            18         11
13289   18            18         12
13290   18            18         13
13291   18            18         14
13292   18            18         15
13293   18            18         16
13294   18            18         17
13295   18            18         18
13296   18            18         19
13297   18            18         20
13298   18            18         21
13299   18            19          1
13300   18            19          2
13301   18            19          3
13302   18            19          4
13303   18            19          5
13304   18            19          6
13305   18            19          7
13306   18            19          8
13307   18            19          9
13308   18            19         10
13309   18            19         11
13310   18            19         12
13311   18            19         13
13312   18            19         14
13313   18            19         15
13314   18            19         16
13315   18            19         17
13316   18            19         18
13317   18            19         19
13318   18            19         20
13319   18            19         21
13320   18            19         22
13321   18            19         23
13322   18            19         24
13323   18            19         25
13324   18            19         26
13325   18            19         27
13326   18            19         28
13327   18            19         29
13328   18            20          1
13329   18            20          2
13330   18            20          3
13331   18            20          4
13332   18            20          5
13333   18            20          6
13334   18            20          7
13335   18            20          8
13336   18            20          9
13337   18            20         10
13338   18            20         11
13339   18            20         12
13340   18            20         13
13341   18            20         14
13342   18            20         15
13343   18            20         16
13344   18            20         17
13345   18            20         18
13346   18            20         19
13347   18            20         20
13348   18            20         21
13349   18            20         22
13350   18            20         23
13351   18            20         24
13352   18            20         25
13353   18            20         26
13354   18            20         27
13355   18            20         28
13356   18            20         29
13357   18            21          1
13358   18            21          2
13359   18            21          3
13360   18            21          4
13361   18            21          5
13362   18            21          6
13363   18            21          7
13364   18            21          8
13365   18            21          9
13366   18            21         10
13367   18            21         11
13368   18            21         12
13369   18            21         13
13370   18            21         14
13371   18            21         15
13372   18            21         16
13373   18            21         17
13374   18            21         18
13375   18            21         19
13376   18            21         20
13377   18            21         21
13378   18            21         22
13379   18            21         23
13380   18            21         24
13381   18            21         25
13382   18            21         26
13383   18            21         27
13384   18            21         28
13385   18            21         29
13386   18            21         30
13387   18            21         31
13388   18            21         32
13389   18            21         33
13390   18            21         34
13391   18            22          1
13392   18            22          2
13393   18            22          3
13394   18            22          4
13395   18            22          5
13396   18            22          6
13397   18            22          7
13398   18            22          8
13399   18            22          9
13400   18            22         10
13401   18            22         11
13402   18            22         12
13403   18            22         13
13404   18            22         14
13405   18            22         15
13406   18            22         16
13407   18            22         17
13408   18            22         18
13409   18            22         19
13410   18            22         20
13411   18            22         21
13412   18            22         22
13413   18            22         23
13414   18            22         24
13415   18            22         25
13416   18            22         26
13417   18            22         27
13418   18            22         28
13419   18            22         29
13420   18            22         30
13421   18            23          1
13422   18            23          2
13423   18            23          3
13424   18            23          4
13425   18            23          5
13426   18            23          6
13427   18            23          7
13428   18            23          8
13429   18            23          9
13430   18            23         10
13431   18            23         11
13432   18            23         12
13433   18            23         13
13434   18            23         14
13435   18            23         15
13436   18            23         16
13437   18            23         17
13438   18            24          1
13439   18            24          2
13440   18            24          3
13441   18            24          4
13442   18            24          5
13443   18            24          6
13444   18            24          7
13445   18            24          8
13446   18            24          9
13447   18            24         10
13448   18            24         11
13449   18            24         12
13450   18            24         13
13451   18            24         14
13452   18            24         15
13453   18            24         16
13454   18            24         17
13455   18            24         18
13456   18            24         19
13457   18            24         20
13458   18            24         21
13459   18            24         22
13460   18            24         23
13461   18            24         24
13462   18            24         25
13463   18            25          1
13464   18            25          2
13465   18            25          3
13466   18            25          4
13467   18            25          5
13468   18            25          6
13469   18            26          1
13470   18            26          2
13471   18            26          3
13472   18            26          4
13473   18            26          5
13474   18            26          6
13475   18            26          7
13476   18            26          8
13477   18            26          9
13478   18            26         10
13479   18            26         11
13480   18            26         12
13481   18            26         13
13482   18            26         14
13483   18            27          1
13484   18            27          2
13485   18            27          3
13486   18            27          4
13487   18            27          5
13488   18            27          6
13489   18            27          7
13490   18            27          8
13491   18            27          9
13492   18            27         10
13493   18            27         11
13494   18            27         12
13495   18            27         13
13496   18            27         14
13497   18            27         15
13498   18            27         16
13499   18            27         17
13500   18            27         18
13501   18            27         19
13502   18            27         20
13503   18            27         21
13504   18            27         22
13505   18            27         23
13506   18            28          1
13507   18            28          2
13508   18            28          3
13509   18            28          4
13510   18            28          5
13511   18            28          6
13512   18            28          7
13513   18            28          8
13514   18            28          9
13515   18            28         10
13516   18            28         11
13517   18            28         12
13518   18            28         13
13519   18            28         14
13520   18            28         15
13521   18            28         16
13522   18            28         17
13523   18            28         18
13524   18            28         19
13525   18            28         20
13526   18            28         21
13527   18            28         22
13528   18            28         23
13529   18            28         24
13530   18            28         25
13531   18            28         26
13532   18            28         27
13533   18            28         28
13534   18            29          1
13535   18            29          2
13536   18            29          3
13537   18            29          4
13538   18            29          5
13539   18            29          6
13540   18            29          7
13541   18            29          8
13542   18            29          9
13543   18            29         10
13544   18            29         11
13545   18            29         12
13546   18            29         13
13547   18            29         14
13548   18            29         15
13549   18            29         16
13550   18            29         17
13551   18            29         18
13552   18            29         19
13553   18            29         20
13554   18            29         21
13555   18            29         22
13556   18            29         23
13557   18            29         24
13558   18            29         25
13559   18            30          1
13560   18            30          2
13561   18            30          3
13562   18            30          4
13563   18            30          5
13564   18            30          6
13565   18            30          7
13566   18            30          8
13567   18            30          9
13568   18            30         10
13569   18            30         11
13570   18            30         12
13571   18            30         13
13572   18            30         14
13573   18            30         15
13574   18            30         16
13575   18            30         17
13576   18            30         18
13577   18            30         19
13578   18            30         20
13579   18            30         21
13580   18            30         22
13581   18            30         23
13582   18            30         24
13583   18            30         25
13584   18            30         26
13585   18            30         27
13586   18            30         28
13587   18            30         29
13588   18            30         30
13589   18            30         31
13590   18            31          1
13591   18            31          2
13592   18            31          3
13593   18            31          4
13594   18            31          5
13595   18            31          6
13596   18            31          7
13597   18            31          8
13598   18            31          9
13599   18            31         10
13600   18            31         11
13601   18            31         12
13602   18            31         13
13603   18            31         14
13604   18            31         15
13605   18            31         16
13606   18            31         17
13607   18            31         18
13608   18            31         19
13609   18            31         20
13610   18            31         21
13611   18            31         22
13612   18            31         23
13613   18            31         24
13614   18            31         25
13615   18            31         26
13616   18            31         27
13617   18            31         28
13618   18            31         29
13619   18            31         30
13620   18            31         31
13621   18            31         32
13622   18            31         33
13623   18            31         34
13624   18            31         35
13625   18            31         36
13626   18            31         37
13627   18            31         38
13628   18            31         39
13629   18            31         40
13630   18            32          1
13631   18            32          2
13632   18            32          3
13633   18            32          4
13634   18            32          5
13635   18            32          6
13636   18            32          7
13637   18            32          8
13638   18            32          9
13639   18            32         10
13640   18            32         11
13641   18            32         12
13642   18            32         13
13643   18            32         14
13644   18            32         15
13645   18            32         16
13646   18            32         17
13647   18            32         18
13648   18            32         19
13649   18            32         20
13650   18            32         21
13651   18            32         22
13652   18            33          1
13653   18            33          2
13654   18            33          3
13655   18            33          4
13656   18            33          5
13657   18            33          6
13658   18            33          7
13659   18            33          8
13660   18            33          9
13661   18            33         10
13662   18            33         11
13663   18            33         12
13664   18            33         13
13665   18            33         14
13666   18            33         15
13667   18            33         16
13668   18            33         17
13669   18            33         18
13670   18            33         19
13671   18            33         20
13672   18            33         21
13673   18            33         22
13674   18            33         23
13675   18            33         24
13676   18            33         25
13677   18            33         26
13678   18            33         27
13679   18            33         28
13680   18            33         29
13681   18            33         30
13682   18            33         31
13683   18            33         32
13684   18            33         33
13685   18            34          1
13686   18            34          2
13687   18            34          3
13688   18            34          4
13689   18            34          5
13690   18            34          6
13691   18            34          7
13692   18            34          8
13693   18            34          9
13694   18            34         10
13695   18            34         11
13696   18            34         12
13697   18            34         13
13698   18            34         14
13699   18            34         15
13700   18            34         16
13701   18            34         17
13702   18            34         18
13703   18            34         19
13704   18            34         20
13705   18            34         21
13706   18            34         22
13707   18            34         23
13708   18            34         24
13709   18            34         25
13710   18            34         26
13711   18            34         27
13712   18            34         28
13713   18            34         29
13714   18            34         30
13715   18            34         31
13716   18            34         32
13717   18            34         33
13718   18            34         34
13719   18            34         35
13720   18            34         36
13721   18            34         37
13722   18            35          1
13723   18            35          2
13724   18            35          3
13725   18            35          4
13726   18            35          5
13727   18            35          6
13728   18            35          7
13729   18            35          8
13730   18            35          9
13731   18            35         10
13732   18            35         11
13733   18            35         12
13734   18            35         13
13735   18            35         14
13736   18            35         15
13737   18            35         16
13738   18            36          1
13739   18            36          2
13740   18            36          3
13741   18            36          4
13742   18            36          5
13743   18            36          6
13744   18            36          7
13745   18            36          8
13746   18            36          9
13747   18            36         10
13748   18            36         11
13749   18            36         12
13750   18            36         13
13751   18            36         14
13752   18            36         15
13753   18            36         16
13754   18            36         17
13755   18            36         18
13756   18            36         19
13757   18            36         20
13758   18            36         21
13759   18            36         22
13760   18            36         23
13761   18            36         24
13762   18            36         25
13763   18            36         26
13764   18            36         27
13765   18            36         28
13766   18            36         29
13767   18            36         30
13768   18            36         31
13769   18            36         32
13770   18            36         33
13771   18            37          1
13772   18            37          2
13773   18            37          3
13774   18            37          4
13775   18            37          5
13776   18            37          6
13777   18            37          7
13778   18            37          8
13779   18            37          9
13780   18            37         10
13781   18            37         11
13782   18            37         12
13783   18            37         13
13784   18            37         14
13785   18            37         15
13786   18            37         16
13787   18            37         17
13788   18            37         18
13789   18            37         19
13790   18            37         20
13791   18            37         21
13792   18            37         22
13793   18            37         23
13794   18            37         24
13795   18            38          1
13796   18            38          2
13797   18            38          3
13798   18            38          4
13799   18            38          5
13800   18            38          6
13801   18            38          7
13802   18            38          8
13803   18            38          9
13804   18            38         10
13805   18            38         11
13806   18            38         12
13807   18            38         13
13808   18            38         14
13809   18            38         15
13810   18            38         16
13811   18            38         17
13812   18            38         18
13813   18            38         19
13814   18            38         20
13815   18            38         21
13816   18            38         22
13817   18            38         23
13818   18            38         24
13819   18            38         25
13820   18            38         26
13821   18            38         27
13822   18            38         28
13823   18            38         29
13824   18            38         30
13825   18            38         31
13826   18            38         32
13827   18            38         33
13828   18            38         34
13829   18            38         35
13830   18            38         36
13831   18            38         37
13832   18            38         38
13833   18            38         39
13834   18            38         40
13835   18            38         41
13836   18            39          1
13837   18            39          2
13838   18            39          3
13839   18            39          4
13840   18            39          5
13841   18            39          6
13842   18            39          7
13843   18            39          8
13844   18            39          9
13845   18            39         10
13846   18            39         11
13847   18            39         12
13848   18            39         13
13849   18            39         14
13850   18            39         15
13851   18            39         16
13852   18            39         17
13853   18            39         18
13854   18            39         19
13855   18            39         20
13856   18            39         21
13857   18            39         22
13858   18            39         23
13859   18            39         24
13860   18            39         25
13861   18            39         26
13862   18            39         27
13863   18            39         28
13864   18            39         29
13865   18            39         30
13866   18            40          1
13867   18            40          2
13868   18            40          3
13869   18            40          4
13870   18            40          5
13871   18            40          6
13872   18            40          7
13873   18            40          8
13874   18            40          9
13875   18            40         10
13876   18            40         11
13877   18            40         12
13878   18            40         13
13879   18            40         14
13880   18            40         15
13881   18            40         16
13882   18            40         17
13883   18            40         18
13884   18            40         19
13885   18            40         20
13886   18            40         21
13887   18            40         22
13888   18            40         23
13889   18            40         24
13890   18            41          1
13891   18            41          2
13892   18            41          3
13893   18            41          4
13894   18            41          5
13895   18            41          6
13896   18            41          7
13897   18            41          8
13898   18            41          9
13899   18            41         10
13900   18            41         11
13901   18            41         12
13902   18            41         13
13903   18            41         14
13904   18            41         15
13905   18            41         16
13906   18            41         17
13907   18            41         18
13908   18            41         19
13909   18            41         20
13910   18            41         21
13911   18            41         22
13912   18            41         23
13913   18            41         24
13914   18            41         25
13915   18            41         26
13916   18            41         27
13917   18            41         28
13918   18            41         29
13919   18            41         30
13920   18            41         31
13921   18            41         32
13922   18            41         33
13923   18            41         34
13924   18            42          1
13925   18            42          2
13926   18            42          3
13927   18            42          4
13928   18            42          5
13929   18            42          6
13930   18            42          7
13931   18            42          8
13932   18            42          9
13933   18            42         10
13934   18            42         11
13935   18            42         12
13936   18            42         13
13937   18            42         14
13938   18            42         15
13939   18            42         16
13940   18            42         17
13941   19             1          1
13942   19             1          2
13943   19             1          3
13944   19             1          4
13945   19             1          5
13946   19             1          6
13947   19             2          1
13948   19             2          2
13949   19             2          3
13950   19             2          4
13951   19             2          5
13952   19             2          6
13953   19             2          7
13954   19             2          8
13955   19             2          9
13956   19             2         10
13957   19             2         11
13958   19             2         12
13959   19             3          1
13960   19             3          2
13961   19             3          3
13962   19             3          4
13963   19             3          5
13964   19             3          6
13965   19             3          7
13966   19             3          8
13967   19             4          1
13968   19             4          2
13969   19             4          3
13970   19             4          4
13971   19             4          5
13972   19             4          6
13973   19             4          7
13974   19             4          8
13975   19             5          1
13976   19             5          2
13977   19             5          3
13978   19             5          4
13979   19             5          5
13980   19             5          6
13981   19             5          7
13982   19             5          8
13983   19             5          9
13984   19             5         10
13985   19             5         11
13986   19             5         12
13987   19             6          1
13988   19             6          2
13989   19             6          3
13990   19             6          4
13991   19             6          5
13992   19             6          6
13993   19             6          7
13994   19             6          8
13995   19             6          9
13996   19             6         10
13997   19             7          1
13998   19             7          2
13999   19             7          3
14000   19             7          4
14001   19             7          5
14002   19             7          6
14003   19             7          7
14004   19             7          8
14005   19             7          9
14006   19             7         10
14007   19             7         11
14008   19             7         12
14009   19             7         13
14010   19             7         14
14011   19             7         15
14012   19             7         16
14013   19             7         17
14014   19             8          1
14015   19             8          2
14016   19             8          3
14017   19             8          4
14018   19             8          5
14019   19             8          6
14020   19             8          7
14021   19             8          8
14022   19             8          9
14023   19             9          1
14024   19             9          2
14025   19             9          3
14026   19             9          4
14027   19             9          5
14028   19             9          6
14029   19             9          7
14030   19             9          8
14031   19             9          9
14032   19             9         10
14033   19             9         11
14034   19             9         12
14035   19             9         13
14036   19             9         14
14037   19             9         15
14038   19             9         16
14039   19             9         17
14040   19             9         18
14041   19             9         19
14042   19             9         20
14043   19            10          1
14044   19            10          2
14045   19            10          3
14046   19            10          4
14047   19            10          5
14048   19            10          6
14049   19            10          7
14050   19            10          8
14051   19            10          9
14052   19            10         10
14053   19            10         11
14054   19            10         12
14055   19            10         13
14056   19            10         14
14057   19            10         15
14058   19            10         16
14059   19            10         17
14060   19            10         18
14061   19            11          1
14062   19            11          2
14063   19            11          3
14064   19            11          4
14065   19            11          5
14066   19            11          6
14067   19            11          7
14068   19            12          1
14069   19            12          2
14070   19            12          3
14071   19            12          4
14072   19            12          5
14073   19            12          6
14074   19            12          7
14075   19            12          8
14076   19            13          1
14077   19            13          2
14078   19            13          3
14079   19            13          4
14080   19            13          5
14081   19            13          6
14082   19            14          1
14083   19            14          2
14084   19            14          3
14085   19            14          4
14086   19            14          5
14087   19            14          6
14088   19            14          7
14089   19            15          1
14090   19            15          2
14091   19            15          3
14092   19            15          4
14093   19            15          5
14094   19            16          1
14095   19            16          2
14096   19            16          3
14097   19            16          4
14098   19            16          5
14099   19            16          6
14100   19            16          7
14101   19            16          8
14102   19            16          9
14103   19            16         10
14104   19            16         11
14105   19            17          1
14106   19            17          2
14107   19            17          3
14108   19            17          4
14109   19            17          5
14110   19            17          6
14111   19            17          7
14112   19            17          8
14113   19            17          9
14114   19            17         10
14115   19            17         11
14116   19            17         12
14117   19            17         13
14118   19            17         14
14119   19            17         15
14120   19            18          1
14121   19            18          2
14122   19            18          3
14123   19            18          4
14124   19            18          5
14125   19            18          6
14126   19            18          7
14127   19            18          8
14128   19            18          9
14129   19            18         10
14130   19            18         11
14131   19            18         12
14132   19            18         13
14133   19            18         14
14134   19            18         15
14135   19            18         16
14136   19            18         17
14137   19            18         18
14138   19            18         19
14139   19            18         20
14140   19            18         21
14141   19            18         22
14142   19            18         23
14143   19            18         24
14144   19            18         25
14145   19            18         26
14146   19            18         27
14147   19            18         28
14148   19            18         29
14149   19            18         30
14150   19            18         31
14151   19            18         32
14152   19            18         33
14153   19            18         34
14154   19            18         35
14155   19            18         36
14156   19            18         37
14157   19            18         38
14158   19            18         39
14159   19            18         40
14160   19            18         41
14161   19            18         42
14162   19            18         43
14163   19            18         44
14164   19            18         45
14165   19            18         46
14166   19            18         47
14167   19            18         48
14168   19            18         49
14169   19            18         50
14170   19            19          1
14171   19            19          2
14172   19            19          3
14173   19            19          4
14174   19            19          5
14175   19            19          6
14176   19            19          7
14177   19            19          8
14178   19            19          9
14179   19            19         10
14180   19            19         11
14181   19            19         12
14182   19            19         13
14183   19            19         14
14184   19            20          1
14185   19            20          2
14186   19            20          3
14187   19            20          4
14188   19            20          5
14189   19            20          6
14190   19            20          7
14191   19            20          8
14192   19            20          9
14193   19            21          1
14194   19            21          2
14195   19            21          3
14196   19            21          4
14197   19            21          5
14198   19            21          6
14199   19            21          7
14200   19            21          8
14201   19            21          9
14202   19            21         10
14203   19            21         11
14204   19            21         12
14205   19            21         13
14206   19            22          1
14207   19            22          2
14208   19            22          3
14209   19            22          4
14210   19            22          5
14211   19            22          6
14212   19            22          7
14213   19            22          8
14214   19            22          9
14215   19            22         10
14216   19            22         11
14217   19            22         12
14218   19            22         13
14219   19            22         14
14220   19            22         15
14221   19            22         16
14222   19            22         17
14223   19            22         18
14224   19            22         19
14225   19            22         20
14226   19            22         21
14227   19            22         22
14228   19            22         23
14229   19            22         24
14230   19            22         25
14231   19            22         26
14232   19            22         27
14233   19            22         28
14234   19            22         29
14235   19            22         30
14236   19            22         31
14237   19            23          1
14238   19            23          2
14239   19            23          3
14240   19            23          4
14241   19            23          5
14242   19            23          6
14243   19            24          1
14244   19            24          2
14245   19            24          3
14246   19            24          4
14247   19            24          5
14248   19            24          6
14249   19            24          7
14250   19            24          8
14251   19            24          9
14252   19            24         10
14253   19            25          1
14254   19            25          2
14255   19            25          3
14256   19            25          4
14257   19            25          5
14258   19            25          6
14259   19            25          7
14260   19            25          8
14261   19            25          9
14262   19            25         10
14263   19            25         11
14264   19            25         12
14265   19            25         13
14266   19            25         14
14267   19            25         15
14268   19            25         16
14269   19            25         17
14270   19            25         18
14271   19            25         19
14272   19            25         20
14273   19            25         21
14274   19            25         22
14275   19            26          1
14276   19            26          2
14277   19            26          3
14278   19            26          4
14279   19            26          5
14280   19            26          6
14281   19            26          7
14282   19            26          8
14283   19            26          9
14284   19            26         10
14285   19            26         11
14286   19            26         12
14287   19            27          1
14288   19            27          2
14289   19            27          3
14290   19            27          4
14291   19            27          5
14292   19            27          6
14293   19            27          7
14294   19            27          8
14295   19            27          9
14296   19            27         10
14297   19            27         11
14298   19            27         12
14299   19            27         13
14300   19            27         14
14301   19            28          1
14302   19            28          2
14303   19            28          3
14304   19            28          4
14305   19            28          5
14306   19            28          6
14307   19            28          7
14308   19            28          8
14309   19            28          9
14310   19            29          1
14311   19            29          2
14312   19            29          3
14313   19            29          4
14314   19            29          5
14315   19            29          6
14316   19            29          7
14317   19            29          8
14318   19            29          9
14319   19            29         10
14320   19            29         11
14321   19            30          1
14322   19            30          2
14323   19            30          3
14324   19            30          4
14325   19            30          5
14326   19            30          6
14327   19            30          7
14328   19            30          8
14329   19            30          9
14330   19            30         10
14331   19            30         11
14332   19            30         12
14333   19            31          1
14334   19            31          2
14335   19            31          3
14336   19            31          4
14337   19            31          5
14338   19            31          6
14339   19            31          7
14340   19            31          8
14341   19            31          9
14342   19            31         10
14343   19            31         11
14344   19            31         12
14345   19            31         13
14346   19            31         14
14347   19            31         15
14348   19            31         16
14349   19            31         17
14350   19            31         18
14351   19            31         19
14352   19            31         20
14353   19            31         21
14354   19            31         22
14355   19            31         23
14356   19            31         24
14357   19            32          1
14358   19            32          2
14359   19            32          3
14360   19            32          4
14361   19            32          5
14362   19            32          6
14363   19            32          7
14364   19            32          8
14365   19            32          9
14366   19            32         10
14367   19            32         11
14368   19            33          1
14369   19            33          2
14370   19            33          3
14371   19            33          4
14372   19            33          5
14373   19            33          6
14374   19            33          7
14375   19            33          8
14376   19            33          9
14377   19            33         10
14378   19            33         11
14379   19            33         12
14380   19            33         13
14381   19            33         14
14382   19            33         15
14383   19            33         16
14384   19            33         17
14385   19            33         18
14386   19            33         19
14387   19            33         20
14388   19            33         21
14389   19            33         22
14390   19            34          1
14391   19            34          2
14392   19            34          3
14393   19            34          4
14394   19            34          5
14395   19            34          6
14396   19            34          7
14397   19            34          8
14398   19            34          9
14399   19            34         10
14400   19            34         11
14401   19            34         12
14402   19            34         13
14403   19            34         14
14404   19            34         15
14405   19            34         16
14406   19            34         17
14407   19            34         18
14408   19            34         19
14409   19            34         20
14410   19            34         21
14411   19            34         22
14412   19            35          1
14413   19            35          2
14414   19            35          3
14415   19            35          4
14416   19            35          5
14417   19            35          6
14418   19            35          7
14419   19            35          8
14420   19            35          9
14421   19            35         10
14422   19            35         11
14423   19            35         12
14424   19            35         13
14425   19            35         14
14426   19            35         15
14427   19            35         16
14428   19            35         17
14429   19            35         18
14430   19            35         19
14431   19            35         20
14432   19            35         21
14433   19            35         22
14434   19            35         23
14435   19            35         24
14436   19            35         25
14437   19            35         26
14438   19            35         27
14439   19            35         28
14440   19            36          1
14441   19            36          2
14442   19            36          3
14443   19            36          4
14444   19            36          5
14445   19            36          6
14446   19            36          7
14447   19            36          8
14448   19            36          9
14449   19            36         10
14450   19            36         11
14451   19            36         12
14452   19            37          1
14453   19            37          2
14454   19            37          3
14455   19            37          4
14456   19            37          5
14457   19            37          6
14458   19            37          7
14459   19            37          8
14460   19            37          9
14461   19            37         10
14462   19            37         11
14463   19            37         12
14464   19            37         13
14465   19            37         14
14466   19            37         15
14467   19            37         16
14468   19            37         17
14469   19            37         18
14470   19            37         19
14471   19            37         20
14472   19            37         21
14473   19            37         22
14474   19            37         23
14475   19            37         24
14476   19            37         25
14477   19            37         26
14478   19            37         27
14479   19            37         28
14480   19            37         29
14481   19            37         30
14482   19            37         31
14483   19            37         32
14484   19            37         33
14485   19            37         34
14486   19            37         35
14487   19            37         36
14488   19            37         37
14489   19            37         38
14490   19            37         39
14491   19            37         40
14492   19            38          1
14493   19            38          2
14494   19            38          3
14495   19            38          4
14496   19            38          5
14497   19            38          6
14498   19            38          7
14499   19            38          8
14500   19            38          9
14501   19            38         10
14502   19            38         11
14503   19            38         12
14504   19            38         13
14505   19            38         14
14506   19            38         15
14507   19            38         16
14508   19            38         17
14509   19            38         18
14510   19            38         19
14511   19            38         20
14512   19            38         21
14513   19            38         22
14514   19            39          1
14515   19            39          2
14516   19            39          3
14517   19            39          4
14518   19            39          5
14519   19            39          6
14520   19            39          7
14521   19            39          8
14522   19            39          9
14523   19            39         10
14524   19            39         11
14525   19            39         12
14526   19            39         13
14527   19            40          1
14528   19            40          2
14529   19            40          3
14530   19            40          4
14531   19            40          5
14532   19            40          6
14533   19            40          7
14534   19            40          8
14535   19            40          9
14536   19            40         10
14537   19            40         11
14538   19            40         12
14539   19            40         13
14540   19            40         14
14541   19            40         15
14542   19            40         16
14543   19            40         17
14544   19            41          1
14545   19            41          2
14546   19            41          3
14547   19            41          4
14548   19            41          5
14549   19            41          6
14550   19            41          7
14551   19            41          8
14552   19            41          9
14553   19            41         10
14554   19            41         11
14555   19            41         12
14556   19            41         13
14557   19            42          1
14558   19            42          2
14559   19            42          3
14560   19            42          4
14561   19            42          5
14562   19            42          6
14563   19            42          7
14564   19            42          8
14565   19            42          9
14566   19            42         10
14567   19            42         11
14568   19            43          1
14569   19            43          2
14570   19            43          3
14571   19            43          4
14572   19            43          5
14573   19            44          1
14574   19            44          2
14575   19            44          3
14576   19            44          4
14577   19            44          5
14578   19            44          6
14579   19            44          7
14580   19            44          8
14581   19            44          9
14582   19            44         10
14583   19            44         11
14584   19            44         12
14585   19            44         13
14586   19            44         14
14587   19            44         15
14588   19            44         16
14589   19            44         17
14590   19            44         18
14591   19            44         19
14592   19            44         20
14593   19            44         21
14594   19            44         22
14595   19            44         23
14596   19            44         24
14597   19            44         25
14598   19            44         26
14599   19            45          1
14600   19            45          2
14601   19            45          3
14602   19            45          4
14603   19            45          5
14604   19            45          6
14605   19            45          7
14606   19            45          8
14607   19            45          9
14608   19            45         10
14609   19            45         11
14610   19            45         12
14611   19            45         13
14612   19            45         14
14613   19            45         15
14614   19            45         16
14615   19            45         17
14616   19            46          1
14617   19            46          2
14618   19            46          3
14619   19            46          4
14620   19            46          5
14621   19            46          6
14622   19            46          7
14623   19            46          8
14624   19            46          9
14625   19            46         10
14626   19            46         11
14627   19            47          1
14628   19            47          2
14629   19            47          3
14630   19            47          4
14631   19            47          5
14632   19            47          6
14633   19            47          7
14634   19            47          8
14635   19            47          9
14636   19            48          1
14637   19            48          2
14638   19            48          3
14639   19            48          4
14640   19            48          5
14641   19            48          6
14642   19            48          7
14643   19            48          8
14644   19            48          9
14645   19            48         10
14646   19            48         11
14647   19            48         12
14648   19            48         13
14649   19            48         14
14650   19            49          1
14651   19            49          2
14652   19            49          3
14653   19            49          4
14654   19            49          5
14655   19            49          6
14656   19            49          7
14657   19            49          8
14658   19            49          9
14659   19            49         10
14660   19            49         11
14661   19            49         12
14662   19            49         13
14663   19            49         14
14664   19            49         15
14665   19            49         16
14666   19            49         17
14667   19            49         18
14668   19            49         19
14669   19            49         20
14670   19            50          1
14671   19            50          2
14672   19            50          3
14673   19            50          4
14674   19            50          5
14675   19            50          6
14676   19            50          7
14677   19            50          8
14678   19            50          9
14679   19            50         10
14680   19            50         11
14681   19            50         12
14682   19            50         13
14683   19            50         14
14684   19            50         15
14685   19            50         16
14686   19            50         17
14687   19            50         18
14688   19            50         19
14689   19            50         20
14690   19            50         21
14691   19            50         22
14692   19            50         23
14693   19            51          1
14694   19            51          2
14695   19            51          3
14696   19            51          4
14697   19            51          5
14698   19            51          6
14699   19            51          7
14700   19            51          8
14701   19            51          9
14702   19            51         10
14703   19            51         11
14704   19            51         12
14705   19            51         13
14706   19            51         14
14707   19            51         15
14708   19            51         16
14709   19            51         17
14710   19            51         18
14711   19            51         19
14712   19            52          1
14713   19            52          2
14714   19            52          3
14715   19            52          4
14716   19            52          5
14717   19            52          6
14718   19            52          7
14719   19            52          8
14720   19            52          9
14721   19            53          1
14722   19            53          2
14723   19            53          3
14724   19            53          4
14725   19            53          5
14726   19            53          6
14727   19            54          1
14728   19            54          2
14729   19            54          3
14730   19            54          4
14731   19            54          5
14732   19            54          6
14733   19            54          7
14734   19            55          1
14735   19            55          2
14736   19            55          3
14737   19            55          4
14738   19            55          5
14739   19            55          6
14740   19            55          7
14741   19            55          8
14742   19            55          9
14743   19            55         10
14744   19            55         11
14745   19            55         12
14746   19            55         13
14747   19            55         14
14748   19            55         15
14749   19            55         16
14750   19            55         17
14751   19            55         18
14752   19            55         19
14753   19            55         20
14754   19            55         21
14755   19            55         22
14756   19            55         23
14757   19            56          1
14758   19            56          2
14759   19            56          3
14760   19            56          4
14761   19            56          5
14762   19            56          6
14763   19            56          7
14764   19            56          8
14765   19            56          9
14766   19            56         10
14767   19            56         11
14768   19            56         12
14769   19            56         13
14770   19            57          1
14771   19            57          2
14772   19            57          3
14773   19            57          4
14774   19            57          5
14775   19            57          6
14776   19            57          7
14777   19            57          8
14778   19            57          9
14779   19            57         10
14780   19            57         11
14781   19            58          1
14782   19            58          2
14783   19            58          3
14784   19            58          4
14785   19            58          5
14786   19            58          6
14787   19            58          7
14788   19            58          8
14789   19            58          9
14790   19            58         10
14791   19            58         11
14792   19            59          1
14793   19            59          2
14794   19            59          3
14795   19            59          4
14796   19            59          5
14797   19            59          6
14798   19            59          7
14799   19            59          8
14800   19            59          9
14801   19            59         10
14802   19            59         11
14803   19            59         12
14804   19            59         13
14805   19            59         14
14806   19            59         15
14807   19            59         16
14808   19            59         17
14809   19            60          1
14810   19            60          2
14811   19            60          3
14812   19            60          4
14813   19            60          5
14814   19            60          6
14815   19            60          7
14816   19            60          8
14817   19            60          9
14818   19            60         10
14819   19            60         11
14820   19            60         12
14821   19            61          1
14822   19            61          2
14823   19            61          3
14824   19            61          4
14825   19            61          5
14826   19            61          6
14827   19            61          7
14828   19            61          8
14829   19            62          1
14830   19            62          2
14831   19            62          3
14832   19            62          4
14833   19            62          5
14834   19            62          6
14835   19            62          7
14836   19            62          8
14837   19            62          9
14838   19            62         10
14839   19            62         11
14840   19            62         12
14841   19            63          1
14842   19            63          2
14843   19            63          3
14844   19            63          4
14845   19            63          5
14846   19            63          6
14847   19            63          7
14848   19            63          8
14849   19            63          9
14850   19            63         10
14851   19            63         11
14852   19            64          1
14853   19            64          2
14854   19            64          3
14855   19            64          4
14856   19            64          5
14857   19            64          6
14858   19            64          7
14859   19            64          8
14860   19            64          9
14861   19            64         10
14862   19            65          1
14863   19            65          2
14864   19            65          3
14865   19            65          4
14866   19            65          5
14867   19            65          6
14868   19            65          7
14869   19            65          8
14870   19            65          9
14871   19            65         10
14872   19            65         11
14873   19            65         12
14874   19            65         13
14875   19            66          1
14876   19            66          2
14877   19            66          3
14878   19            66          4
14879   19            66          5
14880   19            66          6
14881   19            66          7
14882   19            66          8
14883   19            66          9
14884   19            66         10
14885   19            66         11
14886   19            66         12
14887   19            66         13
14888   19            66         14
14889   19            66         15
14890   19            66         16
14891   19            66         17
14892   19            66         18
14893   19            66         19
14894   19            66         20
14895   19            67          1
14896   19            67          2
14897   19            67          3
14898   19            67          4
14899   19            67          5
14900   19            67          6
14901   19            67          7
14902   19            68          1
14903   19            68          2
14904   19            68          3
14905   19            68          4
14906   19            68          5
14907   19            68          6
14908   19            68          7
14909   19            68          8
14910   19            68          9
14911   19            68         10
14912   19            68         11
14913   19            68         12
14914   19            68         13
14915   19            68         14
14916   19            68         15
14917   19            68         16
14918   19            68         17
14919   19            68         18
14920   19            68         19
14921   19            68         20
14922   19            68         21
14923   19            68         22
14924   19            68         23
14925   19            68         24
14926   19            68         25
14927   19            68         26
14928   19            68         27
14929   19            68         28
14930   19            68         29
14931   19            68         30
14932   19            68         31
14933   19            68         32
14934   19            68         33
14935   19            68         34
14936   19            68         35
14937   19            69          1
14938   19            69          2
14939   19            69          3
14940   19            69          4
14941   19            69          5
14942   19            69          6
14943   19            69          7
14944   19            69          8
14945   19            69          9
14946   19            69         10
14947   19            69         11
14948   19            69         12
14949   19            69         13
14950   19            69         14
14951   19            69         15
14952   19            69         16
14953   19            69         17
14954   19            69         18
14955   19            69         19
14956   19            69         20
14957   19            69         21
14958   19            69         22
14959   19            69         23
14960   19            69         24
14961   19            69         25
14962   19            69         26
14963   19            69         27
14964   19            69         28
14965   19            69         29
14966   19            69         30
14967   19            69         31
14968   19            69         32
14969   19            69         33
14970   19            69         34
14971   19            69         35
14972   19            69         36
14973   19            70          1
14974   19            70          2
14975   19            70          3
14976   19            70          4
14977   19            70          5
14978   19            71          1
14979   19            71          2
14980   19            71          3
14981   19            71          4
14982   19            71          5
14983   19            71          6
14984   19            71          7
14985   19            71          8
14986   19            71          9
14987   19            71         10
14988   19            71         11
14989   19            71         12
14990   19            71         13
14991   19            71         14
14992   19            71         15
14993   19            71         16
14994   19            71         17
14995   19            71         18
14996   19            71         19
14997   19            71         20
14998   19            71         21
14999   19            71         22
15000   19            71         23
15001   19            71         24
15002   19            72          1
15003   19            72          2
15004   19            72          3
15005   19            72          4
15006   19            72          5
15007   19            72          6
15008   19            72          7
15009   19            72          8
15010   19            72          9
15011   19            72         10
15012   19            72         11
15013   19            72         12
15014   19            72         13
15015   19            72         14
15016   19            72         15
15017   19            72         16
15018   19            72         17
15019   19            72         18
15020   19            72         19
15021   19            72         20
15022   19            73          1
15023   19            73          2
15024   19            73          3
15025   19            73          4
15026   19            73          5
15027   19            73          6
15028   19            73          7
15029   19            73          8
15030   19            73          9
15031   19            73         10
15032   19            73         11
15033   19            73         12
15034   19            73         13
15035   19            73         14
15036   19            73         15
15037   19            73         16
15038   19            73         17
15039   19            73         18
15040   19            73         19
15041   19            73         20
15042   19            73         21
15043   19            73         22
15044   19            73         23
15045   19            73         24
15046   19            73         25
15047   19            73         26
15048   19            73         27
15049   19            73         28
15050   19            74          1
15051   19            74          2
15052   19            74          3
15053   19            74          4
15054   19            74          5
15055   19            74          6
15056   19            74          7
15057   19            74          8
15058   19            74          9
15059   19            74         10
15060   19            74         11
15061   19            74         12
15062   19            74         13
15063   19            74         14
15064   19            74         15
15065   19            74         16
15066   19            74         17
15067   19            74         18
15068   19            74         19
15069   19            74         20
15070   19            74         21
15071   19            74         22
15072   19            74         23
15073   19            75          1
15074   19            75          2
15075   19            75          3
15076   19            75          4
15077   19            75          5
15078   19            75          6
15079   19            75          7
15080   19            75          8
15081   19            75          9
15082   19            75         10
15083   19            76          1
15084   19            76          2
15085   19            76          3
15086   19            76          4
15087   19            76          5
15088   19            76          6
15089   19            76          7
15090   19            76          8
15091   19            76          9
15092   19            76         10
15093   19            76         11
15094   19            76         12
15095   19            77          1
15096   19            77          2
15097   19            77          3
15098   19            77          4
15099   19            77          5
15100   19            77          6
15101   19            77          7
15102   19            77          8
15103   19            77          9
15104   19            77         10
15105   19            77         11
15106   19            77         12
15107   19            77         13
15108   19            77         14
15109   19            77         15
15110   19            77         16
15111   19            77         17
15112   19            77         18
15113   19            77         19
15114   19            77         20
15115   19            78          1
15116   19            78          2
15117   19            78          3
15118   19            78          4
15119   19            78          5
15120   19            78          6
15121   19            78          7
15122   19            78          8
15123   19            78          9
15124   19            78         10
15125   19            78         11
15126   19            78         12
15127   19            78         13
15128   19            78         14
15129   19            78         15
15130   19            78         16
15131   19            78         17
15132   19            78         18
15133   19            78         19
15134   19            78         20
15135   19            78         21
15136   19            78         22
15137   19            78         23
15138   19            78         24
15139   19            78         25
15140   19            78         26
15141   19            78         27
15142   19            78         28
15143   19            78         29
15144   19            78         30
15145   19            78         31
15146   19            78         32
15147   19            78         33
15148   19            78         34
15149   19            78         35
15150   19            78         36
15151   19            78         37
15152   19            78         38
15153   19            78         39
15154   19            78         40
15155   19            78         41
15156   19            78         42
15157   19            78         43
15158   19            78         44
15159   19            78         45
15160   19            78         46
15161   19            78         47
15162   19            78         48
15163   19            78         49
15164   19            78         50
15165   19            78         51
15166   19            78         52
15167   19            78         53
15168   19            78         54
15169   19            78         55
15170   19            78         56
15171   19            78         57
15172   19            78         58
15173   19            78         59
15174   19            78         60
15175   19            78         61
15176   19            78         62
15177   19            78         63
15178   19            78         64
15179   19            78         65
15180   19            78         66
15181   19            78         67
15182   19            78         68
15183   19            78         69
15184   19            78         70
15185   19            78         71
15186   19            78         72
15187   19            79          1
15188   19            79          2
15189   19            79          3
15190   19            79          4
15191   19            79          5
15192   19            79          6
15193   19            79          7
15194   19            79          8
15195   19            79          9
15196   19            79         10
15197   19            79         11
15198   19            79         12
15199   19            79         13
15200   19            80          1
15201   19            80          2
15202   19            80          3
15203   19            80          4
15204   19            80          5
15205   19            80          6
15206   19            80          7
15207   19            80          8
15208   19            80          9
15209   19            80         10
15210   19            80         11
15211   19            80         12
15212   19            80         13
15213   19            80         14
15214   19            80         15
15215   19            80         16
15216   19            80         17
15217   19            80         18
15218   19            80         19
15219   19            81          1
15220   19            81          2
15221   19            81          3
15222   19            81          4
15223   19            81          5
15224   19            81          6
15225   19            81          7
15226   19            81          8
15227   19            81          9
15228   19            81         10
15229   19            81         11
15230   19            81         12
15231   19            81         13
15232   19            81         14
15233   19            81         15
15234   19            81         16
15235   19            82          1
15236   19            82          2
15237   19            82          3
15238   19            82          4
15239   19            82          5
15240   19            82          6
15241   19            82          7
15242   19            82          8
15243   19            83          1
15244   19            83          2
15245   19            83          3
15246   19            83          4
15247   19            83          5
15248   19            83          6
15249   19            83          7
15250   19            83          8
15251   19            83          9
15252   19            83         10
15253   19            83         11
15254   19            83         12
15255   19            83         13
15256   19            83         14
15257   19            83         15
15258   19            83         16
15259   19            83         17
15260   19            83         18
15261   19            84          1
15262   19            84          2
15263   19            84          3
15264   19            84          4
15265   19            84          5
15266   19            84          6
15267   19            84          7
15268   19            84          8
15269   19            84          9
15270   19            84         10
15271   19            84         11
15272   19            84         12
15273   19            85          1
15274   19            85          2
15275   19            85          3
15276   19            85          4
15277   19            85          5
15278   19            85          6
15279   19            85          7
15280   19            85          8
15281   19            85          9
15282   19            85         10
15283   19            85         11
15284   19            85         12
15285   19            85         13
15286   19            86          1
15287   19            86          2
15288   19            86          3
15289   19            86          4
15290   19            86          5
15291   19            86          6
15292   19            86          7
15293   19            86          8
15294   19            86          9
15295   19            86         10
15296   19            86         11
15297   19            86         12
15298   19            86         13
15299   19            86         14
15300   19            86         15
15301   19            86         16
15302   19            86         17
15303   19            87          1
15304   19            87          2
15305   19            87          3
15306   19            87          4
15307   19            87          5
15308   19            87          6
15309   19            87          7
15310   19            88          1
15311   19            88          2
15312   19            88          3
15313   19            88          4
15314   19            88          5
15315   19            88          6
15316   19            88          7
15317   19            88          8
15318   19            88          9
15319   19            88         10
15320   19            88         11
15321   19            88         12
15322   19            88         13
15323   19            88         14
15324   19            88         15
15325   19            88         16
15326   19            88         17
15327   19            88         18
15328   19            89          1
15329   19            89          2
15330   19            89          3
15331   19            89          4
15332   19            89          5
15333   19            89          6
15334   19            89          7
15335   19            89          8
15336   19            89          9
15337   19            89         10
15338   19            89         11
15339   19            89         12
15340   19            89         13
15341   19            89         14
15342   19            89         15
15343   19            89         16
15344   19            89         17
15345   19            89         18
15346   19            89         19
15347   19            89         20
15348   19            89         21
15349   19            89         22
15350   19            89         23
15351   19            89         24
15352   19            89         25
15353   19            89         26
15354   19            89         27
15355   19            89         28
15356   19            89         29
15357   19            89         30
15358   19            89         31
15359   19            89         32
15360   19            89         33
15361   19            89         34
15362   19            89         35
15363   19            89         36
15364   19            89         37
15365   19            89         38
15366   19            89         39
15367   19            89         40
15368   19            89         41
15369   19            89         42
15370   19            89         43
15371   19            89         44
15372   19            89         45
15373   19            89         46
15374   19            89         47
15375   19            89         48
15376   19            89         49
15377   19            89         50
15378   19            89         51
15379   19            89         52
15380   19            90          1
15381   19            90          2
15382   19            90          3
15383   19            90          4
15384   19            90          5
15385   19            90          6
15386   19            90          7
15387   19            90          8
15388   19            90          9
15389   19            90         10
15390   19            90         11
15391   19            90         12
15392   19            90         13
15393   19            90         14
15394   19            90         15
15395   19            90         16
15396   19            90         17
15397   19            91          1
15398   19            91          2
15399   19            91          3
15400   19            91          4
15401   19            91          5
15402   19            91          6
15403   19            91          7
15404   19            91          8
15405   19            91          9
15406   19            91         10
15407   19            91         11
15408   19            91         12
15409   19            91         13
15410   19            91         14
15411   19            91         15
15412   19            91         16
15413   19            92          1
15414   19            92          2
15415   19            92          3
15416   19            92          4
15417   19            92          5
15418   19            92          6
15419   19            92          7
15420   19            92          8
15421   19            92          9
15422   19            92         10
15423   19            92         11
15424   19            92         12
15425   19            92         13
15426   19            92         14
15427   19            92         15
15428   19            93          1
15429   19            93          2
15430   19            93          3
15431   19            93          4
15432   19            93          5
15433   19            94          1
15434   19            94          2
15435   19            94          3
15436   19            94          4
15437   19            94          5
15438   19            94          6
15439   19            94          7
15440   19            94          8
15441   19            94          9
15442   19            94         10
15443   19            94         11
15444   19            94         12
15445   19            94         13
15446   19            94         14
15447   19            94         15
15448   19            94         16
15449   19            94         17
15450   19            94         18
15451   19            94         19
15452   19            94         20
15453   19            94         21
15454   19            94         22
15455   19            94         23
15456   19            95          1
15457   19            95          2
15458   19            95          3
15459   19            95          4
15460   19            95          5
15461   19            95          6
15462   19            95          7
15463   19            95          8
15464   19            95          9
15465   19            95         10
15466   19            95         11
15467   19            96          1
15468   19            96          2
15469   19            96          3
15470   19            96          4
15471   19            96          5
15472   19            96          6
15473   19            96          7
15474   19            96          8
15475   19            96          9
15476   19            96         10
15477   19            96         11
15478   19            96         12
15479   19            96         13
15480   19            97          1
15481   19            97          2
15482   19            97          3
15483   19            97          4
15484   19            97          5
15485   19            97          6
15486   19            97          7
15487   19            97          8
15488   19            97          9
15489   19            97         10
15490   19            97         11
15491   19            97         12
15492   19            98          1
15493   19            98          2
15494   19            98          3
15495   19            98          4
15496   19            98          5
15497   19            98          6
15498   19            98          7
15499   19            98          8
15500   19            98          9
15501   19            99          1
15502   19            99          2
15503   19            99          3
15504   19            99          4
15505   19            99          5
15506   19            99          6
15507   19            99          7
15508   19            99          8
15509   19            99          9
15510   19           100          1
15511   19           100          2
15512   19           100          3
15513   19           100          4
15514   19           100          5
15515   19           101          1
15516   19           101          2
15517   19           101          3
15518   19           101          4
15519   19           101          5
15520   19           101          6
15521   19           101          7
15522   19           101          8
15523   19           102          1
15524   19           102          2
15525   19           102          3
15526   19           102          4
15527   19           102          5
15528   19           102          6
15529   19           102          7
15530   19           102          8
15531   19           102          9
15532   19           102         10
15533   19           102         11
15534   19           102         12
15535   19           102         13
15536   19           102         14
15537   19           102         15
15538   19           102         16
15539   19           102         17
15540   19           102         18
15541   19           102         19
15542   19           102         20
15543   19           102         21
15544   19           102         22
15545   19           102         23
15546   19           102         24
15547   19           102         25
15548   19           102         26
15549   19           102         27
15550   19           102         28
15551   19           103          1
15552   19           103          2
15553   19           103          3
15554   19           103          4
15555   19           103          5
15556   19           103          6
15557   19           103          7
15558   19           103          8
15559   19           103          9
15560   19           103         10
15561   19           103         11
15562   19           103         12
15563   19           103         13
15564   19           103         14
15565   19           103         15
15566   19           103         16
15567   19           103         17
15568   19           103         18
15569   19           103         19
15570   19           103         20
15571   19           103         21
15572   19           103         22
15573   19           104          1
15574   19           104          2
15575   19           104          3
15576   19           104          4
15577   19           104          5
15578   19           104          6
15579   19           104          7
15580   19           104          8
15581   19           104          9
15582   19           104         10
15583   19           104         11
15584   19           104         12
15585   19           104         13
15586   19           104         14
15587   19           104         15
15588   19           104         16
15589   19           104         17
15590   19           104         18
15591   19           104         19
15592   19           104         20
15593   19           104         21
15594   19           104         22
15595   19           104         23
15596   19           104         24
15597   19           104         25
15598   19           104         26
15599   19           104         27
15600   19           104         28
15601   19           104         29
15602   19           104         30
15603   19           104         31
15604   19           104         32
15605   19           104         33
15606   19           104         34
15607   19           104         35
15608   19           105          1
15609   19           105          2
15610   19           105          3
15611   19           105          4
15612   19           105          5
15613   19           105          6
15614   19           105          7
15615   19           105          8
15616   19           105          9
15617   19           105         10
15618   19           105         11
15619   19           105         12
15620   19           105         13
15621   19           105         14
15622   19           105         15
15623   19           105         16
15624   19           105         17
15625   19           105         18
15626   19           105         19
15627   19           105         20
15628   19           105         21
15629   19           105         22
15630   19           105         23
15631   19           105         24
15632   19           105         25
15633   19           105         26
15634   19           105         27
15635   19           105         28
15636   19           105         29
15637   19           105         30
15638   19           105         31
15639   19           105         32
15640   19           105         33
15641   19           105         34
15642   19           105         35
15643   19           105         36
15644   19           105         37
15645   19           105         38
15646   19           105         39
15647   19           105         40
15648   19           105         41
15649   19           105         42
15650   19           105         43
15651   19           105         44
15652   19           105         45
15653   19           106          1
15654   19           106          2
15655   19           106          3
15656   19           106          4
15657   19           106          5
15658   19           106          6
15659   19           106          7
15660   19           106          8
15661   19           106          9
15662   19           106         10
15663   19           106         11
15664   19           106         12
15665   19           106         13
15666   19           106         14
15667   19           106         15
15668   19           106         16
15669   19           106         17
15670   19           106         18
15671   19           106         19
15672   19           106         20
15673   19           106         21
15674   19           106         22
15675   19           106         23
15676   19           106         24
15677   19           106         25
15678   19           106         26
15679   19           106         27
15680   19           106         28
15681   19           106         29
15682   19           106         30
15683   19           106         31
15684   19           106         32
15685   19           106         33
15686   19           106         34
15687   19           106         35
15688   19           106         36
15689   19           106         37
15690   19           106         38
15691   19           106         39
15692   19           106         40
15693   19           106         41
15694   19           106         42
15695   19           106         43
15696   19           106         44
15697   19           106         45
15698   19           106         46
15699   19           106         47
15700   19           106         48
15701   19           107          1
15702   19           107          2
15703   19           107          3
15704   19           107          4
15705   19           107          5
15706   19           107          6
15707   19           107          7
15708   19           107          8
15709   19           107          9
15710   19           107         10
15711   19           107         11
15712   19           107         12
15713   19           107         13
15714   19           107         14
15715   19           107         15
15716   19           107         16
15717   19           107         17
15718   19           107         18
15719   19           107         19
15720   19           107         20
15721   19           107         21
15722   19           107         22
15723   19           107         23
15724   19           107         24
15725   19           107         25
15726   19           107         26
15727   19           107         27
15728   19           107         28
15729   19           107         29
15730   19           107         30
15731   19           107         31
15732   19           107         32
15733   19           107         33
15734   19           107         34
15735   19           107         35
15736   19           107         36
15737   19           107         37
15738   19           107         38
15739   19           107         39
15740   19           107         40
15741   19           107         41
15742   19           107         42
15743   19           107         43
15744   19           108          1
15745   19           108          2
15746   19           108          3
15747   19           108          4
15748   19           108          5
15749   19           108          6
15750   19           108          7
15751   19           108          8
15752   19           108          9
15753   19           108         10
15754   19           108         11
15755   19           108         12
15756   19           108         13
15757   19           109          1
15758   19           109          2
15759   19           109          3
15760   19           109          4
15761   19           109          5
15762   19           109          6
15763   19           109          7
15764   19           109          8
15765   19           109          9
15766   19           109         10
15767   19           109         11
15768   19           109         12
15769   19           109         13
15770   19           109         14
15771   19           109         15
15772   19           109         16
15773   19           109         17
15774   19           109         18
15775   19           109         19
15776   19           109         20
15777   19           109         21
15778   19           109         22
15779   19           109         23
15780   19           109         24
15781   19           109         25
15782   19           109         26
15783   19           109         27
15784   19           109         28
15785   19           109         29
15786   19           109         30
15787   19           109         31
15788   19           110          1
15789   19           110          2
15790   19           110          3
15791   19           110          4
15792   19           110          5
15793   19           110          6
15794   19           110          7
15795   19           111          1
15796   19           111          2
15797   19           111          3
15798   19           111          4
15799   19           111          5
15800   19           111          6
15801   19           111          7
15802   19           111          8
15803   19           111          9
15804   19           111         10
15805   19           112          1
15806   19           112          2
15807   19           112          3
15808   19           112          4
15809   19           112          5
15810   19           112          6
15811   19           112          7
15812   19           112          8
15813   19           112          9
15814   19           112         10
15815   19           113          1
15816   19           113          2
15817   19           113          3
15818   19           113          4
15819   19           113          5
15820   19           113          6
15821   19           113          7
15822   19           113          8
15823   19           113          9
15824   19           114          1
15825   19           114          2
15826   19           114          3
15827   19           114          4
15828   19           114          5
15829   19           114          6
15830   19           114          7
15831   19           114          8
15832   19           115          1
15833   19           115          2
15834   19           115          3
15835   19           115          4
15836   19           115          5
15837   19           115          6
15838   19           115          7
15839   19           115          8
15840   19           115          9
15841   19           115         10
15842   19           115         11
15843   19           115         12
15844   19           115         13
15845   19           115         14
15846   19           115         15
15847   19           115         16
15848   19           115         17
15849   19           115         18
15850   19           116          1
15851   19           116          2
15852   19           116          3
15853   19           116          4
15854   19           116          5
15855   19           116          6
15856   19           116          7
15857   19           116          8
15858   19           116          9
15859   19           116         10
15860   19           116         11
15861   19           116         12
15862   19           116         13
15863   19           116         14
15864   19           116         15
15865   19           116         16
15866   19           116         17
15867   19           116         18
15868   19           116         19
15869   19           117          1
15870   19           117          2
15871   19           118          1
15872   19           118          2
15873   19           118          3
15874   19           118          4
15875   19           118          5
15876   19           118          6
15877   19           118          7
15878   19           118          8
15879   19           118          9
15880   19           118         10
15881   19           118         11
15882   19           118         12
15883   19           118         13
15884   19           118         14
15885   19           118         15
15886   19           118         16
15887   19           118         17
15888   19           118         18
15889   19           118         19
15890   19           118         20
15891   19           118         21
15892   19           118         22
15893   19           118         23
15894   19           118         24
15895   19           118         25
15896   19           118         26
15897   19           118         27
15898   19           118         28
15899   19           118         29
15900   19           119          1
15901   19           119          2
15902   19           119          3
15903   19           119          4
15904   19           119          5
15905   19           119          6
15906   19           119          7
15907   19           119          8
15908   19           119          9
15909   19           119         10
15910   19           119         11
15911   19           119         12
15912   19           119         13
15913   19           119         14
15914   19           119         15
15915   19           119         16
15916   19           119         17
15917   19           119         18
15918   19           119         19
15919   19           119         20
15920   19           119         21
15921   19           119         22
15922   19           119         23
15923   19           119         24
15924   19           119         25
15925   19           119         26
15926   19           119         27
15927   19           119         28
15928   19           119         29
15929   19           119         30
15930   19           119         31
15931   19           119         32
15932   19           119         33
15933   19           119         34
15934   19           119         35
15935   19           119         36
15936   19           119         37
15937   19           119         38
15938   19           119         39
15939   19           119         40
15940   19           119         41
15941   19           119         42
15942   19           119         43
15943   19           119         44
15944   19           119         45
15945   19           119         46
15946   19           119         47
15947   19           119         48
15948   19           119         49
15949   19           119         50
15950   19           119         51
15951   19           119         52
15952   19           119         53
15953   19           119         54
15954   19           119         55
15955   19           119         56
15956   19           119         57
15957   19           119         58
15958   19           119         59
15959   19           119         60
15960   19           119         61
15961   19           119         62
15962   19           119         63
15963   19           119         64
15964   19           119         65
15965   19           119         66
15966   19           119         67
15967   19           119         68
15968   19           119         69
15969   19           119         70
15970   19           119         71
15971   19           119         72
15972   19           119         73
15973   19           119         74
15974   19           119         75
15975   19           119         76
15976   19           119         77
15977   19           119         78
15978   19           119         79
15979   19           119         80
15980   19           119         81
15981   19           119         82
15982   19           119         83
15983   19           119         84
15984   19           119         85
15985   19           119         86
15986   19           119         87
15987   19           119         88
15988   19           119         89
15989   19           119         90
15990   19           119         91
15991   19           119         92
15992   19           119         93
15993   19           119         94
15994   19           119         95
15995   19           119         96
15996   19           119         97
15997   19           119         98
15998   19           119         99
15999   19           119        100
16000   19           119        101
16001   19           119        102
16002   19           119        103
16003   19           119        104
16004   19           119        105
16005   19           119        106
16006   19           119        107
16007   19           119        108
16008   19           119        109
16009   19           119        110
16010   19           119        111
16011   19           119        112
16012   19           119        113
16013   19           119        114
16014   19           119        115
16015   19           119        116
16016   19           119        117
16017   19           119        118
16018   19           119        119
16019   19           119        120
16020   19           119        121
16021   19           119        122
16022   19           119        123
16023   19           119        124
16024   19           119        125
16025   19           119        126
16026   19           119        127
16027   19           119        128
16028   19           119        129
16029   19           119        130
16030   19           119        131
16031   19           119        132
16032   19           119        133
16033   19           119        134
16034   19           119        135
16035   19           119        136
16036   19           119        137
16037   19           119        138
16038   19           119        139
16039   19           119        140
16040   19           119        141
16041   19           119        142
16042   19           119        143
16043   19           119        144
16044   19           119        145
16045   19           119        146
16046   19           119        147
16047   19           119        148
16048   19           119        149
16049   19           119        150
16050   19           119        151
16051   19           119        152
16052   19           119        153
16053   19           119        154
16054   19           119        155
16055   19           119        156
16056   19           119        157
16057   19           119        158
16058   19           119        159
16059   19           119        160
16060   19           119        161
16061   19           119        162
16062   19           119        163
16063   19           119        164
16064   19           119        165
16065   19           119        166
16066   19           119        167
16067   19           119        168
16068   19           119        169
16069   19           119        170
16070   19           119        171
16071   19           119        172
16072   19           119        173
16073   19           119        174
16074   19           119        175
16075   19           119        176
16076   19           120          1
16077   19           120          2
16078   19           120          3
16079   19           120          4
16080   19           120          5
16081   19           120          6
16082   19           120          7
16083   19           121          1
16084   19           121          2
16085   19           121          3
16086   19           121          4
16087   19           121          5
16088   19           121          6
16089   19           121          7
16090   19           121          8
16091   19           122          1
16092   19           122          2
16093   19           122          3
16094   19           122          4
16095   19           122          5
16096   19           122          6
16097   19           122          7
16098   19           122          8
16099   19           122          9
16100   19           123          1
16101   19           123          2
16102   19           123          3
16103   19           123          4
16104   19           124          1
16105   19           124          2
16106   19           124          3
16107   19           124          4
16108   19           124          5
16109   19           124          6
16110   19           124          7
16111   19           124          8
16112   19           125          1
16113   19           125          2
16114   19           125          3
16115   19           125          4
16116   19           125          5
16117   19           126          1
16118   19           126          2
16119   19           126          3
16120   19           126          4
16121   19           126          5
16122   19           126          6
16123   19           127          1
16124   19           127          2
16125   19           127          3
16126   19           127          4
16127   19           127          5
16128   19           128          1
16129   19           128          2
16130   19           128          3
16131   19           128          4
16132   19           128          5
16133   19           128          6
16134   19           129          1
16135   19           129          2
16136   19           129          3
16137   19           129          4
16138   19           129          5
16139   19           129          6
16140   19           129          7
16141   19           129          8
16142   19           130          1
16143   19           130          2
16144   19           130          3
16145   19           130          4
16146   19           130          5
16147   19           130          6
16148   19           130          7
16149   19           130          8
16150   19           131          1
16151   19           131          2
16152   19           131          3
16153   19           132          1
16154   19           132          2
16155   19           132          3
16156   19           132          4
16157   19           132          5
16158   19           132          6
16159   19           132          7
16160   19           132          8
16161   19           132          9
16162   19           132         10
16163   19           132         11
16164   19           132         12
16165   19           132         13
16166   19           132         14
16167   19           132         15
16168   19           132         16
16169   19           132         17
16170   19           132         18
16171   19           133          1
16172   19           133          2
16173   19           133          3
16174   19           134          1
16175   19           134          2
16176   19           134          3
16177   19           135          1
16178   19           135          2
16179   19           135          3
16180   19           135          4
16181   19           135          5
16182   19           135          6
16183   19           135          7
16184   19           135          8
16185   19           135          9
16186   19           135         10
16187   19           135         11
16188   19           135         12
16189   19           135         13
16190   19           135         14
16191   19           135         15
16192   19           135         16
16193   19           135         17
16194   19           135         18
16195   19           135         19
16196   19           135         20
16197   19           135         21
16198   19           136          1
16199   19           136          2
16200   19           136          3
16201   19           136          4
16202   19           136          5
16203   19           136          6
16204   19           136          7
16205   19           136          8
16206   19           136          9
16207   19           136         10
16208   19           136         11
16209   19           136         12
16210   19           136         13
16211   19           136         14
16212   19           136         15
16213   19           136         16
16214   19           136         17
16215   19           136         18
16216   19           136         19
16217   19           136         20
16218   19           136         21
16219   19           136         22
16220   19           136         23
16221   19           136         24
16222   19           136         25
16223   19           136         26
16224   19           137          1
16225   19           137          2
16226   19           137          3
16227   19           137          4
16228   19           137          5
16229   19           137          6
16230   19           137          7
16231   19           137          8
16232   19           137          9
16233   19           138          1
16234   19           138          2
16235   19           138          3
16236   19           138          4
16237   19           138          5
16238   19           138          6
16239   19           138          7
16240   19           138          8
16241   19           139          1
16242   19           139          2
16243   19           139          3
16244   19           139          4
16245   19           139          5
16246   19           139          6
16247   19           139          7
16248   19           139          8
16249   19           139          9
16250   19           139         10
16251   19           139         11
16252   19           139         12
16253   19           139         13
16254   19           139         14
16255   19           139         15
16256   19           139         16
16257   19           139         17
16258   19           139         18
16259   19           139         19
16260   19           139         20
16261   19           139         21
16262   19           139         22
16263   19           139         23
16264   19           139         24
16265   19           140          1
16266   19           140          2
16267   19           140          3
16268   19           140          4
16269   19           140          5
16270   19           140          6
16271   19           140          7
16272   19           140          8
16273   19           140          9
16274   19           140         10
16275   19           140         11
16276   19           140         12
16277   19           140         13
16278   19           141          1
16279   19           141          2
16280   19           141          3
16281   19           141          4
16282   19           141          5
16283   19           141          6
16284   19           141          7
16285   19           141          8
16286   19           141          9
16287   19           141         10
16288   19           142          1
16289   19           142          2
16290   19           142          3
16291   19           142          4
16292   19           142          5
16293   19           142          6
16294   19           142          7
16295   19           143          1
16296   19           143          2
16297   19           143          3
16298   19           143          4
16299   19           143          5
16300   19           143          6
16301   19           143          7
16302   19           143          8
16303   19           143          9
16304   19           143         10
16305   19           143         11
16306   19           143         12
16307   19           144          1
16308   19           144          2
16309   19           144          3
16310   19           144          4
16311   19           144          5
16312   19           144          6
16313   19           144          7
16314   19           144          8
16315   19           144          9
16316   19           144         10
16317   19           144         11
16318   19           144         12
16319   19           144         13
16320   19           144         14
16321   19           144         15
16322   19           145          1
16323   19           145          2
16324   19           145          3
16325   19           145          4
16326   19           145          5
16327   19           145          6
16328   19           145          7
16329   19           145          8
16330   19           145          9
16331   19           145         10
16332   19           145         11
16333   19           145         12
16334   19           145         13
16335   19           145         14
16336   19           145         15
16337   19           145         16
16338   19           145         17
16339   19           145         18
16340   19           145         19
16341   19           145         20
16342   19           145         21
16343   19           146          1
16344   19           146          2
16345   19           146          3
16346   19           146          4
16347   19           146          5
16348   19           146          6
16349   19           146          7
16350   19           146          8
16351   19           146          9
16352   19           146         10
16353   19           147          1
16354   19           147          2
16355   19           147          3
16356   19           147          4
16357   19           147          5
16358   19           147          6
16359   19           147          7
16360   19           147          8
16361   19           147          9
16362   19           147         10
16363   19           147         11
16364   19           147         12
16365   19           147         13
16366   19           147         14
16367   19           147         15
16368   19           147         16
16369   19           147         17
16370   19           147         18
16371   19           147         19
16372   19           147         20
16373   19           148          1
16374   19           148          2
16375   19           148          3
16376   19           148          4
16377   19           148          5
16378   19           148          6
16379   19           148          7
16380   19           148          8
16381   19           148          9
16382   19           148         10
16383   19           148         11
16384   19           148         12
16385   19           148         13
16386   19           148         14
16387   19           149          1
16388   19           149          2
16389   19           149          3
16390   19           149          4
16391   19           149          5
16392   19           149          6
16393   19           149          7
16394   19           149          8
16395   19           149          9
16396   19           150          1
16397   19           150          2
16398   19           150          3
16399   19           150          4
16400   19           150          5
16401   19           150          6
16402   20             1          1
16403   20             1          2
16404   20             1          3
16405   20             1          4
16406   20             1          5
16407   20             1          6
16408   20             1          7
16409   20             1          8
16410   20             1          9
16411   20             1         10
16412   20             1         11
16413   20             1         12
16414   20             1         13
16415   20             1         14
16416   20             1         15
16417   20             1         16
16418   20             1         17
16419   20             1         18
16420   20             1         19
16421   20             1         20
16422   20             1         21
16423   20             1         22
16424   20             1         23
16425   20             1         24
16426   20             1         25
16427   20             1         26
16428   20             1         27
16429   20             1         28
16430   20             1         29
16431   20             1         30
16432   20             1         31
16433   20             1         32
16434   20             1         33
16435   20             2          1
16436   20             2          2
16437   20             2          3
16438   20             2          4
16439   20             2          5
16440   20             2          6
16441   20             2          7
16442   20             2          8
16443   20             2          9
16444   20             2         10
16445   20             2         11
16446   20             2         12
16447   20             2         13
16448   20             2         14
16449   20             2         15
16450   20             2         16
16451   20             2         17
16452   20             2         18
16453   20             2         19
16454   20             2         20
16455   20             2         21
16456   20             2         22
16457   20             3          1
16458   20             3          2
16459   20             3          3
16460   20             3          4
16461   20             3          5
16462   20             3          6
16463   20             3          7
16464   20             3          8
16465   20             3          9
16466   20             3         10
16467   20             3         11
16468   20             3         12
16469   20             3         13
16470   20             3         14
16471   20             3         15
16472   20             3         16
16473   20             3         17
16474   20             3         18
16475   20             3         19
16476   20             3         20
16477   20             3         21
16478   20             3         22
16479   20             3         23
16480   20             3         24
16481   20             3         25
16482   20             3         26
16483   20             3         27
16484   20             3         28
16485   20             3         29
16486   20             3         30
16487   20             3         31
16488   20             3         32
16489   20             3         33
16490   20             3         34
16491   20             3         35
16492   20             4          1
16493   20             4          2
16494   20             4          3
16495   20             4          4
16496   20             4          5
16497   20             4          6
16498   20             4          7
16499   20             4          8
16500   20             4          9
16501   20             4         10
16502   20             4         11
16503   20             4         12
16504   20             4         13
16505   20             4         14
16506   20             4         15
16507   20             4         16
16508   20             4         17
16509   20             4         18
16510   20             4         19
16511   20             4         20
16512   20             4         21
16513   20             4         22
16514   20             4         23
16515   20             4         24
16516   20             4         25
16517   20             4         26
16518   20             4         27
16519   20             5          1
16520   20             5          2
16521   20             5          3
16522   20             5          4
16523   20             5          5
16524   20             5          6
16525   20             5          7
16526   20             5          8
16527   20             5          9
16528   20             5         10
16529   20             5         11
16530   20             5         12
16531   20             5         13
16532   20             5         14
16533   20             5         15
16534   20             5         16
16535   20             5         17
16536   20             5         18
16537   20             5         19
16538   20             5         20
16539   20             5         21
16540   20             5         22
16541   20             5         23
16542   20             6          1
16543   20             6          2
16544   20             6          3
16545   20             6          4
16546   20             6          5
16547   20             6          6
16548   20             6          7
16549   20             6          8
16550   20             6          9
16551   20             6         10
16552   20             6         11
16553   20             6         12
16554   20             6         13
16555   20             6         14
16556   20             6         15
16557   20             6         16
16558   20             6         17
16559   20             6         18
16560   20             6         19
16561   20             6         20
16562   20             6         21
16563   20             6         22
16564   20             6         23
16565   20             6         24
16566   20             6         25
16567   20             6         26
16568   20             6         27
16569   20             6         28
16570   20             6         29
16571   20             6         30
16572   20             6         31
16573   20             6         32
16574   20             6         33
16575   20             6         34
16576   20             6         35
16577   20             7          1
16578   20             7          2
16579   20             7          3
16580   20             7          4
16581   20             7          5
16582   20             7          6
16583   20             7          7
16584   20             7          8
16585   20             7          9
16586   20             7         10
16587   20             7         11
16588   20             7         12
16589   20             7         13
16590   20             7         14
16591   20             7         15
16592   20             7         16
16593   20             7         17
16594   20             7         18
16595   20             7         19
16596   20             7         20
16597   20             7         21
16598   20             7         22
16599   20             7         23
16600   20             7         24
16601   20             7         25
16602   20             7         26
16603   20             7         27
16604   20             8          1
16605   20             8          2
16606   20             8          3
16607   20             8          4
16608   20             8          5
16609   20             8          6
16610   20             8          7
16611   20             8          8
16612   20             8          9
16613   20             8         10
16614   20             8         11
16615   20             8         12
16616   20             8         13
16617   20             8         14
16618   20             8         15
16619   20             8         16
16620   20             8         17
16621   20             8         18
16622   20             8         19
16623   20             8         20
16624   20             8         21
16625   20             8         22
16626   20             8         23
16627   20             8         24
16628   20             8         25
16629   20             8         26
16630   20             8         27
16631   20             8         28
16632   20             8         29
16633   20             8         30
16634   20             8         31
16635   20             8         32
16636   20             8         33
16637   20             8         34
16638   20             8         35
16639   20             8         36
16640   20             9          1
16641   20             9          2
16642   20             9          3
16643   20             9          4
16644   20             9          5
16645   20             9          6
16646   20             9          7
16647   20             9          8
16648   20             9          9
16649   20             9         10
16650   20             9         11
16651   20             9         12
16652   20             9         13
16653   20             9         14
16654   20             9         15
16655   20             9         16
16656   20             9         17
16657   20             9         18
16658   20            10          1
16659   20            10          2
16660   20            10          3
16661   20            10          4
16662   20            10          5
16663   20            10          6
16664   20            10          7
16665   20            10          8
16666   20            10          9
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  text
1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In the beginning God created the heaven and the earth.
2                                                                                                                                                                                                                                                                                                                                                                                                       And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters.
3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And God said, Let there be light: and there was light.
4                                                                                                                                                                                                                                                                                                                                                                                                                                                                And God saw the light, that it was good: and God divided the light from the darkness.
5                                                                                                                                                                                                                                                                                                                                                                                                                                  And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.
6                                                                                                                                                                                                                                                                                                                                                                                                                                     And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.
7                                                                                                                                                                                                                                                                                                                                                                                                     And God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so.
8                                                                                                                                                                                                                                                                                                                                                                                                                                                            And God called the firmament Heaven. And the evening and the morning were the second day.
9                                                                                                                                                                                                                                                                                                                                                                                                                       And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so.
10                                                                                                                                                                                                                                                                                                                                                                                                                           And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good.
11                                                                                                                                                                                                                                                                                                                                                                    And God said, Let the earth bring forth grass, the herb yielding seed, and the fruit tree yielding fruit after his kind, whose seed is in itself, upon the earth: and it was so.
12                                                                                                                                                                                                                                                                                                                                                                      And the earth brought forth grass, and herb yielding seed after his kind, and the tree yielding fruit, whose seed was in itself, after his kind: and God saw that it was good.
13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the evening and the morning were the third day.
14                                                                                                                                                                                                                                                                                                                                                                             And God said, Let there be lights in the firmament of the heaven to divide the day from the night; and let them be for signs, and for seasons, and for days, and years:
15                                                                                                                                                                                                                                                                                                                                                                                                                                              And let them be for lights in the firmament of the heaven to give light upon the earth: and it was so.
16                                                                                                                                                                                                                                                                                                                                                                                                                   And God made two great lights; the greater light to rule the day, and the lesser light to rule the night: he made the stars also.
17                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And God set them in the firmament of the heaven to give light upon the earth,
18                                                                                                                                                                                                                                                                                                                                                                                                                               And to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good.
19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the evening and the morning were the fourth day.
20                                                                                                                                                                                                                                                                                                                                                                                      And God said, Let the waters bring forth abundantly the moving creature that hath life, and fowl that may fly above the earth in the open firmament of heaven.
21                                                                                                                                                                                                                                                                                                                                               And God created great whales, and every living creature that moveth, which the waters brought forth abundantly, after their kind, and every winged fowl after his kind: and God saw that it was good.
22                                                                                                                                                                                                                                                                                                                                                                                                                       And God blessed them, saying, Be fruitful, and multiply, and fill the waters in the seas, and let fowl multiply in the earth.
23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the evening and the morning were the fifth day.
24                                                                                                                                                                                                                                                                                                                                                                                       And God said, Let the earth bring forth the living creature after his kind, cattle, and creeping thing, and beast of the earth after his kind: and it was so.
25                                                                                                                                                                                                                                                                                                                                                                         And God made the beast of the earth after his kind, and cattle after their kind, and every thing that creepeth upon the earth after his kind: and God saw that it was good.
26                                                                                                                                                                                                                                                                                         And God said, Let us make man in our image, after our likeness: and let them have dominion over the fish of the sea, and over the fowl of the air, and over the cattle, and over all the earth, and over every creeping thing that creepeth upon the earth.
27                                                                                                                                                                                                                                                                                                                                                                                                                                           So God created man in his own image, in the image of God created he him; male and female created he them.
28                                                                                                                                                                                                                                                                                                  And God blessed them, and God said unto them, Be fruitful, and multiply, and replenish the earth, and subdue it: and have dominion over the fish of the sea, and over the fowl of the air, and over every living thing that moveth upon the earth.
29                                                                                                                                                                                                                                                                                                                                            And God said, Behold, I have given you every herb bearing seed, which is upon the face of all the earth, and every tree, in the which is the fruit of a tree yielding seed; to you it shall be for meat.
30                                                                                                                                                                                                                                                                                                                                                       And to every beast of the earth, and to every fowl of the air, and to every thing that creepeth upon the earth, wherein there is life, I have given every green herb for meat: and it was so.
31                                                                                                                                                                                                                                                                                                                                                                                                                        And God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day.
32                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thus the heavens and the earth were finished, and all the host of them.
33                                                                                                                                                                                                                                                                                                                                                                                                                  And on the seventh day God ended his work which he had made; and he rested on the seventh day from all his work which he had made.
34                                                                                                                                                                                                                                                                                                                                                                                                                  And God blessed the seventh day, and sanctified it: because that in it he had rested from all his work which God created and made.
35                                                                                                                                                                                                                                                                                                                                                                                                      These are the generations of the heavens and of the earth when they were created, in the day that the LORD God made the earth and the heavens,
36                                                                                                                                                                                                                                                                                                                                         And every plant of the field before it was in the earth, and every herb of the field before it grew: for the LORD God had not caused it to rain upon the earth, and there was not a man to till the ground.
37                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But there went up a mist from the earth, and watered the whole face of the ground.
38                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD God formed man of the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul.
39                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD God planted a garden eastward in Eden; and there he put the man whom he had formed.
40                                                                                                                                                                                                                                                                                                                                          And out of the ground made the LORD God to grow every tree that is pleasant to the sight, and good for food; the tree of life also in the midst of the garden, and the tree of knowledge of good and evil.
41                                                                                                                                                                                                                                                                                                                                                                                                                                        And a river went out of Eden to water the garden; and from thence it was parted, and became into four heads.
42                                                                                                                                                                                                                                                                                                                                                                                                                                         The name of the first is Pison: that is it which compasseth the whole land of Havilah, where there is gold;
43                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the gold of that land is good: there is bdellium and the onyx stone.
44                                                                                                                                                                                                                                                                                                                                                                                                                                               And the name of the second river is Gihon: the same is it that compasseth the whole land of Ethiopia.
45                                                                                                                                                                                                                                                                                                                                                                                                                  And the name of the third river is Hiddekel: that is it which goeth toward the east of Assyria. And the fourth river is Euphrates.
46                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD God took the man, and put him into the garden of Eden to dress it and to keep it.
47                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD God commanded the man, saying, Of every tree of the garden thou mayest freely eat:
48                                                                                                                                                                                                                                                                                                                                                                                                         But of the tree of the knowledge of good and evil, thou shalt not eat of it: for in the day that thou eatest thereof thou shalt surely die.
49                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD God said, It is not good that the man should be alone; I will make him an help meet for him.
50                                                                                                                                                                                                                                                                                                              And out of the ground the LORD God formed every beast of the field, and every fowl of the air; and brought them unto Adam to see what he would call them: and whatsoever Adam called every living creature, that was the name thereof.
51                                                                                                                                                                                                                                                                                                                                                                                              And Adam gave names to all cattle, and to the fowl of the air, and to every beast of the field; but for Adam there was not found an help meet for him.
52                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD God caused a deep sleep to fall upon Adam, and he slept: and he took one of his ribs, and closed up the flesh instead thereof;
53                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the rib, which the LORD God had taken from man, made he a woman, and brought her unto the man.
54                                                                                                                                                                                                                                                                                                                                                                                                                    And Adam said, This is now bone of my bones, and flesh of my flesh: she shall be called Woman, because she was taken out of Man.
55                                                                                                                                                                                                                                                                                                                                                                                                                                 Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh.
56                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they were both naked, the man and his wife, and were not ashamed.
57                                                                                                                                                                                                                                                                                                                                                              Now the serpent was more subtil than any beast of the field which the LORD God had made. And he said unto the woman, Yea, hath God said, Ye shall not eat of every tree of the garden?
58                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the woman said unto the serpent, We may eat of the fruit of the trees of the garden:
59                                                                                                                                                                                                                                                                                                                                                                                                    But of the fruit of the tree which is in the midst of the garden, God hath said, Ye shall not eat of it, neither shall ye touch it, lest ye die.
60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the serpent said unto the woman, Ye shall not surely die:
61                                                                                                                                                                                                                                                                                                                                                                                                                   For God doth know that in the day ye eat thereof, then your eyes shall be opened, and ye shall be as gods, knowing good and evil.
62                                                                                                                                                                                                                                                                                                       And when the woman saw that the tree was good for food, and that it was pleasant to the eyes, and a tree to be desired to make one wise, she took of the fruit thereof, and did eat, and gave also unto her husband with her; and he did eat.
63                                                                                                                                                                                                                                                                                                                                                                                                          And the eyes of them both were opened, and they knew that they were naked; and they sewed fig leaves together, and made themselves aprons.
64                                                                                                                                                                                                                                                                                                                                                      And they heard the voice of the LORD God walking in the garden in the cool of the day: and Adam and his wife hid themselves from the presence of the LORD God amongst the trees of the garden.
65                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD God called unto Adam, and said unto him, Where art thou?
66                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself.
67                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat?
68                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat.
69                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD God said unto the woman, What is this that thou hast done? And the woman said, The serpent beguiled me, and I did eat.
70                                                                                                                                                                                                                                                                                                                          And the LORD God said unto the serpent, Because thou hast done this, thou art cursed above all cattle, and above every beast of the field; upon thy belly shalt thou go, and dust shalt thou eat all the days of thy life:
71                                                                                                                                                                                                                                                                                                                                                                                                      And I will put enmity between thee and the woman, and between thy seed and her seed; it shall bruise thy head, and thou shalt bruise his heel.
72                                                                                                                                                                                                                                                                                                                                                      Unto the woman he said, I will greatly multiply thy sorrow and thy conception; in sorrow thou shalt bring forth children; and thy desire shall be to thy husband, and he shall rule over thee.
73                                                                                                                                                                                                                                                                                 And unto Adam he said, Because thou hast hearkened unto the voice of thy wife, and hast eaten of the tree, of which I commanded thee, saying, Thou shalt not eat of it: cursed is the ground for thy sake; in sorrow shalt thou eat of it all the days of thy life;
74                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field;
75                                                                                                                                                                                                                                                                                                                                                                                 In the sweat of thy face shalt thou eat bread, till thou return unto the ground; for out of it wast thou taken: for dust thou art, and unto dust shalt thou return.
76                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Adam called his wife's name Eve; because she was the mother of all living.
77                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unto Adam also and to his wife did the LORD God make coats of skins, and clothed them.
78                                                                                                                                                                                                                                                                                                                                                           And the LORD God said, Behold, the man is become as one of us, to know good and evil: and now, lest he put forth his hand, and take also of the tree of life, and eat, and live for ever:
79                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore the LORD God sent him forth from the garden of Eden, to till the ground from whence he was taken.
80                                                                                                                                                                                                                                                                                                                                                                                So he drove out the man; and he placed at the east of the garden of Eden Cherubims, and a flaming sword which turned every way, to keep the way of the tree of life.
81                                                                                                                                                                                                                                                                                                                                                                                                                                          And Adam knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man from the LORD.
82                                                                                                                                                                                                                                                                                                                                                                                                                                           And she again bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground.
83                                                                                                                                                                                                                                                                                                                                                                                                                                     And in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto the LORD.
84                                                                                                                                                                                                                                                                                                                                                                                                            And Abel, he also brought of the firstlings of his flock and of the fat thereof. And the LORD had respect unto Abel and to his offering:
85                                                                                                                                                                                                                                                                                                                                                                                                                                            But unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell.
86                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Cain, Why art thou wroth? and why is thy countenance fallen?
87                                                                                                                                                                                                                                                                                                                                                                                 If thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto thee shall be his desire, and thou shalt rule over him.
88                                                                                                                                                                                                                                                                                                                                                                                                  And Cain talked with Abel his brother: and it came to pass, when they were in the field, that Cain rose up against Abel his brother, and slew him.
89                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother's keeper?
90                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, What hast thou done? the voice of thy brother's blood crieth unto me from the ground.
91                                                                                                                                                                                                                                                                                                                                                                                                                                   And now art thou cursed from the earth, which hath opened her mouth to receive thy brother's blood from thy hand;
92                                                                                                                                                                                                                                                                                                                                                                                                           When thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth.
93                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Cain said unto the LORD, My punishment is greater than I can bear.
94                                                                                                                                                                                                                                                                                                              Behold, thou hast driven me out this day from the face of the earth; and from thy face shall I be hid; and I shall be a fugitive and a vagabond in the earth; and it shall come to pass, that every one that findeth me shall slay me.
95                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto him, Therefore whosoever slayeth Cain, vengeance shall be taken on him sevenfold. And the LORD set a mark upon Cain, lest any finding him should kill him.
96                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Cain went out from the presence of the LORD, and dwelt in the land of Nod, on the east of Eden.
97                                                                                                                                                                                                                                                                                                                                                                                                And Cain knew his wife; and she conceived, and bare Enoch: and he builded a city, and called the name of the city, after the name of his son, Enoch.
98                                                                                                                                                                                                                                                                                                                                                                                                                                    And unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methusael: and Methusael begat Lamech.
99                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah.
100                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Adah bare Jabal: he was the father of such as dwell in tents, and of such as have cattle.
101                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his brother's name was Jubal: he was the father of all such as handle the harp and organ.
102                                                                                                                                                                                                                                                                                                                                                                                                                   And Zillah, she also bare Tubalcain, an instructer of every artificer in brass and iron: and the sister of Tubalcain was Naamah.
103                                                                                                                                                                                                                                                                                                                                                                     And Lamech said unto his wives, Adah and Zillah, Hear my voice; ye wives of Lamech, hearken unto my speech: for I have slain a man to my wounding, and a young man to my hurt.
104                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If Cain shall be avenged sevenfold, truly Lamech seventy and sevenfold.
105                                                                                                                                                                                                                                                                                                                                                                                     And Adam knew his wife again; and she bare a son, and called his name Seth: For God, said she, hath appointed me another seed instead of Abel, whom Cain slew.
106                                                                                                                                                                                                                                                                                                                                                                                                                      And to Seth, to him also there was born a son; and he called his name Enos: then began men to call upon the name of the LORD.
107                                                                                                                                                                                                                                                                                                                                                                                                                                  This is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him;
108                                                                                                                                                                                                                                                                                                                                                                                                                                  Male and female created he them; and blessed them, and called their name Adam, in the day when they were created.
109                                                                                                                                                                                                                                                                                                                                                                                                                    And Adam lived an hundred and thirty years, and begat a son in his own likeness, and after his image; and called his name Seth:
110                                                                                                                                                                                                                                                                                                                                                                                                                                         And the days of Adam after he had begotten Seth were eight hundred years: and he begat sons and daughters:
111                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the days that Adam lived were nine hundred and thirty years: and he died.
112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Seth lived an hundred and five years, and begat Enos:
113                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Seth lived after he begat Enos eight hundred and seven years, and begat sons and daughters:
114                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the days of Seth were nine hundred and twelve years: and he died.
115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Enos lived ninety years, and begat Cainan:
116                                                                                                                                                                                                                                                                                                                                                                                                                                                And Enos lived after he begat Cainan eight hundred and fifteen years, and begat sons and daughters:
117                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the days of Enos were nine hundred and five years: and he died.
118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Cainan lived seventy years and begat Mahalaleel:
119                                                                                                                                                                                                                                                                                                                                                                                                                                            And Cainan lived after he begat Mahalaleel eight hundred and forty years, and begat sons and daughters:
120                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the days of Cainan were nine hundred and ten years: and he died.
121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Mahalaleel lived sixty and five years, and begat Jared:
122                                                                                                                                                                                                                                                                                                                                                                                                                                            And Mahalaleel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters:
123                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the days of Mahalaleel were eight hundred ninety and five years: and he died.
124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jared lived an hundred sixty and two years, and he begat Enoch:
125                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jared lived after he begat Enoch eight hundred years, and begat sons and daughters:
126                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the days of Jared were nine hundred sixty and two years: and he died.
127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Enoch lived sixty and five years, and begat Methuselah:
128                                                                                                                                                                                                                                                                                                                                                                                                                                             And Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters:
129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And all the days of Enoch were three hundred sixty and five years:
130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Enoch walked with God: and he was not; for God took him.
131                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Methuselah lived an hundred eighty and seven years, and begat Lamech.
132                                                                                                                                                                                                                                                                                                                                                                                                                                       And Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters:
133                                                                                                                                                                                                                                                                                                                                                                                                                                                                And all the days of Methuselah were nine hundred sixty and nine years: and he died.
134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Lamech lived an hundred eighty and two years, and begat a son:
135                                                                                                                                                                                                                                                                                                                                                                                       And he called his name Noah, saying, This same shall comfort us concerning our work and toil of our hands, because of the ground which the LORD hath cursed.
136                                                                                                                                                                                                                                                                                                                                                                                                                                             And Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters:
137                                                                                                                                                                                                                                                                                                                                                                                                                                                                And all the days of Lamech were seven hundred seventy and seven years: and he died.
138                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Noah was five hundred years old: and Noah begat Shem, Ham, and Japheth.
139                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when men began to multiply on the face of the earth, and daughters were born unto them,
140                                                                                                                                                                                                                                                                                                                                                                                                                               That the sons of God saw the daughters of men that they were fair; and they took them wives of all which they chose.
141                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said, My spirit shall not always strive with man, for that he also is flesh: yet his days shall be an hundred and twenty years.
142                                                                                                                                                                                                                                                                                                                            There were giants in the earth in those days; and also after that, when the sons of God came in unto the daughters of men, and they bare children to them, the same became mighty men which were of old, men of renown.
143                                                                                                                                                                                                                                                                                                                                                                                                  And God saw that the wickedness of man was great in the earth, and that every imagination of the thoughts of his heart was only evil continually.
144                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it repented the LORD that he had made man on the earth, and it grieved him at his heart.
145                                                                                                                                                                                                                                                                                                                                            And the LORD said, I will destroy man whom I have created from the face of the earth; both man, and beast, and the creeping thing, and the fowls of the air; for it repenteth me that I have made them.
146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But Noah found grace in the eyes of the LORD.
147                                                                                                                                                                                                                                                                                                                                                                                                                                   These are the generations of Noah: Noah was a just man and perfect in his generations, and Noah walked with God.
148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Noah begat three sons, Shem, Ham, and Japheth.
149                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The earth also was corrupt before God, and the earth was filled with violence.
150                                                                                                                                                                                                                                                                                                                                                                                                                                    And God looked upon the earth, and, behold, it was corrupt; for all flesh had corrupted his way upon the earth.
151                                                                                                                                                                                                                                                                                                                                                                               And God said unto Noah, The end of all flesh is come before me; for the earth is filled with violence through them; and, behold, I will destroy them with the earth.
152                                                                                                                                                                                                                                                                                                                                                                                                                               Make thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch.
153                                                                                                                                                                                                                                                                                                                                                                      And this is the fashion which thou shalt make it of: The length of the ark shall be three hundred cubits, the breadth of it fifty cubits, and the height of it thirty cubits.
154                                                                                                                                                                                                                                                                                                                                              A window shalt thou make to the ark, and in a cubit shalt thou finish it above; and the door of the ark shalt thou set in the side thereof; with lower, second, and third stories shalt thou make it.
155                                                                                                                                                                                                                                                                                                                                                         And, behold, I, even I, do bring a flood of waters upon the earth, to destroy all flesh, wherein is the breath of life, from under heaven; and every thing that is in the earth shall die.
156                                                                                                                                                                                                                                                                                                                                                                                                     But with thee will I establish my covenant; and thou shalt come into the ark, thou, and thy sons, and thy wife, and thy sons' wives with thee.
157                                                                                                                                                                                                                                                                                                                                                                                              And of every living thing of all flesh, two of every sort shalt thou bring into the ark, to keep them alive with thee; they shall be male and female.
158                                                                                                                                                                                                                                                                                                                                                                        Of fowls after their kind, and of cattle after their kind, of every creeping thing of the earth after his kind, two of every sort shall come unto thee, to keep them alive.
159                                                                                                                                                                                                                                                                                                                                                                                                              And take thou unto thee of all food that is eaten, and thou shalt gather it to thee; and it shall be for food for thee, and for them.
160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thus did Noah; according to all that God commanded him, so did he.
161                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Noah, Come thou and all thy house into the ark; for thee have I seen righteous before me in this generation.
162                                                                                                                                                                                                                                                                                                                                                                                                 Of every clean beast thou shalt take to thee by sevens, the male and his female: and of beasts that are not clean by two, the male and his female.
163                                                                                                                                                                                                                                                                                                                                                                                                                                    Of fowls also of the air by sevens, the male and the female; to keep seed alive upon the face of all the earth.
164                                                                                                                                                                                                                                                                                                                                                             For yet seven days, and I will cause it to rain upon the earth forty days and forty nights; and every living substance that I have made will I destroy from off the face of the earth.
165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Noah did according unto all that the LORD commanded him.
166                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Noah was six hundred years old when the flood of waters was upon the earth.
167                                                                                                                                                                                                                                                                                                                                                                                                                      And Noah went in, and his sons, and his wife, and his sons' wives with him, into the ark, because of the waters of the flood.
168                                                                                                                                                                                                                                                                                                                                                                                                                                  Of clean beasts, and of beasts that are not clean, and of fowls, and of every thing that creepeth upon the earth,
169                                                                                                                                                                                                                                                                                                                                                                                                                                              There went in two and two unto Noah into the ark, the male and the female, as God had commanded Noah.
170                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass after seven days, that the waters of the flood were upon the earth.
171                                                                                                                                                                                                                                                                                                                                           In the six hundredth year of Noah's life, in the second month, the seventeenth day of the month, the same day were all the fountains of the great deep broken up, and the windows of heaven were opened.
172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the rain was upon the earth forty days and forty nights.
173                                                                                                                                                                                                                                                                                                                                                                                      In the selfsame day entered Noah, and Shem, and Ham, and Japheth, the sons of Noah, and Noah's wife, and the three wives of his sons with them, into the ark;
174                                                                                                                                                                                                                                                                                                                                          They, and every beast after his kind, and all the cattle after their kind, and every creeping thing that creepeth upon the earth after his kind, and every fowl after his kind, every bird of every sort.
175                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they went in unto Noah into the ark, two and two of all flesh, wherein is the breath of life.
176                                                                                                                                                                                                                                                                                                                                                                                                                                   And they that went in, went in male and female of all flesh, as God had commanded him: and the LORD shut him in.
177                                                                                                                                                                                                                                                                                                                                                                                                                    And the flood was forty days upon the earth; and the waters increased, and bare up the ark, and it was lift up above the earth.
178                                                                                                                                                                                                                                                                                                                                                                                                                                 And the waters prevailed, and were increased greatly upon the earth; and the ark went upon the face of the waters.
179                                                                                                                                                                                                                                                                                                                                                                                                                       And the waters prevailed exceedingly upon the earth; and all the high hills, that were under the whole heaven, were covered.
180                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fifteen cubits upward did the waters prevail; and the mountains were covered.
181                                                                                                                                                                                                                                                                                                                                                                                  And all flesh died that moved upon the earth, both of fowl, and of cattle, and of beast, and of every creeping thing that creepeth upon the earth, and every man:
182                                                                                                                                                                                                                                                                                                                                                                                                                                                               All in whose nostrils was the breath of life, of all that was in the dry land, died.
183                                                                                                                                                                                                                                                                           And every living substance was destroyed which was upon the face of the ground, both man, and cattle, and the creeping things, and the fowl of the heaven; and they were destroyed from the earth: and Noah only remained alive, and they that were with him in the ark.
184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the waters prevailed upon the earth an hundred and fifty days.
185                                                                                                                                                                                                                                                                                                                                                                             And God remembered Noah, and every living thing, and all the cattle that was with him in the ark: and God made a wind to pass over the earth, and the waters assuaged;
186                                                                                                                                                                                                                                                                                                                                                                                                                                    The fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained;
187                                                                                                                                                                                                                                                                                                                                                                                                                    And the waters returned from off the earth continually: and after the end of the hundred and fifty days the waters were abated.
188                                                                                                                                                                                                                                                                                                                                                                                                                                        And the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat.
189                                                                                                                                                                                                                                                                                                                                                                                                And the waters decreased continually until the tenth month: in the tenth month, on the first day of the month, were the tops of the mountains seen.
190                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass at the end of forty days, that Noah opened the window of the ark which he had made:
191                                                                                                                                                                                                                                                                                                                                                                                                                                         And he sent forth a raven, which went forth to and fro, until the waters were dried up from off the earth.
192                                                                                                                                                                                                                                                                                                                                                                                                                                              Also he sent forth a dove from him, to see if the waters were abated from off the face of the ground;
193                                                                                                                                                                                                                                                                                                                But the dove found no rest for the sole of her foot, and she returned unto him into the ark, for the waters were on the face of the whole earth: then he put forth his hand, and took her, and pulled her in unto him into the ark.
194                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he stayed yet other seven days; and again he sent forth the dove out of the ark;
195                                                                                                                                                                                                                                                                                                                                                                                      And the dove came in to him in the evening; and, lo, in her mouth was an olive leaf plucked off: so Noah knew that the waters were abated from off the earth.
196                                                                                                                                                                                                                                                                                                                                                                                                                                           And he stayed yet other seven days; and sent forth the dove; which returned not again unto him any more.
197                                                                                                                                                                                                                                                                                           And it came to pass in the six hundredth and first year, in the first month, the first day of the month, the waters were dried up from off the earth: and Noah removed the covering of the ark, and looked, and, behold, the face of the ground was dry.
198                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in the second month, on the seven and twentieth day of the month, was the earth dried.
199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And God spake unto Noah, saying,
200                                                                                                                                                                                                                                                                                                                                                                                                                                                              Go forth of the ark, thou, and thy wife, and thy sons, and thy sons' wives with thee.
201                                                                                                                                                                                                                                                                                        Bring forth with thee every living thing that is with thee, of all flesh, both of fowl, and of cattle, and of every creeping thing that creepeth upon the earth; that they may breed abundantly in the earth, and be fruitful, and multiply upon the earth.
202                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Noah went forth, and his sons, and his wife, and his sons' wives with him:
203                                                                                                                                                                                                                                                                                                                                                                                                           Every beast, every creeping thing, and every fowl, and whatsoever creepeth upon the earth, after their kinds, went forth out of the ark.
204                                                                                                                                                                                                                                                                                                                                                                                                         And Noah builded an altar unto the LORD; and took of every clean beast, and of every clean fowl, and offered burnt offerings on the altar.
205                                                                                                                                                                                                                                                                                  And the LORD smelled a sweet savor; and the LORD said in his heart, I will not again curse the ground any more for man's sake; for the imagination of man's heart is evil from his youth; neither will I again smite any more every thing living, as I have done.
206                                                                                                                                                                                                                                                                                                                                                                                                                      While the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease.
207                                                                                                                                                                                                                                                                                                                                                                                                                                         And God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth.
208                                                                                                                                                                                                                                                                                                                       And the fear of you and the dread of you shall be upon every beast of the earth, and upon every fowl of the air, upon all that moveth upon the earth, and upon all the fishes of the sea; into your hand are they delivered.
209                                                                                                                                                                                                                                                                                                                                                                                                                                          Every moving thing that liveth shall be meat for you; even as the green herb have I given you all things.
210                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But flesh with the life thereof, which is the blood thereof, shall ye not eat.
211                                                                                                                                                                                                                                                                                                                                                       And surely your blood of your lives will I require; at the hand of every beast will I require it, and at the hand of man; at the hand of every man's brother will I require the life of man.
212                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whoso sheddeth man's blood, by man shall his blood be shed: for in the image of God made he man.
213                                                                                                                                                                                                                                                                                                                                                                                                                                                  And you, be ye fruitful, and multiply; bring forth abundantly in the earth, and multiply therein.
214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God spake unto Noah, and to his sons with him, saying,
215                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I, behold, I establish my covenant with you, and with your seed after you;
216                                                                                                                                                                                                                                                                                                                                                               And with every living creature that is with you, of the fowl, of the cattle, and of every beast of the earth with you; from all that go out of the ark, to every beast of the earth.
217                                                                                                                                                                                                                                                                                                                                                                     And I will establish my covenant with you, neither shall all flesh be cut off any more by the waters of a flood; neither shall there any more be a flood to destroy the earth.
218                                                                                                                                                                                                                                                                                                                                                                                             And God said, This is the token of the covenant which I make between me and you and every living creature that is with you, for perpetual generations:
219                                                                                                                                                                                                                                                                                                                                                                                                                                                  I do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth.
220                                                                                                                                                                                                                                                                                                                                                                                                                                           And it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud:
221                                                                                                                                                                                                                                                                                                                                                                             And I will remember my covenant, which is between me and you and every living creature of all flesh; and the waters shall no more become a flood to destroy all flesh.
222                                                                                                                                                                                                                                                                                                                                                                And the bow shall be in the cloud; and I will look upon it, that I may remember the everlasting covenant between God and every living creature of all flesh that is upon the earth.
223                                                                                                                                                                                                                                                                                                                                                                                                               And God said unto Noah, This is the token of the covenant, which I have established between me and all flesh that is upon the earth.
224                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Noah, that went forth of the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan.
225                                                                                                                                                                                                                                                                                                                                                                                                                                                                      These are the three sons of Noah: and of them was the whole earth overspread.
226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Noah began to be an husbandman, and he planted a vineyard:
227                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he drank of the wine, and was drunken; and he was uncovered within his tent.
228                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without.
229                                                                                                                                                                                                                                                                                                                                And Shem and Japheth took a garment, and laid it upon both their shoulders, and went backward, and covered the nakedness of their father; and their faces were backward, and they saw not their father's nakedness.
230                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Noah awoke from his wine, and knew what his younger son had done unto him.
231                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, Cursed be Canaan; a servant of servants shall he be unto his brethren.
232                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Blessed be the LORD God of Shem; and Canaan shall be his servant.
233                                                                                                                                                                                                                                                                                                                                                                                                                                               God shall enlarge Japheth, and he shall dwell in the tents of Shem; and Canaan shall be his servant.
234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Noah lived after the flood three hundred and fifty years.
235                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the days of Noah were nine hundred and fifty years: and he died.
236                                                                                                                                                                                                                                                                                                                                                                                                                           Now these are the generations of the sons of Noah, Shem, Ham, and Japheth: and unto them were sons born after the flood.
237                                                                                                                                                                                                                                                                                                                                                                                                                                                    The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.
238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Gomer; Ashkenaz, and Riphath, and Togarmah.
239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.
240                                                                                                                                                                                                                                                                                                                                                                                                                By these were the isles of the Gentiles divided in their lands; every one after his tongue, after their families, in their nations.
241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Ham; Cush, and Mizraim, and Phut, and Canaan.
242                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah, and Sabtechah: and the sons of Raamah; Sheba, and Dedan.
243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Cush begat Nimrod: he began to be a mighty one in the earth.
244                                                                                                                                                                                                                                                                                                                                                                                                                                    He was a mighty hunter before the LORD: wherefore it is said, Even as Nimrod the mighty hunter before the LORD.
245                                                                                                                                                                                                                                                                                                                                                                                                                                               And the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar.
246                                                                                                                                                                                                                                                                                                                                                                                                                                                         Out of that land went forth Asshur, and builded Nineveh, and the city Rehoboth, and Calah,
247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Resen between Nineveh and Calah: the same is a great city.
248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,
249                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pathrusim, and Casluhim, (out of whom came Philistim,) and Caphtorim.
250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Canaan begat Sidon his first born, and Heth,
251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the Jebusite, and the Amorite, and the Girgasite,
252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the Hivite, and the Arkite, and the Sinite,
253                                                                                                                                                                                                                                                                                                                                                                                                                            And the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanites spread abroad.
254                                                                                                                                                                                                                                                                                                                                                                              And the border of the Canaanites was from Sidon, as thou comest to Gerar, unto Gaza; as thou goest, unto Sodom, and Gomorrah, and Admah, and Zeboim, even unto Lasha.
255                                                                                                                                                                                                                                                                                                                                                                                                                                    These are the sons of Ham, after their families, after their tongues, in their countries, and in their nations.
256                                                                                                                                                                                                                                                                                                                                                                                                                          Unto Shem also, the father of all the children of Eber, the brother of Japheth the elder, even to him were children born.
257                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram.
258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the children of Aram; Uz, and Hul, and Gether, and Mash.
259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Arphaxad begat Salah; and Salah begat Eber.
260                                                                                                                                                                                                                                                                                                                                                                                                             And unto Eber were born two sons: the name of one was Peleg; for in his days was the earth divided; and his brother's name was Joktan.
261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,
262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Hadoram, and Uzal, and Diklah,
263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Obal, and Abimael, and Sheba,
264                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ophir, and Havilah, and Jobab: all these were the sons of Joktan.
265                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And their dwelling was from Mesha, as thou goest unto Sephar a mount of the east.
266                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the sons of Shem, after their families, after their tongues, in their lands, after their nations.
267                                                                                                                                                                                                                                                                                                                                                                                         These are the families of the sons of Noah, after their generations, in their nations: and by these were the nations divided in the earth after the flood.
268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the whole earth was of one language, and of one speech.
269                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as they journeyed from the east, that they found a plain in the land of Shinar; and they dwelt there.
270                                                                                                                                                                                                                                                                                                                                                                                                     And they said one to another, Go to, let us make brick, and burn them thoroughly. And they had brick for stone, and slime had they for mortar.
271                                                                                                                                                                                                                                                                                                                                                                And they said, Go to, let us build us a city and a tower, whose top may reach unto heaven; and let us make us a name, lest we be scattered abroad upon the face of the whole earth.
272                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD came down to see the city and the tower, which the children of men builded.
273                                                                                                                                                                                                                                                                                                                                                             And the LORD said, Behold, the people is one, and they have all one language; and this they begin to do: and now nothing will be restrained from them, which they have imagined to do.
274                                                                                                                                                                                                                                                                                                                                                                                                                                       Go to, let us go down, and there confound their language, that they may not understand one another's speech.
275                                                                                                                                                                                                                                                                                                                                                                                                                                 So the LORD scattered them abroad from thence upon the face of all the earth: and they left off to build the city.
276                                                                                                                                                                                                                                                                                                                                                      Therefore is the name of it called Babel; because the LORD did there confound the language of all the earth: and from thence did the LORD scatter them abroad upon the face of all the earth.
277                                                                                                                                                                                                                                                                                                                                                                                                                                    These are the generations of Shem: Shem was an hundred years old, and begat Arphaxad two years after the flood:
278                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Shem lived after he begat Arphaxad five hundred years, and begat sons and daughters.
279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Arphaxad lived five and thirty years, and begat Salah:
280                                                                                                                                                                                                                                                                                                                                                                                                                                                And Arphaxad lived after he begat Salah four hundred and three years, and begat sons and daughters.
281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Salah lived thirty years, and begat Eber:
282                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Salah lived after he begat Eber four hundred and three years, and begat sons and daughters.
283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Eber lived four and thirty years, and begat Peleg:
284                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Eber lived after he begat Peleg four hundred and thirty years, and begat sons and daughters.
285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Peleg lived thirty years, and begat Reu:
286                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters.
287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Reu lived two and thirty years, and begat Serug:
288                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters.
289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Serug lived thirty years, and begat Nahor:
290                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Serug lived after he begat Nahor two hundred years, and begat sons and daughters.
291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Nahor lived nine and twenty years, and begat Terah:
292                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Nahor lived after he begat Terah an hundred and nineteen years, and begat sons and daughters.
293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Terah lived seventy years, and begat Abram, Nahor, and Haran.
294                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now these are the generations of Terah: Terah begat Abram, Nahor, and Haran; and Haran begat Lot.
295                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees.
296                                                                                                                                                                                                                                                                                                                                                               And Abram and Nahor took them wives: the name of Abram's wife was Sarai; and the name of Nahor's wife, Milcah, the daughter of Haran, the father of Milcah, and the father of Iscah.
297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But Sarai was barren; she had no child.
298                                                                                                                                                                                                                                                                                        And Terah took Abram his son, and Lot the son of Haran his son's son, and Sarai his daughter in law, his son Abram's wife; and they went forth with them from Ur of the Chaldees, to go into the land of Canaan; and they came unto Haran, and dwelt there.
299                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the days of Terah were two hundred and five years: and Terah died in Haran.
300                                                                                                                                                                                                                                                                                                                                                                                               Now the LORD had said unto Abram, Get thee out of thy country, and from thy kindred, and from thy father's house, unto a land that I will show thee:
301                                                                                                                                                                                                                                                                                                                                                                                                                              And I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing:
302                                                                                                                                                                                                                                                                                                                                                                                                                    And I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed.
303                                                                                                                                                                                                                                                                                                                                                                                                 So Abram departed, as the LORD had spoken unto him; and Lot went with him: and Abram was seventy and five years old when he departed out of Haran.
304                                                                                                                                                                                                                                                                                                   And Abram took Sarai his wife, and Lot his brother's son, and all their substance that they had gathered, and the souls that they had gotten in Haran; and they went forth to go into the land of Canaan; and into the land of Canaan they came.
305                                                                                                                                                                                                                                                                                                                                                                                                                       And Abram passed through the land unto the place of Sichem, unto the plain of Moreh. And the Canaanite was then in the land.
306                                                                                                                                                                                                                                                                                                                                                                                               And the LORD appeared unto Abram, and said, Unto thy seed will I give this land: and there builded he an altar unto the LORD, who appeared unto him.
307                                                                                                                                                                                                                                                                                                                         And he removed from thence unto a mountain on the east of Bethel, and pitched his tent, having Bethel on the west, and Hai on the east: and there he builded an altar unto the LORD, and called upon the name of the LORD.
308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abram journeyed, going on still toward the south.
309                                                                                                                                                                                                                                                                                                                                                                                                                      And there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was grievous in the land.
310                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when he was come near to enter into Egypt, that he said unto Sarai his wife, Behold now, I know that thou art a fair woman to look upon:
311                                                                                                                                                                                                                                                                                                                                                                                   Therefore it shall come to pass, when the Egyptians shall see thee, that they shall say, This is his wife: and they will kill me, but they will save thee alive.
312                                                                                                                                                                                                                                                                                                                                                                                                                            Say, I pray thee, thou art my sister: that it may be well with me for thy sake; and my soul shall live because of thee.
313                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair.
314                                                                                                                                                                                                                                                                                                                                                                                                                               The princes also of Pharaoh saw her, and commended her before Pharaoh: and the woman was taken into Pharaoh's house.
315                                                                                                                                                                                                                                                                                                                                                                                                  And he entreated Abram well for her sake: and he had sheep, and oxen, and he asses, and menservants, and maidservants, and she asses, and camels.
316                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD plagued Pharaoh and his house with great plagues because of Sarai Abram's wife.
317                                                                                                                                                                                                                                                                                                                                                                                                                     And Pharaoh called Abram and said, What is this that thou hast done unto me? why didst thou not tell me that she was thy wife?
318                                                                                                                                                                                                                                                                                                                                                                                                               Why saidst thou, She is my sister? so I might have taken her to me to wife: now therefore behold thy wife, take her, and go thy way.
319                                                                                                                                                                                                                                                                                                                                                                                                                                           And Pharaoh commanded his men concerning him: and they sent him away, and his wife, and all that he had.
320                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the south.
321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Abram was very rich in cattle, in silver, and in gold.
322                                                                                                                                                                                                                                                                                                                                                                                                        And he went on his journeys from the south even to Bethel, unto the place where his tent had been at the beginning, between Bethel and Hai;
323                                                                                                                                                                                                                                                                                                                                                                                                                                 Unto the place of the altar, which he had make there at the first: and there Abram called on the name of the LORD.
324                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Lot also, which went with Abram, had flocks, and herds, and tents.
325                                                                                                                                                                                                                                                                                                                                                                                                      And the land was not able to bear them, that they might dwell together: for their substance was great, so that they could not dwell together.
326                                                                                                                                                                                                                                                                                                                                                                                        And there was a strife between the herdmen of Abram's cattle and the herdmen of Lot's cattle: and the Canaanite and the Perizzite dwelled then in the land.
327                                                                                                                                                                                                                                                                                                                                                                                                     And Abram said unto Lot, Let there be no strife, I pray thee, between me and thee, and between my herdmen and thy herdmen; for we be brethren.
328                                                                                                                                                                                                                                                                                                                                          Is not the whole land before thee? separate thyself, I pray thee, from me: if thou wilt take the left hand, then I will go to the right; or if thou depart to the right hand, then I will go to the left.
329                                                                                                                                                                                                                                                                                                              And Lot lifted up his eyes, and beheld all the plain of Jordan, that it was well watered every where, before the LORD destroyed Sodom and Gomorrah, even as the garden of the LORD, like the land of Egypt, as thou comest unto Zoar.
330                                                                                                                                                                                                                                                                                                                                                                                                                          Then Lot chose him all the plain of Jordan; and Lot journeyed east: and they separated themselves the one from the other.
331                                                                                                                                                                                                                                                                                                                                                                                                                                Abram dwelled in the land of Canaan, and Lot dwelled in the cities of the plain, and pitched his tent toward Sodom.
332                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the men of Sodom were wicked and sinners before the LORD exceedingly.
333                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Abram, after that Lot was separated from him, Lift up now thine eyes, and look from the place where thou art northward, and southward, and eastward, and westward:
334                                                                                                                                                                                                                                                                                                                                                                                                                                                               For all the land which thou seest, to thee will I give it, and to thy seed for ever.
335                                                                                                                                                                                                                                                                                                                                                                                                        And I will make thy seed as the dust of the earth: so that if a man can number the dust of the earth, then shall thy seed also be numbered.
336                                                                                                                                                                                                                                                                                                                                                                                                                                           Arise, walk through the land in the length of it and in the breadth of it; for I will give it unto thee.
337                                                                                                                                                                                                                                                                                                                                                                                                                 Then Abram removed his tent, and came and dwelt in the plain of Mamre, which is in Hebron, and built there an altar unto the LORD.
338                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass in the days of Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of nations;
339                                                                                                                                                                                                                                                                                                                                                                            That these made war with Bera king of Sodom, and with Birsha king of Gomorrah, Shinab king of Admah, and Shemeber king of Zeboiim, and the king of Bela, which is Zoar.
340                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All these were joined together in the vale of Siddim, which is the salt sea.
341                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Twelve years they served Chedorlaomer, and in the thirteenth year they rebelled.
342                                                                                                                                                                                                                                                                                                                                                             And in the fourteenth year came Chedorlaomer, and the kings that were with him, and smote the Rephaim in Ashteroth Karnaim, and the Zuzims in Ham, and the Emins in Shaveh Kiriathaim,
343                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the Horites in their mount Seir, unto Elparan, which is by the wilderness.
344                                                                                                                                                                                                                                                                                                                                                                                         And they returned, and came to Enmishpat, which is Kadesh, and smote all the country of the Amalekites, and also the Amorites, that dwelt in Hazezontamar.
345                                                                                                                                                                                                                                                                                                                                   And there went out the king of Sodom, and the king of Gomorrah, and the king of Admah, and the king of Zeboiim, and the king of Bela (the same is Zoar;) and they joined battle with them in the vale of Siddim;
346                                                                                                                                                                                                                                                                                                                                                                                                 With Chedorlaomer the king of Elam, and with Tidal king of nations, and Amraphel king of Shinar, and Arioch king of Ellasar; four kings with five.
347                                                                                                                                                                                                                                                                                                                                                                                              And the vale of Siddim was full of slime pits; and the kings of Sodom and Gomorrah fled, and fell there; and they that remained fled to the mountain.
348                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way.
349                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they took Lot, Abram's brother's son, who dwelt in Sodom, and his goods, and departed.
350                                                                                                                                                                                                                                                                                                                                                     And there came one that had escaped, and told Abram the Hebrew; for he dwelt in the plain of Mamre the Amorite, brother of Eshcol, and brother of Aner: and these were confederate with Abram.
351                                                                                                                                                                                                                                                                                                                                                                              And when Abram heard that his brother was taken captive, he armed his trained servants, born in his own house, three hundred and eighteen, and pursued them unto Dan.
352                                                                                                                                                                                                                                                                                                                                                                                            And he divided himself against them, he and his servants, by night, and smote them, and pursued them unto Hobah, which is on the left hand of Damascus.
353                                                                                                                                                                                                                                                                                                                                                                                                                      And he brought back all the goods, and also brought again his brother Lot, and his goods, and the women also, and the people.
354                                                                                                                                                                                                                                                                                                                                                            And the king of Sodom went out to meet him after his return from the slaughter of Chedorlaomer, and of the kings that were with him, at the valley of Shaveh, which is the king's dale.
355                                                                                                                                                                                                                                                                                                                                                                                                                                            And Melchizedek king of Salem brought forth bread and wine: and he was the priest of the most high God.
356                                                                                                                                                                                                                                                                                                                                                                                                                                                And he blessed him, and said, Blessed be Abram of the most high God, possessor of heaven and earth:
357                                                                                                                                                                                                                                                                                                                                                                                                                                 And blessed be the most high God, which hath delivered thine enemies into thy hand. And he gave him tithes of all.
358                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself.
359                                                                                                                                                                                                                                                                                                                                                                                                                 And Abram said to the king of Sodom, I have lift up mine hand unto the LORD, the most high God, the possessor of heaven and earth,
360                                                                                                                                                                                                                                                                                                                                                                                       That I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich:
361                                                                                                                                                                                                                                                                                                                                                                                                Save only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion.
362                                                                                                                                                                                                                                                                                                                                                                                                     After these things the word of the LORD came unto Abram in a vision, saying, Fear not, Abram: I am thy shield, and thy exceeding great reward.
363                                                                                                                                                                                                                                                                                                                                                                                                                  And Abram said, LORD God, what wilt thou give me, seeing I go childless, and the steward of my house is this Eliezer of Damascus?
364                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir.
365                                                                                                                                                                                                                                                                                                                                                                                   And, behold, the word of the LORD came unto him, saying, This shall not be thine heir; but he that shall come forth out of thine own bowels shall be thine heir.
366                                                                                                                                                                                                                                                                                                                                                                                 And he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be.
367                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he believed in the LORD; and he counted it to him for righteousness.
368                                                                                                                                                                                                                                                                                                                                                                                                                             And he said unto him, I am the LORD that brought thee out of Ur of the Chaldees, to give thee this land to inherit it.
369                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, LORD God, whereby shall I know that I shall inherit it?
370                                                                                                                                                                                                                                                                                                                                                                                 And he said unto him, Take me an heifer of three years old, and a she goat of three years old, and a ram of three years old, and a turtledove, and a young pigeon.
371                                                                                                                                                                                                                                                                                                                                                                                                              And he took unto him all these, and divided them in the midst, and laid each piece one against another: but the birds divided he not.
372                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when the fowls came down upon the carcasses, Abram drove them away.
373                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the sun was going down, a deep sleep fell upon Abram; and, lo, an horror of great darkness fell upon him.
374                                                                                                                                                                                                                                                                                                                                                                     And he said unto Abram, Know of a surety that thy seed shall be a stranger in a land that is not theirs, and shall serve them; and they shall afflict them four hundred years;
375                                                                                                                                                                                                                                                                                                                                                                                                                                 And also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance.
376                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt go to thy fathers in peace; thou shalt be buried in a good old age.
377                                                                                                                                                                                                                                                                                                                                                                                                                                       But in the fourth generation they shall come hither again: for the iniquity of the Amorites is not yet full.
378                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass, that, when the sun went down, and it was dark, behold a smoking furnace, and a burning lamp that passed between those pieces.
379                                                                                                                                                                                                                                                                                                                                                                              In the same day the LORD made a covenant with Abram, saying, Unto thy seed have I given this land, from the river of Egypt unto the great river, the river Euphrates:
380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The Kenites, and the Kenizzites, and the Kadmonites,
381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the Hittites, and the Perizzites, and the Rephaim,
382                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the Amorites, and the Canaanites, and the Girgashites, and the Jebusites.
383                                                                                                                                                                                                                                                                                                                                                                                                                                           Now Sarai Abram's wife bare him no children: and she had an handmaid, an Egyptian, whose name was Hagar.
384                                                                                                                                                                                                                                                                                                                                          And Sarai said unto Abram, Behold now, the LORD hath restrained me from bearing: I pray thee, go in unto my maid; it may be that I may obtain children by her. And Abram hearkened to the voice of Sarai.
385                                                                                                                                                                                                                                                                                                                                                                                  And Sarai Abram's wife took Hagar her maid the Egyptian, after Abram had dwelt ten years in the land of Canaan, and gave her to her husband Abram to be his wife.
386                                                                                                                                                                                                                                                                                                                                                                                                                      And he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes.
387                                                                                                                                                                                                                                                                                                                                                    And Sarai said unto Abram, My wrong be upon thee: I have given my maid into thy bosom; and when she saw that she had conceived, I was despised in her eyes: the LORD judge between me and thee.
388                                                                                                                                                                                                                                                                                                                                                                                         But Abram said unto Sarai, Behold, thy maid is in thine hand; do to her as it pleaseth thee. And when Sarai dealt hardly with her, she fled from her face.
389                                                                                                                                                                                                                                                                                                                                                                                                                                  And the angel of the LORD found her by a fountain of water in the wilderness, by the fountain in the way to Shur.
390                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Hagar, Sarai's maid, whence camest thou? and whither wilt thou go? And she said, I flee from the face of my mistress Sarai.
391                                                                                                                                                                                                                                                                                                                                                                                                                                               And the angel of the LORD said unto her, Return to thy mistress, and submit thyself under her hands.
392                                                                                                                                                                                                                                                                                                                                                                                                                        And the angel of the LORD said unto her, I will multiply thy seed exceedingly, that it shall not be numbered for multitude.
393                                                                                                                                                                                                                                                                                                                                                                            And the angel of the LORD said unto her, Behold, thou art with child and shalt bear a son, and shalt call his name Ishmael; because the LORD hath heard thy affliction.
394                                                                                                                                                                                                                                                                                                                                                                                           And he will be a wild man; his hand will be against every man, and every man's hand against him; and he shall dwell in the presence of all his brethren.
395                                                                                                                                                                                                                                                                                                                                                                                                         And she called the name of the LORD that spake unto her, Thou God seest me: for she said, Have I also here looked after him that seeth me?
396                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wherefore the well was called Beerlahairoi; behold, it is between Kadesh and Bered.
397                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Hagar bare Abram a son: and Abram called his son's name, which Hagar bare, Ishmael.
398                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abram was fourscore and six years old, when Hagar bare Ishmael to Abram.
399                                                                                                                                                                                                                                                                                                                                                                                           And when Abram was ninety years old and nine, the LORD appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect.
400                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I will make my covenant between me and thee, and will multiply thee exceedingly.
401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abram fell on his face: and God talked with him, saying,
402                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for me, behold, my covenant is with thee, and thou shalt be a father of many nations.
403                                                                                                                                                                                                                                                                                                                                                                                                                     Neither shall thy name any more be called Abram, but thy name shall be Abraham; for a father of many nations have I made thee.
404                                                                                                                                                                                                                                                                                                                                                                                                                                        And I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee.
405                                                                                                                                                                                                                                                                                                                                                                  And I will establish my covenant between me and thee and thy seed after thee in their generations for an everlasting covenant, to be a God unto thee, and to thy seed after thee.
406                                                                                                                                                                                                                                                                                                                                                                       And I will give unto thee, and to thy seed after thee, the land wherein thou art a stranger, all the land of Canaan, for an everlasting possession; and I will be their God.
407                                                                                                                                                                                                                                                                                                                                                                                                                              And God said unto Abraham, Thou shalt keep my covenant therefore, thou, and thy seed after thee in their generations.
408                                                                                                                                                                                                                                                                                                                                                                                                              This is my covenant, which ye shall keep, between me and you and thy seed after thee; Every man child among you shall be circumcised.
409                                                                                                                                                                                                                                                                                                                                                                                                                                    And ye shall circumcise the flesh of your foreskin; and it shall be a token of the covenant betwixt me and you.
410                                                                                                                                                                                                                                                                                                                                                   And he that is eight days old shall be circumcised among you, every man child in your generations, he that is born in the house, or bought with money of any stranger, which is not of thy seed.
411                                                                                                                                                                                                                                                                                                                                                                                 He that is born in thy house, and he that is bought with thy money, must needs be circumcised: and my covenant shall be in your flesh for an everlasting covenant.
412                                                                                                                                                                                                                                                                                                                                                                                            And the uncircumcised man child whose flesh of his foreskin is not circumcised, that soul shall be cut off from his people; he hath broken my covenant.
413                                                                                                                                                                                                                                                                                                                                                                                                                                 And God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be.
414                                                                                                                                                                                                                                                                                                                                                                                               And I will bless her, and give thee a son also of her: yea, I will bless her, and she shall be a mother of nations; kings of people shall be of her.
415                                                                                                                                                                                                                                                                                                                                                                 Then Abraham fell upon his face, and laughed, and said in his heart, Shall a child be born unto him that is an hundred years old? and shall Sarah, that is ninety years old, bear?
416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abraham said unto God, O that Ishmael might live before thee!
417                                                                                                                                                                                                                                                                                                                                                 And God said, Sarah thy wife shall bear thee a son indeed; and thou shalt call his name Isaac: and I will establish my covenant with him for an everlasting covenant, and with his seed after him.
418                                                                                                                                                                                                                                                                                                                                               And as for Ishmael, I have heard thee: Behold, I have blessed him, and will make him fruitful, and will multiply him exceedingly; twelve princes shall he beget, and I will make him a great nation.
419                                                                                                                                                                                                                                                                                                                                                                                                                                   But my covenant will I establish with Isaac, which Sarah shall bear unto thee at this set time in the next year.
420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he left off talking with him, and God went up from Abraham.
421                                                                                                                                                                                                                                                                                            And Abraham took Ishmael his son, and all that were born in his house, and all that were bought with his money, every male among the men of Abraham's house; and circumcised the flesh of their foreskin in the selfsame day, as God had said unto him.
422                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin.
423                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin.
424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In the selfsame day was Abraham circumcised, and Ishmael his son.
425                                                                                                                                                                                                                                                                                                                                                                                                                                 And all the men of his house, born in the house, and bought with money of the stranger, were circumcised with him.
426                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD appeared unto him in the plains of Mamre: and he sat in the tent door in the heat of the day;
427                                                                                                                                                                                                                                                                                                                                                                            And he lift up his eyes and looked, and, lo, three men stood by him: and when he saw them, he ran to meet them from the tent door, and bowed himself toward the ground,
428                                                                                                                                                                                                                                                                                                                                                                                                                                           And said, My LORD, if now I have found favor in thy sight, pass not away, I pray thee, from thy servant:
429                                                                                                                                                                                                                                                                                                                                                                                                                                                Let a little water, I pray you, be fetched, and wash your feet, and rest yourselves under the tree:
430                                                                                                                                                                                                                                                                                                                                                                   And I will fetch a morsel of bread, and comfort ye your hearts; after that ye shall pass on: for therefore are ye come to your servant. And they said, So do, as thou hast said.
431                                                                                                                                                                                                                                                                                                                                                                                                 And Abraham hastened into the tent unto Sarah, and said, Make ready quickly three measures of fine meal, knead it, and make cakes upon the hearth.
432                                                                                                                                                                                                                                                                                                                                                                                                                        And Abraham ran unto the herd, and fetched a calf tender and good, and gave it unto a young man; and he hasted to dress it.
433                                                                                                                                                                                                                                                                                                                                                                                                    And he took butter, and milk, and the calf which he had dressed, and set it before them; and he stood by them under the tree, and they did eat.
434                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent.
435                                                                                                                                                                                                                                                                                                                                                                 And he said, I will certainly return unto thee according to the time of life; and, lo, Sarah thy wife shall have a son. And Sarah heard it in the tent door, which was behind him.
436                                                                                                                                                                                                                                                                                                                                                                                                                                 Now Abraham and Sarah were old and well stricken in age; and it ceased to be with Sarah after the manner of women.
437                                                                                                                                                                                                                                                                                                                                                                                                                                Therefore Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also?
438                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, which am old?
439                                                                                                                                                                                                                                                                                                                                                                                                      Is any thing too hard for the LORD? At the time appointed I will return unto thee, according to the time of life, and Sarah shall have a son.
440                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh.
441                                                                                                                                                                                                                                                                                                                                                                                                                                     And the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way.
442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said, Shall I hide from Abraham that thing which I do;
443                                                                                                                                                                                                                                                                                                                                                                                                                       Seeing that Abraham shall surely become a great and mighty nation, and all the nations of the earth shall be blessed in him?
444                                                                                                                                                                                                                                                                                                                         For I know him, that he will command his children and his household after him, and they shall keep the way of the LORD, to do justice and judgment; that the LORD may bring upon Abraham that which he hath spoken of him.
445                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous;
446                                                                                                                                                                                                                                                                                                                                                                                                          I will go down now, and see whether they have done altogether according to the cry of it, which is come unto me; and if not, I will know.
447                                                                                                                                                                                                                                                                                                                                                                                                                                          And the men turned their faces from thence, and went toward Sodom: but Abraham stood yet before the LORD.
448                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abraham drew near, and said, Wilt thou also destroy the righteous with the wicked?
449                                                                                                                                                                                                                                                                                                                                                                                                    Peradventure there be fifty righteous within the city: wilt thou also destroy and not spare the place for the fifty righteous that are therein?
450                                                                                                                                                                                                                                                                                                                                        That be far from thee to do after this manner, to slay the righteous with the wicked: and that the righteous should be as the wicked, that be far from thee: Shall not the Judge of all the earth do right?
451                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sakes.
452                                                                                                                                                                                                                                                                                                                                                                                                                               And Abraham answered and said, Behold now, I have taken upon me to speak unto the LORD, which am but dust and ashes:
453                                                                                                                                                                                                                                                                                                                                                                    Peradventure there shall lack five of the fifty righteous: wilt thou destroy all the city for lack of five? And he said, If I find there forty and five, I will not destroy it.
454                                                                                                                                                                                                                                                                                                                                                                                                          And he spake unto him yet again, and said, Peradventure there shall be forty found there. And he said, I will not do it for forty's sake.
455                                                                                                                                                                                                                                                                                                                                                                       And he said unto him, Oh let not the LORD be angry, and I will speak: Peradventure there shall thirty be found there. And he said, I will not do it, if I find thirty there.
456                                                                                                                                                                                                                                                                                                                                                                        And he said, Behold now, I have taken upon me to speak unto the LORD: Peradventure there shall be twenty found there. And he said, I will not destroy it for twenty's sake.
457                                                                                                                                                                                                                                                                                                                                                                           And he said, Oh let not the LORD be angry, and I will speak yet but this once: Peradventure ten shall be found there. And he said, I will not destroy it for ten's sake.
458                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD went his way, as soon as he had left communing with Abraham: and Abraham returned unto his place.
459                                                                                                                                                                                                                                                                                                                                                                      And there came two angels to Sodom at even; and Lot sat in the gate of Sodom: and Lot seeing them rose up to meet them; and he bowed himself with his face toward the ground;
460                                                                                                                                                                                                                                                                                                        And he said, Behold now, my lords, turn in, I pray you, into your servant's house, and tarry all night, and wash your feet, and ye shall rise up early, and go on your ways. And they said, Nay; but we will abide in the street all night.
461                                                                                                                                                                                                                                                                                                                                                                              And he pressed upon them greatly; and they turned in unto him, and entered into his house; and he made them a feast, and did bake unleavened bread, and they did eat.
462                                                                                                                                                                                                                                                                                                                                                                                            But before they lay down, the men of the city, even the men of Sodom, compassed the house round, both old and young, all the people from every quarter:
463                                                                                                                                                                                                                                                                                                                                                                                                    And they called unto Lot, and said unto him, Where are the men which came in to thee this night? bring them out unto us, that we may know them.
464                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Lot went out at the door unto them, and shut the door after him,
465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And said, I pray you, brethren, do not so wickedly.
466                                                                                                                                                                                                                                                                                                            Behold now, I have two daughters which have not known man; let me, I pray you, bring them out unto you, and do ye to them as is good in your eyes: only unto these men do nothing; for therefore came they under the shadow of my roof.
467                                                                                                                                                                                                                                                                                                 And they said, Stand back. And they said again, This one fellow came in to sojourn, and he will needs be a judge: now will we deal worse with thee, than with them. And they pressed sore upon the man, even Lot, and came near to break the door.
468                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the men put forth their hand, and pulled Lot into the house to them, and shut to the door.
469                                                                                                                                                                                                                                                                                                                                                                                                  And they smote the men that were at the door of the house with blindness, both small and great: so that they wearied themselves to find the door.
470                                                                                                                                                                                                                                                                                                                                                                            And the men said unto Lot, Hast thou here any besides? son in law, and thy sons, and thy daughters, and whatsoever thou hast in the city, bring them out of this place:
471                                                                                                                                                                                                                                                                                                                                                                                                       For we will destroy this place, because the cry of them is waxen great before the face of the LORD; and the LORD hath sent us to destroy it.
472                                                                                                                                                                                                                                                                                                                                And Lot went out, and spake unto his sons in law, which married his daughters, and said, Up, get you out of this place; for the LORD will destroy this city. But he seemed as one that mocked unto his sons in law.
473                                                                                                                                                                                                                                                                                                                                                                  And when the morning arose, then the angels hastened Lot, saying, Arise, take thy wife, and thy two daughters, which are here; lest thou be consumed in the iniquity of the city.
474                                                                                                                                                                                                                                                                                                                         And while he lingered, the men laid hold upon his hand, and upon the hand of his wife, and upon the hand of his two daughters; the LORD being merciful unto him: and they brought him forth, and set him without the city.
475                                                                                                                                                                                                                                                                                                                                          And it came to pass, when they had brought them forth abroad, that he said, Escape for thy life; look not behind thee, neither stay thou in all the plain; escape to the mountain, lest thou be consumed.
476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Lot said unto them, Oh, not so, my LORD:
477                                                                                                                                                                                                                                                                                                                                Behold now, thy servant hath found grace in thy sight, and thou hast magnified thy mercy, which thou hast showed unto me in saving my life; and I cannot escape to the mountain, lest some evil take me, and I die:
478                                                                                                                                                                                                                                                                                                                                                                                                   Behold now, this city is near to flee unto, and it is a little one: Oh, let me escape thither, (is it not a little one?) and my soul shall live.
479                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto him, See, I have accepted thee concerning this thing also, that I will not overthrow this city, for the which thou hast spoken.
480                                                                                                                                                                                                                                                                                                                                                                                                                    Haste thee, escape thither; for I cannot do anything till thou be come thither. Therefore the name of the city was called Zoar.
481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The sun was risen upon the earth when Lot entered into Zoar.
482                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the LORD rained upon Sodom and upon Gomorrah brimstone and fire from the LORD out of heaven;
483                                                                                                                                                                                                                                                                                                                                                                                                                      And he overthrew those cities, and all the plain, and all the inhabitants of the cities, and that which grew upon the ground.
484                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But his wife looked back from behind him, and she became a pillar of salt.
485                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abraham gat up early in the morning to the place where he stood before the LORD:
486                                                                                                                                                                                                                                                                                                                                                                                    And he looked toward Sodom and Gomorrah, and toward all the land of the plain, and beheld, and, lo, the smoke of the country went up as the smoke of a furnace.
487                                                                                                                                                                                                                                                                                                                                                 And it came to pass, when God destroyed the cities of the plain, that God remembered Abraham, and sent Lot out of the midst of the overthrow, when he overthrew the cities in the which Lot dwelt.
488                                                                                                                                                                                                                                                                                                                                                                          And Lot went up out of Zoar, and dwelt in the mountain, and his two daughters with him; for he feared to dwell in Zoar: and he dwelt in a cave, he and his two daughters.
489                                                                                                                                                                                                                                                                                                                                                                                              And the firstborn said unto the younger, Our father is old, and there is not a man in the earth to come in unto us after the manner of all the earth:
490                                                                                                                                                                                                                                                                                                                                                                                                                                        Come, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father.
491                                                                                                                                                                                                                                                                                                                                                                                  And they made their father drink wine that night: and the firstborn went in, and lay with her father; and he perceived not when she lay down, nor when she arose.
492                                                                                                                                                                                                                                                                                                      And it came to pass on the morrow, that the firstborn said unto the younger, Behold, I lay yesternight with my father: let us make him drink wine this night also; and go thou in, and lie with him, that we may preserve seed of our father.
493                                                                                                                                                                                                                                                                                                                                                                                        And they made their father drink wine that night also: and the younger arose, and lay with him; and he perceived not when she lay down, nor when she arose.
494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus were both the daughters of Lot with child by their father.
495                                                                                                                                                                                                                                                                                                                                                                                                                                     And the first born bare a son, and called his name Moab: the same is the father of the Moabites unto this day.
496                                                                                                                                                                                                                                                                                                                                                                                                                  And the younger, she also bare a son, and called his name Benammi: the same is the father of the children of Ammon unto this day.
497                                                                                                                                                                                                                                                                                                                                                                                                                           And Abraham journeyed from thence toward the south country, and dwelled between Kadesh and Shur, and sojourned in Gerar.
498                                                                                                                                                                                                                                                                                                                                                                                                                                            And Abraham said of Sarah his wife, She is my sister: and Abimelech king of Gerar sent, and took Sarah.
499                                                                                                                                                                                                                                                                                                                                                                                     But God came to Abimelech in a dream by night, and said to him, Behold, thou art but a dead man, for the woman which thou hast taken; for she is a man's wife.
500                                                                                                                                                                                                                                                                                                                                                                                                                                                    But Abimelech had not come near her: and he said, LORD, wilt thou slay also a righteous nation?
501                                                                                                                                                                                                                                                                                                                                                                                  Said he not unto me, She is my sister? and she, even she herself said, He is my brother: in the integrity of my heart and innocency of my hands have I done this.
502                                                                                                                                                                                                                                                                                                                                                    And God said unto him in a dream, Yea, I know that thou didst this in the integrity of thy heart; for I also withheld thee from sinning against me: therefore suffered I thee not to touch her.
503                                                                                                                                                                                                                                                                                                                                     Now therefore restore the man his wife; for he is a prophet, and he shall pray for thee, and thou shalt live: and if thou restore her not, know thou that thou shalt surely die, thou, and all that are thine.
504                                                                                                                                                                                                                                                                                                                                                                                                 Therefore Abimelech rose early in the morning, and called all his servants, and told all these things in their ears: and the men were sore afraid.
505                                                                                                                                                                                                                                                                                                                  Then Abimelech called Abraham, and said unto him, What hast thou done unto us? and what have I offended thee, that thou hast brought on me and on my kingdom a great sin? thou hast done deeds unto me that ought not to be done.
506                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abimelech said unto Abraham, What sawest thou, that thou hast done this thing?
507                                                                                                                                                                                                                                                                                                                                                                                                                        And Abraham said, Because I thought, Surely the fear of God is not in this place; and they will slay me for my wife's sake.
508                                                                                                                                                                                                                                                                                                                                                                                                                      And yet indeed she is my sister; she is the daughter of my father, but not the daughter of my mother; and she became my wife.
509                                                                                                                                                                                                                                                                                                                             And it came to pass, when God caused me to wander from my father's house, that I said unto her, This is thy kindness which thou shalt show unto me; at every place whither we shall come, say of me, He is my brother.
510                                                                                                                                                                                                                                                                                                                                                                                                               And Abimelech took sheep, and oxen, and menservants, and womenservants, and gave them unto Abraham, and restored him Sarah his wife.
511                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abimelech said, Behold, my land is before thee: dwell where it pleaseth thee.
512                                                                                                                                                                                                                                                                                                                                        And unto Sarah he said, Behold, I have given thy brother a thousand pieces of silver: behold, he is to thee a covering of the eyes, unto all that are with thee, and with all other: thus she was reproved.
513                                                                                                                                                                                                                                                                                                                                                                                                                                  So Abraham prayed unto God: and God healed Abimelech, and his wife, and his maidservants; and they bare children.
514                                                                                                                                                                                                                                                                                                                                                                                                                                          For the LORD had fast closed up all the wombs of the house of Abimelech, because of Sarah Abraham's wife.
515                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD visited Sarah as he had said, and the LORD did unto Sarah as he had spoken.
516                                                                                                                                                                                                                                                                                                                                                                                                                                        For Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him.
517                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac.
518                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abraham circumcised his son Isaac being eight days old, as God had commanded him.
519                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Abraham was an hundred years old, when his son Isaac was born unto him.
520                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Sarah said, God hath made me to laugh, so that all that hear will laugh with me.
521                                                                                                                                                                                                                                                                                                                                                                                                              And she said, Who would have said unto Abraham, that Sarah should have given children suck? for I have born him a son in his old age.
522                                                                                                                                                                                                                                                                                                                                                                                                                                             And the child grew, and was weaned: and Abraham made a great feast the same day that Isaac was weaned.
523                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Sarah saw the son of Hagar the Egyptian, which she had born unto Abraham, mocking.
524                                                                                                                                                                                                                                                                                                                                                                                                Wherefore she said unto Abraham, Cast out this bondwoman and her son: for the son of this bondwoman shall not be heir with my son, even with Isaac.
525                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the thing was very grievous in Abraham's sight because of his son.
526                                                                                                                                                                                                                                                                                                                             And God said unto Abraham, Let it not be grievous in thy sight because of the lad, and because of thy bondwoman; in all that Sarah hath said unto thee, hearken unto her voice; for in Isaac shall thy seed be called.
527                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And also of the son of the bondwoman will I make a nation, because he is thy seed.
528                                                                                                                                                                                                                                                                                                              And Abraham rose up early in the morning, and took bread, and a bottle of water, and gave it unto Hagar, putting it on her shoulder, and the child, and sent her away: and she departed, and wandered in the wilderness of Beersheba.
529                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the water was spent in the bottle, and she cast the child under one of the shrubs.
530                                                                                                                                                                                                                                                                                                                                         And she went, and sat her down over against him a good way off, as it were a bow shot: for she said, Let me not see the death of the child. And she sat over against him, and lift up her voice, and wept.
531                                                                                                                                                                                                                                                                                                                                                 And God heard the voice of the lad; and the angel of God called to Hagar out of heaven, and said unto her, What aileth thee, Hagar? fear not; for God hath heard the voice of the lad where he is.
532                                                                                                                                                                                                                                                                                                                                                                                                                                                            Arise, lift up the lad, and hold him in thine hand; for I will make him a great nation.
533                                                                                                                                                                                                                                                                                                                                                                                                                      And God opened her eyes, and she saw a well of water; and she went, and filled the bottle with water, and gave the lad drink.
534                                                                                                                                                                                                                                                                                                                                                                                                                                                          And God was with the lad; and he grew, and dwelt in the wilderness, and became an archer.
535                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he dwelt in the wilderness of Paran: and his mother took him a wife out of the land of Egypt.
536                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass at that time, that Abimelech and Phichol the chief captain of his host spake unto Abraham, saying, God is with thee in all that thou doest:
537                                                                                                                                                                                                                                                                                             Now therefore swear unto me here by God that thou wilt not deal falsely with me, nor with my son, nor with my son's son: but according to the kindness that I have done unto thee, thou shalt do unto me, and to the land wherein thou hast sojourned.
538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abraham said, I will swear.
539                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abraham reproved Abimelech because of a well of water, which Abimelech's servants had violently taken away.
540                                                                                                                                                                                                                                                                                                                                                                                                                         And Abimelech said, I wot not who hath done this thing; neither didst thou tell me, neither yet heard I of it, but to day.
541                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abraham took sheep and oxen, and gave them unto Abimelech; and both of them made a covenant.
542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Abraham set seven ewe lambs of the flock by themselves.
543                                                                                                                                                                                                                                                                                                                                                                                                                                                And Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves?
544                                                                                                                                                                                                                                                                                                                                                                                                               And he said, For these seven ewe lambs shalt thou take of my hand, that they may be a witness unto me, that I have digged this well.
545                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wherefore he called that place Beersheba; because there they sware both of them.
546                                                                                                                                                                                                                                                                                                                                                                                     Thus they made a covenant at Beersheba: then Abimelech rose up, and Phichol the chief captain of his host, and they returned into the land of the Philistines.
547                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abraham planted a grove in Beersheba, and called there on the name of the LORD, the everlasting God.
548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abraham sojourned in the Philistines' land many days.
549                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass after these things, that God did tempt Abraham, and said unto him, Abraham: and he said, Behold, here I am.
550                                                                                                                                                                                                                                                                                                                                         And he said, Take now thy son, thine only son Isaac, whom thou lovest, and get thee into the land of Moriah; and offer him there for a burnt offering upon one of the mountains which I will tell thee of.
551                                                                                                                                                                                                                                                                                                               And Abraham rose up early in the morning, and saddled his ass, and took two of his young men with him, and Isaac his son, and clave the wood for the burnt offering, and rose up, and went unto the place of which God had told him.
552                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then on the third day Abraham lifted up his eyes, and saw the place afar off.
553                                                                                                                                                                                                                                                                                                                                                                                                              And Abraham said unto his young men, Abide ye here with the ass; and I and the lad will go yonder and worship, and come again to you.
554                                                                                                                                                                                                                                                                                                                                                                               And Abraham took the wood of the burnt offering, and laid it upon Isaac his son; and he took the fire in his hand, and a knife; and they went both of them together.
555                                                                                                                                                                                                                                                                                                                                                               And Isaac spake unto Abraham his father, and said, My father: and he said, Here am I, my son. And he said, Behold the fire and the wood: but where is the lamb for a burnt offering?
556                                                                                                                                                                                                                                                                                                                                                                                                                                And Abraham said, My son, God will provide himself a lamb for a burnt offering: so they went both of them together.
557                                                                                                                                                                                                                                                                                                                                                              And they came to the place which God had told him of; and Abraham built an altar there, and laid the wood in order, and bound Isaac his son, and laid him on the altar upon the wood.
558                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abraham stretched forth his hand, and took the knife to slay his son.
559                                                                                                                                                                                                                                                                                                                                                                                                                                       And the angel of the LORD called unto him out of heaven, and said, Abraham, Abraham: and he said, Here am I.
560                                                                                                                                                                                                                                                                                                                                                             And he said, Lay not thine hand upon the lad, neither do thou any thing unto him: for now I know that thou fearest God, seeing thou hast not withheld thy son, thine only son from me.
561                                                                                                                                                                                                                                                                                                                                      And Abraham lifted up his eyes, and looked, and behold behind him a ram caught in a thicket by his horns: and Abraham went and took the ram, and offered him up for a burnt offering in the stead of his son.
562                                                                                                                                                                                                                                                                                                                                                                                                                      And Abraham called the name of that place Jehovahjireh: as it is said to this day, In the mount of the LORD it shall be seen.
563                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the angel of the LORD called unto Abraham out of heaven the second time,
564                                                                                                                                                                                                                                                                                                                                                                                                            And said, By myself have I sworn, saith the LORD, for because thou hast done this thing, and hast not withheld thy son, thine only son:
565                                                                                                                                                                                                                                                                                                                                       That in blessing I will bless thee, and in multiplying I will multiply thy seed as the stars of the heaven, and as the sand which is upon the sea shore; and thy seed shall possess the gate of his enemies;
566                                                                                                                                                                                                                                                                                                                                                                                                                                                  And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.
567                                                                                                                                                                                                                                                                                                                                                                                                                           So Abraham returned unto his young men, and they rose up and went together to Beersheba; and Abraham dwelt at Beersheba.
568                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she hath also born children unto thy brother Nahor;
569                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Huz his firstborn, and Buz his brother, and Kemuel the father of Aram,
570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel.
571                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Bethuel begat Rebekah: these eight Milcah did bear to Nahor, Abraham's brother.
572                                                                                                                                                                                                                                                                                                                                                                                                                                                And his concubine, whose name was Reumah, she bare also Tebah, and Gaham, and Thahash, and Maachah.
573                                                                                                                                                                                                                                                                                                                                                                                                                                                And Sarah was an hundred and seven and twenty years old: these were the years of the life of Sarah.
574                                                                                                                                                                                                                                                                                                                                                                                                                 And Sarah died in Kirjatharba; the same is Hebron in the land of Canaan: and Abraham came to mourn for Sarah, and to weep for her.
575                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Abraham stood up from before his dead, and spake unto the sons of Heth, saying,
576                                                                                                                                                                                                                                                                                                                                                                                                                I am a stranger and a sojourner with you: give me a possession of a buryingplace with you, that I may bury my dead out of my sight.
577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Heth answered Abraham, saying unto him,
578                                                                                                                                                                                                                                                                                                                                                         Hear us, my lord: thou art a mighty prince among us: in the choice of our sepulchres bury thy dead; none of us shall withhold from thee his sepulchre, but that thou mayest bury thy dead.
579                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abraham stood up, and bowed himself to the people of the land, even to the children of Heth.
580                                                                                                                                                                                                                                                                                                                                                                                          And he communed with them, saying, If it be your mind that I should bury my dead out of my sight; hear me, and entreat for me to Ephron the son of Zohar,
581                                                                                                                                                                                                                                                                                                                                                   That he may give me the cave of Machpelah, which he hath, which is in the end of his field; for as much money as it is worth he shall give it me for a possession of a buryingplace amongst you.
582                                                                                                                                                                                                                                                                                                                                                            And Ephron dwelt among the children of Heth: and Ephron the Hittite answered Abraham in the audience of the children of Heth, even of all that went in at the gate of his city, saying,
583                                                                                                                                                                                                                                                                                                                                                                                Nay, my lord, hear me: the field give I thee, and the cave that is therein, I give it thee; in the presence of the sons of my people give I it thee: bury thy dead.
584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Abraham bowed down himself before the people of the land.
585                                                                                                                                                                                                                                                                                                                                    And he spake unto Ephron in the audience of the people of the land, saying, But if thou wilt give it, I pray thee, hear me: I will give thee money for the field; take it of me, and I will bury my dead there.
586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Ephron answered Abraham, saying unto him,
587                                                                                                                                                                                                                                                                                                                                                                                                             My lord, hearken unto me: the land is worth four hundred shekels of silver; what is that betwixt me and thee? bury therefore thy dead.
588                                                                                                                                                                                                                                                                                                                                              And Abraham hearkened unto Ephron; and Abraham weighed to Ephron the silver, which he had named in the audience of the sons of Heth, four hundred shekels of silver, current money with the merchant.
589                                                                                                                                                                                                                                                                                                                              And the field of Ephron which was in Machpelah, which was before Mamre, the field, and the cave which was therein, and all the trees that were in the field, that were in all the borders round about, were made sure
590                                                                                                                                                                                                                                                                                                                                                                                                                            Unto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city.
591                                                                                                                                                                                                                                                                                                                                                                                                        And after this, Abraham buried Sarah his wife in the cave of the field of Machpelah before Mamre: the same is Hebron in the land of Canaan.
592                                                                                                                                                                                                                                                                                                                                                                                                                   And the field, and the cave that is therein, were made sure unto Abraham for a possession of a buryingplace by the sons of Heth.
593                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Abraham was old, and well stricken in age: and the LORD had blessed Abraham in all things.
594                                                                                                                                                                                                                                                                                                                                                                                                                 And Abraham said unto his eldest servant of his house, that ruled over all that he had, Put, I pray thee, thy hand under my thigh:
595                                                                                                                                                                                                                                                                                                                                                           And I will make thee swear by the LORD, the God of heaven, and the God of the earth, that thou shalt not take a wife unto my son of the daughters of the Canaanites, among whom I dwell:
596                                                                                                                                                                                                                                                                                                                                                                                                                                                           But thou shalt go unto my country, and to my kindred, and take a wife unto my son Isaac.
597                                                                                                                                                                                                                                                                                                                                                                     And the servant said unto him, Peradventure the woman will not be willing to follow me unto this land: must I needs bring thy son again unto the land from whence thou camest?
598                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abraham said unto him, Beware thou that thou bring not my son thither again.
599                                                                                                                                                                                                                                                              The LORD God of heaven, which took me from my father's house, and from the land of my kindred, and which spake unto me, and that sware unto me, saying, Unto thy seed will I give this land; he shall send his angel before thee, and thou shalt take a wife unto my son from thence.
600                                                                                                                                                                                                                                                                                                                                                                                                              And if the woman will not be willing to follow thee, then thou shalt be clear from this my oath: only bring not my son thither again.
601                                                                                                                                                                                                                                                                                                                                                                                                                                       And the servant put his hand under the thigh of Abraham his master, and sware to him concerning that matter.
602                                                                                                                                                                                                                                                                                                                                                        And the servant took ten camels of the camels of his master, and departed; for all the goods of his master were in his hand: and he arose, and went to Mesopotamia, unto the city of Nahor.
603                                                                                                                                                                                                                                                                                                                                                                                                And he made his camels to kneel down without the city by a well of water at the time of the evening, even the time that women go out to draw water.
604                                                                                                                                                                                                                                                                                                                                                                                                                   And he said O LORD God of my master Abraham, I pray thee, send me good speed this day, and show kindness unto my master Abraham.
605                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold, I stand here by the well of water; and the daughters of the men of the city come out to draw water:
606                                                                                                                                                                                                                    And let it come to pass, that the damsel to whom I shall say, Let down thy pitcher, I pray thee, that I may drink; and she shall say, Drink, and I will give thy camels drink also: let the same be she that thou hast appointed for thy servant Isaac; and thereby shall I know that thou hast showed kindness unto my master.
607                                                                                                                                                                                                                                                                                                                                                And it came to pass, before he had done speaking, that, behold, Rebekah came out, who was born to Bethuel, son of Milcah, the wife of Nahor, Abraham's brother, with her pitcher upon her shoulder.
608                                                                                                                                                                                                                                                                                                                                                                                            And the damsel was very fair to look upon, a virgin, neither had any man known her: and she went down to the well, and filled her pitcher, and came up.
609                                                                                                                                                                                                                                                                                                                                                                                                                                               And the servant ran to meet her, and said, Let me, I pray thee, drink a little water of thy pitcher.
610                                                                                                                                                                                                                                                                                                                                                                                                                                          And she said, Drink, my lord: and she hasted, and let down her pitcher upon her hand, and gave him drink.
611                                                                                                                                                                                                                                                                                                                                                                                                                            And when she had done giving him drink, she said, I will draw water for thy camels also, until they have done drinking.
612                                                                                                                                                                                                                                                                                                                                                                                                                   And she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw water, and drew for all his camels.
613                                                                                                                                                                                                                                                                                                                                                                                                                                       And the man wondering at her held his peace, to wit whether the LORD had made his journey prosperous or not.
614                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, as the camels had done drinking, that the man took a golden earring of half a shekel weight, and two bracelets for her hands of ten shekels weight of gold;
615                                                                                                                                                                                                                                                                                                                                                                                                                                   And said, Whose daughter art thou? tell me, I pray thee: is there room in thy father's house for us to lodge in?
616                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she said unto him, I am the daughter of Bethuel the son of Milcah, which she bare unto Nahor.
617                                                                                                                                                                                                                                                                                                                                                                                                                                                         She said moreover unto him, We have both straw and provender enough, and room to lodge in.
618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the man bowed down his head, and worshipped the LORD.
619                                                                                                                                                                                                                                                                                                                                             And he said, Blessed be the LORD God of my master Abraham, who hath not left destitute my master of his mercy and his truth: I being in the way, the LORD led me to the house of my master's brethren.
620                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the damsel ran, and told them of her mother's house these things.
621                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the well.
622                                                                                                                                                                                                                                                                                             And it came to pass, when he saw the earring and bracelets upon his sister's hands, and when he heard the words of Rebekah his sister, saying, Thus spake the man unto me; that he came unto the man; and, behold, he stood by the camels at the well.
623                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Come in, thou blessed of the LORD; wherefore standest thou without? for I have prepared the house, and room for the camels.
624                                                                                                                                                                                                                                                                                                                                                                       And the man came into the house: and he ungirded his camels, and gave straw and provender for the camels, and water to wash his feet, and the men's feet that were with him.
625                                                                                                                                                                                                                                                                                                                                                                                                                       And there was set meat before him to eat: but he said, I will not eat, until I have told mine errand. And he said, Speak on.
626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, I am Abraham's servant.
627                                                                                                                                                                                                                                                                                                                                                      And the LORD hath blessed my master greatly; and he is become great: and he hath given him flocks, and herds, and silver, and gold, and menservants, and maidservants, and camels, and asses.
628                                                                                                                                                                                                                                                                                                                                                                                                                                  And Sarah my master's wife bare a son to my master when she was old: and unto him hath he given all that he hath.
629                                                                                                                                                                                                                                                                                                                                                                                                               And my master made me swear, saying, Thou shalt not take a wife to my son of the daughters of the Canaanites, in whose land I dwell:
630                                                                                                                                                                                                                                                                                                                                                                                                                                                          But thou shalt go unto my father's house, and to my kindred, and take a wife unto my son.
631                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I said unto my master, Peradventure the woman will not follow me.
632                                                                                                                                                                                                                                                                                                                                                              And he said unto me, The LORD, before whom I walk, will send his angel with thee, and prosper thy way; and thou shalt take a wife for my son of my kindred, and of my father's house:
633                                                                                                                                                                                                                                                                                                                                                                                                       Then shalt thou be clear from this my oath, when thou comest to my kindred; and if they give not thee one, thou shalt be clear from my oath.
634                                                                                                                                                                                                                                                                                                                                                                                                                            And I came this day unto the well, and said, O LORD God of my master Abraham, if now thou do prosper my way which I go:
635                                                                                                                                                                                                                                                                                                                                                  Behold, I stand by the well of water; and it shall come to pass, that when the virgin cometh forth to draw water, and I say to her, Give me, I pray thee, a little water of thy pitcher to drink;
636                                                                                                                                                                                                                                                                                                                                                                                           And she say to me, Both drink thou, and I will also draw for thy camels: let the same be the woman whom the LORD hath appointed out for my master's son.
637                                                                                                                                                                                                                                                                                                                                        And before I had done speaking in mine heart, behold, Rebekah came forth with her pitcher on her shoulder; and she went down unto the well, and drew water: and I said unto her, Let me drink, I pray thee.
638                                                                                                                                                                                                                                                                                                                                                                            And she made haste, and let down her pitcher from her shoulder, and said, Drink, and I will give thy camels drink also: so I drank, and she made the camels drink also.
639                                                                                                                                                                                                                                                                                                                                          And I asked her, and said, Whose daughter art thou? And she said, the daughter of Bethuel, Nahor's son, whom Milcah bare unto him: and I put the earring upon her face, and the bracelets upon her hands.
640                                                                                                                                                                                                                                                                                                                                                           And I bowed down my head, and worshipped the LORD, and blessed the LORD God of my master Abraham, which had led me in the right way to take my master's brother's daughter unto his son.
641                                                                                                                                                                                                                                                                                                                                                                                                          And now if ye will deal kindly and truly with my master, tell me: and if not, tell me; that I may turn to the right hand, or to the left.
642                                                                                                                                                                                                                                                                                                                                                                                                                               Then Laban and Bethuel answered and said, The thing proceedeth from the LORD: we cannot speak unto thee bad or good.
643                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, Rebekah is before thee, take her, and go, and let her be thy master's son's wife, as the LORD hath spoken.
644                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, that, when Abraham's servant heard their words, he worshipped the LORD, bowing himself to the earth.
645                                                                                                                                                                                                                                                                                                                                                                          And the servant brought forth jewels of silver, and jewels of gold, and raiment, and gave them to Rebekah: he gave also to her brother and to her mother precious things.
646                                                                                                                                                                                                                                                                                                                                                                                   And they did eat and drink, he and the men that were with him, and tarried all night; and they rose up in the morning, and he said, Send me away unto my master.
647                                                                                                                                                                                                                                                                                                                                                                                                                           And her brother and her mother said, Let the damsel abide with us a few days, at the least ten; after that she shall go.
648                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto them, Hinder me not, seeing the LORD hath prospered my way; send me away that I may go to my master.
649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they said, We will call the damsel, and inquire at her mouth.
650                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go.
651                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they sent away Rebekah their sister, and her nurse, and Abraham's servant, and his men.
652                                                                                                                                                                                                                                                                                                                                                                         And they blessed Rebekah, and said unto her, Thou art our sister, be thou the mother of thousands of millions, and let thy seed possess the gate of those which hate them.
653                                                                                                                                                                                                                                                                                                                                                                                                           And Rebekah arose, and her damsels, and they rode upon the camels, and followed the man: and the servant took Rebekah, and went his way.
654                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Isaac came from the way of the well Lahairoi; for he dwelt in the south country.
655                                                                                                                                                                                                                                                                                                                                                                                                              And Isaac went out to meditate in the field at the eventide: and he lifted up his eyes, and saw, and, behold, the camels were coming.
656                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Rebekah lifted up her eyes, and when she saw Isaac, she lighted off the camel.
657                                                                                                                                                                                                                                                                                                                                                               For she had said unto the servant, What man is this that walketh in the field to meet us? And the servant had said, It is my master: therefore she took a vail, and covered herself.
658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the servant told Isaac all things that he had done.
659                                                                                                                                                                                                                                                                                                                                                                                 And Isaac brought her into his mother Sarah's tent, and took Rebekah, and she became his wife; and he loved her: and Isaac was comforted after his mother's death.
660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then again Abraham took a wife, and her name was Keturah.
661                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah.
662                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim.
663                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Midian; Ephah, and Epher, and Hanoch, and Abidah, and Eldaah. All these were the children of Keturah.
664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abraham gave all that he had unto Isaac.
665                                                                                                                                                                                                                                                                                                                                                                            But unto the sons of the concubines, which Abraham had, Abraham gave gifts, and sent them away from Isaac his son, while he yet lived, eastward, unto the east country.
666                                                                                                                                                                                                                                                                                                                                                                                                                                     And these are the days of the years of Abraham's life which he lived, an hundred threescore and fifteen years.
667                                                                                                                                                                                                                                                                                                                                                                                                                         Then Abraham gave up the ghost, and died in a good old age, an old man, and full of years; and was gathered to his people.
668                                                                                                                                                                                                                                                                                                                                                                                                    And his sons Isaac and Ishmael buried him in the cave of Machpelah, in the field of Ephron the son of Zohar the Hittite, which is before Mamre;
669                                                                                                                                                                                                                                                                                                                                                                                                                                               The field which Abraham purchased of the sons of Heth: there was Abraham buried, and Sarah his wife.
670                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass after the death of Abraham, that God blessed his son Isaac; and Isaac dwelt by the well Lahairoi.
671                                                                                                                                                                                                                                                                                                                                                                                                                             Now these are the generations of Ishmael, Abraham's son, whom Hagar the Egyptian, Sarah's handmaid, bare unto Abraham:
672                                                                                                                                                                                                                                                                                                                                                                             And these are the names of the sons of Ishmael, by their names, according to their generations: the firstborn of Ishmael, Nebajoth; and Kedar, and Adbeel, and Mibsam,
673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Mishma, and Dumah, and Massa,
674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hadar, and Tema, Jetur, Naphish, and Kedemah:
675                                                                                                                                                                                                                                                                                                                                                                                                         These are the sons of Ishmael, and these are their names, by their towns, and by their castles; twelve princes according to their nations.
676                                                                                                                                                                                                                                                                                                                                                                                        And these are the years of the life of Ishmael, an hundred and thirty and seven years: and he gave up the ghost and died; and was gathered unto his people.
677                                                                                                                                                                                                                                                                                                                                                                                                        And they dwelt from Havilah unto Shur, that is before Egypt, as thou goest toward Assyria: and he died in the presence of all his brethren.
678                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And these are the generations of Isaac, Abraham's son: Abraham begat Isaac:
679                                                                                                                                                                                                                                                                                                                                                                                                       And Isaac was forty years old when he took Rebekah to wife, the daughter of Bethuel the Syrian of Padanaram, the sister to Laban the Syrian.
680                                                                                                                                                                                                                                                                                                                                                                                                              And Isaac entreated the LORD for his wife, because she was barren: and the LORD was entreated of him, and Rebekah his wife conceived.
681                                                                                                                                                                                                                                                                                                                                                                                                                     And the children struggled together within her; and she said, If it be so, why am I thus? And she went to inquire of the LORD.
682                                                                                                                                                                                                                                                                                                                           And the LORD said unto her, Two nations are in thy womb, and two manner of people shall be separated from thy bowels; and the one people shall be stronger than the other people; and the elder shall serve the younger.
683                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when her days to be delivered were fulfilled, behold, there were twins in her womb.
684                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the first came out red, all over like an hairy garment; and they called his name Esau.
685                                                                                                                                                                                                                                                                                                                                                                                  And after that came his brother out, and his hand took hold on Esau's heel; and his name was called Jacob: and Isaac was threescore years old when she bare them.
686                                                                                                                                                                                                                                                                                                                                                                                                                                And the boys grew: and Esau was a cunning hunter, a man of the field; and Jacob was a plain man, dwelling in tents.
687                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Isaac loved Esau, because he did eat of his venison: but Rebekah loved Jacob.
688                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jacob sod pottage: and Esau came from the field, and he was faint:
689                                                                                                                                                                                                                                                                                                                                                                                                                      And Esau said to Jacob, Feed me, I pray thee, with that same red pottage; for I am faint: therefore was his name called Edom.
690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jacob said, Sell me this day thy birthright.
691                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Esau said, Behold, I am at the point to die: and what profit shall this birthright do to me?
692                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jacob said, Swear to me this day; and he sware unto him: and he sold his birthright unto Jacob.
693                                                                                                                                                                                                                                                                                                                                                                                                     Then Jacob gave Esau bread and pottage of lentils; and he did eat and drink, and rose up, and went his way: thus Esau despised his birthright.
694                                                                                                                                                                                                                                                                                                                                                                                     And there was a famine in the land, beside the first famine that was in the days of Abraham. And Isaac went unto Abimelech king of the Philistines unto Gerar.
695                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD appeared unto him, and said, Go not down into Egypt; dwell in the land which I shall tell thee of:
696                                                                                                                                                                                                                                                                                                                                          Sojourn in this land, and I will be with thee, and will bless thee; for unto thee, and unto thy seed, I will give all these countries, and I will perform the oath which I sware unto Abraham thy father;
697                                                                                                                                                                                                                                                                                                                                                                       And I will make thy seed to multiply as the stars of heaven, and will give unto thy seed all these countries; and in thy seed shall all the nations of the earth be blessed;
698                                                                                                                                                                                                                                                                                                                                                                                                                                               Because that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws.
699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Isaac dwelt in Gerar:
700                                                                                                                                                                                                                                                                                                                            And the men of the place asked him of his wife; and he said, She is my sister: for he feared to say, She is my wife; lest, said he, the men of the place should kill me for Rebekah; because she was fair to look upon.
701                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when he had been there a long time, that Abimelech king of the Philistines looked out at a window, and saw, and, behold, Isaac was sporting with Rebekah his wife.
702                                                                                                                                                                                                                                                                                                                                                                     And Abimelech called Isaac, and said, Behold, of a surety she is thy wife; and how saidst thou, She is my sister? And Isaac said unto him, Because I said, Lest I die for her.
703                                                                                                                                                                                                                                                                                                                                                                              And Abimelech said, What is this thou hast done unto us? one of the people might lightly have lien with thy wife, and thou shouldest have brought guiltiness upon us.
704                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abimelech charged all his people, saying, He that toucheth this man or his wife shall surely be put to death.
705                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Isaac sowed in that land, and received in the same year an hundredfold: and the LORD blessed him.
706                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the man waxed great, and went forward, and grew until he became very great:
707                                                                                                                                                                                                                                                                                                                                                                                                                             For he had possession of flocks, and possession of herds, and great store of servants: and the Philistines envied him.
708                                                                                                                                                                                                                                                                                                                                                                                          For all the wells which his father's servants had digged in the days of Abraham his father, the Philistines had stopped them, and filled them with earth.
709                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Abimelech said unto Isaac, Go from us; for thou art much mightier than we.
710                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Isaac departed thence, and pitched his tent in the valley of Gerar, and dwelt there.
711                                                                                                                                                                                                                                                                                                And Isaac digged again the wells of water, which they had digged in the days of Abraham his father; for the Philistines had stopped them after the death of Abraham: and he called their names after the names by which his father had called them.
712                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Isaac's servants digged in the valley, and found there a well of springing water.
713                                                                                                                                                                                                                                                                                                                                                                                        And the herdmen of Gerar did strive with Isaac's herdmen, saying, The water is ours: and he called the name of the well Esek; because they strove with him.
714                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they digged another well, and strove for that also: and he called the name of it Sitnah.
715                                                                                                                                                                                                                                                                                                                               And he removed from thence, and digged another well; and for that they strove not: and he called the name of it Rehoboth; and he said, For now the LORD hath made room for us, and we shall be fruitful in the land.
716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he went up from thence to Beersheba.
717                                                                                                                                                                                                                                                                                                                                               And the LORD appeared unto him the same night, and said, I am the God of Abraham thy father: fear not, for I am with thee, and will bless thee, and multiply thy seed for my servant Abraham's sake.
718                                                                                                                                                                                                                                                                                                                                                                                                         And he builded an altar there, and called upon the name of the LORD, and pitched his tent there: and there Isaac's servants digged a well.
719                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Abimelech went to him from Gerar, and Ahuzzath one of his friends, and Phichol the chief captain of his army.
720                                                                                                                                                                                                                                                                                                                                                                                                                                              And Isaac said unto them, Wherefore come ye to me, seeing ye hate me, and have sent me away from you?
721                                                                                                                                                                                                                                                                                                                                                                     And they said, We saw certainly that the LORD was with thee: and we said, Let there be now an oath betwixt us, even betwixt us and thee, and let us make a covenant with thee;
722                                                                                                                                                                                                                                                                                                                                                                 That thou wilt do us no hurt, as we have not touched thee, and as we have done unto thee nothing but good, and have sent thee away in peace: thou art now the blessed of the LORD.
723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made them a feast, and they did eat and drink.
724                                                                                                                                                                                                                                                                                                                                                                                                                  And they rose up betimes in the morning, and sware one to another: and Isaac sent them away, and they departed from him in peace.
725                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass the same day, that Isaac's servants came, and told him concerning the well which they had digged, and said unto him, We have found water.
726                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he called it Shebah: therefore the name of the city is Beersheba unto this day.
727                                                                                                                                                                                                                                                                                                                                                                                                        And Esau was forty years old when he took to wife Judith the daughter of Beeri the Hittite, and Bashemath the daughter of Elon the Hittite:
728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Which were a grief of mind unto Isaac and to Rebekah.
729                                                                                                                                                                                                                                                                                                                                                  And it came to pass, that when Isaac was old, and his eyes were dim, so that he could not see, he called Esau his eldest son, and said unto him, My son: and he said unto him, Behold, here am I.
730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Behold now, I am old, I know not the day of my death:
731                                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me some venison;
732                                                                                                                                                                                                                                                                                                                                                                                                                             And make me savory meat, such as I love, and bring it to me, that I may eat; that my soul may bless thee before I die.
733                                                                                                                                                                                                                                                                                                                                                                                                                               And Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it.
734                                                                                                                                                                                                                                                                                                                                                                                                                                      And Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying,
735                                                                                                                                                                                                                                                                                                                                                                                                                                         Bring me venison, and make me savory meat, that I may eat, and bless thee before the LORD before my death.
736                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore, my son, obey my voice according to that which I command thee.
737                                                                                                                                                                                                                                                                                                                                                                                                      Go now to the flock, and fetch me from thence two good kids of the goats; and I will make them savory meat for thy father, such as he loveth:
738                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt bring it to thy father, that he may eat, and that he may bless thee before his death.
739                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man:
740                                                                                                                                                                                                                                                                                                                                                                                                                 My father peradventure will feel me, and I shall seem to him as a deceiver; and I shall bring a curse upon me, and not a blessing.
741                                                                                                                                                                                                                                                                                                                                                                                                                                              And his mother said unto him, Upon me be thy curse, my son: only obey my voice, and go fetch me them.
742                                                                                                                                                                                                                                                                                                                                                                                                                               And he went, and fetched, and brought them to his mother: and his mother made savory meat, such as his father loved.
743                                                                                                                                                                                                                                                                                                                                                                                                                 And Rebekah took goodly raiment of her eldest son Esau, which were with her in the house, and put them upon Jacob her younger son:
744                                                                                                                                                                                                                                                                                                                                                                                                                                                    And she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck:
745                                                                                                                                                                                                                                                                                                                                                                                                                                                And she gave the savory meat and the bread, which she had prepared, into the hand of her son Jacob.
746                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he came unto his father, and said, My father: and he said, Here am I; who art thou, my son?
747                                                                                                                                                                                                                                                                                                                                                                      And Jacob said unto his father, I am Esau thy first born; I have done according as thou badest me: arise, I pray thee, sit and eat of my venison, that thy soul may bless me.
748                                                                                                                                                                                                                                                                                                                                                                                                         And Isaac said unto his son, How is it that thou hast found it so quickly, my son? And he said, Because the LORD thy God brought it to me.
749                                                                                                                                                                                                                                                                                                                                                                                                                          And Isaac said unto Jacob, Come near, I pray thee, that I may feel thee, my son, whether thou be my very son Esau or not.
750                                                                                                                                                                                                                                                                                                                                                                                                             And Jacob went near unto Isaac his father; and he felt him, and said, The voice is Jacob's voice, but the hands are the hands of Esau.
751                                                                                                                                                                                                                                                                                                                                                                                                                                            And he discerned him not, because his hands were hairy, as his brother Esau's hands: so he blessed him.
752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Art thou my very son Esau? And he said, I am.
753                                                                                                                                                                                                                                                                                                                                                            And he said, Bring it near to me, and I will eat of my son's venison, that my soul may bless thee. And he brought it near to him, and he did eat: and he brought him wine and he drank.
754                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his father Isaac said unto him, Come near now, and kiss me, my son.
755                                                                                                                                                                                                                                                                                                                                                             And he came near, and kissed him: and he smelled the smell of his raiment, and blessed him, and said, See, the smell of my son is as the smell of a field which the LORD hath blessed:
756                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore God give thee of the dew of heaven, and the fatness of the earth, and plenty of corn and wine:
757                                                                                                                                                                                                                                                                                                                                           Let people serve thee, and nations bow down to thee: be lord over thy brethren, and let thy mother's sons bow down to thee: cursed be every one that curseth thee, and blessed be he that blesseth thee.
758                                                                                                                                                                                                                                                                                                                                                  And it came to pass, as soon as Isaac had made an end of blessing Jacob, and Jacob was yet scarce gone out from the presence of Isaac his father, that Esau his brother came in from his hunting.
759                                                                                                                                                                                                                                                                                                                                                                         And he also had made savory meat, and brought it unto his father, and said unto his father, Let my father arise, and eat of his son's venison, that thy soul may bless me.
760                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Isaac his father said unto him, Who art thou? And he said, I am thy son, thy firstborn Esau.
761                                                                                                                                                                                                                                                                                                                                        And Isaac trembled very exceedingly, and said, Who? where is he that hath taken venison, and brought it me, and I have eaten of all before thou camest, and have blessed him? yea, and he shall be blessed.
762                                                                                                                                                                                                                                                                                                                                                                                        And when Esau heard the words of his father, he cried with a great and exceeding bitter cry, and said unto his father, Bless me, even me also, O my father.
763                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Thy brother came with subtilty, and hath taken away thy blessing.
764                                                                                                                                                                                                                                                                                                                         And he said, Is not he rightly named Jacob? for he hath supplanted me these two times: he took away my birthright; and, behold, now he hath taken away my blessing. And he said, Hast thou not reserved a blessing for me?
765                                                                                                                                                                                                                                                                                                                            And Isaac answered and said unto Esau, Behold, I have made him thy lord, and all his brethren have I given to him for servants; and with corn and wine have I sustained him: and what shall I do now unto thee, my son?
766                                                                                                                                                                                                                                                                                                                                                                                                 And Esau said unto his father, Hast thou but one blessing, my father? bless me, even me also, O my father. And Esau lifted up his voice, and wept.
767                                                                                                                                                                                                                                                                                                                                                                                                      And Isaac his father answered and said unto him, Behold, thy dwelling shall be the fatness of the earth, and of the dew of heaven from above;
768                                                                                                                                                                                                                                                                                                                                                                      And by thy sword shalt thou live, and shalt serve thy brother; and it shall come to pass when thou shalt have the dominion, that thou shalt break his yoke from off thy neck.
769                                                                                                                                                                                                                                                                                                                                                      And Esau hated Jacob because of the blessing wherewith his father blessed him: and Esau said in his heart, The days of mourning for my father are at hand; then will I slay my brother Jacob.
770                                                                                                                                                                                                                                                                                                                            And these words of Esau her elder son were told to Rebekah: and she sent and called Jacob her younger son, and said unto him, Behold, thy brother Esau, as touching thee, doth comfort himself, purposing to kill thee.
771                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore, my son, obey my voice; arise, flee thou to Laban my brother to Haran;
772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And tarry with him a few days, until thy brother's fury turn away;
773                                                                                                                                                                                                                                                                                                                                                 Until thy brother's anger turn away from thee, and he forget that which thou hast done to him: then I will send, and fetch thee from thence: why should I be deprived also of you both in one day?
774                                                                                                                                                                                                                                                                                                                             And Rebekah said to Isaac, I am weary of my life because of the daughters of Heth: if Jacob take a wife of the daughters of Heth, such as these which are of the daughters of the land, what good shall my life do me?
775                                                                                                                                                                                                                                                                                                                                                                                                                And Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan.
776                                                                                                                                                                                                                                                                                                                                                                                              Arise, go to Padanaram, to the house of Bethuel thy mother's father; and take thee a wife from thence of the daughters of Laban thy mother's brother.
777                                                                                                                                                                                                                                                                                                                                                                                                                                 And God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a multitude of people;
778                                                                                                                                                                                                                                                                                                                                                                             And give thee the blessing of Abraham, to thee, and to thy seed with thee; that thou mayest inherit the land wherein thou art a stranger, which God gave unto Abraham.
779                                                                                                                                                                                                                                                                                                                                                                                                      And Isaac sent away Jacob: and he went to Padanaram unto Laban, son of Bethuel the Syrian, the brother of Rebekah, Jacob's and Esau's mother.
780                                                                                                                                                                                                                                                                                                                        When Esau saw that Isaac had blessed Jacob, and sent him away to Padanaram, to take him a wife from thence; and that as he blessed him he gave him a charge, saying, Thou shalt not take a wife of the daughters of Canaan;
781                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And that Jacob obeyed his father and his mother, and was gone to Padanaram;
782                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Esau seeing that the daughters of Canaan pleased not Isaac his father;
783                                                                                                                                                                                                                                                                                                                                                                                          Then went Esau unto Ishmael, and took unto the wives which he had Mahalath the daughter of Ishmael Abraham's son, the sister of Nebajoth, to be his wife.
784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jacob went out from Beersheba, and went toward Haran.
785                                                                                                                                                                                                                                                                                                                                             And he lighted upon a certain place, and tarried there all night, because the sun was set; and he took of the stones of that place, and put them for his pillows, and lay down in that place to sleep.
786                                                                                                                                                                                                                                                                                                                                                                                         And he dreamed, and behold a ladder set up on the earth, and the top of it reached to heaven: and behold the angels of God ascending and descending on it.
787                                                                                                                                                                                                                                                                                                                                                               And, behold, the LORD stood above it, and said, I am the LORD God of Abraham thy father, and the God of Isaac: the land whereon thou liest, to thee will I give it, and to thy seed;
788                                                                                                                                                                                                                                                                                                                         And thy seed shall be as the dust of the earth, and thou shalt spread abroad to the west, and to the east, and to the north, and to the south: and in thee and in thy seed shall all the families of the earth be blessed.
789                                                                                                                                                                                                                                                                                                                                      And, behold, I am with thee, and will keep thee in all places whither thou goest, and will bring thee again into this land; for I will not leave thee, until I have done that which I have spoken to thee of.
790                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob awaked out of his sleep, and he said, Surely the LORD is in this place; and I knew it not.
791                                                                                                                                                                                                                                                                                                                                                                                                                  And he was afraid, and said, How dreadful is this place! this is none other but the house of God, and this is the gate of heaven.
792                                                                                                                                                                                                                                                                                                                                                                                         And Jacob rose up early in the morning, and took the stone that he had put for his pillows, and set it up for a pillar, and poured oil upon the top of it.
793                                                                                                                                                                                                                                                                                                                                                                                                                                                And he called the name of that place Bethel: but the name of that city was called Luz at the first.
794                                                                                                                                                                                                                                                                                                                                                                                               And Jacob vowed a vow, saying, If God will be with me, and will keep me in this way that I go, and will give me bread to eat, and raiment to put on,
795                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So that I come again to my father's house in peace; then shall the LORD be my God:
796                                                                                                                                                                                                                                                                                                                                                                                                    And this stone, which I have set for a pillar, shall be God's house: and of all that thou shalt give me I will surely give the tenth unto thee.
797                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Jacob went on his journey, and came into the land of the people of the east.
798                                                                                                                                                                                                                                                                                                                                                   And he looked, and behold a well in the field, and, lo, there were three flocks of sheep lying by it; for out of that well they watered the flocks: and a great stone was upon the well's mouth.
799                                                                                                                                                                                                                                                                                                                                                                      And thither were all the flocks gathered: and they rolled the stone from the well's mouth, and watered the sheep, and put the stone again upon the well's mouth in his place.
800                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob said unto them, My brethren, whence be ye? And they said, Of Haran are we.
801                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto them, Know ye Laban the son of Nahor? And they said, We know him.
802                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto them, Is he well? And they said, He is well: and, behold, Rachel his daughter cometh with the sheep.
803                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Lo, it is yet high day, neither is it time that the cattle should be gathered together: water ye the sheep, and go and feed them.
804                                                                                                                                                                                                                                                                                                                                                                                                  And they said, We cannot, until all the flocks be gathered together, and till they roll the stone from the well's mouth; then we water the sheep.
805                                                                                                                                                                                                                                                                                                                                                                                                                                                          And while he yet spake with them, Rachel came with her father's sheep; for she kept them.
806                                                                                                                                                                                                                                                                                         And it came to pass, when Jacob saw Rachel the daughter of Laban his mother's brother, and the sheep of Laban his mother's brother, that Jacob went near, and rolled the stone from the well's mouth, and watered the flock of Laban his mother's brother.
807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob kissed Rachel, and lifted up his voice, and wept.
808                                                                                                                                                                                                                                                                                                                                                                                                                            And Jacob told Rachel that he was her father's brother, and that he was Rebekah's son: and she ran and told her father.
809                                                                                                                                                                                                                                                                                                                                          And it came to pass, when Laban heard the tidings of Jacob his sister's son, that he ran to meet him, and embraced him, and kissed him, and brought him to his house. And he told Laban all these things.
810                                                                                                                                                                                                                                                                                                                                                                                                                                           And Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month.
811                                                                                                                                                                                                                                                                                                                                                                                                            And Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? tell me, what shall thy wages be?
812                                                                                                                                                                                                                                                                                                                                                                                                                                               And Laban had two daughters: the name of the elder was Leah, and the name of the younger was Rachel.
813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Leah was tender eyed; but Rachel was beautiful and well favored.
814                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jacob loved Rachel; and said, I will serve thee seven years for Rachel thy younger daughter.
815                                                                                                                                                                                                                                                                                                                                                                                                                                   And Laban said, It is better that I give her to thee, than that I should give her to another man: abide with me.
816                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her.
817                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her.
818                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Laban gathered together all the men of the place, and made a feast.
819                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass in the evening, that he took Leah his daughter, and brought her to him; and he went in unto her.
820                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Laban gave unto his daughter Leah Zilpah his maid for an handmaid.
821                                                                                                                                                                                                                                                                                                                                              And it came to pass, that in the morning, behold, it was Leah: and he said to Laban, What is this thou hast done unto me? did not I serve with thee for Rachel? wherefore then hast thou beguiled me?
822                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Laban said, It must not be so done in our country, to give the younger before the firstborn.
823                                                                                                                                                                                                                                                                                                                                                                                                                             Fulfil her week, and we will give thee this also for the service which thou shalt serve with me yet seven other years.
824                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob did so, and fulfilled her week: and he gave him Rachel his daughter to wife also.
825                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Laban gave to Rachel his daughter Bilhah his handmaid to be her maid.
826                                                                                                                                                                                                                                                                                                                                                                                                                               And he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years.
827                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when the LORD saw that Leah was hated, he opened her womb: but Rachel was barren.
828                                                                                                                                                                                                                                                                                                                                                                           And Leah conceived, and bare a son, and she called his name Reuben: for she said, Surely the LORD hath looked upon my affliction; now therefore my husband will love me.
829                                                                                                                                                                                                                                                                                                                                                                              And she conceived again, and bare a son; and said, Because the LORD hath heard I was hated, he hath therefore given me this son also: and she called his name Simeon.
830                                                                                                                                                                                                                                                                                                                                                                        And she conceived again, and bare a son; and said, Now this time will my husband be joined unto me, because I have born him three sons: therefore was his name called Levi.
831                                                                                                                                                                                                                                                                                                                                                                                                          And she conceived again, and bare a son: and she said, Now will I praise the LORD: therefore she called his name Judah; and left bearing.
832                                                                                                                                                                                                                                                                                                                                                                                                               And when Rachel saw that she bare Jacob no children, Rachel envied her sister; and said unto Jacob, Give me children, or else I die.
833                                                                                                                                                                                                                                                                                                                                                                                                                 And Jacob's anger was kindled against Rachel: and he said, Am I in God's stead, who hath withheld from thee the fruit of the womb?
834                                                                                                                                                                                                                                                                                                                                                                                                                       And she said, Behold my maid Bilhah, go in unto her; and she shall bear upon my knees, that I may also have children by her.
835                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she gave him Bilhah her handmaid to wife: and Jacob went in unto her.
836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Bilhah conceived, and bare Jacob a son.
837                                                                                                                                                                                                                                                                                                                                                                                                                     And Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan.
838                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Bilhah Rachel's maid conceived again, and bare Jacob a second son.
839                                                                                                                                                                                                                                                                                                                                                                                                                     And Rachel said, With great wrestlings have I wrestled with my sister, and I have prevailed: and she called his name Naphtali.
840                                                                                                                                                                                                                                                                                                                                                                                                                                                     When Leah saw that she had left bearing, she took Zilpah her maid, and gave her Jacob to wife.
841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Zilpah Leah's maid bare Jacob a son.
842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Leah said, A troop cometh: and she called his name Gad.
843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Zilpah Leah's maid bare Jacob a second son.
844                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Leah said, Happy am I, for the daughters will call me blessed: and she called his name Asher.
845                                                                                                                                                                                                                                                                                                                                                     And Reuben went in the days of wheat harvest, and found mandrakes in the field, and brought them unto his mother Leah. Then Rachel said to Leah, Give me, I pray thee, of thy son's mandrakes.
846                                                                                                                                                                                                                                                                                                                              And she said unto her, Is it a small matter that thou hast taken my husband? and wouldest thou take away my son's mandrakes also? And Rachel said, Therefore he shall lie with thee to night for thy son's mandrakes.
847                                                                                                                                                                                                                                                                                                                                          And Jacob came out of the field in the evening, and Leah went out to meet him, and said, Thou must come in unto me; for surely I have hired thee with my son's mandrakes. And he lay with her that night.
848                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And God hearkened unto Leah, and she conceived, and bare Jacob the fifth son.
849                                                                                                                                                                                                                                                                                                                                                                                                                          And Leah said, God hath given me my hire, because I have given my maiden to my husband: and she called his name Issachar.
850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Leah conceived again, and bare Jacob the sixth son.
851                                                                                                                                                                                                                                                                                                                                                                                         And Leah said, God hath endued me with a good dowry; now will my husband dwell with me, because I have born him six sons: and she called his name Zebulun.
852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And afterwards she bare a daughter, and called her name Dinah.
853                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And God remembered Rachel, and God hearkened to her, and opened her womb.
854                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she conceived, and bare a son; and said, God hath taken away my reproach:
855                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And she called his name Joseph; and said, The LORD shall add to me another son.
856                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when Rachel had born Joseph, that Jacob said unto Laban, Send me away, that I may go unto mine own place, and to my country.
857                                                                                                                                                                                                                                                                                                                                                                                                                  Give me my wives and my children, for whom I have served thee, and let me go: for thou knowest my service which I have done thee.
858                                                                                                                                                                                                                                                                                                                                                                                     And Laban said unto him, I pray thee, if I have found favor in thine eyes, tarry: for I have learned by experience that the LORD hath blessed me for thy sake.
859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said, Appoint me thy wages, and I will give it.
860                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto him, Thou knowest how I have served thee, and how thy cattle was with me.
861                                                                                                                                                                                                                                                                                                                                                  For it was little which thou hadst before I came, and it is now increased unto a multitude; and the LORD hath blessed thee since my coming: and now when shall I provide for mine own house also?
862                                                                                                                                                                                                                                                                                                                                                                                    And he said, What shall I give thee? And Jacob said, Thou shalt not give me any thing: if thou wilt do this thing for me, I will again feed and keep thy flock.
863                                                                                                                                                                                                                                                                                                                          I will pass through all thy flock to day, removing from thence all the speckled and spotted cattle, and all the brown cattle among the sheep, and the spotted and speckled among the goats: and of such shall be my hire.
864                                                                                                                                                                                                                                                                                                              So shall my righteousness answer for me in time to come, when it shall come for my hire before thy face: every one that is not speckled and spotted among the goats, and brown among the sheep, that shall be counted stolen with me.
865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Laban said, Behold, I would it might be according to thy word.
866                                                                                                                                                                                                                                                                                               And he removed that day the he goats that were ring-streaked and spotted, and all the she goats that were speckled and spotted, and every one that had some white in it, and all the brown among the sheep, and gave them into the hand of his sons.
867                                                                                                                                                                                                                                                                                                                                                                                                                                                And he set three days' journey betwixt himself and Jacob: and Jacob fed the rest of Laban's flocks.
868                                                                                                                                                                                                                                                                                                                                                                                    And Jacob took him rods of green poplar, and of the hazel and chestnut tree; and pilled white streaks in them, and made the white appear which was in the rods.
869                                                                                                                                                                                                                                                                                                                                                                 And he set the rods which he had pilled before the flocks in the gutters in the watering troughs when the flocks came to drink, that they should conceive when they came to drink.
870                                                                                                                                                                                                                                                                                                                                                                                                                                           And the flocks conceived before the rods, and brought forth cattle ring-streaked, speckled, and spotted.
871                                                                                                                                                                                                                                                                                                                                And Jacob did separate the lambs, and set the faces of the flocks toward the ring-streaked, and all the brown in the flock of Laban; and he put his own flocks by themselves, and put them not unto Laban's cattle.
872                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, whensoever the stronger cattle did conceive, that Jacob laid the rods before the eyes of the cattle in the gutters, that they might conceive among the rods.
873                                                                                                                                                                                                                                                                                                                                                                                                                                        But when the cattle were feeble, he put them not in: so the feebler were Laban's, and the stronger Jacob's.
874                                                                                                                                                                                                                                                                                                                                                                                                                                  And the man increased exceedingly, and had much cattle, and maidservants, and menservants, and camels, and asses.
875                                                                                                                                                                                                                                                                                                                                                                                 And he heard the words of Laban's sons, saying, Jacob hath taken away all that was our father's; and of that which was our father's hath he gotten all this glory.
876                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob beheld the countenance of Laban, and, behold, it was not toward him as before.
877                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee.
878                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jacob sent and called Rachel and Leah to the field unto his flock,
879                                                                                                                                                                                                                                                                                                                                                                                                               And said unto them, I see your father's countenance, that it is not toward me as before; but the God of my father hath been with me.
880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ye know that with all my power I have served your father.
881                                                                                                                                                                                                                                                                                                                                                                                                                                             And your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me.
882                                                                                                                                                                                                                                                                                                                                                             If he said thus, The speckled shall be thy wages; then all the cattle bare speckled: and if he said thus, The ring-streaked shall be thy hire; then bare all the cattle ring-streaked.
883                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thus God hath taken away the cattle of your father, and given them to me.
884                                                                                                                                                                                                                                                                                                                                          And it came to pass at the time that the cattle conceived, that I lifted up mine eyes, and saw in a dream, and, behold, the rams which leaped upon the cattle were ring-streaked, speckled, and grizzled.
885                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the angel of God spake unto me in a dream, saying, Jacob: And I said, Here am I.
886                                                                                                                                                                                                                                                                                                                                                                   And he said, Lift up now thine eyes, and see, all the rams which leap upon the cattle are ring-streaked, speckled, and grizzled: for I have seen all that Laban doeth unto thee.
887                                                                                                                                                                                                                                                                                                                                                                   I am the God of Bethel, where thou anointedst the pillar, and where thou vowedst a vow unto me: now arise, get thee out from this land, and return unto the land of thy kindred.
888                                                                                                                                                                                                                                                                                                                                                                                                                              And Rachel and Leah answered and said unto him, Is there yet any portion or inheritance for us in our father's house?
889                                                                                                                                                                                                                                                                                                                                                                                                                                                  Are we not counted of him strangers? for he hath sold us, and hath quite devoured also our money.
890                                                                                                                                                                                                                                                                                                                                                                                                       For all the riches which God hath taken from our father, that is ours, and our children's: now then, whatsoever God hath said unto thee, do.
891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Jacob rose up, and set his sons and his wives upon camels;
892                                                                                                                                                                                                                                                                                                                                                       And he carried away all his cattle, and all his goods which he had gotten, the cattle of his getting, which he had gotten in Padanaram, for to go to Isaac his father in the land of Canaan.
893                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Laban went to shear his sheep: and Rachel had stolen the images that were her father's.
894                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled.
895                                                                                                                                                                                                                                                                                                                                                                                                                              So he fled with all that he had; and he rose up, and passed over the river, and set his face toward the mount Gilead.
896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it was told Laban on the third day that Jacob was fled.
897                                                                                                                                                                                                                                                                                                                                                                                                                           And he took his brethren with him, and pursued after him seven days' journey; and they overtook him in the mount Gilead.
898                                                                                                                                                                                                                                                                                                                                                                                                                And God came to Laban the Syrian in a dream by night, and said unto him, Take heed that thou speak not to Jacob either good or bad.
899                                                                                                                                                                                                                                                                                                                                                                                                                Then Laban overtook Jacob. Now Jacob had pitched his tent in the mount: and Laban with his brethren pitched in the mount of Gilead.
900                                                                                                                                                                                                                                                                                                                                                                                          And Laban said to Jacob, What hast thou done, that thou hast stolen away unawares to me, and carried away my daughters, as captives taken with the sword?
901                                                                                                                                                                                                                                                                                                                                                                   Wherefore didst thou flee away secretly, and steal away from me; and didst not tell me, that I might have sent thee away with mirth, and with songs, with tabret, and with harp?
902                                                                                                                                                                                                                                                                                                                                                                                                                                               And hast not suffered me to kiss my sons and my daughters? thou hast now done foolishly in so doing.
903                                                                                                                                                                                                                                                                                                                                                                        It is in the power of my hand to do you hurt: but the God of your father spake unto me yesternight, saying, Take thou heed that thou speak not to Jacob either good or bad.
904                                                                                                                                                                                                                                                                                                                                                                                                          And now, though thou wouldest needs be gone, because thou sore longedst after thy father's house, yet wherefore hast thou stolen my gods?
905                                                                                                                                                                                                                                                                                                                                                                                                            And Jacob answered and said to Laban, Because I was afraid: for I said, Peradventure thou wouldest take by force thy daughters from me.
906                                                                                                                                                                                                                                                                                                                                                              With whomsoever thou findest thy gods, let him not live: before our brethren discern thou what is thine with me, and take it to thee. For Jacob knew not that Rachel had stolen them.
907                                                                                                                                                                                                                                                                                                                                                              And Laban went into Jacob's tent, and into Leah's tent, and into the two maidservants' tents; but he found them not. Then went he out of Leah's tent, and entered into Rachel's tent.
908                                                                                                                                                                                                                                                                                                                                                                                                    Now Rachel had taken the images, and put them in the camel's furniture, and sat upon them. And Laban searched all the tent, but found them not.
909                                                                                                                                                                                                                                                                                                                                                                          And she said to her father, Let it not displease my lord that I cannot rise up before thee; for the custom of women is upon me. And he searched but found not the images.
910                                                                                                                                                                                                                                                                                                                                                                                    And Jacob was wroth, and chode with Laban: and Jacob answered and said to Laban, What is my trespass? what is my sin, that thou hast so hotly pursued after me?
911                                                                                                                                                                                                                                                                                                                                                                    Whereas thou hast searched all my stuff, what hast thou found of all thy household stuff? set it here before my brethren and thy brethren, that they may judge betwixt us both.
912                                                                                                                                                                                                                                                                                                                                                                                                         This twenty years have I been with thee; thy ewes and thy she goats have not cast their young, and the rams of thy flock have I not eaten.
913                                                                                                                                                                                                                                                                                                                                                                                         That which was torn of beasts I brought not unto thee; I bare the loss of it; of my hand didst thou require it, whether stolen by day, or stolen by night.
914                                                                                                                                                                                                                                                                                                                                                                                                                                      Thus I was; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes.
915                                                                                                                                                                                                                                                                                                                                                                            Thus have I been twenty years in thy house; I served thee fourteen years for thy two daughters, and six years for thy cattle: and thou hast changed my wages ten times.
916                                                                                                                                                                                                                                                                                                                         Except the God of my father, the God of Abraham, and the fear of Isaac, had been with me, surely thou hadst sent me away now empty. God hath seen mine affliction and the labor of my hands, and rebuked thee yesternight.
917                                                                                                                                                                                                                                                                    And Laban answered and said unto Jacob, These daughters are my daughters, and these children are my children, and these cattle are my cattle, and all that thou seest is mine: and what can I do this day unto these my daughters, or unto their children which they have born?
918                                                                                                                                                                                                                                                                                                                                                                                                                                      Now therefore come thou, let us make a covenant, I and thou; and let it be for a witness between me and thee.
919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jacob took a stone, and set it up for a pillar.
920                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob said unto his brethren, Gather stones; and they took stones, and made an heap: and they did eat there upon the heap.
921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Laban called it Jegarsahadutha: but Jacob called it Galeed.
922                                                                                                                                                                                                                                                                                                                                                                                                                                   And Laban said, This heap is a witness between me and thee this day. Therefore was the name of it called Galeed;
923                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Mizpah; for he said, The LORD watch between me and thee, when we are absent one from another.
924                                                                                                                                                                                                                                                                                                                                                                                             If thou shalt afflict my daughters, or if thou shalt take other wives beside my daughters, no man is with us; see, God is witness betwixt me and thee.
925                                                                                                                                                                                                                                                                                                                                                                                                                                          And Laban said to Jacob, Behold this heap, and behold this pillar, which I have cast betwixt me and thee:
926                                                                                                                                                                                                                                                                                                                                                                      This heap be witness, and this pillar be witness, that I will not pass over this heap to thee, and that thou shalt not pass over this heap and this pillar unto me, for harm.
927                                                                                                                                                                                                                                                                                                                                                                                                              The God of Abraham, and the God of Nahor, the God of their father, judge betwixt us. And Jacob sware by the fear of his father Isaac.
928                                                                                                                                                                                                                                                                                                                                                                                                     Then Jacob offered sacrifice upon the mount, and called his brethren to eat bread: and they did eat bread, and tarried all night in the mount.
929                                                                                                                                                                                                                                                                                                                                                                                                  And early in the morning Laban rose up, and kissed his sons and his daughters, and blessed them: and Laban departed, and returned unto his place.
930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jacob went on his way, and the angels of God met him.
931                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Jacob saw them, he said, This is God's host: and he called the name of that place Mahanaim.
932                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob sent messengers before him to Esau his brother unto the land of Seir, the country of Edom.
933                                                                                                                                                                                                                                                                                                                                                                                       And he commanded them, saying, Thus shall ye speak unto my lord Esau; Thy servant Jacob saith thus, I have sojourned with Laban, and stayed there until now:
934                                                                                                                                                                                                                                                                                                                                                                                                       And I have oxen, and asses, flocks, and menservants, and womenservants: and I have sent to tell my lord, that I may find grace in thy sight.
935                                                                                                                                                                                                                                                                                                                                                                                                         And the messengers returned to Jacob, saying, We came to thy brother Esau, and also he cometh to meet thee, and four hundred men with him.
936                                                                                                                                                                                                                                                                                                                                                                                              Then Jacob was greatly afraid and distressed: and he divided the people that was with him, and the flocks, and herds, and the camels, into two bands;
937                                                                                                                                                                                                                                                                                                                                                                                                                                        And said, If Esau come to the one company, and smite it, then the other company which is left shall escape.
938                                                                                                                                                                                                                                                                                                                                                                And Jacob said, O God of my father Abraham, and God of my father Isaac, the LORD which saidst unto me, Return unto thy country, and to thy kindred, and I will deal well with thee:
939                                                                                                                                                                                                                                                                                                                                                        I am not worthy of the least of all the mercies, and of all the truth, which thou hast showed unto thy servant; for with my staff I passed over this Jordan; and now I am become two bands.
940                                                                                                                                                                                                                                                                                                                                                                                     Deliver me, I pray thee, from the hand of my brother, from the hand of Esau: for I fear him, lest he will come and smite me, and the mother with the children.
941                                                                                                                                                                                                                                                                                                                                                                                                                     And thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude.
942                                                                                                                                                                                                                                                                                                                                                                                                                                       And he lodged there that same night; and took of that which came to his hand a present for Esau his brother;
943                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Two hundred she goats, and twenty he goats, two hundred ewes, and twenty rams,
944                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thirty milch camels with their colts, forty kine, and ten bulls, twenty she asses, and ten foals.
945                                                                                                                                                                                                                                                                                                                                                                          And he delivered them into the hand of his servants, every drove by themselves; and said unto his servants, Pass over before me, and put a space betwixt drove and drove.
946                                                                                                                                                                                                                                                                                                                                                                        And he commanded the foremost, saying, When Esau my brother meeteth thee, and asketh thee, saying, Whose art thou? and whither goest thou? and whose are these before thee?
947                                                                                                                                                                                                                                                                                                                                                                                                                       Then thou shalt say, They be thy servant Jacob's; it is a present sent unto my lord Esau: and, behold, also he is behind us.
948                                                                                                                                                                                                                                                                                                                                                                                                And so commanded he the second, and the third, and all that followed the droves, saying, On this manner shall ye speak unto Esau, when ye find him.
949                                                                                                                                                                                                                                                                                                                                          And say ye moreover, Behold, thy servant Jacob is behind us. For he said, I will appease him with the present that goeth before me, and afterward I will see his face; peradventure he will accept of me.
950                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So went the present over before him: and himself lodged that night in the company.
951                                                                                                                                                                                                                                                                                                                                                                                                                And he rose up that night, and took his two wives, and his two womenservants, and his eleven sons, and passed over the ford Jabbok.
952                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he took them, and sent them over the brook, and sent over that he had.
953                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob was left alone; and there wrestled a man with him until the breaking of the day.
954                                                                                                                                                                                                                                                                                                                                                                                  And when he saw that he prevailed not against him, he touched the hollow of his thigh; and the hollow of Jacob's thigh was out of joint, as he wrestled with him.
955                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me.
956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said unto him, What is thy name? And he said, Jacob.
957                                                                                                                                                                                                                                                                                                                                                                                                        And he said, Thy name shall be called no more Jacob, but Israel: for as a prince hast thou power with God and with men, and hast prevailed.
958                                                                                                                                                                                                                                                                                                                                                                                            And Jacob asked him, and said, Tell me, I pray thee, thy name. And he said, Wherefore is it that thou dost ask after my name? And he blessed him there.
959                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob called the name of the place Peniel: for I have seen God face to face, and my life is preserved.
960                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And as he passed over Penuel the sun rose upon him, and he halted upon his thigh.
961                                                                                                                                                                                                                                                                                                                                                 Therefore the children of Israel eat not of the sinew which shrank, which is upon the hollow of the thigh, unto this day: because he touched the hollow of Jacob's thigh in the sinew that shrank.
962                                                                                                                                                                                                                                                                                                                                                               And Jacob lifted up his eyes, and looked, and, behold, Esau came, and with him four hundred men. And he divided the children unto Leah, and unto Rachel, and unto the two handmaids.
963                                                                                                                                                                                                                                                                                                                                                                                                                           And he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost.
964                                                                                                                                                                                                                                                                                                                                                                                                                                    And he passed over before them, and bowed himself to the ground seven times, until he came near to his brother.
965                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept.
966                                                                                                                                                                                                                                                                                                                                                                           And he lifted up his eyes, and saw the women and the children; and said, Who are those with thee? And he said, The children which God hath graciously given thy servant.
967                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the handmaidens came near, they and their children, and they bowed themselves.
968                                                                                                                                                                                                                                                                                                                                                                                                                 And Leah also with her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves.
969                                                                                                                                                                                                                                                                                                                                                                                                                        And he said, What meanest thou by all this drove which I met? And he said, These are to find grace in the sight of my lord.
970                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Esau said, I have enough, my brother; keep that thou hast unto thyself.
971                                                                                                                                                                                                                                                                                                                             And Jacob said, Nay, I pray thee, if now I have found grace in thy sight, then receive my present at my hand: for therefore I have seen thy face, as though I had seen the face of God, and thou wast pleased with me.
972                                                                                                                                                                                                                                                                                                                                                                                    Take, I pray thee, my blessing that is brought to thee; because God hath dealt graciously with me, and because I have enough. And he urged him, and he took it.
973                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Let us take our journey, and let us go, and I will go before thee.
974                                                                                                                                                                                                                                                                                                                                                             And he said unto him, My lord knoweth that the children are tender, and the flocks and herds with young are with me: and if men should overdrive them one day, all the flock will die.
975                                                                                                                                                                                                                                                                                                                                           Let my lord, I pray thee, pass over before his servant: and I will lead on softly, according as the cattle that goeth before me and the children be able to endure, until I come unto my lord unto Seir.
976                                                                                                                                                                                                                                                                                                                                                                                              And Esau said, Let me now leave with thee some of the folk that are with me. And he said, What needeth it? let me find grace in the sight of my lord.
977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Esau returned that day on his way unto Seir.
978                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob journeyed to Succoth, and built him an house, and made booths for his cattle: therefore the name of the place is called Succoth.
979                                                                                                                                                                                                                                                                                                                                                                                                    And Jacob came to Shalem, a city of Shechem, which is in the land of Canaan, when he came from Padanaram; and pitched his tent before the city.
980                                                                                                                                                                                                                                                                                                                                                                                           And he bought a parcel of a field, where he had spread his tent, at the hand of the children of Hamor, Shechem's father, for an hundred pieces of money.
981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he erected there an altar, and called it EleloheIsrael.
982                                                                                                                                                                                                                                                                                                                                                                                                                                              And Dinah the daughter of Leah, which she bare unto Jacob, went out to see the daughters of the land.
983                                                                                                                                                                                                                                                                                                                                                                                                                      And when Shechem the son of Hamor the Hivite, prince of the country, saw her, he took her, and lay with her, and defiled her.
984                                                                                                                                                                                                                                                                                                                                                                                                                                    And his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel.
985                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Shechem spake unto his father Hamor, saying, Get me this damsel to wife.
986                                                                                                                                                                                                                                                                                                                                                                                             And Jacob heard that he had defiled Dinah his daughter: now his sons were with his cattle in the field: and Jacob held his peace until they were come.
987                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Hamor the father of Shechem went out unto Jacob to commune with him.
988                                                                                                                                                                                                                                                                                                                       And the sons of Jacob came out of the field when they heard it: and the men were grieved, and they were very wroth, because he had wrought folly in Israel in lying with Jacob's daughter: which thing ought not to be done.
989                                                                                                                                                                                                                                                                                                                                                                                                                       And Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you give her him to wife.
990                                                                                                                                                                                                                                                                                                                                                                                                                                                   And make ye marriages with us, and give your daughters unto us, and take our daughters unto you.
991                                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein.
992                                                                                                                                                                                                                                                                                                                                                                                                                 And Shechem said unto her father and unto her brethren, Let me find grace in your eyes, and what ye shall say unto me I will give.
993                                                                                                                                                                                                                                                                                                                                                                                                                            Ask me never so much dowry and gift, and I will give according as ye shall say unto me: but give me the damsel to wife.
994                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Jacob answered Shechem and Hamor his father deceitfully, and said, because he had defiled Dinah their sister:
995                                                                                                                                                                                                                                                                                                                                                                                                               And they said unto them, We cannot do this thing, to give our sister to one that is uncircumcised; for that were a reproach unto us:
996                                                                                                                                                                                                                                                                                                                                                                                                                                               But in this will we consent unto you: If ye will be as we be, that every male of you be circumcised;
997                                                                                                                                                                                                                                                                                                                                                                                                        Then will we give our daughters unto you, and we will take your daughters to us, and we will dwell with you, and we will become one people.
998                                                                                                                                                                                                                                                                                                                                                                                                                                        But if ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone.
999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And their words pleased Hamor, and Shechem Hamor's son.
1000                                                                                                                                                                                                                                                                                                                                                                                           And the young man deferred not to do the thing, because he had delight in Jacob's daughter: and he was more honorable than all the house of his father.
1001                                                                                                                                                                                                                                                                                                                                                                                                                                  And Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying,
1002                                                                                                                                                                                                                                                                                                                     These men are peaceable with us; therefore let them dwell in the land, and trade therein; for the land, behold, it is large enough for them; let us take their daughters to us for wives, and let us give them our daughters.
1003                                                                                                                                                                                                                                                                                                                                                                                                  Only herein will the men consent unto us for to dwell with us, to be one people, if every male among us be circumcised, as they are circumcised.
1004                                                                                                                                                                                                                                                                                                                                                                                                         Shall not their cattle and their substance and every beast of theirs be ours? only let us consent unto them, and they will dwell with us.
1005                                                                                                                                                                                                                                                                                                                                                                           And unto Hamor and unto Shechem his son hearkened all that went out of the gate of his city; and every male was circumcised, all that went out of the gate of his city.
1006                                                                                                                                                                                                                                                                                                                                      And it came to pass on the third day, when they were sore, that two of the sons of Jacob, Simeon and Levi, Dinah's brethren, took each man his sword, and came upon the city boldly, and slew all the males.
1007                                                                                                                                                                                                                                                                                                                                                                                                                          And they slew Hamor and Shechem his son with the edge of the sword, and took Dinah out of Shechem's house, and went out.
1008                                                                                                                                                                                                                                                                                                                                                                                                                                               The sons of Jacob came upon the slain, and spoiled the city, because they had defiled their sister.
1009                                                                                                                                                                                                                                                                                                                                                                                                                          They took their sheep, and their oxen, and their asses, and that which was in the city, and that which was in the field,
1010                                                                                                                                                                                                                                                                                                                                                                                                                   And all their wealth, and all their little ones, and their wives took they captive, and spoiled even all that was in the house.
1011                                                                                                                                                                                                                                                        And Jacob said to Simeon and Levi, Ye have troubled me to make me to stink among the inhabitants of the land, among the Canaanites and the Perizzites: and I being few in number, they shall gather themselves together against me, and slay me; and I shall be destroyed, I and my house.
1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they said, Should he deal with our sister as with an harlot?
1013                                                                                                                                                                                                                                                                                                                                                                 And God said unto Jacob, Arise, go up to Bethel, and dwell there: and make there an altar unto God, that appeared unto thee when thou fleddest from the face of Esau thy brother.
1014                                                                                                                                                                                                                                                                                                                                                                                          Then Jacob said unto his household, and to all that were with him, Put away the strange gods that are among you, and be clean, and change your garments:
1015                                                                                                                                                                                                                                                                                                                                                                               And let us arise, and go up to Bethel; and I will make there an altar unto God, who answered me in the day of my distress, and was with me in the way which I went.
1016                                                                                                                                                                                                                                                                                                                                                                   And they gave unto Jacob all the strange gods which were in their hand, and all their earrings which were in their ears; and Jacob hid them under the oak which was by Shechem.
1017                                                                                                                                                                                                                                                                                                                                                                                                        And they journeyed: and the terror of God was upon the cities that were round about them, and they did not pursue after the sons of Jacob.
1018                                                                                                                                                                                                                                                                                                                                                                                                                                  So Jacob came to Luz, which is in the land of Canaan, that is, Bethel, he and all the people that were with him.
1019                                                                                                                                                                                                                                                                                                                                                                                                       And he built there an altar, and called the place Elbethel: because there God appeared unto him, when he fled from the face of his brother.
1020                                                                                                                                                                                                                                                                                                                                                                                                                     But Deborah Rebekah's nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allonbachuth.
1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                And God appeared unto Jacob again, when he came out of Padanaram, and blessed him.
1022                                                                                                                                                                                                                                                                                                                                                                                               And God said unto him, Thy name is Jacob: thy name shall not be called any more Jacob, but Israel shall be thy name: and he called his name Israel.
1023                                                                                                                                                                                                                                                                                                                                                                                    And God said unto him, I am God Almighty: be fruitful and multiply; a nation and a company of nations shall be of thee, and kings shall come out of thy loins;
1024                                                                                                                                                                                                                                                                                                                                                                                                                             And the land which I gave Abraham and Isaac, to thee I will give it, and to thy seed after thee will I give the land.
1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And God went up from him in the place where he talked with him.
1026                                                                                                                                                                                                                                                                                                                                                                                       And Jacob set up a pillar in the place where he talked with him, even a pillar of stone: and he poured a drink offering thereon, and he poured oil thereon.
1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jacob called the name of the place where God spake with him, Bethel.
1028                                                                                                                                                                                                                                                                                                                                                                                                                  And they journeyed from Bethel; and there was but a little way to come to Ephrath: and Rachel travailed, and she had hard labor.
1029                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when she was in hard labor, that the midwife said unto her, Fear not; thou shalt have this son also.
1030                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, as her soul was in departing, (for she died) that she called his name Benoni: but his father called him Benjamin.
1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Rachel died, and was buried in the way to Ephrath, which is Bethlehem.
1032                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob set a pillar upon her grave: that is the pillar of Rachel's grave unto this day.
1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Israel journeyed, and spread his tent beyond the tower of Edar.
1034                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Israel dwelt in that land, that Reuben went and lay with Bilhah his father's concubine: and Israel heard it. Now the sons of Jacob were twelve:
1035                                                                                                                                                                                                                                                                                                                                                                                                                                          The sons of Leah; Reuben, Jacob's firstborn, and Simeon, and Levi, and Judah, and Issachar, and Zebulun:
1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Rachel; Joseph, and Benjamin:
1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Bilhah, Rachel's handmaid; Dan, and Naphtali:
1038                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Zilpah, Leah's handmaid: Gad, and Asher: these are the sons of Jacob, which were born to him in Padanaram.
1039                                                                                                                                                                                                                                                                                                                                                                                                                       And Jacob came unto Isaac his father unto Mamre, unto the city of Arba, which is Hebron, where Abraham and Isaac sojourned.
1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the days of Isaac were an hundred and fourscore years.
1041                                                                                                                                                                                                                                                                                                                                                                                                      And Isaac gave up the ghost, and died, and was gathered unto his people, being old and full of days: and his sons Esau and Jacob buried him.
1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now these are the generations of Esau, who is Edom.
1043                                                                                                                                                                                                                                                                                                                                                                                     Esau took his wives of the daughters of Canaan; Adah the daughter of Elon the Hittite, and Aholibamah the daughter of Anah the daughter of Zibeon the Hivite;
1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Bashemath Ishmael's daughter, sister of Nebajoth.
1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Adah bare to Esau Eliphaz; and Bashemath bare Reuel;
1046                                                                                                                                                                                                                                                                                                                                                                                                                     And Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of Esau, which were born unto him in the land of Canaan.
1047                                                                                                                                                                                                                                                                                      And Esau took his wives, and his sons, and his daughters, and all the persons of his house, and his cattle, and all his beasts, and all his substance, which he had got in the land of Canaan; and went into the country from the face of his brother Jacob.
1048                                                                                                                                                                                                                                                                                                                                                                                             For their riches were more than that they might dwell together; and the land wherein they were strangers could not bear them because of their cattle.
1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thus dwelt Esau in mount Seir: Esau is Edom.
1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And these are the generations of Esau the father of the Edomites in mount Seir:
1051                                                                                                                                                                                                                                                                                                                                                                                                                        These are the names of Esau's sons; Eliphaz the son of Adah the wife of Esau, Reuel the son of Bashemath the wife of Esau.
1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz.
1053                                                                                                                                                                                                                                                                                                                                                                                                                           And Timna was concubine to Eliphaz Esau's son; and she bare to Eliphaz Amalek: these were the sons of Adah Esau's wife.
1054                                                                                                                                                                                                                                                                                                                                                                                                                            And these are the sons of Reuel; Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Bashemath Esau's wife.
1055                                                                                                                                                                                                                                                                                                                                                                                               And these were the sons of Aholibamah, the daughter of Anah the daughter of Zibeon, Esau's wife: and she bare to Esau Jeush, and Jaalam, and Korah.
1056                                                                                                                                                                                                                                                                                                                                                                                                               These were dukes of the sons of Esau: the sons of Eliphaz the firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz,
1057                                                                                                                                                                                                                                                                                                                                                                                                               Duke Korah, duke Gatam, and duke Amalek: these are the dukes that came of Eliphaz in the land of Edom; these were the sons of Adah.
1058                                                                                                                                                                                                                                                                                                                                          And these are the sons of Reuel Esau's son; duke Nahath, duke Zerah, duke Shammah, duke Mizzah: these are the dukes that came of Reuel in the land of Edom; these are the sons of Bashemath Esau's wife.
1059                                                                                                                                                                                                                                                                                                                                                                            And these are the sons of Aholibamah Esau's wife; duke Jeush, duke Jaalam, duke Korah: these were the dukes that came of Aholibamah the daughter of Anah, Esau's wife.
1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                               These are the sons of Esau, who is Edom, and these are their dukes.
1061                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the sons of Seir the Horite, who inhabited the land; Lotan, and Shobal, and Zibeon, and Anah,
1062                                                                                                                                                                                                                                                                                                                                                                                                                                   And Dishon, and Ezer, and Dishan: these are the dukes of the Horites, the children of Seir in the land of Edom.
1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Lotan were Hori and Hemam; and Lotan's sister was Timna.
1064                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the children of Shobal were these; Alvan, and Manahath, and Ebal, Shepho, and Onam.
1065                                                                                                                                                                                                                                                                                                                                                                                   And these are the children of Zibeon; both Ajah, and Anah: this was that Anah that found the mules in the wilderness, as he fed the asses of Zibeon his father.
1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the children of Anah were these; Dishon, and Aholibamah the daughter of Anah.
1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And these are the children of Dishon; Hemdan, and Eshban, and Ithran, and Cheran.
1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The children of Ezer are these; Bilhan, and Zaavan, and Akan.
1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The children of Dishan are these; Uz, and Aran.
1070                                                                                                                                                                                                                                                                                                                                                                                                                                                    These are the dukes that came of the Horites; duke Lotan, duke Shobal, duke Zibeon, duke Anah,
1071                                                                                                                                                                                                                                                                                                                                                                                                                                Duke Dishon, duke Ezer, duke Dishan: these are the dukes that came of Hori, among their dukes in the land of Seir.
1072                                                                                                                                                                                                                                                                                                                                                                                                                              And these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel.
1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Bela the son of Beor reigned in Edom: and the name of his city was Dinhabah.
1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead.
1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jobab died, and Husham of the land of Temani reigned in his stead.
1076                                                                                                                                                                                                                                                                                                                                                                                                     And Husham died, and Hadad the son of Bedad, who smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith.
1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Hadad died, and Samlah of Masrekah reigned in his stead.
1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Samlah died, and Saul of Rehoboth by the river reigned in his stead.
1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul died, and Baalhanan the son of Achbor reigned in his stead.
1080                                                                                                                                                                                                                                                                                                                                                       And Baalhanan the son of Achbor died, and Hadar reigned in his stead: and the name of his city was Pau; and his wife's name was Mehetabel, the daughter of Matred, the daughter of Mezahab.
1081                                                                                                                                                                                                                                                                                                                                                                                   And these are the names of the dukes that came of Esau, according to their families, after their places, by their names; duke Timnah, duke Alvah, duke Jetheth,
1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Duke Aholibamah, duke Elah, duke Pinon,
1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Duke Kenaz, duke Teman, duke Mibzar,
1084                                                                                                                                                                                                                                                                                                                                                                                       Duke Magdiel, duke Iram: these be the dukes of Edom, according to their habitations in the land of their possession: he is Esau the father of the Edomites.
1085                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jacob dwelt in the land wherein his father was a stranger, in the land of Canaan.
1086                                                                                                                                                                                                                                                                                   These are the generations of Jacob. Joseph, being seventeen years old, was feeding the flock with his brethren; and the lad was with the sons of Bilhah, and with the sons of Zilpah, his father's wives: and Joseph brought unto his father their evil report.
1087                                                                                                                                                                                                                                                                                                                                                                                                                 Now Israel loved Joseph more than all his children, because he was the son of his old age: and he made him a coat of many colors.
1088                                                                                                                                                                                                                                                                                                                                                                                                         And when his brethren saw that their father loved him more than all his brethren, they hated him, and could not speak peaceably unto him.
1089                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joseph dreamed a dream, and he told it his brethren: and they hated him yet the more.
1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto them, Hear, I pray you, this dream which I have dreamed:
1091                                                                                                                                                                                                                                                                                                                                                                  For, behold, we were binding sheaves in the field, and, lo, my sheaf arose, and also stood upright; and, behold, your sheaves stood round about, and made obeisance to my sheaf.
1092                                                                                                                                                                                                                                                                                                                                                                     And his brethren said to him, Shalt thou indeed reign over us? or shalt thou indeed have dominion over us? And they hated him yet the more for his dreams, and for his words.
1093                                                                                                                                                                                                                                                                                                                                                           And he dreamed yet another dream, and told it his brethren, and said, Behold, I have dreamed a dream more; and, behold, the sun and the moon and the eleven stars made obeisance to me.
1094                                                                                                                                                                                                                                                                                                      And he told it to his father, and to his brethren: and his father rebuked him, and said unto him, What is this dream that thou hast dreamed? Shall I and thy mother and thy brethren indeed come to bow down ourselves to thee to the earth?
1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his brethren envied him; but his father observed the saying.
1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And his brethren went to feed their father's flock in Shechem.
1097                                                                                                                                                                                                                                                                                                                                                                                                  And Israel said unto Joseph, Do not thy brethren feed the flock in Shechem? come, and I will send thee unto them. And he said to him, Here am I.
1098                                                                                                                                                                                                                                                                                                                                               And he said to him, Go, I pray thee, see whether it be well with thy brethren, and well with the flocks; and bring me word again. So he sent him out of the vale of Hebron, and he came to Shechem.
1099                                                                                                                                                                                                                                                                                                                                                                                                                        And a certain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou?
1100                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, I seek my brethren: tell me, I pray thee, where they feed their flocks.
1101                                                                                                                                                                                                                                                                                                                                                                                               And the man said, They are departed hence; for I heard them say, Let us go to Dothan. And Joseph went after his brethren, and found them in Dothan.
1102                                                                                                                                                                                                                                                                                                                                                                                                                                       And when they saw him afar off, even before he came near unto them, they conspired against him to slay him.
1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they said one to another, Behold, this dreamer cometh.
1104                                                                                                                                                                                                                                                                                                                                                                         Come now therefore, and let us slay him, and cast him into some pit, and we will say, Some evil beast hath devoured him: and we shall see what will become of his dreams.
1105                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Reuben heard it, and he delivered him out of their hands; and said, Let us not kill him.
1106                                                                                                                                                                                                                                                                                                                                           And Reuben said unto them, Shed no blood, but cast him into this pit that is in the wilderness, and lay no hand upon him; that he might rid him out of their hands, to deliver him to his father again.
1107                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when Joseph was come unto his brethren, that they stripped Joseph out of his coat, his coat of many colors that was on him;
1108                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they took him, and cast him into a pit: and the pit was empty, there was no water in it.
1109                                                                                                                                                                                                                                                                                                                           And they sat down to eat bread: and they lifted up their eyes and looked, and, behold, a company of Ishmaelites came from Gilead with their camels bearing spicery and balm and myrrh, going to carry it down to Egypt.
1110                                                                                                                                                                                                                                                                                                                                                                                                                                                And Judah said unto his brethren, What profit is it if we slay our brother, and conceal his blood?
1111                                                                                                                                                                                                                                                                                                                                                                                               Come, and let us sell him to the Ishmaelites, and let not our hand be upon him; for he is our brother and our flesh. And his brethren were content.
1112                                                                                                                                                                                                                                                                                                                                               Then there passed by Midianites merchantmen; and they drew and lifted up Joseph out of the pit, and sold Joseph to the Ishmaelites for twenty pieces of silver: and they brought Joseph into Egypt.
1113                                                                                                                                                                                                                                                                                                                                                                                                                                                And Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes.
1114                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he returned unto his brethren, and said, The child is not; and I, whither shall I go?
1115                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they took Joseph's coat, and killed a kid of the goats, and dipped the coat in the blood;
1116                                                                                                                                                                                                                                                                                                                                                                                            And they sent the coat of many colors, and they brought it to their father; and said, This have we found: know now whether it be thy son's coat or no.
1117                                                                                                                                                                                                                                                                                                                                                                                                                           And he knew it, and said, It is my son's coat; an evil beast hath devoured him; Joseph is without doubt rent in pieces.
1118                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jacob rent his clothes, and put sackcloth upon his loins, and mourned for his son many days.
1119                                                                                                                                                                                                                                                                                                                                                 And all his sons and all his daughters rose up to comfort him; but he refused to be comforted; and he said, For I will go down into the grave unto my son mourning. Thus his father wept for him.
1120                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh's, and captain of the guard.
1121                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass at that time, that Judah went down from his brethren, and turned in to a certain Adullamite, whose name was Hirah.
1122                                                                                                                                                                                                                                                                                                                                                                                                                               And Judah saw there a daughter of a certain Canaanite, whose name was Shuah; and he took her, and went in unto her.
1123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she conceived, and bare a son; and he called his name Er.
1124                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And she conceived again, and bare a son; and she called his name Onan.
1125                                                                                                                                                                                                                                                                                                                                                                                                                                 And she yet again conceived, and bare a son; and called his name Shelah: and he was at Chezib, when she bare him.
1126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Judah took a wife for Er his firstborn, whose name was Tamar.
1127                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Er, Judah's firstborn, was wicked in the sight of the LORD; and the LORD slew him.
1128                                                                                                                                                                                                                                                                                                                                                                                                                                         And Judah said unto Onan, Go in unto thy brother's wife, and marry her, and raise up seed to thy brother.
1129                                                                                                                                                                                                                                                                                                                                                      And Onan knew that the seed should not be his; and it came to pass, when he went in unto his brother's wife, that he spilled it on the ground, lest that he should give seed to his brother.
1130                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the thing which he did displeased the LORD: wherefore he slew him also.
1131                                                                                                                                                                                                                                                                                                                 Then said Judah to Tamar his daughter in law, Remain a widow at thy father's house, till Shelah my son be grown: for he said, Lest peradventure he die also, as his brethren did. And Tamar went and dwelt in her father's house.
1132                                                                                                                                                                                                                                                                                                                                                                   And in process of time the daughter of Shuah Judah's wife died; and Judah was comforted, and went up unto his sheepshearers to Timnath, he and his friend Hirah the Adullamite.
1133                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it was told Tamar, saying, Behold thy father in law goeth up to Timnath to shear his sheep.
1134                                                                                                                                                                                                                                                                                                             And she put her widow's garments off from her, and covered her with a vail, and wrapped herself, and sat in an open place, which is by the way to Timnath; for she saw that Shelah was grown, and she was not given unto him to wife.
1135                                                                                                                                                                                                                                                                                                                                                                                                                                                             When Judah saw her, he thought her to be an harlot; because she had covered her face.
1136                                                                                                                                                                                                                                                                                                                            And he turned unto her by the way, and said, Go to, I pray thee, let me come in unto thee; (for he knew not that she was his daughter in law.) And she said, What wilt thou give me, that thou mayest come in unto me?
1137                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, I will send thee a kid from the flock. And she said, Wilt thou give me a pledge, till thou send it?
1138                                                                                                                                                                                                                                                                                                                                                 And he said, What pledge shall I give thee? And she said, Thy signet, and thy bracelets, and thy staff that is in thine hand. And he gave it her, and came in unto her, and she conceived by him.
1139                                                                                                                                                                                                                                                                                                                                                                                                                                            And she arose, and went away, and laid by her vail from her, and put on the garments of her widowhood.
1140                                                                                                                                                                                                                                                                                                                                                                                                               And Judah sent the kid by the hand of his friend the Adullamite, to receive his pledge from the woman's hand: but he found her not.
1141                                                                                                                                                                                                                                                                                                                                                                                              Then he asked the men of that place, saying, Where is the harlot, that was openly by the way side? And they said, There was no harlot in this place.
1142                                                                                                                                                                                                                                                                                                                                                                                                                And he returned to Judah, and said, I cannot find her; and also the men of the place said, that there was no harlot in this place.
1143                                                                                                                                                                                                                                                                                                                                                                                                                                  And Judah said, Let her take it to her, lest we be shamed: behold, I sent this kid, and thou hast not found her.
1144                                                                                                                                                                                                                                                                                                           And it came to pass about three months after, that it was told Judah, saying, Tamar thy daughter in law hath played the harlot; and also, behold, she is with child by whoredom. And Judah said, Bring her forth, and let her be burnt.
1145                                                                                                                                                                                                                                                                                                                                       When she was brought forth, she sent to her father in law, saying, By the man, whose these are, am I with child: and she said, Discern, I pray thee, whose are these, the signet, and bracelets, and staff.
1146                                                                                                                                                                                                                                                                                                                                                                                          And Judah acknowledged them, and said, She hath been more righteous than I; because that I gave her not to Shelah my son. And he knew her again no more.
1147                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass in the time of her travail, that, behold, twins were in her womb.
1148                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when she travailed, that the one put out his hand: and the midwife took and bound upon his hand a scarlet thread, saying, This came out first.
1149                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as he drew back his hand, that, behold, his brother came out: and she said, How hast thou broken forth? this breach be upon thee: therefore his name was called Pharez.
1150                                                                                                                                                                                                                                                                                                                                                                                                                                     And afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zarah.
1151                                                                                                                                                                                                                                                                                                                                                     And Joseph was brought down to Egypt; and Potiphar, an officer of Pharaoh, captain of the guard, an Egyptian, bought him of the hands of the Ishmaelites, which had brought him down thither.
1152                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian.
1153                                                                                                                                                                                                                                                                                                                                                                                                                                     And his master saw that the LORD was with him, and that the LORD made all that he did to prosper in his hand.
1154                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph found grace in his sight, and he served him: and he made him overseer over his house, and all that he had he put into his hand.
1155                                                                                                                                                                                                                                                                                       And it came to pass from the time that he had made him overseer in his house, and over all that he had, that the LORD blessed the Egyptian's house for Joseph's sake; and the blessing of the LORD was upon all that he had in the house, and in the field.
1156                                                                                                                                                                                                                                                                                                                                                                                    And he left all that he had in Joseph's hand; and he knew not ought he had, save the bread which he did eat. And Joseph was a goodly person, and well favored.
1157                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass after these things, that his master's wife cast her eyes upon Joseph; and she said, Lie with me.
1158                                                                                                                                                                                                                                                                                                                                                                                   But he refused, and said unto his master's wife, Behold, my master wotteth not what is with me in the house, and he hath committed all that he hath to my hand;
1159                                                                                                                                                                                                                                                                                                                                                        There is none greater in this house than I; neither hath he kept back any thing from me but thee, because thou art his wife: how then can I do this great wickedness, and sin against God?
1160                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as she spake to Joseph day by day, that he hearkened not unto her, to lie by her, or to be with her.
1161                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass about this time, that Joseph went into the house to do his business; and there was none of the men of the house there within.
1162                                                                                                                                                                                                                                                                                                                                                                                                                           And she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out.
1163                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when she saw that he had left his garment in her hand, and was fled forth,
1164                                                                                                                                                                                                                                                                                                                                                   That she called unto the men of her house, and spake unto them, saying, See, he hath brought in an Hebrew unto us to mock us; he came in unto me to lie with me, and I cried with a loud voice:
1165                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when he heard that I lifted up my voice and cried, that he left his garment with me, and fled, and got him out.
1166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she laid up his garment by her, until his lord came home.
1167                                                                                                                                                                                                                                                                                                                                                                                                         And she spake unto him according to these words, saying, The Hebrew servant, which thou hast brought unto us, came in unto me to mock me:
1168                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, as I lifted up my voice and cried, that he left his garment with me, and fled out.
1169                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, when his master heard the words of his wife, which she spake unto him, saying, After this manner did thy servant to me; that his wrath was kindled.
1170                                                                                                                                                                                                                                                                                                                                                                                                         And Joseph's master took him, and put him into the prison, a place where the king's prisoners were bound: and he was there in the prison.
1171                                                                                                                                                                                                                                                                                                                                                                                                                                  But the LORD was with Joseph, and showed him mercy, and gave him favor in the sight of the keeper of the prison.
1172                                                                                                                                                                                                                                                                                                                                                                                          And the keeper of the prison committed to Joseph's hand all the prisoners that were in the prison; and whatsoever they did there, he was the doer of it.
1173                                                                                                                                                                                                                                                                                                                                                                                      The keeper of the prison looked not to any thing that was under his hand; because the LORD was with him, and that which he did, the LORD made it to prosper.
1174                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass after these things, that the butler of the king of Egypt and his baker had offended their lord the king of Egypt.
1175                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh was wroth against two of his officers, against the chief of the butlers, and against the chief of the bakers.
1176                                                                                                                                                                                                                                                                                                                                                                                                                              And he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound.
1177                                                                                                                                                                                                                                                                                                                                                                                                                                   And the captain of the guard charged Joseph with them, and he served them: and they continued a season in ward.
1178                                                                                                                                                                                                                                                                                                                                     And they dreamed a dream both of them, each man his dream in one night, each man according to the interpretation of his dream, the butler and the baker of the king of Egypt, which were bound in the prison.
1179                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joseph came in unto them in the morning, and looked upon them, and, behold, they were sad.
1180                                                                                                                                                                                                                                                                                                                                                                                                                    And he asked Pharaoh's officers that were with him in the ward of his lord's house, saying, Wherefore look ye so sadly to day?
1181                                                                                                                                                                                                                                                                                                                                                                    And they said unto him, We have dreamed a dream, and there is no interpreter of it. And Joseph said unto them, Do not interpretations belong to God? tell me them, I pray you.
1182                                                                                                                                                                                                                                                                                                                                                                                                                                        And the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me;
1183                                                                                                                                                                                                                                                                                                                                                                                             And in the vine were three branches: and it was as though it budded, and her blossoms shot forth; and the clusters thereof brought forth ripe grapes:
1184                                                                                                                                                                                                                                                                                                                                                                                                             And Pharaoh's cup was in my hand: and I took the grapes, and pressed them into Pharaoh's cup, and I gave the cup into Pharaoh's hand.
1185                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joseph said unto him, This is the interpretation of it: The three branches are three days:
1186                                                                                                                                                                                                                                                                                                                                                   Yet within three days shall Pharaoh lift up thine head, and restore thee unto thy place: and thou shalt deliver Pharaoh's cup into his hand, after the former manner when thou wast his butler.
1187                                                                                                                                                                                                                                                                                                                                                                                    But think on me when it shall be well with thee, and show kindness, I pray thee, unto me, and make mention of me unto Pharaoh, and bring me out of this house:
1188                                                                                                                                                                                                                                                                                                                                                                                                          For indeed I was stolen away out of the land of the Hebrews: and here also have I done nothing that they should put me into the dungeon.
1189                                                                                                                                                                                                                                                                                                                                                                                        When the chief baker saw that the interpretation was good, he said unto Joseph, I also was in my dream, and, behold, I had three white baskets on my head:
1190                                                                                                                                                                                                                                                                                                                                                                                                          And in the uppermost basket there was of all manner of bakemeats for Pharaoh; and the birds did eat them out of the basket upon my head.
1191                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joseph answered and said, This is the interpretation thereof: The three baskets are three days:
1192                                                                                                                                                                                                                                                                                                                                                                                               Yet within three days shall Pharaoh lift up thy head from off thee, and shall hang thee on a tree; and the birds shall eat thy flesh from off thee.
1193                                                                                                                                                                                                                                                                                                                                             And it came to pass the third day, which was Pharaoh's birthday, that he made a feast unto all his servants: and he lifted up the head of the chief butler and of the chief baker among his servants.
1194                                                                                                                                                                                                                                                                                                                                                                                                                                              And he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh's hand:
1195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But he hanged the chief baker: as Joseph had interpreted to them.
1196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet did not the chief butler remember Joseph, but forgat him.
1197                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river.
1198                                                                                                                                                                                                                                                                                                                                                                                                                                     And, behold, there came up out of the river seven well favored kine and fatfleshed; and they fed in a meadow.
1199                                                                                                                                                                                                                                                                                                                                                                                          And, behold, seven other kine came up after them out of the river, ill favored and leanfleshed; and stood by the other kine upon the brink of the river.
1200                                                                                                                                                                                                                                                                                                                                                                                                                                        And the ill favored and leanfleshed kine did eat up the seven well favored and fat kine. So Pharaoh awoke.
1201                                                                                                                                                                                                                                                                                                                                                                                                                                  And he slept and dreamed the second time: and, behold, seven ears of corn came up upon one stalk, rank and good.
1202                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And, behold, seven thin ears and blasted with the east wind sprung up after them.
1203                                                                                                                                                                                                                                                                                                                                                                                                                                    And the seven thin ears devoured the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream.
1204                                                                                                                                                                                                                                                                                                 And it came to pass in the morning that his spirit was troubled; and he sent and called for all the magicians of Egypt, and all the wise men thereof: and Pharaoh told them his dream; but there was none that could interpret them unto Pharaoh.
1205                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then spake the chief butler unto Pharaoh, saying, I do remember my faults this day:
1206                                                                                                                                                                                                                                                                                                                                                                                                                         Pharaoh was wroth with his servants, and put me in ward in the captain of the guard's house, both me and the chief baker:
1207                                                                                                                                                                                                                                                                                                                                                                                                                                  And we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream.
1208                                                                                                                                                                                                                                                                                                                                               And there was there with us a young man, an Hebrew, servant to the captain of the guard; and we told him, and he interpreted to us our dreams; to each man according to his dream he did interpret.
1209                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged.
1210                                                                                                                                                                                                                                                                                                                                                                                   Then Pharaoh sent and called Joseph, and they brought him hastily out of the dungeon: and he shaved himself, and changed his raiment, and came in unto Pharaoh.
1211                                                                                                                                                                                                                                                                                                                                                                  And Pharaoh said unto Joseph, I have dreamed a dream, and there is none that can interpret it: and I have heard say of thee, that thou canst understand a dream to interpret it.
1212                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Joseph answered Pharaoh, saying, It is not in me: God shall give Pharaoh an answer of peace.
1213                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Pharaoh said unto Joseph, In my dream, behold, I stood upon the bank of the river:
1214                                                                                                                                                                                                                                                                                                                                                                                                                                    And, behold, there came up out of the river seven kine, fatfleshed and well favored; and they fed in a meadow:
1215                                                                                                                                                                                                                                                                                                                                                                                            And, behold, seven other kine came up after them, poor and very ill favored and leanfleshed, such as I never saw in all the land of Egypt for badness:
1216                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the lean and the ill favored kine did eat up the first seven fat kine:
1217                                                                                                                                                                                                                                                                                                                                                                                                And when they had eaten them up, it could not be known that they had eaten them; but they were still ill favored, as at the beginning. So I awoke.
1218                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I saw in my dream, and, behold, seven ears came up in one stalk, full and good:
1219                                                                                                                                                                                                                                                                                                                                                                                                                                                    And, behold, seven ears, withered, thin, and blasted with the east wind, sprung up after them:
1220                                                                                                                                                                                                                                                                                                                                                                                                               And the thin ears devoured the seven good ears: and I told this unto the magicians; but there was none that could declare it to me.
1221                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph said unto Pharaoh, The dream of Pharaoh is one: God hath showed Pharaoh what he is about to do.
1222                                                                                                                                                                                                                                                                                                                                                                                                                                                   The seven good kine are seven years; and the seven good ears are seven years: the dream is one.
1223                                                                                                                                                                                                                                                                                                                                                                              And the seven thin and ill favored kine that came up after them are seven years; and the seven empty ears blasted with the east wind shall be seven years of famine.
1224                                                                                                                                                                                                                                                                                                                                                                                                                                              This is the thing which I have spoken unto Pharaoh: What God is about to do he showeth unto Pharaoh.
1225                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Behold, there come seven years of great plenty throughout all the land of Egypt:
1226                                                                                                                                                                                                                                                                                                                                                                                        And there shall arise after them seven years of famine; and all the plenty shall be forgotten in the land of Egypt; and the famine shall consume the land;
1227                                                                                                                                                                                                                                                                                                                                                                                                                                  And the plenty shall not be known in the land by reason of that famine following; for it shall be very grievous.
1228                                                                                                                                                                                                                                                                                                                                                                                                      And for that the dream was doubled unto Pharaoh twice; it is because the thing is established by God, and God will shortly bring it to pass.
1229                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt.
1230                                                                                                                                                                                                                                                                                                                                                                                                    Let Pharaoh do this, and let him appoint officers over the land, and take up the fifth part of the land of Egypt in the seven plenteous years.
1231                                                                                                                                                                                                                                                                                                                                                                                                  And let them gather all the food of those good years that come, and lay up corn under the hand of Pharaoh, and let them keep food in the cities.
1232                                                                                                                                                                                                                                                                                                                                                                                 And that food shall be for store to the land against the seven years of famine, which shall be in the land of Egypt; that the land perish not through the famine.
1233                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the thing was good in the eyes of Pharaoh, and in the eyes of all his servants.
1234                                                                                                                                                                                                                                                                                                                                                                                                                                        And Pharaoh said unto his servants, Can we find such a one as this is, a man in whom the Spirit of God is?
1235                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh said unto Joseph, Forasmuch as God hath showed thee all this, there is none so discreet and wise as thou art:
1236                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt be over my house, and according unto thy word shall all my people be ruled: only in the throne will I be greater than thou.
1237                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt.
1238                                                                                                                                                                                                                                                                                                                                                                                       And Pharaoh took off his ring from his hand, and put it upon Joseph's hand, and arrayed him in vestures of fine linen, and put a gold chain about his neck;
1239                                                                                                                                                                                                                                                                                                                                                                                            And he made him to ride in the second chariot which he had; and they cried before him, Bow the knee: and he made him ruler over all the land of Egypt.
1240                                                                                                                                                                                                                                                                                                                                                                                                                      And Pharaoh said unto Joseph, I am Pharaoh, and without thee shall no man lift up his hand or foot in all the land of Egypt.
1241                                                                                                                                                                                                                                                                                                                                                                        And Pharaoh called Joseph's name Zaphnathpaaneah; and he gave him to wife Asenath the daughter of Potipherah priest of On. And Joseph went out over all the land of Egypt.
1242                                                                                                                                                                                                                                                                                                                                                                          And Joseph was thirty years old when he stood before Pharaoh king of Egypt. And Joseph went out from the presence of Pharaoh, and went throughout all the land of Egypt.
1243                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And in the seven plenteous years the earth brought forth by handfuls.
1244                                                                                                                                                                                                                                                                                                                                         And he gathered up all the food of the seven years, which were in the land of Egypt, and laid up the food in the cities: the food of the field, which was round about every city, laid he up in the same.
1245                                                                                                                                                                                                                                                                                                                                                                                                                                   And Joseph gathered corn as the sand of the sea, very much, until he left numbering; for it was without number.
1246                                                                                                                                                                                                                                                                                                                                                                                                          And unto Joseph were born two sons before the years of famine came, which Asenath the daughter of Potipherah priest of On bare unto him.
1247                                                                                                                                                                                                                                                                                                                                                                                                               And Joseph called the name of the firstborn Manasseh: For God, said he, hath made me forget all my toil, and all my father's house.
1248                                                                                                                                                                                                                                                                                                                                                                                                                                 And the name of the second called he Ephraim: For God hath caused me to be fruitful in the land of my affliction.
1249                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the seven years of plenteousness, that was in the land of Egypt, were ended.
1250                                                                                                                                                                                                                                                                                                                                                                                         And the seven years of dearth began to come, according as Joseph had said: and the dearth was in all lands; but in all the land of Egypt there was bread.
1251                                                                                                                                                                                                                                                                                                                                                                            And when all the land of Egypt was famished, the people cried to Pharaoh for bread: and Pharaoh said unto all the Egyptians, Go unto Joseph; what he saith to you, do.
1252                                                                                                                                                                                                                                                                                                                                                                            And the famine was over all the face of the earth: and Joseph opened all the storehouses, and sold unto the Egyptians; and the famine waxed sore in the land of Egypt.
1253                                                                                                                                                                                                                                                                                                                                                                                                                                    And all countries came into Egypt to Joseph for to buy corn; because that the famine was so sore in all lands.
1254                                                                                                                                                                                                                                                                                                                                                                                                                                       Now when Jacob saw that there was corn in Egypt, Jacob said unto his sons, Why do ye look one upon another?
1255                                                                                                                                                                                                                                                                                                                                                                                                   And he said, Behold, I have heard that there is corn in Egypt: get you down thither, and buy for us from thence; that we may live, and not die.
1256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joseph's ten brethren went down to buy corn in Egypt.
1257                                                                                                                                                                                                                                                                                                                                                                                                                             But Benjamin, Joseph's brother, Jacob sent not with his brethren; for he said, Lest peradventure mischief befall him.
1258                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Israel came to buy corn among those that came: for the famine was in the land of Canaan.
1259                                                                                                                                                                                                                                                                                                                                                 And Joseph was the governor over the land, and he it was that sold to all the people of the land: and Joseph's brethren came, and bowed down themselves before him with their faces to the earth.
1260                                                                                                                                                                                                                                                                                                                                        And Joseph saw his brethren, and he knew them, but made himself strange unto them, and spake roughly unto them; and he said unto them, Whence come ye? And they said, From the land of Canaan to buy food.
1261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joseph knew his brethren, but they knew not him.
1262                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph remembered the dreams which he dreamed of them, and said unto them, Ye are spies; to see the nakedness of the land ye are come.
1263                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto him, Nay, my lord, but to buy food are thy servants come.
1264                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We are all one man's sons; we are true men, thy servants are no spies.
1265                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto them, Nay, but to see the nakedness of the land ye are come.
1266                                                                                                                                                                                                                                                                                                                                                                                And they said, Thy servants are twelve brethren, the sons of one man in the land of Canaan; and, behold, the youngest is this day with our father, and one is not.
1267                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joseph said unto them, That is it that I spake unto you, saying, Ye are spies:
1268                                                                                                                                                                                                                                                                                                                                                                                                                          Hereby ye shall be proved: By the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither.
1269                                                                                                                                                                                                                                                                                                                                            Send one of you, and let him fetch your brother, and ye shall be kept in prison, that your words may be proved, whether there be any truth in you: or else by the life of Pharaoh surely ye are spies.
1270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he put them all together into ward three days.
1271                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joseph said unto them the third day, This do, and live; for I fear God:
1272                                                                                                                                                                                                                                                                                                                                                                                                                If ye be true men, let one of your brethren be bound in the house of your prison: go ye, carry corn for the famine of your houses:
1273                                                                                                                                                                                                                                                                                                                                                                                                                                  But bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so.
1274                                                                                                                                                                                                                                                                                                                                           And they said one to another, We are verily guilty concerning our brother, in that we saw the anguish of his soul, when he besought us, and we would not hear; therefore is this distress come upon us.
1275                                                                                                                                                                                                                                                                                                                                                                               And Reuben answered them, saying, Spake I not unto you, saying, Do not sin against the child; and ye would not hear? therefore, behold, also his blood is required.
1276                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they knew not that Joseph understood them; for he spake unto them by an interpreter.
1277                                                                                                                                                                                                                                                                                                                                                                                  And he turned himself about from them, and wept; and returned to them again, and communed with them, and took from them Simeon, and bound him before their eyes.
1278                                                                                                                                                                                                                                                                                                                                                                           Then Joseph commanded to fill their sacks with corn, and to restore every man's money into his sack, and to give them provision for the way: and thus did he unto them.
1279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they laded their asses with the corn, and departed thence.
1280                                                                                                                                                                                                                                                                                                                                                                                                            And as one of them opened his sack to give his ass provender in the inn, he espied his money; for, behold, it was in his sack's mouth.
1281                                                                                                                                                                                                                                                                                                                                           And he said unto his brethren, My money is restored; and, lo, it is even in my sack: and their heart failed them, and they were afraid, saying one to another, What is this that God hath done unto us?
1282                                                                                                                                                                                                                                                                                                                                                                                                                                    And they came unto Jacob their father unto the land of Canaan, and told him all that befell unto them; saying,
1283                                                                                                                                                                                                                                                                                                                                                                                                                                                  The man, who is the lord of the land, spake roughly to us, and took us for spies of the country.
1284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And we said unto him, We are true men; we are no spies:
1285                                                                                                                                                                                                                                                                                                                                                                                                                        We be twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan.
1286                                                                                                                                                                                                                                                                                                                                              And the man, the lord of the country, said unto us, Hereby shall I know that ye are true men; leave one of your brethren here with me, and take food for the famine of your households, and be gone:
1287                                                                                                                                                                                                                                                                                                                                                                  And bring your youngest brother unto me: then shall I know that ye are no spies, but that ye are true men: so will I deliver you your brother, and ye shall traffic in the land.
1288                                                                                                                                                                                                                                                                                                                                                       And it came to pass as they emptied their sacks, that, behold, every man's bundle of money was in his sack: and when both they and their father saw the bundles of money, they were afraid.
1289                                                                                                                                                                                                                                                                                                                                                                     And Jacob their father said unto them, Me have ye bereaved of my children: Joseph is not, and Simeon is not, and ye will take Benjamin away: all these things are against me.
1290                                                                                                                                                                                                                                                                                                                                                                                             And Reuben spake unto his father, saying, Slay my two sons, if I bring him not to thee: deliver him into my hand, and I will bring him to thee again.
1291                                                                                                                                                                                                                                                                                                                             And he said, My son shall not go down with you; for his brother is dead, and he is left alone: if mischief befall him by the way in the which ye go, then shall ye bring down my gray hairs with sorrow to the grave.
1292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the famine was sore in the land.
1293                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when they had eaten up the corn which they had brought out of Egypt, their father said unto them, Go again, buy us a little food.
1294                                                                                                                                                                                                                                                                                                                                                                                                        And Judah spake unto him, saying, The man did solemnly protest unto us, saying, Ye shall not see my face, except your brother be with you.
1295                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If thou wilt send our brother with us, we will go down and buy thee food:
1296                                                                                                                                                                                                                                                                                                                                                                                                          But if thou wilt not send him, we will not go down: for the man said unto us, Ye shall not see my face, except your brother be with you.
1297                                                                                                                                                                                                                                                                                                                                                                                                                                              And Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother?
1298                                                                                                                                                                                                                                                                                  And they said, The man asked us straitly of our state, and of our kindred, saying, Is your father yet alive? have ye another brother? and we told him according to the tenor of these words: could we certainly know that he would say, Bring your brother down?
1299                                                                                                                                                                                                                                                                                                                                                                                And Judah said unto Israel his father, Send the lad with me, and we will arise and go; that we may live, and not die, both we, and thou, and also our little ones.
1300                                                                                                                                                                                                                                                                                                                                                                                          I will be surety for him; of my hand shalt thou require him: if I bring him not unto thee, and set him before thee, then let me bear the blame for ever:
1301                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For except we had lingered, surely now we had returned this second time.
1302                                                                                                                                                                                                                                                                                                            And their father Israel said unto them, If it must be so now, do this; take of the best fruits in the land in your vessels, and carry down the man a present, a little balm, and a little honey, spices, and myrrh, nuts, and almonds:
1303                                                                                                                                                                                                                                                                                                                                                                               And take double money in your hand; and the money that was brought again in the mouth of your sacks, carry it again in your hand; peradventure it was an oversight:
1304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Take also your brother, and arise, go again unto the man:
1305                                                                                                                                                                                                                                                                                                                                                                                           And God Almighty give you mercy before the man, that he may send away your other brother, and Benjamin. If I be bereaved of my children, I am bereaved.
1306                                                                                                                                                                                                                                                                                                                                                                                               And the men took that present, and they took double money in their hand and Benjamin; and rose up, and went down to Egypt, and stood before Joseph.
1307                                                                                                                                                                                                                                                                                                                                                                              And when Joseph saw Benjamin with them, he said to the ruler of his house, Bring these men home, and slay, and make ready; for these men shall dine with me at noon.
1308                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the man did as Joseph bade; and the man brought the men into Joseph's house.
1309                                                                                                                                                                                                                                                                   And the men were afraid, because they were brought into Joseph's house; and they said, Because of the money that was returned in our sacks at the first time are we brought in; that he may seek occasion against us, and fall upon us, and take us for bondmen, and our asses.
1310                                                                                                                                                                                                                                                                                                                                                                                                                                         And they came near to the steward of Joseph's house, and they communed with him at the door of the house,
1311                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And said, O sir, we came indeed down at the first time to buy food:
1312                                                                                                                                                                                                                                                                                                                                          And it came to pass, when we came to the inn, that we opened our sacks, and, behold, every man's money was in the mouth of his sack, our money in full weight: and we have brought it again in our hand.
1313                                                                                                                                                                                                                                                                                                                                                                                                                                     And other money have we brought down in our hands to buy food: we cannot tell who put our money in our sacks.
1314                                                                                                                                                                                                                                                                                                                                                                       And he said, Peace be to you, fear not: your God, and the God of your father, hath given you treasure in your sacks: I had your money. And he brought Simeon out unto them.
1315                                                                                                                                                                                                                                                                                                                                                                                                              And the man brought the men into Joseph's house, and gave them water, and they washed their feet; and he gave their asses provender.
1316                                                                                                                                                                                                                                                                                                                                                                                                                                     And they made ready the present against Joseph came at noon: for they heard that they should eat bread there.
1317                                                                                                                                                                                                                                                                                                                                                                                                         And when Joseph came home, they brought him the present which was in their hand into the house, and bowed themselves to him to the earth.
1318                                                                                                                                                                                                                                                                                                                                                                                                                                 And he asked them of their welfare, and said, Is your father well, the old man of whom ye spake? Is he yet alive?
1319                                                                                                                                                                                                                                                                                                                                                                                                                And they answered, Thy servant our father is in good health, he is yet alive. And they bowed down their heads, and made obeisance.
1320                                                                                                                                                                                                                                                                                                                                                      And he lifted up his eyes, and saw his brother Benjamin, his mother's son, and said, Is this your younger brother, of whom ye spake unto me? And he said, God be gracious unto thee, my son.
1321                                                                                                                                                                                                                                                                                                                                                                                                   And Joseph made haste; for his bowels did yearn upon his brother: and he sought where to weep; and he entered into his chamber, and wept there.
1322                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he washed his face, and went out, and refrained himself, and said, Set on bread.
1323                                                                                                                                                                                                                                                                                                          And they set on for him by himself, and for them by themselves, and for the Egyptians, which did eat with him, by themselves: because the Egyptians might not eat bread with the Hebrews; for that is an abomination unto the Egyptians.
1324                                                                                                                                                                                                                                                                                                                                                                                                 And they sat before him, the firstborn according to his birthright, and the youngest according to his youth: and the men marveled one at another.
1325                                                                                                                                                                                                                                                                                                                                                                                      And he took and sent messes unto them from before him: but Benjamin's mess was five times so much as any of theirs. And they drank, and were merry with him.
1326                                                                                                                                                                                                                                                                                                                                                                                      And he commanded the steward of his house, saying, Fill the men's sacks with food, as much as they can carry, and put every man's money in his sack's mouth.
1327                                                                                                                                                                                                                                                                                                                                                                                                 And put my cup, the silver cup, in the sack's mouth of the youngest, and his corn money. And he did according to the word that Joseph had spoken.
1328                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As soon as the morning was light, the men were sent away, they and their asses.
1329                                                                                                                                                                                                                                                                                                                                  And when they were gone out of the city, and not yet far off, Joseph said unto his steward, Up, follow after the men; and when thou dost overtake them, say unto them, Wherefore have ye rewarded evil for good?
1330                                                                                                                                                                                                                                                                                                                                                                                                                                          Is not this it in which my lord drinketh, and whereby indeed he divineth? ye have done evil in so doing.
1331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he overtook them, and he spake unto them these same words.
1332                                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto him, Wherefore saith my lord these words? God forbid that thy servants should do according to this thing:
1333                                                                                                                                                                                                                                                                                                                                                                    Behold, the money, which we found in our sacks' mouths, we brought again unto thee out of the land of Canaan: how then should we steal out of thy lord's house silver or gold?
1334                                                                                                                                                                                                                                                                                                                                                                                                                                             With whomsoever of thy servants it be found, both let him die, and we also will be my lord's bondmen.
1335                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Now also let it be according unto your words: he with whom it is found shall be my servant; and ye shall be blameless.
1336                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they speedily took down every man his sack to the ground, and opened every man his sack.
1337                                                                                                                                                                                                                                                                                                                                                                                                                                     And he searched, and began at the eldest, and left at the youngest: and the cup was found in Benjamin's sack.
1338                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then they rent their clothes, and laded every man his ass, and returned to the city.
1339                                                                                                                                                                                                                                                                                                                                                                                                                                  And Judah and his brethren came to Joseph's house; for he was yet there: and they fell before him on the ground.
1340                                                                                                                                                                                                                                                                                                                                                                                                                             And Joseph said unto them, What deed is this that ye have done? wot ye not that such a man as I can certainly divine?
1341                                                                                                                                                                                                                                                                                                        And Judah said, What shall we say unto my lord? what shall we speak? or how shall we clear ourselves? God hath found out the iniquity of thy servants: behold, we are my lord's servants, both we, and he also with whom the cup is found.
1342                                                                                                                                                                                                                                                                                                                                                                            And he said, God forbid that I should do so: but the man in whose hand the cup is found, he shall be my servant; and as for you, get you up in peace unto your father.
1343                                                                                                                                                                                                                                                                                                                                                Then Judah came near unto him, and said, Oh my lord, let thy servant, I pray thee, speak a word in my lord's ears, and let not thine anger burn against thy servant: for thou art even as Pharaoh.
1344                                                                                                                                                                                                                                                                                                                                                                                                                                                                               My lord asked his servants, saying, Have ye a father, or a brother?
1345                                                                                                                                                                                                                                                                                                                                                         And we said unto my lord, We have a father, an old man, and a child of his old age, a little one; and his brother is dead, and he alone is left of his mother, and his father loveth him.
1346                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou saidst unto thy servants, Bring him down unto me, that I may set mine eyes upon him.
1347                                                                                                                                                                                                                                                                                                                                                                                                                               And we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die.
1348                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more.
1349                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass when we came up unto thy servant my father, we told him the words of my lord.
1350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And our father said, Go again, and buy us a little food.
1351                                                                                                                                                                                                                                                                                                                                                                              And we said, We cannot go down: if our youngest brother be with us, then will we go down: for we may not see the man's face, except our youngest brother be with us.
1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thy servant my father said unto us, Ye know that my wife bare me two sons:
1353                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the one went out from me, and I said, Surely he is torn in pieces; and I saw him not since:
1354                                                                                                                                                                                                                                                                                                                                                                                                                            And if ye take this also from me, and mischief befall him, ye shall bring down my gray hairs with sorrow to the grave.
1355                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore when I come to thy servant my father, and the lad be not with us; seeing that his life is bound up in the lad's life;
1356                                                                                                                                                                                                                                                                                                                                                          It shall come to pass, when he seeth that the lad is not with us, that he will die: and thy servants shall bring down the gray hairs of thy servant our father with sorrow to the grave.
1357                                                                                                                                                                                                                                                                                                                                                                                                For thy servant became surety for the lad unto my father, saying, If I bring him not unto thee, then I shall bear the blame to my father for ever.
1358                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore, I pray thee, let thy servant abide instead of the lad a bondman to my lord; and let the lad go up with his brethren.
1359                                                                                                                                                                                                                                                                                                                                                                                                                    For how shall I go up to my father, and the lad be not with me? lest peradventure I see the evil that shall come on my father.
1360                                                                                                                                                                                                                                                                                                                                     Then Joseph could not refrain himself before all them that stood by him; and he cried, Cause every man to go out from me. And there stood no man with him, while Joseph made himself known unto his brethren.
1361                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he wept aloud: and the Egyptians and the house of Pharaoh heard.
1362                                                                                                                                                                                                                                                                                                                                                                                           And Joseph said unto his brethren, I am Joseph; doth my father yet live? And his brethren could not answer him; for they were troubled at his presence.
1363                                                                                                                                                                                                                                                                                                                                                                                               And Joseph said unto his brethren, Come near to me, I pray you. And they came near. And he said, I am Joseph your brother, whom ye sold into Egypt.
1364                                                                                                                                                                                                                                                                                                                                                                                                                 Now therefore be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life.
1365                                                                                                                                                                                                                                                                                                                                                                                                       For these two years hath the famine been in the land: and yet there are five years, in the which there shall neither be earing nor harvest.
1366                                                                                                                                                                                                                                                                                                                                                                                                                               And God sent me before you to preserve you a posterity in the earth, and to save your lives by a great deliverance.
1367                                                                                                                                                                                                                                                                                                                                                                             So now it was not you that sent me hither, but God: and he hath made me a father to Pharaoh, and lord of all his house, and a ruler throughout all the land of Egypt.
1368                                                                                                                                                                                                                                                                                                                                                                                                  Haste ye, and go up to my father, and say unto him, Thus saith thy son Joseph, God hath made me lord of all Egypt: come down unto me, tarry not:
1369                                                                                                                                                                                                                                                                                                                                                           And thou shalt dwell in the land of Goshen, and thou shalt be near unto me, thou, and thy children, and thy children's children, and thy flocks, and thy herds, and all that thou hast:
1370                                                                                                                                                                                                                                                                                                                                                                                                     And there will I nourish thee; for yet there are five years of famine; lest thou, and thy household, and all that thou hast, come to poverty.
1371                                                                                                                                                                                                                                                                                                                                                                                                                                      And, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you.
1372                                                                                                                                                                                                                                                                                                                                                                                                           And ye shall tell my father of all my glory in Egypt, and of all that ye have seen; and ye shall haste and bring down my father hither.
1373                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he fell upon his brother Benjamin's neck, and wept; and Benjamin wept upon his neck.
1374                                                                                                                                                                                                                                                                                                                                                                                                                                             Moreover he kissed all his brethren, and wept upon them: and after that his brethren talked with him.
1375                                                                                                                                                                                                                                                                                                                                                                                                             And the fame thereof was heard in Pharaoh's house, saying, Joseph's brethren are come: and it pleased Pharaoh well, and his servants.
1376                                                                                                                                                                                                                                                                                                                                                                                                                       And Pharaoh said unto Joseph, Say unto thy brethren, This do ye; lade your beasts, and go, get you unto the land of Canaan;
1377                                                                                                                                                                                                                                                                                                                                                                                              And take your father and your households, and come unto me: and I will give you the good of the land of Egypt, and ye shall eat the fat of the land.
1378                                                                                                                                                                                                                                                                                                                                                                                           Now thou art commanded, this do ye; take you wagons out of the land of Egypt for your little ones, and for your wives, and bring your father, and come.
1379                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Also regard not your stuff; for the good of all the land of Egypt is yours.
1380                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way.
1381                                                                                                                                                                                                                                                                                                                                                                                                          To all of them he gave each man changes of raiment; but to Benjamin he gave three hundred pieces of silver, and five changes of raiment.
1382                                                                                                                                                                                                                                                                                                                                                                       And to his father he sent after this manner; ten asses laden with the good things of Egypt, and ten she asses laden with corn and bread and meat for his father by the way.
1383                                                                                                                                                                                                                                                                                                                                                                                                                                      So he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way.
1384                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they went up out of Egypt, and came into the land of Canaan unto Jacob their father,
1385                                                                                                                                                                                                                                                                                                                                                                                                    And told him, saying, Joseph is yet alive, and he is governor over all the land of Egypt. And Jacob's heart fainted, for he believed them not.
1386                                                                                                                                                                                                                                                                                                                                                                  And they told him all the words of Joseph, which he had said unto them: and when he saw the wagons which Joseph had sent to carry him, the spirit of Jacob their father revived:
1387                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Israel said, It is enough; Joseph my son is yet alive: I will go and see him before I die.
1388                                                                                                                                                                                                                                                                                                                                                                                                                 And Israel took his journey with all that he had, and came to Beersheba, and offered sacrifices unto the God of his father Isaac.
1389                                                                                                                                                                                                                                                                                                                                                                                                                                            And God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I.
1390                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, I am God, the God of thy father: fear not to go down into Egypt; for I will there make of thee a great nation:
1391                                                                                                                                                                                                                                                                                                                                                                                                                   I will go down with thee into Egypt; and I will also surely bring thee up again: and Joseph shall put his hand upon thine eyes.
1392                                                                                                                                                                                                                                                                                                                                                                   And Jacob rose up from Beersheba: and the sons of Israel carried Jacob their father, and their little ones, and their wives, in the wagons which Pharaoh had sent to carry him.
1393                                                                                                                                                                                                                                                                                                                                                                                                  And they took their cattle, and their goods, which they had gotten in the land of Canaan, and came into Egypt, Jacob, and all his seed with him:
1394                                                                                                                                                                                                                                                                                                                                                                                                                   His sons, and his sons' sons with him, his daughters, and his sons' daughters, and all his seed brought he with him into Egypt.
1395                                                                                                                                                                                                                                                                                                                                                                                                                          And these are the names of the children of Israel, which came into Egypt, Jacob and his sons: Reuben, Jacob's firstborn.
1396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Reuben; Hanoch, and Phallu, and Hezron, and Carmi.
1397                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman.
1398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Levi; Gershon, Kohath, and Merari.
1399                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Judah; Er, and Onan, and Shelah, and Pharez, and Zarah: but Er and Onan died in the land of Canaan. And the sons of Pharez were Hezron and Hamul.
1400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Issachar; Tola, and Phuvah, and Job, and Shimron.
1401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Zebulun; Sered, and Elon, and Jahleel.
1402                                                                                                                                                                                                                                                                                                                                                                                    These be the sons of Leah, which she bare unto Jacob in Padanaram, with his daughter Dinah: all the souls of his sons and his daughters were thirty and three.
1403                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli.
1404                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Asher; Jimnah, and Ishuah, and Isui, and Beriah, and Serah their sister: and the sons of Beriah; Heber, and Malchiel.
1405                                                                                                                                                                                                                                                                                                                                                                                                                            These are the sons of Zilpah, whom Laban gave to Leah his daughter, and these she bare unto Jacob, even sixteen souls.
1406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sons of Rachel Jacob's wife; Joseph, and Benjamin.
1407                                                                                                                                                                                                                                                                                                                                                                                                         And unto Joseph in the land of Egypt were born Manasseh and Ephraim, which Asenath the daughter of Potipherah priest of On bare unto him.
1408                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Benjamin were Belah, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard.
1409                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are the sons of Rachel, which were born to Jacob: all the souls were fourteen.
1410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Dan; Hushim.
1411                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Naphtali; Jahzeel, and Guni, and Jezer, and Shillem.
1412                                                                                                                                                                                                                                                                                                                                                                                                                 These are the sons of Bilhah, which Laban gave unto Rachel his daughter, and she bare these unto Jacob: all the souls were seven.
1413                                                                                                                                                                                                                                                                                                                                                                                                   All the souls that came with Jacob into Egypt, which came out of his loins, besides Jacob's sons' wives, all the souls were threescore and six;
1414                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Joseph, which were born him in Egypt, were two souls: all the souls of the house of Jacob, which came into Egypt, were threescore and ten.
1415                                                                                                                                                                                                                                                                                                                                                                                                                                  And he sent Judah before him unto Joseph, to direct his face unto Goshen; and they came into the land of Goshen.
1416                                                                                                                                                                                                                                                                                                                                                                  And Joseph made ready his chariot, and went up to meet Israel his father, to Goshen, and presented himself unto him; and he fell on his neck, and wept on his neck a good while.
1417                                                                                                                                                                                                                                                                                                                                                                                                                                              And Israel said unto Joseph, Now let me die, since I have seen thy face, because thou art yet alive.
1418                                                                                                                                                                                                                                                                                                                                         And Joseph said unto his brethren, and unto his father's house, I will go up, and show Pharaoh, and say unto him, My brethren, and my father's house, which were in the land of Canaan, are come unto me;
1419                                                                                                                                                                                                                                                                                                                                                                                                 And the men are shepherds, for their trade hath been to feed cattle; and they have brought their flocks, and their herds, and all that they have.
1420                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation?
1421                                                                                                                                                                                                                                                                                                                     That ye shall say, Thy servants' trade hath been about cattle from our youth even until now, both we, and also our fathers: that ye may dwell in the land of Goshen; for every shepherd is an abomination unto the Egyptians.
1422                                                                                                                                                                                                                                                                                                                               Then Joseph came and told Pharaoh, and said, My father and my brethren, and their flocks, and their herds, and all that they have, are come out of the land of Canaan; and, behold, they are in the land of Goshen.
1423                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he took some of his brethren, even five men, and presented them unto Pharaoh.
1424                                                                                                                                                                                                                                                                                                                                                                                               And Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and also our fathers.
1425                                                                                                                                                                                                                                                                                              They said moreover unto Pharaoh, For to sojourn in the land are we come; for thy servants have no pasture for their flocks; for the famine is sore in the land of Canaan: now therefore, we pray thee, let thy servants dwell in the land of Goshen.
1426                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Pharaoh spake unto Joseph, saying, Thy father and thy brethren are come unto thee:
1427                                                                                                                                                                                                                                                                                                                  The land of Egypt is before thee; in the best of the land make thy father and brethren to dwell; in the land of Goshen let them dwell: and if thou knowest any men of activity among them, then make them rulers over my cattle.
1428                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh.
1429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Pharaoh said unto Jacob, How old art thou?
1430                                                                                                                                                                                                                                                                         And Jacob said unto Pharaoh, The days of the years of my pilgrimage are an hundred and thirty years: few and evil have the days of the years of my life been, and have not attained unto the days of the years of the life of my fathers in the days of their pilgrimage.
1431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jacob blessed Pharaoh, and went out from before Pharaoh.
1432                                                                                                                                                                                                                                                                                                                                                                        And Joseph placed his father and his brethren, and gave them a possession in the land of Egypt, in the best of the land, in the land of Rameses, as Pharaoh had commanded.
1433                                                                                                                                                                                                                                                                                                                                                                                                                       And Joseph nourished his father, and his brethren, and all his father's household, with bread, according to their families.
1434                                                                                                                                                                                                                                                                                                                                                                                       And there was no bread in all the land; for the famine was very sore, so that the land of Egypt and all the land of Canaan fainted by reason of the famine.
1435                                                                                                                                                                                                                                                                                                                                                           And Joseph gathered up all the money that was found in the land of Egypt, and in the land of Canaan, for the corn which they bought: and Joseph brought the money into Pharaoh's house.
1436                                                                                                                                                                                                                                                                                                                                                 And when money failed in the land of Egypt, and in the land of Canaan, all the Egyptians came unto Joseph, and said, Give us bread: for why should we die in thy presence? for the money faileth.
1437                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joseph said, Give your cattle; and I will give you for your cattle, if money fail.
1438                                                                                                                                                                                                                                                                                                              And they brought their cattle unto Joseph: and Joseph gave them bread in exchange for horses, and for the flocks, and for the cattle of the herds, and for the asses: and he fed them with bread for all their cattle for that year.
1439                                                                                                                                                                                                                                                                            When that year was ended, they came unto him the second year, and said unto him, We will not hide it from my lord, how that our money is spent; my lord also hath our herds of cattle; there is not ought left in the sight of my lord, but our bodies, and our lands:
1440                                                                                                                                                                                                                                                                                                                 Wherefore shall we die before thine eyes, both we and our land? buy us and our land for bread, and we and our land will be servants unto Pharaoh: and give us seed, that we may live, and not die, that the land be not desolate.
1441                                                                                                                                                                                                                                                                                                                                                                            And Joseph bought all the land of Egypt for Pharaoh; for the Egyptians sold every man his field, because the famine prevailed over them: so the land became Pharaoh's.
1442                                                                                                                                                                                                                                                                                                                                                                                                                              And as for the people, he removed them to cities from one end of the borders of Egypt even to the other end thereof.
1443                                                                                                                                                                                                                                                                                                                                                       Only the land of the priests bought he not; for the priests had a portion assigned them of Pharaoh, and did eat their portion which Pharaoh gave them: wherefore they sold not their lands.
1444                                                                                                                                                                                                                                                                                                                                                                                              Then Joseph said unto the people, Behold, I have bought you this day and your land for Pharaoh: lo, here is seed for you, and ye shall sow the land.
1445                                                                                                                                                                                                                                                                                                        And it shall come to pass in the increase, that ye shall give the fifth part unto Pharaoh, and four parts shall be your own, for seed of the field, and for your food, and for them of your households, and for food for your little ones.
1446                                                                                                                                                                                                                                                                                                                                                                                                                           And they said, Thou hast saved our lives: let us find grace in the sight of my lord, and we will be Pharaoh's servants.
1447                                                                                                                                                                                                                                                                                                                                                                          And Joseph made it a law over the land of Egypt unto this day, that Pharaoh should have the fifth part, except the land of the priests only, which became not Pharaoh's.
1448                                                                                                                                                                                                                                                                                                                                                                                                          And Israel dwelt in the land of Egypt, in the country of Goshen; and they had possessions therein, and grew, and multiplied exceedingly.
1449                                                                                                                                                                                                                                                                                                                                                                                                                             And Jacob lived in the land of Egypt seventeen years: so the whole age of Jacob was an hundred forty and seven years.
1450                                                                                                                                                                                                                                                                                           And the time drew nigh that Israel must die: and he called his son Joseph, and said unto him, If now I have found grace in thy sight, put, I pray thee, thy hand under my thigh, and deal kindly and truly with me; bury me not, I pray thee, in Egypt:
1451                                                                                                                                                                                                                                                                                                                                                                                                But I will lie with my fathers, and thou shalt carry me out of Egypt, and bury me in their buryingplace. And he said, I will do as thou hast said.
1452                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Swear unto me. And he sware unto him. And Israel bowed himself upon the bed's head.
1453                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass after these things, that one told Joseph, Behold, thy father is sick: and he took with him his two sons, Manasseh and Ephraim.
1454                                                                                                                                                                                                                                                                                                                                                                                                                     And one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed.
1455                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me,
1456                                                                                                                                                                                                                                                                                                                                              And said unto me, Behold, I will make thee fruitful, and multiply thee, and I will make of thee a multitude of people; and will give this land to thy seed after thee for an everlasting possession.
1457                                                                                                                                                                                                                                                                                                                                                                And now thy two sons, Ephraim and Manasseh, which were born unto thee in the land of Egypt before I came unto thee into Egypt, are mine; as Reuben and Simeon, they shall be mine.
1458                                                                                                                                                                                                                                                                                                                                                                                                        And thy issue, which thou begettest after them, shall be thine, and shall be called after the name of their brethren in their inheritance.
1459                                                                                                                                                                                                                                                                                                                         And as for me, when I came from Padan, Rachel died by me in the land of Canaan in the way, when yet there was but a little way to come unto Ephrath: and I buried her there in the way of Ephrath; the same is Bethlehem.
1460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Israel beheld Joseph's sons, and said, Who are these?
1461                                                                                                                                                                                                                                                                                                                                                                                    And Joseph said unto his father, They are my sons, whom God hath given me in this place. And he said, Bring them, I pray thee, unto me, and I will bless them.
1462                                                                                                                                                                                                                                                                                                                                                                                                      Now the eyes of Israel were dim for age, so that he could not see. And he brought them near unto him; and he kissed them, and embraced them.
1463                                                                                                                                                                                                                                                                                                                                                                                                                                        And Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath showed me also thy seed.
1464                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joseph brought them out from between his knees, and he bowed himself with his face to the earth.
1465                                                                                                                                                                                                                                                                                                                                                                         And Joseph took them both, Ephraim in his right hand toward Israel's left hand, and Manasseh in his left hand toward Israel's right hand, and brought them near unto him.
1466                                                                                                                                                                                                                                                                                                                                               And Israel stretched out his right hand, and laid it upon Ephraim's head, who was the younger, and his left hand upon Manasseh's head, guiding his hands wittingly; for Manasseh was the firstborn.
1467                                                                                                                                                                                                                                                                                                                                                                                                     And he blessed Joseph, and said, God, before whom my fathers Abraham and Isaac did walk, the God which fed me all my life long unto this day,
1468                                                                                                                                                                                                                                                                                                                                          The Angel which redeemed me from all evil, bless the lads; and let my name be named on them, and the name of my fathers Abraham and Isaac; and let them grow into a multitude in the midst of the earth.
1469                                                                                                                                                                                                                                                                                                                                                     And when Joseph saw that his father laid his right hand upon the head of Ephraim, it displeased him: and he held up his father's hand, to remove it from Ephraim's head unto Manasseh's head.
1470                                                                                                                                                                                                                                                                                                                                                                                                                                  And Joseph said unto his father, Not so, my father: for this is the firstborn; put thy right hand upon his head.
1471                                                                                                                                                                                                                                                                                                              And his father refused, and said, I know it, my son, I know it: he also shall become a people, and he also shall be great: but truly his younger brother shall be greater than he, and his seed shall become a multitude of nations.
1472                                                                                                                                                                                                                                                                                                                                                                                           And he blessed them that day, saying, In thee shall Israel bless, saying, God make thee as Ephraim and as Manasseh: and he set Ephraim before Manasseh.
1473                                                                                                                                                                                                                                                                                                                                                                                                                         And Israel said unto Joseph, Behold, I die: but God shall be with you, and bring you again unto the land of your fathers.
1474                                                                                                                                                                                                                                                                                                                                                                                                          Moreover I have given to thee one portion above thy brethren, which I took out of the hand of the Amorite with my sword and with my bow.
1475                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob called unto his sons, and said, Gather yourselves together, that I may tell you that which shall befall you in the last days.
1476                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gather yourselves together, and hear, ye sons of Jacob; and hearken unto Israel your father.
1477                                                                                                                                                                                                                                                                                                                                                                                                                Reuben, thou art my firstborn, my might, and the beginning of my strength, the excellency of dignity, and the excellency of power:
1478                                                                                                                                                                                                                                                                                                                                                                                                             Unstable as water, thou shalt not excel; because thou wentest up to thy father's bed; then defiledst thou it: he went up to my couch.
1479                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Simeon and Levi are brethren; instruments of cruelty are in their habitations.
1480                                                                                                                                                                                                                                                                                                                                                              O my soul, come not thou into their secret; unto their assembly, mine honor, be not thou united: for in their anger they slew a man, and in their self-will they digged down a wall.
1481                                                                                                                                                                                                                                                                                                                                                                                                             Cursed be their anger, for it was fierce; and their wrath, for it was cruel: I will divide them in Jacob, and scatter them in Israel.
1482                                                                                                                                                                                                                                                                                                                                                                                              Judah, thou art he whom thy brethren shall praise: thy hand shall be in the neck of thine enemies; thy father's children shall bow down before thee.
1483                                                                                                                                                                                                                                                                                                                                                                                              Judah is a lion's whelp: from the prey, my son, thou art gone up: he stooped down, he couched as a lion, and as an old lion; who shall rouse him up?
1484                                                                                                                                                                                                                                                                                                                                                                                              The sceptre shall not depart from Judah, nor a lawgiver from between his feet, until Shiloh come; and unto him shall the gathering of the people be.
1485                                                                                                                                                                                                                                                                                                                                                                                                  Binding his foal unto the vine, and his ass's colt unto the choice vine; he washed his garments in wine, and his clothes in the blood of grapes:
1486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   His eyes shall be red with wine, and his teeth white with milk.
1487                                                                                                                                                                                                                                                                                                                                                                                                                           Zebulun shall dwell at the haven of the sea; and he shall be for an haven of ships; and his border shall be unto Zidon.
1488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Issachar is a strong ass couching down between two burdens:
1489                                                                                                                                                                                                                                                                                                                                                                                                              And he saw that rest was good, and the land that it was pleasant; and bowed his shoulder to bear, and became a servant unto tribute.
1490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Dan shall judge his people, as one of the tribes of Israel.
1491                                                                                                                                                                                                                                                                                                                                                                                                                      Dan shall be a serpent by the way, an adder in the path, that biteth the horse heels, so that his rider shall fall backward.
1492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I have waited for thy salvation, O LORD.
1493                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Gad, a troop shall overcome him: but he shall overcome at the last.
1494                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Out of Asher his bread shall be fat, and he shall yield royal dainties.
1495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Naphtali is a hind let loose: he giveth goodly words.
1496                                                                                                                                                                                                                                                                                                                                                                                                                                                    Joseph is a fruitful bough, even a fruitful bough by a well; whose branches run over the wall:
1497                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The archers have sorely grieved him, and shot at him, and hated him:
1498                                                                                                                                                                                                                                                                                                                                                                            But his bow abode in strength, and the arms of his hands were made strong by the hands of the mighty God of Jacob; (from thence is the shepherd, the stone of Israel:)
1499                                                                                                                                                                                                                                                                                                                                  Even by the God of thy father, who shall help thee; and by the Almighty, who shall bless thee with blessings of heaven above, blessings of the deep that lieth under, blessings of the breasts, and of the womb:
1500                                                                                                                                                                                                                                                                                                    The blessings of thy father have prevailed above the blessings of my progenitors unto the utmost bound of the everlasting hills: they shall be on the head of Joseph, and on the crown of the head of him that was separate from his brethren.
1501                                                                                                                                                                                                                                                                                                                                                                                                                                  Benjamin shall raven as a wolf: in the morning he shall devour the prey, and at night he shall divide the spoil.
1502                                                                                                                                                                                                                                                                                                                                                                               All these are the twelve tribes of Israel: and this is it that their father spake unto them, and blessed them; every one according to his blessing he blessed them.
1503                                                                                                                                                                                                                                                                                                                                                                                      And he charged them, and said unto them, I am to be gathered unto my people: bury me with my fathers in the cave that is in the field of Ephron the Hittite,
1504                                                                                                                                                                                                                                                                                                                                                        In the cave that is in the field of Machpelah, which is before Mamre, in the land of Canaan, which Abraham bought with the field of Ephron the Hittite for a possession of a buryingplace.
1505                                                                                                                                                                                                                                                                                                                                                                                                                              There they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah.
1506                                                                                                                                                                                                                                                                                                                                                                                                                                                          The purchase of the field and of the cave that is therein was from the children of Heth.
1507                                                                                                                                                                                                                                                                                                                                                                                          And when Jacob had made an end of commanding his sons, he gathered up his feet into the bed, and yielded up the ghost, and was gathered unto his people.
1508                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph fell upon his father's face, and wept upon him, and kissed him.
1509                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel.
1510                                                                                                                                                                                                                                                                                                                                                                                      And forty days were fulfilled for him; for so are fulfilled the days of those which are embalmed: and the Egyptians mourned for him threescore and ten days.
1511                                                                                                                                                                                                                                                                                                                                                           And when the days of his mourning were past, Joseph spake unto the house of Pharaoh, saying, If now I have found grace in your eyes, speak, I pray you, in the ears of Pharaoh, saying,
1512                                                                                                                                                                                                                                                                                                                           My father made me swear, saying, Lo, I die: in my grave which I have digged for me in the land of Canaan, there shalt thou bury me. Now therefore let me go up, I pray thee, and bury my father, and I will come again.
1513                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Pharaoh said, Go up, and bury thy father, according as he made thee swear.
1514                                                                                                                                                                                                                                                                                                                                                                                        And Joseph went up to bury his father: and with him went up all the servants of Pharaoh, the elders of his house, and all the elders of the land of Egypt,
1515                                                                                                                                                                                                                                                                                                                                                                                And all the house of Joseph, and his brethren, and his father's house: only their little ones, and their flocks, and their herds, they left in the land of Goshen.
1516                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there went up with him both chariots and horsemen: and it was a very great company.
1517                                                                                                                                                                                                                                                                                                                                                             And they came to the threshingfloor of Atad, which is beyond Jordan, and there they mourned with a great and very sore lamentation: and he made a mourning for his father seven days.
1518                                                                                                                                                                                                                                                                                                                    And when the inhabitants of the land, the Canaanites, saw the mourning in the floor of Atad, they said, This is a grievous mourning to the Egyptians: wherefore the name of it was called Abelmizraim, which is beyond Jordan.
1519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And his sons did unto him according as he commanded them:
1520                                                                                                                                                                                                                                                                                                                               For his sons carried him into the land of Canaan, and buried him in the cave of the field of Machpelah, which Abraham bought with the field for a possession of a buryingplace of Ephron the Hittite, before Mamre.
1521                                                                                                                                                                                                                                                                                                                                                                                                           And Joseph returned into Egypt, he, and his brethren, and all that went up with him to bury his father, after he had buried his father.
1522                                                                                                                                                                                                                                                                                                                                                                         And when Joseph's brethren saw that their father was dead, they said, Joseph will peradventure hate us, and will certainly requite us all the evil which we did unto him.
1523                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they sent a messenger unto Joseph, saying, Thy father did command before he died, saying,
1524                                                                                                                                                                                                                                                                                  So shall ye say unto Joseph, Forgive, I pray thee now, the trespass of thy brethren, and their sin; for they did unto thee evil: and now, we pray thee, forgive the trespass of the servants of the God of thy father. And Joseph wept when they spake unto him.
1525                                                                                                                                                                                                                                                                                                                                                                                                                                              And his brethren also went and fell down before his face; and they said, Behold, we be thy servants.
1526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joseph said unto them, Fear not: for am I in the place of God?
1527                                                                                                                                                                                                                                                                                                                                                                                                           But as for you, ye thought evil against me; but God meant it unto good, to bring to pass, as it is this day, to save much people alive.
1528                                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them.
1529                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joseph dwelt in Egypt, he, and his father's house: and Joseph lived an hundred and ten years.
1530                                                                                                                                                                                                                                                                                                                                                                                                   And Joseph saw Ephraim's children of the third generation: the children also of Machir the son of Manasseh were brought up upon Joseph's knees.
1531                                                                                                                                                                                                                                                                                                                                                                          And Joseph said unto his brethren, I die: and God will surely visit you, and bring you out of this land unto the land which he sware to Abraham, to Isaac, and to Jacob.
1532                                                                                                                                                                                                                                                                                                                                                                                                                  And Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence.
1533                                                                                                                                                                                                                                                                                                                                                                                                                                   So Joseph died, being an hundred and ten years old: and they embalmed him, and he was put in a coffin in Egypt.
1534                                                                                                                                                                                                                                                                                                                                                                                                                            Now these are the names of the children of Israel, which came into Egypt; every man and his household came with Jacob.
1535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Reuben, Simeon, Levi, and Judah,
1536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Issachar, Zebulun, and Benjamin,
1537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Dan, and Naphtali, Gad, and Asher.
1538                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the souls that came out of the loins of Jacob were seventy souls: for Joseph was in Egypt already.
1539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Joseph died, and all his brethren, and all that generation.
1540                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them.
1541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now there arose up a new king over Egypt, which knew not Joseph.
1542                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said unto his people, Behold, the people of the children of Israel are more and mightier than we:
1543                                                                                                                                                                                                                                                                                                                                  Come on, let us deal wisely with them; lest they multiply, and it come to pass, that, when there falleth out any war, they join also unto our enemies, and fight against us, and so get them up out of the land.
1544                                                                                                                                                                                                                                                                                                                                                                                                  Therefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh treasure cities, Pithom and Raamses.
1545                                                                                                                                                                                                                                                                                                                                                                                                                     But the more they afflicted them, the more they multiplied and grew. And they were grieved because of the children of Israel.
1546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Egyptians made the children of Israel to serve with rigor:
1547                                                                                                                                                                                                                                                                                                                                                          And they made their lives bitter with hard bondage, in mortar, and in brick, and in all manner of service in the field: all their service, wherein they made them serve, was with rigor.
1548                                                                                                                                                                                                                                                                                                                                                                                                                    And the king of Egypt spake to the Hebrew midwives, of which the name of the one was Shiphrah, and the name of the other Puah:
1549                                                                                                                                                                                                                                                                                                                                                          And he said, When ye do the office of a midwife to the Hebrew women, and see them upon the stools; if it be a son, then ye shall kill him: but if it be a daughter, then she shall live.
1550                                                                                                                                                                                                                                                                                                                                                                                                                                   But the midwives feared God, and did not as the king of Egypt commanded them, but saved the men children alive.
1551                                                                                                                                                                                                                                                                                                                                                                                                            And the king of Egypt called for the midwives, and said unto them, Why have ye done this thing, and have saved the men children alive?
1552                                                                                                                                                                                                                                                                                                                                                                            And the midwives said unto Pharaoh, Because the Hebrew women are not as the Egyptian women; for they are lively, and are delivered ere the midwives come in unto them.
1553                                                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore God dealt well with the midwives: and the people multiplied, and waxed very mighty.
1554                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, because the midwives feared God, that he made them houses.
1555                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive.
1556                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there went a man of the house of Levi, and took to wife a daughter of Levi.
1557                                                                                                                                                                                                                                                                                                                                                                                                                               And the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months.
1558                                                                                                                                                                                                                                                                                                                                              And when she could not longer hide him, she took for him an ark of bulrushes, and daubed it with slime and with pitch, and put the child therein; and she laid it in the flags by the river's brink.
1559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his sister stood afar off, to wit what would be done to him.
1560                                                                                                                                                                                                                                                                                                                                                    And the daughter of Pharaoh came down to wash herself at the river; and her maidens walked along by the river's side; and when she saw the ark among the flags, she sent her maid to fetch it.
1561                                                                                                                                                                                                                                                                                                                                                                                         And when she had opened it, she saw the child: and, behold, the babe wept. And she had compassion on him, and said, This is one of the Hebrews' children.
1562                                                                                                                                                                                                                                                                                                                                                                                                       Then said his sister to Pharaoh's daughter, Shall I go and call to thee a nurse of the Hebrew women, that she may nurse the child for thee?
1563                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh's daughter said to her, Go. And the maid went and called the child's mother.
1564                                                                                                                                                                                                                                                                                                                                                                                     And Pharaoh's daughter said unto her, Take this child away, and nurse it for me, and I will give thee thy wages. And the women took the child, and nursed it.
1565                                                                                                                                                                                                                                                                                                                                                                         And the child grew, and she brought him unto Pharaoh's daughter, and he became her son. And she called his name Moses: and she said, Because I drew him out of the water.
1566                                                                                                                                                                                                                                                                                                                                                        And it came to pass in those days, when Moses was grown, that he went out unto his brethren, and looked on their burdens: and he spied an Egyptian smiting an Hebrew, one of his brethren.
1567                                                                                                                                                                                                                                                                                                                                                                                                                        And he looked this way and that way, and when he saw that there was no man, he slew the Egyptian, and hid him in the sand.
1568                                                                                                                                                                                                                                                                                                                                                                                    And when he went out the second day, behold, two men of the Hebrews strove together: and he said to him that did the wrong, Wherefore smitest thou thy fellow?
1569                                                                                                                                                                                                                                                                                                                                                                        And he said, Who made thee a prince and a judge over us? intendest thou to kill me, as thou killedst the Egyptian? And Moses feared, and said, Surely this thing is known.
1570                                                                                                                                                                                                                                                                                                                                                                                  Now when Pharaoh heard this thing, he sought to slay Moses. But Moses fled from the face of Pharaoh, and dwelt in the land of Midian: and he sat down by a well.
1571                                                                                                                                                                                                                                                                                                                                                                                                                 Now the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father's flock.
1572                                                                                                                                                                                                                                                                                                                                                                                                                                          And the shepherds came and drove them away: but Moses stood up and helped them, and watered their flock.
1573                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when they came to Reuel their father, he said, How is it that ye are come so soon to day?
1574                                                                                                                                                                                                                                                                                                                                                                                                               And they said, An Egyptian delivered us out of the hand of the shepherds, and also drew water enough for us, and watered the flock.
1575                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto his daughters, And where is he? why is it that ye have left the man? call him, that he may eat bread.
1576                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses was content to dwell with the man: and he gave Moses Zipporah his daughter.
1577                                                                                                                                                                                                                                                                                                                                                                                                                                    And she bare him a son, and he called his name Gershom: for he said, I have been a stranger in a strange land.
1578                                                                                                                                                                                                                                                                                                                                         And it came to pass in process of time, that the king of Egypt died: and the children of Israel sighed by reason of the bondage, and they cried, and their cry came up unto God by reason of the bondage.
1579                                                                                                                                                                                                                                                                                                                                                                                                                                           And God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob.
1580                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And God looked upon the children of Israel, and God had respect unto them.
1581                                                                                                                                                                                                                                                                                                                                                                   Now Moses kept the flock of Jethro his father in law, the priest of Midian: and he led the flock to the backside of the desert, and came to the mountain of God, even to Horeb.
1582                                                                                                                                                                                                                                                                                                                                                                  And the angel of the LORD appeared unto him in a flame of fire out of the midst of a bush: and he looked, and, behold, the bush burned with fire, and the bush was not consumed.
1583                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses said, I will now turn aside, and see this great sight, why the bush is not burnt.
1584                                                                                                                                                                                                                                                                                                                                                                                              And when the LORD saw that he turned aside to see, God called unto him out of the midst of the bush, and said, Moses, Moses. And he said, Here am I.
1585                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground.
1586                                                                                                                                                                                                                                                                                                                                                                             Moreover he said, I am the God of thy father, the God of Abraham, the God of Isaac, and the God of Jacob. And Moses hid his face; for he was afraid to look upon God.
1587                                                                                                                                                                                                                                                                                                                                                                          And the LORD said, I have surely seen the affliction of my people which are in Egypt, and have heard their cry by reason of their taskmasters; for I know their sorrows;
1588                                                                                                                                                                                                                                   And I am come down to deliver them out of the hand of the Egyptians, and to bring them up out of that land unto a good land and a large, unto a land flowing with milk and honey; unto the place of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites.
1589                                                                                                                                                                                                                                                                                                                                                                                               Now therefore, behold, the cry of the children of Israel is come unto me: and I have also seen the oppression wherewith the Egyptians oppress them.
1590                                                                                                                                                                                                                                                                                                                                                                                                                Come now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt.
1591                                                                                                                                                                                                                                                                                                                                                                                                              And Moses said unto God, Who am I, that I should go unto Pharaoh, and that I should bring forth the children of Israel out of Egypt?
1592                                                                                                                                                                                                                                                                                                                                              And he said, Certainly I will be with thee; and this shall be a token unto thee, that I have sent thee: When thou hast brought forth the people out of Egypt, ye shall serve God upon this mountain.
1593                                                                                                                                                                                                                                                                                                                         And Moses said unto God, Behold, when I come unto the children of Israel, and shall say unto them, The God of your fathers hath sent me unto you; and they shall say to me, What is his name? what shall I say unto them?
1594                                                                                                                                                                                                                                                                                                                                                                                                                And God said unto Moses, I AM THAT I AM: and he said, Thus shalt thou say unto the children of Israel, I AM hath sent me unto you.
1595                                                                                                                                                                                                                                                                       And God said moreover unto Moses, Thus shalt thou say unto the children of Israel, the LORD God of your fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath sent me unto you: this is my name for ever, and this is my memorial unto all generations.
1596                                                                                                                                                                                                                                                                                                      Go, and gather the elders of Israel together, and say unto them, The LORD God of your fathers, the God of Abraham, of Isaac, and of Jacob, appeared unto me, saying, I have surely visited you, and seen that which is done to you in Egypt:
1597                                                                                                                                                                                                                                                                                                         And I have said, I will bring you up out of the affliction of Egypt unto the land of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, unto a land flowing with milk and honey.
1598                                                                                                                                                                                                                                 And they shall hearken to thy voice: and thou shalt come, thou and the elders of Israel, unto the king of Egypt, and ye shall say unto him, The LORD God of the Hebrews hath met with us: and now let us go, we beseech thee, three days' journey into the wilderness, that we may sacrifice to the LORD our God.
1599                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I am sure that the king of Egypt will not let you go, no, not by a mighty hand.
1600                                                                                                                                                                                                                                                                                                                                                                                                      And I will stretch out my hand, and smite Egypt with all my wonders which I will do in the midst thereof: and after that he will let you go.
1601                                                                                                                                                                                                                                                                                                                                                                                                              And I will give this people favor in the sight of the Egyptians: and it shall come to pass, that, when ye go, ye shall not go empty.
1602                                                                                                                                                                                                                                                                                                        But every woman shall borrow of her neighbor, and of her that sojourneth in her house, jewels of silver, and jewels of gold, and raiment: and ye shall put them upon your sons, and upon your daughters; and ye shall spoil the Egyptians.
1603                                                                                                                                                                                                                                                                                                                                                                                           And Moses answered and said, But, behold, they will not believe me, nor hearken unto my voice: for they will say, The LORD hath not appeared unto thee.
1604                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto him, What is that in thine hand? And he said, A rod.
1605                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Cast it on the ground. And he cast it on the ground, and it became a serpent; and Moses fled from before it.
1606                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Moses, Put forth thine hand, and take it by the tail. And he put forth his hand, and caught it, and it became a rod in his hand:
1607                                                                                                                                                                                                                                                                                                                                                                                                    That they may believe that the LORD God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath appeared unto thee.
1608                                                                                                                                                                                                                                                                                                                                                                     And the LORD said furthermore unto him, Put now thine hand into thy bosom. And he put his hand into his bosom: and when he took it out, behold, his hand was leprous as snow.
1609                                                                                                                                                                                                                                                                                                                                                                 And he said, Put thine hand into thy bosom again. And he put his hand into his bosom again; and plucked it out of his bosom, and, behold, it was turned again as his other flesh.
1610                                                                                                                                                                                                                                                                                                                                                                                    And it shall come to pass, if they will not believe thee, neither hearken to the voice of the first sign, that they will believe the voice of the latter sign.
1611                                                                                                                                                                                                                                                                   And it shall come to pass, if they will not believe also these two signs, neither hearken unto thy voice, that thou shalt take of the water of the river, and pour it upon the dry land: and the water which thou takest out of the river shall become blood upon the dry land.
1612                                                                                                                                                                                                                                                                                                                                                                       And Moses said unto the LORD, O my LORD, I am not eloquent, neither heretofore, nor since thou hast spoken unto thy servant: but I am slow of speech, and of a slow tongue.
1613                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto him, Who hath made man's mouth? or who maketh the dumb, or deaf, or the seeing, or the blind? have not I the LORD?
1614                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore go, and I will be with thy mouth, and teach thee what thou shalt say.
1615                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, O my LORD, send, I pray thee, by the hand of him whom thou wilt send.
1616                                                                                                                                                                                                                                                                                                       And the anger of the LORD was kindled against Moses, and he said, Is not Aaron the Levite thy brother? I know that he can speak well. And also, behold, he cometh forth to meet thee: and when he seeth thee, he will be glad in his heart.
1617                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt speak unto him, and put words in his mouth: and I will be with thy mouth, and with his mouth, and will teach you what ye shall do.
1618                                                                                                                                                                                                                                                                                                                                                                                             And he shall be thy spokesman unto the people: and he shall be, even he shall be to thee instead of a mouth, and thou shalt be to him instead of God.
1619                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt take this rod in thine hand, wherewith thou shalt do signs.
1620                                                                                                                                                                                                                                                                                                                     And Moses went and returned to Jethro his father in law, and said unto him, Let me go, I pray thee, and return unto my brethren which are in Egypt, and see whether they be yet alive. And Jethro said to Moses, Go in peace.
1621                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Moses in Midian, Go, return into Egypt: for all the men are dead which sought thy life.
1622                                                                                                                                                                                                                                                                                                                                                                                                  And Moses took his wife and his sons, and set them upon an ass, and he returned to the land of Egypt: and Moses took the rod of God in his hand.
1623                                                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, When thou goest to return into Egypt, see that thou do all those wonders before Pharaoh, which I have put in thine hand: but I will harden his heart, that he shall not let the people go.
1624                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt say unto Pharaoh, Thus saith the LORD, Israel is my son, even my firstborn:
1625                                                                                                                                                                                                                                                                                                                                                                                                      And I say unto thee, Let my son go, that he may serve me: and if thou refuse to let him go, behold, I will slay thy son, even thy firstborn.
1626                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass by the way in the inn, that the LORD met him, and sought to kill him.
1627                                                                                                                                                                                                                                                                                                                                                                                                 Then Zipporah took a sharp stone, and cut off the foreskin of her son, and cast it at his feet, and said, Surely a bloody husband art thou to me.
1628                                                                                                                                                                                                                                                                                                                                                                                                                                                          So he let him go: then she said, A bloody husband thou art, because of the circumcision.
1629                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said to Aaron, Go into the wilderness to meet Moses. And he went, and met him in the mount of God, and kissed him.
1630                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses told Aaron all the words of the LORD who had sent him, and all the signs which he had commanded him.
1631                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses and Aaron went and gathered together all the elders of the children of Israel:
1632                                                                                                                                                                                                                                                                                                                                                                                                                                 And Aaron spake all the words which the LORD had spoken unto Moses, and did the signs in the sight of the people.
1633                                                                                                                                                                                                                                                                                                                                                          And the people believed: and when they heard that the LORD had visited the children of Israel, and that he had looked upon their affliction, then they bowed their heads and worshipped.
1634                                                                                                                                                                                                                                                                                                                                                                               And afterward Moses and Aaron went in, and told Pharaoh, Thus saith the LORD God of Israel, Let my people go, that they may hold a feast unto me in the wilderness.
1635                                                                                                                                                                                                                                                                                                                                                                                                              And Pharaoh said, Who is the LORD, that I should obey his voice to let Israel go? I know not the LORD, neither will I let Israel go.
1636                                                                                                                                                                                                                                                                                                                               And they said, The God of the Hebrews hath met with us: let us go, we pray thee, three days' journey into the desert, and sacrifice unto the LORD our God; lest he fall upon us with pestilence, or with the sword.
1637                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, let the people from their works? get you unto your burdens.
1638                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh said, Behold, the people of the land now are many, and ye make them rest from their burdens.
1639                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Pharaoh commanded the same day the taskmasters of the people, and their officers, saying,
1640                                                                                                                                                                                                                                                                                                                                                                                                                                 Ye shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves.
1641                                                                                                                                                                                                                                                                                                                                        And the tale of the bricks, which they did make heretofore, ye shall lay upon them; ye shall not diminish ought thereof: for they be idle; therefore they cry, saying, Let us go and sacrifice to our God.
1642                                                                                                                                                                                                                                                                                                                                                                                                                                        Let there more work be laid upon the men, that they may labor therein; and let them not regard vain words.
1643                                                                                                                                                                                                                                                                                                                                                                                              And the taskmasters of the people went out, and their officers, and they spake to the people, saying, Thus saith Pharaoh, I will not give you straw.
1644                                                                                                                                                                                                                                                                                                                                                                                                                                                        Go ye, get you straw where ye can find it: yet not ought of your work shall be diminished.
1645                                                                                                                                                                                                                                                                                                                                                                                                                                          So the people were scattered abroad throughout all the land of Egypt to gather stubble instead of straw.
1646                                                                                                                                                                                                                                                                                                                                                                                                                                            And the taskmasters hasted them, saying, Fulfil your works, your daily tasks, as when there was straw.
1647                                                                                                                                                                                                                                                                                                                         And the officers of the children of Israel, which Pharaoh's taskmasters had set over them, were beaten, and demanded, Wherefore have ye not fulfilled your task in making brick both yesterday and to day, as heretofore?
1648                                                                                                                                                                                                                                                                                                                                                                                                                   Then the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants?
1649                                                                                                                                                                                                                                                                                                                                                                                            There is no straw given unto thy servants, and they say to us, Make brick: and, behold, thy servants are beaten; but the fault is in thine own people.
1650                                                                                                                                                                                                                                                                                                                                                                                                                                                  But he said, Ye are idle, ye are idle: therefore ye say, Let us go and do sacrifice to the LORD.
1651                                                                                                                                                                                                                                                                                                                                                                                                                                       Go therefore now, and work; for there shall no straw be given you, yet shall ye deliver the tale of bricks.
1652                                                                                                                                                                                                                                                                                                                                                                                 And the officers of the children of Israel did see that they were in evil case, after it was said, Ye shall not minish ought from your bricks of your daily task.
1653                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh:
1654                                                                                                                                                                                                                                                                                                                                       And they said unto them, The LORD look upon you, and judge; because ye have made our savor to be abhorred in the eyes of Pharaoh, and in the eyes of his servants, to put a sword in their hand to slay us.
1655                                                                                                                                                                                                                                                                                                                                                                                                            And Moses returned unto the LORD, and said, LORD, wherefore hast thou so evil entreated this people? why is it that thou hast sent me?
1656                                                                                                                                                                                                                                                                                                                                                                                                                For since I came to Pharaoh to speak in thy name, he hath done evil to this people; neither hast thou delivered thy people at all.
1657                                                                                                                                                                                                                                                                                                                                                             Then the LORD said unto Moses, Now shalt thou see what I will do to Pharaoh: for with a strong hand shall he let them go, and with a strong hand shall he drive them out of his land.
1658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And God spake unto Moses, and said unto him, I am the LORD:
1659                                                                                                                                                                                                                                                                                                                                                                                                             And I appeared unto Abraham, unto Isaac, and unto Jacob, by the name of God Almighty, but by my name JEHOVAH was I not known to them.
1660                                                                                                                                                                                                                                                                                                                                                                                                    And I have also established my covenant with them, to give them the land of Canaan, the land of their pilgrimage, wherein they were strangers.
1661                                                                                                                                                                                                                                                                                                                                                                                                              And I have also heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant.
1662                                                                                                                                                                                                                                                                                                    Wherefore say unto the children of Israel, I am the LORD, and I will bring you out from under the burdens of the Egyptians, and I will rid you out of their bondage, and I will redeem you with a stretched out arm, and with great judgments:
1663                                                                                                                                                                                                                                                                                                                                                                And I will take you to me for a people, and I will be to you a God: and ye shall know that I am the LORD your God, which bringeth you out from under the burdens of the Egyptians.
1664                                                                                                                                                                                                                                                                                                                                                                     And I will bring you in unto the land, concerning the which I did swear to give it to Abraham, to Isaac, and to Jacob; and I will give it you for an heritage: I am the LORD.
1665                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage.
1666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
1667                                                                                                                                                                                                                                                                                                                                                                                                                                                   Go in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land.
1668                                                                                                                                                                                                                                                                                                                                                                                 And Moses spake before the LORD, saying, Behold, the children of Israel have not hearkened unto me; how then shall Pharaoh hear me, who am of uncircumcised lips?
1669                                                                                                                                                                                                                                                                                                                                                       And the LORD spake unto Moses and unto Aaron, and gave them a charge unto the children of Israel, and unto Pharaoh king of Egypt, to bring the children of Israel out of the land of Egypt.
1670                                                                                                                                                                                                                                                                                                                                                                                   These be the heads of their fathers' houses: The sons of Reuben the firstborn of Israel; Hanoch, and Pallu, Hezron, and Carmi: these be the families of Reuben.
1671                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman: these are the families of Simeon.
1672                                                                                                                                                                                                                                                                                                                                                            And these are the names of the sons of Levi according to their generations; Gershon, and Kohath, and Merari: and the years of the life of Levi were an hundred thirty and seven years.
1673                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sons of Gershon; Libni, and Shimi, according to their families.
1674                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Kohath; Amram, and Izhar, and Hebron, and Uzziel: and the years of the life of Kohath were an hundred thirty and three years.
1675                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Merari; Mahali and Mushi: these are the families of Levi according to their generations.
1676                                                                                                                                                                                                                                                                                                                                                                         And Amram took him Jochebed his father's sister to wife; and she bare him Aaron and Moses: and the years of the life of Amram were an hundred and thirty and seven years.
1677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Izhar; Korah, and Nepheg, and Zichri.
1678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Uzziel; Mishael, and Elzaphan, and Zithri.
1679                                                                                                                                                                                                                                                                                                                                                                                                          And Aaron took him Elisheba, daughter of Amminadab, sister of Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and Ithamar.
1680                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Korah; Assir, and Elkanah, and Abiasaph: these are the families of the Korhites.
1681                                                                                                                                                                                                                                                                                                                                                                And Eleazar Aaron's son took him one of the daughters of Putiel to wife; and she bare him Phinehas: these are the heads of the fathers of the Levites according to their families.
1682                                                                                                                                                                                                                                                                                                                                                                                                         These are that Aaron and Moses, to whom the LORD said, Bring out the children of Israel from the land of Egypt according to their armies.
1683                                                                                                                                                                                                                                                                                                                                                                                                              These are they which spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron.
1684                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass on the day when the LORD spake unto Moses in the land of Egypt,
1685                                                                                                                                                                                                                                                                                                                                                                                                                            That the LORD spake unto Moses, saying, I am the LORD: speak thou unto Pharaoh king of Egypt all that I say unto thee.
1686                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses said before the LORD, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me?
1687                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy brother shall be thy prophet.
1688                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt speak all that I command thee: and Aaron thy brother shall speak unto Pharaoh, that he send the children of Israel out of his land.
1689                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I will harden Pharaoh's heart, and multiply my signs and my wonders in the land of Egypt.
1690                                                                                                                                                                                                                                                                                                                                                        But Pharaoh shall not hearken unto you, that I may lay my hand upon Egypt, and bring forth mine armies, and my people the children of Israel, out of the land of Egypt by great judgments.
1691                                                                                                                                                                                                                                                                                                                                                                                                 And the Egyptians shall know that I am the LORD, when I stretch forth mine hand upon Egypt, and bring out the children of Israel from among them.
1692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses and Aaron did as the LORD commanded them, so did they.
1693                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh.
1694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
1695                                                                                                                                                                                                                                                                                                                                                                       When Pharaoh shall speak unto you, saying, Show a miracle for you: then thou shalt say unto Aaron, Take thy rod, and cast it before Pharaoh, and it shall become a serpent.
1696                                                                                                                                                                                                                                                                                                                                                                And Moses and Aaron went in unto Pharaoh, and they did so as the LORD had commanded: and Aaron cast down his rod before Pharaoh, and before his servants, and it became a serpent.
1697                                                                                                                                                                                                                                                                                                                                                                                                        Then Pharaoh also called the wise men and the sorcerers: now the magicians of Egypt, they also did in like manner with their enchantments.
1698                                                                                                                                                                                                                                                                                                                                                                                                                                          For they cast down every man his rod, and they became serpents: but Aaron's rod swallowed up their rods.
1699                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he hardened Pharaoh's heart, that he hearkened not unto them; as the LORD had said.
1700                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Pharaoh's heart is hardened, he refuseth to let the people go.
1701                                                                                                                                                                                                                                                                                                                                        Get thee unto Pharaoh in the morning; lo, he goeth out unto the water; and thou shalt stand by the river's brink against he come; and the rod which was turned to a serpent shalt thou take in thine hand.
1702                                                                                                                                                                                                                                                                                                                                                And thou shalt say unto him, The LORD God of the Hebrews hath sent me unto thee, saying, Let my people go, that they may serve me in the wilderness: and, behold, hitherto thou wouldest not hear.
1703                                                                                                                                                                                                                                                                                                                                                Thus saith the LORD, In this thou shalt know that I am the LORD: behold, I will smite with the rod that is in mine hand upon the waters which are in the river, and they shall be turned to blood.
1704                                                                                                                                                                                                                                                                                                                                                                                                        And the fish that is in the river shall die, and the river shall stink; and the Egyptians shall loathe to drink of the water of the river.
1705                                                                                                                                                                                     And the LORD spake unto Moses, Say unto Aaron, Take thy rod, and stretch out thine hand upon the waters of Egypt, upon their streams, upon their rivers, and upon their ponds, and upon all their pools of water, that they may become blood; and that there may be blood throughout all the land of Egypt, both in vessels of wood, and in vessels of stone.
1706                                                                                                                                                                                                                                                                                              And Moses and Aaron did so, as the LORD commanded; and he lifted up the rod, and smote the waters that were in the river, in the sight of Pharaoh, and in the sight of his servants; and all the waters that were in the river were turned to blood.
1707                                                                                                                                                                                                                                                                                                                                                                  And the fish that was in the river died; and the river stank, and the Egyptians could not drink of the water of the river; and there was blood throughout all the land of Egypt.
1708                                                                                                                                                                                                                                                                                                                                                                                              And the magicians of Egypt did so with their enchantments: and Pharaoh's heart was hardened, neither did he hearken unto them; as the LORD had said.
1709                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Pharaoh turned and went into his house, neither did he set his heart to this also.
1710                                                                                                                                                                                                                                                                                                                                                                                                                        And all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river.
1711                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And seven days were fulfilled, after that the LORD had smitten the river.
1712                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD spake unto Moses, Go unto Pharaoh, and say unto him, Thus saith the LORD, Let my people go, that they may serve me.
1713                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if thou refuse to let them go, behold, I will smite all thy borders with frogs:
1714                                                                                                                                                                                                                                                                                            And the river shall bring forth frogs abundantly, which shall go up and come into thine house, and into thy bedchamber, and upon thy bed, and into the house of thy servants, and upon thy people, and into thine ovens, and into thy kneadingtroughs:
1715                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the frogs shall come up both on thee, and upon thy people, and upon all thy servants.
1716                                                                                                                                                                                                                                                                                                                                                    And the LORD spake unto Moses, Say unto Aaron, Stretch forth thine hand with thy rod over the streams, over the rivers, and over the ponds, and cause frogs to come up upon the land of Egypt.
1717                                                                                                                                                                                                                                                                                                                                                                                                                                  And Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt.
1718                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the magicians did so with their enchantments, and brought up frogs upon the land of Egypt.
1719                                                                                                                                                                                                                                                                                                                                         Then Pharaoh called for Moses and Aaron, and said, Entreat the LORD, that he may take away the frogs from me, and from my people; and I will let the people go, that they may do sacrifice unto the LORD.
1720                                                                                                                                                                                                                                                                                                                                       And Moses said unto Pharaoh, Glory over me: when shall I entreat for thee, and for thy servants, and for thy people, to destroy the frogs from thee and thy houses, that they may remain in the river only?
1721                                                                                                                                                                                                                                                                                                                                                                                                            And he said, To morrow. And he said, Be it according to thy word: that thou mayest know that there is none like unto the LORD our God.
1722                                                                                                                                                                                                                                                                                                                                                                                                       And the frogs shall depart from thee, and from thy houses, and from thy servants, and from thy people; they shall remain in the river only.
1723                                                                                                                                                                                                                                                                                                                                                                                                               And Moses and Aaron went out from Pharaoh: and Moses cried unto the LORD because of the frogs which he had brought against Pharaoh.
1724                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD did according to the word of Moses; and the frogs died out of the houses, out of the villages, and out of the fields.
1725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they gathered them together upon heaps: and the land stank.
1726                                                                                                                                                                                                                                                                                                                                                                                                                            But when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them; as the LORD had said.
1727                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Say unto Aaron, Stretch out thy rod, and smite the dust of the land, that it may become lice throughout all the land of Egypt.
1728                                                                                                                                                                                                                                                                                                                                  And they did so; for Aaron stretched out his hand with his rod, and smote the dust of the earth, and it became lice in man, and in beast; all the dust of the land became lice throughout all the land of Egypt.
1729                                                                                                                                                                                                                                                                                                                                                                                                            And the magicians did so with their enchantments to bring forth lice, but they could not: so there were lice upon man, and upon beast.
1730                                                                                                                                                                                                                                                                                                                                                                                          Then the magicians said unto Pharaoh, This is the finger of God: and Pharaoh's heart was hardened, and he hearkened not unto them; as the LORD had said.
1731                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, Rise up early in the morning, and stand before Pharaoh; lo, he cometh forth to the water; and say unto him, Thus saith the LORD, Let my people go, that they may serve me.
1732                                                                                                                                                                                                                                                                                  Else, if thou wilt not let my people go, behold, I will send swarms of flies upon thee, and upon thy servants, and upon thy people, and into thy houses: and the houses of the Egyptians shall be full of swarms of flies, and also the ground whereon they are.
1733                                                                                                                                                                                                                                                                                                                                                      And I will sever in that day the land of Goshen, in which my people dwell, that no swarms of flies shall be there; to the end thou mayest know that I am the LORD in the midst of the earth.
1734                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will put a division between my people and thy people: to morrow shall this sign be.
1735                                                                                                                                                                                                                                                                                                                                   And the LORD did so; and there came a grievous swarm of flies into the house of Pharaoh, and into his servants' houses, and into all the land of Egypt: the land was corrupted by reason of the swarm of flies.
1736                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land.
1737                                                                                                                                                                                                                                                                                                                      And Moses said, It is not meet so to do; for we shall sacrifice the abomination of the Egyptians to the LORD our God: lo, shall we sacrifice the abomination of the Egyptians before their eyes, and will they not stone us?
1738                                                                                                                                                                                                                                                                                                                                                                                                                                    We will go three days' journey into the wilderness, and sacrifice to the LORD our God, as he shall command us.
1739                                                                                                                                                                                                                                                                                                                                                                                            And Pharaoh said, I will let you go, that ye may sacrifice to the LORD your God in the wilderness; only ye shall not go very far away: entreat for me.
1740                                                                                                                                                                                                                                                                 And Moses said, Behold, I go out from thee, and I will entreat the LORD that the swarms of flies may depart from Pharaoh, from his servants, and from his people, to morrow: but let not Pharaoh deal deceitfully any more in not letting the people go to sacrifice to the LORD.
1741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses went out from Pharaoh, and entreated the LORD.
1742                                                                                                                                                                                                                                                                                                                                                                                 And the LORD did according to the word of Moses; and he removed the swarms of flies from Pharaoh, from his servants, and from his people; there remained not one.
1743                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Pharaoh hardened his heart at this time also, neither would he let the people go.
1744                                                                                                                                                                                                                                                                                                                                                                                                Then the LORD said unto Moses, Go in unto Pharaoh, and tell him, Thus saith the LORD God of the Hebrews, Let my people go, that they may serve me.
1745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For if thou refuse to let them go, and wilt hold them still,
1746                                                                                                                                                                                                                                                                                                                                               Behold, the hand of the LORD is upon thy cattle which is in the field, upon the horses, upon the asses, upon the camels, upon the oxen, and upon the sheep: there shall be a very grievous murrain.
1747                                                                                                                                                                                                                                                                                                                                                                                               And the LORD shall sever between the cattle of Israel and the cattle of Egypt: and there shall nothing die of all that is the children's of Israel.
1748                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD appointed a set time, saying, To morrow the LORD shall do this thing in the land.
1749                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD did that thing on the morrow, and all the cattle of Egypt died: but of the cattle of the children of Israel died not one.
1750                                                                                                                                                                                                                                                                                                                                                                                   And Pharaoh sent, and, behold, there was not one of the cattle of the Israelites dead. And the heart of Pharaoh was hardened, and he did not let the people go.
1751                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses and unto Aaron, Take to you handfuls of ashes of the furnace, and let Moses sprinkle it toward the heaven in the sight of Pharaoh.
1752                                                                                                                                                                                                                                                                                                                                                                               And it shall become small dust in all the land of Egypt, and shall be a boil breaking forth with blains upon man, and upon beast, throughout all the land of Egypt.
1753                                                                                                                                                                                                                                                                                                                                                                  And they took ashes of the furnace, and stood before Pharaoh; and Moses sprinkled it up toward heaven; and it became a boil breaking forth with blains upon man, and upon beast.
1754                                                                                                                                                                                                                                                                                                                                                                                                             And the magicians could not stand before Moses because of the boils; for the boil was upon the magicians, and upon all the Egyptians.
1755                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD hardened the heart of Pharaoh, and he hearkened not unto them; as the LORD had spoken unto Moses.
1756                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto Moses, Rise up early in the morning, and stand before Pharaoh, and say unto him, Thus saith the LORD God of the Hebrews, Let my people go, that they may serve me.
1757                                                                                                                                                                                                                                                                                                                                                                      For I will at this time send all my plagues upon thine heart, and upon thy servants, and upon thy people; that thou mayest know that there is none like me in all the earth.
1758                                                                                                                                                                                                                                                                                                                                                                                                               For now I will stretch out my hand, that I may smite thee and thy people with pestilence; and thou shalt be cut off from the earth.
1759                                                                                                                                                                                                                                                                                                                                                                                                   And in very deed for this cause have I raised thee up, for to show in thee my power; and that my name may be declared throughout all the earth.
1760                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As yet exaltest thou thyself against my people, that thou wilt not let them go?
1761                                                                                                                                                                                                                                                                                                                                                                                       Behold, to morrow about this time I will cause it to rain a very grievous hail, such as hath not been in Egypt since the foundation thereof even until now.
1762                                                                                                                                                                                                                                                                                                            Send therefore now, and gather thy cattle, and all that thou hast in the field; for upon every man and beast which shall be found in the field, and shall not be brought home, the hail shall come down upon them, and they shall die.
1763                                                                                                                                                                                                                                                                                                                                                                                                                          He that feared the word of the LORD among the servants of Pharaoh made his servants and his cattle flee into the houses:
1764                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that regarded not the word of the LORD left his servants and his cattle in the field.
1765                                                                                                                                                                                                                                                                                                                                  And the LORD said unto Moses, Stretch forth thine hand toward heaven, that there may be hail in all the land of Egypt, upon man, and upon beast, and upon every herb of the field, throughout the land of Egypt.
1766                                                                                                                                                                                                                                                                                                                                                                     And Moses stretched forth his rod toward heaven: and the LORD sent thunder and hail, and the fire ran along upon the ground; and the LORD rained hail upon the land of Egypt.
1767                                                                                                                                                                                                                                                                                                                                                                                               So there was hail, and fire mingled with the hail, very grievous, such as there was none like it in all the land of Egypt since it became a nation.
1768                                                                                                                                                                                                                                                                                                                                                                 And the hail smote throughout all the land of Egypt all that was in the field, both man and beast; and the hail smote every herb of the field, and brake every tree of the field.
1769                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Only in the land of Goshen, where the children of Israel were, was there no hail.
1770                                                                                                                                                                                                                                                                                                                                                                                             And Pharaoh sent, and called for Moses and Aaron, and said unto them, I have sinned this time: the LORD is righteous, and I and my people are wicked.
1771                                                                                                                                                                                                                                                                                                                                                                                                        Entreat the LORD (for it is enough) that there be no more mighty thunderings and hail; and I will let you go, and ye shall stay no longer.
1772                                                                                                                                                                                                                                                                                                            And Moses said unto him, As soon as I am gone out of the city, I will spread abroad my hands unto the LORD; and the thunder shall cease, neither shall there be any more hail; that thou mayest know how that the earth is the LORD's.
1773                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But as for thee and thy servants, I know that ye will not yet fear the LORD God.
1774                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the flax and the barley was smitten: for the barley was in the ear, and the flax was bolled.
1775                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But the wheat and the rye were not smitten: for they were not grown up.
1776                                                                                                                                                                                                                                                                                                                                                                             And Moses went out of the city from Pharaoh, and spread abroad his hands unto the LORD: and the thunders and hail ceased, and the rain was not poured upon the earth.
1777                                                                                                                                                                                                                                                                                                                                                                                                    And when Pharaoh saw that the rain and the hail and the thunders were ceased, he sinned yet more, and hardened his heart, he and his servants.
1778                                                                                                                                                                                                                                                                                                                                                                                                                           And the heart of Pharaoh was hardened, neither would he let the children of Israel go; as the LORD had spoken by Moses.
1779                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Go in unto Pharaoh: for I have hardened his heart, and the heart of his servants, that I might show these my signs before him:
1780                                                                                                                                                                                                                                                                                                                                                  And that thou mayest tell in the ears of thy son, and of thy son's son, what things I have wrought in Egypt, and my signs which I have done among them; that ye may know how that I am the LORD.
1781                                                                                                                                                                                                                                                                                                                                             And Moses and Aaron came in unto Pharaoh, and said unto him, Thus saith the LORD God of the Hebrews, How long wilt thou refuse to humble thyself before me? let my people go, that they may serve me.
1782                                                                                                                                                                                                                                                                                                                                                                                                                                              Else, if thou refuse to let my people go, behold, to morrow will I bring the locusts into thy coast:
1783                                                                                                                                                                                                                                                                                           And they shall cover the face of the earth, that one cannot be able to see the earth: and they shall eat the residue of that which is escaped, which remaineth unto you from the hail, and shall eat every tree which groweth for you out of the field:
1784                                                                                                                                                                                                                                                              And they shall fill thy houses, and the houses of all thy servants, and the houses of all the Egyptians; which neither thy fathers, nor thy fathers' fathers have seen, since the day that they were upon the earth unto this day. And he turned himself, and went out from Pharaoh.
1785                                                                                                                                                                                                                                                                                                                                                           And Pharaoh's servants said unto him, How long shall this man be a snare unto us? let the men go, that they may serve the LORD their God: knowest thou not yet that Egypt is destroyed?
1786                                                                                                                                                                                                                                                                                                                                                                                                          And Moses and Aaron were brought again unto Pharaoh: and he said unto them, Go, serve the LORD your God: but who are they that shall go?
1787                                                                                                                                                                                                                                                                                                                                                          And Moses said, We will go with our young and with our old, with our sons and with our daughters, with our flocks and with our herds will we go; for we must hold a feast unto the LORD.
1788                                                                                                                                                                                                                                                                                                                                                                                                               And he said unto them, Let the LORD be so with you, as I will let you go, and your little ones: look to it; for evil is before you.
1789                                                                                                                                                                                                                                                                                                                                                                                                                     Not so: go now ye that are men, and serve the LORD; for that ye did desire. And they were driven out from Pharaoh's presence.
1790                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Stretch out thine hand over the land of Egypt for the locusts, that they may come up upon the land of Egypt, and eat every herb of the land, even all that the hail hath left.
1791                                                                                                                                                                                                                                                                                                                                           And Moses stretched forth his rod over the land of Egypt, and the LORD brought an east wind upon the land all that day, and all that night; and when it was morning, the east wind brought the locusts.
1792                                                                                                                                                                                                                                                                                                                                              And the locust went up over all the land of Egypt, and rested in all the coasts of Egypt: very grievous were they; before them there were no such locusts as they, neither after them shall be such.
1793                                                                                                                                                                                                                                                   For they covered the face of the whole earth, so that the land was darkened; and they did eat every herb of the land, and all the fruit of the trees which the hail had left: and there remained not any green thing in the trees, or in the herbs of the field, through all the land of Egypt.
1794                                                                                                                                                                                                                                                                                                                                                                                                                          Then Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against the LORD your God, and against you.
1795                                                                                                                                                                                                                                                                                                                                                                                                          Now therefore forgive, I pray thee, my sin only this once, and entreat the LORD your God, that he may take away from me this death only.
1796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he went out from Pharaoh, and entreated the LORD.
1797                                                                                                                                                                                                                                                                                                                                                                             And the LORD turned a mighty strong west wind, which took away the locusts, and cast them into the Red sea; there remained not one locust in all the coasts of Egypt.
1798                                                                                                                                                                                                                                                                                                                                                                                                                                                        But the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go.
1799                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Moses, Stretch out thine hand toward heaven, that there may be darkness over the land of Egypt, even darkness which may be felt.
1800                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days:
1801                                                                                                                                                                                                                                                                                                                                                                                                            They saw not one another, neither rose any from his place for three days: but all the children of Israel had light in their dwellings.
1802                                                                                                                                                                                                                                                                                                                                                                                             And Pharaoh called unto Moses, and said, Go ye, serve the LORD; only let your flocks and your herds be stayed: let your little ones also go with you.
1803                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses said, Thou must give us also sacrifices and burnt offerings, that we may sacrifice unto the LORD our God.
1804                                                                                                                                                                                                                                                                                                                                            Our cattle also shall go with us; there shall not an hoof be left behind; for thereof must we take to serve the LORD our God; and we know not with what we must serve the LORD, until we come thither.
1805                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But the LORD hardened Pharaoh's heart, and he would not let them go.
1806                                                                                                                                                                                                                                                                                                                                                                                                        And Pharaoh said unto him, Get thee from me, take heed to thyself, see my face no more; for in that day thou seest my face thou shalt die.
1807                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses said, Thou hast spoken well, I will see thy face again no more.
1808                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Yet will I bring one plague more upon Pharaoh, and upon Egypt; afterwards he will let you go hence: when he shall let you go, he shall surely thrust you out hence altogether.
1809                                                                                                                                                                                                                                                                                                                                                                                              Speak now in the ears of the people, and let every man borrow of his neighbor, and every woman of her neighbor, jewels of silver and jewels of gold.
1810                                                                                                                                                                                                                                                                                                                                                 And the LORD gave the people favor in the sight of the Egyptians. Moreover the man Moses was very great in the land of Egypt, in the sight of Pharaoh's servants, and in the sight of the people.
1811                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses said, Thus saith the LORD, About midnight will I go out into the midst of Egypt:
1812                                                                                                                                                                                                                                                                                                                           And all the firstborn in the land of Egypt shall die, from the first born of Pharaoh that sitteth upon his throne, even unto the firstborn of the maidservant that is behind the mill; and all the firstborn of beasts.
1813                                                                                                                                                                                                                                                                                                                                                                                                                   And there shall be a great cry throughout all the land of Egypt, such as there was none like it, nor shall be like it any more.
1814                                                                                                                                                                                                                                                                                                                                                       But against any of the children of Israel shall not a dog move his tongue, against man or beast: that ye may know how that the LORD doth put a difference between the Egyptians and Israel.
1815                                                                                                                                                                                                                                                                                                                      And all these thy servants shall come down unto me, and bow down themselves unto me, saying, Get thee out, and all the people that follow thee: and after that I will go out. And he went out from Pharaoh in a great anger.
1816                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto Moses, Pharaoh shall not hearken unto you; that my wonders may be multiplied in the land of Egypt.
1817                                                                                                                                                                                                                                                                                                                                                                              And Moses and Aaron did all these wonders before Pharaoh: and the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go out of his land.
1818                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD spake unto Moses and Aaron in the land of Egypt saying,
1819                                                                                                                                                                                                                                                                                                                                                                                                                                             This month shall be unto you the beginning of months: it shall be the first month of the year to you.
1820                                                                                                                                                                                                                                                                                                                                                      Speak ye unto all the congregation of Israel, saying, In the tenth day of this month they shall take to them every man a lamb, according to the house of their fathers, a lamb for an house:
1821                                                                                                                                                                                                                                                                                                                                 And if the household be too little for the lamb, let him and his neighbor next unto his house take it according to the number of the souls; every man according to his eating shall make your count for the lamb.
1822                                                                                                                                                                                                                                                                                                                                                                                                                             Your lamb shall be without blemish, a male of the first year: ye shall take it out from the sheep, or from the goats:
1823                                                                                                                                                                                                                                                                                                                                                                                            And ye shall keep it up until the fourteenth day of the same month: and the whole assembly of the congregation of Israel shall kill it in the evening.
1824                                                                                                                                                                                                                                                                                                                                                                                                        And they shall take of the blood, and strike it on the two side posts and on the upper door post of the houses, wherein they shall eat it.
1825                                                                                                                                                                                                                                                                                                                                                                                                                       And they shall eat the flesh in that night, roast with fire, and unleavened bread; and with bitter herbs they shall eat it.
1826                                                                                                                                                                                                                                                                                                                                                                                                                    Eat not of it raw, nor sodden at all with water, but roast with fire; his head with his legs, and with the purtenance thereof.
1827                                                                                                                                                                                                                                                                                                                                                                                                                And ye shall let nothing of it remain until the morning; and that which remaineth of it until the morning ye shall burn with fire.
1828                                                                                                                                                                                                                                                                                                                                                                                  And thus shall ye eat it; with your loins girded, your shoes on your feet, and your staff in your hand; and ye shall eat it in haste: it is the LORD's passover.
1829                                                                                                                                                                                                                                                                                                                                        For I will pass through the land of Egypt this night, and will smite all the firstborn in the land of Egypt, both man and beast; and against all the gods of Egypt I will execute judgment: I am the LORD.
1830                                                                                                                                                                                                                                                                                                                                      And the blood shall be to you for a token upon the houses where ye are: and when I see the blood, I will pass over you, and the plague shall not be upon you to destroy you, when I smite the land of Egypt.
1831                                                                                                                                                                                                                                                                                                                                                                           And this day shall be unto you for a memorial; and ye shall keep it a feast to the LORD throughout your generations; ye shall keep it a feast by an ordinance for ever.
1832                                                                                                                                                                                                                                                                                                                   Seven days shall ye eat unleavened bread; even the first day ye shall put away leaven out of your houses: for whosoever eateth leavened bread from the first day until the seventh day, that soul shall be cut off from Israel.
1833                                                                                                                                                                                                                                                                                                             And in the first day there shall be an holy convocation, and in the seventh day there shall be an holy convocation to you; no manner of work shall be done in them, save that which every man must eat, that only may be done of you.
1834                                                                                                                                                                                                                                                                                                                               And ye shall observe the feast of unleavened bread; for in this selfsame day have I brought your armies out of the land of Egypt: therefore shall ye observe this day in your generations by an ordinance for ever.
1835                                                                                                                                                                                                                                                                                                                                                                                              In the first month, on the fourteenth day of the month at even, ye shall eat unleavened bread, until the one and twentieth day of the month at even.
1836                                                                                                                                                                                                                                                                                                                            Seven days shall there be no leaven found in your houses: for whosoever eateth that which is leavened, even that soul shall be cut off from the congregation of Israel, whether he be a stranger, or born in the land.
1837                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall eat nothing leavened; in all your habitations shall ye eat unleavened bread.
1838                                                                                                                                                                                                                                                                                                                                                                                               Then Moses called for all the elders of Israel, and said unto them, Draw out and take you a lamb according to your families, and kill the passover.
1839                                                                                                                                                                                                                                                                                                     And ye shall take a bunch of hyssop, and dip it in the blood that is in the basin, and strike the lintel and the two side posts with the blood that is in the basin; and none of you shall go out at the door of his house until the morning.
1840                                                                                                                                                                                                                                                                                                      For the LORD will pass through to smite the Egyptians; and when he seeth the blood upon the lintel, and on the two side posts, the LORD will pass over the door, and will not suffer the destroyer to come in unto your houses to smite you.
1841                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ye shall observe this thing for an ordinance to thee and to thy sons for ever.
1842                                                                                                                                                                                                                                                                                                                                                                                              And it shall come to pass, when ye be come to the land which the LORD will give you, according as he hath promised, that ye shall keep this service.
1843                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it shall come to pass, when your children shall say unto you, What mean ye by this service?
1844                                                                                                                                                                                                                                                                                                                That ye shall say, It is the sacrifice of the LORD's passover, who passed over the houses of the children of Israel in Egypt, when he smote the Egyptians, and delivered our houses. And the people bowed the head and worshipped.
1845                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel went away, and did as the LORD had commanded Moses and Aaron, so did they.
1846                                                                                                                                                                                                                                                                                                     And it came to pass, that at midnight the LORD smote all the firstborn in the land of Egypt, from the firstborn of Pharaoh that sat on his throne unto the firstborn of the captive that was in the dungeon; and all the firstborn of cattle.
1847                                                                                                                                                                                                                                                                                                                                                                    And Pharaoh rose up in the night, he, and all his servants, and all the Egyptians; and there was a great cry in Egypt; for there was not a house where there was not one dead.
1848                                                                                                                                                                                                                                                                                                                                                               And he called for Moses and Aaron by night, and said, Rise up, and get you forth from among my people, both ye and the children of Israel; and go, serve the LORD, as ye have said.
1849                                                                                                                                                                                                                                                                                                                                                                                                                                                            Also take your flocks and your herds, as ye have said, and be gone; and bless me also.
1850                                                                                                                                                                                                                                                                                                                                                                                                             And the Egyptians were urgent upon the people, that they might send them out of the land in haste; for they said, We be all dead men.
1851                                                                                                                                                                                                                                                                                                                                                                                                               And the people took their dough before it was leavened, their kneadingtroughs being bound up in their clothes upon their shoulders.
1852                                                                                                                                                                                                                                                                                                                                                                                              And the children of Israel did according to the word of Moses; and they borrowed of the Egyptians jewels of silver, and jewels of gold, and raiment:
1853                                                                                                                                                                                                                                                                                                                                                                                       And the LORD gave the people favor in the sight of the Egyptians, so that they lent unto them such things as they required. And they spoiled the Egyptians.
1854                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, beside children.
1855                                                                                                                                                                                                                                                                                                                                                                                                                                                       And a mixed multitude went up also with them; and flocks, and herds, even very much cattle.
1856                                                                                                                                                                                                                                                                                                                    And they baked unleavened cakes of the dough which they brought forth out of Egypt, for it was not leavened; because they were thrust out of Egypt, and could not tarry, neither had they prepared for themselves any victual.
1857                                                                                                                                                                                                                                                                                                                                                                                                                                              Now the sojourning of the children of Israel, who dwelt in Egypt, was four hundred and thirty years.
1858                                                                                                                                                                                                                                                                                                                                                                       And it came to pass at the end of the four hundred and thirty years, even the selfsame day it came to pass, that all the hosts of the LORD went out from the land of Egypt.
1859                                                                                                                                                                                                                                                                                                                                                   It is a night to be much observed unto the LORD for bringing them out from the land of Egypt: this is that night of the LORD to be observed of all the children of Israel in their generations.
1860                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses and Aaron, This is the ordinance of the passover: There shall no stranger eat thereof:
1861                                                                                                                                                                                                                                                                                                                                                                                                                                      But every man's servant that is bought for money, when thou hast circumcised him, then shall he eat thereof.
1862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A foreigner and an hired servant shall not eat thereof.
1863                                                                                                                                                                                                                                                                                                                                                                                                     In one house shall it be eaten; thou shalt not carry forth ought of the flesh abroad out of the house; neither shall ye break a bone thereof.
1864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All the congregation of Israel shall keep it.
1865                                                                                                                                                                                                                                                                                    And when a stranger shall sojourn with thee, and will keep the passover to the LORD, let all his males be circumcised, and then let him come near and keep it; and he shall be as one that is born in the land: for no uncircumcised person shall eat thereof.
1866                                                                                                                                                                                                                                                                                                                                                                                                                                                        One law shall be to him that is homeborn, and unto the stranger that sojourneth among you.
1867                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thus did all the children of Israel; as the LORD commanded Moses and Aaron, so did they.
1868                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass the selfsame day, that the LORD did bring the children of Israel out of the land of Egypt by their armies.
1869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
1870                                                                                                                                                                                                                                                                                                                                                                                                               Sanctify unto me all the firstborn, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine.
1871                                                                                                                                                                                                                                                                                                                        And Moses said unto the people, Remember this day, in which ye came out from Egypt, out of the house of bondage; for by strength of hand the LORD brought you out from this place: there shall no leavened bread be eaten.
1872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This day came ye out in the month Abib.
1873                                                                                                                                                                                                                                                        And it shall be when the LORD shall bring thee into the land of the Canaanites, and the Hittites, and the Amorites, and the Hivites, and the Jebusites, which he sware unto thy fathers to give thee, a land flowing with milk and honey, that thou shalt keep this service in this month.
1874                                                                                                                                                                                                                                                                                                                                                                                                                                                  Seven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to the LORD.
1875                                                                                                                                                                                                                                                                                                                                                                                Unleavened bread shall be eaten seven days; and there shall no leavened bread be seen with thee, neither shall there be leaven seen with thee in all thy quarters.
1876                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt show thy son in that day, saying, This is done because of that which the LORD did unto me when I came forth out of Egypt.
1877                                                                                                                                                                                                                                                                                                                                             And it shall be for a sign unto thee upon thine hand, and for a memorial between thine eyes, that the LORD's law may be in thy mouth: for with a strong hand hath the LORD brought thee out of Egypt.
1878                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt therefore keep this ordinance in his season from year to year.
1879                                                                                                                                                                                                                                                                                                                                                                                                 And it shall be when the LORD shall bring thee into the land of the Canaanites, as he sware unto thee and to thy fathers, and shall give it thee,
1880                                                                                                                                                                                                                                                                                                                                                                                   That thou shalt set apart unto the LORD all that openeth the matrix, and every firstling that cometh of a beast which thou hast; the males shall be the LORD's.
1881                                                                                                                                                                                                                                                                                                                                                   And every firstling of an ass thou shalt redeem with a lamb; and if thou wilt not redeem it, then thou shalt break his neck: and all the firstborn of man among thy children shalt thou redeem.
1882                                                                                                                                                                                                                                                                                                                                                  And it shall be when thy son asketh thee in time to come, saying, What is this? that thou shalt say unto him, By strength of hand the LORD brought us out from Egypt, from the house of bondage:
1883                                                                                                                                                                                                                                            And it came to pass, when Pharaoh would hardly let us go, that the LORD slew all the firstborn in the land of Egypt, both the firstborn of man, and the firstborn of beast: therefore I sacrifice to the LORD all that openeth the matrix, being males; but all the firstborn of my children I redeem.
1884                                                                                                                                                                                                                                                                                                                                                                                                And it shall be for a token upon thine hand, and for frontlets between thine eyes: for by strength of hand the LORD brought us forth out of Egypt.
1885                                                                                                                                                                                                                                                                                             And it came to pass, when Pharaoh had let the people go, that God led them not through the way of the land of the Philistines, although that was near; for God said, Lest peradventure the people repent when they see war, and they return to Egypt:
1886                                                                                                                                                                                                                                                                                                                                                                                            But God led the people about, through the way of the wilderness of the Red sea: and the children of Israel went up harnessed out of the land of Egypt.
1887                                                                                                                                                                                                                                                                                                                                                             And Moses took the bones of Joseph with him: for he had straitly sworn the children of Israel, saying, God will surely visit you; and ye shall carry up my bones away hence with you.
1888                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness.
1889                                                                                                                                                                                                                                                                                                                                                                                  And the LORD went before them by day in a pillar of a cloud, to lead them the way; and by night in a pillar of fire, to give them light; to go by day and night:
1890                                                                                                                                                                                                                                                                                                                                                                                                                                         He took not away the pillar of the cloud by day, nor the pillar of fire by night, from before the people.
1891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
1892                                                                                                                                                                                                                                                                                                                                                                        Speak unto the children of Israel, that they turn and encamp before Pihahiroth, between Migdol and the sea, over against Baalzephon: before it shall ye encamp by the sea.
1893                                                                                                                                                                                                                                                                                                                                                                                                                                 For Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in.
1894                                                                                                                                                                                                                                                                                                                                                   And I will harden Pharaoh's heart, that he shall follow after them; and I will be honored upon Pharaoh, and upon all his host; that the Egyptians may know that I am the LORD. And they did so.
1895                                                                                                                                                                                                                                                                                                                             And it was told the king of Egypt that the people fled: and the heart of Pharaoh and of his servants was turned against the people, and they said, Why have we done this, that we have let Israel go from serving us?
1896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he made ready his chariot, and took his people with him:
1897                                                                                                                                                                                                                                                                                                                                                                                                                                      And he took six hundred chosen chariots, and all the chariots of Egypt, and captains over every one of them.
1898                                                                                                                                                                                                                                                                                                                                                                                     And the LORD hardened the heart of Pharaoh king of Egypt, and he pursued after the children of Israel: and the children of Israel went out with an high hand.
1899                                                                                                                                                                                                                                                                                                                                                       But the Egyptians pursued after them, all the horses and chariots of Pharaoh, and his horsemen, and his army, and overtook them encamping by the sea, beside Pihahiroth, before Baalzephon.
1900                                                                                                                                                                                                                                                                                                                                            And when Pharaoh drew nigh, the children of Israel lifted up their eyes, and, behold, the Egyptians marched after them; and they were sore afraid: and the children of Israel cried out unto the LORD.
1901                                                                                                                                                                                                                                                                                                                                                        And they said unto Moses, Because there were no graves in Egypt, hast thou taken us away to die in the wilderness? wherefore hast thou dealt thus with us, to carry us forth out of Egypt?
1902                                                                                                                                                                                                                                                                                                                                      Is not this the word that we did tell thee in Egypt, saying, Let us alone, that we may serve the Egyptians? For it had been better for us to serve the Egyptians, than that we should die in the wilderness.
1903                                                                                                                                                                                                                                                                                                                              And Moses said unto the people, Fear ye not, stand still, and see the salvation of the LORD, which he will show to you to day: for the Egyptians whom ye have seen to day, ye shall see them again no more for ever.
1904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD shall fight for you, and ye shall hold your peace.
1905                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward:
1906                                                                                                                                                                                                                                                                                                                                                                                 But lift thou up thy rod, and stretch out thine hand over the sea, and divide it: and the children of Israel shall go on dry ground through the midst of the sea.
1907                                                                                                                                                                                                                                                                                                                                                      And I, behold, I will harden the hearts of the Egyptians, and they shall follow them: and I will get me honor upon Pharaoh, and upon all his host, upon his chariots, and upon his horsemen.
1908                                                                                                                                                                                                                                                                                                                                                                                                              And the Egyptians shall know that I am the LORD, when I have gotten me honor upon Pharaoh, upon his chariots, and upon his horsemen.
1909                                                                                                                                                                                                                                                                                                                                                                         And the angel of God, which went before the camp of Israel, removed and went behind them; and the pillar of the cloud went from before their face, and stood behind them:
1910                                                                                                                                                                                                                                                                                                                                        And it came between the camp of the Egyptians and the camp of Israel; and it was a cloud and darkness to them, but it gave light by night to these: so that the one came not near the other all the night.
1911                                                                                                                                                                                                                                                                                                                                                               And Moses stretched out his hand over the sea; and the LORD caused the sea to go back by a strong east wind all that night, and made the sea dry land, and the waters were divided.
1912                                                                                                                                                                                                                                                                                                                                                                                       And the children of Israel went into the midst of the sea upon the dry ground: and the waters were a wall unto them on their right hand, and on their left.
1913                                                                                                                                                                                                                                                                                                                                                                                                             And the Egyptians pursued, and went in after them to the midst of the sea, even all Pharaoh's horses, his chariots, and his horsemen.
1914                                                                                                                                                                                                                                                                                                                                                                And it came to pass, that in the morning watch the LORD looked unto the host of the Egyptians through the pillar of fire and of the cloud, and troubled the host of the Egyptians,
1915                                                                                                                                                                                                                                                                                                                                                           And took off their chariot wheels, that they drave them heavily: so that the Egyptians said, Let us flee from the face of Israel; for the LORD fighteth for them against the Egyptians.
1916                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses, Stretch out thine hand over the sea, that the waters may come again upon the Egyptians, upon their chariots, and upon their horsemen.
1917                                                                                                                                                                                                                                                                                                                                 And Moses stretched forth his hand over the sea, and the sea returned to his strength when the morning appeared; and the Egyptians fled against it; and the LORD overthrew the Egyptians in the midst of the sea.
1918                                                                                                                                                                                                                                                                                                                                                                    And the waters returned, and covered the chariots, and the horsemen, and all the host of Pharaoh that came into the sea after them; there remained not so much as one of them.
1919                                                                                                                                                                                                                                                                                                                                                                                             But the children of Israel walked upon dry land in the midst of the sea; and the waters were a wall unto them on their right hand, and on their left.
1920                                                                                                                                                                                                                                                                                                                                                                                                                       Thus the LORD saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea shore.
1921                                                                                                                                                                                                                                                                                                                                                                                               And Israel saw that great work which the LORD did upon the Egyptians: and the people feared the LORD, and believed the LORD, and his servant Moses.
1922                                                                                                                                                                                                                                                                                                                                          Then sang Moses and the children of Israel this song unto the LORD, and spake, saying, I will sing unto the LORD, for he hath triumphed gloriously: the horse and his rider hath he thrown into the sea.
1923                                                                                                                                                                                                                                                                                                                                                                                       The LORD is my strength and song, and he is become my salvation: he is my God, and I will prepare him an habitation; my father's God, and I will exalt him.
1924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The LORD is a man of war: the LORD is his name.
1925                                                                                                                                                                                                                                                                                                                                                                                                                                   Pharaoh's chariots and his host hath he cast into the sea: his chosen captains also are drowned in the Red sea.
1926                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The depths have covered them: they sank into the bottom as a stone.
1927                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy right hand, O LORD, is become glorious in power: thy right hand, O LORD, hath dashed in pieces the enemy.
1928                                                                                                                                                                                                                                                                                                                                                                                       And in the greatness of thine excellency thou hast overthrown them that rose up against thee: thou sentest forth thy wrath, which consumed them as stubble.
1929                                                                                                                                                                                                                                                                                                                                                                                 And with the blast of thy nostrils the waters were gathered together, the floods stood upright as an heap, and the depths were congealed in the heart of the sea.
1930                                                                                                                                                                                                                                                                                                                                                                                  The enemy said, I will pursue, I will overtake, I will divide the spoil; my lust shall be satisfied upon them; I will draw my sword, my hand shall destroy them.
1931                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou didst blow with thy wind, the sea covered them: they sank as lead in the mighty waters.
1932                                                                                                                                                                                                                                                                                                                                                                                                                         Who is like unto thee, O LORD, among the gods? who is like thee, glorious in holiness, fearful in praises, doing wonders?
1933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou stretchedst out thy right hand, the earth swallowed them.
1934                                                                                                                                                                                                                                                                                                                                                                                                             Thou in thy mercy hast led forth the people which thou hast redeemed: thou hast guided them in thy strength unto thy holy habitation.
1935                                                                                                                                                                                                                                                                                                                                                                                                                                                     The people shall hear, and be afraid: sorrow shall take hold on the inhabitants of Palestina.
1936                                                                                                                                                                                                                                                                                                                                                                                               Then the dukes of Edom shall be amazed; the mighty men of Moab, trembling shall take hold upon them; all the inhabitants of Canaan shall melt away.
1937                                                                                                                                                                                                                                                                                                                                                    Fear and dread shall fall upon them; by the greatness of thine arm they shall be as still as a stone; till thy people pass over, O LORD, till the people pass over, which thou hast purchased.
1938                                                                                                                                                                                                                                                                                                                                       Thou shalt bring them in, and plant them in the mountain of thine inheritance, in the place, O LORD, which thou hast made for thee to dwell in, in the Sanctuary, O LORD, which thy hands have established.
1939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD shall reign for ever and ever.
1940                                                                                                                                                                                                                                                                                                                           For the horse of Pharaoh went in with his chariots and with his horsemen into the sea, and the LORD brought again the waters of the sea upon them; but the children of Israel went on dry land in the midst of the sea.
1941                                                                                                                                                                                                                                                                                                                                                                                                   And Miriam the prophetess, the sister of Aaron, took a timbrel in her hand; and all the women went out after her with timbrels and with dances.
1942                                                                                                                                                                                                                                                                                                                                                                                                             And Miriam answered them, Sing ye to the LORD, for he hath triumphed gloriously; the horse and his rider hath he thrown into the sea.
1943                                                                                                                                                                                                                                                                                                                                                                                          So Moses brought Israel from the Red sea, and they went out into the wilderness of Shur; and they went three days in the wilderness, and found no water.
1944                                                                                                                                                                                                                                                                                                                                                                                                        And when they came to Marah, they could not drink of the waters of Marah, for they were bitter: therefore the name of it was called Marah.
1945                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the people murmured against Moses, saying, What shall we drink?
1946                                                                                                                                                                                                                                                                                                                                      And he cried unto the LORD; and the LORD showed him a tree, which when he had cast into the waters, the waters were made sweet: there he made for them a statute and an ordinance, and there he proved them,
1947                                                                                                                                                                                                                            And said, If thou wilt diligently hearken to the voice of the LORD thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the LORD that healeth thee.
1948                                                                                                                                                                                                                                                                                                                                                                                                                And they came to Elim, where were twelve wells of water, and threescore and ten palm trees: and they encamped there by the waters.
1949                                                                                                                                                                                                                                                                                              And they took their journey from Elim, and all the congregation of the children of Israel came unto the wilderness of Sin, which is between Elim and Sinai, on the fifteenth day of the second month after their departing out of the land of Egypt.
1950                                                                                                                                                                                                                                                                                                                                                                                                                                          And the whole congregation of the children of Israel murmured against Moses and Aaron in the wilderness:
1951                                                                                                                                                                                                                                                               And the children of Israel said unto them, Would to God we had died by the hand of the LORD in the land of Egypt, when we sat by the flesh pots, and when we did eat bread to the full; for ye have brought us forth into this wilderness, to kill this whole assembly with hunger.
1952                                                                                                                                                                                                                                                                                                                                    Then said the LORD unto Moses, Behold, I will rain bread from heaven for you; and the people shall go out and gather a certain rate every day, that I may prove them, whether they will walk in my law, or no.
1953                                                                                                                                                                                                                                                                                                                                                                                                 And it shall come to pass, that on the sixth day they shall prepare that which they bring in; and it shall be twice as much as they gather daily.
1954                                                                                                                                                                                                                                                                                                                                                                                                  And Moses and Aaron said unto all the children of Israel, At even, then ye shall know that the LORD hath brought you out from the land of Egypt:
1955                                                                                                                                                                                                                                                                                                                                                                                    And in the morning, then ye shall see the glory of the LORD; for that he heareth your murmurings against the LORD: and what are we, that ye murmur against us?
1956                                                                                                                                                                                                                                                                  And Moses said, This shall be, when the LORD shall give you in the evening flesh to eat, and in the morning bread to the full; for that the LORD heareth your murmurings which ye murmur against him: and what are we? your murmurings are not against us, but against the LORD.
1957                                                                                                                                                                                                                                                                                                                                                                                                And Moses spake unto Aaron, Say unto all the congregation of the children of Israel, Come near before the LORD: for he hath heard your murmurings.
1958                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as Aaron spake unto the whole congregation of the children of Israel, that they looked toward the wilderness, and, behold, the glory of the LORD appeared in the cloud.
1959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
1960                                                                                                                                                                                                                                                                                                                                      I have heard the murmurings of the children of Israel: speak unto them, saying, At even ye shall eat flesh, and in the morning ye shall be filled with bread; and ye shall know that I am the LORD your God.
1961                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, that at even the quails came up, and covered the camp: and in the morning the dew lay round about the host.
1962                                                                                                                                                                                                                                                                                                                                                                                           And when the dew that lay was gone up, behold, upon the face of the wilderness there lay a small round thing, as small as the hoar frost on the ground.
1963                                                                                                                                                                                                                                                                                                                                                   And when the children of Israel saw it, they said one to another, It is manna: for they wist not what it was. And Moses said unto them, This is the bread which the LORD hath given you to eat.
1964                                                                                                                                                                                                                                                                                                                               This is the thing which the LORD hath commanded, Gather of it every man according to his eating, an omer for every man, according to the number of your persons; take ye every man for them which are in his tents.
1965                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel did so, and gathered, some more, some less.
1966                                                                                                                                                                                                                                                                                                                                                                         And when they did mete it with an omer, he that gathered much had nothing over, and he that gathered little had no lack; they gathered every man according to his eating.
1967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses said, Let no man leave of it till the morning.
1968                                                                                                                                                                                                                                                                                                                                                                                        Notwithstanding they hearkened not unto Moses; but some of them left of it until the morning, and it bred worms, and stank: and Moses was wroth with them.
1969                                                                                                                                                                                                                                                                                                                                                                                                                                     And they gathered it every morning, every man according to his eating: and when the sun waxed hot, it melted.
1970                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, that on the sixth day they gathered twice as much bread, two omers for one man: and all the rulers of the congregation came and told Moses.
1971                                                                                                                                                                                                                                                                            And he said unto them, This is that which the LORD hath said, To morrow is the rest of the holy sabbath unto the LORD: bake that which ye will bake to day, and seethe that ye will seethe; and that which remaineth over lay up for you to be kept until the morning.
1972                                                                                                                                                                                                                                                                                                                                                                                                                                    And they laid it up till the morning, as Moses bade: and it did not stink, neither was there any worm therein.
1973                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses said, Eat that to day; for to day is a sabbath unto the LORD: to day ye shall not find it in the field.
1974                                                                                                                                                                                                                                                                                                                                                                                                                                             Six days ye shall gather it; but on the seventh day, which is the sabbath, in it there shall be none.
1975                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, that there went out some of the people on the seventh day for to gather, and they found none.
1976                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto Moses, How long refuse ye to keep my commandments and my laws?
1977                                                                                                                                                                                                                                                                                                                                            See, for that the LORD hath given you the sabbath, therefore he giveth you on the sixth day the bread of two days; abide ye every man in his place, let no man go out of his place on the seventh day.
1978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the people rested on the seventh day.
1979                                                                                                                                                                                                                                                                                                                                                                                                And the house of Israel called the name thereof Manna: and it was like coriander seed, white; and the taste of it was like wafers made with honey.
1980                                                                                                                                                                                                                                                                                                         And Moses said, This is the thing which the LORD commandeth, Fill an omer of it to be kept for your generations; that they may see the bread wherewith I have fed you in the wilderness, when I brought you forth from the land of Egypt.
1981                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said unto Aaron, Take a pot, and put an omer full of manna therein, and lay it up before the LORD, to be kept for your generations.
1982                                                                                                                                                                                                                                                                                                                                                                                                                                                                As the LORD commanded Moses, so Aaron laid it up before the Testimony, to be kept.
1983                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel did eat manna forty years, until they came to a land inhabited; they did eat manna, until they came unto the borders of the land of Canaan.
1984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now an omer is the tenth part of an ephah.
1985                                                                                                                                                                                                                                                                                                                 And all the congregation of the children of Israel journeyed from the wilderness of Sin, after their journeys, according to the commandment of the LORD, and pitched in Rephidim: and there was no water for the people to drink.
1986                                                                                                                                                                                                                                                                                                                                                                             Wherefore the people did chide with Moses, and said, Give us water that we may drink. And Moses said unto them, Why chide ye with me? wherefore do ye tempt the LORD?
1987                                                                                                                                                                                                                                                                                                                                    And the people thirsted there for water; and the people murmured against Moses, and said, Wherefore is this that thou hast brought us up out of Egypt, to kill us and our children and our cattle with thirst?
1988                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses cried unto the LORD, saying, What shall I do unto this people? they be almost ready to stone me.
1989                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Moses, Go on before the people, and take with thee of the elders of Israel; and thy rod, wherewith thou smotest the river, take in thine hand, and go.
1990                                                                                                                                                                                                                                                                                                                             Behold, I will stand before thee there upon the rock in Horeb; and thou shalt smite the rock, and there shall come water out of it, that the people may drink. And Moses did so in the sight of the elders of Israel.
1991                                                                                                                                                                                                                                                                                                                                                               And he called the name of the place Massah, and Meribah, because of the chiding of the children of Israel, and because they tempted the LORD, saying, Is the LORD among us, or not?
1992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then came Amalek, and fought with Israel in Rephidim.
1993                                                                                                                                                                                                                                                                                                                                                                                     And Moses said unto Joshua, Choose us out men, and go out, fight with Amalek: to morrow I will stand on the top of the hill with the rod of God in mine hand.
1994                                                                                                                                                                                                                                                                                                                                                                                                                         So Joshua did as Moses had said to him, and fought with Amalek: and Moses, Aaron, and Hur went up to the top of the hill.
1995                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Moses held up his hand, that Israel prevailed: and when he let down his hand, Amalek prevailed.
1996                                                                                                                                                                                                                                                                                          But Moses hands were heavy; and they took a stone, and put it under him, and he sat thereon; and Aaron and Hur stayed up his hands, the one on the one side, and the other on the other side; and his hands were steady until the going down of the sun.
1997                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua discomfited Amalek and his people with the edge of the sword.
1998                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses, Write this for a memorial in a book, and rehearse it in the ears of Joshua: for I will utterly put out the remembrance of Amalek from under heaven.
1999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses built an altar, and called the name of it Jehovahnissi:
2000                                                                                                                                                                                                                                                                                                                                                                                                                                   For he said, Because the LORD hath sworn that the LORD will have war with Amalek from generation to generation.
2001                                                                                                                                                                                                                                                                                                                                                                  When Jethro, the priest of Midian, Moses' father in law, heard of all that God had done for Moses, and for Israel his people, and that the LORD had brought Israel out of Egypt;
2002                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then Jethro, Moses' father in law, took Zipporah, Moses' wife, after he had sent her back,
2003                                                                                                                                                                                                                                                                                                                                                                                                                                  And her two sons; of which the name of the one was Gershom; for he said, I have been an alien in a strange land:
2004                                                                                                                                                                                                                                                                                                                                                                                                              And the name of the other was Eliezer; for the God of my father, said he, was mine help, and delivered me from the sword of Pharaoh:
2005                                                                                                                                                                                                                                                                                                                                                                                                          And Jethro, Moses' father in law, came with his sons and his wife unto Moses into the wilderness, where he encamped at the mount of God:
2006                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said unto Moses, I thy father in law Jethro am come unto thee, and thy wife, and her two sons with her.
2007                                                                                                                                                                                                                                                                                                                                                                                         And Moses went out to meet his father in law, and did obeisance, and kissed him; and they asked each other of their welfare; and they came into the tent.
2008                                                                                                                                                                                                                                                                                                                                         And Moses told his father in law all that the LORD had done unto Pharaoh and to the Egyptians for Israel's sake, and all the travail that had come upon them by the way, and how the LORD delivered them.
2009                                                                                                                                                                                                                                                                                                                                                                                                               And Jethro rejoiced for all the goodness which the LORD had done to Israel, whom he had delivered out of the hand of the Egyptians.
2010                                                                                                                                                                                                                                                                                                                                                And Jethro said, Blessed be the LORD, who hath delivered you out of the hand of the Egyptians, and out of the hand of Pharaoh, who hath delivered the people from under the hand of the Egyptians.
2011                                                                                                                                                                                                                                                                                                                                                                                                                                 Now I know that the LORD is greater than all gods: for in the thing wherein they dealt proudly he was above them.
2012                                                                                                                                                                                                                                                                                                                                                                  And Jethro, Moses' father in law, took a burnt offering and sacrifices for God: and Aaron came, and all the elders of Israel, to eat bread with Moses' father in law before God.
2013                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass on the morrow, that Moses sat to judge the people: and the people stood by Moses from the morning unto the evening.
2014                                                                                                                                                                                                                                                                                                                              And when Moses' father in law saw all that he did to the people, he said, What is this thing that thou doest to the people? why sittest thou thyself alone, and all the people stand by thee from morning unto even?
2015                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses said unto his father in law, Because the people come unto me to inquire of God:
2016                                                                                                                                                                                                                                                                                                                                                                                                       When they have a matter, they come unto me; and I judge between one and another, and I do make them know the statutes of God, and his laws.
2017                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses' father in law said unto him, The thing that thou doest is not good.
2018                                                                                                                                                                                                                                                                                                                                                                                    Thou wilt surely wear away, both thou, and this people that is with thee: for this thing is too heavy for thee; thou art not able to perform it thyself alone.
2019                                                                                                                                                                                                                                                                                                                                                                                  Hearken now unto my voice, I will give thee counsel, and God shall be with thee: Be thou for the people to God-ward, that thou mayest bring the causes unto God:
2020                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt teach them ordinances and laws, and shalt show them the way wherein they must walk, and the work that they must do.
2021                                                                                                                                                                                                                                                                                                              Moreover thou shalt provide out of all the people able men, such as fear God, men of truth, hating covetousness; and place such over them, to be rulers of thousands, and rulers of hundreds, rulers of fifties, and rulers of tens:
2022                                                                                                                                                                                                                                                                                                          And let them judge the people at all seasons: and it shall be, that every great matter they shall bring unto thee, but every small matter they shall judge: so shall it be easier for thyself, and they shall bear the burden with thee.
2023                                                                                                                                                                                                                                                                                                                                                                                               If thou shalt do this thing, and God command thee so, then thou shalt be able to endure, and all this people shall also go to their place in peace.
2024                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Moses hearkened to the voice of his father in law, and did all that he had said.
2025                                                                                                                                                                                                                                                                                                                                                                                  And Moses chose able men out of all Israel, and made them heads over the people, rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens.
2026                                                                                                                                                                                                                                                                                                                                                                                                                And they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves.
2027                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses let his father in law depart; and he went his way into his own land.
2028                                                                                                                                                                                                                                                                                                                                                                                                    In the third month, when the children of Israel were gone forth out of the land of Egypt, the same day came they into the wilderness of Sinai.
2029                                                                                                                                                                                                                                                                                                                                                                                          For they were departed from Rephidim, and were come to the desert of Sinai, and had pitched in the wilderness; and there Israel camped before the mount.
2030                                                                                                                                                                                                                                                                                                                                                                                 And Moses went up unto God, and the LORD called unto him out of the mountain, saying, Thus shalt thou say to the house of Jacob, and tell the children of Israel;
2031                                                                                                                                                                                                                                                                                                                                                                                                                                     Ye have seen what I did unto the Egyptians, and how I bare you on eagles' wings, and brought you unto myself.
2032                                                                                                                                                                                                                                                                                                                                                                                   Now therefore, if ye will obey my voice indeed, and keep my covenant, then ye shall be a peculiar treasure unto me above all people: for all the earth is mine:
2033                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall be unto me a kingdom of priests, and an holy nation. These are the words which thou shalt speak unto the children of Israel.
2034                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses came and called for the elders of the people, and laid before their faces all these words which the LORD commanded him.
2035                                                                                                                                                                                                                                                                                                                                                                                               And all the people answered together, and said, All that the LORD hath spoken we will do. And Moses returned the words of the people unto the LORD.
2036                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, Lo, I come unto thee in a thick cloud, that the people may hear when I speak with thee, and believe thee for ever. And Moses told the words of the people unto the LORD.
2037                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, Go unto the people, and sanctify them to day and to morrow, and let them wash their clothes,
2038                                                                                                                                                                                                                                                                                                                                                                                                                    And be ready against the third day: for the third day the LORD will come down in the sight of all the people upon mount Sinai.
2039                                                                                                                                                                                                                                                                                                                                   And thou shalt set bounds unto the people round about, saying, Take heed to yourselves, that ye go not up into the mount, or touch the border of it: whosoever toucheth the mount shall be surely put to death:
2040                                                                                                                                                                                                                                                                                                                                                 There shall not an hand touch it, but he shall surely be stoned, or shot through; whether it be beast or man, it shall not live: when the trumpet soundeth long, they shall come up to the mount.
2041                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses went down from the mount unto the people, and sanctified the people; and they washed their clothes.
2042                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto the people, Be ready against the third day: come not at your wives.
2043                                                                                                                                                                                                                                                                                                                And it came to pass on the third day in the morning, that there were thunders and lightnings, and a thick cloud upon the mount, and the voice of the trumpet exceeding loud; so that all the people that was in the camp trembled.
2044                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses brought forth the people out of the camp to meet with God; and they stood at the nether part of the mount.
2045                                                                                                                                                                                                                                                                                                                                                              And mount Sinai was altogether on a smoke, because the LORD descended upon it in fire: and the smoke thereof ascended as the smoke of a furnace, and the whole mount quaked greatly.
2046                                                                                                                                                                                                                                                                                                                                                                                                                        And when the voice of the trumpet sounded long, and waxed louder and louder, Moses spake, and God answered him by a voice.
2047                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD came down upon mount Sinai, on the top of the mount: and the LORD called Moses up to the top of the mount; and Moses went up.
2048                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses, Go down, charge the people, lest they break through unto the LORD to gaze, and many of them perish.
2049                                                                                                                                                                                                                                                                                                                                                                                                                                  And let the priests also, which come near to the LORD, sanctify themselves, lest the LORD break forth upon them.
2050                                                                                                                                                                                                                                                                                                                                                                                               And Moses said unto the LORD, The people cannot come up to mount Sinai: for thou chargedst us, saying, Set bounds about the mount, and sanctify it.
2051                                                                                                                                                                                                                                                                                                                                 And the LORD said unto him, Away, get thee down, and thou shalt come up, thou, and Aaron with thee: but let not the priests and the people break through to come up unto the LORD, lest he break forth upon them.
2052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Moses went down unto the people, and spake unto them.
2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And God spake all these words, saying,
2054                                                                                                                                                                                                                                                                                                                                                                                                                                             I am the LORD thy God, which have brought thee out of the land of Egypt, out of the house of bondage.
2055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt have no other gods before me.
2056                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not make unto thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the water under the earth.
2057                                                                                                                                                                                                                                                                                                                               Thou shalt not bow down thyself to them, nor serve them: for I the LORD thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me;
2058                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And showing mercy unto thousands of them that love me, and keep my commandments.
2059                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt not take the name of the LORD thy God in vain; for the LORD will not hold him guiltless that taketh his name in vain.
2060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Remember the sabbath day, to keep it holy.
2061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Six days shalt thou labor, and do all thy work:
2062                                                                                                                                                                                                                                                                                                                    But the seventh day is the sabbath of the LORD thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, thy manservant, nor thy maidservant, nor thy cattle, nor thy stranger that is within thy gates:
2063                                                                                                                                                                                                                                                                                                                                                                        For in six days the LORD made heaven and earth, the sea, and all that in them is, and rested the seventh day: wherefore the LORD blessed the sabbath day, and hallowed it.
2064                                                                                                                                                                                                                                                                                                                                                                                                                                      Honor thy father and thy mother: that thy days may be long upon the land which the LORD thy God giveth thee.
2065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt not kill.
2066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not commit adultery.
2067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not steal.
2068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not bear false witness against thy neighbor.
2069                                                                                                                                                                                                                                                                                                                                                      Thou shalt not covet thy neighbor's house, thou shalt not covet thy neighbor's wife, nor his manservant, nor his maidservant, nor his ox, nor his ass, nor any thing that is thy neighbor's.
2070                                                                                                                                                                                                                                                                                                                                                                 And all the people saw the thunderings, and the lightnings, and the noise of the trumpet, and the mountain smoking: and when the people saw it, they removed, and stood afar off.
2071                                                                                                                                                                                                                                                                                                                                                                                                                                       And they said unto Moses, Speak thou with us, and we will hear: but let not God speak with us, lest we die.
2072                                                                                                                                                                                                                                                                                                                                                                                                              And Moses said unto the people, Fear not: for God is come to prove you, and that his fear may be before your faces, that ye sin not.
2073                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the people stood afar off, and Moses drew near unto the thick darkness where God was.
2074                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto Moses, Thus thou shalt say unto the children of Israel, Ye have seen that I have talked with you from heaven.
2075                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ye shall not make with me gods of silver, neither shall ye make unto you gods of gold.
2076                                                                                                                                                                                                                                                                                                                An altar of earth thou shalt make unto me, and shalt sacrifice thereon thy burnt offerings, and thy peace offerings, thy sheep, and thine oxen: in all places where I record my name I will come unto thee, and I will bless thee.
2077                                                                                                                                                                                                                                                                                                                                                                                                   And if thou wilt make me an altar of stone, thou shalt not build it of hewn stone: for if thou lift up thy tool upon it, thou hast polluted it.
2078                                                                                                                                                                                                                                                                                                                                                                                                                                                  Neither shalt thou go up by steps unto mine altar, that thy nakedness be not discovered thereon.
2079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now these are the judgments which thou shalt set before them.
2080                                                                                                                                                                                                                                                                                                                                                                                                                                     If thou buy an Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing.
2081                                                                                                                                                                                                                                                                                                                                                                                                                                    If he came in by himself, he shall go out by himself: if he were married, then his wife shall go out with him.
2082                                                                                                                                                                                                                                                                                                                                                                                    If his master have given him a wife, and she have born him sons or daughters; the wife and her children shall be her master's, and he shall go out by himself.
2083                                                                                                                                                                                                                                                                                                                                                                                                                                         And if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free:
2084                                                                                                                                                                                                                                                                                                                                              Then his master shall bring him unto the judges; he shall also bring him to the door, or unto the door post; and his master shall bore his ear through with an awl; and he shall serve him for ever.
2085                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if a man sell his daughter to be a maidservant, she shall not go out as the menservants do.
2086                                                                                                                                                                                                                                                                                                                                          If she please not her master, who hath betrothed her to himself, then shall he let her be redeemed: to sell her unto a strange nation he shall have no power, seeing he hath dealt deceitfully with her.
2087                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if he have betrothed her unto his son, he shall deal with her after the manner of daughters.
2088                                                                                                                                                                                                                                                                                                                                                                                                                                              If he take him another wife; her food, her raiment, and her duty of marriage, shall he not diminish.
2089                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if he do not these three unto her, then shall she go out free without money.
2090                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He that smiteth a man, so that he die, shall be surely put to death.
2091                                                                                                                                                                                                                                                                                                                                                                                                                          And if a man lie not in wait, but God deliver him into his hand; then I will appoint thee a place whither he shall flee.
2092                                                                                                                                                                                                                                                                                                                                                                                                                 But if a man come presumptuously upon his neighbor, to slay him with guile; thou shalt take him from mine altar, that he may die.
2093                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that smiteth his father, or his mother, shall be surely put to death.
2094                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death.
2095                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that curseth his father, or his mother, shall surely be put to death.
2096                                                                                                                                                                                                                                                                                                                                                                                                                            And if men strive together, and one smite another with a stone, or with his fist, and he die not, but keepeth his bed:
2097                                                                                                                                                                                                                                                                                                                                                                  If he rise again, and walk abroad upon his staff, then shall he that smote him be quit: only he shall pay for the loss of his time, and shall cause him to be thoroughly healed.
2098                                                                                                                                                                                                                                                                                                                                                                                                                                  And if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall be surely punished.
2099                                                                                                                                                                                                                                                                                                                                                                                                                                                      Notwithstanding, if he continue a day or two, he shall not be punished: for he is his money.
2100                                                                                                                                                                                                                                                                                                             If men strive, and hurt a woman with child, so that her fruit depart from her, and yet no mischief follow: he shall be surely punished, according as the woman's husband will lay upon him; and he shall pay as the judges determine.
2101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if any mischief follow, then thou shalt give life for life,
2102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Eye for eye, tooth for tooth, hand for hand, foot for foot,
2103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Burning for burning, wound for wound, stripe for stripe.
2104                                                                                                                                                                                                                                                                                                                                                                                                                   And if a man smite the eye of his servant, or the eye of his maid, that it perish; he shall let him go free for his eye's sake.
2105                                                                                                                                                                                                                                                                                                                                                                                                                            And if he smite out his manservant's tooth, or his maidservant's tooth; he shall let him go free for his tooth's sake.
2106                                                                                                                                                                                                                                                                                                                                                                                       If an ox gore a man or a woman, that they die: then the ox shall be surely stoned, and his flesh shall not be eaten; but the owner of the ox shall be quit.
2107                                                                                                                                                                                                                                                                                                     But if the ox were wont to push with his horn in time past, and it hath been testified to his owner, and he hath not kept him in, but that he hath killed a man or a woman; the ox shall be stoned, and his owner also shall be put to death.
2108                                                                                                                                                                                                                                                                                                                                                                                                                                If there be laid on him a sum of money, then he shall give for the ransom of his life whatsoever is laid upon him.
2109                                                                                                                                                                                                                                                                                                                                                                                                                                      Whether he have gored a son, or have gored a daughter, according to this judgment shall it be done unto him.
2110                                                                                                                                                                                                                                                                                                                                                                                                         If the ox shall push a manservant or a maidservant; he shall give unto their master thirty shekels of silver, and the ox shall be stoned.
2111                                                                                                                                                                                                                                                                                                                                                                                                                                   And if a man shall open a pit, or if a man shall dig a pit, and not cover it, and an ox or an ass fall therein;
2112                                                                                                                                                                                                                                                                                                                                                                                                                                  The owner of the pit shall make it good, and give money unto the owner of them; and the dead beast shall be his.
2113                                                                                                                                                                                                                                                                                                                                                                                            And if one man's ox hurt another's, that he die; then they shall sell the live ox, and divide the money of it; and the dead ox also they shall divide.
2114                                                                                                                                                                                                                                                                                                                                                                                   Or if it be known that the ox hath used to push in time past, and his owner hath not kept him in; he shall surely pay ox for ox; and the dead shall be his own.
2115                                                                                                                                                                                                                                                                                                                                                                                                                If a man shall steal an ox, or a sheep, and kill it, or sell it; he shall restore five oxen for an ox, and four sheep for a sheep.
2116                                                                                                                                                                                                                                                                                                                                                                                                                                                If a thief be found breaking up, and be smitten that he die, there shall no blood be shed for him.
2117                                                                                                                                                                                                                                                                                                                                                                                    If the sun be risen upon him, there shall be blood shed for him; for he should make full restitution; if he have nothing, then he shall be sold for his theft.
2118                                                                                                                                                                                                                                                                                                                                                                                                                                   If the theft be certainly found in his hand alive, whether it be ox, or ass, or sheep; he shall restore double.
2119                                                                                                                                                                                                                                                                                                                            If a man shall cause a field or vineyard to be eaten, and shall put in his beast, and shall feed in another man's field; of the best of his own field, and of the best of his own vineyard, shall he make restitution.
2120                                                                                                                                                                                                                                                                                                                                                            If fire break out, and catch in thorns, so that the stacks of corn, or the standing corn, or the field, be consumed therewith; he that kindled the fire shall surely make restitution.
2121                                                                                                                                                                                                                                                                                                                                                                                              If a man shall deliver unto his neighbor money or stuff to keep, and it be stolen out of the man's house; if the thief be found, let him pay double.
2122                                                                                                                                                                                                                                                                                                                                                                                          If the thief be not found, then the master of the house shall be brought unto the judges, to see whether he have put his hand unto his neighbor's goods.
2123                                                                                                                                                                                                                                                         For all manner of trespass, whether it be for ox, for ass, for sheep, for raiment, or for any manner of lost thing which another challengeth to be his, the cause of both parties shall come before the judges; and whom the judges shall condemn, he shall pay double unto his neighbor.
2124                                                                                                                                                                                                                                                                                                                                                                                                 If a man deliver unto his neighbor an ass, or an ox, or a sheep, or any beast, to keep; and it die, or be hurt, or driven away, no man seeing it:
2125                                                                                                                                                                                                                                                                                                                                                            Then shall an oath of the LORD be between them both, that he hath not put his hand unto his neighbor's goods; and the owner of it shall accept thereof, and he shall not make it good.
2126                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if it be stolen from him, he shall make restitution unto the owner thereof.
2127                                                                                                                                                                                                                                                                                                                                                                                                                                       If it be torn in pieces, then let him bring it for witness, and he shall not make good that which was torn.
2128                                                                                                                                                                                                                                                                                                                                                                                                             And if a man borrow ought of his neighbor, and it be hurt, or die, the owner thereof being not with it, he shall surely make it good.
2129                                                                                                                                                                                                                                                                                                                                                                                                                                    But if the owner thereof be with it, he shall not make it good: if it be an hired thing, it came for his hire.
2130                                                                                                                                                                                                                                                                                                                                                                                                                                     And if a man entice a maid that is not betrothed, and lie with her, he shall surely endow her to be his wife.
2131                                                                                                                                                                                                                                                                                                                                                                                                                                          If her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins.
2132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not suffer a witch to live.
2133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whosoever lieth with a beast shall surely be put to death.
2134                                                                                                                                                                                                                                                                                                                                                                                                                                                         He that sacrificeth unto any god, save unto the LORD only, he shall be utterly destroyed.
2135                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt neither vex a stranger, nor oppress him: for ye were strangers in the land of Egypt.
2136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall not afflict any widow, or fatherless child.
2137                                                                                                                                                                                                                                                                                                                                                                                                                                                      If thou afflict them in any wise, and they cry at all unto me, I will surely hear their cry;
2138                                                                                                                                                                                                                                                                                                                                                                                                                     And my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless.
2139                                                                                                                                                                                                                                                                                                                                                                                                        If thou lend money to any of my people that is poor by thee, thou shalt not be to him as an usurer, neither shalt thou lay upon him usury.
2140                                                                                                                                                                                                                                                                                                                                                                                                                                  If thou at all take thy neighbor's raiment to pledge, thou shalt deliver it unto him by that the sun goeth down:
2141                                                                                                                                                                                                                                                                                                                                                                    For that is his covering only, it is his raiment for his skin: wherein shall he sleep? and it shall come to pass, when he crieth unto me, that I will hear; for I am gracious.
2142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not revile the gods, nor curse the ruler of thy people.
2143                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not delay to offer the first of thy ripe fruits, and of thy liquors: the firstborn of thy sons shalt thou give unto me.
2144                                                                                                                                                                                                                                                                                                                                                                                                         Likewise shalt thou do with thine oxen, and with thy sheep: seven days it shall be with his dam; on the eighth day thou shalt give it me.
2145                                                                                                                                                                                                                                                                                                                                                                                                               And ye shall be holy men unto me: neither shall ye eat any flesh that is torn of beasts in the field; ye shall cast it to the dogs.
2146                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness.
2147                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment:
2148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Neither shalt thou countenance a poor man in his cause.
2149                                                                                                                                                                                                                                                                                                                                                                                                                                              If thou meet thine enemy's ox or his ass going astray, thou shalt surely bring it back to him again.
2150                                                                                                                                                                                                                                                                                                                                                                                                            If thou see the ass of him that hateth thee lying under his burden, and wouldest forbear to help him, thou shalt surely help with him.
2151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not wrest the judgment of thy poor in his cause.
2152                                                                                                                                                                                                                                                                                                                                                                                                                               Keep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked.
2153                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt take no gift: for the gift blindeth the wise, and perverteth the words of the righteous.
2154                                                                                                                                                                                                                                                                                                                                                                                                                       Also thou shalt not oppress a stranger: for ye know the heart of a stranger, seeing ye were strangers in the land of Egypt.
2155                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And six years thou shalt sow thy land, and shalt gather in the fruits thereof:
2156                                                                                                                                                                                                                                                                                                                  But the seventh year thou shalt let it rest and lie still; that the poor of thy people may eat: and what they leave the beasts of the field shall eat. In like manner thou shalt deal with thy vineyard, and with thy oliveyard.
2157                                                                                                                                                                                                                                                                                                                                                                   Six days thou shalt do thy work, and on the seventh day thou shalt rest: that thine ox and thine ass may rest, and the son of thy handmaid, and the stranger, may be refreshed.
2158                                                                                                                                                                                                                                                                                                                                                                                              And in all things that I have said unto you be circumspect: and make no mention of the name of other gods, neither let it be heard out of thy mouth.
2159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Three times thou shalt keep a feast unto me in the year.
2160                                                                                                                                                                                                                                                                                                           Thou shalt keep the feast of unleavened bread: (thou shalt eat unleavened bread seven days, as I commanded thee, in the time appointed of the month Abib; for in it thou camest out from Egypt: and none shall appear before me empty:)
2161                                                                                                                                                                                                                                                                                                                                And the feast of harvest, the firstfruits of thy labors, which thou hast sown in the field: and the feast of ingathering, which is in the end of the year, when thou hast gathered in thy labors out of the field.
2162                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Three items in the year all thy males shall appear before the LORD God.
2163                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my sacrifice remain until the morning.
2164                                                                                                                                                                                                                                                                                                                                                                                                   The first of the firstfruits of thy land thou shalt bring into the house of the LORD thy God. Thou shalt not seethe a kid in his mother's milk.
2165                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared.
2166                                                                                                                                                                                                                                                                                                                                                                                                                            Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him.
2167                                                                                                                                                                                                                                                                                                                                                                                            But if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries.
2168                                                                                                                                                                                                                                                                                                                                                      For mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off.
2169                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images.
2170                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall serve the LORD your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee.
2171                                                                                                                                                                                                                                                                                                                                                                                                                                           There shall nothing cast their young, nor be barren, in thy land: the number of thy days I will fulfil.
2172                                                                                                                                                                                                                                                                                                                                                                                           I will send my fear before thee, and will destroy all the people to whom thou shalt come, and I will make all thine enemies turn their backs unto thee.
2173                                                                                                                                                                                                                                                                                                                                                                                                                          And I will send hornets before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee.
2174                                                                                                                                                                                                                                                                                                                                                                                                          I will not drive them out from before thee in one year; lest the land become desolate, and the beast of the field multiply against thee.
2175                                                                                                                                                                                                                                                                                                                                                                                                                                       By little and little I will drive them out from before thee, until thou be increased, and inherit the land.
2176                                                                                                                                                                                                                                                                                                                    And I will set thy bounds from the Red sea even unto the sea of the Philistines, and from the desert unto the river: for I will deliver the inhabitants of the land into your hand; and thou shalt drive them out before thee.
2177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt make no covenant with them, nor with their gods.
2178                                                                                                                                                                                                                                                                                                                                                                                                          They shall not dwell in thy land, lest they make thee sin against me: for if thou serve their gods, it will surely be a snare unto thee.
2179                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto Moses, Come up unto the LORD, thou, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel; and worship ye afar off.
2180                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses alone shall come near the LORD: but they shall not come nigh; neither shall the people go up with him.
2181                                                                                                                                                                                                                                                                                                                                                     And Moses came and told the people all the words of the LORD, and all the judgments: and all the people answered with one voice, and said, All the words which the LORD hath said will we do.
2182                                                                                                                                                                                                                                                                                                                                                                   And Moses wrote all the words of the LORD, and rose up early in the morning, and builded an altar under the hill, and twelve pillars, according to the twelve tribes of Israel.
2183                                                                                                                                                                                                                                                                                                                                                                                                             And he sent young men of the children of Israel, which offered burnt offerings, and sacrificed peace offerings of oxen unto the LORD.
2184                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses took half of the blood, and put it in basins; and half of the blood he sprinkled on the altar.
2185                                                                                                                                                                                                                                                                                                                                                                                             And he took the book of the covenant, and read in the audience of the people: and they said, All that the LORD hath said will we do, and be obedient.
2186                                                                                                                                                                                                                                                                                                                                                                               And Moses took the blood, and sprinkled it on the people, and said, Behold the blood of the covenant, which the LORD hath made with you concerning all these words.
2187                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel:
2188                                                                                                                                                                                                                                                                                                                                                                                     And they saw the God of Israel: and there was under his feet as it were a paved work of a sapphire stone, and as it were the body of heaven in his clearness.
2189                                                                                                                                                                                                                                                                                                                                                                                                                                     And upon the nobles of the children of Israel he laid not his hand: also they saw God, and did eat and drink.
2190                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Moses, Come up to me into the mount, and be there: and I will give thee tables of stone, and a law, and commandments which I have written; that thou mayest teach them.
2191                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses rose up, and his minister Joshua: and Moses went up into the mount of God.
2192                                                                                                                                                                                                                                                                                                                                                              And he said unto the elders, Tarry ye here for us, until we come again unto you: and, behold, Aaron and Hur are with you: if any man have any matters to do, let him come unto them.
2193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses went up into the mount, and a cloud covered the mount.
2194                                                                                                                                                                                                                                                                                                                                                                                      And the glory of the LORD abode upon mount Sinai, and the cloud covered it six days: and the seventh day he called unto Moses out of the midst of the cloud.
2195                                                                                                                                                                                                                                                                                                                                                                                                                     And the sight of the glory of the LORD was like devouring fire on the top of the mount in the eyes of the children of Israel.
2196                                                                                                                                                                                                                                                                                                                                                                                                                And Moses went into the midst of the cloud, and gat him up into the mount: and Moses was in the mount forty days and forty nights.
2197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2198                                                                                                                                                                                                                                                                                                                                                                                                Speak unto the children of Israel, that they bring me an offering: of every man that giveth it willingly with his heart ye shall take my offering.
2199                                                                                                                                                                                                                                                                                                                                                                                                                                                                And this is the offering which ye shall take of them; gold, and silver, and brass,
2200                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And blue, and purple, and scarlet, and fine linen, and goats' hair,
2201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And rams' skins dyed red, and badgers' skins, and shittim wood,
2202                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Oil for the light, spices for anointing oil, and for sweet incense,
2203                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Onyx stones, and stones to be set in the ephod, and in the breastplate.
2204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And let them make me a sanctuary; that I may dwell among them.
2205                                                                                                                                                                                                                                                                                                                                                                                                 According to all that I show thee, after the pattern of the tabernacle, and the pattern of all the instruments thereof, even so shall ye make it.
2206                                                                                                                                                                                                                                                                                                                                                             And they shall make an ark of shittim wood: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof, and a cubit and a half the height thereof.
2207                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt overlay it with pure gold, within and without shalt thou overlay it, and shalt make upon it a crown of gold round about.
2208                                                                                                                                                                                                                                                                                                                                                                     And thou shalt cast four rings of gold for it, and put them in the four corners thereof; and two rings shall be in the one side of it, and two rings in the other side of it.
2209                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt make staves of shittim wood, and overlay them with gold.
2210                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt put the staves into the rings by the sides of the ark, that the ark may be borne with them.
2211                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The staves shall be in the rings of the ark: they shall not be taken from it.
2212                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt put into the ark the testimony which I shall give thee.
2213                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt make a mercy seat of pure gold: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof.
2214                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt make two cherubim of gold, of beaten work shalt thou make them, in the two ends of the mercy seat.
2215                                                                                                                                                                                                                                                                                                                                                                                             And make one cherub on the one end, and the other cherub on the other end: even of the mercy seat shall ye make the cherubim on the two ends thereof.
2216                                                                                                                                                                                                                                                                                                                                          And the cherubim shall stretch forth their wings on high, covering the mercy seat with their wings, and their faces shall look one to another; toward the mercy seat shall the faces of the cherubim be.
2217                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt put the mercy seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee.
2218                                                                                                                                                                                                                                                                                                  And there I will meet with thee, and I will commune with thee from above the mercy seat, from between the two cherubim which are upon the ark of the testimony, of all things which I will give thee in commandment unto the children of Israel.
2219                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt also make a table of shittim wood: two cubits shall be the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof.
2220                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt overlay it with pure gold, and make thereto a crown of gold round about.
2221                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make unto it a border of an hand breadth round about, and thou shalt make a golden crown to the border thereof round about.
2222                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof.
2223                                                                                                                                                                                                                                                                                                                                                                                                                                                            Over against the border shall the rings be for places of the staves to bear the table.
2224                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt make the staves of shittim wood, and overlay them with gold, that the table may be borne with them.
2225                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make the dishes thereof, and spoons thereof, and covers thereof, and bowls thereof, to cover withal: of pure gold shalt thou make them.
2226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt set upon the table showbread before me always.
2227                                                                                                                                                                                                                                                                                                                                                           And thou shalt make a candlestick of pure gold: of beaten work shall the candlestick be made: his shaft, and his branches, his bowls, his knops, and his flowers, shall be of the same.
2228                                                                                                                                                                                                                                                                                                                                                                           And six branches shall come out of the sides of it; three branches of the candlestick out of the one side, and three branches of the candlestick out of the other side:
2229                                                                                                                                                                                                                                                                                                                             Three bowls made like unto almonds, with a knop and a flower in one branch; and three bowls made like almonds in the other branch, with a knop and a flower: so in the six branches that come out of the candlestick.
2230                                                                                                                                                                                                                                                                                                                                                                                                                                           And in the candlesticks shall be four bowls made like unto almonds, with their knops and their flowers.
2231                                                                                                                                                                                                                                                                                                                                And there shall be a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches that proceed out of the candlestick.
2232                                                                                                                                                                                                                                                                                                                                                                                                                                                Their knops and their branches shall be of the same: all it shall be one beaten work of pure gold.
2233                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make the seven lamps thereof: and they shall light the lamps thereof, that they may give light over against it.
2234                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the tongs thereof, and the snuffdishes thereof, shall be of pure gold.
2235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of a talent of pure gold shall he make it, with all these vessels.
2236                                                                                                                                                                                                                                                                                                                                                                                                                                                             And look that thou make them after their pattern, which was showed thee in the mount.
2237                                                                                                                                                                                                                                                                                                                                                                            Moreover thou shalt make the tabernacle with ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubim of cunning work shalt thou make them.
2238                                                                                                                                                                                                                                                                                                                                                                                     The length of one curtain shall be eight and twenty cubits, and the breadth of one curtain four cubits: and every one of the curtains shall have one measure.
2239                                                                                                                                                                                                                                                                                                                                                                                                                              The five curtains shall be coupled together one to another; and other five curtains shall be coupled one to another.
2240                                                                                                                                                                                                                                                                                                                                       And thou shalt make loops of blue upon the edge of the one curtain from the selvedge in the coupling; and likewise shalt thou make in the uttermost edge of another curtain, in the coupling of the second.
2241                                                                                                                                                                                                                                                                                                                                                    Fifty loops shalt thou make in the one curtain, and fifty loops shalt thou make in the edge of the curtain that is in the coupling of the second; that the loops may take hold one of another.
2242                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt make fifty taches of gold, and couple the curtains together with the taches: and it shall be one tabernacle.
2243                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt make curtains of goats' hair to be a covering upon the tabernacle: eleven curtains shalt thou make.
2244                                                                                                                                                                                                                                                                                                                                                                                                The length of one curtain shall be thirty cubits, and the breadth of one curtain four cubits: and the eleven curtains shall be all of one measure.
2245                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double the sixth curtain in the forefront of the tabernacle.
2246                                                                                                                                                                                                                                                                                                                                                                             And thou shalt make fifty loops on the edge of the one curtain that is outmost in the coupling, and fifty loops in the edge of the curtain which coupleth the second.
2247                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt make fifty taches of brass, and put the taches into the loops, and couple the tent together, that it may be one.
2248                                                                                                                                                                                                                                                                                                                                                                                                      And the remnant that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the backside of the tabernacle.
2249                                                                                                                                                                                                                                                                                                                          And a cubit on the one side, and a cubit on the other side of that which remaineth in the length of the curtains of the tent, it shall hang over the sides of the tabernacle on this side and on that side, to cover it.
2250                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt make a covering for the tent of rams' skins dyed red, and a covering above of badgers' skins.
2251                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make boards for the tabernacle of shittim wood standing up.
2252                                                                                                                                                                                                                                                                                                                                                                                                                                              Ten cubits shall be the length of a board, and a cubit and a half shall be the breadth of one board.
2253                                                                                                                                                                                                                                                                                                                                                                                                              Two tenons shall there be in one board, set in order one against another: thus shalt thou make for all the boards of the tabernacle.
2254                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt make the boards for the tabernacle, twenty boards on the south side southward.
2255                                                                                                                                                                                                                                                                                                                                                                      And thou shalt make forty sockets of silver under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons.
2256                                                                                                                                                                                                                                                                                                                                                                                                                                                         And for the second side of the tabernacle on the north side there shall be twenty boards:
2257                                                                                                                                                                                                                                                                                                                                                                                                                                              And their forty sockets of silver; two sockets under one board, and two sockets under another board.
2258                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And for the sides of the tabernacle westward thou shalt make six boards.
2259                                                                                                                                                                                                                                                                                                                                                                                                                                                                And two boards shalt thou make for the corners of the tabernacle in the two sides.
2260                                                                                                                                                                                                                                                                                                                                                             And they shall be coupled together beneath, and they shall be coupled together above the head of it unto one ring: thus shall it be for them both; they shall be for the two corners.
2261                                                                                                                                                                                                                                                                                                                                                                                                   And they shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board.
2262                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt make bars of shittim wood; five for the boards of the one side of the tabernacle,
2263                                                                                                                                                                                                                                                                                                                                                                                         And five bars for the boards of the other side of the tabernacle, and five bars for the boards of the side of the tabernacle, for the two sides westward.
2264                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the middle bar in the midst of the boards shall reach from end to end.
2265                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt overlay the boards with gold, and make their rings of gold for places for the bars: and thou shalt overlay the bars with gold.
2266                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt rear up the tabernacle according to the fashion thereof which was showed thee in the mount.
2267                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt make a vail of blue, and purple, and scarlet, and fine twined linen of cunning work: with cherubim shall it be made:
2268                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt hang it upon four pillars of shittim wood overlaid with gold: their hooks shall be of gold, upon the four sockets of silver.
2269                                                                                                                                                                                                                                                                                                                                        And thou shalt hang up the vail under the taches, that thou mayest bring in thither within the vail the ark of the testimony: and the vail shall divide unto you between the holy place and the most holy.
2270                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt put the mercy seat upon the ark of the testimony in the most holy place.
2271                                                                                                                                                                                                                                                                                                                                                         And thou shalt set the table without the vail, and the candlestick over against the table on the side of the tabernacle toward the south: and thou shalt put the table on the north side.
2272                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make an hanging for the door of the tent, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework.
2273                                                                                                                                                                                                                                                                                                                                                               And thou shalt make for the hanging five pillars of shittim wood, and overlay them with gold, and their hooks shall be of gold: and thou shalt cast five sockets of brass for them.
2274                                                                                                                                                                                                                                                                                                                                                                               And thou shalt make an altar of shittim wood, five cubits long, and five cubits broad; the altar shall be foursquare: and the height thereof shall be three cubits.
2275                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt make the horns of it upon the four corners thereof: his horns shall be of the same: and thou shalt overlay it with brass.
2276                                                                                                                                                                                                                                                                                                                                                                       And thou shalt make his pans to receive his ashes, and his shovels, and his basins, and his fleshhooks, and his firepans: all the vessels thereof thou shalt make of brass.
2277                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt make for it a grate of network of brass; and upon the net shalt thou make four brazen rings in the four corners thereof.
2278                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt put it under the compass of the altar beneath, that the net may be even to the midst of the altar.
2279                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make staves for the altar, staves of shittim wood, and overlay them with brass.
2280                                                                                                                                                                                                                                                                                                                                                                                                                                  And the staves shall be put into the rings, and the staves shall be upon the two sides of the altar, to bear it.
2281                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hollow with boards shalt thou make it: as it was showed thee in the mount, so shall they make it.
2282                                                                                                                                                                                                                                                                                                                                                                  And thou shalt make the court of the tabernacle: for the south side southward there shall be hangings for the court of fine twined linen of an hundred cubits long for one side:
2283                                                                                                                                                                                                                                                                                                                                                                                                         And the twenty pillars thereof and their twenty sockets shall be of brass; the hooks of the pillars and their fillets shall be of silver.
2284                                                                                                                                                                                                                                                                                                                                      And likewise for the north side in length there shall be hangings of an hundred cubits long, and his twenty pillars and their twenty sockets of brass; the hooks of the pillars and their fillets of silver.
2285                                                                                                                                                                                                                                                                                                                                                                                                                    And for the breadth of the court on the west side shall be hangings of fifty cubits: their pillars ten, and their sockets ten.
2286                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the breadth of the court on the east side eastward shall be fifty cubits.
2287                                                                                                                                                                                                                                                                                                                                                                                                                                       The hangings of one side of the gate shall be fifteen cubits: their pillars three, and their sockets three.
2288                                                                                                                                                                                                                                                                                                                                                                                                                                             And on the other side shall be hangings fifteen cubits: their pillars three, and their sockets three.
2289                                                                                                                                                                                                                                                                                                                                    And for the gate of the court shall be an hanging of twenty cubits, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework: and their pillars shall be four, and their sockets four.
2290                                                                                                                                                                                                                                                                                                                                                                                                                  All the pillars round about the court shall be filleted with silver; their hooks shall be of silver, and their sockets of brass.
2291                                                                                                                                                                                                                                                                                                                                                                               The length of the court shall be an hundred cubits, and the breadth fifty every where, and the height five cubits of fine twined linen, and their sockets of brass.
2292                                                                                                                                                                                                                                                                                                                                                                                                         All the vessels of the tabernacle in all the service thereof, and all the pins thereof, and all the pins of the court, shall be of brass.
2293                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always.
2294                                                                                                                                                                                                                                                                                  In the tabernacle of the congregation without the vail, which is before the testimony, Aaron and his sons shall order it from evening to morning before the LORD: it shall be a statute for ever unto their generations on the behalf of the children of Israel.
2295                                                                                                                                                                                                                                                                                                                         And take thou unto thee Aaron thy brother, and his sons with him, from among the children of Israel, that he may minister unto me in the priest's office, even Aaron, Nadab and Abihu, Eleazar and Ithamar, Aaron's sons.
2296                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt make holy garments for Aaron thy brother for glory and for beauty.
2297                                                                                                                                                                                                                                                                                                                                    And thou shalt speak unto all that are wise hearted, whom I have filled with the spirit of wisdom, that they may make Aaron's garments to consecrate him, that he may minister unto me in the priest's office.
2298                                                                                                                                                                                                                                                                               And these are the garments which they shall make; a breastplate, and an ephod, and a robe, and a broidered coat, a mitre, and a girdle: and they shall make holy garments for Aaron thy brother, and his sons, that he may minister unto me in the priest's office.
2299                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they shall take gold, and blue, and purple, and scarlet, and fine linen.
2300                                                                                                                                                                                                                                                                                                                                                                                                                              And they shall make the ephod of gold, of blue, and of purple, of scarlet, and fine twined linen, with cunning work.
2301                                                                                                                                                                                                                                                                                                                                                                                                                                 It shall have the two shoulderpieces thereof joined at the two edges thereof; and so it shall be joined together.
2302                                                                                                                                                                                                                                                                                                                                                                And the curious girdle of the ephod, which is upon it, shall be of the same, according to the work thereof; even of gold, of blue, and purple, and scarlet, and fine twined linen.
2303                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt take two onyx stones, and grave on them the names of the children of Israel:
2304                                                                                                                                                                                                                                                                                                                                                                                                                                Six of their names on one stone, and the other six names of the rest on the other stone, according to their birth.
2305                                                                                                                                                                                                                                                                                                                                             With the work of an engraver in stone, like the engravings of a signet, shalt thou engrave the two stones with the names of the children of Israel: thou shalt make them to be set in ouches of gold.
2306                                                                                                                                                                                                                                                                                                                                     And thou shalt put the two stones upon the shoulders of the ephod for stones of memorial unto the children of Israel: and Aaron shall bear their names before the LORD upon his two shoulders for a memorial.
2307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt make ouches of gold;
2308                                                                                                                                                                                                                                                                                                                                                                                                                     And two chains of pure gold at the ends; of wreathed work shalt thou make them, and fasten the wreathed chains to the ouches.
2309                                                                                                                                                                                                                                                                                                                                 And thou shalt make the breastplate of judgment with cunning work; after the work of the ephod thou shalt make it; of gold, of blue, and of purple, and of scarlet, and of fine twined linen, shalt thou make it.
2310                                                                                                                                                                                                                                                                                                                                                                                                                                Foursquare it shall be being doubled; a span shall be the length thereof, and a span shall be the breadth thereof.
2311                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt set in it settings of stones, even four rows of stones: the first row shall be a sardius, a topaz, and a carbuncle: this shall be the first row.
2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the second row shall be an emerald, a sapphire, and a diamond.
2313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the third row a ligure, an agate, and an amethyst.
2314                                                                                                                                                                                                                                                                                                                                                                                                                                             And the fourth row a beryl, and an onyx, and a jasper: they shall be set in gold in their inclosings.
2315                                                                                                                                                                                                                                                                                                                                        And the stones shall be with the names of the children of Israel, twelve, according to their names, like the engravings of a signet; every one with his name shall they be according to the twelve tribes.
2316                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make upon the breastplate chains at the ends of wreathed work of pure gold.
2317                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate.
2318                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt put the two wreathed chains of gold in the two rings which are on the ends of the breastplate.
2319                                                                                                                                                                                                                                                                                                                                                                                                 And the other two ends of the two wreathed chains thou shalt fasten in the two ouches, and put them on the shoulderpieces of the ephod before it.
2320                                                                                                                                                                                                                                                                                                                                                                              And thou shalt make two rings of gold, and thou shalt put them upon the two ends of the breastplate in the border thereof, which is in the side of the ephod inward.
2321                                                                                                                                                                                                                                                                                                                            And two other rings of gold thou shalt make, and shalt put them on the two sides of the ephod underneath, toward the forepart thereof, over against the other coupling thereof, above the curious girdle of the ephod.
2322                                                                                                                                                                                                                                                                                                                            And they shall bind the breastplate by the rings thereof unto the rings of the ephod with a lace of blue, that it may be above the curious girdle of the ephod, and that the breastplate be not loosed from the ephod.
2323                                                                                                                                                                                                                                                                                                                                                         And Aaron shall bear the names of the children of Israel in the breastplate of judgment upon his heart, when he goeth in unto the holy place, for a memorial before the LORD continually.
2324                                                                                                                                                                                                                                                                                       And thou shalt put in the breastplate of judgment the Urim and the Thummim; and they shall be upon Aaron's heart, when he goeth in before the LORD: and Aaron shall bear the judgment of the children of Israel upon his heart before the LORD continually.
2325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make the robe of the ephod all of blue.
2326                                                                                                                                                                                                                                                                                                                                                    And there shall be an hole in the top of it, in the midst thereof: it shall have a binding of woven work round about the hole of it, as it were the hole of an habergeon, that it be not rent.
2327                                                                                                                                                                                                                                                                                                                                                                      And beneath upon the hem of it thou shalt make pomegranates of blue, and of purple, and of scarlet, round about the hem thereof; and bells of gold between them round about:
2328                                                                                                                                                                                                                                                                                                                                                                                                                                           A golden bell and a pomegranate, a golden bell and a pomegranate, upon the hem of the robe round about.
2329                                                                                                                                                                                                                                                                                                                                                                               And it shall be upon Aaron to minister: and his sound shall be heard when he goeth in unto the holy place before the LORD, and when he cometh out, that he die not.
2330                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, HOLINESS TO THE LORD.
2331                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt put it on a blue lace, that it may be upon the mitre; upon the forefront of the mitre it shall be.
2332                                                                                                                                                                                                                                                                                               And it shall be upon Aaron's forehead, that Aaron may bear the iniquity of the holy things, which the children of Israel shall hallow in all their holy gifts; and it shall be always upon his forehead, that they may be accepted before the LORD.
2333                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt embroider the coat of fine linen, and thou shalt make the mitre of fine linen, and thou shalt make the girdle of needlework.
2334                                                                                                                                                                                                                                                                                                                                                                                                 And for Aaron's sons thou shalt make coats, and thou shalt make for them girdles, and bonnets shalt thou make for them, for glory and for beauty.
2335                                                                                                                                                                                                                                                                                                                                                      And thou shalt put them upon Aaron thy brother, and his sons with him; and shalt anoint them, and consecrate them, and sanctify them, that they may minister unto me in the priest's office.
2336                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt make them linen breeches to cover their nakedness; from the loins even unto the thighs they shall reach:
2337                                                                                                                                                                                                                                                            And they shall be upon Aaron, and upon his sons, when they come in unto the tabernacle of the congregation, or when they come near unto the altar to minister in the holy place; that they bear not iniquity, and die: it shall be a statute for ever unto him and his seed after him.
2338                                                                                                                                                                                                                                                                                                                                                                              And this is the thing that thou shalt do unto them to hallow them, to minister unto me in the priest's office: Take one young bullock, and two rams without blemish,
2339                                                                                                                                                                                                                                                                                                                                                                                                     And unleavened bread, and cakes unleavened tempered with oil, and wafers unleavened anointed with oil: of wheaten flour shalt thou make them.
2340                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams.
2341                                                                                                                                                                                                                                                                                                                                                                                                                      And Aaron and his sons thou shalt bring unto the door of the tabernacle of the congregation, and shalt wash them with water.
2342                                                                                                                                                                                                                                                                                                                                                                  And thou shalt take the garments, and put upon Aaron the coat, and the robe of the ephod, and the ephod, and the breastplate, and gird him with the curious girdle of the ephod:
2343                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt put the mitre upon his head, and put the holy crown upon the mitre.
2344                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then shalt thou take the anointing oil, and pour it upon his head, and anoint him.
2345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt bring his sons, and put coats upon them.
2346                                                                                                                                                                                                                                                                                                                                            And thou shalt gird them with girdles, Aaron and his sons, and put the bonnets on them: and the priest's office shall be theirs for a perpetual statute: and thou shalt consecrate Aaron and his sons.
2347                                                                                                                                                                                                                                                                                                                                                                                And thou shalt cause a bullock to be brought before the tabernacle of the congregation: and Aaron and his sons shall put their hands upon the head of the bullock.
2348                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt kill the bullock before the LORD, by the door of the tabernacle of the congregation.
2349                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt take of the blood of the bullock, and put it upon the horns of the altar with thy finger, and pour all the blood beside the bottom of the altar.
2350                                                                                                                                                                                                                                                                                                                                                                And thou shalt take all the fat that covereth the inwards, and the caul that is above the liver, and the two kidneys, and the fat that is upon them, and burn them upon the altar.
2351                                                                                                                                                                                                                                                                                                                                                                                                                       But the flesh of the bullock, and his skin, and his dung, shalt thou burn with fire without the camp: it is a sin offering.
2352                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt also take one ram; and Aaron and his sons shall put their hands upon the head of the ram.
2353                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt slay the ram, and thou shalt take his blood, and sprinkle it round about upon the altar.
2354                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt cut the ram in pieces, and wash the inwards of him, and his legs, and put them unto his pieces, and unto his head.
2355                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt burn the whole ram upon the altar: it is a burnt offering unto the LORD: it is a sweet savor, an offering made by fire unto the LORD.
2356                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt take the other ram; and Aaron and his sons shall put their hands upon the head of the ram.
2357                                                                                                                                                                                                                                                     Then shalt thou kill the ram, and take of his blood, and put it upon the tip of the right ear of Aaron, and upon the tip of the right ear of his sons, and upon the thumb of their right hand, and upon the great toe of their right foot, and sprinkle the blood upon the altar round about.
2358                                                                                                                                                                                                                                                   And thou shalt take of the blood that is upon the altar, and of the anointing oil, and sprinkle it upon Aaron, and upon his garments, and upon his sons, and upon the garments of his sons with him: and he shall be hallowed, and his garments, and his sons, and his sons' garments with him.
2359                                                                                                                                                                                                                                                                                                           Also thou shalt take of the ram the fat and the rump, and the fat that covereth the inwards, and the caul above the liver, and the two kidneys, and the fat that is upon them, and the right shoulder; for it is a ram of consecration:
2360                                                                                                                                                                                                                                                                                                                                                                                                              And one loaf of bread, and one cake of oiled bread, and one wafer out of the basket of the unleavened bread that is before the LORD:
2361                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt put all in the hands of Aaron, and in the hands of his sons; and shalt wave them for a wave offering before the LORD.
2362                                                                                                                                                                                                                                                                                                                                                                   And thou shalt receive them of their hands, and burn them upon the altar for a burnt offering, for a sweet savor before the LORD: it is an offering made by fire unto the LORD.
2363                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt take the breast of the ram of Aaron's consecration, and wave it for a wave offering before the LORD: and it shall be thy part.
2364                                                                                                                                                                                                                                                                                                      And thou shalt sanctify the breast of the wave offering, and the shoulder of the heave offering, which is waved, and which is heaved up, of the ram of the consecration, even of that which is for Aaron, and of that which is for his sons:
2365                                                                                                                                                                                                                                                                           And it shall be Aaron's and his sons' by a statute for ever from the children of Israel: for it is an heave offering: and it shall be an heave offering from the children of Israel of the sacrifice of their peace offerings, even their heave offering unto the LORD.
2366                                                                                                                                                                                                                                                                                                                                                                                                                               And the holy garments of Aaron shall be his sons' after him, to be anointed therein, and to be consecrated in them.
2367                                                                                                                                                                                                                                                                                                                                                                                      And that son that is priest in his stead shall put them on seven days, when he cometh into the tabernacle of the congregation to minister in the holy place.
2368                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt take the ram of the consecration, and seethe his flesh in the holy place.
2369                                                                                                                                                                                                                                                                                                                                                                                                     And Aaron and his sons shall eat the flesh of the ram, and the bread that is in the basket by the door of the tabernacle of the congregation.
2370                                                                                                                                                                                                                                                                                                                                                                                And they shall eat those things wherewith the atonement was made, to consecrate and to sanctify them: but a stranger shall not eat thereof, because they are holy.
2371                                                                                                                                                                                                                                                                                                                                                                And if ought of the flesh of the consecrations, or of the bread, remain unto the morning, then thou shalt burn the remainder with fire: it shall not be eaten, because it is holy.
2372                                                                                                                                                                                                                                                                                                                                                                                                   And thus shalt thou do unto Aaron, and to his sons, according to all things which I have commanded thee: seven days shalt thou consecrate them.
2373                                                                                                                                                                                                                                                                                                                                                   And thou shalt offer every day a bullock for a sin offering for atonement: and thou shalt cleanse the altar, when thou hast made an atonement for it, and thou shalt anoint it, to sanctify it.
2374                                                                                                                                                                                                                                                                                                                                                                                          Seven days thou shalt make an atonement for the altar, and sanctify it; and it shall be an altar most holy: whatsoever toucheth the altar shall be holy.
2375                                                                                                                                                                                                                                                                                                                                                                                                                                       Now this is that which thou shalt offer upon the altar; two lambs of the first year day by day continually.
2376                                                                                                                                                                                                                                                                                                                                                                                                                                                        The one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even:
2377                                                                                                                                                                                                                                                                                                                                                                                     And with the one lamb a tenth deal of flour mingled with the fourth part of an hin of beaten oil; and the fourth part of an hin of wine for a drink offering.
2378                                                                                                                                                                                                                                                                                                                          And the other lamb thou shalt offer at even, and shalt do thereto according to the meat offering of the morning, and according to the drink offering thereof, for a sweet savor, an offering made by fire unto the LORD.
2379                                                                                                                                                                                                                                                                                                                                                          This shall be a continual burnt offering throughout your generations at the door of the tabernacle of the congregation before the LORD: where I will meet you, to speak there unto thee.
2380                                                                                                                                                                                                                                                                                                                                                                                                                                            And there I will meet with the children of Israel, and the tabernacle shall be sanctified by my glory.
2381                                                                                                                                                                                                                                                                                                                                                                                    And I will sanctify the tabernacle of the congregation, and the altar: I will sanctify also both Aaron and his sons, to minister to me in the priest's office.
2382                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will dwell among the children of Israel, and will be their God.
2383                                                                                                                                                                                                                                                                                                                                                                                         And they shall know that I am the LORD their God, that brought them forth out of the land of Egypt, that I may dwell among them: I am the LORD their God.
2384                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make an altar to burn incense upon: of shittim wood shalt thou make it.
2385                                                                                                                                                                                                                                                                                                                                                                 A cubit shall be the length thereof, and a cubit the breadth thereof; foursquare shall it be: and two cubits shall be the height thereof: the horns thereof shall be of the same.
2386                                                                                                                                                                                                                                                                                                                                                                     And thou shalt overlay it with pure gold, the top thereof, and the sides thereof round about, and the horns thereof; and thou shalt make unto it a crown of gold round about.
2387                                                                                                                                                                                                                                                                                                                                         And two golden rings shalt thou make to it under the crown of it, by the two corners thereof, upon the two sides of it shalt thou make it; and they shall be for places for the staves to bear it withal.
2388                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt make the staves of shittim wood, and overlay them with gold.
2389                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt put it before the vail that is by the ark of the testimony, before the mercy seat that is over the testimony, where I will meet with thee.
2390                                                                                                                                                                                                                                                                                                                                                                                                                              And Aaron shall burn thereon sweet incense every morning: when he dresseth the lamps, he shall burn incense upon it.
2391                                                                                                                                                                                                                                                                                                                                                                                                        And when Aaron lighteth the lamps at even, he shall burn incense upon it, a perpetual incense before the LORD throughout your generations.
2392                                                                                                                                                                                                                                                                                                                                                                                                                  Ye shall offer no strange incense thereon, nor burnt sacrifice, nor meat offering; neither shall ye pour drink offering thereon.
2393                                                                                                                                                                                                                                                                                                              And Aaron shall make an atonement upon the horns of it once in a year with the blood of the sin offering of atonements: once in the year shall he make atonement upon it throughout your generations: it is most holy unto the LORD.
2394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2395                                                                                                                                                                                                                                                                                                                When thou takest the sum of the children of Israel after their number, then shall they give every man a ransom for his soul unto the LORD, when thou numberest them; that there be no plague among them, when thou numberest them.
2396                                                                                                                                                                                                                                                                                                                                        This they shall give, every one that passeth among them that are numbered, half a shekel after the shekel of the sanctuary: (a shekel is twenty gerahs:) an half shekel shall be the offering of the LORD.
2397                                                                                                                                                                                                                                                                                                                                                                                                                       Every one that passeth among them that are numbered, from twenty years old and above, shall give an offering unto the LORD.
2398                                                                                                                                                                                                                                                                                                                                                                                 The rich shall not give more, and the poor shall not give less than half a shekel, when they give an offering unto the LORD, to make an atonement for your souls.
2399                                                                                                                                                                                                                                                                                        And thou shalt take the atonement money of the children of Israel, and shalt appoint it for the service of the tabernacle of the congregation; that it may be a memorial unto the children of Israel before the LORD, to make an atonement for your souls.
2400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2401                                                                                                                                                                                                                                                                                                                                              Thou shalt also make a laver of brass, and his foot also of brass, to wash withal: and thou shalt put it between the tabernacle of the congregation and the altar, and thou shalt put water therein.
2402                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For Aaron and his sons shall wash their hands and their feet thereat:
2403                                                                                                                                                                                                                                                                                                                                                When they go into the tabernacle of the congregation, they shall wash with water, that they die not; or when they come near to the altar to minister, to burn offering made by fire unto the LORD:
2404                                                                                                                                                                                                                                                                                                                                                                           So they shall wash their hands and their feet, that they die not: and it shall be a statute for ever to them, even to him and to his seed throughout their generations.
2405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moreover the LORD spake unto Moses, saying,
2406                                                                                                                                                                                                                                                                                                                                        Take thou also unto thee principal spices, of pure myrrh five hundred shekels, and of sweet cinnamon half so much, even two hundred and fifty shekels, and of sweet calamus two hundred and fifty shekels,
2407                                                                                                                                                                                                                                                                                                                                                                                                                                                   And of cassia five hundred shekels, after the shekel of the sanctuary, and of oil olive an hin:
2408                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt make it an oil of holy ointment, an ointment compound after the art of the apothecary: it shall be an holy anointing oil.
2409                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt anoint the tabernacle of the congregation therewith, and the ark of the testimony,
2410                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the table and all his vessels, and the candlestick and his vessels, and the altar of incense,
2411                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the altar of burnt offering with all his vessels, and the laver and his foot.
2412                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy.
2413                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt anoint Aaron and his sons, and consecrate them, that they may minister unto me in the priest's office.
2414                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt speak unto the children of Israel, saying, This shall be an holy anointing oil unto me throughout your generations.
2415                                                                                                                                                                                                                                                                                                                                                                                         Upon man's flesh shall it not be poured, neither shall ye make any other like it, after the composition of it: it is holy, and it shall be holy unto you.
2416                                                                                                                                                                                                                                                                                                                                                                                                                         Whosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, shall even be cut off from his people.
2417                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Moses, Take unto thee sweet spices, stacte, and onycha, and galbanum; these sweet spices with pure frankincense: of each shall there be a like weight:
2418                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt make it a perfume, a confection after the art of the apothecary, tempered together, pure and holy:
2419                                                                                                                                                                                                                                                                                                                                                                 And thou shalt beat some of it very small, and put of it before the testimony in the tabernacle of the congregation, where I will meet with thee: it shall be unto you most holy.
2420                                                                                                                                                                                                                                                                                                                                                                                      And as for the perfume which thou shalt make, ye shall not make to yourselves according to the composition thereof: it shall be unto thee holy for the LORD.
2421                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whosoever shall make like unto that, to smell thereto, shall even be cut off from his people.
2422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2423                                                                                                                                                                                                                                                                                                                                                                                                                                                        See, I have called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah:
2424                                                                                                                                                                                                                                                                                                                                                                                                                And I have filled him with the spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship,
2425                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To devise cunning works, to work in gold, and in silver, and in brass,
2426                                                                                                                                                                                                                                                                                                                                                                                                                                            And in cutting of stones, to set them, and in carving of timber, to work in all manner of workmanship.
2427                                                                                                                                                                                                                                                                                                                                     And I, behold, I have given with him Aholiab, the son of Ahisamach, of the tribe of Dan: and in the hearts of all that are wise hearted I have put wisdom, that they may make all that I have commanded thee;
2428                                                                                                                                                                                                                                                                                                                                                                                                  The tabernacle of the congregation, and the ark of the testimony, and the mercy seat that is thereupon, and all the furniture of the tabernacle,
2429                                                                                                                                                                                                                                                                                                                                                                                                                                       And the table and his furniture, and the pure candlestick with all his furniture, and the altar of incense,
2430                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the altar of burnt offering with all his furniture, and the laver and his foot,
2431                                                                                                                                                                                                                                                                                                                                                                                                          And the cloths of service, and the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office,
2432                                                                                                                                                                                                                                                                                                                                                                                                                           And the anointing oil, and sweet incense for the holy place: according to all that I have commanded thee shall they do.
2433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2434                                                                                                                                                                                                                                                                                                                               Speak thou also unto the children of Israel, saying, Verily my sabbaths ye shall keep: for it is a sign between me and you throughout your generations; that ye may know that I am the LORD that doth sanctify you.
2435                                                                                                                                                                                                                                                                                                                                    Ye shall keep the sabbath therefore; for it is holy unto you: every one that defileth it shall surely be put to death: for whosoever doeth any work therein, that soul shall be cut off from among his people.
2436                                                                                                                                                                                                                                                                                                                                                                             Six days may work be done; but in the seventh is the sabbath of rest, holy to the LORD: whosoever doeth any work in the sabbath day, he shall surely be put to death.
2437                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant.
2438                                                                                                                                                                                                                                                                                                                                                                                 It is a sign between me and the children of Israel for ever: for in six days the LORD made heaven and earth, and on the seventh day he rested, and was refreshed.
2439                                                                                                                                                                                                                                                                                                                                                                                 And he gave unto Moses, when he had made an end of communing with him upon mount Sinai, two tables of testimony, tables of stone, written with the finger of God.
2440                                                                                                                                                                                                                                        And when the people saw that Moses delayed to come down out of the mount, the people gathered themselves together unto Aaron, and said unto him, Up, make us gods, which shall go before us; for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him.
2441                                                                                                                                                                                                                                                                                                                                                                                        And Aaron said unto them, Break off the golden earrings, which are in the ears of your wives, of your sons, and of your daughters, and bring them unto me.
2442                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the people brake off the golden earrings which were in their ears, and brought them unto Aaron.
2443                                                                                                                                                                                                                                                                                                                                         And he received them at their hand, and fashioned it with a graving tool, after he had made it a molten calf: and they said, These be thy gods, O Israel, which brought thee up out of the land of Egypt.
2444                                                                                                                                                                                                                                                                                                                                                                                                                      And when Aaron saw it, he built an altar before it; and Aaron made proclamation, and said, To morrow is a feast to the LORD.
2445                                                                                                                                                                                                                                                                                                                                                                                 And they rose up early on the morrow, and offered burnt offerings, and brought peace offerings; and the people sat down to eat and to drink, and rose up to play.
2446                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto Moses, Go, get thee down; for thy people, which thou broughtest out of the land of Egypt, have corrupted themselves:
2447                                                                                                                                                                                                                                                                                       They have turned aside quickly out of the way which I commanded them: they have made them a molten calf, and have worshipped it, and have sacrificed thereunto, and said, These be thy gods, O Israel, which have brought thee up out of the land of Egypt.
2448                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, I have seen this people, and, behold, it is a stiffnecked people:
2449                                                                                                                                                                                                                                                                                                                                                                                                          Now therefore let me alone, that my wrath may wax hot against them, and that I may consume them: and I will make of thee a great nation.
2450                                                                                                                                                                                                                                                                                                                                              And Moses besought the LORD his God, and said, LORD, why doth thy wrath wax hot against thy people, which thou hast brought forth out of the land of Egypt with great power, and with a mighty hand?
2451                                                                                                                                                                                                                                                                                                         Wherefore should the Egyptians speak, and say, For mischief did he bring them out, to slay them in the mountains, and to consume them from the face of the earth? Turn from thy fierce wrath, and repent of this evil against thy people.
2452                                                                                                                                                                                                                                                                        Remember Abraham, Isaac, and Israel, thy servants, to whom thou swarest by thine own self, and saidst unto them, I will multiply your seed as the stars of heaven, and all this land that I have spoken of will I give unto your seed, and they shall inherit it for ever.
2453                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD repented of the evil which he thought to do unto his people.
2454                                                                                                                                                                                                                                                                                                                                            And Moses turned, and went down from the mount, and the two tables of the testimony were in his hand: the tables were written on both their sides; on the one side and on the other were they written.
2455                                                                                                                                                                                                                                                                                                                                                                                                                                              And the tables were the work of God, and the writing was the writing of God, graven upon the tables.
2456                                                                                                                                                                                                                                                                                                                                                                                                                           And when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp.
2457                                                                                                                                                                                                                                                                                                                                                                          And he said, It is not the voice of them that shout for mastery, neither is it the voice of them that cry for being overcome: but the noise of them that sing do I hear.
2458                                                                                                                                                                                                                                                                                                                                         And it came to pass, as soon as he came nigh unto the camp, that he saw the calf, and the dancing: and Moses' anger waxed hot, and he cast the tables out of his hands, and brake them beneath the mount.
2459                                                                                                                                                                                                                                                                                                                                                                          And he took the calf which they had made, and burnt it in the fire, and ground it to powder, and strewed it upon the water, and made the children of Israel drink of it.
2460                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses said unto Aaron, What did this people unto thee, that thou hast brought so great a sin upon them?
2461                                                                                                                                                                                                                                                                                                                                                                                                                                     And Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are set on mischief.
2462                                                                                                                                                                                                                                                                                                                                                                      For they said unto me, Make us gods, which shall go before us: for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him.
2463                                                                                                                                                                                                                                                                                                                                                                                             And I said unto them, Whosoever hath any gold, let them break it off. So they gave it me: then I cast it into the fire, and there came out this calf.
2464                                                                                                                                                                                                                                                                                                                                                                                                                              And when Moses saw that the people were naked; (for Aaron had made them naked unto their shame among their enemies:)
2465                                                                                                                                                                                                                                                                                                                                                                              Then Moses stood in the gate of the camp, and said, Who is on the LORD's side? let him come unto me. And all the sons of Levi gathered themselves together unto him.
2466                                                                                                                                                                                                                                                                                                  And he said unto them, Thus saith the LORD God of Israel, Put every man his sword by his side, and go in and out from gate to gate throughout the camp, and slay every man his brother, and every man his companion, and every man his neighbor.
2467                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Levi did according to the word of Moses: and there fell of the people that day about three thousand men.
2468                                                                                                                                                                                                                                                                                                                                                                                  For Moses had said, Consecrate yourselves today to the LORD, even every man upon his son, and upon his brother; that he may bestow upon you a blessing this day.
2469                                                                                                                                                                                                                                                                                                                                                          And it came to pass on the morrow, that Moses said unto the people, Ye have sinned a great sin: and now I will go up unto the LORD; peradventure I shall make an atonement for your sin.
2470                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses returned unto the LORD, and said, Oh, this people have sinned a great sin, and have made them gods of gold.
2471                                                                                                                                                                                                                                                                                                                                                                                                                             Yet now, if thou wilt forgive their sin--; and if not, blot me, I pray thee, out of thy book which thou hast written.
2472                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Whosoever hath sinned against me, him will I blot out of my book.
2473                                                                                                                                                                                                                                                                                                                                                Therefore now go, lead the people unto the place of which I have spoken unto thee: behold, mine Angel shall go before thee: nevertheless in the day when I visit I will visit their sin upon them.
2474                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD plagued the people, because they made the calf, which Aaron made.
2475                                                                                                                                                                                                                                                                                                           And the LORD said unto Moses, Depart, and go up hence, thou and the people which thou hast brought up out of the land of Egypt, unto the land which I sware unto Abraham, to Isaac, and to Jacob, saying, Unto thy seed will I give it:
2476                                                                                                                                                                                                                                                                                                                                                                                          And I will send an angel before thee; and I will drive out the Canaanite, the Amorite, and the Hittite, and the Perizzite, the Hivite, and the Jebusite:
2477                                                                                                                                                                                                                                                                                                                                                                                            Unto a land flowing with milk and honey: for I will not go up in the midst of thee; for thou art a stiffnecked people: lest I consume thee in the way.
2478                                                                                                                                                                                                                                                                                                                                                                                                                                              And when the people heard these evil tidings, they mourned: and no man did put on him his ornaments.
2479                                                                                                                                                                                                                                                                                         For the LORD had said unto Moses, Say unto the children of Israel, Ye are a stiffnecked people: I will come up into the midst of thee in a moment, and consume thee: therefore now put off thy ornaments from thee, that I may know what to do unto thee.
2480                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel stripped themselves of their ornaments by the mount Horeb.
2481                                                                                                                                                                                                                                                                 And Moses took the tabernacle, and pitched it without the camp, afar off from the camp, and called it the Tabernacle of the congregation. And it came to pass, that every one which sought the LORD went out unto the tabernacle of the congregation, which was without the camp.
2482                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when Moses went out unto the tabernacle, that all the people rose up, and stood every man at his tent door, and looked after Moses, until he was gone into the tabernacle.
2483                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, as Moses entered into the tabernacle, the cloudy pillar descended, and stood at the door of the tabernacle, and the Lord talked with Moses.
2484                                                                                                                                                                                                                                                                                                                                                                                                     And all the people saw the cloudy pillar stand at the tabernacle door: and all the people rose up and worshipped, every man in his tent door.
2485                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses face to face, as a man speaketh unto his friend. And he turned again into the camp: but his servant Joshua, the son of Nun, a young man, departed not out of the tabernacle.
2486                                                                                                                                                                                                                                                                                                                     And Moses said unto the LORD, See, thou sayest unto me, Bring up this people: and thou hast not let me know whom thou wilt send with me. Yet thou hast said, I know thee by name, and thou hast also found grace in my sight.
2487                                                                                                                                                                                                                                                                                                                                                       Now therefore, I pray thee, if I have found grace in thy sight, show me now thy way, that I may know thee, that I may find grace in thy sight: and consider that this nation is thy people.
2488                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, My presence shall go with thee, and I will give thee rest.
2489                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto him, If thy presence go not with me, carry us not up hence.
2490                                                                                                                                                                                                                                                                                                                For wherein shall it be known here that I and thy people have found grace in thy sight? is it not in that thou goest with us? so shall we be separated, I and thy people, from all the people that are upon the face of the earth.
2491                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Moses, I will do this thing also that thou hast spoken: for thou hast found grace in my sight, and I know thee by name.
2492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said, I beseech thee, show me thy glory.
2493                                                                                                                                                                                                                                                                                                                                  And he said, I will make all my goodness pass before thee, and I will proclaim the name of the LORD before thee; and will be gracious to whom I will be gracious, and will show mercy on whom I will show mercy.
2494                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Thou canst not see my face: for there shall no man see me, and live.
2495                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said, Behold, there is a place by me, and thou shalt stand upon a rock:
2496                                                                                                                                                                                                                                                                                                                                                                                              And it shall come to pass, while my glory passeth by, that I will put thee in a cleft of the rock, and will cover thee with my hand while I pass by:
2497                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I will take away mine hand, and thou shalt see my back parts: but my face shall not be seen.
2498                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Hew thee two tables of stone like unto the first: and I will write upon these tables the words that were in the first tables, which thou brakest.
2499                                                                                                                                                                                                                                                                                                                                                                                                                And be ready in the morning, and come up in the morning unto mount Sinai, and present thyself there to me in the top of the mount.
2500                                                                                                                                                                                                                                                                                                                                                                                                And no man shall come up with thee, neither let any man be seen throughout all the mount; neither let the flocks nor herds feed before that mount.
2501                                                                                                                                                                                                                                                                                                                                          And he hewed two tables of stone like unto the first; and Moses rose up early in the morning, and went up unto mount Sinai, as the LORD had commanded him, and took in his hand the two tables of stone.
2502                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD descended in the cloud, and stood with him there, and proclaimed the name of the LORD.
2503                                                                                                                                                                                                                                                                                                                                                                                             And the LORD passed by before him, and proclaimed, The LORD, The LORD God, merciful and gracious, long-suffering, and abundant in goodness and truth,
2504                                                                                                                                                                                                                                                                                     Keeping mercy for thousands, forgiving iniquity and transgression and sin, and that will by no means clear the guilty; visiting the iniquity of the fathers upon the children, and upon the children's children, unto the third and to the fourth generation.
2505                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses made haste, and bowed his head toward the earth, and worshipped.
2506                                                                                                                                                                                                                                                                                                                                       And he said, If now I have found grace in thy sight, O LORD, let my LORD, I pray thee, go among us; for it is a stiffnecked people; and pardon our iniquity and our sin, and take us for thine inheritance.
2507                                                                                                                                                                                                                                                                     And he said, Behold, I make a covenant: before all thy people I will do marvels, such as have not been done in all the earth, nor in any nation: and all the people among which thou art shall see the work of the LORD: for it is a terrible thing that I will do with thee.
2508                                                                                                                                                                                                                                                                                                                                                            Observe thou that which I command thee this day: behold, I drive out before thee the Amorite, and the Canaanite, and the Hittite, and the Perizzite, and the Hivite, and the Jebusite.
2509                                                                                                                                                                                                                                                                                                                                                                                                 Take heed to thyself, lest thou make a covenant with the inhabitants of the land whither thou goest, lest it be for a snare in the midst of thee:
2510                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But ye shall destroy their altars, break their images, and cut down their groves:
2511                                                                                                                                                                                                                                                                                                                                                                                                                                                       For thou shalt worship no other god: for the LORD, whose name is Jealous, is a jealous God:
2512                                                                                                                                                                                                                                                                                                                                                           Lest thou make a covenant with the inhabitants of the land, and they go a whoring after their gods, and do sacrifice unto their gods, and one call thee, and thou eat of his sacrifice;
2513                                                                                                                                                                                                                                                                                                                                                                                               And thou take of their daughters unto thy sons, and their daughters go a whoring after their gods, and make thy sons go a whoring after their gods.
2514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt make thee no molten gods.
2515                                                                                                                                                                                                                                                                                                                                                  The feast of unleavened bread shalt thou keep. Seven days thou shalt eat unleavened bread, as I commanded thee, in the time of the month Abib: for in the month Abib thou camest out from Egypt.
2516                                                                                                                                                                                                                                                                                                                                                                                                                                     All that openeth the matrix is mine; and every firstling among thy cattle, whether ox or sheep, that is male.
2517                                                                                                                                                                                                                                                                                                                                    But the firstling of an ass thou shalt redeem with a lamb: and if thou redeem him not, then shalt thou break his neck. All the firstborn of thy sons thou shalt redeem. And none shall appear before me empty.
2518                                                                                                                                                                                                                                                                                                                                                                                                                                  Six days thou shalt work, but on the seventh day thou shalt rest: in earing time and in harvest thou shalt rest.
2519                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt observe the feast of weeks, of the firstfruits of wheat harvest, and the feast of ingathering at the year's end.
2520                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thrice in the year shall all your men children appear before the LORD God, the God of Israel.
2521                                                                                                                                                                                                                                                                                                                                                          For I will cast out the nations before thee, and enlarge thy borders: neither shall any man desire thy land, when thou shalt go up to appear before the LORD thy God thrice in the year.
2522                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt not offer the blood of my sacrifice with leaven; neither shall the sacrifice of the feast of the passover be left unto the morning.
2523                                                                                                                                                                                                                                                                                                                                                                                                   The first of the firstfruits of thy land thou shalt bring unto the house of the LORD thy God. Thou shalt not seethe a kid in his mother's milk.
2524                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, Write thou these words: for after the tenor of these words I have made a covenant with thee and with Israel.
2525                                                                                                                                                                                                                                                                                                                                                              And he was there with the LORD forty days and forty nights; he did neither eat bread, nor drink water. And he wrote upon the tables the words of the covenant, the ten commandments.
2526                                                                                                                                                                                                                                                                                                                       And it came to pass, when Moses came down from mount Sinai with the two tables of testimony in Moses' hand, when he came down from the mount, that Moses wist not that the skin of his face shone while he talked with him.
2527                                                                                                                                                                                                                                                                                                                                                                                                               And when Aaron and all the children of Israel saw Moses, behold, the skin of his face shone; and they were afraid to come nigh him.
2528                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses talked with them.
2529                                                                                                                                                                                                                                                                                                                                                                                                         And afterward all the children of Israel came nigh: and he gave them in commandment all that the LORD had spoken with him in mount Sinai.
2530                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And till Moses had done speaking with them, he put a vail on his face.
2531                                                                                                                                                                                                                                                                                                                                                            But when Moses went in before the LORD to speak with him, he took the vail off, until he came out. And he came out, and spake unto the children of Israel that which he was commanded.
2532                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel saw the face of Moses, that the skin of Moses' face shone: and Moses put the vail upon his face again, until he went in to speak with him.
2533                                                                                                                                                                                                                                                                                                                                                                        And Moses gathered all the congregation of the children of Israel together, and said unto them, These are the words which the LORD hath commanded, that ye should do them.
2534                                                                                                                                                                                                                                                                                                                                                                         Six days shall work be done, but on the seventh day there shall be to you an holy day, a sabbath of rest to the LORD: whosoever doeth work therein shall be put to death.
2535                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ye shall kindle no fire throughout your habitations upon the sabbath day.
2536                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses spake unto all the congregation of the children of Israel, saying, This is the thing which the LORD commanded, saying,
2537                                                                                                                                                                                                                                                                                                                                                                                        Take ye from among you an offering unto the LORD: whosoever is of a willing heart, let him bring it, an offering of the LORD; gold, and silver, and brass,
2538                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And blue, and purple, and scarlet, and fine linen, and goats' hair,
2539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And rams' skins dyed red, and badgers' skins, and shittim wood,
2540                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And oil for the light, and spices for anointing oil, and for the sweet incense,
2541                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And onyx stones, and stones to be set for the ephod, and for the breastplate.
2542                                                                                                                                                                                                                                                                                                                                                                                                                                                           And every wise hearted among you shall come, and make all that the LORD hath commanded;
2543                                                                                                                                                                                                                                                                                                                                                                                                                                   The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets,
2544                                                                                                                                                                                                                                                                                                                                                                                                                                                               The ark, and the staves thereof, with the mercy seat, and the vail of the covering,
2545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The table, and his staves, and all his vessels, and the showbread,
2546                                                                                                                                                                                                                                                                                                                                                                                                                                                 The candlestick also for the light, and his furniture, and his lamps, with the oil for the light,
2547                                                                                                                                                                                                                                                                                                                                                                                           And the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle,
2548                                                                                                                                                                                                                                                                                                                                                                                                                                      The altar of burnt offering, with his brazen grate, his staves, and all his vessels, the laver and his foot,
2549                                                                                                                                                                                                                                                                                                                                                                                                                                             The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court,
2550                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The pins of the tabernacle, and the pins of the court, and their cords,
2551                                                                                                                                                                                                                                                                                                                                                                                 The cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office.
2552                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the congregation of the children of Israel departed from the presence of Moses.
2553                                                                                                                                                                                                                                                                                                      And they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the LORD's offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments.
2554                                                                                                                                                                                                                                                                                                                       And they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered, offered an offering of gold unto the LORD.
2555                                                                                                                                                                                                                                                                                                                                                                                       And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats' hair, and red skins of rams, and badgers' skins, brought them.
2556                                                                                                                                                                                                                                                                                                                                                                    Every one that did offer an offering of silver and brass brought the LORD's offering: and every man, with whom was found shittim wood for any work of the service, brought it.
2557                                                                                                                                                                                                                                                                                                                                                                         And all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen.
2558                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And all the women whose heart stirred them up in wisdom spun goats' hair.
2559                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate;
2560                                                                                                                                                                                                                                                                                                                                                                                                                                                           And spice, and oil for the light, and for the anointing oil, and for the sweet incense.
2561                                                                                                                                                                                                                                                                                                                                The children of Israel brought a willing offering unto the LORD, every man and woman, whose heart made them willing to bring for all manner of work, which the LORD had commanded to be made by the hand of Moses.
2562                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said unto the children of Israel, See, the LORD hath called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah;
2563                                                                                                                                                                                                                                                                                                                                                                                                                   And he hath filled him with the spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship;
2564                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And to devise curious works, to work in gold, and in silver, and in brass,
2565                                                                                                                                                                                                                                                                                                                                                                                                                                            And in the cutting of stones, to set them, and in carving of wood, to make any manner of cunning work.
2566                                                                                                                                                                                                                                                                                                                                                                                                                                  And he hath put in his heart that he may teach, both he, and Aholiab, the son of Ahisamach, of the tribe of Dan.
2567                                                                                                                                                                                                                                                        Them hath he filled with wisdom of heart, to work all manner of work, of the engraver, and of the cunning workman, and of the embroiderer, in blue, and in purple, in scarlet, and in fine linen, and of the weaver, even of them that do any work, and of those that devise cunning work.
2568                                                                                                                                                                                                                                                                                                               Then wrought Bezaleel and Aholiab, and every wise hearted man, in whom the LORD put wisdom and understanding to know how to work all manner of work for the service of the sanctuary, according to all that the LORD had commanded.
2569                                                                                                                                                                                                                                                                                                                                                              And Moses called Bezaleel and Aholiab, and every wise hearted man, in whose heart the LORD had put wisdom, even every one whose heart stirred him up to come unto the work to do it:
2570                                                                                                                                                                                                                                                                                                                                And they received of Moses all the offering, which the children of Israel had brought for the work of the service of the sanctuary, to make it withal. And they brought yet unto him free offerings every morning.
2571                                                                                                                                                                                                                                                                                                                                                                                                                                   And all the wise men, that wrought all the work of the sanctuary, came every man from his work which they made;
2572                                                                                                                                                                                                                                                                                                                                                                                                          And they spake unto Moses, saying, The people bring much more than enough for the service of the work, which the LORD commanded to make.
2573                                                                                                                                                                                                                                                                                                                         And Moses gave commandment, and they caused it to be proclaimed throughout the camp, saying, Let neither man nor woman make any more work for the offering of the sanctuary. So the people were restrained from bringing.
2574                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For the stuff they had was sufficient for all the work to make it, and too much.
2575                                                                                                                                                                                                                                                                                                                                              And every wise hearted man among them that wrought the work of the tabernacle made ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubim of cunning work made he them.
2576                                                                                                                                                                                                                                                                                                                                                                                                             The length of one curtain was twenty and eight cubits, and the breadth of one curtain four cubits: the curtains were all of one size.
2577                                                                                                                                                                                                                                                                                                                                                                                                                                       And he coupled the five curtains one unto another: and the other five curtains he coupled one unto another.
2578                                                                                                                                                                                                                                                                                                                                                                 And he made loops of blue on the edge of one curtain from the selvedge in the coupling: likewise he made in the uttermost side of another curtain, in the coupling of the second.
2579                                                                                                                                                                                                                                                                                                                                                                            Fifty loops made he in one curtain, and fifty loops made he in the edge of the curtain which was in the coupling of the second: the loops held one curtain to another.
2580                                                                                                                                                                                                                                                                                                                                                                                                                         And he made fifty taches of gold, and coupled the curtains one unto another with the taches: so it became one tabernacle.
2581                                                                                                                                                                                                                                                                                                                                                                                                                                               And he made curtains of goats' hair for the tent over the tabernacle: eleven curtains he made them.
2582                                                                                                                                                                                                                                                                                                                                                                                                                The length of one curtain was thirty cubits, and four cubits was the breadth of one curtain: the eleven curtains were of one size.
2583                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he coupled five curtains by themselves, and six curtains by themselves.
2584                                                                                                                                                                                                                                                                                                                                                                                   And he made fifty loops upon the uttermost edge of the curtain in the coupling, and fifty loops made he upon the edge of the curtain which coupleth the second.
2585                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made fifty taches of brass to couple the tent together, that it might be one.
2586                                                                                                                                                                                                                                                                                                                                                                                                                                         And he made a covering for the tent of rams' skins dyed red, and a covering of badgers' skins above that.
2587                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he made boards for the tabernacle of shittim wood, standing up.
2588                                                                                                                                                                                                                                                                                                                                                                                                                                                            The length of a board was ten cubits, and the breadth of a board one cubit and a half.
2589                                                                                                                                                                                                                                                                                                                                                                                                                                One board had two tenons, equally distant one from another: thus did he make for all the boards of the tabernacle.
2590                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he made boards for the tabernacle; twenty boards for the south side southward:
2591                                                                                                                                                                                                                                                                                                                                                                              And forty sockets of silver he made under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons.
2592                                                                                                                                                                                                                                                                                                                                                                                                                                                And for the other side of the tabernacle, which is toward the north corner, he made twenty boards,
2593                                                                                                                                                                                                                                                                                                                                                                                                                                              And their forty sockets of silver; two sockets under one board, and two sockets under another board.
2594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And for the sides of the tabernacle westward he made six boards.
2595                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And two boards made he for the corners of the tabernacle in the two sides.
2596                                                                                                                                                                                                                                                                                                                                                                                                            And they were coupled beneath, and coupled together at the head thereof, to one ring: thus he did to both of them in both the corners.
2597                                                                                                                                                                                                                                                                                                                                                                                                                                     And there were eight boards; and their sockets were sixteen sockets of silver, under every board two sockets.
2598                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made bars of shittim wood; five for the boards of the one side of the tabernacle,
2599                                                                                                                                                                                                                                                                                                                                                                                                          And five bars for the boards of the other side of the tabernacle, and five bars for the boards of the tabernacle for the sides westward.
2600                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he made the middle bar to shoot through the boards from the one end to the other.
2601                                                                                                                                                                                                                                                                                                                                                                                                                    And he overlaid the boards with gold, and made their rings of gold to be places for the bars, and overlaid the bars with gold.
2602                                                                                                                                                                                                                                                                                                                                                                                                                             And he made a vail of blue, and purple, and scarlet, and fine twined linen: with cherubim made he it of cunning work.
2603                                                                                                                                                                                                                                                                                                                                                                                           And he made thereunto four pillars of shittim wood, and overlaid them with gold: their hooks were of gold; and he cast for them four sockets of silver.
2604                                                                                                                                                                                                                                                                                                                                                                                                                            And he made an hanging for the tabernacle door of blue, and purple, and scarlet, and fine twined linen, of needlework;
2605                                                                                                                                                                                                                                                                                                                                                                                                   And the five pillars of it with their hooks: and he overlaid their chapiters and their fillets with gold: but their five sockets were of brass.
2606                                                                                                                                                                                                                                                                                                                                                                         And Bezaleel made the ark of shittim wood: two cubits and a half was the length of it, and a cubit and a half the breadth of it, and a cubit and a half the height of it:
2607                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he overlaid it with pure gold within and without, and made a crown of gold to it round about.
2608                                                                                                                                                                                                                                                                                                                                                                                      And he cast for it four rings of gold, to be set by the four corners of it; even two rings upon the one side of it, and two rings upon the other side of it.
2609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he made staves of shittim wood, and overlaid them with gold.
2610                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he put the staves into the rings by the sides of the ark, to bear the ark.
2611                                                                                                                                                                                                                                                                                                                                                                                                              And he made the mercy seat of pure gold: two cubits and a half was the length thereof, and one cubit and a half the breadth thereof.
2612                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made two cherubim of gold, beaten out of one piece made he them, on the two ends of the mercy seat;
2613                                                                                                                                                                                                                                                                                                                                                                                         One cherub on the end on this side, and another cherub on the other end on that side: out of the mercy seat made he the cherubim on the two ends thereof.
2614                                                                                                                                                                                                                                                                                                                                                    And the cherubim spread out their wings on high, and covered with their wings over the mercy seat, with their faces one to another; even to the mercy seatward were the faces of the cherubim.
2615                                                                                                                                                                                                                                                                                                                                                                                             And he made the table of shittim wood: two cubits was the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof:
2616                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he overlaid it with pure gold, and made thereunto a crown of gold round about.
2617                                                                                                                                                                                                                                                                                                                                                                                                                       Also he made thereunto a border of an handbreadth round about; and made a crown of gold for the border thereof round about.
2618                                                                                                                                                                                                                                                                                                                                                                                                                                And he cast for it four rings of gold, and put the rings upon the four corners that were in the four feet thereof.
2619                                                                                                                                                                                                                                                                                                                                                                                                                                                              Over against the border were the rings, the places for the staves to bear the table.
2620                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he made the staves of shittim wood, and overlaid them with gold, to bear the table.
2621                                                                                                                                                                                                                                                                                                                                                                                                       And he made the vessels which were upon the table, his dishes, and his spoons, and his bowls, and his covers to cover withal, of pure gold.
2622                                                                                                                                                                                                                                                                                                                                                                             And he made the candlestick of pure gold: of beaten work made he the candlestick; his shaft, and his branch, his bowls, his knops, and his flowers, were of the same:
2623                                                                                                                                                                                                                                                                                                                                                              And six branches going out of the sides thereof; three branches of the candlestick out of the one side thereof, and three branches of the candlestick out of the other side thereof:
2624                                                                                                                                                                                                                                                                                                                          Three bowls made after the fashion of almonds in one branch, a knop and a flower; and three bowls made like almonds in another branch, a knop and a flower: so throughout the six branches going out of the candlestick.
2625                                                                                                                                                                                                                                                                                                                                                                                                                                                             And in the candlestick were four bowls made like almonds, his knops, and his flowers:
2626                                                                                                                                                                                                                                                                                                                                                                   And a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches going out of it.
2627                                                                                                                                                                                                                                                                                                                                                                                                                                                      Their knops and their branches were of the same: all of it was one beaten work of pure gold.
2628                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he made his seven lamps, and his snuffers, and his snuffdishes, of pure gold.
2629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of a talent of pure gold made he it, and all the vessels thereof.
2630                                                                                                                                                                                                                                                                                                                                           And he made the incense altar of shittim wood: the length of it was a cubit, and the breadth of it a cubit; it was foursquare; and two cubits was the height of it; the horns thereof were of the same.
2631                                                                                                                                                                                                                                                                                                                                                                                  And he overlaid it with pure gold, both the top of it, and the sides thereof round about, and the horns of it: also he made unto it a crown of gold round about.
2632                                                                                                                                                                                                                                                                                                                                                                                And he made two rings of gold for it under the crown thereof, by the two corners of it, upon the two sides thereof, to be places for the staves to bear it withal.
2633                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made the staves of shittim wood, and overlaid them with gold.
2634                                                                                                                                                                                                                                                                                                                                                                                                                                And he made the holy anointing oil, and the pure incense of sweet spices, according to the work of the apothecary.
2635                                                                                                                                                                                                                                                                                                                                                         And he made the altar of burnt offering of shittim wood: five cubits was the length thereof, and five cubits the breadth thereof; it was foursquare; and three cubits the height thereof.
2636                                                                                                                                                                                                                                                                                                                                                                                                                       And he made the horns thereof on the four corners of it; the horns thereof were of the same: and he overlaid it with brass.
2637                                                                                                                                                                                                                                                                                                                                                                              And he made all the vessels of the altar, the pots, and the shovels, and the basins, and the fleshhooks, and the firepans: all the vessels thereof made he of brass.
2638                                                                                                                                                                                                                                                                                                                                                                                                                                       And he made for the altar a brazen grate of network under the compass thereof beneath unto the midst of it.
2639                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he cast four rings for the four ends of the grate of brass, to be places for the staves.
2640                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he made the staves of shittim wood, and overlaid them with brass.
2641                                                                                                                                                                                                                                                                                                                                                                                                                          And he put the staves into the rings on the sides of the altar, to bear it withal; he made the altar hollow with boards.
2642                                                                                                                                                                                                                                                                                                                                                                    And he made the laver of brass, and the foot of it of brass, of the lookingglasses of the women assembling, which assembled at the door of the tabernacle of the congregation.
2643                                                                                                                                                                                                                                                                                                                                                                                                                        And he made the court: on the south side southward the hangings of the court were of fine twined linen, an hundred cubits:
2644                                                                                                                                                                                                                                                                                                                                                                                                                            Their pillars were twenty, and their brazen sockets twenty; the hooks of the pillars and their fillets were of silver.
2645                                                                                                                                                                                                                                                                                                                                                                   And for the north side the hangings were an hundred cubits, their pillars were twenty, and their sockets of brass twenty; the hooks of the pillars and their fillets of silver.
2646                                                                                                                                                                                                                                                                                                                                                                                              And for the west side were hangings of fifty cubits, their pillars ten, and their sockets ten; the hooks of the pillars and their fillets of silver.
2647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And for the east side eastward fifty cubits.
2648                                                                                                                                                                                                                                                                                                                                                                                                                                       The hangings of the one side of the gate were fifteen cubits; their pillars three, and their sockets three.
2649                                                                                                                                                                                                                                                                                                                                                                                              And for the other side of the court gate, on this hand and that hand, were hangings of fifteen cubits; their pillars three, and their sockets three.
2650                                                                                                                                                                                                                                                                                                                                                                                                                                                                              All the hangings of the court round about were of fine twined linen.
2651                                                                                                                                                                                                                                                                                                                                 And the sockets for the pillars were of brass; the hooks of the pillars and their fillets of silver; and the overlaying of their chapiters of silver; and all the pillars of the court were filleted with silver.
2652                                                                                                                                                                                                                                                                                                      And the hanging for the gate of the court was needlework, of blue, and purple, and scarlet, and fine twined linen: and twenty cubits was the length, and the height in the breadth was five cubits, answerable to the hangings of the court.
2653                                                                                                                                                                                                                                                                                                                                                                                           And their pillars were four, and their sockets of brass four; their hooks of silver, and the overlaying of their chapiters and their fillets of silver.
2654                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the pins of the tabernacle, and of the court round about, were of brass.
2655                                                                                                                                                                                                                                                                                                                                This is the sum of the tabernacle, even of the tabernacle of testimony, as it was counted, according to the commandment of Moses, for the service of the Levites, by the hand of Ithamar, son to Aaron the priest.
2656                                                                                                                                                                                                                                                                                                                                                                                                                                          And Bezaleel the son Uri, the son of Hur, of the tribe of Judah, made all that the LORD commanded Moses.
2657                                                                                                                                                                                                                                                                                                                                                                   And with him was Aholiab, son of Ahisamach, of the tribe of Dan, an engraver, and a cunning workman, and an embroiderer in blue, and in purple, and in scarlet, and fine linen.
2658                                                                                                                                                                                                                                                                                                                               All the gold that was occupied for the work in all the work of the holy place, even the gold of the offering, was twenty and nine talents, and seven hundred and thirty shekels, after the shekel of the sanctuary.
2659                                                                                                                                                                                                                                                                                                                                                         And the silver of them that were numbered of the congregation was an hundred talents, and a thousand seven hundred and threescore and fifteen shekels, after the shekel of the sanctuary:
2660                                                                                                                                                                                                                                                                                                           A bekah for every man, that is, half a shekel, after the shekel of the sanctuary, for every one that went to be numbered, from twenty years old and upward, for six hundred thousand and three thousand and five hundred and fifty men.
2661                                                                                                                                                                                                                                                                                                                                                                       And of the hundred talents of silver were cast the sockets of the sanctuary, and the sockets of the vail; an hundred sockets of the hundred talents, a talent for a socket.
2662                                                                                                                                                                                                                                                                                                                                                                                                        And of the thousand seven hundred seventy and five shekels he made hooks for the pillars, and overlaid their chapiters, and filleted them.
2663                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the brass of the offering was seventy talents, and two thousand and four hundred shekels.
2664                                                                                                                                                                                                                                                                                                                                                                         And therewith he made the sockets to the door of the tabernacle of the congregation, and the brazen altar, and the brazen grate for it, and all the vessels of the altar,
2665                                                                                                                                                                                                                                                                                                                                                                                       And the sockets of the court round about, and the sockets of the court gate, and all the pins of the tabernacle, and all the pins of the court round about.
2666                                                                                                                                                                                                                                                                                                                                                                        And of the blue, and purple, and scarlet, they made cloths of service, to do service in the holy place, and made the holy garments for Aaron; as the LORD commanded Moses.
2667                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen.
2668                                                                                                                                                                                                                                                                                                                                                                      And they did beat the gold into thin plates, and cut it into wires, to work it in the blue, and in the purple, and in the scarlet, and in the fine linen, with cunning work.
2669                                                                                                                                                                                                                                                                                                                                                                                                                                                 They made shoulderpieces for it, to couple it together: by the two edges was it coupled together.
2670                                                                                                                                                                                                                                                                                                                                                And the curious girdle of his ephod, that was upon it, was of the same, according to the work thereof; of gold, blue, and purple, and scarlet, and fine twined linen; as the LORD commanded Moses.
2671                                                                                                                                                                                                                                                                                                                                                                                                                 And they wrought onyx stones inclosed in ouches of gold, graven, as signets are graven, with the names of the children of Israel.
2672                                                                                                                                                                                                                                                                                                                                                                                                  And he put them on the shoulders of the ephod, that they should be stones for a memorial to the children of Israel; as the LORD commanded Moses.
2673                                                                                                                                                                                                                                                                                                                                                                                                           And he made the breastplate of cunning work, like the work of the ephod; of gold, blue, and purple, and scarlet, and fine twined linen.
2674                                                                                                                                                                                                                                                                                                                                                                                                                It was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being doubled.
2675                                                                                                                                                                                                                                                                                                                                                                                                                            And they set in it four rows of stones: the first row was a sardius, a topaz, and a carbuncle: this was the first row.
2676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the second row, an emerald, a sapphire, and a diamond.
2677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the third row, a ligure, an agate, and an amethyst.
2678                                                                                                                                                                                                                                                                                                                                                                                                                                     And the fourth row, a beryl, an onyx, and a jasper: they were inclosed in ouches of gold in their inclosings.
2679                                                                                                                                                                                                                                                                                                                                                 And the stones were according to the names of the children of Israel, twelve, according to their names, like the engravings of a signet, every one with his name, according to the twelve tribes.
2680                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they made upon the breastplate chains at the ends, of wreathed work of pure gold.
2681                                                                                                                                                                                                                                                                                                                                                                                                                                   And they made two ouches of gold, and two gold rings; and put the two rings in the two ends of the breastplate.
2682                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they put the two wreathed chains of gold in the two rings on the ends of the breastplate.
2683                                                                                                                                                                                                                                                                                                                                                                                                          And the two ends of the two wreathed chains they fastened in the two ouches, and put them on the shoulderpieces of the ephod, before it.
2684                                                                                                                                                                                                                                                                                                                                                                                               And they made two rings of gold, and put them on the two ends of the breastplate, upon the border of it, which was on the side of the ephod inward.
2685                                                                                                                                                                                                                                                                                                                                           And they made two other golden rings, and put them on the two sides of the ephod underneath, toward the forepart of it, over against the other coupling thereof, above the curious girdle of the ephod.
2686                                                                                                                                                                                                                                                                                                 And they did bind the breastplate by his rings unto the rings of the ephod with a lace of blue, that it might be above the curious girdle of the ephod, and that the breastplate might not be loosed from the ephod; as the LORD commanded Moses.
2687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he made the robe of the ephod of woven work, all of blue.
2688                                                                                                                                                                                                                                                                                                                                                                                                           And there was an hole in the midst of the robe, as the hole of an habergeon, with a band round about the hole, that it should not rend.
2689                                                                                                                                                                                                                                                                                                                                                                                                                                          And they made upon the hems of the robe pomegranates of blue, and purple, and scarlet, and twined linen.
2690                                                                                                                                                                                                                                                                                                                                                                                                      And they made bells of pure gold, and put the bells between the pomegranates upon the hem of the robe, round about between the pomegranates;
2691                                                                                                                                                                                                                                                                                                                                                                                                                  A bell and a pomegranate, a bell and a pomegranate, round about the hem of the robe to minister in; as the LORD commanded Moses.
2692                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they made coats of fine linen of woven work for Aaron, and for his sons,
2693                                                                                                                                                                                                                                                                                                                                                                                                                                             And a mitre of fine linen, and goodly bonnets of fine linen, and linen breeches of fine twined linen,
2694                                                                                                                                                                                                                                                                                                                                                                                                                                 And a girdle of fine twined linen, and blue, and purple, and scarlet, of needlework; as the LORD commanded Moses.
2695                                                                                                                                                                                                                                                                                                                                                                                                    And they made the plate of the holy crown of pure gold, and wrote upon it a writing, like to the engravings of a signet, HOLINESS TO THE LORD.
2696                                                                                                                                                                                                                                                                                                                                                                                                                                           And they tied unto it a lace of blue, to fasten it on high upon the mitre; as the LORD commanded Moses.
2697                                                                                                                                                                                                                                                                                                                                                                     Thus was all the work of the tabernacle of the tent of the congregation finished: and the children of Israel did according to all that the LORD commanded Moses, so did they.
2698                                                                                                                                                                                                                                                                                                                                                                                                  And they brought the tabernacle unto Moses, the tent, and all his furniture, his taches, his boards, his bars, and his pillars, and his sockets,
2699                                                                                                                                                                                                                                                                                                                                                                                                                                       And the covering of rams' skins dyed red, and the covering of badgers' skins, and the vail of the covering,
2700                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The ark of the testimony, and the staves thereof, and the mercy seat,
2701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The table, and all the vessels thereof, and the showbread,
2702                                                                                                                                                                                                                                                                                                                                                                                                         The pure candlestick, with the lamps thereof, even with the lamps to be set in order, and all the vessels thereof, and the oil for light,
2703                                                                                                                                                                                                                                                                                                                                                                                                                                      And the golden altar, and the anointing oil, and the sweet incense, and the hanging for the tabernacle door,
2704                                                                                                                                                                                                                                                                                                                                                                                                                                                The brazen altar, and his grate of brass, his staves, and all his vessels, the laver and his foot,
2705                                                                                                                                                                                                                                                                                                                                     The hangings of the court, his pillars, and his sockets, and the hanging for the court gate, his cords, and his pins, and all the vessels of the service of the tabernacle, for the tent of the congregation,
2706                                                                                                                                                                                                                                                                                                                                                                                    The cloths of service to do service in the holy place, and the holy garments for Aaron the priest, and his sons' garments, to minister in the priest's office.
2707                                                                                                                                                                                                                                                                                                                                                                                                                                                      According to all that the LORD commanded Moses, so the children of Israel made all the work.
2708                                                                                                                                                                                                                                                                                                                                                                                                  And Moses did look upon all the work, and, behold, they had done it as the LORD had commanded, even so had they done it: and Moses blessed them.
2709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2710                                                                                                                                                                                                                                                                                                                                                                                                                                             On the first day of the first month shalt thou set up the tabernacle of the tent of the congregation.
2711                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt put therein the ark of the testimony, and cover the ark with the vail.
2712                                                                                                                                                                                                                                                                                                                                                                         And thou shalt bring in the table, and set in order the things that are to be set in order upon it; and thou shalt bring in the candlestick, and light the lamps thereof.
2713                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt set the altar of gold for the incense before the ark of the testimony, and put the hanging of the door to the tabernacle.
2714                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt set the altar of the burnt offering before the door of the tabernacle of the tent of the congregation.
2715                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt set the laver between the tent of the congregation and the altar, and shalt put water therein.
2716                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt set up the court round about, and hang up the hanging at the court gate.
2717                                                                                                                                                                                                                                                                                                                                                                                And thou shalt take the anointing oil, and anoint the tabernacle, and all that is therein, and shalt hallow it, and all the vessels thereof: and it shall be holy.
2718                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt anoint the altar of the burnt offering, and all his vessels, and sanctify the altar: and it shall be an altar most holy.
2719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt anoint the laver and his foot, and sanctify it.
2720                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt bring Aaron and his sons unto the door of the tabernacle of the congregation, and wash them with water.
2721                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt put upon Aaron the holy garments, and anoint him, and sanctify him; that he may minister unto me in the priest's office.
2722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt bring his sons, and clothe them with coats:
2723                                                                                                                                                                                                                                                                                                                                 And thou shalt anoint them, as thou didst anoint their father, that they may minister unto me in the priest's office: for their anointing shall surely be an everlasting priesthood throughout their generations.
2724                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thus did Moses: according to all that the LORD commanded him, so did he.
2725                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass in the first month in the second year, on the first day of the month, that the tabernacle was reared up.
2726                                                                                                                                                                                                                                                                                                                                                                                              And Moses reared up the tabernacle, and fastened his sockets, and set up the boards thereof, and put in the bars thereof, and reared up his pillars.
2727                                                                                                                                                                                                                                                                                                                                                                                                                   And he spread abroad the tent over the tabernacle, and put the covering of the tent above upon it; as the LORD commanded Moses.
2728                                                                                                                                                                                                                                                                                                                                                                                                                         And he took and put the testimony into the ark, and set the staves on the ark, and put the mercy seat above upon the ark:
2729                                                                                                                                                                                                                                                                                                                                                                                               And he brought the ark into the tabernacle, and set up the vail of the covering, and covered the ark of the testimony; as the LORD commanded Moses.
2730                                                                                                                                                                                                                                                                                                                                                                                                                                And he put the table in the tent of the congregation, upon the side of the tabernacle northward, without the vail.
2731                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he set the bread in order upon it before the LORD; as the LORD had commanded Moses.
2732                                                                                                                                                                                                                                                                                                                                                                                                                      And he put the candlestick in the tent of the congregation, over against the table, on the side of the tabernacle southward.
2733                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he lighted the lamps before the LORD; as the LORD commanded Moses.
2734                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he put the golden altar in the tent of the congregation before the vail:
2735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he burnt sweet incense thereon; as the LORD commanded Moses.
2736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he set up the hanging at the door of the tabernacle.
2737                                                                                                                                                                                                                                                                                                                                                  And he put the altar of burnt offering by the door of the tabernacle of the tent of the congregation, and offered upon it the burnt offering and the meat offering; as the LORD commanded Moses.
2738                                                                                                                                                                                                                                                                                                                                                                                                                                     And he set the laver between the tent of the congregation and the altar, and put water there, to wash withal.
2739                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses and Aaron and his sons washed their hands and their feet thereat:
2740                                                                                                                                                                                                                                                                                                                                                                                                               When they went into the tent of the congregation, and when they came near unto the altar, they washed; as the LORD commanded Moses.
2741                                                                                                                                                                                                                                                                                                                                                                                                        And he reared up the court round about the tabernacle and the altar, and set up the hanging of the court gate. So Moses finished the work.
2742                                                                                                                                                                                                                                                                                                                                                                                                                                               Then a cloud covered the tent of the congregation, and the glory of the LORD filled the tabernacle.
2743                                                                                                                                                                                                                                                                                                                                                                                              And Moses was not able to enter into the tent of the congregation, because the cloud abode thereon, and the glory of the LORD filled the tabernacle.
2744                                                                                                                                                                                                                                                                                                                                                                                                                               And when the cloud was taken up from over the tabernacle, the children of Israel went onward in all their journeys:
2745                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if the cloud were not taken up, then they journeyed not till the day that it was taken up.
2746                                                                                                                                                                                                                                                                                                                                                                                    For the cloud of the LORD was upon the tabernacle by day, and fire was on it by night, in the sight of all the house of Israel, throughout all their journeys.
2747                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD called unto Moses, and spake unto him out of the tabernacle of the congregation, saying,
2748                                                                                                                                                                                                                                                                                                                                                          Speak unto the children of Israel, and say unto them, If any man of you bring an offering unto the LORD, ye shall bring your offering of the cattle, even of the herd, and of the flock.
2749                                                                                                                                                                                                                                                                                                                                            If his offering be a burnt sacrifice of the herd, let him offer a male without blemish: he shall offer it of his own voluntary will at the door of the tabernacle of the congregation before the LORD.
2750                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall put his hand upon the head of the burnt offering; and it shall be accepted for him to make atonement for him.
2751                                                                                                                                                                                                                                                                                                                                 And he shall kill the bullock before the LORD: and the priests, Aaron's sons, shall bring the blood, and sprinkle the blood round about upon the altar that is by the door of the tabernacle of the congregation.
2752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall flay the burnt offering, and cut it into his pieces.
2753                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Aaron the priest shall put fire upon the altar, and lay the wood in order upon the fire:
2754                                                                                                                                                                                                                                                                                                                                                                                                    And the priests, Aaron's sons, shall lay the parts, the head, and the fat, in order upon the wood that is on the fire which is upon the altar:
2755                                                                                                                                                                                                                                                                                                                                                               But his inwards and his legs shall he wash in water: and the priest shall burn all on the altar, to be a burnt sacrifice, an offering made by fire, of a sweet savor unto the LORD.
2756                                                                                                                                                                                                                                                                                                                                                                                                     And if his offering be of the flocks, namely, of the sheep, or of the goats, for a burnt sacrifice; he shall bring it a male without blemish.
2757                                                                                                                                                                                                                                                                                                                                                                                      And he shall kill it on the side of the altar northward before the LORD: and the priests, Aaron's sons, shall sprinkle his blood round about upon the altar.
2758                                                                                                                                                                                                                                                                                                                                                                                   And he shall cut it into his pieces, with his head and his fat: and the priest shall lay them in order on the wood that is on the fire which is upon the altar:
2759                                                                                                                                                                                                                                                                                                                                          But he shall wash the inwards and the legs with water: and the priest shall bring it all, and burn it upon the altar: it is a burnt sacrifice, an offering made by fire, of a sweet savor unto the LORD.
2760                                                                                                                                                                                                                                                                                                                                                                                                        And if the burnt sacrifice for his offering to the LORD be of fowls, then he shall bring his offering of turtledoves, or of young pigeons.
2761                                                                                                                                                                                                                                                                                                                                                                                And the priest shall bring it unto the altar, and wring off his head, and burn it on the altar; and the blood thereof shall be wrung out at the side of the altar:
2762                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall pluck away his crop with his feathers, and cast it beside the altar on the east part, by the place of the ashes:
2763                                                                                                                                                                                                                                                                                              And he shall cleave it with the wings thereof, but shall not divide it asunder: and the priest shall burn it upon the altar, upon the wood that is upon the fire: it is a burnt sacrifice, an offering made by fire, of a sweet savor unto the LORD.
2764                                                                                                                                                                                                                                                                                                                                                                                          And when any will offer a meat offering unto the LORD, his offering shall be of fine flour; and he shall pour oil upon it, and put frankincense thereon:
2765                                                                                                                                                                                                                                           And he shall bring it to Aaron's sons the priests: and he shall take thereout his handful of the flour thereof, and of the oil thereof, with all the frankincense thereof; and the priest shall burn the memorial of it upon the altar, to be an offering made by fire, of a sweet savor unto the LORD:
2766                                                                                                                                                                                                                                                                                                                                                                                                           And the remnant of the meat offering shall be Aaron's and his sons': it is a thing most holy of the offerings of the LORD made by fire.
2767                                                                                                                                                                                                                                                                                                                                                                          And if thou bring an oblation of a meat offering baked in the oven, it shall be unleavened cakes of fine flour mingled with oil, or unleavened wafers anointed with oil.
2768                                                                                                                                                                                                                                                                                                                                                                                                                                    And if thy oblation be a meat offering baked in a pan, it shall be of fine flour unleavened, mingled with oil.
2769                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt part it in pieces, and pour oil thereon: it is a meat offering.
2770                                                                                                                                                                                                                                                                                                                                                                                                                                          And if thy oblation be a meat offering baked in the frying pan, it shall be made of fine flour with oil.
2771                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt bring the meat offering that is made of these things unto the LORD: and when it is presented unto the priest, he shall bring it unto the altar.
2772                                                                                                                                                                                                                                                                                                                                                                            And the priest shall take from the meat offering a memorial thereof, and shall burn it upon the altar: it is an offering made by fire, of a sweet savor unto the LORD.
2773                                                                                                                                                                                                                                                                                                                                                                                                    And that which is left of the meat offering shall be Aaron's and his sons': it is a thing most holy of the offerings of the LORD made by fire.
2774                                                                                                                                                                                                                                                                                                                                                                            No meat offering, which ye shall bring unto the LORD, shall be made with leaven: for ye shall burn no leaven, nor any honey, in any offering of the LORD made by fire.
2775                                                                                                                                                                                                                                                                                                                                                                                                            As for the oblation of the firstfruits, ye shall offer them unto the LORD: but they shall not be burnt on the altar for a sweet savor.
2776                                                                                                                                                                                                                                                                                                                          And every oblation of thy meat offering shalt thou season with salt; neither shalt thou suffer the salt of the covenant of thy God to be lacking from thy meat offering: with all thine offerings thou shalt offer salt.
2777                                                                                                                                                                                                                                                                                                                                            And if thou offer a meat offering of thy firstfruits unto the LORD, thou shalt offer for the meat offering of thy firstfruits green ears of corn dried by the fire, even corn beaten out of full ears.
2778                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt put oil upon it, and lay frankincense thereon: it is a meat offering.
2779                                                                                                                                                                                                                                                                                                                                                      And the priest shall burn the memorial of it, part of the beaten corn thereof, and part of the oil thereof, with all the frankincense thereof: it is an offering made by fire unto the LORD.
2780                                                                                                                                                                                                                                                                                                                                                                              And if his oblation be a sacrifice of peace offering, if he offer it of the herd; whether it be a male or female, he shall offer it without blemish before the LORD.
2781                                                                                                                                                                                                                                                                                                                                         And he shall lay his hand upon the head of his offering, and kill it at the door of the tabernacle of the congregation: and Aaron's sons the priests shall sprinkle the blood upon the altar round about.
2782                                                                                                                                                                                                                                                                                                                                                                    And he shall offer of the sacrifice of the peace offering an offering made by fire unto the LORD; the fat that covereth the inwards, and all the fat that is upon the inwards,
2783                                                                                                                                                                                                                                                                                                                                                                                                  And the two kidneys, and the fat that is on them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away.
2784                                                                                                                                                                                                                                                                                                                                                                 And Aaron's sons shall burn it on the altar upon the burnt sacrifice, which is upon the wood that is on the fire: it is an offering made by fire, of a sweet savor unto the LORD.
2785                                                                                                                                                                                                                                                                                                                                                                                                           And if his offering for a sacrifice of peace offering unto the LORD be of the flock; male or female, he shall offer it without blemish.
2786                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If he offer a lamb for his offering, then shall he offer it before the LORD.
2787                                                                                                                                                                                                                                                                                                                                                     And he shall lay his hand upon the head of his offering, and kill it before the tabernacle of the congregation: and Aaron's sons shall sprinkle the blood thereof round about upon the altar.
2788                                                                                                                                                                                                                                                                                And he shall offer of the sacrifice of the peace offering an offering made by fire unto the LORD; the fat thereof, and the whole rump, it shall he take off hard by the backbone; and the fat that covereth the inwards, and all the fat that is upon the inwards,
2789                                                                                                                                                                                                                                                                                                                                                                                                And the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away.
2790                                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall burn it upon the altar: it is the food of the offering made by fire unto the LORD.
2791                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if his offering be a goat, then he shall offer it before the LORD.
2792                                                                                                                                                                                                                                                                                                                                                          And he shall lay his hand upon the head of it, and kill it before the tabernacle of the congregation: and the sons of Aaron shall sprinkle the blood thereof upon the altar round about.
2793                                                                                                                                                                                                                                                                                                                                                                                And he shall offer thereof his offering, even an offering made by fire unto the LORD; the fat that covereth the inwards, and all the fat that is upon the inwards,
2794                                                                                                                                                                                                                                                                                                                                                                                                And the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away.
2795                                                                                                                                                                                                                                                                                                                                                                                                          And the priest shall burn them upon the altar: it is the food of the offering made by fire for a sweet savor: all the fat is the LORD's.
2796                                                                                                                                                                                                                                                                                                                                                                                                                            It shall be a perpetual statute for your generations throughout all your dwellings, that ye eat neither fat nor blood.
2797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2798                                                                                                                                                                                                                                                                                                                                      Speak unto the children of Israel, saying, If a soul shall sin through ignorance against any of the commandments of the LORD concerning things which ought not to be done, and shall do against any of them:
2799                                                                                                                                                                                                                                                                                                                                                 If the priest that is anointed do sin according to the sin of the people; then let him bring for his sin, which he hath sinned, a young bullock without blemish unto the LORD for a sin offering.
2800                                                                                                                                                                                                                                                                                                                                                         And he shall bring the bullock unto the door of the tabernacle of the congregation before the LORD; and shall lay his hand upon the bullock's head, and kill the bullock before the LORD.
2801                                                                                                                                                                                                                                                                                                                                                                                                                            And the priest that is anointed shall take of the bullock's blood, and bring it to the tabernacle of the congregation:
2802                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall dip his finger in the blood, and sprinkle of the blood seven times before the LORD, before the vail of the sanctuary.
2803                                                                                                                                                                                                                                And the priest shall put some of the blood upon the horns of the altar of sweet incense before the LORD, which is in the tabernacle of the congregation; and shall pour all the blood of the bullock at the bottom of the altar of the burnt offering, which is at the door of the tabernacle of the congregation.
2804                                                                                                                                                                                                                                                                                                                                                                                       And he shall take off from it all the fat of the bullock for the sin offering; the fat that covereth the inwards, and all the fat that is upon the inwards,
2805                                                                                                                                                                                                                                                                                                                                                                                                And the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away,
2806                                                                                                                                                                                                                                                                                                                                                                                                    As it was taken off from the bullock of the sacrifice of peace offerings: and the priest shall burn them upon the altar of the burnt offering.
2807                                                                                                                                                                                                                                                                                                                                                                                                                                  And the skin of the bullock, and all his flesh, with his head, and with his legs, and his inwards, and his dung,
2808                                                                                                                                                                                                                                                                                                                                            Even the whole bullock shall he carry forth without the camp unto a clean place, where the ashes are poured out, and burn him on the wood with fire: where the ashes are poured out shall he be burnt.
2809                                                                                                                                                                                                                                                                                            And if the whole congregation of Israel sin through ignorance, and the thing be hid from the eyes of the assembly, and they have done somewhat against any of the commandments of the LORD concerning things which should not be done, and are guilty;
2810                                                                                                                                                                                                                                                                                                                                                                When the sin, which they have sinned against it, is known, then the congregation shall offer a young bullock for the sin, and bring him before the tabernacle of the congregation.
2811                                                                                                                                                                                                                                                                                                                                                                                           And the elders of the congregation shall lay their hands upon the head of the bullock before the LORD: and the bullock shall be killed before the LORD.
2812                                                                                                                                                                                                                                                                                                                                                                                                                                         And the priest that is anointed shall bring of the bullock's blood to the tabernacle of the congregation:
2813                                                                                                                                                                                                                                                                                                                                                                                                                      And the priest shall dip his finger in some of the blood, and sprinkle it seven times before the LORD, even before the vail.
2814                                                                                                                                                                                                                                                            And he shall put some of the blood upon the horns of the altar which is before the LORD, that is in the tabernacle of the congregation, and shall pour out all the blood at the bottom of the altar of the burnt offering, which is at the door of the tabernacle of the congregation.
2815                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he shall take all his fat from him, and burn it upon the altar.
2816                                                                                                                                                                                                                                                                                                                                                         And he shall do with the bullock as he did with the bullock for a sin offering, so shall he do with this: and the priest shall make an atonement for them, and it shall be forgiven them.
2817                                                                                                                                                                                                                                                                                                                                                                                                    And he shall carry forth the bullock without the camp, and burn him as he burned the first bullock: it is a sin offering for the congregation.
2818                                                                                                                                                                                                                                                                                                                                                                      When a ruler hath sinned, and done somewhat through ignorance against any of the commandments of the LORD his God concerning things which should not be done, and is guilty;
2819                                                                                                                                                                                                                                                                                                                                                                                                            Or if his sin, wherein he hath sinned, come to his knowledge; he shall bring his offering, a kid of the goats, a male without blemish:
2820                                                                                                                                                                                                                                                                                                                                                                                           And he shall lay his hand upon the head of the goat, and kill it in the place where they kill the burnt offering before the LORD: it is a sin offering.
2821                                                                                                                                                                                                                                                                                                                                  And the priest shall take of the blood of the sin offering with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out his blood at the bottom of the altar of burnt offering.
2822                                                                                                                                                                                                                                                                                                                                                 And he shall burn all his fat upon the altar, as the fat of the sacrifice of peace offerings: and the priest shall make an atonement for him as concerning his sin, and it shall be forgiven him.
2823                                                                                                                                                                                                                                                                                                                                                       And if any one of the common people sin through ignorance, while he doeth somewhat against any of the commandments of the LORD concerning things which ought not to be done, and be guilty;
2824                                                                                                                                                                                                                                                                                                                                                                     Or if his sin, which he hath sinned, come to his knowledge: then he shall bring his offering, a kid of the goats, a female without blemish, for his sin which he hath sinned.
2825                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall lay his hand upon the head of the sin offering, and slay the sin offering in the place of the burnt offering.
2826                                                                                                                                                                                                                                                                                                                                                    And the priest shall take of the blood thereof with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out all the blood thereof at the bottom of the altar.
2827                                                                                                                                                                                                                                                                        And he shall take away all the fat thereof, as the fat is taken away from off the sacrifice of peace offerings; and the priest shall burn it upon the altar for a sweet savor unto the LORD; and the priest shall make an atonement for him, and it shall be forgiven him.
2828                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if he bring a lamb for a sin offering, he shall bring it a female without blemish.
2829                                                                                                                                                                                                                                                                                                                                                                                                      And he shall lay his hand upon the head of the sin offering, and slay it for a sin offering in the place where they kill the burnt offering.
2830                                                                                                                                                                                                                                                                                                                                        And the priest shall take of the blood of the sin offering with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out all the blood thereof at the bottom of the altar:
2831                                                                                                                                                                                                        And he shall take away all the fat thereof, as the fat of the lamb is taken away from the sacrifice of the peace offerings; and the priest shall burn them upon the altar, according to the offerings made by fire unto the LORD: and the priest shall make an atonement for his sin that he hath committed, and it shall be forgiven him.
2832                                                                                                                                                                                                                                                                                                                                                                                 And if a soul sin, and hear the voice of swearing, and is a witness, whether he hath seen or known of it; if he do not utter it, then he shall bear his iniquity.
2833                                                                                                                                                                                                                                                                                                                 Or if a soul touch any unclean thing, whether it be a carcass of an unclean beast, or a carcass of unclean cattle, or the carcass of unclean creeping things, and if it be hidden from him; he also shall be unclean, and guilty.
2834                                                                                                                                                                                                                                                                                                                                                                   Or if he touch the uncleanness of man, whatsoever uncleanness it be that a man shall be defiled withal, and it be hid from him; when he knoweth of it, then he shall be guilty.
2835                                                                                                                                                                                                                                                                                                                        Or if a soul swear, pronouncing with his lips to do evil, or to do good, whatsoever it be that a man shall pronounce with an oath, and it be hid from him; when he knoweth of it, then he shall be guilty in one of these.
2836                                                                                                                                                                                                                                                                                                                                                                                                                         And it shall be, when he shall be guilty in one of these things, that he shall confess that he hath sinned in that thing:
2837                                                                                                                                                                                                                                                                                                            And he shall bring his trespass offering unto the LORD for his sin which he hath sinned, a female from the flock, a lamb or a kid of the goats, for a sin offering; and the priest shall make an atonement for him concerning his sin.
2838                                                                                                                                                                                                                                                                                                                           And if he be not able to bring a lamb, then he shall bring for his trespass, which he hath committed, two turtledoves, or two young pigeons, unto the LORD; one for a sin offering, and the other for a burnt offering.
2839                                                                                                                                                                                                                                                                                                                                                                         And he shall bring them unto the priest, who shall offer that which is for the sin offering first, and wring off his head from his neck, but shall not divide it asunder:
2840                                                                                                                                                                                                                                                                                                                                                                 And he shall sprinkle of the blood of the sin offering upon the side of the altar; and the rest of the blood shall be wrung out at the bottom of the altar: it is a sin offering.
2841                                                                                                                                                                                                                                                                                                                                                       And he shall offer the second for a burnt offering, according to the manner: and the priest shall make an atonement for him for his sin which he hath sinned, and it shall be forgiven him.
2842                                                                                                                                                                                                                                                         But if he be not able to bring two turtledoves, or two young pigeons, then he that sinned shall bring for his offering the tenth part of an ephah of fine flour for a sin offering; he shall put no oil upon it, neither shall he put any frankincense thereon: for it is a sin offering.
2843                                                                                                                                                                                                                                                                                                                                Then shall he bring it to the priest, and the priest shall take his handful of it, even a memorial thereof, and burn it on the altar, according to the offerings made by fire unto the LORD: it is a sin offering.
2844                                                                                                                                                                                                                                                                                                                                                  And the priest shall make an atonement for him as touching his sin that he hath sinned in one of these, and it shall be forgiven him: and the remnant shall be the priest's, as a meat offering.
2845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2846                                                                                                                                                                                                                                                         If a soul commit a trespass, and sin through ignorance, in the holy things of the LORD; then he shall bring for his trespass unto the LORD a ram without blemish out of the flocks, with thy estimation by shekels of silver, after the shekel of the sanctuary, for a trespass offering.
2847                                                                                                                                                                                                                                                                                 And he shall make amends for the harm that he hath done in the holy thing, and shall add the fifth part thereto, and give it unto the priest: and the priest shall make an atonement for him with the ram of the trespass offering, and it shall be forgiven him.
2848                                                                                                                                                                                                                                                                                                                                                           And if a soul sin, and commit any of these things which are forbidden to be done by the commandments of the LORD; though he wist it not, yet is he guilty, and shall bear his iniquity.
2849                                                                                                                                                                                                                                                                                 And he shall bring a ram without blemish out of the flock, with thy estimation, for a trespass offering, unto the priest: and the priest shall make an atonement for him concerning his ignorance wherein he erred and wist it not, and it shall be forgiven him.
2850                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is a trespass offering: he hath certainly trespassed against the LORD.
2851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2852                                                                                                                                                                                                                                                                                                                                  If a soul sin, and commit a trespass against the LORD, and lie unto his neighbor in that which was delivered him to keep, or in fellowship, or in a thing taken away by violence, or hath deceived his neighbor;
2853                                                                                                                                                                                                                                                                                                                                                                                                          Or have found that which was lost, and lieth concerning it, and sweareth falsely; in any of all these that a man doeth, sinning therein:
2854                                                                                                                                                                                                                                                                                                       Then it shall be, because he hath sinned, and is guilty, that he shall restore that which he took violently away, or the thing which he hath deceitfully gotten, or that which was delivered him to keep, or the lost thing which he found,
2855                                                                                                                                                                                                                                                                                                                           Or all that about which he hath sworn falsely; he shall even restore it in the principal, and shall add the fifth part more thereto, and give it unto him to whom it appertaineth, in the day of his trespass offering.
2856                                                                                                                                                                                                                                                                                                                                                                                    And he shall bring his trespass offering unto the LORD, a ram without blemish out of the flock, with thy estimation, for a trespass offering, unto the priest:
2857                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall make an atonement for him before the LORD: and it shall be forgiven him for any thing of all that he hath done in trespassing therein.
2858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2859                                                                                                                                                                                                                                                                                                                          Command Aaron and his sons, saying, This is the law of the burnt offering: It is the burnt offering, because of the burning upon the altar all night unto the morning, and the fire of the altar shall be burning in it.
2860                                                                                                                                                                                                                                                                                                               And the priest shall put on his linen garment, and his linen breeches shall he put upon his flesh, and take up the ashes which the fire hath consumed with the burnt offering on the altar, and he shall put them beside the altar.
2861                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall put off his garments, and put on other garments, and carry forth the ashes without the camp unto a clean place.
2862                                                                                                                                                                                                                                                                                                           And the fire upon the altar shall be burning in it; it shall not be put out: and the priest shall burn wood on it every morning, and lay the burnt offering in order upon it; and he shall burn thereon the fat of the peace offerings.
2863                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The fire shall ever be burning upon the altar; it shall never go out.
2864                                                                                                                                                                                                                                                                                                                                                                                                                                     And this is the law of the meat offering: the sons of Aaron shall offer it before the LORD, before the altar.
2865                                                                                                                                                                                                                                                                                             And he shall take of it his handful, of the flour of the meat offering, and of the oil thereof, and all the frankincense which is upon the meat offering, and shall burn it upon the altar for a sweet savor, even the memorial of it, unto the LORD.
2866                                                                                                                                                                                                                                                                                                                                                          And the remainder thereof shall Aaron and his sons eat: with unleavened bread shall it be eaten in the holy place; in the court of the tabernacle of the congregation they shall eat it.
2867                                                                                                                                                                                                                                                                                                                                                               It shall not be baked with leaven. I have given it unto them for their portion of my offerings made by fire; it is most holy, as is the sin offering, and as the trespass offering.
2868                                                                                                                                                                                                                                                                                                                                      All the males among the children of Aaron shall eat of it. It shall be a statute for ever in your generations concerning the offerings of the LORD made by fire: every one that toucheth them shall be holy.
2869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2870                                                                                                                                                                                                                                                                                                 This is the offering of Aaron and of his sons, which they shall offer unto the LORD in the day when he is anointed; the tenth part of an ephah of fine flour for a meat offering perpetual, half of it in the morning, and half thereof at night.
2871                                                                                                                                                                                                                                                                                                                                                                     In a pan it shall be made with oil; and when it is baked, thou shalt bring it in: and the baked pieces of the meat offering shalt thou offer for a sweet savor unto the LORD.
2872                                                                                                                                                                                                                                                                                                                                                                                                        And the priest of his sons that is anointed in his stead shall offer it: it is a statute for ever unto the LORD; it shall be wholly burnt.
2873                                                                                                                                                                                                                                                                                                                                                                                                                                                              For every meat offering for the priest shall be wholly burnt: it shall not be eaten.
2874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2875                                                                                                                                                                                                                                                                                                                                                 Speak unto Aaron and to his sons, saying, This is the law of the sin offering: In the place where the burnt offering is killed shall the sin offering be killed before the LORD: it is most holy.
2876                                                                                                                                                                                                                                                                                                                                                                                                        The priest that offereth it for sin shall eat it: in the holy place shall it be eaten, in the court of the tabernacle of the congregation.
2877                                                                                                                                                                                                                                                                                                                                                       Whatsoever shall touch the flesh thereof shall be holy: and when there is sprinkled of the blood thereof upon any garment, thou shalt wash that whereon it was sprinkled in the holy place.
2878                                                                                                                                                                                                                                                                                                                                                                                                  But the earthen vessel wherein it is sodden shall be broken: and if it be sodden in a brazen pot, it shall be both scoured, and rinsed in water.
2879                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All the males among the priests shall eat thereof: it is most holy.
2880                                                                                                                                                                                                                                                                                                                                                            And no sin offering, whereof any of the blood is brought into the tabernacle of the congregation to reconcile withal in the holy place, shall be eaten: it shall be burnt in the fire.
2881                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Likewise this is the law of the trespass offering: it is most holy.
2882                                                                                                                                                                                                                                                                                                                                                                                        In the place where they kill the burnt offering shall they kill the trespass offering: and the blood thereof shall he sprinkle round about upon the altar.
2883                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall offer of it all the fat thereof; the rump, and the fat that covereth the inwards,
2884                                                                                                                                                                                                                                                                                                                                                                                          And the two kidneys, and the fat that is on them, which is by the flanks, and the caul that is above the liver, with the kidneys, it shall he take away:
2885                                                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall burn them upon the altar for an offering made by fire unto the LORD: it is a trespass offering.
2886                                                                                                                                                                                                                                                                                                                                                                                                                                             Every male among the priests shall eat thereof: it shall be eaten in the holy place: it is most holy.
2887                                                                                                                                                                                                                                                                                                                                                                                                         As the sin offering is, so is the trespass offering: there is one law for them: the priest that maketh atonement therewith shall have it.
2888                                                                                                                                                                                                                                                                                                                                                                                                And the priest that offereth any man's burnt offering, even the priest shall have to himself the skin of the burnt offering which he hath offered.
2889                                                                                                                                                                                                                                                                                                                                                                                           And all the meat offering that is baked in the oven, and all that is dressed in the frying pan, and in the pan, shall be the priest's that offereth it.
2890                                                                                                                                                                                                                                                                                                                                                                                                                                     And every meat offering, mingled with oil, and dry, shall all the sons of Aaron have, one as much as another.
2891                                                                                                                                                                                                                                                                                                                                                                                                                                                      And this is the law of the sacrifice of peace offerings, which he shall offer unto the LORD.
2892                                                                                                                                                                                                                                                                                                                           If he offer it for a thanksgiving, then he shall offer with the sacrifice of thanksgiving unleavened cakes mingled with oil, and unleavened wafers anointed with oil, and cakes mingled with oil, of fine flour, fried.
2893                                                                                                                                                                                                                                                                                                                                                                                                                      Besides the cakes, he shall offer for his offering leavened bread with the sacrifice of thanksgiving of his peace offerings.
2894                                                                                                                                                                                                                                                                                                                                                                        And of it he shall offer one out of the whole oblation for an heave offering unto the LORD, and it shall be the priest's that sprinkleth the blood of the peace offerings.
2895                                                                                                                                                                                                                                                                                                                                                                            And the flesh of the sacrifice of his peace offerings for thanksgiving shall be eaten the same day that it is offered; he shall not leave any of it until the morning.
2896                                                                                                                                                                                                                                                                                                                                                 But if the sacrifice of his offering be a vow, or a voluntary offering, it shall be eaten the same day that he offereth his sacrifice: and on the morrow also the remainder of it shall be eaten:
2897                                                                                                                                                                                                                                                                                                                                                                                                                                                        But the remainder of the flesh of the sacrifice on the third day shall be burnt with fire.
2898                                                                                                                                                                                                                                                                            And if any of the flesh of the sacrifice of his peace offerings be eaten at all on the third day, it shall not be accepted, neither shall it be imputed unto him that offereth it: it shall be an abomination, and the soul that eateth of it shall bear his iniquity.
2899                                                                                                                                                                                                                                                                                                                                                                                         And the flesh that toucheth any unclean thing shall not be eaten; it shall be burnt with fire: and as for the flesh, all that be clean shall eat thereof.
2900                                                                                                                                                                                                                                                                                                                                                          But the soul that eateth of the flesh of the sacrifice of peace offerings, that pertain unto the LORD, having his uncleanness upon him, even that soul shall be cut off from his people.
2901                                                                                                                                                                                                                                                                   Moreover the soul that shall touch any unclean thing, as the uncleanness of man, or any unclean beast, or any abominable unclean thing, and eat of the flesh of the sacrifice of peace offerings, which pertain unto the LORD, even that soul shall be cut off from his people.
2902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2903                                                                                                                                                                                                                                                                                                                                                                                                                                         Speak unto the children of Israel, saying, Ye shall eat no manner of fat, of ox, or of sheep, or of goat.
2904                                                                                                                                                                                                                                                                                                                                                                                    And the fat of the beast that dieth of itself, and the fat of that which is torn with beasts, may be used in any other use: but ye shall in no wise eat of it.
2905                                                                                                                                                                                                                                                                                                                                                                              For whosoever eateth the fat of the beast, of which men offer an offering made by fire unto the LORD, even the soul that eateth it shall be cut off from his people.
2906                                                                                                                                                                                                                                                                                                                                                                                                                                            Moreover ye shall eat no manner of blood, whether it be of fowl or of beast, in any of your dwellings.
2907                                                                                                                                                                                                                                                                                                                                                                                                                                           Whatsoever soul it be that eateth any manner of blood, even that soul shall be cut off from his people.
2908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2909                                                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, saying, He that offereth the sacrifice of his peace offerings unto the LORD shall bring his oblation unto the LORD of the sacrifice of his peace offerings.
2910                                                                                                                                                                                                                                                                                                                                                                   His own hands shall bring the offerings of the LORD made by fire, the fat with the breast, it shall he bring, that the breast may be waved for a wave offering before the LORD.
2911                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the priest shall burn the fat upon the altar: but the breast shall be Aaron's and his sons'.
2912                                                                                                                                                                                                                                                                                                                                                                                                                             And the right shoulder shall ye give unto the priest for an heave offering of the sacrifices of your peace offerings.
2913                                                                                                                                                                                                                                                                                                                                                                                                              He among the sons of Aaron, that offereth the blood of the peace offerings, and the fat, shall have the right shoulder for his part.
2914                                                                                                                                                                                                                                                                                          For the wave breast and the heave shoulder have I taken of the children of Israel from off the sacrifices of their peace offerings, and have given them unto Aaron the priest and unto his sons by a statute for ever from among the children of Israel.
2915                                                                                                                                                                                                                                                                                                                               This is the portion of the anointing of Aaron, and of the anointing of his sons, out of the offerings of the LORD made by fire, in the day when he presented them to minister unto the LORD in the priest's office;
2916                                                                                                                                                                                                                                                                                                                                                                                        Which the LORD commanded to be given them of the children of Israel, in the day that he anointed them, by a statute for ever throughout their generations.
2917                                                                                                                                                                                                                                                                                                                                                        This is the law of the burnt offering, of the meat offering, and of the sin offering, and of the trespass offering, and of the consecrations, and of the sacrifice of the peace offerings;
2918                                                                                                                                                                                                                                                                                                                                                                            Which the LORD commanded Moses in mount Sinai, in the day that he commanded the children of Israel to offer their oblations unto the LORD, in the wilderness of Sinai.
2919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
2920                                                                                                                                                                                                                                                                                                                                                                                    Take Aaron and his sons with him, and the garments, and the anointing oil, and a bullock for the sin offering, and two rams, and a basket of unleavened bread;
2921                                                                                                                                                                                                                                                                                                                                                                                                                                                And gather thou all the congregation together unto the door of the tabernacle of the congregation.
2922                                                                                                                                                                                                                                                                                                                                                                                                              And Moses did as the LORD commanded him; and the assembly was gathered together unto the door of the tabernacle of the congregation.
2923                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said unto the congregation, This is the thing which the LORD commanded to be done.
2924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses brought Aaron and his sons, and washed them with water.
2925                                                                                                                                                                                                                                                                                                                                 And he put upon him the coat, and girded him with the girdle, and clothed him with the robe, and put the ephod upon him, and he girded him with the curious girdle of the ephod, and bound it unto him therewith.
2926                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he put the breastplate upon him: also he put in the breastplate the Urim and the Thummim.
2927                                                                                                                                                                                                                                                                                                                                                                                       And he put the mitre upon his head; also upon the mitre, even upon his forefront, did he put the golden plate, the holy crown; as the LORD commanded Moses.
2928                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses took the anointing oil, and anointed the tabernacle and all that was therein, and sanctified them.
2929                                                                                                                                                                                                                                                                                                                                                                                                   And he sprinkled thereof upon the altar seven times, and anointed the altar and all his vessels, both the laver and his foot, to sanctify them.
2930                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he poured of the anointing oil upon Aaron's head, and anointed him, to sanctify him.
2931                                                                                                                                                                                                                                                                                                                                                                                                    And Moses brought Aaron's sons, and put coats upon them, and girded them with girdles, and put bonnets upon them; as the LORD commanded Moses.
2932                                                                                                                                                                                                                                                                                                                                                                                                       And he brought the bullock for the sin offering: and Aaron and his sons laid their hands upon the head of the bullock for the sin offering.
2933                                                                                                                                                                                                                                                                                                         And he slew it; and Moses took the blood, and put it upon the horns of the altar round about with his finger, and purified the altar, and poured the blood at the bottom of the altar, and sanctified it, to make reconciliation upon it.
2934                                                                                                                                                                                                                                                                                                                                                                                          And he took all the fat that was upon the inwards, and the caul above the liver, and the two kidneys, and their fat, and Moses burned it upon the altar.
2935                                                                                                                                                                                                                                                                                                                                                                                                                         But the bullock, and his hide, his flesh, and his dung, he burnt with fire without the camp; as the LORD commanded Moses.
2936                                                                                                                                                                                                                                                                                                                                                                                                                                  And he brought the ram for the burnt offering: and Aaron and his sons laid their hands upon the head of the ram.
2937                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he killed it; and Moses sprinkled the blood upon the altar round about.
2938                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he cut the ram into pieces; and Moses burnt the head, and the pieces, and the fat.
2939                                                                                                                                                                                                                                                                                                                               And he washed the inwards and the legs in water; and Moses burnt the whole ram upon the altar: it was a burnt sacrifice for a sweet savor, and an offering made by fire unto the LORD; as the LORD commanded Moses.
2940                                                                                                                                                                                                                                                                                                                                                                                                                          And he brought the other ram, the ram of consecration: and Aaron and his sons laid their hands upon the head of the ram.
2941                                                                                                                                                                                                                                                                                                                                                                  And he slew it; and Moses took of the blood of it, and put it upon the tip of Aaron's right ear, and upon the thumb of his right hand, and upon the great toe of his right foot.
2942                                                                                                                                                                                                                                                                                                         And he brought Aaron's sons, and Moses put of the blood upon the tip of their right ear, and upon the thumbs of their right hands, and upon the great toes of their right feet: and Moses sprinkled the blood upon the altar round about.
2943                                                                                                                                                                                                                                                                                                                                                                           And he took the fat, and the rump, and all the fat that was upon the inwards, and the caul above the liver, and the two kidneys, and their fat, and the right shoulder:
2944                                                                                                                                                                                                                                                                                                                                                 And out of the basket of unleavened bread, that was before the LORD, he took one unleavened cake, and a cake of oiled bread, and one wafer, and put them on the fat, and upon the right shoulder:
2945                                                                                                                                                                                                                                                                                                                                                                                                                                  And he put all upon Aaron's hands, and upon his sons' hands, and waved them for a wave offering before the LORD.
2946                                                                                                                                                                                                                                                                                                                                                           And Moses took them from off their hands, and burnt them on the altar upon the burnt offering: they were consecrations for a sweet savor: it is an offering made by fire unto the LORD.
2947                                                                                                                                                                                                                                                                                                                                                                                      And Moses took the breast, and waved it for a wave offering before the LORD: for of the ram of consecration it was Moses' part; as the LORD commanded Moses.
2948                                                                                                                                                                                                                                                               And Moses took of the anointing oil, and of the blood which was upon the altar, and sprinkled it upon Aaron, and upon his garments, and upon his sons, and upon his sons' garments with him; and sanctified Aaron, and his garments, and his sons, and his sons' garments with him.
2949                                                                                                                                                                                                                                                                                                     And Moses said unto Aaron and to his sons, Boil the flesh at the door of the tabernacle of the congregation: and there eat it with the bread that is in the basket of consecrations, as I commanded, saying, Aaron and his sons shall eat it.
2950                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And that which remaineth of the flesh and of the bread shall ye burn with fire.
2951                                                                                                                                                                                                                                                                                                                                                                And ye shall not go out of the door of the tabernacle of the congregation in seven days, until the days of your consecration be at an end: for seven days shall he consecrate you.
2952                                                                                                                                                                                                                                                                                                                                                                                                                                                         As he hath done this day, so the LORD hath commanded to do, to make an atonement for you.
2953                                                                                                                                                                                                                                                                                                                                                                     Therefore shall ye abide at the door of the tabernacle of the congregation day and night seven days, and keep the charge of the LORD, that ye die not: for so I am commanded.
2954                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Aaron and his sons did all things which the LORD commanded by the hand of Moses.
2955                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass on the eighth day, that Moses called Aaron and his sons, and the elders of Israel;
2956                                                                                                                                                                                                                                                                                                                                                                                               And he said unto Aaron, Take thee a young calf for a sin offering, and a ram for a burnt offering, without blemish, and offer them before the LORD.
2957                                                                                                                                                                                                                                                                                                                                                    And unto the children of Israel thou shalt speak, saying, Take ye a kid of the goats for a sin offering; and a calf and a lamb, both of the first year, without blemish, for a burnt offering;
2958                                                                                                                                                                                                                                                                                                                                                                                       Also a bullock and a ram for peace offerings, to sacrifice before the LORD; and a meat offering mingled with oil: for to day the LORD will appear unto you.
2959                                                                                                                                                                                                                                                                                                                                                                                              And they brought that which Moses commanded before the tabernacle of the congregation: and all the congregation drew near and stood before the LORD.
2960                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses said, This is the thing which the LORD commanded that ye should do: and the glory of the LORD shall appear unto you.
2961                                                                                                                                                                                                                                                                                             And Moses said unto Aaron, Go unto the altar, and offer thy sin offering, and thy burnt offering, and make an atonement for thyself, and for the people: and offer the offering of the people, and make an atonement for them; as the LORD commanded.
2962                                                                                                                                                                                                                                                                                                                                                                                                                                                Aaron therefore went unto the altar, and slew the calf of the sin offering, which was for himself.
2963                                                                                                                                                                                                                                                                                                                                                             And the sons of Aaron brought the blood unto him: and he dipped his finger in the blood, and put it upon the horns of the altar, and poured out the blood at the bottom of the altar:
2964                                                                                                                                                                                                                                                                                                                                                                                                             But the fat, and the kidneys, and the caul above the liver of the sin offering, he burnt upon the altar; as the LORD commanded Moses.
2965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the flesh and the hide he burnt with fire without the camp.
2966                                                                                                                                                                                                                                                                                                                                                                                                                     And he slew the burnt offering; and Aaron's sons presented unto him the blood, which he sprinkled round about upon the altar.
2967                                                                                                                                                                                                                                                                                                                                                                                                                          And they presented the burnt offering unto him, with the pieces thereof, and the head: and he burnt them upon the altar.
2968                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he did wash the inwards and the legs, and burnt them upon the burnt offering on the altar.
2969                                                                                                                                                                                                                                                                                                                                                                                            And he brought the people's offering, and took the goat, which was the sin offering for the people, and slew it, and offered it for sin, as the first.
2970                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he brought the burnt offering, and offered it according to the manner.
2971                                                                                                                                                                                                                                                                                                                                                                                                            And he brought the meat offering, and took an handful thereof, and burnt it upon the altar, beside the burnt sacrifice of the morning.
2972                                                                                                                                                                                                                                                                                                                                                  He slew also the bullock and the ram for a sacrifice of peace offerings, which was for the people: and Aaron's sons presented unto him the blood, which he sprinkled upon the altar round about,
2973                                                                                                                                                                                                                                                                                                                                                                                                          And the fat of the bullock and of the ram, the rump, and that which covereth the inwards, and the kidneys, and the caul above the liver:
2974                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they put the fat upon the breasts, and he burnt the fat upon the altar:
2975                                                                                                                                                                                                                                                                                                                                                                                                                                       And the breasts and the right shoulder Aaron waved for a wave offering before the LORD; as Moses commanded.
2976                                                                                                                                                                                                                                                                                                                                                                                   And Aaron lifted up his hand toward the people, and blessed them, and came down from offering of the sin offering, and the burnt offering, and peace offerings.
2977                                                                                                                                                                                                                                                                                                                                                                                   And Moses and Aaron went into the tabernacle of the congregation, and came out, and blessed the people: and the glory of the LORD appeared unto all the people.
2978                                                                                                                                                                                                                                                                                                                                                                 And there came a fire out from before the LORD, and consumed upon the altar the burnt offering and the fat: which when all the people saw, they shouted, and fell on their faces.
2979                                                                                                                                                                                                                                                                                                                                                     And Nadab and Abihu, the sons of Aaron, took either of them his censer, and put fire therein, and put incense thereon, and offered strange fire before the LORD, which he commanded them not.
2980                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there went out fire from the LORD, and devoured them, and they died before the LORD.
2981                                                                                                                                                                                                                                                                                                                                                      Then Moses said unto Aaron, This is it that the LORD spake, saying, I will be sanctified in them that come nigh me, and before all the people I will be glorified. And Aaron held his peace.
2982                                                                                                                                                                                                                                                                                                                                                                       And Moses called Mishael and Elzaphan, the sons of Uzziel the uncle of Aaron, and said unto them, Come near, carry your brethren from before the sanctuary out of the camp.
2983                                                                                                                                                                                                                                                                                                                                                                                                                                                            So they went near, and carried them in their coats out of the camp; as Moses had said.
2984                                                                                                                                                                                                                                                                And Moses said unto Aaron, and unto Eleazar and unto Ithamar, his sons, Uncover not your heads, neither rend your clothes; lest ye die, and lest wrath come upon all the people: but let your brethren, the whole house of Israel, bewail the burning which the LORD hath kindled.
2985                                                                                                                                                                                                                                                                                                                                                             And ye shall not go out from the door of the tabernacle of the congregation, lest ye die: for the anointing oil of the LORD is upon you. And they did according to the word of Moses.
2986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Aaron, saying,
2987                                                                                                                                                                                                                                                                                                                                                    Do not drink wine nor strong drink, thou, nor thy sons with thee, when ye go into the tabernacle of the congregation, lest ye die: it shall be a statute for ever throughout your generations:
2988                                                                                                                                                                                                                                                                                                                                                                                                                                                            And that ye may put difference between holy and unholy, and between unclean and clean;
2989                                                                                                                                                                                                                                                                                                                                                                                                                          And that ye may teach the children of Israel all the statutes which the LORD hath spoken unto them by the hand of Moses.
2990                                                                                                                                                                                                                                                                                                         And Moses spake unto Aaron, and unto Eleazar and unto Ithamar, his sons that were left, Take the meat offering that remaineth of the offerings of the LORD made by fire, and eat it without leaven beside the altar: for it is most holy:
2991                                                                                                                                                                                                                                                                                                                                                                                               And ye shall eat it in the holy place, because it is thy due, and thy sons' due, of the sacrifices of the LORD made by fire: for so I am commanded.
2992                                                                                                                                                                                                                                                                                                And the wave breast and heave shoulder shall ye eat in a clean place; thou, and thy sons, and thy daughters with thee: for they be thy due, and thy sons' due, which are given out of the sacrifices of peace offerings of the children of Israel.
2993                                                                                                                                                                                                                                                                                            The heave shoulder and the wave breast shall they bring with the offerings made by fire of the fat, to wave it for a wave offering before the LORD; and it shall be thine, and thy sons' with thee, by a statute for ever; as the LORD hath commanded.
2994                                                                                                                                                                                                                                                                                                                                                                  And Moses diligently sought the goat of the sin offering, and, behold, it was burnt: and he was angry with Eleazar and Ithamar, the sons of Aaron which were left alive, saying,
2995                                                                                                                                                                                                                                                                                                                                           Wherefore have ye not eaten the sin offering in the holy place, seeing it is most holy, and God hath given it you to bear the iniquity of the congregation, to make atonement for them before the LORD?
2996                                                                                                                                                                                                                                                                                                                                                                                                               Behold, the blood of it was not brought in within the holy place: ye should indeed have eaten it in the holy place, as I commanded.
2997                                                                                                                                                                                                                                                                                   And Aaron said unto Moses, Behold, this day have they offered their sin offering and their burnt offering before the LORD; and such things have befallen me: and if I had eaten the sin offering to day, should it have been accepted in the sight of the LORD?
2998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when Moses heard that, he was content.
2999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD spake unto Moses and to Aaron, saying unto them,
3000                                                                                                                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, saying, These are the beasts which ye shall eat among all the beasts that are on the earth.
3001                                                                                                                                                                                                                                                                                                                                                                                                                                      Whatsoever parteth the hoof, and is cloven-footed, and cheweth the cud, among the beasts, that shall ye eat.
3002                                                                                                                                                                                                                                                                                                                                                      Nevertheless these shall ye not eat of them that chew the cud, or of them that divide the hoof: as the camel, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.
3003                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the coney, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.
3004                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the hare, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.
3005                                                                                                                                                                                                                                                                                                                                                                                                                                 And the swine, though he divide the hoof, and be cloven-footed, yet he cheweth not the cud; he is unclean to you.
3006                                                                                                                                                                                                                                                                                                                                                                                                                                                   Of their flesh shall ye not eat, and their carcass shall ye not touch; they are unclean to you.
3007                                                                                                                                                                                                                                                                                                                                                                                               These shall ye eat of all that are in the waters: whatsoever hath fins and scales in the waters, in the seas, and in the rivers, them shall ye eat.
3008                                                                                                                                                                                                                                                                                                                                                      And all that have not fins and scales in the seas, and in the rivers, of all that move in the waters, and of any living thing which is in the waters, they shall be an abomination unto you:
3009                                                                                                                                                                                                                                                                                                                                                                                                                    They shall be even an abomination unto you; ye shall not eat of their flesh, but ye shall have their carcasses in abomination.
3010                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whatsoever hath no fins nor scales in the waters, that shall be an abomination unto you.
3011                                                                                                                                                                                                                                                                                                                                                                            And these are they which ye shall have in abomination among the fowls; they shall not be eaten, they are an abomination: the eagle, and the ossifrage, and the ospray,
3012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the vulture, and the kite after his kind;
3013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every raven after his kind;
3014                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the owl, and the night hawk, and the cuckoo, and the hawk after his kind,
3015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the little owl, and the cormorant, and the great owl,
3016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the swan, and the pelican, and the gier eagle,
3017                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the stork, the heron after her kind, and the lapwing, and the bat.
3018                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All fowls that creep, going upon all four, shall be an abomination unto you.
3019                                                                                                                                                                                                                                                                                                                                                                                                    Yet these may ye eat of every flying creeping thing that goeth upon all four, which have legs above their feet, to leap withal upon the earth;
3020                                                                                                                                                                                                                                                                                                                                                                                  Even these of them ye may eat; the locust after his kind, and the bald locust after his kind, and the beetle after his kind, and the grasshopper after his kind.
3021                                                                                                                                                                                                                                                                                                                                                                                                                                                     But all other flying creeping things, which have four feet, shall be an abomination unto you.
3022                                                                                                                                                                                                                                                                                                                                                                                                                                        And for these ye shall be unclean: whosoever toucheth the carcass of them shall be unclean until the even.
3023                                                                                                                                                                                                                                                                                                                                                                                                                                         And whosoever beareth ought of the carcass of them shall wash his clothes, and be unclean until the even.
3024                                                                                                                                                                                                                                                                                                                                                                         The carcasses of every beast which divideth the hoof, and is not cloven-footed, nor cheweth the cud, are unclean unto you: every one that toucheth them shall be unclean.
3025                                                                                                                                                                                                                                                                                                                                                                     And whatsoever goeth upon his paws, among all manner of beasts that go on all four, those are unclean unto you: whoso toucheth their carcass shall be unclean until the even.
3026                                                                                                                                                                                                                                                                                                                                                                                                                         And he that beareth the carcass of them shall wash his clothes, and be unclean until the even: they are unclean unto you.
3027                                                                                                                                                                                                                                                                                                                                                                                             These also shall be unclean unto you among the creeping things that creep upon the earth; the weasel, and the mouse, and the tortoise after his kind,
3028                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the ferret, and the chameleon, and the lizard, and the snail, and the mole.
3029                                                                                                                                                                                                                                                                                                                                                                                                                     These are unclean to you among all that creep: whosoever doth touch them, when they be dead, shall be unclean until the even.
3030                                                                                                                                                                                                                                               And upon whatsoever any of them, when they are dead, doth fall, it shall be unclean; whether it be any vessel of wood, or raiment, or skin, or sack, whatsoever vessel it be, wherein any work is done, it must be put into water, and it shall be unclean until the even; so it shall be cleansed.
3031                                                                                                                                                                                                                                                                                                                                                                                                                             And every earthen vessel, whereinto any of them falleth, whatsoever is in it shall be unclean; and ye shall break it.
3032                                                                                                                                                                                                                                                                                                                                                                                          Of all meat which may be eaten, that on which such water cometh shall be unclean: and all drink that may be drunk in every such vessel shall be unclean.
3033                                                                                                                                                                                                                                                                                                                                              And every thing whereupon any part of their carcass falleth shall be unclean; whether it be oven, or ranges for pots, they shall be broken down: for they are unclean and shall be unclean unto you.
3034                                                                                                                                                                                                                                                                                                                                                                                                         Nevertheless a fountain or pit, wherein there is plenty of water, shall be clean: but that which toucheth their carcass shall be unclean.
3035                                                                                                                                                                                                                                                                                                                                                                                                                                                And if any part of their carcass fall upon any sowing seed which is to be sown, it shall be clean.
3036                                                                                                                                                                                                                                                                                                                                                                                                                                  But if any water be put upon the seed, and any part of their carcass fall thereon, it shall be unclean unto you.
3037                                                                                                                                                                                                                                                                                                                                                                                                                                 And if any beast, of which ye may eat, die; he that toucheth the carcass thereof shall be unclean until the even.
3038                                                                                                                                                                                                                                                                                                                                                      And he that eateth of the carcass of it shall wash his clothes, and be unclean until the even: he also that beareth the carcass of it shall wash his clothes, and be unclean until the even.
3039                                                                                                                                                                                                                                                                                                                                                                                                                                             And every creeping thing that creepeth upon the earth shall be an abomination; it shall not be eaten.
3040                                                                                                                                                                                                                                                                                                                                        Whatsoever goeth upon the belly, and whatsoever goeth upon all four, or whatsoever hath more feet among all creeping things that creep upon the earth, them ye shall not eat; for they are an abomination.
3041                                                                                                                                                                                                                                                                                                                                                                             Ye shall not make yourselves abominable with any creeping thing that creepeth, neither shall ye make yourselves unclean with them, that ye should be defiled thereby.
3042                                                                                                                                                                                                                                                                                                                                       For I am the LORD your God: ye shall therefore sanctify yourselves, and ye shall be holy; for I am holy: neither shall ye defile yourselves with any manner of creeping thing that creepeth upon the earth.
3043                                                                                                                                                                                                                                                                                                                                                                                                                       For I am the LORD that bringeth you up out of the land of Egypt, to be your God: ye shall therefore be holy, for I am holy.
3044                                                                                                                                                                                                                                                                                                                                                                                       This is the law of the beasts, and of the fowl, and of every living creature that moveth in the waters, and of every creature that creepeth upon the earth:
3045                                                                                                                                                                                                                                                                                                                                                                                                              To make a difference between the unclean and the clean, and between the beast that may be eaten and the beast that may not be eaten.
3046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3047                                                                                                                                                                                                                                                                                                                            Speak unto the children of Israel, saying, If a woman have conceived seed, and born a man child: then she shall be unclean seven days; according to the days of the separation for her infirmity shall she be unclean.
3048                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And in the eighth day the flesh of his foreskin shall be circumcised.
3049                                                                                                                                                                                                                                                                                                                                                    And she shall then continue in the blood of her purifying three and thirty days; she shall touch no hallowed thing, nor come into the sanctuary, until the days of her purifying be fulfilled.
3050                                                                                                                                                                                                                                                                                                                                                                            But if she bear a maid child, then she shall be unclean two weeks, as in her separation: and she shall continue in the blood of her purifying threescore and six days.
3051                                                                                                                                                                                                                                                                     And when the days of her purifying are fulfilled, for a son, or for a daughter, she shall bring a lamb of the first year for a burnt offering, and a young pigeon, or a turtledove, for a sin offering, unto the door of the tabernacle of the congregation, unto the priest:
3052                                                                                                                                                                                                                                                                                                                                                              Who shall offer it before the LORD, and make an atonement for her; and she shall be cleansed from the issue of her blood. This is the law for her that hath born a male or a female.
3053                                                                                                                                                                                                                                                                                                         And if she be not able to bring a lamb, then she shall bring two turtles, or two young pigeons; the one for the burnt offering, and the other for a sin offering: and the priest shall make an atonement for her, and she shall be clean.
3054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD spake unto Moses and Aaron, saying,
3055                                                                                                                                                                                                                                                                                                              When a man shall have in the skin of his flesh a rising, a scab, or bright spot, and it be in the skin of his flesh like the plague of leprosy; then he shall be brought unto Aaron the priest, or unto one of his sons the priests:
3056                                                                                                                                                                                                                                                                          And the priest shall look on the plague in the skin of the flesh: and when the hair in the plague is turned white, and the plague in sight be deeper than the skin of his flesh, it is a plague of leprosy: and the priest shall look on him, and pronounce him unclean.
3057                                                                                                                                                                                                                                                                                                                                      If the bright spot be white in the skin of his flesh, and in sight be not deeper than the skin, and the hair thereof be not turned white; then the priest shall shut up him that hath the plague seven days:
3058                                                                                                                                                                                                                                                                                                                                                 And the priest shall look on him the seventh day: and, behold, if the plague in his sight be at a stay, and the plague spread not in the skin; then the priest shall shut him up seven days more:
3059                                                                                                                                                                                                                                                                                                  And the priest shall look on him again the seventh day: and, behold, if the plague be somewhat dark, and the plague spread not in the skin, the priest shall pronounce him clean: it is but a scab: and he shall wash his clothes, and be clean.
3060                                                                                                                                                                                                                                                                                                                                                                                               But if the scab spread much abroad in the skin, after that he hath been seen of the priest for his cleansing, he shall be seen of the priest again.
3061                                                                                                                                                                                                                                                                                                                                                                                                                 And if the priest see that, behold, the scab spreadeth in the skin, then the priest shall pronounce him unclean: it is a leprosy.
3062                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When the plague of leprosy is in a man, then he shall be brought unto the priest;
3063                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall see him: and, behold, if the rising be white in the skin, and it have turned the hair white, and there be quick raw flesh in the rising;
3064                                                                                                                                                                                                                                                                                                                                                                                                          It is an old leprosy in the skin of his flesh, and the priest shall pronounce him unclean, and shall not shut him up: for he is unclean.
3065                                                                                                                                                                                                                                                                                                                                                                     And if a leprosy break out abroad in the skin, and the leprosy cover all the skin of him that hath the plague from his head even to his foot, wheresoever the priest looketh;
3066                                                                                                                                                                                                                                                                                                                                                                   Then the priest shall consider: and, behold, if the leprosy have covered all his flesh, he shall pronounce him clean that hath the plague: it is all turned white: he is clean.
3067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But when raw flesh appeareth in him, he shall be unclean.
3068                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall see the raw flesh, and pronounce him to be unclean: for the raw flesh is unclean: it is a leprosy.
3069                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or if the raw flesh turn again, and be changed unto white, he shall come unto the priest;
3070                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall see him: and, behold, if the plague be turned into white; then the priest shall pronounce him clean that hath the plague: he is clean.
3071                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The flesh also, in which, even in the skin thereof, was a boil, and is healed,
3072                                                                                                                                                                                                                                                                                                                                                                                                              And in the place of the boil there be a white rising, or a bright spot, white, and somewhat reddish, and it be showed to the priest;
3073                                                                                                                                                                                                                                                                                                                                     And if, when the priest seeth it, behold, it be in sight lower than the skin, and the hair thereof be turned white; the priest shall pronounce him unclean: it is a plague of leprosy broken out of the boil.
3074                                                                                                                                                                                                                                                                                                                                                             But if the priest look on it, and, behold, there be no white hairs therein, and if it be not lower than the skin, but be somewhat dark; then the priest shall shut him up seven days:
3075                                                                                                                                                                                                                                                                                                                                                                                                                                            And if it spread much abroad in the skin, then the priest shall pronounce him unclean: it is a plague.
3076                                                                                                                                                                                                                                                                                                                                                                                                                         But if the bright spot stay in his place, and spread not, it is a burning boil; and the priest shall pronounce him clean.
3077                                                                                                                                                                                                                                                                                                                                                                                      Or if there be any flesh, in the skin whereof there is a hot burning, and the quick flesh that burneth have a white bright spot, somewhat reddish, or white;
3078                                                                                                                                                                                                                                                                               Then the priest shall look upon it: and, behold, if the hair in the bright spot be turned white, and it be in sight deeper than the skin; it is a leprosy broken out of the burning: wherefore the priest shall pronounce him unclean: it is the plague of leprosy.
3079                                                                                                                                                                                                                                                                                                                                                 But if the priest look on it, and, behold, there be no white hair in the bright spot, and it be no lower than the other skin, but be somewhat dark; then the priest shall shut him up seven days:
3080                                                                                                                                                                                                                                                                                                                                                                        And the priest shall look upon him the seventh day: and if it be spread much abroad in the skin, then the priest shall pronounce him unclean: it is the plague of leprosy.
3081                                                                                                                                                                                                                                                                                                                                 And if the bright spot stay in his place, and spread not in the skin, but it be somewhat dark; it is a rising of the burning, and the priest shall pronounce him clean: for it is an inflammation of the burning.
3082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If a man or woman have a plague upon the head or the beard;
3083                                                                                                                                                                                                                                                                                                          Then the priest shall see the plague: and, behold, if it be in sight deeper than the skin; and there be in it a yellow thin hair; then the priest shall pronounce him unclean: it is a dry scall, even a leprosy upon the head or beard.
3084                                                                                                                                                                                                                                                                                                                   And if the priest look on the plague of the scall, and, behold, it be not in sight deeper than the skin, and that there is no black hair in it; then the priest shall shut up him that hath the plague of the scall seven days:
3085                                                                                                                                                                                                                                                                                                                                                          And in the seventh day the priest shall look on the plague: and, behold, if the scall spread not, and there be in it no yellow hair, and the scall be not in sight deeper than the skin;
3086                                                                                                                                                                                                                                                                                                                                                                                                                       He shall be shaven, but the scall shall he not shave; and the priest shall shut up him that hath the scall seven days more:
3087                                                                                                                                                                                                                                                                                                     And in the seventh day the priest shall look on the scall: and, behold, if the scall be not spread in the skin, nor be in sight deeper than the skin; then the priest shall pronounce him clean: and he shall wash his clothes, and be clean.
3088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But if the scall spread much in the skin after his cleansing;
3089                                                                                                                                                                                                                                                                                                                                                                                                     Then the priest shall look on him: and, behold, if the scall be spread in the skin, the priest shall not seek for yellow hair; he is unclean.
3090                                                                                                                                                                                                                                                                                                                                                                            But if the scall be in his sight at a stay, and that there is black hair grown up therein; the scall is healed, he is clean: and the priest shall pronounce him clean.
3091                                                                                                                                                                                                                                                                                                                                                                                                                                                   If a man also or a woman have in the skin of their flesh bright spots, even white bright spots;
3092                                                                                                                                                                                                                                                                                                                                                                            Then the priest shall look: and, behold, if the bright spots in the skin of their flesh be darkish white; it is a freckled spot that groweth in the skin; he is clean.
3093                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the man whose hair is fallen off his head, he is bald; yet is he clean.
3094                                                                                                                                                                                                                                                                                                                                                                                                                             And he that hath his hair fallen off from the part of his head toward his face, he is forehead bald: yet is he clean.
3095                                                                                                                                                                                                                                                                                                                                                                                                       And if there be in the bald head, or bald forehead, a white reddish sore; it is a leprosy sprung up in his bald head, or his bald forehead.
3096                                                                                                                                                                                                                                                                                                                                                         Then the priest shall look upon it: and, behold, if the rising of the sore be white reddish in his bald head, or in his bald forehead, as the leprosy appeareth in the skin of the flesh;
3097                                                                                                                                                                                                                                                                                                                                                                                                                                    He is a leprous man, he is unclean: the priest shall pronounce him utterly unclean; his plague is in his head.
3098                                                                                                                                                                                                                                                                                                                                                                               And the leper in whom the plague is, his clothes shall be rent, and his head bare, and he shall put a covering upon his upper lip, and shall cry, Unclean, unclean.
3099                                                                                                                                                                                                                                                                                                                                                                                               All the days wherein the plague shall be in him he shall be defiled; he is unclean: he shall dwell alone; without the camp shall his habitation be.
3100                                                                                                                                                                                                                                                                                                                                                                                                                                            The garment also that the plague of leprosy is in, whether it be a woolen garment, or a linen garment;
3101                                                                                                                                                                                                                                                                                                                                                                                                                                      Whether it be in the warp, or woof; of linen, or of woolen; whether in a skin, or in any thing made of skin;
3102                                                                                                                                                                                                                                                                                                                                             And if the plague be greenish or reddish in the garment, or in the skin, either in the warp, or in the woof, or in any thing of skin; it is a plague of leprosy, and shall be showed unto the priest:
3103                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall look upon the plague, and shut up it that hath the plague seven days:
3104                                                                                                                                                                                                                                                                                                               And he shall look on the plague on the seventh day: if the plague be spread in the garment, either in the warp, or in the woof, or in a skin, or in any work that is made of skin; the plague is a fretting leprosy; it is unclean.
3105                                                                                                                                                                                                                                                                                                                                                      He shall therefore burn that garment, whether warp or woof, in woolen or in linen, or any thing of skin, wherein the plague is: for it is a fretting leprosy; it shall be burnt in the fire.
3106                                                                                                                                                                                                                                                                                                                                                                                                  And if the priest shall look, and, behold, the plague be not spread in the garment, either in the warp, or in the woof, or in any thing of skin;
3107                                                                                                                                                                                                                                                                                                                                                                                                                            Then the priest shall command that they wash the thing wherein the plague is, and he shall shut it up seven days more:
3108                                                                                                                                                                                                                                                                                    And the priest shall look on the plague, after that it is washed: and, behold, if the plague have not changed his color, and the plague be not spread; it is unclean; thou shalt burn it in the fire; it is fret inward, whether it be bare within or without.
3109                                                                                                                                                                                                                                                                                                                                                   And if the priest look, and, behold, the plague be somewhat dark after the washing of it; then he shall rend it out of the garment, or out of the skin, or out of the warp, or out of the woof:
3110                                                                                                                                                                                                                                                                                                                                                               And if it appear still in the garment, either in the warp, or in the woof, or in any thing of skin; it is a spreading plague: thou shalt burn that wherein the plague is with fire.
3111                                                                                                                                                                                                                                                                                                                                                And the garment, either warp, or woof, or whatsoever thing of skin it be, which thou shalt wash, if the plague be departed from them, then it shall be washed the second time, and shall be clean.
3112                                                                                                                                                                                                                                                                                                                                                                  This is the law of the plague of leprosy in a garment of woolen or linen, either in the warp, or woof, or any thing of skins, to pronounce it clean, or to pronounce it unclean.
3113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3114                                                                                                                                                                                                                                                                                                                                                                                                                                              This shall be the law of the leper in the day of his cleansing: He shall be brought unto the priest:
3115                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall go forth out of the camp; and the priest shall look, and, behold, if the plague of leprosy be healed in the leper;
3116                                                                                                                                                                                                                                                                                                                                                                                                          Then shall the priest command to take for him that is to be cleansed two birds alive and clean, and cedar wood, and scarlet, and hyssop:
3117                                                                                                                                                                                                                                                                                                                                                                                                                                             And the priest shall command that one of the birds be killed in an earthen vessel over running water:
3118                                                                                                                                                                                                                                                                                                                                            As for the living bird, he shall take it, and the cedar wood, and the scarlet, and the hyssop, and shall dip them and the living bird in the blood of the bird that was killed over the running water:
3119                                                                                                                                                                                                                                                                                                                                                                       And he shall sprinkle upon him that is to be cleansed from the leprosy seven times, and shall pronounce him clean, and shall let the living bird loose into the open field.
3120                                                                                                                                                                                                                                                                                                                 And he that is to be cleansed shall wash his clothes, and shave off all his hair, and wash himself in water, that he may be clean: and after that he shall come into the camp, and shall tarry abroad out of his tent seven days.
3121                                                                                                                                                                                                                                                                                              But it shall be on the seventh day, that he shall shave all his hair off his head and his beard and his eyebrows, even all his hair he shall shave off: and he shall wash his clothes, also he shall wash his flesh in water, and he shall be clean.
3122                                                                                                                                                                                                                                                                                                                              And on the eighth day he shall take two he lambs without blemish, and one ewe lamb of the first year without blemish, and three tenth deals of fine flour for a meat offering, mingled with oil, and one log of oil.
3123                                                                                                                                                                                                                                                                                                                                                                        And the priest that maketh him clean shall present the man that is to be made clean, and those things, before the LORD, at the door of the tabernacle of the congregation:
3124                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall take one he lamb, and offer him for a trespass offering, and the log of oil, and wave them for a wave offering before the LORD:
3125                                                                                                                                                                                                                                                                                                                                    And he shall slay the lamb in the place where he shall kill the sin offering and the burnt offering, in the holy place: for as the sin offering is the priest's, so is the trespass offering: it is most holy:
3126                                                                                                                                                                                                                                                                                                    And the priest shall take some of the blood of the trespass offering, and the priest shall put it upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot:
3127                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall take some of the log of oil, and pour it into the palm of his own left hand:
3128                                                                                                                                                                                                                                                                                                                                                                                         And the priest shall dip his right finger in the oil that is in his left hand, and shall sprinkle of the oil with his finger seven times before the LORD:
3129                                                                                                                                                                                                                                                                                         And of the rest of the oil that is in his hand shall the priest put upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot, upon the blood of the trespass offering:
3130                                                                                                                                                                                                                                                                                                                                                                And the remnant of the oil that is in the priest's hand he shall pour upon the head of him that is to be cleansed: and the priest shall make an atonement for him before the LORD.
3131                                                                                                                                                                                                                                                                                                                                                                           And the priest shall offer the sin offering, and make an atonement for him that is to be cleansed from his uncleanness; and afterward he shall kill the burnt offering:
3132                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall offer the burnt offering and the meat offering upon the altar: and the priest shall make an atonement for him, and he shall be clean.
3133                                                                                                                                                                                                                                                                                                                And if he be poor, and cannot get so much; then he shall take one lamb for a trespass offering to be waved, to make an atonement for him, and one tenth deal of fine flour mingled with oil for a meat offering, and a log of oil;
3134                                                                                                                                                                                                                                                                                                                                                                                                        And two turtledoves, or two young pigeons, such as he is able to get; and the one shall be a sin offering, and the other a burnt offering.
3135                                                                                                                                                                                                                                                                                                                                                                                                And he shall bring them on the eighth day for his cleansing unto the priest, unto the door of the tabernacle of the congregation, before the LORD.
3136                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall take the lamb of the trespass offering, and the log of oil, and the priest shall wave them for a wave offering before the LORD:
3137                                                                                                                                                                                                                                                                And he shall kill the lamb of the trespass offering, and the priest shall take some of the blood of the trespass offering, and put it upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot:
3138                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the priest shall pour of the oil into the palm of his own left hand:
3139                                                                                                                                                                                                                                                                                                                                                                                                                         And the priest shall sprinkle with his right finger some of the oil that is in his left hand seven times before the LORD:
3140                                                                                                                                                                                                                                                                                        And the priest shall put of the oil that is in his hand upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot, upon the place of the blood of the trespass offering:
3141                                                                                                                                                                                                                                                                                                                                                                                      And the rest of the oil that is in the priest's hand he shall put upon the head of him that is to be cleansed, to make an atonement for him before the LORD.
3142                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he shall offer the one of the turtledoves, or of the young pigeons, such as he can get;
3143                                                                                                                                                                                                                                                                                                                                    Even such as he is able to get, the one for a sin offering, and the other for a burnt offering, with the meat offering: and the priest shall make an atonement for him that is to be cleansed before the LORD.
3144                                                                                                                                                                                                                                                                                                                                                                                                                    This is the law of him in whom is the plague of leprosy, whose hand is not able to get that which pertaineth to his cleansing.
3145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
3146                                                                                                                                                                                                                                                                                                                                                                                         When ye be come into the land of Canaan, which I give to you for a possession, and I put the plague of leprosy in a house of the land of your possession;
3147                                                                                                                                                                                                                                                                                                                                                                                                                  And he that owneth the house shall come and tell the priest, saying, It seemeth to me there is as it were a plague in the house:
3148                                                                                                                                                                                                                                                                                                                                Then the priest shall command that they empty the house, before the priest go into it to see the plague, that all that is in the house be not made unclean: and afterward the priest shall go in to see the house:
3149                                                                                                                                                                                                                                                                                                                                                                        And he shall look on the plague, and, behold, if the plague be in the walls of the house with hollow streaks, greenish or reddish, which in sight are lower than the wall;
3150                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the priest shall go out of the house to the door of the house, and shut up the house seven days:
3151                                                                                                                                                                                                                                                                                                                                                                                                                  And the priest shall come again the seventh day, and shall look: and, behold, if the plague be spread in the walls of the house;
3152                                                                                                                                                                                                                                                                                                                                                                                             Then the priest shall command that they take away the stones in which the plague is, and they shall cast them into an unclean place without the city:
3153                                                                                                                                                                                                                                                                                                                                                                                      And he shall cause the house to be scraped within round about, and they shall pour out the dust that they scrape off without the city into an unclean place:
3154                                                                                                                                                                                                                                                                                                                                                                                                         And they shall take other stones, and put them in the place of those stones; and he shall take other mortar, and shall plaster the house.
3155                                                                                                                                                                                                                                                                                                                                                                               And if the plague come again, and break out in the house, after that he hath taken away the stones, and after he hath scraped the house, and after it is plastered;
3156                                                                                                                                                                                                                                                                                                                                                                                                     Then the priest shall come and look, and, behold, if the plague be spread in the house, it is a fretting leprosy in the house; it is unclean.
3157                                                                                                                                                                                                                                                                                                                                                                And he shall break down the house, the stones of it, and the timber thereof, and all the mortar of the house; and he shall carry them forth out of the city into an unclean place.
3158                                                                                                                                                                                                                                                                                                                                                                                                                                           Moreover he that goeth into the house all the while that it is shut up shall be unclean until the even.
3159                                                                                                                                                                                                                                                                                                                                                                                                                                    And he that lieth in the house shall wash his clothes; and he that eateth in the house shall wash his clothes.
3160                                                                                                                                                                                                                                                                                                                            And if the priest shall come in, and look upon it, and, behold, the plague hath not spread in the house, after the house was plastered: then the priest shall pronounce the house clean, because the plague is healed.
3161                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall take to cleanse the house two birds, and cedar wood, and scarlet, and hyssop:
3162                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall kill the one of the birds in an earthen vessel over running water:
3163                                                                                                                                                                                                                                                                                                                                                And he shall take the cedar wood, and the hyssop, and the scarlet, and the living bird, and dip them in the blood of the slain bird, and in the running water, and sprinkle the house seven times:
3164                                                                                                                                                                                                                                                                                                                                                              And he shall cleanse the house with the blood of the bird, and with the running water, and with the living bird, and with the cedar wood, and with the hyssop, and with the scarlet:
3165                                                                                                                                                                                                                                                                                                                                                                                                             But he shall let go the living bird out of the city into the open fields, and make an atonement for the house: and it shall be clean.
3166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is the law for all manner of plague of leprosy, and scall,
3167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for the leprosy of a garment, and of a house,
3168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And for a rising, and for a scab, and for a bright spot:
3169                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To teach when it is unclean, and when it is clean: this is the law of leprosy.
3170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses and to Aaron, saying,
3171                                                                                                                                                                                                                                                                                                                                                                                                     Speak unto the children of Israel, and say unto them, When any man hath a running issue out of his flesh, because of his issue he is unclean.
3172                                                                                                                                                                                                                                                                                                                                                                                              And this shall be his uncleanness in his issue: whether his flesh run with his issue, or his flesh be stopped from his issue, it is his uncleanness.
3173                                                                                                                                                                                                                                                                                                                                                                                                                               Every bed, whereon he lieth that hath the issue, is unclean: and every thing, whereon he sitteth, shall be unclean.
3174                                                                                                                                                                                                                                                                                                                                                                                                                                 And whosoever toucheth his bed shall wash his clothes, and bathe himself in water, and be unclean until the even.
3175                                                                                                                                                                                                                                                                                                                                                                                            And he that sitteth on any thing whereon he sat that hath the issue shall wash his clothes, and bathe himself in water, and be unclean until the even.
3176                                                                                                                                                                                                                                                                                                                                                                                                      And he that toucheth the flesh of him that hath the issue shall wash his clothes, and bathe himself in water, and be unclean until the even.
3177                                                                                                                                                                                                                                                                                                                                                                                             And if he that hath the issue spit upon him that is clean; then he shall wash his clothes, and bathe himself in water, and be unclean until the even.
3178                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And what saddle soever he rideth upon that hath the issue shall be unclean.
3179                                                                                                                                                                                                                                                                                                                                   And whosoever toucheth any thing that was under him shall be unclean until the even: and he that beareth any of those things shall wash his clothes, and bathe himself in water, and be unclean until the even.
3180                                                                                                                                                                                                                                                                                                                                                                     And whomsoever he toucheth that hath the issue, and hath not rinsed his hands in water, he shall wash his clothes, and bathe himself in water, and be unclean until the even.
3181                                                                                                                                                                                                                                                                                                                                                                                                               And the vessel of earth, that he toucheth which hath the issue, shall be broken: and every vessel of wood shall be rinsed in water.
3182                                                                                                                                                                                                                                                                                                                                            And when he that hath an issue is cleansed of his issue; then he shall number to himself seven days for his cleansing, and wash his clothes, and bathe his flesh in running water, and shall be clean.
3183                                                                                                                                                                                                                                                                                                                                                    And on the eighth day he shall take to him two turtledoves, or two young pigeons, and come before the LORD unto the door of the tabernacle of the congregation, and give them unto the priest:
3184                                                                                                                                                                                                                                                                                                                                                                    And the priest shall offer them, the one for a sin offering, and the other for a burnt offering; and the priest shall make an atonement for him before the LORD for his issue.
3185                                                                                                                                                                                                                                                                                                                                                                                                                    And if any man's seed of copulation go out from him, then he shall wash all his flesh in water, and be unclean until the even.
3186                                                                                                                                                                                                                                                                                                                                                                                                                  And every garment, and every skin, whereon is the seed of copulation, shall be washed with water, and be unclean until the even.
3187                                                                                                                                                                                                                                                                                                                                                                                                         The woman also with whom man shall lie with seed of copulation, they shall both bathe themselves in water, and be unclean until the even.
3188                                                                                                                                                                                                                                                                                                                                                                                 And if a woman have an issue, and her issue in her flesh be blood, she shall be put apart seven days: and whosoever toucheth her shall be unclean until the even.
3189                                                                                                                                                                                                                                                                                                                                                                                                                  And every thing that she lieth upon in her separation shall be unclean: every thing also that she sitteth upon shall be unclean.
3190                                                                                                                                                                                                                                                                                                                                                                                                                                 And whosoever toucheth her bed shall wash his clothes, and bathe himself in water, and be unclean until the even.
3191                                                                                                                                                                                                                                                                                                                                                                                                             And whosoever toucheth any thing that she sat upon shall wash his clothes, and bathe himself in water, and be unclean until the even.
3192                                                                                                                                                                                                                                                                                                                                                                                                                            And if it be on her bed, or on any thing whereon she sitteth, when he toucheth it, he shall be unclean until the even.
3193                                                                                                                                                                                                                                                                                                                                                                                               And if any man lie with her at all, and her flowers be upon him, he shall be unclean seven days; and all the bed whereon he lieth shall be unclean.
3194                                                                                                                                                                                                                                                                                                 And if a woman have an issue of her blood many days out of the time of her separation, or if it run beyond the time of her separation; all the days of the issue of her uncleanness shall be as the days of her separation: she shall be unclean.
3195                                                                                                                                                                                                                                                                                                                                                     Every bed whereon she lieth all the days of her issue shall be unto her as the bed of her separation: and whatsoever she sitteth upon shall be unclean, as the uncleanness of her separation.
3196                                                                                                                                                                                                                                                                                                                                                                                                      And whosoever toucheth those things shall be unclean, and shall wash his clothes, and bathe himself in water, and be unclean until the even.
3197                                                                                                                                                                                                                                                                                                                                                                                                                              But if she be cleansed of her issue, then she shall number to herself seven days, and after that she shall be clean.
3198                                                                                                                                                                                                                                                                                                                                                                               And on the eighth day she shall take unto her two turtles, or two young pigeons, and bring them unto the priest, to the door of the tabernacle of the congregation.
3199                                                                                                                                                                                                                                                                                                                                                       And the priest shall offer the one for a sin offering, and the other for a burnt offering; and the priest shall make an atonement for her before the LORD for the issue of her uncleanness.
3200                                                                                                                                                                                                                                                                                                                                                                                  Thus shall ye separate the children of Israel from their uncleanness; that they die not in their uncleanness, when they defile my tabernacle that is among them.
3201                                                                                                                                                                                                                                                                                                                                                                                                                                        This is the law of him that hath an issue, and of him whose seed goeth from him, and is defiled therewith;
3202                                                                                                                                                                                                                                                                                                                                                                                              And of her that is sick of her flowers, and of him that hath an issue, of the man, and of the woman, and of him that lieth with her that is unclean.
3203                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD spake unto Moses after the death of the two sons of Aaron, when they offered before the LORD, and died;
3204                                                                                                                                                                                                                                                                                                  And the LORD said unto Moses, Speak unto Aaron thy brother, that he come not at all times into the holy place within the vail before the mercy seat, which is upon the ark; that he die not: for I will appear in the cloud upon the mercy seat.
3205                                                                                                                                                                                                                                                                                                                                                                                                                               Thus shall Aaron come into the holy place: with a young bullock for a sin offering, and a ram for a burnt offering.
3206                                                                                                                                                                                                                                                                         He shall put on the holy linen coat, and he shall have the linen breeches upon his flesh, and shall be girded with a linen girdle, and with the linen mitre shall he be attired: these are holy garments; therefore shall he wash his flesh in water, and so put them on.
3207                                                                                                                                                                                                                                                                                                                                                                                                       And he shall take of the congregation of the children of Israel two kids of the goats for a sin offering, and one ram for a burnt offering.
3208                                                                                                                                                                                                                                                                                                                                                                                                                And Aaron shall offer his bullock of the sin offering, which is for himself, and make an atonement for himself, and for his house.
3209                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall take the two goats, and present them before the LORD at the door of the tabernacle of the congregation.
3210                                                                                                                                                                                                                                                                                                                                                                                                                                          And Aaron shall cast lots upon the two goats; one lot for the LORD, and the other lot for the scapegoat.
3211                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Aaron shall bring the goat upon which the LORD's lot fell, and offer him for a sin offering.
3212                                                                                                                                                                                                                                                                                                                                                          But the goat, on which the lot fell to be the scapegoat, shall be presented alive before the LORD, to make an atonement with him, and to let him go for a scapegoat into the wilderness.
3213                                                                                                                                                                                                                                                                                                                                     And Aaron shall bring the bullock of the sin offering, which is for himself, and shall make an atonement for himself, and for his house, and shall kill the bullock of the sin offering which is for himself:
3214                                                                                                                                                                                                                                                                                                                                                                      And he shall take a censer full of burning coals of fire from off the altar before the LORD, and his hands full of sweet incense beaten small, and bring it within the vail:
3215                                                                                                                                                                                                                                                                                                                                                                                   And he shall put the incense upon the fire before the LORD, that the cloud of the incense may cover the mercy seat that is upon the testimony, that he die not:
3216                                                                                                                                                                                                                                                                                                                                                And he shall take of the blood of the bullock, and sprinkle it with his finger upon the mercy seat eastward; and before the mercy seat shall he sprinkle of the blood with his finger seven times.
3217                                                                                                                                                                                                                                                                                                     Then shall he kill the goat of the sin offering, that is for the people, and bring his blood within the vail, and do with that blood as he did with the blood of the bullock, and sprinkle it upon the mercy seat, and before the mercy seat:
3218                                                                                                                                                                                                                                                           And he shall make an atonement for the holy place, because of the uncleanness of the children of Israel, and because of their transgressions in all their sins: and so shall he do for the tabernacle of the congregation, that remaineth among them in the midst of their uncleanness.
3219                                                                                                                                                                                                                                                                                                And there shall be no man in the tabernacle of the congregation when he goeth in to make an atonement in the holy place, until he come out, and have made an atonement for himself, and for his household, and for all the congregation of Israel.
3220                                                                                                                                                                                                                                                                                                                           And he shall go out unto the altar that is before the LORD, and make an atonement for it; and shall take of the blood of the bullock, and of the blood of the goat, and put it upon the horns of the altar round about.
3221                                                                                                                                                                                                                                                                                                                                                                                             And he shall sprinkle of the blood upon it with his finger seven times, and cleanse it, and hallow it from the uncleanness of the children of Israel.
3222                                                                                                                                                                                                                                                                                                                                                                                                  And when he hath made an end of reconciling the holy place, and the tabernacle of the congregation, and the altar, he shall bring the live goat:
3223                                                                                                                                                                                                                                               And Aaron shall lay both his hands upon the head of the live goat, and confess over him all the iniquities of the children of Israel, and all their transgressions in all their sins, putting them upon the head of the goat, and shall send him away by the hand of a fit man into the wilderness:
3224                                                                                                                                                                                                                                                                                                                                                                                                                  And the goat shall bear upon him all their iniquities unto a land not inhabited: and he shall let go the goat in the wilderness.
3225                                                                                                                                                                                                                                                                                                                                                                 And Aaron shall come into the tabernacle of the congregation, and shall put off the linen garments, which he put on when he went into the holy place, and shall leave them there:
3226                                                                                                                                                                                                                                                                                                                     And he shall wash his flesh with water in the holy place, and put on his garments, and come forth, and offer his burnt offering, and the burnt offering of the people, and make an atonement for himself, and for the people.
3227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the fat of the sin offering shall he burn upon the altar.
3228                                                                                                                                                                                                                                                                                                                                                                                                             And he that let go the goat for the scapegoat shall wash his clothes, and bathe his flesh in water, and afterward come into the camp.
3229                                                                                                                                                                                                                                                                                    And the bullock for the sin offering, and the goat for the sin offering, whose blood was brought in to make atonement in the holy place, shall one carry forth without the camp; and they shall burn in the fire their skins, and their flesh, and their dung.
3230                                                                                                                                                                                                                                                                                                                                                                                                                         And he that burneth them shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp.
3231                                                                                                                                                                                                                                                                                                      And this shall be a statute for ever unto you: that in the seventh month, on the tenth day of the month, ye shall afflict your souls, and do no work at all, whether it be one of your own country, or a stranger that sojourneth among you:
3232                                                                                                                                                                                                                                                                                                                                                                                                              For on that day shall the priest make an atonement for you, to cleanse you, that ye may be clean from all your sins before the LORD.
3233                                                                                                                                                                                                                                                                                                                                                                                                                                                   It shall be a sabbath of rest unto you, and ye shall afflict your souls, by a statute for ever.
3234                                                                                                                                                                                                                                                                                                                                And the priest, whom he shall anoint, and whom he shall consecrate to minister in the priest's office in his father's stead, shall make the atonement, and shall put on the linen clothes, even the holy garments:
3235                                                                                                                                                                                                                                                                                                      And he shall make an atonement for the holy sanctuary, and he shall make an atonement for the tabernacle of the congregation, and for the altar, and he shall make an atonement for the priests, and for all the people of the congregation.
3236                                                                                                                                                                                                                                                                                                                                                                        And this shall be an everlasting statute unto you, to make an atonement for the children of Israel for all their sins once a year. And he did as the LORD commanded Moses.
3237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3238                                                                                                                                                                                                                                                                                                                                                                                             Speak unto Aaron, and unto his sons, and unto all the children of Israel, and say unto them; This is the thing which the LORD hath commanded, saying,
3239                                                                                                                                                                                                                                                                                                                                                                                                           What man soever there be of the house of Israel, that killeth an ox, or lamb, or goat, in the camp, or that killeth it out of the camp,
3240                                                                                                                                                                                                                                                                                     And bringeth it not unto the door of the tabernacle of the congregation, to offer an offering unto the LORD before the tabernacle of the LORD; blood shall be imputed unto that man; he hath shed blood; and that man shall be cut off from among his people:
3241                                                                                                                                                                                                                                                                       To the end that the children of Israel may bring their sacrifices, which they offer in the open field, even that they may bring them unto the LORD, unto the door of the tabernacle of the congregation, unto the priest, and offer them for peace offerings unto the LORD.
3242                                                                                                                                                                                                                                                                                                                                                                           And the priest shall sprinkle the blood upon the altar of the LORD at the door of the tabernacle of the congregation, and burn the fat for a sweet savor unto the LORD.
3243                                                                                                                                                                                                                                                                                                                                                                          And they shall no more offer their sacrifices unto devils, after whom they have gone a whoring. This shall be a statute for ever unto them throughout their generations.
3244                                                                                                                                                                                                                                                                                                                                                                           And thou shalt say unto them, Whatsoever man there be of the house of Israel, or of the strangers which sojourn among you, that offereth a burnt offering or sacrifice,
3245                                                                                                                                                                                                                                                                                                                                                                                         And bringeth it not unto the door of the tabernacle of the congregation, to offer it unto the LORD; even that man shall be cut off from among his people.
3246                                                                                                                                                                                                                                                                                                         And whatsoever man there be of the house of Israel, or of the strangers that sojourn among you, that eateth any manner of blood; I will even set my face against that soul that eateth blood, and will cut him off from among his people.
3247                                                                                                                                                                                                                                                                                                                                                              For the life of the flesh is in the blood: and I have given it to you upon the altar to make an atonement for your souls: for it is the blood that maketh an atonement for the soul.
3248                                                                                                                                                                                                                                                                                                                                                                                                     Therefore I said unto the children of Israel, No soul of you shall eat blood, neither shall any stranger that sojourneth among you eat blood.
3249                                                                                                                                                                                                                                                                                                              And whatsoever man there be of the children of Israel, or of the strangers that sojourn among you, which hunteth and catcheth any beast or fowl that may be eaten; he shall even pour out the blood thereof, and cover it with dust.
3250                                                                                                                                                                                                                                                                                       For it is the life of all flesh; the blood of it is for the life thereof: therefore I said unto the children of Israel, Ye shall eat the blood of no manner of flesh: for the life of all flesh is the blood thereof: whosoever eateth it shall be cut off.
3251                                                                                                                                                                                                                                                                                And every soul that eateth that which died of itself, or that which was torn with beasts, whether it be one of your own country, or a stranger, he shall both wash his clothes, and bathe himself in water, and be unclean until the even: then shall he be clean.
3252                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if he wash them not, nor bathe his flesh; then he shall bear his iniquity.
3253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3254                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Speak unto the children of Israel, and say unto them, I am the LORD your God.
3255                                                                                                                                                                                                                                                                                                                                            After the doings of the land of Egypt, wherein ye dwelt, shall ye not do: and after the doings of the land of Canaan, whither I bring you, shall ye not do: neither shall ye walk in their ordinances.
3256                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ye shall do my judgments, and keep mine ordinances, to walk therein: I am the LORD your God.
3257                                                                                                                                                                                                                                                                                                                                                                                                                                   Ye shall therefore keep my statutes, and my judgments: which if a man do, he shall live in them: I am the LORD.
3258                                                                                                                                                                                                                                                                                                                                                                                                                                          None of you shall approach to any that is near of kin to him, to uncover their nakedness: I am the LORD.
3259                                                                                                                                                                                                                                                                                                                                                                                                     The nakedness of thy father, or the nakedness of thy mother, shalt thou not uncover: she is thy mother; thou shalt not uncover her nakedness.
3260                                                                                                                                                                                                                                                                                                                                                                                                                                                          The nakedness of thy father's wife shalt thou not uncover: it is thy father's nakedness.
3261                                                                                                                                                                                                                                                                                                                                                                     The nakedness of thy sister, the daughter of thy father, or daughter of thy mother, whether she be born at home, or born abroad, even their nakedness thou shalt not uncover.
3262                                                                                                                                                                                                                                                                                                                                                                                               The nakedness of thy son's daughter, or of thy daughter's daughter, even their nakedness thou shalt not uncover: for theirs is thine own nakedness.
3263                                                                                                                                                                                                                                                                                                                                                                                                                   The nakedness of thy father's wife's daughter, begotten of thy father, she is thy sister, thou shalt not uncover her nakedness.
3264                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt not uncover the nakedness of thy father's sister: she is thy father's near kinswoman.
3265                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt not uncover the nakedness of thy mother's sister: for she is thy mother's near kinswoman.
3266                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not uncover the nakedness of thy father's brother, thou shalt not approach to his wife: she is thine aunt.
3267                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not uncover the nakedness of thy daughter in law: she is thy son's wife; thou shalt not uncover her nakedness.
3268                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt not uncover the nakedness of thy brother's wife: it is thy brother's nakedness.
3269                                                                                                                                                                                                                                                                                                                            Thou shalt not uncover the nakedness of a woman and her daughter, neither shalt thou take her son's daughter, or her daughter's daughter, to uncover her nakedness; for they are her near kinswomen: it is wickedness.
3270                                                                                                                                                                                                                                                                                                                                                                                                                            Neither shalt thou take a wife to her sister, to vex her, to uncover her nakedness, beside the other in her life time.
3271                                                                                                                                                                                                                                                                                                                                                                                                                              Also thou shalt not approach unto a woman to uncover her nakedness, as long as she is put apart for her uncleanness.
3272                                                                                                                                                                                                                                                                                                                                                                                                                                                        Moreover thou shalt not lie carnally with thy neighbor's wife, to defile thyself with her.
3273                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt not let any of thy seed pass through the fire to Molech, neither shalt thou profane the name of thy God: I am the LORD.
3274                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not lie with mankind, as with womankind: it is abomination.
3275                                                                                                                                                                                                                                                                                                                                                                                             Neither shalt thou lie with any beast to defile thyself therewith: neither shall any woman stand before a beast to lie down thereto: it is confusion.
3276                                                                                                                                                                                                                                                                                                                                                                                                                            Defile not ye yourselves in any of these things: for in all these the nations are defiled which I cast out before you:
3277                                                                                                                                                                                                                                                                                                                                                                                                                     And the land is defiled: therefore I do visit the iniquity thereof upon it, and the land itself vomiteth out her inhabitants.
3278                                                                                                                                                                                                                                                                                                                                                                 Ye shall therefore keep my statutes and my judgments, and shall not commit any of these abominations; neither any of your own nation, nor any stranger that sojourneth among you:
3279                                                                                                                                                                                                                                                                                                                                                                                                                                       (For all these abominations have the men of the land done, which were before you, and the land is defiled;)
3280                                                                                                                                                                                                                                                                                                                                                                                                                                         That the land spue not you out also, when ye defile it, as it spued out the nations that were before you.
3281                                                                                                                                                                                                                                                                                                                                                                                                                   For whosoever shall commit any of these abominations, even the souls that commit them shall be cut off from among their people.
3282                                                                                                                                                                                                                                                                                                                                               Therefore shall ye keep mine ordinance, that ye commit not any one of these abominable customs, which were committed before you, and that ye defile not yourselves therein: I am the LORD your God.
3283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3284                                                                                                                                                                                                                                                                                                                                                                                                                  Speak unto all the congregation of the children of Israel, and say unto them, Ye shall be holy: for I the LORD your God am holy.
3285                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ye shall fear every man his mother, and his father, and keep my sabbaths: I am the LORD your God.
3286                                                                                                                                                                                                                                                                                                                                                                                                                                                               Turn ye not unto idols, nor make to yourselves molten gods: I am the LORD your God.
3287                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if ye offer a sacrifice of peace offerings unto the LORD, ye shall offer it at your own will.
3288                                                                                                                                                                                                                                                                                                                                                                                                            It shall be eaten the same day ye offer it, and on the morrow: and if ought remain until the third day, it shall be burnt in the fire.
3289                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if it be eaten at all on the third day, it is abominable; it shall not be accepted.
3290                                                                                                                                                                                                                                                                                                                                                                        Therefore every one that eateth it shall bear his iniquity, because he hath profaned the hallowed thing of the LORD: and that soul shall be cut off from among his people.
3291                                                                                                                                                                                                                                                                                                                                                                                           And when ye reap the harvest of your land, thou shalt not wholly reap the corners of thy field, neither shalt thou gather the gleanings of thy harvest.
3292                                                                                                                                                                                                                                                                                                                                                                            And thou shalt not glean thy vineyard, neither shalt thou gather every grape of thy vineyard; thou shalt leave them for the poor and stranger: I am the LORD your God.
3293                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall not steal, neither deal falsely, neither lie one to another.
3294                                                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall not swear by my name falsely, neither shalt thou profane the name of thy God: I am the LORD.
3295                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not defraud thy neighbor, neither rob him: the wages of him that is hired shall not abide with thee all night until the morning.
3296                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt not curse the deaf, nor put a stumbling-block before the blind, but shalt fear thy God: I am the LORD.
3297                                                                                                                                                                                                                                                                                                                                                                Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honor the person of the mighty: but in righteousness shalt thou judge thy neighbor.
3298                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt not go up and down as a talebearer among thy people: neither shalt thou stand against the blood of thy neighbor; I am the LORD.
3299                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbor, and not suffer sin upon him.
3300                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbor as thyself: I am the LORD.
3301                                                                                                                                                                                                                                                                                                                                          Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woolen come upon thee.
3302                                                                                                                                                                                                                                                                                                                          And whosoever lieth carnally with a woman, that is a bondmaid, betrothed to an husband, and not at all redeemed, nor freedom given her; she shall be scourged; they shall not be put to death, because she was not free.
3303                                                                                                                                                                                                                                                                                                                                                                                                  And he shall bring his trespass offering unto the LORD, unto the door of the tabernacle of the congregation, even a ram for a trespass offering.
3304                                                                                                                                                                                                                                                                                                                                                        And the priest shall make an atonement for him with the ram of the trespass offering before the LORD for his sin which he hath done: and the sin which he hath done shall be forgiven him.
3305                                                                                                                                                                                                                                                                                                                   And when ye shall come into the land, and shall have planted all manner of trees for food, then ye shall count the fruit thereof as uncircumcised: three years shall it be as uncircumcised unto you: it shall not be eaten of.
3306                                                                                                                                                                                                                                                                                                                                                                                                                                                             But in the fourth year all the fruit thereof shall be holy to praise the LORD withal.
3307                                                                                                                                                                                                                                                                                                                                                                                                                 And in the fifth year shall ye eat of the fruit thereof, that it may yield unto you the increase thereof: I am the LORD your God.
3308                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ye shall not eat any thing with the blood: neither shall ye use enchantment, nor observe times.
3309                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ye shall not round the corners of your heads, neither shalt thou mar the corners of thy beard.
3310                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall not make any cuttings in your flesh for the dead, nor print any marks upon you: I am the LORD.
3311                                                                                                                                                                                                                                                                                                                                                                                                               Do not prostitute thy daughter, to cause her to be a whore; lest the land fall to whoredom, and the land become full of wickedness.
3312                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD.
3313                                                                                                                                                                                                                                                                                                                                                                                                                            Regard not them that have familiar spirits, neither seek after wizards, to be defiled by them: I am the LORD your God.
3314                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt rise up before the hoary head, and honor the face of the old man, and fear thy God: I am the LORD.
3315                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if a stranger sojourn with thee in your land, ye shall not vex him.
3316                                                                                                                                                                                                                                                                                                                                                          But the stranger that dwelleth with you shall be unto you as one born among you, and thou shalt love him as thyself; for ye were strangers in the land of Egypt: I am the LORD your God.
3317                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ye shall do no unrighteousness in judgment, in meteyard, in weight, or in measure.
3318                                                                                                                                                                                                                                                                                                                                                                                                     Just balances, just weights, a just ephah, and a just hin, shall ye have: I am the LORD your God, which brought you out of the land of Egypt.
3319                                                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore shall ye observe all my statutes, and all my judgments, and do them: I am the LORD.
3320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3321                                                                                                                                                                                                                                                                             Again, thou shalt say to the children of Israel, Whosoever he be of the children of Israel, or of the strangers that sojourn in Israel, that giveth any of his seed unto Molech; he shall surely be put to death: the people of the land shall stone him with stones.
3322                                                                                                                                                                                                                                                                                                                                                          And I will set my face against that man, and will cut him off from among his people; because he hath given of his seed unto Molech, to defile my sanctuary, and to profane my holy name.
3323                                                                                                                                                                                                                                                                                                                                                                                                                 And if the people of the land do any ways hide their eyes from the man, when he giveth of his seed unto Molech, and kill him not:
3324                                                                                                                                                                                                                                                                                                                                                             Then I will set my face against that man, and against his family, and will cut him off, and all that go a whoring after him, to commit whoredom with Molech, from among their people.
3325                                                                                                                                                                                                                                                                                                                                              And the soul that turneth after such as have familiar spirits, and after wizards, to go a whoring after them, I will even set my face against that soul, and will cut him off from among his people.
3326                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Sanctify yourselves therefore, and be ye holy: for I am the LORD your God.
3327                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ye shall keep my statutes, and do them: I am the LORD which sanctify you.
3328                                                                                                                                                                                                                                                                                                                                                                                           For every one that curseth his father or his mother shall be surely put to death: he hath cursed his father or his mother; his blood shall be upon him.
3329                                                                                                                                                                                                                                                                                                                                                           And the man that committeth adultery with another man's wife, even he that committeth adultery with his neighbor's wife, the adulterer and the adulteress shall surely be put to death.
3330                                                                                                                                                                                                                                                                                                                                                                                   And the man that lieth with his father's wife hath uncovered his father's nakedness: both of them shall surely be put to death; their blood shall be upon them.
3331                                                                                                                                                                                                                                                                                                                                                                                                And if a man lie with his daughter in law, both of them shall surely be put to death: they have wrought confusion; their blood shall be upon them.
3332                                                                                                                                                                                                                                                                                                                                                                          If a man also lie with mankind, as he lieth with a woman, both of them have committed an abomination: they shall surely be put to death; their blood shall be upon them.
3333                                                                                                                                                                                                                                                                                                                                                                                                And if a man take a wife and her mother, it is wickedness: they shall be burnt with fire, both he and they; that there be no wickedness among you.
3334                                                                                                                                                                                                                                                                                                                                                                                                                                                      And if a man lie with a beast, he shall surely be put to death: and ye shall slay the beast.
3335                                                                                                                                                                                                                                                                                                                                                                        And if a woman approach unto any beast, and lie down thereto, thou shalt kill the woman, and the beast: they shall surely be put to death; their blood shall be upon them.
3336                                                                                                                                                                                                                                                        And if a man shall take his sister, his father's daughter, or his mother's daughter, and see her nakedness, and she see his nakedness; it is a wicked thing; and they shall be cut off in the sight of their people: he hath uncovered his sister's nakedness; he shall bear his iniquity.
3337                                                                                                                                                                                                                                                                                                           And if a man shall lie with a woman having her sickness, and shall uncover her nakedness; he hath discovered her fountain, and she hath uncovered the fountain of her blood: and both of them shall be cut off from among their people.
3338                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt not uncover the nakedness of thy mother's sister, nor of thy father's sister: for he uncovereth his near kin: they shall bear their iniquity.
3339                                                                                                                                                                                                                                                                                                                                                                                                       And if a man shall lie with his uncle's wife, he hath uncovered his uncle's nakedness: they shall bear their sin; they shall die childless.
3340                                                                                                                                                                                                                                                                                                                                                                                                           And if a man shall take his brother's wife, it is an unclean thing: he hath uncovered his brother's nakedness; they shall be childless.
3341                                                                                                                                                                                                                                                                                                                                                                                                Ye shall therefore keep all my statutes, and all my judgments, and do them: that the land, whither I bring you to dwell therein, spue you not out.
3342                                                                                                                                                                                                                                                                                                                                                                                              And ye shall not walk in the manners of the nation, which I cast out before you: for they committed all these things, and therefore I abhorred them.
3343                                                                                                                                                                                                                                                                                                                                    But I have said unto you, Ye shall inherit their land, and I will give it unto you to possess it, a land that floweth with milk and honey: I am the LORD your God, which have separated you from other people.
3344                                                                                                                                                                                                                                                              Ye shall therefore put difference between clean beasts and unclean, and between unclean fowls and clean: and ye shall not make your souls abominable by beast, or by fowl, or by any manner of living thing that creepeth on the ground, which I have separated from you as unclean.
3345                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall be holy unto me: for I the LORD am holy, and have severed you from other people, that ye should be mine.
3346                                                                                                                                                                                                                                                                                                                                                                            A man also or woman that hath a familiar spirit, or that is a wizard, shall surely be put to death: they shall stone them with stones: their blood shall be upon them.
3347                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto Moses, Speak unto the priests the sons of Aaron, and say unto them, There shall none be defiled for the dead among his people:
3348                                                                                                                                                                                                                                                                                                                                                                                                  But for his kin, that is near unto him, that is, for his mother, and for his father, and for his son, and for his daughter, and for his brother.
3349                                                                                                                                                                                                                                                                                                                                                                                                                                         And for his sister a virgin, that is nigh unto him, which hath had no husband; for her may he be defiled.
3350                                                                                                                                                                                                                                                                                                                                                                                                                                                          But he shall not defile himself, being a chief man among his people, to profane himself.
3351                                                                                                                                                                                                                                                                                                                                                                                                       They shall not make baldness upon their head, neither shall they shave off the corner of their beard, nor make any cuttings in their flesh.
3352                                                                                                                                                                                                                                                                                                                                                    They shall be holy unto their God, and not profane the name of their God: for the offerings of the LORD made by fire, and the bread of their God, they do offer: therefore they shall be holy.
3353                                                                                                                                                                                                                                                                                                                                                                                                   They shall not take a wife that is a whore, or profane; neither shall they take a woman put away from her husband: for he is holy unto his God.
3354                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt sanctify him therefore; for he offereth the bread of thy God: he shall be holy unto thee: for I the LORD, which sanctify you, am holy.
3355                                                                                                                                                                                                                                                                                                                                                                                                              And the daughter of any priest, if she profane herself by playing the whore, she profaneth her father: she shall be burnt with fire.
3356                                                                                                                                                                                                                                                                                                                                                And he that is the high priest among his brethren, upon whose head the anointing oil was poured, and that is consecrated to put on the garments, shall not uncover his head, nor rend his clothes;
3357                                                                                                                                                                                                                                                                                                                                                                                                                                                    Neither shall he go in to any dead body, nor defile himself for his father, or for his mother;
3358                                                                                                                                                                                                                                                                                                                                                                                         Neither shall he go out of the sanctuary, nor profane the sanctuary of his God; for the crown of the anointing oil of his God is upon him: I am the LORD.
3359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall take a wife in her virginity.
3360                                                                                                                                                                                                                                                                                                                                                                                                            A widow, or a divorced woman, or profane, or an harlot, these shall he not take: but he shall take a virgin of his own people to wife.
3361                                                                                                                                                                                                                                                                                                                                                                                                                                                               Neither shall he profane his seed among his people: for I the LORD do sanctify him.
3362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3363                                                                                                                                                                                                                                                                                                                                                                                             Speak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God.
3364                                                                                                                                                                                                                                                                                                                                                                                               For whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous,
3365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or a man that is broken-footed, or broken-handed,
3366                                                                                                                                                                                                                                                                                                                                                                                                                               Or crookbacked, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken;
3367                                                                                                                                                                                                                                                                                                                                              No man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the LORD made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God.
3368                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He shall eat the bread of his God, both of the most holy, and of the holy.
3369                                                                                                                                                                                                                                                                                                                                                                              Only he shall not go in unto the vail, nor come nigh unto the altar, because he hath a blemish; that he profane not my sanctuaries: for I the LORD do sanctify them.
3370                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses told it unto Aaron, and to his sons, and unto all the children of Israel.
3371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3372                                                                                                                                                                                                                                                                                                                                  Speak unto Aaron and to his sons, that they separate themselves from the holy things of the children of Israel, and that they profane not my holy name in those things which they hallow unto me: I am the LORD.
3373                                                                                                                                                                                                                                                                                          Say unto them, Whosoever he be of all your seed among your generations, that goeth unto the holy things, which the children of Israel hallow unto the LORD, having his uncleanness upon him, that soul shall be cut off from my presence: I am the LORD.
3374                                                                                                                                                                                                                                                                                                                   What man soever of the seed of Aaron is a leper, or hath a running issue; he shall not eat of the holy things, until he be clean. And whoso toucheth any thing that is unclean by the dead, or a man whose seed goeth from him;
3375                                                                                                                                                                                                                                                                                                                                                                                               Or whosoever toucheth any creeping thing, whereby he may be made unclean, or a man of whom he may take uncleanness, whatsoever uncleanness he hath;
3376                                                                                                                                                                                                                                                                                                                                                                                                      The soul which hath touched any such shall be unclean until even, and shall not eat of the holy things, unless he wash his flesh with water.
3377                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the sun is down, he shall be clean, and shall afterward eat of the holy things; because it is his food.
3378                                                                                                                                                                                                                                                                                                                                                                                                                                  That which dieth of itself, or is torn with beasts, he shall not eat to defile himself therewith; I am the LORD.
3379                                                                                                                                                                                                                                                                                                                                                                                                          They shall therefore keep mine ordinance, lest they bear sin for it, and die therefore, if they profane it: I the LORD do sanctify them.
3380                                                                                                                                                                                                                                                                                                                                                                                                                   There shall no stranger eat of the holy thing: a sojourner of the priest, or an hired servant, shall not eat of the holy thing.
3381                                                                                                                                                                                                                                                                                                                                                                                                                  But if the priest buy any soul with his money, he shall eat of it, and he that is born in his house: they shall eat of his meat.
3382                                                                                                                                                                                                                                                                                                                                                                                                                                      If the priest's daughter also be married unto a stranger, she may not eat of an offering of the holy things.
3383                                                                                                                                                                                                                                                                                                                                But if the priest's daughter be a widow, or divorced, and have no child, and is returned unto her father's house, as in her youth, she shall eat of her father's meat: but there shall be no stranger eat thereof.
3384                                                                                                                                                                                                                                                                                                                                                                                          And if a man eat of the holy thing unwittingly, then he shall put the fifth part thereof unto it, and shall give it unto the priest with the holy thing.
3385                                                                                                                                                                                                                                                                                                                                                                                                                                             And they shall not profane the holy things of the children of Israel, which they offer unto the LORD;
3386                                                                                                                                                                                                                                                                                                                                                                                                                                Or suffer them to bear the iniquity of trespass, when they eat their holy things: for I the LORD do sanctify them.
3387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3388                                                                                                                                                                                                                                   Speak unto Aaron, and to his sons, and unto all the children of Israel, and say unto them, Whatsoever he be of the house of Israel, or of the strangers in Israel, that will offer his oblation for all his vows, and for all his freewill offerings, which they will offer unto the LORD for a burnt offering;
3389                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall offer at your own will a male without blemish, of the beeves, of the sheep, or of the goats.
3390                                                                                                                                                                                                                                                                                                                                                                                                                                                   But whatsoever hath a blemish, that shall ye not offer: for it shall not be acceptable for you.
3391                                                                                                                                                                                                                                                                                                                                      And whosoever offereth a sacrifice of peace offerings unto the LORD to accomplish his vow, or a freewill offering in beeves or sheep, it shall be perfect to be accepted; there shall be no blemish therein.
3392                                                                                                                                                                                                                                                                                                                                                                   Blind, or broken, or maimed, or having a wen, or scurvy, or scabbed, ye shall not offer these unto the LORD, nor make an offering by fire of them upon the altar unto the LORD.
3393                                                                                                                                                                                                                                                                                                                                                                       Either a bullock or a lamb that hath any thing superfluous or lacking in his parts, that mayest thou offer for a freewill offering; but for a vow it shall not be accepted.
3394                                                                                                                                                                                                                                                                                                                                                                                                   Ye shall not offer unto the LORD that which is bruised, or crushed, or broken, or cut; neither shall ye make any offering thereof in your land.
3395                                                                                                                                                                                                                                                                                                                                                           Neither from a stranger's hand shall ye offer the bread of your God of any of these; because their corruption is in them, and blemishes be in them: they shall not be accepted for you.
3396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3397                                                                                                                                                                                                                                                                                                                                      When a bullock, or a sheep, or a goat, is brought forth, then it shall be seven days under the dam; and from the eighth day and thenceforth it shall be accepted for an offering made by fire unto the LORD.
3398                                                                                                                                                                                                                                                                                                                                                                                                                                                                And whether it be cow, or ewe, ye shall not kill it and her young both in one day.
3399                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when ye will offer a sacrifice of thanksgiving unto the LORD, offer it at your own will.
3400                                                                                                                                                                                                                                                                                                                                                                                                                                                  On the same day it shall be eaten up; ye shall leave none of it until the morrow: I am the LORD.
3401                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore shall ye keep my commandments, and do them: I am the LORD.
3402                                                                                                                                                                                                                                                                                                                                                                                                                       Neither shall ye profane my holy name; but I will be hallowed among the children of Israel: I am the LORD which hallow you,
3403                                                                                                                                                                                                                                                                                                                                                                                                                                                                         That brought you out of the land of Egypt, to be your God: I am the LORD.
3404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3405                                                                                                                                                                                                                                                                                                                                                                               Speak unto the children of Israel, and say unto them, Concerning the feasts of the LORD, which ye shall proclaim to be holy convocations, even these are my feasts.
3406                                                                                                                                                                                                                                                                                                                                                                   Six days shall work be done: but the seventh day is the sabbath of rest, an holy convocation; ye shall do no work therein: it is the sabbath of the LORD in all your dwellings.
3407                                                                                                                                                                                                                                                                                                                                                                                                                                               These are the feasts of the LORD, even holy convocations, which ye shall proclaim in their seasons.
3408                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In the fourteenth day of the first month at even is the LORD's passover.
3409                                                                                                                                                                                                                                                                                                                                                                                                               And on the fifteenth day of the same month is the feast of unleavened bread unto the LORD: seven days ye must eat unleavened bread.
3410                                                                                                                                                                                                                                                                                                                                                                                                                                                          In the first day ye shall have an holy convocation: ye shall do no servile work therein.
3411                                                                                                                                                                                                                                                                                                                                                                                             But ye shall offer an offering made by fire unto the LORD seven days: in the seventh day is an holy convocation: ye shall do no servile work therein.
3412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3413                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, and say unto them, When ye be come into the land which I give unto you, and shall reap the harvest thereof, then ye shall bring a sheaf of the firstfruits of your harvest unto the priest:
3414                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall wave the sheaf before the LORD, to be accepted for you: on the morrow after the sabbath the priest shall wave it.
3415                                                                                                                                                                                                                                                                                                                                                                                                               And ye shall offer that day when ye wave the sheaf an he lamb without blemish of the first year for a burnt offering unto the LORD.
3416                                                                                                                                                                                                                                                                                                                      And the meat offering thereof shall be two tenth deals of fine flour mingled with oil, an offering made by fire unto the LORD for a sweet savor: and the drink offering thereof shall be of wine, the fourth part of an hin.
3417                                                                                                                                                                                                                                                                                                                        And ye shall eat neither bread, nor parched corn, nor green ears, until the selfsame day that ye have brought an offering unto your God: it shall be a statute for ever throughout your generations in all your dwellings.
3418                                                                                                                                                                                                                                                                                                                                                                                     And ye shall count unto you from the morrow after the sabbath, from the day that ye brought the sheaf of the wave offering; seven sabbaths shall be complete:
3419                                                                                                                                                                                                                                                                                                                                                                                                                  Even unto the morrow after the seventh sabbath shall ye number fifty days; and ye shall offer a new meat offering unto the LORD.
3420                                                                                                                                                                                                                                                                                                                                                                  Ye shall bring out of your habitations two wave loaves of two tenth deals; they shall be of fine flour; they shall be baked with leaven; they are the firstfruits unto the LORD.
3421                                                                                                                                                                                                                                                         And ye shall offer with the bread seven lambs without blemish of the first year, and one young bullock, and two rams: they shall be for a burnt offering unto the LORD, with their meat offering, and their drink offerings, even an offering made by fire, of sweet savor unto the LORD.
3422                                                                                                                                                                                                                                                                                                                                                                                                              Then ye shall sacrifice one kid of the goats for a sin offering, and two lambs of the first year for a sacrifice of peace offerings.
3423                                                                                                                                                                                                                                                                                                                                                                          And the priest shall wave them with the bread of the firstfruits for a wave offering before the LORD, with the two lambs: they shall be holy to the LORD for the priest.
3424                                                                                                                                                                                                                                                                                                                                    And ye shall proclaim on the selfsame day, that it may be an holy convocation unto you: ye shall do no servile work therein: it shall be a statute for ever in all your dwellings throughout your generations.
3425                                                                                                                                                                                                                                                                             And when ye reap the harvest of your land, thou shalt not make clean riddance of the corners of thy field when thou reapest, neither shalt thou gather any gleaning of thy harvest: thou shalt leave them unto the poor, and to the stranger: I am the LORD your God.
3426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3427                                                                                                                                                                                                                                                                                                                                                                  Speak unto the children of Israel, saying, In the seventh month, in the first day of the month, shall ye have a sabbath, a memorial of blowing of trumpets, an holy convocation.
3428                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ye shall do no servile work therein: but ye shall offer an offering made by fire unto the LORD.
3429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3430                                                                                                                                                                                                                                                                                                                                       Also on the tenth day of this seventh month there shall be a day of atonement: it shall be an holy convocation unto you; and ye shall afflict your souls, and offer an offering made by fire unto the LORD.
3431                                                                                                                                                                                                                                                                                                                                                                                                                    And ye shall do no work in that same day: for it is a day of atonement, to make an atonement for you before the LORD your God.
3432                                                                                                                                                                                                                                                                                                                                                                                                                                For whatsoever soul it be that shall not be afflicted in that same day, he shall be cut off from among his people.
3433                                                                                                                                                                                                                                                                                                                                                                                                                               And whatsoever soul it be that doeth any work in that same day, the same soul will I destroy from among his people.
3434                                                                                                                                                                                                                                                                                                                                                                                                                                  Ye shall do no manner of work: it shall be a statute for ever throughout your generations in all your dwellings.
3435                                                                                                                                                                                                                                                                                                                                                                             It shall be unto you a sabbath of rest, and ye shall afflict your souls: in the ninth day of the month at even, from even unto even, shall ye celebrate your sabbath.
3436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3437                                                                                                                                                                                                                                                                                                                                                                                                Speak unto the children of Israel, saying, The fifteenth day of this seventh month shall be the feast of tabernacles for seven days unto the LORD.
3438                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the first day shall be an holy convocation: ye shall do no servile work therein.
3439                                                                                                                                                                                                                                                                                           Seven days ye shall offer an offering made by fire unto the LORD: on the eighth day shall be an holy convocation unto you; and ye shall offer an offering made by fire unto the LORD: it is a solemn assembly; and ye shall do no servile work therein.
3440                                                                                                                                                                                                                                                                                                            These are the feasts of the LORD, which ye shall proclaim to be holy convocations, to offer an offering made by fire unto the LORD, a burnt offering, and a meat offering, a sacrifice, and drink offerings, every thing upon his day:
3441                                                                                                                                                                                                                                                                                                                                                                                            Beside the sabbaths of the LORD, and beside your gifts, and beside all your vows, and beside all your freewill offerings, which ye give unto the LORD.
3442                                                                                                                                                                                                                                                                                                                    Also in the fifteenth day of the seventh month, when ye have gathered in the fruit of the land, ye shall keep a feast unto the LORD seven days: on the first day shall be a sabbath, and on the eighth day shall be a sabbath.
3443                                                                                                                                                                                                                                                                                                                                     And ye shall take you on the first day the boughs of goodly trees, branches of palm trees, and the boughs of thick trees, and willows of the brook; and ye shall rejoice before the LORD your God seven days.
3444                                                                                                                                                                                                                                                                                                                                                                                And ye shall keep it a feast unto the LORD seven days in the year. It shall be a statute for ever in your generations: ye shall celebrate it in the seventh month.
3445                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall dwell in booths seven days; all that are Israelites born shall dwell in booths:
3446                                                                                                                                                                                                                                                                                                                                                                                       That your generations may know that I made the children of Israel to dwell in booths, when I brought them out of the land of Egypt: I am the LORD your God.
3447                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses declared unto the children of Israel the feasts of the LORD.
3448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3449                                                                                                                                                                                                                                                                                                                                                                                                            Command the children of Israel, that they bring unto thee pure oil olive beaten for the light, to cause the lamps to burn continually.
3450                                                                                                                                                                                                                                                                                                                                 Without the vail of the testimony, in the tabernacle of the congregation, shall Aaron order it from the evening unto the morning before the LORD continually: it shall be a statute for ever in your generations.
3451                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He shall order the lamps upon the pure candlestick before the LORD continually.
3452                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt take fine flour, and bake twelve cakes thereof: two tenth deals shall be in one cake.
3453                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt set them in two rows, six on a row, upon the pure table before the LORD.
3454                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt put pure frankincense upon each row, that it may be on the bread for a memorial, even an offering made by fire unto the LORD.
3455                                                                                                                                                                                                                                                                                                                                                                                                           Every sabbath he shall set it in order before the LORD continually, being taken from the children of Israel by an everlasting covenant.
3456                                                                                                                                                                                                                                                                                                                                                                    And it shall be Aaron's and his sons'; and they shall eat it in the holy place: for it is most holy unto him of the offerings of the LORD made by fire by a perpetual statute.
3457                                                                                                                                                                                                                                                                                                                                                  And the son of an Israelitish woman, whose father was an Egyptian, went out among the children of Israel: and this son of the Israelitish woman and a man of Israel strove together in the camp;
3458                                                                                                                                                                                                                                                                                                                                                  And the Israelitish woman's son blasphemed the name of the Lord, and cursed. And they brought him unto Moses: (and his mother's name was Shelomith, the daughter of Dibri, of the tribe of Dan:)
3459                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they put him in ward, that the mind of the LORD might be showed them.
3460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3461                                                                                                                                                                                                                                                                                                                                                                                              Bring forth him that hath cursed without the camp; and let all that heard him lay their hands upon his head, and let all the congregation stone him.
3462                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt speak unto the children of Israel, saying, Whosoever curseth his God shall bear his sin.
3463                                                                                                                                                                                                                                                                                         And he that blasphemeth the name of the LORD, he shall surely be put to death, and all the congregation shall certainly stone him: as well the stranger, as he that is born in the land, when he blasphemeth the name of the Lord, shall be put to death.
3464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he that killeth any man shall surely be put to death.
3465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he that killeth a beast shall make it good; beast for beast.
3466                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a man cause a blemish in his neighbor; as he hath done, so shall it be done to him;
3467                                                                                                                                                                                                                                                                                                                                                                                                                          Breach for breach, eye for eye, tooth for tooth: as he hath caused a blemish in a man, so shall it be done to him again.
3468                                                                                                                                                                                                                                                                                                                                                                                                                                            And he that killeth a beast, he shall restore it: and he that killeth a man, he shall be put to death.
3469                                                                                                                                                                                                                                                                                                                                                                                                                            Ye shall have one manner of law, as well for the stranger, as for one of your own country: for I am the LORD your God.
3470                                                                                                                                                                                                                                                                                                                                               And Moses spake to the children of Israel, that they should bring forth him that had cursed out of the camp, and stone him with stones. And the children of Israel did as the LORD commanded Moses.
3471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses in mount Sinai, saying,
3472                                                                                                                                                                                                                                                                                                                                                                                              Speak unto the children of Israel, and say unto them, When ye come into the land which I give you, then shall the land keep a sabbath unto the LORD.
3473                                                                                                                                                                                                                                                                                                                                                                                                                                 Six years thou shalt sow thy field, and six years thou shalt prune thy vineyard, and gather in the fruit thereof;
3474                                                                                                                                                                                                                                                                                                                                                                                               But in the seventh year shall be a sabbath of rest unto the land, a sabbath for the LORD: thou shalt neither sow thy field, nor prune thy vineyard.
3475                                                                                                                                                                                                                                                                                                                                                                                 That which groweth of its own accord of thy harvest thou shalt not reap, neither gather the grapes of thy vine undressed: for it is a year of rest unto the land.
3476                                                                                                                                                                                                                                                                                                                                                                    And the sabbath of the land shall be meat for you; for thee, and for thy servant, and for thy maid, and for thy hired servant, and for thy stranger that sojourneth with thee.
3477                                                                                                                                                                                                                                                                                                                                                                                                                                               And for thy cattle, and for the beast that are in thy land, shall all the increase thereof be meat.
3478                                                                                                                                                                                                                                                                                                                                                                           And thou shalt number seven sabbaths of years unto thee, seven times seven years; and the space of the seven sabbaths of years shall be unto thee forty and nine years.
3479                                                                                                                                                                                                                                                                                                                                                                Then shalt thou cause the trumpet of the jubilee to sound on the tenth day of the seventh month, in the day of atonement shall ye make the trumpet sound throughout all your land.
3480                                                                                                                                                                                                                                                                                           And ye shall hallow the fiftieth year, and proclaim liberty throughout all the land unto all the inhabitants thereof: it shall be a jubilee unto you; and ye shall return every man unto his possession, and ye shall return every man unto his family.
3481                                                                                                                                                                                                                                                                                                                                                                             A jubilee shall that fiftieth year be unto you: ye shall not sow, neither reap that which groweth of itself in it, nor gather the grapes in it of thy vine undressed.
3482                                                                                                                                                                                                                                                                                                                                                                                                                                             For it is the jubilee; it shall be holy unto you: ye shall eat the increase thereof out of the field.
3483                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In the year of this jubilee ye shall return every man unto his possession.
3484                                                                                                                                                                                                                                                                                                                                                                                                                               And if thou sell ought unto thy neighbor, or buyest ought of thy neighbor's hand, ye shall not oppress one another:
3485                                                                                                                                                                                                                                                                                                                                                                                  According to the number of years after the jubilee thou shalt buy of thy neighbor, and according unto the number of years of the fruits he shall sell unto thee:
3486                                                                                                                                                                                                                                                                                                              According to the multitude of years thou shalt increase the price thereof, and according to the fewness of years thou shalt diminish the price of it: for according to the number of the years of the fruits doth he sell unto thee.
3487                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall not therefore oppress one another; but thou shalt fear thy God: for I am the LORD your God.
3488                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore ye shall do my statutes, and keep my judgments, and do them; and ye shall dwell in the land in safety.
3489                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the land shall yield her fruit, and ye shall eat your fill, and dwell therein in safety.
3490                                                                                                                                                                                                                                                                                                                                                                                                                                    And if ye shall say, What shall we eat the seventh year? behold, we shall not sow, nor gather in our increase:
3491                                                                                                                                                                                                                                                                                                                                                                                                                                       Then I will command my blessing upon you in the sixth year, and it shall bring forth fruit for three years.
3492                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall sow the eighth year, and eat yet of old fruit until the ninth year; until her fruits come in ye shall eat of the old store.
3493                                                                                                                                                                                                                                                                                                                                                                                                                                           The land shall not be sold for ever: for the land is mine, for ye are strangers and sojourners with me.
3494                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And in all the land of your possession ye shall grant a redemption for the land.
3495                                                                                                                                                                                                                                                                                                                                                                               If thy brother be waxen poor, and hath sold away some of his possession, and if any of his kin come to redeem it, then shall he redeem that which his brother sold.
3496                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if the man have none to redeem it, and himself be able to redeem it;
3497                                                                                                                                                                                                                                                                                                                                                                                               Then let him count the years of the sale thereof, and restore the overplus unto the man to whom he sold it; that he may return unto his possession.
3498                                                                                                                                                                                                                                                                                                                   But if he be not able to restore it to him, then that which is sold shall remain in the hand of him that hath bought it until the year of jubilee: and in the jubilee it shall go out, and he shall return unto his possession.
3499                                                                                                                                                                                                                                                                                                                                                                                             And if a man sell a dwelling house in a walled city, then he may redeem it within a whole year after it is sold; within a full year may he redeem it.
3500                                                                                                                                                                                                                                                                                                                          And if it be not redeemed within the space of a full year, then the house that is in the walled city shall be established for ever to him that bought it throughout his generations: it shall not go out in the jubilee.
3501                                                                                                                                                                                                                                                                                                                                                                     But the houses of the villages which have no wall round about them shall be counted as the fields of the country: they may be redeemed, and they shall go out in the jubilee.
3502                                                                                                                                                                                                                                                                                                                                                                                                                  Notwithstanding the cities of the Levites, and the houses of the cities of their possession, may the Levites redeem at any time.
3503                                                                                                                                                                                                                                                                                                           And if a man purchase of the Levites, then the house that was sold, and the city of his possession, shall go out in the year of jubilee: for the houses of the cities of the Levites are their possession among the children of Israel.
3504                                                                                                                                                                                                                                                                                                                                                                                                                                               But the field of the suburbs of their cities may not be sold; for it is their perpetual possession.
3505                                                                                                                                                                                                                                                                                                                                                                           And if thy brother be waxen poor, and fallen in decay with thee; then thou shalt relieve him: yea, though he be a stranger, or a sojourner; that he may live with thee.
3506                                                                                                                                                                                                                                                                                                                                                                                                                                                    Take thou no usury of him, or increase: but fear thy God; that thy brother may live with thee.
3507                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not give him thy money upon usury, nor lend him thy victuals for increase.
3508                                                                                                                                                                                                                                                                                                                                                                                                                     I am the LORD your God, which brought you forth out of the land of Egypt, to give you the land of Canaan, and to be your God.
3509                                                                                                                                                                                                                                                                                                                                                                                                               And if thy brother that dwelleth by thee be waxen poor, and be sold unto thee; thou shalt not compel him to serve as a bondservant:
3510                                                                                                                                                                                                                                                                                                                                                                                                                                But as an hired servant, and as a sojourner, he shall be with thee, and shall serve thee unto the year of jubilee.
3511                                                                                                                                                                                                                                                                                                                                                                              And then shall he depart from thee, both he and his children with him, and shall return unto his own family, and unto the possession of his fathers shall he return.
3512                                                                                                                                                                                                                                                                                                                                                                                                                                      For they are my servants, which I brought forth out of the land of Egypt: they shall not be sold as bondmen.
3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt not rule over him with rigor; but shalt fear thy God.
3514                                                                                                                                                                                                                                                                                                                                                                                         Both thy bondmen, and thy bondmaids, which thou shalt have, shall be of the heathen that are round about you; of them shall ye buy bondmen and bondmaids.
3515                                                                                                                                                                                                                                                                                                                                             Moreover of the children of the strangers that do sojourn among you, of them shall ye buy, and of their families that are with you, which they begat in your land: and they shall be your possession.
3516                                                                                                                                                                                                                                                                                                        And ye shall take them as an inheritance for your children after you, to inherit them for a possession; they shall be your bondmen for ever: but over your brethren the children of Israel, ye shall not rule one over another with rigor.
3517                                                                                                                                                                                                                                                                                                                                                And if a sojourner or stranger wax rich by thee, and thy brother that dwelleth by him wax poor, and sell himself unto the stranger or sojourner by thee, or to the stock of the stranger's family:
3518                                                                                                                                                                                                                                                                                                                                                                                                                                                               After that he is sold he may be redeemed again; one of his brethren may redeem him:
3519                                                                                                                                                                                                                                                                                                                                                                                  Either his uncle, or his uncle's son, may redeem him, or any that is nigh of kin unto him of his family may redeem him; or if he be able, he may redeem himself.
3520                                                                                                                                                                                                                                                                                               And he shall reckon with him that bought him from the year that he was sold to him unto the year of jubilee: and the price of his sale shall be according unto the number of years, according to the time of an hired servant shall it be with him.
3521                                                                                                                                                                                                                                                                                                                                                                                                   If there be yet many years behind, according unto them he shall give again the price of his redemption out of the money that he was bought for.
3522                                                                                                                                                                                                                                                                                                                                                                       And if there remain but few years unto the year of jubilee, then he shall count with him, and according unto his years shall he give him again the price of his redemption.
3523                                                                                                                                                                                                                                                                                                                                                                                                                                And as a yearly hired servant shall he be with him: and the other shall not rule with rigor over him in thy sight.
3524                                                                                                                                                                                                                                                                                                                                                                                                                        And if he be not redeemed in these years, then he shall go out in the year of jubilee, both he, and his children with him.
3525                                                                                                                                                                                                                                                                                                                                                                                                      For unto me the children of Israel are servants; they are my servants whom I brought forth out of the land of Egypt: I am the LORD your God.
3526                                                                                                                                                                                                                                                                                                                                                      Ye shall make you no idols nor graven image, neither rear you up a standing image, neither shall ye set up any image of stone in your land, to bow down unto it: for I am the LORD your God.
3527                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD.
3528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If ye walk in my statutes, and keep my commandments, and do them;
3529                                                                                                                                                                                                                                                                                                                                                                                                               Then I will give you rain in due season, and the land shall yield her increase, and the trees of the field shall yield their fruit.
3530                                                                                                                                                                                                                                                                                                                                                                        And your threshing shall reach unto the vintage, and the vintage shall reach unto the sowing time: and ye shall eat your bread to the full, and dwell in your land safely.
3531                                                                                                                                                                                                                                                                                                                                                               And I will give peace in the land, and ye shall lie down, and none shall make you afraid: and I will rid evil beasts out of the land, neither shall the sword go through your land.
3532                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ye shall chase your enemies, and they shall fall before you by the sword.
3533                                                                                                                                                                                                                                                                                                                                                                                              And five of you shall chase an hundred, and an hundred of you shall put ten thousand to flight: and your enemies shall fall before you by the sword.
3534                                                                                                                                                                                                                                                                                                                                                                                                                                    For I will have respect unto you, and make you fruitful, and multiply you, and establish my covenant with you.
3535                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ye shall eat old store, and bring forth the old because of the new.
3536                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I set my tabernacle among you: and my soul shall not abhor you.
3537                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I will walk among you, and will be your God, and ye shall be my people.
3538                                                                                                                                                                                                                                                                                                                                                                 I am the LORD your God, which brought you forth out of the land of Egypt, that ye should not be their bondmen; and I have broken the bands of your yoke, and made you go upright.
3539                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if ye will not hearken unto me, and will not do all these commandments;
3540                                                                                                                                                                                                                                                                                                                                                                                               And if ye shall despise my statutes, or if your soul abhor my judgments, so that ye will not do all my commandments, but that ye break my covenant:
3541                                                                                                                                                                                                                                                                                                                  I also will do this unto you; I will even appoint over you terror, consumption, and the burning ague, that shall consume the eyes, and cause sorrow of heart: and ye shall sow your seed in vain, for your enemies shall eat it.
3542                                                                                                                                                                                                                                                                                                                                                                                 And I will set my face against you, and ye shall be slain before your enemies: they that hate you shall reign over you; and ye shall flee when none pursueth you.
3543                                                                                                                                                                                                                                                                                                                                                                                                                                       And if ye will not yet for all this hearken unto me, then I will punish you seven times more for your sins.
3544                                                                                                                                                                                                                                                                                                                                                                                                                                           And I will break the pride of your power; and I will make your heaven as iron, and your earth as brass:
3545                                                                                                                                                                                                                                                                                                                                                                                                     And your strength shall be spent in vain: for your land shall not yield her increase, neither shall the trees of the land yield their fruits.
3546                                                                                                                                                                                                                                                                                                                                                                                                             And if ye walk contrary unto me, and will not hearken unto me; I will bring seven times more plagues upon you according to your sins.
3547                                                                                                                                                                                                                                                                                                                                                                          I will also send wild beasts among you, which shall rob you of your children, and destroy your cattle, and make you few in number; and your high ways shall be desolate.
3548                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if ye will not be reformed by me by these things, but will walk contrary unto me;
3549                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then will I also walk contrary unto you, and will punish you yet seven times for your sins.
3550                                                                                                                                                                                                                                                                                                                And I will bring a sword upon you, that shall avenge the quarrel of my covenant: and when ye are gathered together within your cities, I will send the pestilence among you; and ye shall be delivered into the hand of the enemy.
3551                                                                                                                                                                                                                                                                                                                                                       And when I have broken the staff of your bread, ten women shall bake your bread in one oven, and they shall deliver you your bread again by weight: and ye shall eat, and not be satisfied.
3552                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if ye will not for all this hearken unto me, but walk contrary unto me;
3553                                                                                                                                                                                                                                                                                                                                                                                                                                      Then I will walk contrary unto you also in fury; and I, even I, will chastise you seven times for your sins.
3554                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye shall eat the flesh of your sons, and the flesh of your daughters shall ye eat.
3555                                                                                                                                                                                                                                                                                                                                                                                             And I will destroy your high places, and cut down your images, and cast your carcasses upon the carcasses of your idols, and my soul shall abhor you.
3556                                                                                                                                                                                                                                                                                                                                                                                                                And I will make your cities waste, and bring your sanctuaries unto desolation, and I will not smell the savor of your sweet odors.
3557                                                                                                                                                                                                                                                                                                                                                                                                                                        And I will bring the land into desolation: and your enemies which dwell therein shall be astonished at it.
3558                                                                                                                                                                                                                                                                                                                                                                                                            And I will scatter you among the heathen, and will draw out a sword after you: and your land shall be desolate, and your cities waste.
3559                                                                                                                                                                                                                                                                                                                                                                                     Then shall the land enjoy her sabbaths, as long as it lieth desolate, and ye be in your enemies' land; even then shall the land rest, and enjoy her sabbaths.
3560                                                                                                                                                                                                                                                                                                                                                                                                                                      As long as it lieth desolate it shall rest; because it did not rest in your sabbaths, when ye dwelt upon it.
3561                                                                                                                                                                                                                                                                                          And upon them that are left alive of you I will send a faintness into their hearts in the lands of their enemies; and the sound of a shaken leaf shall chase them; and they shall flee, as fleeing from a sword; and they shall fall when none pursueth.
3562                                                                                                                                                                                                                                                                                                                                                                                                     And they shall fall one upon another, as it were before a sword, when none pursueth: and ye shall have no power to stand before your enemies.
3563                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall perish among the heathen, and the land of your enemies shall eat you up.
3564                                                                                                                                                                                                                                                                                                                                                                               And they that are left of you shall pine away in their iniquity in your enemies' lands; and also in the iniquities of their fathers shall they pine away with them.
3565                                                                                                                                                                                                                                                                                                                                                                   If they shall confess their iniquity, and the iniquity of their fathers, with their trespass which they trespassed against me, and that also they have walked contrary unto me;
3566                                                                                                                                                                                                                                                                                                                                    And that I also have walked contrary unto them, and have brought them into the land of their enemies; if then their uncircumcised hearts be humbled, and they then accept of the punishment of their iniquity:
3567                                                                                                                                                                                                                                                                                                                                                                                    Then will I remember my covenant with Jacob, and also my covenant with Isaac, and also my covenant with Abraham will I remember; and I will remember the land.
3568                                                                                                                                                                                                                                                                               The land also shall be left of them, and shall enjoy her sabbaths, while she lieth desolate without them: and they shall accept of the punishment of their iniquity: because, even because they despised my judgments, and because their soul abhorred my statutes.
3569                                                                                                                                                                                                                                                                                                                                  And yet for all that, when they be in the land of their enemies, I will not cast them away, neither will I abhor them, to destroy them utterly, and to break my covenant with them: for I am the LORD their God.
3570                                                                                                                                                                                                                                                                                                                                                         But I will for their sakes remember the covenant of their ancestors, whom I brought forth out of the land of Egypt in the sight of the heathen, that I might be their God: I am the LORD.
3571                                                                                                                                                                                                                                                                                                                                                                                                    These are the statutes and judgments and laws, which the LORD made between him and the children of Israel in mount Sinai by the hand of Moses.
3572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3573                                                                                                                                                                                                                                                                                                                                                                                                  Speak unto the children of Israel, and say unto them, When a man shall make a singular vow, the persons shall be for the LORD by thy estimation.
3574                                                                                                                                                                                                                                                                                                                                                                 And thy estimation shall be of the male from twenty years old even unto sixty years old, even thy estimation shall be fifty shekels of silver, after the shekel of the sanctuary.
3575                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if it be a female, then thy estimation shall be thirty shekels.
3576                                                                                                                                                                                                                                                                                                                                                                                             And if it be from five years old even unto twenty years old, then thy estimation shall be of the male twenty shekels, and for the female ten shekels.
3577                                                                                                                                                                                                                                                                                                                                                      And if it be from a month old even unto five years old, then thy estimation shall be of the male five shekels of silver, and for the female thy estimation shall be three shekels of silver.
3578                                                                                                                                                                                                                                                                                                                                                                                                       And if it be from sixty years old and above; if it be a male, then thy estimation shall be fifteen shekels, and for the female ten shekels.
3579                                                                                                                                                                                                                                                                                                                                                         But if he be poorer than thy estimation, then he shall present himself before the priest, and the priest shall value him; according to his ability that vowed shall the priest value him.
3580                                                                                                                                                                                                                                                                                                                                                                                                                   And if it be a beast, whereof men bring an offering unto the LORD, all that any man giveth of such unto the LORD shall be holy.
3581                                                                                                                                                                                                                                                                                                                                                                       He shall not alter it, nor change it, a good for a bad, or a bad for a good: and if he shall at all change beast for beast, then it and the exchange thereof shall be holy.
3582                                                                                                                                                                                                                                                                                                                                                                                                          And if it be any unclean beast, of which they do not offer a sacrifice unto the LORD, then he shall present the beast before the priest:
3583                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall value it, whether it be good or bad: as thou valuest it, who art the priest, so shall it be.
3584                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if he will at all redeem it, then he shall add a fifth part thereof unto thy estimation.
3585                                                                                                                                                                                                                                                                                                                                                               And when a man shall sanctify his house to be holy unto the LORD, then the priest shall estimate it, whether it be good or bad: as the priest shall estimate it, so shall it stand.
3586                                                                                                                                                                                                                                                                                                                                                                                                 And if he that sanctified it will redeem his house, then he shall add the fifth part of the money of thy estimation unto it, and it shall be his.
3587                                                                                                                                                                                                                                                                                                                                 And if a man shall sanctify unto the LORD some part of a field of his possession, then thy estimation shall be according to the seed thereof: an homer of barley seed shall be valued at fifty shekels of silver.
3588                                                                                                                                                                                                                                                                                                                                                                                                                                                    If he sanctify his field from the year of jubilee, according to thy estimation it shall stand.
3589                                                                                                                                                                                                                                                                                                                                But if he sanctify his field after the jubilee, then the priest shall reckon unto him the money according to the years that remain, even unto the year of the jubilee, and it shall be abated from thy estimation.
3590                                                                                                                                                                                                                                                                                                                                                                          And if he that sanctified the field will in any wise redeem it, then he shall add the fifth part of the money of thy estimation unto it, and it shall be assured to him.
3591                                                                                                                                                                                                                                                                                                                                                                                                                              And if he will not redeem the field, or if he have sold the field to another man, it shall not be redeemed any more.
3592                                                                                                                                                                                                                                                                                                                                                                                                   But the field, when it goeth out in the jubilee, shall be holy unto the LORD, as a field devoted; the possession thereof shall be the priest's.
3593                                                                                                                                                                                                                                                                                                                                                                                                                                   And if a man sanctify unto the LORD a field which he hath bought, which is not of the fields of his possession;
3594                                                                                                                                                                                                                                                                                                                                                              Then the priest shall reckon unto him the worth of thy estimation, even unto the year of the jubilee: and he shall give thine estimation in that day, as a holy thing unto the LORD.
3595                                                                                                                                                                                                                                                                                                                                                                                                      In the year of the jubilee the field shall return unto him of whom it was bought, even to him to whom the possession of the land did belong.
3596                                                                                                                                                                                                                                                                                                                                                                                                                                     And all thy estimations shall be according to the shekel of the sanctuary: twenty gerahs shall be the shekel.
3597                                                                                                                                                                                                                                                                                                                                                                                                   Only the firstling of the beasts, which should be the LORD's firstling, no man shall sanctify it; whether it be ox, or sheep: it is the LORD's.
3598                                                                                                                                                                                                                                                                                                                                   And if it be of an unclean beast, then he shall redeem it according to thine estimation, and shall add a fifth part of it thereto: or if it be not redeemed, then it shall be sold according to thy estimation.
3599                                                                                                                                                                                                                                                                                                                Notwithstanding no devoted thing, that a man shall devote unto the LORD of all that he hath, both of man and beast, and of the field of his possession, shall be sold or redeemed: every devoted thing is most holy unto the LORD.
3600                                                                                                                                                                                                                                                                                                                                                                                                                                                 None devoted, which shall be devoted of men, shall be redeemed; but shall surely be put to death.
3601                                                                                                                                                                                                                                                                                                                                                                                                             And all the tithe of the land, whether of the seed of the land, or of the fruit of the tree, is the LORD's: it is holy unto the LORD.
3602                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if a man will at all redeem ought of his tithes, he shall add thereto the fifth part thereof.
3603                                                                                                                                                                                                                                                                                                                                                                                                           And concerning the tithe of the herd, or of the flock, even of whatsoever passeth under the rod, the tenth shall be holy unto the LORD.
3604                                                                                                                                                                                                                                                                                                                                                               He shall not search whether it be good or bad, neither shall he change it: and if he change it at all, then both it and the change thereof shall be holy; it shall not be redeemed.
3605                                                                                                                                                                                                                                                                                                                                                                                                                                             These are the commandments, which the LORD commanded Moses for the children of Israel in mount Sinai.
3606                                                                                                                                                                                                                                                                                                                                  And the LORD spake unto Moses in the wilderness of Sinai, in the tabernacle of the congregation, on the first day of the second month, in the second year after they were come out of the land of Egypt, saying,
3607                                                                                                                                                                                                                                                                                                                                                                Take ye the sum of all the congregation of the children of Israel, after their families, by the house of their fathers, with the number of their names, every male by their polls;
3608                                                                                                                                                                                                                                                                                                                                                                                                               From twenty years old and upward, all that are able to go forth to war in Israel: thou and Aaron shall number them by their armies.
3609                                                                                                                                                                                                                                                                                                                                                                                                                                                     And with you there shall be a man of every tribe; every one head of the house of his fathers.
3610                                                                                                                                                                                                                                                                                                                                                                                                                                  And these are the names of the men that shall stand with you: of the tribe of Reuben; Elizur the son of Shedeur.
3611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of Simeon; Shelumiel the son of Zurishaddai.
3612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of Judah; Nahshon the son of Amminadab.
3613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of Issachar; Nethaneel the son of Zuar.
3614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of Zebulun; Eliab the son of Helon.
3615                                                                                                                                                                                                                                                                                                                                                                                                                                    Of the children of Joseph: of Ephraim; Elishama the son of Ammihud: of Manasseh; Gamaliel the son of Pedahzur.
3616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of Benjamin; Abidan the son of Gideoni.
3617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of Dan; Ahiezer the son of Ammishaddai.
3618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Asher; Pagiel the son of Ocran.
3619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Gad; Eliasaph the son of Deuel.
3620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of Naphtali; Ahira the son of Enan.
3621                                                                                                                                                                                                                                                                                                                                                                                                                                These were the renowned of the congregation, princes of the tribes of their fathers, heads of thousands in Israel.
3622                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses and Aaron took these men which are expressed by their names:
3623                                                                                                                                                                                                                                                                             And they assembled all the congregation together on the first day of the second month, and they declared their pedigrees after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, by their polls.
3624                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As the LORD commanded Moses, so he numbered them in the wilderness of Sinai.
3625                                                                                                                                                                                                                                                                             And the children of Reuben, Israel's eldest son, by their generations, after their families, by the house of their fathers, according to the number of the names, by their polls, every male from twenty years old and upward, all that were able to go forth to war;
3626                                                                                                                                                                                                                                                                                                                                                                                                                                      Those that were numbered of them, even of the tribe of Reuben, were forty and six thousand and five hundred.
3627                                                                                                                                                                                                                                                                 Of the children of Simeon, by their generations, after their families, by the house of their fathers, those that were numbered of them, according to the number of the names, by their polls, every male from twenty years old and upward, all that were able to go forth to war;
3628                                                                                                                                                                                                                                                                                                                                                                                                                                    Those that were numbered of them, even of the tribe of Simeon, were fifty and nine thousand and three hundred.
3629                                                                                                                                                                                                                                                                                                                                 Of the children of Gad, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3630                                                                                                                                                                                                                                                                                                                                                                                                                                   Those that were numbered of them, even of the tribe of Gad, were forty and five thousand six hundred and fifty.
3631                                                                                                                                                                                                                                                                                                                               Of the children of Judah, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3632                                                                                                                                                                                                                                                                                                                                                                                                                              Those that were numbered of them, even of the tribe of Judah, were threescore and fourteen thousand and six hundred.
3633                                                                                                                                                                                                                                                                                                                            Of the children of Issachar, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3634                                                                                                                                                                                                                                                                                                                                                                                                                                   Those that were numbered of them, even of the tribe of Issachar, were fifty and four thousand and four hundred.
3635                                                                                                                                                                                                                                                                                                                             Of the children of Zebulun, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3636                                                                                                                                                                                                                                                                                                                                                                                                                                   Those that were numbered of them, even of the tribe of Zebulun, were fifty and seven thousand and four hundred.
3637                                                                                                                                                                                                                                                                                          Of the children of Joseph, namely, of the children of Ephraim, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3638                                                                                                                                                                                                                                                                                                                                                                                                                                             Those that were numbered of them, even of the tribe of Ephraim, were forty thousand and five hundred.
3639                                                                                                                                                                                                                                                                                                                            Of the children of Manasseh, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3640                                                                                                                                                                                                                                                                                                                                                                                                                                    Those that were numbered of them, even of the tribe of Manasseh, were thirty and two thousand and two hundred.
3641                                                                                                                                                                                                                                                                                                                            Of the children of Benjamin, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3642                                                                                                                                                                                                                                                                                                                                                                                                                                  Those that were numbered of them, even of the tribe of Benjamin, were thirty and five thousand and four hundred.
3643                                                                                                                                                                                                                                                                                                                                 Of the children of Dan, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3644                                                                                                                                                                                                                                                                                                                                                                                                                                   Those that were numbered of them, even of the tribe of Dan, were threescore and two thousand and seven hundred.
3645                                                                                                                                                                                                                                                                                                                               Of the children of Asher, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3646                                                                                                                                                                                                                                                                                                                                                                                                                                       Those that were numbered of them, even of the tribe of Asher, were forty and one thousand and five hundred.
3647                                                                                                                                                                                                                                                                                                                    Of the children of Naphtali, throughout their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
3648                                                                                                                                                                                                                                                                                                                                                                                                                                  Those that were numbered of them, even of the tribe of Naphtali, were fifty and three thousand and four hundred.
3649                                                                                                                                                                                                                                                                                                                                                                                       These are those that were numbered, which Moses and Aaron numbered, and the princes of Israel, being twelve men: each one was for the house of his fathers.
3650                                                                                                                                                                                                                                                                                                                                                                 So were all those that were numbered of the children of Israel, by the house of their fathers, from twenty years old and upward, all that were able to go forth to war in Israel;
3651                                                                                                                                                                                                                                                                                                                                                                                                                                         Even all they that were numbered were six hundred thousand and three thousand and five hundred and fifty.
3652                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the Levites after the tribe of their fathers were not numbered among them.
3653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the LORD had spoken unto Moses, saying,
3654                                                                                                                                                                                                                                                                                                                                                                                                                                          Only thou shalt not number the tribe of Levi, neither take the sum of them among the children of Israel:
3655                                                                                                                                                                                                                                                          But thou shalt appoint the Levites over the tabernacle of testimony, and over all the vessels thereof, and over all things that belong to it: they shall bear the tabernacle, and all the vessels thereof; and they shall minister unto it, and shall encamp round about the tabernacle.
3656                                                                                                                                                                                                                                                                                                                                          And when the tabernacle setteth forward, the Levites shall take it down: and when the tabernacle is to be pitched, the Levites shall set it up: and the stranger that cometh nigh shall be put to death.
3657                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel shall pitch their tents, every man by his own camp, and every man by his own standard, throughout their hosts.
3658                                                                                                                                                                                                                                                                                                                                But the Levites shall pitch round about the tabernacle of testimony, that there be no wrath upon the congregation of the children of Israel: and the Levites shall keep the charge of the tabernacle of testimony.
3659                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the children of Israel did according to all that the LORD commanded Moses, so did they.
3660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
3661                                                                                                                                                                                                                                                                                                                                                                  Every man of the children of Israel shall pitch by his own standard, with the ensign of their father's house: far off about the tabernacle of the congregation shall they pitch.
3662                                                                                                                                                                                                                                                                                                                                      And on the east side toward the rising of the sun shall they of the standard of the camp of Judah pitch throughout their armies: and Nahshon the son of Amminadab shall be captain of the children of Judah.
3663                                                                                                                                                                                                                                                                                                                                                                                                                                        And his host, and those that were numbered of them, were threescore and fourteen thousand and six hundred.
3664                                                                                                                                                                                                                                                                                                                                                                                                 And those that do pitch next unto him shall be the tribe of Issachar: and Nethaneel the son of Zuar shall be captain of the children of Issachar.
3665                                                                                                                                                                                                                                                                                                                                                                                                                                                And his host, and those that were numbered thereof, were fifty and four thousand and four hundred.
3666                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the tribe of Zebulun: and Eliab the son of Helon shall be captain of the children of Zebulun.
3667                                                                                                                                                                                                                                                                                                                                                                                                                                               And his host, and those that were numbered thereof, were fifty and seven thousand and four hundred.
3668                                                                                                                                                                                                                                                                                                                                                              All that were numbered in the camp of Judah were an hundred thousand and fourscore thousand and six thousand and four hundred, throughout their armies. These shall first set forth.
3669                                                                                                                                                                                                                                                                                                                                                                            On the south side shall be the standard of the camp of Reuben according to their armies: and the captain of the children of Reuben shall be Elizur the son of Shedeur.
3670                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his host, and those that were numbered thereof, were forty and six thousand and five hundred.
3671                                                                                                                                                                                                                                                                                                                                                                                                   And those which pitch by him shall be the tribe of Simeon: and the captain of the children of Simeon shall be Shelumiel the son of Zurishaddai.
3672                                                                                                                                                                                                                                                                                                                                                                                                                                               And his host, and those that were numbered of them, were fifty and nine thousand and three hundred.
3673                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then the tribe of Gad: and the captain of the sons of Gad shall be Eliasaph the son of Reuel.
3674                                                                                                                                                                                                                                                                                                                                                                                                                                       And his host, and those that were numbered of them, were forty and five thousand and six hundred and fifty.
3675                                                                                                                                                                                                                                                                                                                                                All that were numbered in the camp of Reuben were an hundred thousand and fifty and one thousand and four hundred and fifty, throughout their armies. And they shall set forth in the second rank.
3676                                                                                                                                                                                                                                                                                                                                            Then the tabernacle of the congregation shall set forward with the camp of the Levites in the midst of the camp: as they encamp, so shall they set forward, every man in his place by their standards.
3677                                                                                                                                                                                                                                                                                                                                                                             On the west side shall be the standard of the camp of Ephraim according to their armies: and the captain of the sons of Ephraim shall be Elishama the son of Ammihud.
3678                                                                                                                                                                                                                                                                                                                                                                                                                                                         And his host, and those that were numbered of them, were forty thousand and five hundred.
3679                                                                                                                                                                                                                                                                                                                                                                                                                     And by him shall be the tribe of Manasseh: and the captain of the children of Manasseh shall be Gamaliel the son of Pedahzur.
3680                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his host, and those that were numbered of them, were thirty and two thousand and two hundred.
3681                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the tribe of Benjamin: and the captain of the sons of Benjamin shall be Abidan the son of Gideoni.
3682                                                                                                                                                                                                                                                                                                                                                                                                                                               And his host, and those that were numbered of them, were thirty and five thousand and four hundred.
3683                                                                                                                                                                                                                                                                                                                                                                   All that were numbered of the camp of Ephraim were an hundred thousand and eight thousand and an hundred, throughout their armies. And they shall go forward in the third rank.
3684                                                                                                                                                                                                                                                                                                                                                                                       The standard of the camp of Dan shall be on the north side by their armies: and the captain of the children of Dan shall be Ahiezer the son of Ammishaddai.
3685                                                                                                                                                                                                                                                                                                                                                                                                                                           And his host, and those that were numbered of them, were threescore and two thousand and seven hundred.
3686                                                                                                                                                                                                                                                                                                                                                                                                              And those that encamp by him shall be the tribe of Asher: and the captain of the children of Asher shall be Pagiel the son of Ocran.
3687                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his host, and those that were numbered of them, were forty and one thousand and five hundred.
3688                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the tribe of Naphtali: and the captain of the children of Naphtali shall be Ahira the son of Enan.
3689                                                                                                                                                                                                                                                                                                                                                                                                                                               And his host, and those that were numbered of them, were fifty and three thousand and four hundred.
3690                                                                                                                                                                                                                                                                                                                                                                                All they that were numbered in the camp of Dan were an hundred thousand and fifty and seven thousand and six hundred. They shall go hindmost with their standards.
3691                                                                                                                                                                                                                                                                                                            These are those which were numbered of the children of Israel by the house of their fathers: all those that were numbered of the camps throughout their hosts were six hundred thousand and three thousand and five hundred and fifty.
3692                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the Levites were not numbered among the children of Israel; as the LORD commanded Moses.
3693                                                                                                                                                                                                                                                                                                                              And the children of Israel did according to all that the LORD commanded Moses: so they pitched by their standards, and so they set forward, every one after their families, according to the house of their fathers.
3694                                                                                                                                                                                                                                                                                                                                                                                                                                       These also are the generations of Aaron and Moses in the day that the LORD spake with Moses in mount Sinai.
3695                                                                                                                                                                                                                                                                                                                                                                                                                                               And these are the names of the sons of Aaron; Nadab the firstborn, and Abihu, Eleazar, and Ithamar.
3696                                                                                                                                                                                                                                                                                                                                                                                                                These are the names of the sons of Aaron, the priests which were anointed, whom he consecrated to minister in the priest's office.
3697                                                                                                                                                                                                                                                                                                     And Nadab and Abihu died before the LORD, when they offered strange fire before the LORD, in the wilderness of Sinai, and they had no children: and Eleazar and Ithamar ministered in the priest's office in the sight of Aaron their father.
3698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3699                                                                                                                                                                                                                                                                                                                                                                                                                                          Bring the tribe of Levi near, and present them before Aaron the priest, that they may minister unto him.
3700                                                                                                                                                                                                                                                                                                                                                                                          And they shall keep his charge, and the charge of the whole congregation before the tabernacle of the congregation, to do the service of the tabernacle.
3701                                                                                                                                                                                                                                                                                                                                                                                     And they shall keep all the instruments of the tabernacle of the congregation, and the charge of the children of Israel, to do the service of the tabernacle.
3702                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt give the Levites unto Aaron and to his sons: they are wholly given unto him out of the children of Israel.
3703                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt appoint Aaron and his sons, and they shall wait on their priest's office: and the stranger that cometh nigh shall be put to death.
3704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3705                                                                                                                                                                                                                                                                                                                                                 And I, behold, I have taken the Levites from among the children of Israel instead of all the firstborn that openeth the matrix among the children of Israel: therefore the Levites shall be mine;
3706                                                                                                                                                                                                                                                                                                                                     Because all the firstborn are mine; for on the day that I smote all the firstborn in the land of Egypt I hallowed unto me all the firstborn in Israel, both man and beast: mine shall they be: I am the LORD.
3707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD spake unto Moses in the wilderness of Sinai, saying,
3708                                                                                                                                                                                                                                                                                                                                                                                                   Number the children of Levi after the house of their fathers, by their families: every male from a month old and upward shalt thou number them.
3709                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses numbered them according to the word of the LORD, as he was commanded.
3710                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And these were the sons of Levi by their names; Gershon, and Kohath, and Merari.
3711                                                                                                                                                                                                                                                                                                                                                                                                                                                              And these are the names of the sons of Gershon by their families; Libni, and Shimei.
3712                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Kohath by their families; Amram, and Izehar, Hebron, and Uzziel.
3713                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Merari by their families; Mahli, and Mushi. These are the families of the Levites according to the house of their fathers.
3714                                                                                                                                                                                                                                                                                                                                                                                                                             Of Gershon was the family of the Libnites, and the family of the Shimites: these are the families of the Gershonites.
3715                                                                                                                                                                                                                                                                                                                                                              Those that were numbered of them, according to the number of all the males, from a month old and upward, even those that were numbered of them were seven thousand and five hundred.
3716                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The families of the Gershonites shall pitch behind the tabernacle westward.
3717                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the chief of the house of the father of the Gershonites shall be Eliasaph the son of Lael.
3718                                                                                                                                                                                                                                                                                                                                      And the charge of the sons of Gershon in the tabernacle of the congregation shall be the tabernacle, and the tent, the covering thereof, and the hanging for the door of the tabernacle of the congregation,
3719                                                                                                                                                                                                                                                                                                                                                              And the hangings of the court, and the curtain for the door of the court, which is by the tabernacle, and by the altar round about, and the cords of it for all the service thereof.
3720                                                                                                                                                                                                                                                                                                                                                    And of Kohath was the family of the Amramites, and the family of the Izeharites, and the family of the Hebronites, and the family of the Uzzielites: these are the families of the Kohathites.
3721                                                                                                                                                                                                                                                                                                                                                                                                            In the number of all the males, from a month old and upward, were eight thousand and six hundred, keeping the charge of the sanctuary.
3722                                                                                                                                                                                                                                                                                                                                                                                                                                                           The families of the sons of Kohath shall pitch on the side of the tabernacle southward.
3723                                                                                                                                                                                                                                                                                                                                                                                                                                  And the chief of the house of the father of the families of the Kohathites shall be Elizaphan the son of Uzziel.
3724                                                                                                                                                                                                                                                                                                                                                    And their charge shall be the ark, and the table, and the candlestick, and the altars, and the vessels of the sanctuary wherewith they minister, and the hanging, and all the service thereof.
3725                                                                                                                                                                                                                                                                                                                                                                                       And Eleazar the son of Aaron the priest shall be chief over the chief of the Levites, and have the oversight of them that keep the charge of the sanctuary.
3726                                                                                                                                                                                                                                                                                                                                                                                                                                       Of Merari was the family of the Mahlites, and the family of the Mushites: these are the families of Merari.
3727                                                                                                                                                                                                                                                                                                                                                                                                   And those that were numbered of them, according to the number of all the males, from a month old and upward, were six thousand and two hundred.
3728                                                                                                                                                                                                                                                                                                                                                                                      And the chief of the house of the father of the families of Merari was Zuriel the son of Abihail: these shall pitch on the side of the tabernacle northward.
3729                                                                                                                                                                                                                                                                                                                  And under the custody and charge of the sons of Merari shall be the boards of the tabernacle, and the bars thereof, and the pillars thereof, and the sockets thereof, and all the vessels thereof, and all that serveth thereto,
3730                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the pillars of the court round about, and their sockets, and their pins, and their cords.
3731                                                                                                                                                                                                                                              But those that encamp before the tabernacle toward the east, even before the tabernacle of the congregation eastward, shall be Moses, and Aaron and his sons, keeping the charge of the sanctuary for the charge of the children of Israel; and the stranger that cometh nigh shall be put to death.
3732                                                                                                                                                                                                                                                                                                                                         All that were numbered of the Levites, which Moses and Aaron numbered at the commandment of the LORD, throughout their families, all the males from a month old and upward, were twenty and two thousand.
3733                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Moses, Number all the firstborn of the males of the children of Israel from a month old and upward, and take the number of their names.
3734                                                                                                                                                                                                                                                                                                                         And thou shalt take the Levites for me (I am the LORD) instead of all the firstborn among the children of Israel; and the cattle of the Levites instead of all the firstlings among the cattle of the children of Israel.
3735                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses numbered, as the LORD commanded him, all the firstborn among the children of Israel.
3736                                                                                                                                                                                                                                                                                                                                                       And all the firstborn males by the number of names, from a month old and upward, of those that were numbered of them, were twenty and two thousand two hundred and threescore and thirteen.
3737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3738                                                                                                                                                                                                                                                                                                                                                                  Take the Levites instead of all the firstborn among the children of Israel, and the cattle of the Levites instead of their cattle; and the Levites shall be mine: I am the LORD.
3739                                                                                                                                                                                                                                                                                                                                                                                 And for those that are to be redeemed of the two hundred and threescore and thirteen of the firstborn of the children of Israel, which are more than the Levites;
3740                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt even take five shekels apiece by the poll, after the shekel of the sanctuary shalt thou take them: (the shekel is twenty gerahs:)
3741                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt give the money, wherewith the odd number of them is to be redeemed, unto Aaron and to his sons.
3742                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses took the redemption money of them that were over and above them that were redeemed by the Levites:
3743                                                                                                                                                                                                                                                                                                                                                                                        Of the firstborn of the children of Israel took he the money; a thousand three hundred and threescore and five shekels, after the shekel of the sanctuary:
3744                                                                                                                                                                                                                                                                                                                                                                                                   And Moses gave the money of them that were redeemed unto Aaron and to his sons, according to the word of the LORD, as the LORD commanded Moses.
3745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
3746                                                                                                                                                                                                                                                                                                                                                                                                                              Take the sum of the sons of Kohath from among the sons of Levi, after their families, by the house of their fathers,
3747                                                                                                                                                                                                                                                                                                                                                                                                  From thirty years old and upward even until fifty years old, all that enter into the host, to do the work in the tabernacle of the congregation.
3748                                                                                                                                                                                                                                                                                                                                                                                                                                This shall be the service of the sons of Kohath in the tabernacle of the congregation, about the most holy things:
3749                                                                                                                                                                                                                                                                                                                                                                                            And when the camp setteth forward, Aaron shall come, and his sons, and they shall take down the covering vail, and cover the ark of testimony with it:
3750                                                                                                                                                                                                                                                                                                                                                                                                       And shall put thereon the covering of badgers' skins, and shall spread over it a cloth wholly of blue, and shall put in the staves thereof.
3751                                                                                                                                                                                                                                                                                                                                               And upon the table of showbread they shall spread a cloth of blue, and put thereon the dishes, and the spoons, and the bowls, and covers to cover withal: and the continual bread shall be thereon:
3752                                                                                                                                                                                                                                                                                                                                                                                                    And they shall spread upon them a cloth of scarlet, and cover the same with a covering of badgers' skins, and shall put in the staves thereof.
3753                                                                                                                                                                                                                                                                                                                                                 And they shall take a cloth of blue, and cover the candlestick of the light, and his lamps, and his tongs, and his snuffdishes, and all the oil vessels thereof, wherewith they minister unto it:
3754                                                                                                                                                                                                                                                                                                                                                                                                                               And they shall put it and all the vessels thereof within a covering of badgers' skins, and shall put it upon a bar.
3755                                                                                                                                                                                                                                                                                                                                                                                                 And upon the golden altar they shall spread a cloth of blue, and cover it with a covering of badgers' skins, and shall put to the staves thereof:
3756                                                                                                                                                                                                                                                                                                                                    And they shall take all the instruments of ministry, wherewith they minister in the sanctuary, and put them in a cloth of blue, and cover them with a covering of badgers' skins, and shall put them on a bar:
3757                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they shall take away the ashes from the altar, and spread a purple cloth thereon:
3758                                                                                                                                                                                                                                                                   And they shall put upon it all the vessels thereof, wherewith they minister about it, even the censers, the fleshhooks, and the shovels, and the basins, all the vessels of the altar; and they shall spread upon it a covering of badgers' skins, and put to the staves of it.
3759                                                                                                                                                                                               And when Aaron and his sons have made an end of covering the sanctuary, and all the vessels of the sanctuary, as the camp is to set forward; after that, the sons of Kohath shall come to bear it: but they shall not touch any holy thing, lest they die. These things are the burden of the sons of Kohath in the tabernacle of the congregation.
3760                                                                                                                                                                                                                                                          And to the office of Eleazar the son of Aaron the priest pertaineth the oil for the light, and the sweet incense, and the daily meat offering, and the anointing oil, and the oversight of all the tabernacle, and of all that therein is, in the sanctuary, and in the vessels thereof.
3761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD spake unto Moses and unto Aaron saying,
3762                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cut ye not off the tribe of the families of the Kohathites from among the Levites:
3763                                                                                                                                                                                                                                                                                                                                                But thus do unto them, that they may live, and not die, when they approach unto the most holy things: Aaron and his sons shall go in, and appoint them every one to his service and to his burden:
3764                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But they shall not go in to see when the holy things are covered, lest they die.
3765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3766                                                                                                                                                                                                                                                                                                                                                                                                                                              Take also the sum of the sons of Gershon, throughout the houses of their fathers, by their families;
3767                                                                                                                                                                                                                                                                                                                                                                    From thirty years old and upward until fifty years old shalt thou number them; all that enter in to perform the service, to do the work in the tabernacle of the congregation.
3768                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is the service of the families of the Gershonites, to serve, and for burdens:
3769                                                                                                                                                                                                                                                                                                       And they shall bear the curtains of the tabernacle, and the tabernacle of the congregation, his covering, and the covering of the badgers' skins that is above upon it, and the hanging for the door of the tabernacle of the congregation,
3770                                                                                                                                                                                                                                                                                     And the hangings of the court, and the hanging for the door of the gate of the court, which is by the tabernacle and by the altar round about, and their cords, and all the instruments of their service, and all that is made for them: so shall they serve.
3771                                                                                                                                                                                                                                                                                                                                     At the appointment of Aaron and his sons shall be all the service of the sons of the Gershonites, in all their burdens, and in all their service: and ye shall appoint unto them in charge all their burdens.
3772                                                                                                                                                                                                                                                                                                                                                                This is the service of the families of the sons of Gershon in the tabernacle of the congregation: and their charge shall be under the hand of Ithamar the son of Aaron the priest.
3773                                                                                                                                                                                                                                                                                                                                                                                                                                            As for the sons of Merari, thou shalt number them after their families, by the house of their fathers;
3774                                                                                                                                                                                                                                                                                                                                                                From thirty years old and upward even unto fifty years old shalt thou number them, every one that entereth into the service, to do the work of the tabernacle of the congregation.
3775                                                                                                                                                                                                                                                                                                                                   And this is the charge of their burden, according to all their service in the tabernacle of the congregation; the boards of the tabernacle, and the bars thereof, and the pillars thereof, and sockets thereof,
3776                                                                                                                                                                                                                                                                                                                  And the pillars of the court round about, and their sockets, and their pins, and their cords, with all their instruments, and with all their service: and by name ye shall reckon the instruments of the charge of their burden.
3777                                                                                                                                                                                                                                                                                                                                                          This is the service of the families of the sons of Merari, according to all their service, in the tabernacle of the congregation, under the hand of Ithamar the son of Aaron the priest.
3778                                                                                                                                                                                                                                                                                                                                                                                             And Moses and Aaron and the chief of the congregation numbered the sons of the Kohathites after their families, and after the house of their fathers,
3779                                                                                                                                                                                                                                                                                                                                                                                         From thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation:
3780                                                                                                                                                                                                                                                                                                                                                                                                                                                 And those that were numbered of them by their families were two thousand seven hundred and fifty.
3781                                                                                                                                                                                                                                                                                                            These were they that were numbered of the families of the Kohathites, all that might do service in the tabernacle of the congregation, which Moses and Aaron did number according to the commandment of the LORD by the hand of Moses.
3782                                                                                                                                                                                                                                                                                                                                                                                                                                And those that were numbered of the sons of Gershon, throughout their families, and by the house of their fathers,
3783                                                                                                                                                                                                                                                                                                                                                                                         From thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation,
3784                                                                                                                                                                                                                                                                                                                                                                                                    Even those that were numbered of them, throughout their families, by the house of their fathers, were two thousand and six hundred and thirty.
3785                                                                                                                                                                                                                                                                                                                           These are they that were numbered of the families of the sons of Gershon, of all that might do service in the tabernacle of the congregation, whom Moses and Aaron did number according to the commandment of the LORD.
3786                                                                                                                                                                                                                                                                                                                                                                                                                     And those that were numbered of the families of the sons of Merari, throughout their families, by the house of their fathers,
3787                                                                                                                                                                                                                                                                                                                                                                                         From thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation,
3788                                                                                                                                                                                                                                                                                                                                                                                                                                                  Even those that were numbered of them after their families, were three thousand and two hundred.
3789                                                                                                                                                                                                                                                                                                                                                                                    These be those that were numbered of the families of the sons of Merari, whom Moses and Aaron numbered according to the word of the LORD by the hand of Moses.
3790                                                                                                                                                                                                                                                                                                                                                                                   All those that were numbered of the Levites, whom Moses and Aaron and the chief of Israel numbered, after their families, and after the house of their fathers,
3791                                                                                                                                                                                                                                                                                                                                                           From thirty years old and upward even unto fifty years old, every one that came to do the service of the ministry, and the service of the burden in the tabernacle of the congregation.
3792                                                                                                                                                                                                                                                                                                                                                                                                                                                        Even those that were numbered of them, were eight thousand and five hundred and fourscore,
3793                                                                                                                                                                                                                                                                                                                                   According to the commandment of the LORD they were numbered by the hand of Moses, every one according to his service, and according to his burden: thus were they numbered of him, as the LORD commanded Moses.
3794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3795                                                                                                                                                                                                                                                                                                                                                                                                Command the children of Israel, that they put out of the camp every leper, and every one that hath an issue, and whosoever is defiled by the dead:
3796                                                                                                                                                                                                                                                                                                                                                                                                        Both male and female shall ye put out, without the camp shall ye put them; that they defile not their camps, in the midst whereof I dwell.
3797                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel did so, and put them out without the camp: as the LORD spake unto Moses, so did the children of Israel.
3798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3799                                                                                                                                                                                                                                                                                                                                                                                        Speak unto the children of Israel, When a man or woman shall commit any sin that men commit, to do a trespass against the LORD, and that person be guilty;
3800                                                                                                                                                                                                                                                                                                                            Then they shall confess their sin which they have done: and he shall recompense his trespass with the principal thereof, and add unto it the fifth part thereof, and give it unto him against whom he hath trespassed.
3801                                                                                                                                                                                                                                                                                                                                   But if the man have no kinsman to recompense the trespass unto, let the trespass be recompensed unto the LORD, even to the priest; beside the ram of the atonement, whereby an atonement shall be made for him.
3802                                                                                                                                                                                                                                                                                                                                                                                                                              And every offering of all the holy things of the children of Israel, which they bring unto the priest, shall be his.
3803                                                                                                                                                                                                                                                                                                                                                                                                                                              And every man's hallowed things shall be his: whatsoever any man giveth the priest, it shall be his.
3804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3805                                                                                                                                                                                                                                                                                                                                                                                                                              Speak unto the children of Israel, and say unto them, If any man's wife go aside, and commit a trespass against him,
3806                                                                                                                                                                                                                                                                                                                                                    And a man lie with her carnally, and it be hid from the eyes of her husband, and be kept close, and she be defiled, and there be no witness against her, neither she be taken with the manner;
3807                                                                                                                                                                                                                                                                                                                                                   And the spirit of jealousy come upon him, and he be jealous of his wife, and she be defiled: or if the spirit of jealousy come upon him, and he be jealous of his wife, and she be not defiled:
3808                                                                                                                                                                                                                                                  Then shall the man bring his wife unto the priest, and he shall bring her offering for her, the tenth part of an ephah of barley meal; he shall pour no oil upon it, nor put frankincense thereon; for it is an offering of jealousy, an offering of memorial, bringing iniquity to remembrance.
3809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall bring her near, and set her before the LORD:
3810                                                                                                                                                                                                                                                                                                                                                                               And the priest shall take holy water in an earthen vessel; and of the dust that is in the floor of the tabernacle the priest shall take, and put it into the water:
3811                                                                                                                                                                                                                                                                                                   And the priest shall set the woman before the LORD, and uncover the woman's head, and put the offering of memorial in her hands, which is the jealousy offering: and the priest shall have in his hand the bitter water that causeth the curse:
3812                                                                                                                                                                                                                                                                                                And the priest shall charge her by an oath, and say unto the woman, If no man have lain with thee, and if thou hast not gone aside to uncleanness with another instead of thy husband, be thou free from this bitter water that causeth the curse:
3813                                                                                                                                                                                                                                                                                                                                                                                                     But if thou hast gone aside to another instead of thy husband, and if thou be defiled, and some man have lain with thee beside thine husband:
3814                                                                                                                                                                                                                                                                                                               Then the priest shall charge the woman with an oath of cursing, and the priest shall say unto the woman, The LORD make thee a curse and an oath among thy people, when the LORD doth make thy thigh to rot, and thy belly to swell;
3815                                                                                                                                                                                                                                                                                                                                                                                            And this water that causeth the curse shall go into thy bowels, to make thy belly to swell, and thy thigh to rot: And the woman shall say, Amen, amen.
3816                                                                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall write these curses in a book, and he shall blot them out with the bitter water:
3817                                                                                                                                                                                                                                                                                                                                                                                      And he shall cause the woman to drink the bitter water that causeth the curse: and the water that causeth the curse shall enter into her, and become bitter.
3818                                                                                                                                                                                                                                                                                                                                                                                               Then the priest shall take the jealousy offering out of the woman's hand, and shall wave the offering before the LORD, and offer it upon the altar:
3819                                                                                                                                                                                                                                                                                                                                                                              And the priest shall take an handful of the offering, even the memorial thereof, and burn it upon the altar, and afterward shall cause the woman to drink the water.
3820                                                                                                                                                                                                                And when he hath made her to drink the water, then it shall come to pass, that, if she be defiled, and have done trespass against her husband, that the water that causeth the curse shall enter into her, and become bitter, and her belly shall swell, and her thigh shall rot: and the woman shall be a curse among her people.
3821                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if the woman be not defiled, but be clean; then she shall be free, and shall conceive seed.
3822                                                                                                                                                                                                                                                                                                                                                                                                                                         This is the law of jealousies, when a wife goeth aside to another instead of her husband, and is defiled;
3823                                                                                                                                                                                                                                                                                                                                                                     Or when the spirit of jealousy cometh upon him, and he be jealous over his wife, and shall set the woman before the LORD, and the priest shall execute upon her all this law.
3824                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then shall the man be guiltless from iniquity, and this woman shall bear her iniquity.
3825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3826                                                                                                                                                                                                                                                                                                                                                                        Speak unto the children of Israel, and say unto them, When either man or woman shall separate themselves to vow a vow of a Nazarite, to separate themselves unto the LORD:
3827                                                                                                                                                                                                                                                                                                                                                He shall separate himself from wine and strong drink, and shall drink no vinegar of wine, or vinegar of strong drink, neither shall he drink any liquor of grapes, nor eat moist grapes, or dried.
3828                                                                                                                                                                                                                                                                                                                                                                                                                             All the days of his separation shall he eat nothing that is made of the vine tree, from the kernels even to the husk.
3829                                                                                                                                                                                                                                                                                                         All the days of the vow of his separation there shall no razor come upon his head: until the days be fulfilled, in the which he separateth himself unto the LORD, he shall be holy, and shall let the locks of the hair of his head grow.
3830                                                                                                                                                                                                                                                                                                                                                                                                                                                              All the days that he separateth himself unto the LORD he shall come at no dead body.
3831                                                                                                                                                                                                                                                                                                                                                                     He shall not make himself unclean for his father, or for his mother, for his brother, or for his sister, when they die: because the consecration of his God is upon his head.
3832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All the days of his separation he is holy unto the LORD.
3833                                                                                                                                                                                                                                                                                                                                                        And if any man die very suddenly by him, and he hath defiled the head of his consecration; then he shall shave his head in the day of his cleansing, on the seventh day shall he shave it.
3834                                                                                                                                                                                                                                                                                                                                                                                                         And on the eighth day he shall bring two turtles, or two young pigeons, to the priest, to the door of the tabernacle of the congregation:
3835                                                                                                                                                                                                                                                                                                                                                And the priest shall offer the one for a sin offering, and the other for a burnt offering, and make an atonement for him, for that he sinned by the dead, and shall hallow his head that same day.
3836                                                                                                                                                                                                                                                                                                                              And he shall consecrate unto the LORD the days of his separation, and shall bring a lamb of the first year for a trespass offering: but the days that were before shall be lost, because his separation was defiled.
3837                                                                                                                                                                                                                                                                                                                                                                                      And this is the law of the Nazarite, when the days of his separation are fulfilled: he shall be brought unto the door of the tabernacle of the congregation:
3838                                                                                                                                                                                                                                                                                                        And he shall offer his offering unto the LORD, one he lamb of the first year without blemish for a burnt offering, and one ewe lamb of the first year without blemish for a sin offering, and one ram without blemish for peace offerings,
3839                                                                                                                                                                                                                                                                                                                                                                     And a basket of unleavened bread, cakes of fine flour mingled with oil, and wafers of unleavened bread anointed with oil, and their meat offering, and their drink offerings.
3840                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall bring them before the LORD, and shall offer his sin offering, and his burnt offering:
3841                                                                                                                                                                                                                                                                                                                                                          And he shall offer the ram for a sacrifice of peace offerings unto the LORD, with the basket of unleavened bread: the priest shall offer also his meat offering, and his drink offering.
3842                                                                                                                                                                                                                                                                                                     And the Nazarite shall shave the head of his separation at the door of the tabernacle of the congregation, and shall take the hair of the head of his separation, and put it in the fire which is under the sacrifice of the peace offerings.
3843                                                                                                                                                                                                                                                                                                                     And the priest shall take the sodden shoulder of the ram, and one unleavened cake out of the basket, and one unleavened wafer, and shall put them upon the hands of the Nazarite, after the hair of his separation is shaven:
3844                                                                                                                                                                                                                                                                                                                                                             And the priest shall wave them for a wave offering before the LORD: this is holy for the priest, with the wave breast and heave shoulder: and after that the Nazarite may drink wine.
3845                                                                                                                                                                                                                                                                                                                    This is the law of the Nazarite who hath vowed, and of his offering unto the LORD for his separation, beside that that his hand shall get: according to the vow which he vowed, so he must do after the law of his separation.
3846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3847                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak unto Aaron and unto his sons, saying, On this wise ye shall bless the children of Israel, saying unto them,
3848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD bless thee, and keep thee:
3849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD make his face shine upon thee, and be gracious unto thee:
3850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD lift up his countenance upon thee, and give thee peace.
3851                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they shall put my name upon the children of Israel, and I will bless them.
3852                                                                                                                                                                                                                                                                                                       And it came to pass on the day that Moses had fully set up the tabernacle, and had anointed it, and sanctified it, and all the instruments thereof, both the altar and all the vessels thereof, and had anointed them, and sanctified them;
3853                                                                                                                                                                                                                                                                                                                                                                                              That the princes of Israel, heads of the house of their fathers, who were the princes of the tribes, and were over them that were numbered, offered:
3854                                                                                                                                                                                                                                                                                                                                                        And they brought their offering before the LORD, six covered wagons, and twelve oxen; a wagon for two of the princes, and for each one an ox: and they brought them before the tabernacle.
3855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3856                                                                                                                                                                                                                                                                                                                                                                      Take it of them, that they may be to do the service of the tabernacle of the congregation; and thou shalt give them unto the Levites, to every man according to his service.
3857                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses took the wagons and the oxen, and gave them unto the Levites.
3858                                                                                                                                                                                                                                                                                                                                                                                                                                                            Two wagons and four oxen he gave unto the sons of Gershon, according to their service:
3859                                                                                                                                                                                                                                                                                                                                                                                              And four wagons and eight oxen he gave unto the sons of Merari, according unto their service, under the hand of Ithamar the son of Aaron the priest.
3860                                                                                                                                                                                                                                                                                                                                                                                                But unto the sons of Kohath he gave none: because the service of the sanctuary belonging unto them was that they should bear upon their shoulders.
3861                                                                                                                                                                                                                                                                                                                                                                                                    And the princes offered for dedicating of the altar in the day that it was anointed, even the princes offered their offering before the altar.
3862                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Moses, They shall offer their offering, each prince on his day, for the dedicating of the altar.
3863                                                                                                                                                                                                                                                                                                                                                                                                                                           And he that offered his offering the first day was Nahshon the son of Amminadab, of the tribe of Judah:
3864                                                                                                                                                                                                                                                                                                  And his offering was one silver charger, the weight thereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them were full of fine flour mingled with oil for a meat offering:
3865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                One spoon of ten shekels of gold, full of incense:
3866                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3868                                                                                                                                                                                                                                                                                                                                                                                  And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Nahshon the son of Amminadab.
3869                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On the second day Nethaneel the son of Zuar, prince of Issachar, did offer:
3870                                                                                                                                                                                                                                                                                                He offered for his offering one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                One spoon of gold of ten shekels, full of incense:
3872                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3874                                                                                                                                                                                                                                                                                                                                                                                     And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Nethaneel the son of Zuar.
3875                                                                                                                                                                                                                                                                                                                                                                                                                                                            On the third day Eliab the son of Helon, prince of the children of Zebulun, did offer:
3876                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3878                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3880                                                                                                                                                                                                                                                                                                                                                                                        And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Eliab the son of Helon.
3881                                                                                                                                                                                                                                                                                                                                                                                                                                                         On the fourth day Elizur the son of Shedeur, prince of the children of Reuben, did offer:
3882                                                                                                                                                                                                                                                                                                                  His offering was one silver charger of the weight of an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3884                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3886                                                                                                                                                                                                                                                                                                                                                                                     And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Elizur the son of Shedeur.
3887                                                                                                                                                                                                                                                                                                                                                                                                                                                   On the fifth day Shelumiel the son of Zurishaddai, prince of the children of Simeon, did offer:
3888                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3890                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3892                                                                                                                                                                                                                                                                                                                                                                              And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Shelumiel the son of Zurishaddai.
3893                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the sixth day Eliasaph the son of Deuel, prince of the children of Gad, offered:
3894                                                                                                                                                                                                                                                                                                                    His offering was one silver charger of the weight of an hundred and thirty shekels, a silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3896                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3898                                                                                                                                                                                                                                                                                                                                                                                     And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Eliasaph the son of Deuel.
3899                                                                                                                                                                                                                                                                                                                                                                                                                                                       On the seventh day Elishama the son of Ammihud, prince of the children of Ephraim, offered:
3900                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3902                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3904                                                                                                                                                                                                                                                                                                                                                                                   And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Elishama the son of Ammihud.
3905                                                                                                                                                                                                                                                                                                                                                                                                                                                       On the eighth day offered Gamaliel the son of Pedahzur, prince of the children of Manasseh:
3906                                                                                                                                                                                                                                                                                                                  His offering was one silver charger of the weight of an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3908                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3910                                                                                                                                                                                                                                                                                                                                                                                  And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Gamaliel the son of Pedahzur.
3911                                                                                                                                                                                                                                                                                                                                                                                                                                                          On the ninth day Abidan the son of Gideoni, prince of the children of Benjamin, offered:
3912                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3914                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3916                                                                                                                                                                                                                                                                                                                                                                                     And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Abidan the son of Gideoni.
3917                                                                                                                                                                                                                                                                                                                                                                                                                                                          On the tenth day Ahiezer the son of Ammishaddai, prince of the children of Dan, offered:
3918                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3920                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3922                                                                                                                                                                                                                                                                                                                                                                                And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Ahiezer the son of Ammishaddai.
3923                                                                                                                                                                                                                                                                                                                                                                                                                                                            On the eleventh day Pagiel the son of Ocran, prince of the children of Asher, offered:
3924                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3926                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3928                                                                                                                                                                                                                                                                                                                                                                                       And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Pagiel the son of Ocran.
3929                                                                                                                                                                                                                                                                                                                                                                                                                                                            On the twelfth day Ahira the son of Enan, prince of the children of Naphtali, offered:
3930                                                                                                                                                                                                                                                                                                           His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
3931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One golden spoon of ten shekels, full of incense:
3932                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One young bullock, one ram, one lamb of the first year, for a burnt offering:
3933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering:
3934                                                                                                                                                                                                                                                                                                                                                                                         And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Ahira the son of Enan.
3935                                                                                                                                                                                                                                                                                                                                                                           This was the dedication of the altar, in the day when it was anointed, by the princes of Israel: twelve chargers of silver, twelve silver bowls, twelve spoons of gold:
3936                                                                                                                                                                                                                                                                                                                                                        Each charger of silver weighing an hundred and thirty shekels, each bowl seventy: all the silver vessels weighed two thousand and four hundred shekels, after the shekel of the sanctuary:
3937                                                                                                                                                                                                                                                                                                                                                                     The golden spoons were twelve, full of incense, weighing ten shekels apiece, after the shekel of the sanctuary: all the gold of the spoons was an hundred and twenty shekels.
3938                                                                                                                                                                                                                                                                                                                                                       All the oxen for the burnt offering were twelve bullocks, the rams twelve, the lambs of the first year twelve, with their meat offering: and the kids of the goats for sin offering twelve.
3939                                                                                                                                                                                                                                                                                                                 And all the oxen for the sacrifice of the peace offerings were twenty and four bullocks, the rams sixty, the he goats sixty, the lambs of the first year sixty. This was the dedication of the altar, after that it was anointed.
3940                                                                                                                                                                                                                                                                                             And when Moses was gone into the tabernacle of the congregation to speak with him, then he heard the voice of one speaking unto him from off the mercy seat that was upon the ark of testimony, from between the two cherubim: and he spake unto him.
3941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3942                                                                                                                                                                                                                                                                                                                                                                                                                   Speak unto Aaron and say unto him, When thou lightest the lamps, the seven lamps shall give light over against the candlestick.
3943                                                                                                                                                                                                                                                                                                                                                                                                                                         And Aaron did so; he lighted the lamps thereof over against the candlestick, as the LORD commanded Moses.
3944                                                                                                                                                                                                                                                                                                                                   And this work of the candlestick was of beaten gold, unto the shaft thereof, unto the flowers thereof, was beaten work: according unto the pattern which the LORD had showed Moses, so he made the candlestick.
3945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3946                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Take the Levites from among the children of Israel, and cleanse them.
3947                                                                                                                                                                                                                                                                                                                                                      And thus shalt thou do unto them, to cleanse them: Sprinkle water of purifying upon them, and let them shave all their flesh, and let them wash their clothes, and so make themselves clean.
3948                                                                                                                                                                                                                                                                                                                                                                                        Then let them take a young bullock with his meat offering, even fine flour mingled with oil, and another young bullock shalt thou take for a sin offering.
3949                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt bring the Levites before the tabernacle of the congregation: and thou shalt gather the whole assembly of the children of Israel together:
3950                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt bring the Levites before the LORD: and the children of Israel shall put their hands upon the Levites:
3951                                                                                                                                                                                                                                                                                                                                                                                                       And Aaron shall offer the Levites before the LORD for an offering of the children of Israel, that they may execute the service of the LORD.
3952                                                                                                                                                                                                                                                                                                                                   And the Levites shall lay their hands upon the heads of the bullocks: and thou shalt offer the one for a sin offering, and the other for a burnt offering, unto the LORD, to make an atonement for the Levites.
3953                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt set the Levites before Aaron, and before his sons, and offer them for an offering unto the LORD.
3954                                                                                                                                                                                                                                                                                                                                                                                                                                            Thus shalt thou separate the Levites from among the children of Israel: and the Levites shall be mine.
3955                                                                                                                                                                                                                                                                                                                                                                                      And after that shall the Levites go in to do the service of the tabernacle of the congregation: and thou shalt cleanse them, and offer them for an offering.
3956                                                                                                                                                                                                                                                                                                                                                  For they are wholly given unto me from among the children of Israel; instead of such as open every womb, even instead of the firstborn of all the children of Israel, have I taken them unto me.
3957                                                                                                                                                                                                                                                                                                                                                                          For all the firstborn of the children of Israel are mine, both man and beast: on the day that I smote every firstborn in the land of Egypt I sanctified them for myself.
3958                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I have taken the Levites for all the firstborn of the children of Israel.
3959                                                                                                                                                                                        And I have given the Levites as a gift to Aaron and to his sons from among the children of Israel, to do the service of the children of Israel in the tabernacle of the congregation, and to make an atonement for the children of Israel: that there be no plague among the children of Israel, when the children of Israel come nigh unto the sanctuary.
3960                                                                                                                                                                                                                                                                                                                                    And Moses, and Aaron, and all the congregation of the children of Israel, did to the Levites according unto all that the LORD commanded Moses concerning the Levites, so did the children of Israel unto them.
3961                                                                                                                                                                                                                                                                                                                                                                        And the Levites were purified, and they washed their clothes; and Aaron offered them as an offering before the LORD; and Aaron made an atonement for them to cleanse them.
3962                                                                                                                                                                                                                                                                                                                                    And after that went the Levites in to do their service in the tabernacle of the congregation before Aaron, and before his sons: as the LORD had commanded Moses concerning the Levites, so did they unto them.
3963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3964                                                                                                                                                                                                                                                                                                                                                                            This is it that belongeth unto the Levites: from twenty and five years old and upward they shall go in to wait upon the service of the tabernacle of the congregation:
3965                                                                                                                                                                                                                                                                                                                                                                                                                                       And from the age of fifty years they shall cease waiting upon the service thereof, and shall serve no more:
3966                                                                                                                                                                                                                                                                                                                                                             But shall minister with their brethren in the tabernacle of the congregation, to keep the charge, and shall do no service. Thus shalt thou do unto the Levites touching their charge.
3967                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses in the wilderness of Sinai, in the first month of the second year after they were come out of the land of Egypt, saying,
3968                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let the children of Israel also keep the passover at his appointed season.
3969                                                                                                                                                                                                                                                                                                                                                          In the fourteenth day of this month, at even, ye shall keep it in his appointed season: according to all the rites of it, and according to all the ceremonies thereof, shall ye keep it.
3970                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses spake unto the children of Israel, that they should keep the passover.
3971                                                                                                                                                                                                                                                                                                                                                            And they kept the passover on the fourteenth day of the first month at even in the wilderness of Sinai: according to all that the LORD commanded Moses, so did the children of Israel.
3972                                                                                                                                                                                                                                                                                                                                                               And there were certain men, who were defiled by the dead body of a man, that they could not keep the passover on that day: and they came before Moses and before Aaron on that day:
3973                                                                                                                                                                                                                                                                                                                                            And those men said unto him, We are defiled by the dead body of a man: wherefore are we kept back, that we may not offer an offering of the LORD in his appointed season among the children of Israel?
3974                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses said unto them, Stand still, and I will hear what the LORD will command concerning you.
3975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3976                                                                                                                                                                                                                                                                                                                                           Speak unto the children of Israel, saying, If any man of you or of your posterity shall be unclean by reason of a dead body, or be in a journey afar off, yet he shall keep the passover unto the LORD.
3977                                                                                                                                                                                                                                                                                                                                                                                                                             The fourteenth day of the second month at even they shall keep it, and eat it with unleavened bread and bitter herbs.
3978                                                                                                                                                                                                                                                                                                                                                                                                       They shall leave none of it unto the morning, nor break any bone of it: according to all the ordinances of the passover they shall keep it.
3979                                                                                                                                                                                                                                                                                         But the man that is clean, and is not in a journey, and forbeareth to keep the passover, even the same soul shall be cut off from among his people: because he brought not the offering of the LORD in his appointed season, that man shall bear his sin.
3980                                                                                                                                                                                                                                                                  And if a stranger shall sojourn among you, and will keep the passover unto the LORD; according to the ordinance of the passover, and according to the manner thereof, so shall he do: ye shall have one ordinance, both for the stranger, and for him that was born in the land.
3981                                                                                                                                                                                                                                                                                                                             And on the day that the tabernacle was reared up the cloud covered the tabernacle, namely, the tent of the testimony: and at even there was upon the tabernacle as it were the appearance of fire, until the morning.
3982                                                                                                                                                                                                                                                                                                                                                                                                                                                                So it was alway: the cloud covered it by day, and the appearance of fire by night.
3983                                                                                                                                                                                                                                                                                                                                                  And when the cloud was taken up from the tabernacle, then after that the children of Israel journeyed: and in the place where the cloud abode, there the children of Israel pitched their tents.
3984                                                                                                                                                                                                                                                                                                                                                      At the commandment of the LORD the children of Israel journeyed, and at the commandment of the LORD they pitched: as long as the cloud abode upon the tabernacle they rested in their tents.
3985                                                                                                                                                                                                                                                                                                                                                                                                        And when the cloud tarried long upon the tabernacle many days, then the children of Israel kept the charge of the LORD, and journeyed not.
3986                                                                                                                                                                                                                                                                                                                                                And so it was, when the cloud was a few days upon the tabernacle; according to the commandment of the LORD they abode in their tents, and according to the commandment of the LORD they journeyed.
3987                                                                                                                                                                                                                                                                                                                               And so it was, when the cloud abode from even unto the morning, and that the cloud was taken up in the morning, then they journeyed: whether it was by day or by night that the cloud was taken up, they journeyed.
3988                                                                                                                                                                                                                                                                                                                      Or whether it were two days, or a month, or a year, that the cloud tarried upon the tabernacle, remaining thereon, the children of Israel abode in their tents, and journeyed not: but when it was taken up, they journeyed.
3989                                                                                                                                                                                                                                                                                                                                                At the commandment of the LORD they rested in the tents, and at the commandment of the LORD they journeyed: they kept the charge of the LORD, at the commandment of the LORD by the hand of Moses.
3990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
3991                                                                                                                                                                                                                                                                                                                                                                          Make thee two trumpets of silver; of a whole piece shalt thou make them: that thou mayest use them for the calling of the assembly, and for the journeying of the camps.
3992                                                                                                                                                                                                                                                                                                                                                                                                         And when they shall blow with them, all the assembly shall assemble themselves to thee at the door of the tabernacle of the congregation.
3993                                                                                                                                                                                                                                                                                                                                                                                                           And if they blow but with one trumpet, then the princes, which are heads of the thousands of Israel, shall gather themselves unto thee.
3994                                                                                                                                                                                                                                                                                                                                                                                                                                                                When ye blow an alarm, then the camps that lie on the east parts shall go forward.
3995                                                                                                                                                                                                                                                                                                                                                                                           When ye blow an alarm the second time, then the camps that lie on the south side shall take their journey: they shall blow an alarm for their journeys.
3996                                                                                                                                                                                                                                                                                                                                                                                                                                             But when the congregation is to be gathered together, ye shall blow, but ye shall not sound an alarm.
3997                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Aaron, the priests, shall blow with the trumpets; and they shall be to you for an ordinance for ever throughout your generations.
3998                                                                                                                                                                                                                                                                                                                              And if ye go to war in your land against the enemy that oppresseth you, then ye shall blow an alarm with the trumpets; and ye shall be remembered before the LORD your God, and ye shall be saved from your enemies.
3999                                                                                                                                                                                                                                                      Also in the day of your gladness, and in your solemn days, and in the beginnings of your months, ye shall blow with the trumpets over your burnt offerings, and over the sacrifices of your peace offerings; that they may be to you for a memorial before your God: I am the LORD your God.
4000                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass on the twentieth day of the second month, in the second year, that the cloud was taken up from off the tabernacle of the testimony.
4001                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Israel took their journeys out of the wilderness of Sinai; and the cloud rested in the wilderness of Paran.
4002                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they first took their journey according to the commandment of the LORD by the hand of Moses.
4003                                                                                                                                                                                                                                                                                                                                                                                          In the first place went the standard of the camp of the children of Judah according to their armies: and over his host was Nahshon the son of Amminadab.
4004                                                                                                                                                                                                                                                                                                                                                                                                                                                         And over the host of the tribe of the children of Issachar was Nethaneel the son of Zuar.
4005                                                                                                                                                                                                                                                                                                                                                                                                                                                             And over the host of the tribe of the children of Zebulun was Eliab the son of Helon.
4006                                                                                                                                                                                                                                                                                                                                                                                                                            And the tabernacle was taken down; and the sons of Gershon and the sons of Merari set forward, bearing the tabernacle.
4007                                                                                                                                                                                                                                                                                                                                                                                                                    And the standard of the camp of Reuben set forward according to their armies: and over his host was Elizur the son of Shedeur.
4008                                                                                                                                                                                                                                                                                                                                                                                                                                                    And over the host of the tribe of the children of Simeon was Shelumiel the son of Zurishaddai.
4009                                                                                                                                                                                                                                                                                                                                                                                                                                                              And over the host of the tribe of the children of Gad was Eliasaph the son of Deuel.
4010                                                                                                                                                                                                                                                                                                                                                                                                                                 And the Kohathites set forward, bearing the sanctuary: and the other did set up the tabernacle against they came.
4011                                                                                                                                                                                                                                                                                                                                                                                                 And the standard of the camp of the children of Ephraim set forward according to their armies: and over his host was Elishama the son of Ammihud.
4012                                                                                                                                                                                                                                                                                                                                                                                                                                                      And over the host of the tribe of the children of Manasseh was Gamaliel the son of Pedahzur.
4013                                                                                                                                                                                                                                                                                                                                                                                                                                                         And over the host of the tribe of the children of Benjamin was Abidan the son of Gideoni.
4014                                                                                                                                                                                                                                                                                                                                                            And the standard of the camp of the children of Dan set forward, which was the rearward of all the camps throughout their hosts: and over his host was Ahiezer the son of Ammishaddai.
4015                                                                                                                                                                                                                                                                                                                                                                                                                                                              And over the host of the tribe of the children of Asher was Pagiel the son of Ocran.
4016                                                                                                                                                                                                                                                                                                                                                                                                                                                             And over the host of the tribe of the children of Naphtali was Ahira the son of Enan.
4017                                                                                                                                                                                                                                                                                                                                                                                                                                             Thus were the journeyings of the children of Israel according to their armies, when they set forward.
4018                                                                                                                                                                                                                                                                                      And Moses said unto Hobab, the son of Raguel the Midianite, Moses' father in law, We are journeying unto the place of which the LORD said, I will give it you: come thou with us, and we will do thee good: for the LORD hath spoken good concerning Israel.
4019                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto him, I will not go; but I will depart to mine own land, and to my kindred.
4020                                                                                                                                                                                                                                                                                                                                                                                               And he said, Leave us not, I pray thee; forasmuch as thou knowest how we are to encamp in the wilderness, and thou mayest be to us instead of eyes.
4021                                                                                                                                                                                                                                                                                                                                                                                                               And it shall be, if thou go with us, yea, it shall be, that what goodness the LORD shall do unto us, the same will we do unto thee.
4022                                                                                                                                                                                                                                                                                                                                                    And they departed from the mount of the LORD three days' journey: and the ark of the covenant of the LORD went before them in the three days' journey, to search out a resting place for them.
4023                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the cloud of the LORD was upon them by day, when they went out of the camp.
4024                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when the ark set forward, that Moses said, Rise up, LORD, and let thine enemies be scattered; and let them that hate thee flee before thee.
4025                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when it rested, he said, Return, O LORD, unto the many thousands of Israel.
4026                                                                                                                                                                                                                                                                                                                              And when the people complained, it displeased the LORD: and the LORD heard it; and his anger was kindled; and the fire of the LORD burnt among them, and consumed them that were in the uttermost parts of the camp.
4027                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the people cried unto Moses; and when Moses prayed unto the LORD, the fire was quenched.
4028                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he called the name of the place Taberah: because the fire of the LORD burnt among them.
4029                                                                                                                                                                                                                                                                                                                                                                                                 And the mixed multitude that was among them fell a lusting: and the children of Israel also wept again, and said, Who shall give us flesh to eat?
4030                                                                                                                                                                                                                                                                                                                                                                                                             We remember the fish, which we did eat in Egypt freely; the cucumbers, and the melons, and the leeks, and the onions, and the garlic:
4031                                                                                                                                                                                                                                                                                                                                                                                                                                                      But now our soul is dried away: there is nothing at all, beside this manna, before our eyes.
4032                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the manna was as coriander seed, and the color thereof as the color of bdellium.
4033                                                                                                                                                                                                                                                                                                                                                        And the people went about, and gathered it, and ground it in mills, or beat it in a mortar, and baked it in pans, and made cakes of it: and the taste of it was as the taste of fresh oil.
4034                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when the dew fell upon the camp in the night, the manna fell upon it.
4035                                                                                                                                                                                                                                                                                                                                                                          Then Moses heard the people weep throughout their families, every man in the door of his tent: and the anger of the LORD was kindled greatly; Moses also was displeased.
4036                                                                                                                                                                                                                                                                                                                                                               And Moses said unto the LORD, Wherefore hast thou afflicted thy servant? and wherefore have I not found favor in thy sight, that thou layest the burden of all this people upon me?
4037                                                                                                                                                                                                                                                                                                                             Have I conceived all this people? have I begotten them, that thou shouldest say unto me, Carry them in thy bosom, as a nursing father beareth the sucking child, unto the land which thou swarest unto their fathers?
4038                                                                                                                                                                                                                                                                                                                                                                                                                           Whence should I have flesh to give unto all this people? for they weep unto me, saying, Give us flesh, that we may eat.
4039                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I am not able to bear all this people alone, because it is too heavy for me.
4040                                                                                                                                                                                                                                                                                                                                                                                                         And if thou deal thus with me, kill me, I pray thee, out of hand, if I have found favor in thy sight; and let me not see my wretchedness.
4041                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, Gather unto me seventy men of the elders of Israel, whom thou knowest to be the elders of the people, and officers over them; and bring them unto the tabernacle of the congregation, that they may stand there with thee.
4042                                                                                                                                                                                                                                                                                                                          And I will come down and talk with thee there: and I will take of the spirit which is upon thee, and will put it upon them; and they shall bear the burden of the people with thee, that thou bear it not thyself alone.
4043                                                                                                                                                                                                                                                                        And say thou unto the people, Sanctify yourselves against to morrow, and ye shall eat flesh: for ye have wept in the ears of the LORD, saying, Who shall give us flesh to eat? for it was well with us in Egypt: therefore the LORD will give you flesh, and ye shall eat.
4044                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ye shall not eat one day, nor two days, nor five days, neither ten days, nor twenty days;
4045                                                                                                                                                                                                                                                                                                                            But even a whole month, until it come out at your nostrils, and it be loathsome unto you: because that ye have despised the LORD which is among you, and have wept before him, saying, Why came we forth out of Egypt?
4046                                                                                                                                                                                                                                                                                                                                                                                       And Moses said, The people, among whom I am, are six hundred thousand footmen; and thou hast said, I will give them flesh, that they may eat a whole month.
4047                                                                                                                                                                                                                                                                                                                                                                                               Shall the flocks and the herds be slain for them, to suffice them? or shall all the fish of the sea be gathered together for them, to suffice them?
4048                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto Moses, Is the LORD's hand waxed short? thou shalt see now whether my word shall come to pass unto thee or not.
4049                                                                                                                                                                                                                                                                                                                                                                                 And Moses went out, and told the people the words of the LORD, and gathered the seventy men of the elders of the people, and set them round about the tabernacle.
4050                                                                                                                                                                                                                                                                                                            And the LORD came down in a cloud, and spake unto him, and took of the spirit that was upon him, and gave it unto the seventy elders: and it came to pass, that, when the spirit rested upon them, they prophesied, and did not cease.
4051                                                                                                                                                                                                                                                                                   But there remained two of the men in the camp, the name of the one was Eldad, and the name of the other Medad: and the spirit rested upon them; and they were of them that were written, but went not out unto the tabernacle: and they prophesied in the camp.
4052                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there ran a young man, and told Moses, and said, Eldad and Medad do prophesy in the camp.
4053                                                                                                                                                                                                                                                                                                                                                                                                                             And Joshua the son of Nun, the servant of Moses, one of his young men, answered and said, My lord Moses, forbid them.
4054                                                                                                                                                                                                                                                                                                                                                                                          And Moses said unto him, Enviest thou for my sake? would God that all the LORD's people were prophets, and that the LORD would put his spirit upon them!
4055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses gat him into the camp, he and the elders of Israel.
4056                                                                                                                                                                                                                                                            And there went forth a wind from the LORD, and brought quails from the sea, and let them fall by the camp, as it were a day's journey on this side, and as it were a day's journey on the other side, round about the camp, and as it were two cubits high upon the face of the earth.
4057                                                                                                                                                                                                                                                                                                                    And the people stood up all that day, and all that night, and all the next day, and they gathered the quails: he that gathered least gathered ten homers: and they spread them all abroad for themselves round about the camp.
4058                                                                                                                                                                                                                                                                                                                                                                 And while the flesh was yet between their teeth, ere it was chewed, the wrath of the LORD was kindled against the people, and the LORD smote the people with a very great plague.
4059                                                                                                                                                                                                                                                                                                                                                                                                                                          And he called the name of that place Kibrothhattaavah: because there they buried the people that lusted.
4060                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the people journeyed from Kibrothhattaavah unto Hazeroth; and abode at Hazeroth.
4061                                                                                                                                                                                                                                                                                                                                                                                                               And Miriam and Aaron spake against Moses because of the Ethiopian woman whom he had married: for he had married an Ethiopian woman.
4062                                                                                                                                                                                                                                                                                                                                                                                                                                   And they said, Hath the LORD indeed spoken only by Moses? hath he not spoken also by us? And the LORD heard it.
4063                                                                                                                                                                                                                                                                                                                                                                                                                                                       (Now the man Moses was very meek, above all the men which were upon the face of the earth.)
4064                                                                                                                                                                                                                                                                                                                                                                                      And the LORD spake suddenly unto Moses, and unto Aaron, and unto Miriam, Come out ye three unto the tabernacle of the congregation. And they three came out.
4065                                                                                                                                                                                                                                                                                                                                                                                                And the LORD came down in the pillar of the cloud, and stood in the door of the tabernacle, and called Aaron and Miriam: and they both came forth.
4066                                                                                                                                                                                                                                                                                                                                                                                      And he said, Hear now my words: If there be a prophet among you, I the LORD will make myself known unto him in a vision, and will speak unto him in a dream.
4067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My servant Moses is not so, who is faithful in all mine house.
4068                                                                                                                                                                                                                                                                                                                                             With him will I speak mouth to mouth, even apparently, and not in dark speeches; and the similitude of the LORD shall he behold: wherefore then were ye not afraid to speak against my servant Moses?
4069                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the anger of the LORD was kindled against them; and he departed.
4070                                                                                                                                                                                                                                                                                                                                                                                    And the cloud departed from off the tabernacle; and, behold, Miriam became leprous, white as snow: and Aaron looked upon Miriam, and, behold, she was leprous.
4071                                                                                                                                                                                                                                                                                                                                                                                                    And Aaron said unto Moses, Alas, my lord, I beseech thee, lay not the sin upon us, wherein we have done foolishly, and wherein we have sinned.
4072                                                                                                                                                                                                                                                                                                                                                                                                                                           Let her not be as one dead, of whom the flesh is half consumed when he cometh out of his mother's womb.
4073                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses cried unto the LORD, saying, Heal her now, O God, I beseech thee.
4074                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, If her father had but spit in her face, should she not be ashamed seven days? let her be shut out from the camp seven days, and after that let her be received in again.
4075                                                                                                                                                                                                                                                                                                                                                                                                                                  And Miriam was shut out from the camp seven days: and the people journeyed not till Miriam was brought in again.
4076                                                                                                                                                                                                                                                                                                                                                                                                                                                           And afterward the people removed from Hazeroth, and pitched in the wilderness of Paran.
4077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4078                                                                                                                                                                                                                                                                                                                                                              Send thou men, that they may search the land of Canaan, which I give unto the children of Israel: of every tribe of their fathers shall ye send a man, every one a ruler among them.
4079                                                                                                                                                                                                                                                                                                                                                                                                              And Moses by the commandment of the LORD sent them from the wilderness of Paran: all those men were heads of the children of Israel.
4080                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And these were their names: of the tribe of Reuben, Shammua the son of Zaccur.
4081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of the tribe of Simeon, Shaphat the son of Hori.
4082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of the tribe of Judah, Caleb the son of Jephunneh.
4083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the tribe of Issachar, Igal the son of Joseph.
4084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of the tribe of Ephraim, Oshea the son of Nun.
4085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the tribe of Benjamin, Palti the son of Raphu.
4086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the tribe of Zebulun, Gaddiel the son of Sodi.
4087                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of the tribe of Joseph, namely, of the tribe of Manasseh, Gaddi the son of Susi.
4088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Of the tribe of Dan, Ammiel the son of Gemalli.
4089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the tribe of Asher, Sethur the son of Michael.
4090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of the tribe of Naphtali, Nahbi the son of Vophsi.
4091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of the tribe of Gad, Geuel the son of Machi.
4092                                                                                                                                                                                                                                                                                                                                                                                                                              These are the names of the men which Moses sent to spy out the land. And Moses called Oshea the son of Nun Jehoshua.
4093                                                                                                                                                                                                                                                                                                                                                                                                                And Moses sent them to spy out the land of Canaan, and said unto them, Get you up this way southward, and go up into the mountain:
4094                                                                                                                                                                                                                                                                                                                                                                                                                                  And see the land, what it is, and the people that dwelleth therein, whether they be strong or weak, few or many;
4095                                                                                                                                                                                                                                                                                                                                                                                             And what the land is that they dwell in, whether it be good or bad; and what cities they be that they dwell in, whether in tents, or in strong holds;
4096                                                                                                                                                                                                                                                                                                                                        And what the land is, whether it be fat or lean, whether there be wood therein, or not. And be ye of good courage, and bring of the fruit of the land. Now the time was the time of the first ripe grapes.
4097                                                                                                                                                                                                                                                                                                                                                                                                                                              So they went up, and searched the land from the wilderness of Zin unto Rehob, as men come to Hamath.
4098                                                                                                                                                                                                                                                                                                                                                                     And they ascended by the south, and came unto Hebron; where Ahiman, Sheshai, and Talmai, the children of Anak, were. (Now Hebron was built seven years before Zoan in Egypt.)
4099                                                                                                                                                                                                                                                                                                                                           And they came unto the brook of Eshcol, and cut down from thence a branch with one cluster of grapes, and they bare it between two upon a staff; and they brought of the pomegranates, and of the figs.
4100                                                                                                                                                                                                                                                                                                                                                                                                                        The place was called the brook Eshcol, because of the cluster of grapes which the children of Israel cut down from thence.
4101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they returned from searching of the land after forty days.
4102                                                                                                                                                                                                                                                                                             And they went and came to Moses, and to Aaron, and to all the congregation of the children of Israel, unto the wilderness of Paran, to Kadesh; and brought back word unto them, and unto all the congregation, and showed them the fruit of the land.
4103                                                                                                                                                                                                                                                                                                                                                                                               And they told him, and said, We came unto the land whither thou sentest us, and surely it floweth with milk and honey; and this is the fruit of it.
4104                                                                                                                                                                                                                                                                                                                                                                                              Nevertheless the people be strong that dwell in the land, and the cities are walled, and very great: and moreover we saw the children of Anak there.
4105                                                                                                                                                                                                                                                                                                                                                    The Amalekites dwell in the land of the south: and the Hittites, and the Jebusites, and the Amorites, dwell in the mountains: and the Canaanites dwell by the sea, and by the coast of Jordan.
4106                                                                                                                                                                                                                                                                                                                                                                                                                   And Caleb stilled the people before Moses, and said, Let us go up at once, and possess it; for we are well able to overcome it.
4107                                                                                                                                                                                                                                                                                                                                                                                                                                But the men that went up with him said, We be not able to go up against the people; for they are stronger than we.
4108                                                                                                                                                                                                                                                                 And they brought up an evil report of the land which they had searched unto the children of Israel, saying, The land, through which we have gone to search it, is a land that eateth up the inhabitants thereof; and all the people that we saw in it are men of a great stature.
4109                                                                                                                                                                                                                                                                                                                                                                                             And there we saw the giants, the sons of Anak, which come of the giants: and we were in our own sight as grasshoppers, and so we were in their sight.
4110                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the congregation lifted up their voice, and cried; and the people wept that night.
4111                                                                                                                                                                                                                                                                                                                                 And all the children of Israel murmured against Moses and against Aaron: and the whole congregation said unto them, Would God that we had died in the land of Egypt! or would God we had died in this wilderness!
4112                                                                                                                                                                                                                                                                                                                                                                    And wherefore hath the LORD brought us unto this land, to fall by the sword, that our wives and our children should be a prey? were it not better for us to return into Egypt?
4113                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they said one to another, Let us make a captain, and let us return into Egypt.
4114                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Moses and Aaron fell on their faces before all the assembly of the congregation of the children of Israel.
4115                                                                                                                                                                                                                                                                                                                                                                                                                         And Joshua the son of Nun, and Caleb the son of Jephunneh, which were of them that searched the land, rent their clothes:
4116                                                                                                                                                                                                                                                                                                                                                                                                 And they spake unto all the company of the children of Israel, saying, The land, which we passed through to search it, is an exceeding good land.
4117                                                                                                                                                                                                                                                                                                                                                                                                                        If the LORD delight in us, then he will bring us into this land, and give it us; a land which floweth with milk and honey.
4118                                                                                                                                                                                                                                                                                                                                                               Only rebel not ye against the LORD, neither fear ye the people of the land; for they are bread for us: their defense is departed from them, and the LORD is with us: fear them not.
4119                                                                                                                                                                                                                                                                                                                                                                                 But all the congregation bade stone them with stones. And the glory of the LORD appeared in the tabernacle of the congregation before all the children of Israel.
4120                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, How long will this people provoke me? and how long will it be ere they believe me, for all the signs which I have showed among them?
4121                                                                                                                                                                                                                                                                                                                                                                                                                        I will smite them with the pestilence, and disinherit them, and will make of thee a greater nation and mightier than they.
4122                                                                                                                                                                                                                                                                                                                                                                                                                And Moses said unto the LORD, Then the Egyptians shall hear it, (for thou broughtest up this people in thy might from among them;)
4123                                                                                                                                                                                                                                              And they will tell it to the inhabitants of this land: for they have heard that thou LORD art among this people, that thou LORD art seen face to face, and that thy cloud standeth over them, and that thou goest before them, by day time in a pillar of a cloud, and in a pillar of fire by night.
4124                                                                                                                                                                                                                                                                                                                                                                                                                         Now if thou shalt kill all this people as one man, then the nations which have heard the fame of thee will speak, saying,
4125                                                                                                                                                                                                                                                                                                                                                                                                        Because the LORD was not able to bring this people into the land which he sware unto them, therefore he hath slain them in the wilderness.
4126                                                                                                                                                                                                                                                                                                                                                                                                                                                And now, I beseech thee, let the power of my Lord be great, according as thou hast spoken, saying,
4127                                                                                                                                                                                                                                                                                                                           The LORD is long-suffering, and of great mercy, forgiving iniquity and transgression, and by no means clearing the guilty, visiting the iniquity of the fathers upon the children unto the third and fourth generation.
4128                                                                                                                                                                                                                                                                                                                                                                                  Pardon, I beseech thee, the iniquity of this people according unto the greatness of thy mercy, and as thou hast forgiven this people, from Egypt even until now.
4129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said, I have pardoned according to thy word:
4130                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as truly as I live, all the earth shall be filled with the glory of the LORD.
4131                                                                                                                                                                                                                                                                                                                                                         Because all those men which have seen my glory, and my miracles, which I did in Egypt and in the wilderness, and have tempted me now these ten times, and have not hearkened to my voice;
4132                                                                                                                                                                                                                                                                                                                                                                                                                           Surely they shall not see the land which I sware unto their fathers, neither shall any of them that provoked me see it:
4133                                                                                                                                                                                                                                                                                                                                                                        But my servant Caleb, because he had another spirit with him, and hath followed me fully, him will I bring into the land whereinto he went; and his seed shall possess it.
4134                                                                                                                                                                                                                                                                                                                                                                                                        (Now the Amalekites and the Canaanites dwelt in the valley.) Tomorrow turn you, and get you into the wilderness by the way of the Red sea.
4135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
4136                                                                                                                                                                                                                                                                                                                                                                                  How long shall I bear with this evil congregation, which murmur against me? I have heard the murmurings of the children of Israel, which they murmur against me.
4137                                                                                                                                                                                                                                                                                                                                                                                                                                           Say unto them, As truly as I live, saith the LORD, as ye have spoken in mine ears, so will I do to you:
4138                                                                                                                                                                                                                                                                                                                                                                 Your carcasses shall fall in this wilderness; and all that were numbered of you, according to your whole number, from twenty years old and upward which have murmured against me.
4139                                                                                                                                                                                                                                                                                                                                                                                        Doubtless ye shall not come into the land, concerning which I sware to make you dwell therein, save Caleb the son of Jephunneh, and Joshua the son of Nun.
4140                                                                                                                                                                                                                                                                                                                                                                                                                  But your little ones, which ye said should be a prey, them will I bring in, and they shall know the land which ye have despised.
4141                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But as for you, your carcasses, they shall fall in this wilderness.
4142                                                                                                                                                                                                                                                                                                                                                                                                          And your children shall wander in the wilderness forty years, and bear your whoredoms, until your carcasses be wasted in the wilderness.
4143                                                                                                                                                                                                                                                                                                                                                        After the number of the days in which ye searched the land, even forty days, each day for a year, shall ye bear your iniquities, even forty years, and ye shall know my breach of promise.
4144                                                                                                                                                                                                                                                                                                                                                            I the LORD have said, I will surely do it unto all this evil congregation, that are gathered together against me: in this wilderness they shall be consumed, and there they shall die.
4145                                                                                                                                                                                                                                                                                                                                                                                      And the men, which Moses sent to search the land, who returned, and made all the congregation to murmur against him, by bringing up a slander upon the land,
4146                                                                                                                                                                                                                                                                                                                                                                                                                                               Even those men that did bring up the evil report upon the land, died by the plague before the LORD.
4147                                                                                                                                                                                                                                                                                                                                                                                                                       But Joshua the son of Nun, and Caleb the son of Jephunneh, which were of the men that went to search the land, lived still.
4148                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses told these sayings unto all the children of Israel: and the people mourned greatly.
4149                                                                                                                                                                                                                                                                                                                                                      And they rose up early in the morning, and gat them up into the top of the mountain, saying, Lo, we be here, and will go up unto the place which the LORD hath promised: for we have sinned.
4150                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses said, Wherefore now do ye transgress the commandment of the LORD? but it shall not prosper.
4151                                                                                                                                                                                                                                                                                                                                                                                                                                                             Go not up, for the LORD is not among you; that ye be not smitten before your enemies.
4152                                                                                                                                                                                                                                                                                                                                                                    For the Amalekites and the Canaanites are there before you, and ye shall fall by the sword: because ye are turned away from the LORD, therefore the LORD will not be with you.
4153                                                                                                                                                                                                                                                                                                                                                                                                          But they presumed to go up unto the hill top: nevertheless the ark of the covenant of the LORD, and Moses, departed not out of the camp.
4154                                                                                                                                                                                                                                                                                                                                                                                                               Then the Amalekites came down, and the Canaanites which dwelt in that hill, and smote them, and discomfited them, even unto Hormah.
4155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4156                                                                                                                                                                                                                                                                                                                                                                                                                   Speak unto the children of Israel, and say unto them, When ye be come into the land of your habitations, which I give unto you,
4157                                                                                                                                                                                                                                                                                                                     And will make an offering by fire unto the LORD, a burnt offering, or a sacrifice in performing a vow, or in a freewill offering, or in your solemn feasts, to make a sweet savor unto the LORD, of the herd or of the flock:
4158                                                                                                                                                                                                                                                                                                                                                                                              Then shall he that offereth his offering unto the LORD bring a meat offering of a tenth deal of flour mingled with the fourth part of an hin of oil.
4159                                                                                                                                                                                                                                                                                                                                                                                                                 And the fourth part of an hin of wine for a drink offering shalt thou prepare with the burnt offering or sacrifice, for one lamb.
4160                                                                                                                                                                                                                                                                                                                                                                                                                       Or for a ram, thou shalt prepare for a meat offering two tenth deals of flour mingled with the third part of an hin of oil.
4161                                                                                                                                                                                                                                                                                                                                                                                                                                      And for a drink offering thou shalt offer the third part of an hin of wine, for a sweet savor unto the LORD.
4162                                                                                                                                                                                                                                                                                                                                                                                                                 And when thou preparest a bullock for a burnt offering, or for a sacrifice in performing a vow, or peace offerings unto the LORD:
4163                                                                                                                                                                                                                                                                                                                                                                                                                                 Then shall he bring with a bullock a meat offering of three tenth deals of flour mingled with half an hin of oil.
4164                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt bring for a drink offering half an hin of wine, for an offering made by fire, of a sweet savor unto the LORD.
4165                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thus shall it be done for one bullock, or for one ram, or for a lamb, or a kid.
4166                                                                                                                                                                                                                                                                                                                                                                                                                                             According to the number that ye shall prepare, so shall ye do to every one according to their number.
4167                                                                                                                                                                                                                                                                                                                                                                                                   All that are born of the country shall do these things after this manner, in offering an offering made by fire, of a sweet savor unto the LORD.
4168                                                                                                                                                                                                                                                                                                                                                             And if a stranger sojourn with you, or whosoever be among you in your generations, and will offer an offering made by fire, of a sweet savor unto the LORD; as ye do, so he shall do.
4169                                                                                                                                                                                                                                                                                                                                      One ordinance shall be both for you of the congregation, and also for the stranger that sojourneth with you, an ordinance for ever in your generations: as ye are, so shall the stranger be before the LORD.
4170                                                                                                                                                                                                                                                                                                                                                                                                                                                           One law and one manner shall be for you, and for the stranger that sojourneth with you.
4171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4172                                                                                                                                                                                                                                                                                                                                                                                                                                             Speak unto the children of Israel, and say unto them, When ye come into the land whither I bring you,
4173                                                                                                                                                                                                                                                                                                                                                                                                                                  Then it shall be, that, when ye eat of the bread of the land, ye shall offer up an heave offering unto the LORD.
4174                                                                                                                                                                                                                                                                                                                                                                                               Ye shall offer up a cake of the first of your dough for an heave offering: as ye do the heave offering of the threshingfloor, so shall ye heave it.
4175                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the first of your dough ye shall give unto the LORD an heave offering in your generations.
4176                                                                                                                                                                                                                                                                                                                                                                                                                                             And if ye have erred, and not observed all these commandments, which the LORD hath spoken unto Moses,
4177                                                                                                                                                                                                                                                                                                                                                                                              Even all that the LORD hath commanded you by the hand of Moses, from the day that the LORD commanded Moses, and henceforward among your generations;
4178                                                                                                                                                                                                              Then it shall be, if ought be committed by ignorance without the knowledge of the congregation, that all the congregation shall offer one young bullock for a burnt offering, for a sweet savor unto the LORD, with his meat offering, and his drink offering, according to the manner, and one kid of the goats for a sin offering.
4179                                                                                                                                                                                                                                                          And the priest shall make an atonement for all the congregation of the children of Israel, and it shall be forgiven them; for it is ignorance: and they shall bring their offering, a sacrifice made by fire unto the LORD, and their sin offering before the LORD, for their ignorance:
4180                                                                                                                                                                                                                                                                                                                                                                                    And it shall be forgiven all the congregation of the children of Israel, and the stranger that sojourneth among them; seeing all the people were in ignorance.
4181                                                                                                                                                                                                                                                                                                                                                                                                                                       And if any soul sin through ignorance, then he shall bring a she goat of the first year for a sin offering.
4182                                                                                                                                                                                                                                                                                                                                                            And the priest shall make an atonement for the soul that sinneth ignorantly, when he sinneth by ignorance before the LORD, to make an atonement for him; and it shall be forgiven him.
4183                                                                                                                                                                                                                                                                                                                                                                            Ye shall have one law for him that sinneth through ignorance, both for him that is born among the children of Israel, and for the stranger that sojourneth among them.
4184                                                                                                                                                                                                                                                                                                                                                                 But the soul that doeth ought presumptuously, whether he be born in the land, or a stranger, the same reproacheth the LORD; and that soul shall be cut off from among his people.
4185                                                                                                                                                                                                                                                                                                                                                                                               Because he hath despised the word of the LORD, and hath broken his commandment, that soul shall utterly be cut off; his iniquity shall be upon him.
4186                                                                                                                                                                                                                                                                                                                                                                                                                              And while the children of Israel were in the wilderness, they found a man that gathered sticks upon the sabbath day.
4187                                                                                                                                                                                                                                                                                                                                                                                                                                         And they that found him gathering sticks brought him unto Moses and Aaron, and unto all the congregation.
4188                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they put him in ward, because it was not declared what should be done to him.
4189                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, The man shall be surely put to death: all the congregation shall stone him with stones without the camp.
4190                                                                                                                                                                                                                                                                                                                                                                                                                      And all the congregation brought him without the camp, and stoned him with stones, and he died; as the LORD commanded Moses.
4191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4192                                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, and bid them that they make them fringes in the borders of their garments throughout their generations, and that they put upon the fringe of the borders a ribband of blue:
4193                                                                                                                                                                                                                                                                                                                     And it shall be unto you for a fringe, that ye may look upon it, and remember all the commandments of the LORD, and do them; and that ye seek not after your own heart and your own eyes, after which ye use to go a whoring:
4194                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That ye may remember, and do all my commandments, and be holy unto your God.
4195                                                                                                                                                                                                                                                                                                                                                                                                                                       I am the LORD your God, which brought you out of the land of Egypt, to be your God: I am the LORD your God.
4196                                                                                                                                                                                                                                                                                                                                                                                   Now Korah, the son of Izhar, the son of Kohath, the son of Levi, and Dathan and Abiram, the sons of Eliab, and On, the son of Peleth, sons of Reuben, took men:
4197                                                                                                                                                                                                                                                                                                                                                                                  And they rose up before Moses, with certain of the children of Israel, two hundred and fifty princes of the assembly, famous in the congregation, men of renown:
4198                                                                                                                                                                                                                                                               And they gathered themselves together against Moses and against Aaron, and said unto them, Ye take too much upon you, seeing all the congregation are holy, every one of them, and the LORD is among them: wherefore then lift ye up yourselves above the congregation of the LORD?
4199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when Moses heard it, he fell upon his face:
4200                                                                                                                                                                                                                                                                                                             And he spake unto Korah and unto all his company, saying, Even to morrow the LORD will show who are his, and who is holy; and will cause him to come near unto him: even him whom he hath chosen will he cause to come near unto him.
4201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This do; Take you censers, Korah, and all his company;
4202                                                                                                                                                                                                                                                                                                                                                    And put fire therein, and put incense in them before the LORD to morrow: and it shall be that the man whom the LORD doth choose, he shall be holy: ye take too much upon you, ye sons of Levi.
4203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said unto Korah, Hear, I pray you, ye sons of Levi:
4204                                                                                                                                                                                                                                                                                       Seemeth it but a small thing unto you, that the God of Israel hath separated you from the congregation of Israel, to bring you near to himself to do the service of the tabernacle of the LORD, and to stand before the congregation to minister unto them?
4205                                                                                                                                                                                                                                                                                                                                                                                                                           And he hath brought thee near to him, and all thy brethren the sons of Levi with thee: and seek ye the priesthood also?
4206                                                                                                                                                                                                                                                                                                                                                                                                              For which cause both thou and all thy company are gathered together against the LORD: and what is Aaron, that ye murmur against him?
4207                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses sent to call Dathan and Abiram, the sons of Eliab: which said, We will not come up:
4208                                                                                                                                                                                                                                                                                                                                                              Is it a small thing that thou hast brought us up out of a land that floweth with milk and honey, to kill us in the wilderness, except thou make thyself altogether a prince over us?
4209                                                                                                                                                                                                                                                                                                                                                    Moreover thou hast not brought us into a land that floweth with milk and honey, or given us inheritance of fields and vineyards: wilt thou put out the eyes of these men? we will not come up.
4210                                                                                                                                                                                                                                                                                                                                                                                           And Moses was very wroth, and said unto the LORD, Respect not thou their offering: I have not taken one ass from them, neither have I hurt one of them.
4211                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said unto Korah, Be thou and all thy company before the LORD, thou, and they, and Aaron, to morrow:
4212                                                                                                                                                                                                                                                                                                                                                           And take every man his censer, and put incense in them, and bring ye before the LORD every man his censer, two hundred and fifty censers; thou also, and Aaron, each of you his censer.
4213                                                                                                                                                                                                                                                                                                                                                                             And they took every man his censer, and put fire in them, and laid incense thereon, and stood in the door of the tabernacle of the congregation with Moses and Aaron.
4214                                                                                                                                                                                                                                                                                                                                                                           And Korah gathered all the congregation against them unto the door of the tabernacle of the congregation: and the glory of the LORD appeared unto all the congregation.
4215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
4216                                                                                                                                                                                                                                                                                                                                                                                                                                                            Separate yourselves from among this congregation, that I may consume them in a moment.
4217                                                                                                                                                                                                                                                                                                                                                                                        And they fell upon their faces, and said, O God, the God of the spirits of all flesh, shall one man sin, and wilt thou be wroth with all the congregation?
4218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4219                                                                                                                                                                                                                                                                                                                                                                                                                                           Speak unto the congregation, saying, Get you up from about the tabernacle of Korah, Dathan, and Abiram.
4220                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses rose up and went unto Dathan and Abiram; and the elders of Israel followed him.
4221                                                                                                                                                                                                                                                                                                                                                                           And he spake unto the congregation, saying, Depart, I pray you, from the tents of these wicked men, and touch nothing of theirs, lest ye be consumed in all their sins.
4222                                                                                                                                                                                                                                                                                                                                 So they gat up from the tabernacle of Korah, Dathan, and Abiram, on every side: and Dathan and Abiram came out, and stood in the door of their tents, and their wives, and their sons, and their little children.
4223                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses said, Hereby ye shall know that the LORD hath sent me to do all these works; for I have not done them of mine own mind.
4224                                                                                                                                                                                                                                                                                                                                                                                                              If these men die the common death of all men, or if they be visited after the visitation of all men; then the LORD hath not sent me.
4225                                                                                                                                                                                                                                                                                                                      But if the LORD make a new thing, and the earth open her mouth, and swallow them up, with all that appertain unto them, and they go down quick into the pit; then ye shall understand that these men have provoked the LORD.
4226                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, as he had made an end of speaking all these words, that the ground clave asunder that was under them:
4227                                                                                                                                                                                                                                                                                                                                                                                                        And the earth opened her mouth, and swallowed them up, and their houses, and all the men that appertained unto Korah, and all their goods.
4228                                                                                                                                                                                                                                                                                                                                                                                              They, and all that appertained to them, went down alive into the pit, and the earth closed upon them: and they perished from among the congregation.
4229                                                                                                                                                                                                                                                                                                                                                                                                                              And all Israel that were round about them fled at the cry of them: for they said, Lest the earth swallow us up also.
4230                                                                                                                                                                                                                                                                                                                                                                                                                                         And there came out a fire from the LORD, and consumed the two hundred and fifty men that offered incense.
4231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4232                                                                                                                                                                                                                                                                                                                                                                                          Speak unto Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter thou the fire yonder; for they are hallowed.
4233                                                                                                                                                                                                                                                                                                      The censers of these sinners against their own souls, let them make them broad plates for a covering of the altar: for they offered them before the LORD, therefore they are hallowed: and they shall be a sign unto the children of Israel.
4234                                                                                                                                                                                                                                                                                                                                                                                          And Eleazar the priest took the brazen censers, wherewith they that were burnt had offered; and they were made broad plates for a covering of the altar:
4235                                                                                                                                                                                                                                                                                                         To be a memorial unto the children of Israel, that no stranger, which is not of the seed of Aaron, come near to offer incense before the LORD; that he be not as Korah, and as his company: as the LORD said to him by the hand of Moses.
4236                                                                                                                                                                                                                                                                                                                                                                                         But on the morrow all the congregation of the children of Israel murmured against Moses and against Aaron, saying, Ye have killed the people of the LORD.
4237                                                                                                                                                                                                                                                                                                                       And it came to pass, when the congregation was gathered against Moses and against Aaron, that they looked toward the tabernacle of the congregation: and, behold, the cloud covered it, and the glory of the LORD appeared.
4238                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses and Aaron came before the tabernacle of the congregation.
4239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4240                                                                                                                                                                                                                                                                                                                                                                                                                                  Get you up from among this congregation, that I may consume them as in a moment. And they fell upon their faces.
4241                                                                                                                                                                                                                                                                                                      And Moses said unto Aaron, Take a censer, and put fire therein from off the altar, and put on incense, and go quickly unto the congregation, and make an atonement for them: for there is wrath gone out from the LORD; the plague is begun.
4242                                                                                                                                                                                                                                                                                                                                                   And Aaron took as Moses commanded, and ran into the midst of the congregation; and, behold, the plague was begun among the people: and he put on incense, and made an atonement for the people.
4243                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he stood between the dead and the living; and the plague was stayed.
4244                                                                                                                                                                                                                                                                                                                                                                                                                       Now they that died in the plague were fourteen thousand and seven hundred, beside them that died about the matter of Korah.
4245                                                                                                                                                                                                                                                                                                                                                                                                                                     And Aaron returned unto Moses unto the door of the tabernacle of the congregation: and the plague was stayed.
4246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4247                                                                                                                                                                                                                                                                                                               Speak unto the children of Israel, and take of every one of them a rod according to the house of their fathers, of all their princes according to the house of their fathers twelve rods: write thou every man's name upon his rod.
4248                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt write Aaron's name upon the rod of Levi: for one rod shall be for the head of the house of their fathers.
4249                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt lay them up in the tabernacle of the congregation before the testimony, where I will meet with you.
4250                                                                                                                                                                                                                                                                                                                                                    And it shall come to pass, that the man's rod, whom I shall choose, shall blossom: and I will make to cease from me the murmurings of the children of Israel, whereby they murmur against you.
4251                                                                                                                                                                                                                                                                                                                          And Moses spake unto the children of Israel, and every one of their princes gave him a rod apiece, for each prince one, according to their fathers' houses, even twelve rods: and the rod of Aaron was among their rods.
4252                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses laid up the rods before the LORD in the tabernacle of witness.
4253                                                                                                                                                                                                                                                                                                                             And it came to pass, that on the morrow Moses went into the tabernacle of witness; and, behold, the rod of Aaron for the house of Levi was budded, and brought forth buds, and bloomed blossoms, and yielded almonds.
4254                                                                                                                                                                                                                                                                                                                                                                                                             And Moses brought out all the rods from before the LORD unto all the children of Israel: and they looked, and took every man his rod.
4255                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, Bring Aaron's rod again before the testimony, to be kept for a token against the rebels; and thou shalt quite take away their murmurings from me, that they die not.
4256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses did so: as the LORD commanded him, so did he.
4257                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel spake unto Moses, saying, Behold, we die, we perish, we all perish.
4258                                                                                                                                                                                                                                                                                                                                                                                                                                       Whosoever cometh any thing near unto the tabernacle of the LORD shall die: shall we be consumed with dying?
4259                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Aaron, Thou and thy sons and thy father's house with thee shall bear the iniquity of the sanctuary: and thou and thy sons with thee shall bear the iniquity of your priesthood.
4260                                                                                                                                                                                                                                                                                                            And thy brethren also of the tribe of Levi, the tribe of thy father, bring thou with thee, that they may be joined unto thee, and minister unto thee: but thou and thy sons with thee shall minister before the tabernacle of witness.
4261                                                                                                                                                                                                                                                                                                                                                              And they shall keep thy charge, and the charge of all the tabernacle: only they shall not come nigh the vessels of the sanctuary and the altar, that neither they, nor ye also, die.
4262                                                                                                                                                                                                                                                                                                                                                                And they shall be joined unto thee, and keep the charge of the tabernacle of the congregation, for all the service of the tabernacle: and a stranger shall not come nigh unto you.
4263                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall keep the charge of the sanctuary, and the charge of the altar: that there be no wrath any more upon the children of Israel.
4264                                                                                                                                                                                                                                                                                                                                                   And I, behold, I have taken your brethren the Levites from among the children of Israel: to you they are given as a gift for the LORD, to do the service of the tabernacle of the congregation.
4265                                                                                                                                                                                                                                                                             Therefore thou and thy sons with thee shall keep your priest's office for everything of the altar, and within the vail; and ye shall serve: I have given your priest's office unto you as a service of gift: and the stranger that cometh nigh shall be put to death.
4266                                                                                                                                                                                                                                                                                         And the LORD spake unto Aaron, Behold, I also have given thee the charge of mine heave offerings of all the hallowed things of the children of Israel; unto thee have I given them by reason of the anointing, and to thy sons, by an ordinance for ever.
4267                                                                                                                                                                                                                                                              This shall be thine of the most holy things, reserved from the fire: every oblation of theirs, every meat offering of theirs, and every sin offering of theirs, and every trespass offering of theirs which they shall render unto me, shall be most holy for thee and for thy sons.
4268                                                                                                                                                                                                                                                                                                                                                                                                                                                    In the most holy place shalt thou eat it; every male shall eat it: it shall be holy unto thee.
4269                                                                                                                                                                                                                                                                             And this is thine; the heave offering of their gift, with all the wave offerings of the children of Israel: I have given them unto thee, and to thy sons and to thy daughters with thee, by a statute for ever: every one that is clean in thy house shall eat of it.
4270                                                                                                                                                                                                                                                                                                                                                                                    All the best of the oil, and all the best of the wine, and of the wheat, the firstfruits of them which they shall offer unto the LORD, them have I given thee.
4271                                                                                                                                                                                                                                                                                                                                                                                           And whatsoever is first ripe in the land, which they shall bring unto the LORD, shall be thine; every one that is clean in thine house shall eat of it.
4272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Every thing devoted in Israel shall be thine.
4273                                                                                                                                                                                                                                                                                              Every thing that openeth the matrix in all flesh, which they bring unto the LORD, whether it be of men or beasts, shall be thine: nevertheless the firstborn of man shalt thou surely redeem, and the firstling of unclean beasts shalt thou redeem.
4274                                                                                                                                                                                                                                                                                                                                                    And those that are to be redeemed from a month old shalt thou redeem, according to thine estimation, for the money of five shekels, after the shekel of the sanctuary, which is twenty gerahs.
4275                                                                                                                                                                                                                                                                                But the firstling of a cow, or the firstling of a sheep, or the firstling of a goat, thou shalt not redeem; they are holy: thou shalt sprinkle their blood upon the altar, and shalt burn their fat for an offering made by fire, for a sweet savor unto the LORD.
4276                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the flesh of them shall be thine, as the wave breast and as the right shoulder are thine.
4277                                                                                                                                                                                                                                                                          All the heave offerings of the holy things, which the children of Israel offer unto the LORD, have I given thee, and thy sons and thy daughters with thee, by a statute for ever: it is a covenant of salt for ever before the LORD unto thee and to thy seed with thee.
4278                                                                                                                                                                                                                                                                                                                                                       And the LORD spake unto Aaron, Thou shalt have no inheritance in their land, neither shalt thou have any part among them: I am thy part and thine inheritance among the children of Israel.
4279                                                                                                                                                                                                                                                                                                                                                            And, behold, I have given the children of Levi all the tenth in Israel for an inheritance, for their service which they serve, even the service of the tabernacle of the congregation.
4280                                                                                                                                                                                                                                                                                                                                                                                                                         Neither must the children of Israel henceforth come nigh the tabernacle of the congregation, lest they bear sin, and die.
4281                                                                                                                                                                                                                                                                                                           But the Levites shall do the service of the tabernacle of the congregation, and they shall bear their iniquity: it shall be a statute for ever throughout your generations, that among the children of Israel they have no inheritance.
4282                                                                                                                                                                                                                                                                                                              But the tithes of the children of Israel, which they offer as an heave offering unto the LORD, I have given to the Levites to inherit: therefore I have said unto them, Among the children of Israel they shall have no inheritance.
4283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4284                                                                                                                                                                                                                                                                                             Thus speak unto the Levites, and say unto them, When ye take of the children of Israel the tithes which I have given you from them for your inheritance, then ye shall offer up an heave offering of it for the LORD, even a tenth part of the tithe.
4285                                                                                                                                                                                                                                                                                                                                                                                                   And this your heave offering shall be reckoned unto you, as though it were the corn of the threshingfloor, and as the fulness of the winepress.
4286                                                                                                                                                                                                                                                                                                                                                 Thus ye also shall offer an heave offering unto the LORD of all your tithes, which ye receive of the children of Israel; and ye shall give thereof the LORD's heave offering to Aaron the priest.
4287                                                                                                                                                                                                                                                                                                                                                                                                         Out of all your gifts ye shall offer every heave offering of the LORD, of all the best thereof, even the hallowed part thereof out of it.
4288                                                                                                                                                                                                                                                                                                                                          Therefore thou shalt say unto them, When ye have heaved the best thereof from it, then it shall be counted unto the Levites as the increase of the threshingfloor, and as the increase of the winepress.
4289                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall eat it in every place, ye and your households: for it is your reward for your service in the tabernacle of the congregation.
4290                                                                                                                                                                                                                                                                                                                                                                            And ye shall bear no sin by reason of it, when ye have heaved from it the best of it: neither shall ye pollute the holy things of the children of Israel, lest ye die.
4291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD spake unto Moses and unto Aaron, saying,
4292                                                                                                                                                                                                                                                                                                                                 This is the ordinance of the law which the LORD hath commanded, saying, Speak unto the children of Israel, that they bring thee a red heifer without spot, wherein is no blemish, and upon which never came yoke:
4293                                                                                                                                                                                                                                                                                                                                                                                                              And ye shall give her unto Eleazar the priest, that he may bring her forth without the camp, and one shall slay her before his face:
4294                                                                                                                                                                                                                                                                                                                                                                                         And Eleazar the priest shall take of her blood with his finger, and sprinkle of her blood directly before the tabernacle of the congregation seven times:
4295                                                                                                                                                                                                                                                                                                                                                                                                                                 And one shall burn the heifer in his sight; her skin, and her flesh, and her blood, with her dung, shall he burn:
4296                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall take cedar wood, and hyssop, and scarlet, and cast it into the midst of the burning of the heifer.
4297                                                                                                                                                                                                                                                                                                                                                                         Then the priest shall wash his clothes, and he shall bathe his flesh in water, and afterward he shall come into the camp, and the priest shall be unclean until the even.
4298                                                                                                                                                                                                                                                                                                                                                                                                                       And he that burneth her shall wash his clothes in water, and bathe his flesh in water, and shall be unclean until the even.
4299                                                                                                                                                                                                                                                                                                  And a man that is clean shall gather up the ashes of the heifer, and lay them up without the camp in a clean place, and it shall be kept for the congregation of the children of Israel for a water of separation: it is a purification for sin.
4300                                                                                                                                                                                                                                                                                                                       And he that gathereth the ashes of the heifer shall wash his clothes, and be unclean until the even: and it shall be unto the children of Israel, and unto the stranger that sojourneth among them, for a statute for ever.
4301                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He that toucheth the dead body of any man shall be unclean seven days.
4302                                                                                                                                                                                                                                                                                                                                                               He shall purify himself with it on the third day, and on the seventh day he shall be clean: but if he purify not himself the third day, then the seventh day he shall not be clean.
4303                                                                                                                                                                                                                                                           Whosoever toucheth the dead body of any man that is dead, and purifieth not himself, defileth the tabernacle of the LORD; and that soul shall be cut off from Israel: because the water of separation was not sprinkled upon him, he shall be unclean; his uncleanness is yet upon him.
4304                                                                                                                                                                                                                                                                                                                                                                                                               This is the law, when a man dieth in a tent: all that come into the tent, and all that is in the tent, shall be unclean seven days.
4305                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And every open vessel, which hath no covering bound upon it, is unclean.
4306                                                                                                                                                                                                                                                                                                                                                                                            And whosoever toucheth one that is slain with a sword in the open fields, or a dead body, or a bone of a man, or a grave, shall be unclean seven days.
4307                                                                                                                                                                                                                                                                                                                                                                                           And for an unclean person they shall take of the ashes of the burnt heifer of purification for sin, and running water shall be put thereto in a vessel:
4308                                                                                                                                                                                                                                                                                                            And a clean person shall take hyssop, and dip it in the water, and sprinkle it upon the tent, and upon all the vessels, and upon the persons that were there, and upon him that touched a bone, or one slain, or one dead, or a grave:
4309                                                                                                                                                                                                                                                                                                                      And the clean person shall sprinkle upon the unclean on the third day, and on the seventh day: and on the seventh day he shall purify himself, and wash his clothes, and bathe himself in water, and shall be clean at even.
4310                                                                                                                                                                                                                                                                                              But the man that shall be unclean, and shall not purify himself, that soul shall be cut off from among the congregation, because he hath defiled the sanctuary of the LORD: the water of separation hath not been sprinkled upon him; he is unclean.
4311                                                                                                                                                                                                                                                                                                                                                  And it shall be a perpetual statute unto them, that he that sprinkleth the water of separation shall wash his clothes; and he that toucheth the water of separation shall be unclean until even.
4312                                                                                                                                                                                                                                                                                                                                                                                                                           And whatsoever the unclean person toucheth shall be unclean; and the soul that toucheth it shall be unclean until even.
4313                                                                                                                                                                                                                                                                                                                                                            Then came the children of Israel, even the whole congregation, into the desert of Zin in the first month: and the people abode in Kadesh; and Miriam died there, and was buried there.
4314                                                                                                                                                                                                                                                                                                                                                                                                                               And there was no water for the congregation: and they gathered themselves together against Moses and against Aaron.
4315                                                                                                                                                                                                                                                                                                                                                                                                                            And the people chode with Moses, and spake, saying, Would God that we had died when our brethren died before the LORD!
4316                                                                                                                                                                                                                                                                                                                                                                                                                            And why have ye brought up the congregation of the LORD into this wilderness, that we and our cattle should die there?
4317                                                                                                                                                                                                                                                                                                                                             And wherefore have ye made us to come up out of Egypt, to bring us in unto this evil place? it is no place of seed, or of figs, or of vines, or of pomegranates; neither is there any water to drink.
4318                                                                                                                                                                                                                                                                                                                                                     And Moses and Aaron went from the presence of the assembly unto the door of the tabernacle of the congregation, and they fell upon their faces: and the glory of the LORD appeared unto them.
4319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4320                                                                                                                                                                                                                                                          Take the rod, and gather thou the assembly together, thou, and Aaron thy brother, and speak ye unto the rock before their eyes; and it shall give forth his water, and thou shalt bring forth to them water out of the rock: so thou shalt give the congregation and their beasts drink.
4321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses took the rod from before the LORD, as he commanded him.
4322                                                                                                                                                                                                                                                                                                                                                                                     And Moses and Aaron gathered the congregation together before the rock, and he said unto them, Hear now, ye rebels; must we fetch you water out of this rock?
4323                                                                                                                                                                                                                                                                                                                                                                                     And Moses lifted up his hand, and with his rod he smote the rock twice: and the water came out abundantly, and the congregation drank, and their beasts also.
4324                                                                                                                                                                                                                                                                                                                                  And the LORD spake unto Moses and Aaron, Because ye believed me not, to sanctify me in the eyes of the children of Israel, therefore ye shall not bring this congregation into the land which I have given them.
4325                                                                                                                                                                                                                                                                                                                                                                                                                                 This is the water of Meribah; because the children of Israel strove with the LORD, and he was sanctified in them.
4326                                                                                                                                                                                                                                                                                                                                                                                                   And Moses sent messengers from Kadesh unto the king of Edom, Thus saith thy brother Israel, Thou knowest all the travail that hath befallen us:
4327                                                                                                                                                                                                                                                                                                                                                                                                                        How our fathers went down into Egypt, and we have dwelt in Egypt a long time; and the Egyptians vexed us, and our fathers:
4328                                                                                                                                                                                                                                                                                                                                                             And when we cried unto the LORD, he heard our voice, and sent an angel, and hath brought us forth out of Egypt: and, behold, we are in Kadesh, a city in the uttermost of thy border:
4329                                                                                                                                                                                                                                                           Let us pass, I pray thee, through thy country: we will not pass through the fields, or through the vineyards, neither will we drink of the water of the wells: we will go by the king's high way, we will not turn to the right hand nor to the left, until we have passed thy borders.
4330                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Edom said unto him, Thou shalt not pass by me, lest I come out against thee with the sword.
4331                                                                                                                                                                                                                                                                                                                                         And the children of Israel said unto him, We will go by the high way: and if I and my cattle drink of thy water, then I will pay for it: I will only, without doing anything else, go through on my feet.
4332                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said, Thou shalt not go through. And Edom came out against him with much people, and with a strong hand.
4333                                                                                                                                                                                                                                                                                                                                                                                                                                               Thus Edom refused to give Israel passage through his border: wherefore Israel turned away from him.
4334                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel, even the whole congregation, journeyed from Kadesh, and came unto mount Hor.
4335                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD spake unto Moses and Aaron in mount Hor, by the coast of the land of Edom, saying,
4336                                                                                                                                                                                                                                                                                                                                                        Aaron shall be gathered unto his people: for he shall not enter into the land which I have given unto the children of Israel, because ye rebelled against my word at the water of Meribah.
4337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Take Aaron and Eleazar his son, and bring them up unto mount Hor:
4338                                                                                                                                                                                                                                                                                                                                                                                                             And strip Aaron of his garments, and put them upon Eleazar his son: and Aaron shall be gathered unto his people, and shall die there.
4339                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses did as the LORD commanded: and they went up into mount Hor in the sight of all the congregation.
4340                                                                                                                                                                                                                                                                                                                                                                        And Moses stripped Aaron of his garments, and put them upon Eleazar his son; and Aaron died there in the top of the mount: and Moses and Eleazar came down from the mount.
4341                                                                                                                                                                                                                                                                                                                                                                                                                          And when all the congregation saw that Aaron was dead, they mourned for Aaron thirty days, even all the house of Israel.
4342                                                                                                                                                                                                                                                                                                                                                                  And when king Arad the Canaanite, which dwelt in the south, heard tell that Israel came by the way of the spies; then he fought against Israel, and took some of them prisoners.
4343                                                                                                                                                                                                                                                                                                                                                                                                   And Israel vowed a vow unto the LORD, and said, If thou wilt indeed deliver this people into my hand, then I will utterly destroy their cities.
4344                                                                                                                                                                                                                                                                                                                                                                     And the LORD hearkened to the voice of Israel, and delivered up the Canaanites; and they utterly destroyed them and their cities: and he called the name of the place Hormah.
4345                                                                                                                                                                                                                                                                                                                                                                                     And they journeyed from mount Hor by the way of the Red sea, to compass the land of Edom: and the soul of the people was much discouraged because of the way.
4346                                                                                                                                                                                                                                                                                                                            And the people spake against God, and against Moses, Wherefore have ye brought us up out of Egypt to die in the wilderness? for there is no bread, neither is there any water; and our soul loatheth this light bread.
4347                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD sent fiery serpents among the people, and they bit the people; and much people of Israel died.
4348                                                                                                                                                                                                                                                                                                                                 Therefore the people came to Moses, and said, We have sinned, for we have spoken against the LORD, and against thee; pray unto the LORD, that he take away the serpents from us. And Moses prayed for the people.
4349                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Make thee a fiery serpent, and set it upon a pole: and it shall come to pass, that every one that is bitten, when he looketh upon it, shall live.
4350                                                                                                                                                                                                                                                                                                                                                                              And Moses made a serpent of brass, and put it upon a pole, and it came to pass, that if a serpent had bitten any man, when he beheld the serpent of brass, he lived.
4351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel set forward, and pitched in Oboth.
4352                                                                                                                                                                                                                                                                                                                                                                                                                            And they journeyed from Oboth, and pitched at Ijeabarim, in the wilderness which is before Moab, toward the sunrising.
4353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     From thence they removed, and pitched in the valley of Zared.
4354                                                                                                                                                                                                                                                                                                                                       From thence they removed, and pitched on the other side of Arnon, which is in the wilderness that cometh out of the coasts of the Amorites: for Arnon is the border of Moab, between Moab and the Amorites.
4355                                                                                                                                                                                                                                                                                                                                                                                                                                 Wherefore it is said in the book of the wars of the LORD, What he did in the Red sea, and in the brooks of Arnon,
4356                                                                                                                                                                                                                                                                                                                                                                                                                                         And at the stream of the brooks that goeth down to the dwelling of Ar, and lieth upon the border of Moab.
4357                                                                                                                                                                                                                                                                                                                                                                                                    And from thence they went to Beer: that is the well whereof the LORD spake unto Moses, Gather the people together, and I will give them water.
4358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Israel sang this song, Spring up, O well; sing ye unto it:
4359                                                                                                                                                                                                                                                                                                                                                                              The princes digged the well, the nobles of the people digged it, by the direction of the lawgiver, with their staves. And from the wilderness they went to Mattanah:
4360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And from Mattanah to Nahaliel: and from Nahaliel to Bamoth:
4361                                                                                                                                                                                                                                                                                                                                                                                                                               And from Bamoth in the valley, that is in the country of Moab, to the top of Pisgah, which looketh toward Jeshimon.
4362                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Israel sent messengers unto Sihon king of the Amorites, saying,
4363                                                                                                                                                                                                                                                                                                                                    Let me pass through thy land: we will not turn into the fields, or into the vineyards; we will not drink of the waters of the well: but we will go along by the king's high way, until we be past thy borders.
4364                                                                                                                                                                                                                                                                                                                                       And Sihon would not suffer Israel to pass through his border: but Sihon gathered all his people together, and went out against Israel into the wilderness: and he came to Jahaz, and fought against Israel.
4365                                                                                                                                                                                                                                                                                                                                                              And Israel smote him with the edge of the sword, and possessed his land from Arnon unto Jabbok, even unto the children of Ammon: for the border of the children of Ammon was strong.
4366                                                                                                                                                                                                                                                                                                                                                                                                                And Israel took all these cities: and Israel dwelt in all the cities of the Amorites, in Heshbon, and in all the villages thereof.
4367                                                                                                                                                                                                                                                                                                                                                                              For Heshbon was the city of Sihon the king of the Amorites, who had fought against the former king of Moab, and taken all his land out of his hand, even unto Arnon.
4368                                                                                                                                                                                                                                                                                                                                                                                                                                        Wherefore they that speak in proverbs say, Come into Heshbon, let the city of Sihon be built and prepared:
4369                                                                                                                                                                                                                                                                                                                                                                                                  For there is a fire gone out of Heshbon, a flame from the city of Sihon: it hath consumed Ar of Moab, and the lords of the high places of Arnon.
4370                                                                                                                                                                                                                                                                                                                                                                                  Woe to thee, Moab! thou art undone, O people of Chemosh: he hath given his sons that escaped, and his daughters, into captivity unto Sihon king of the Amorites.
4371                                                                                                                                                                                                                                                                                                                                                                                                              We have shot at them; Heshbon is perished even unto Dibon, and we have laid them waste even unto Nophah, which reacheth unto Medeba.
4372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus Israel dwelt in the land of the Amorites.
4373                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses sent to spy out Jaazer, and they took the villages thereof, and drove out the Amorites that were there.
4374                                                                                                                                                                                                                                                                                                                                                                                                And they turned and went up by the way of Bashan: and Og the king of Bashan went out against them, he, and all his people, to the battle at Edrei.
4375                                                                                                                                                                                                                                                                                                                             And the LORD said unto Moses, Fear him not: for I have delivered him into thy hand, and all his people, and his land; and thou shalt do to him as thou didst unto Sihon king of the Amorites, which dwelt at Heshbon.
4376                                                                                                                                                                                                                                                                                                                                                                                                                            So they smote him, and his sons, and all his people, until there was none left him alive: and they possessed his land.
4377                                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel set forward, and pitched in the plains of Moab on this side Jordan by Jericho.
4378                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Balak the son of Zippor saw all that Israel had done to the Amorites.
4379                                                                                                                                                                                                                                                                                                                                                                                                                        And Moab was sore afraid of the people, because they were many: and Moab was distressed because of the children of Israel.
4380                                                                                                                                                                                                                                                                                                                              And Moab said unto the elders of Midian, Now shall this company lick up all that are round about us, as the ox licketh up the grass of the field. And Balak the son of Zippor was king of the Moabites at that time.
4381                                                                                                                                                                                                                                                                He sent messengers therefore unto Balaam the son of Beor to Pethor, which is by the river of the land of the children of his people, to call him, saying, Behold, there is a people come out from Egypt: behold, they cover the face of the earth, and they abide over against me:
4382                                                                                                                                                                                                                                                                      Come now therefore, I pray thee, curse me this people; for they are too mighty for me: peradventure I shall prevail, that we may smite them, and that I may drive them out of the land: for I wot that he whom thou blessest is blessed, and he whom thou cursest is cursed.
4383                                                                                                                                                                                                                                                                                                                                                                          And the elders of Moab and the elders of Midian departed with the rewards of divination in their hand; and they came unto Balaam, and spake unto him the words of Balak.
4384                                                                                                                                                                                                                                                                                                                                                                                        And he said unto them, Lodge here this night, and I will bring you word again, as the LORD shall speak unto me: and the princes of Moab abode with Balaam.
4385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And God came unto Balaam, and said, What men are these with thee?
4386                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Balaam said unto God, Balak the son of Zippor, king of Moab, hath sent unto me, saying,
4387                                                                                                                                                                                                                                                                                                                                                                    Behold, there is a people come out of Egypt, which covereth the face of the earth: come now, curse me them; peradventure I shall be able to overcome them, and drive them out.
4388                                                                                                                                                                                                                                                                                                                                                                                                                                     And God said unto Balaam, Thou shalt not go with them; thou shalt not curse the people: for they are blessed.
4389                                                                                                                                                                                                                                                                                                                                                                                             And Balaam rose up in the morning, and said unto the princes of Balak, Get you into your land: for the LORD refuseth to give me leave to go with you.
4390                                                                                                                                                                                                                                                                                                                                                                                                                                             And the princes of Moab rose up, and they went unto Balak, and said, Balaam refuseth to come with us.
4391                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Balak sent yet again princes, more, and more honorable than they.
4392                                                                                                                                                                                                                                                                                                                                                                                                          And they came to Balaam, and said to him, Thus saith Balak the son of Zippor, Let nothing, I pray thee, hinder thee from coming unto me:
4393                                                                                                                                                                                                                                                                                                                                                                                                   For I will promote thee unto very great honor, and I will do whatsoever thou sayest unto me: come therefore, I pray thee, curse me this people.
4394                                                                                                                                                                                                                                                                                                                                                            And Balaam answered and said unto the servants of Balak, If Balak would give me his house full of silver and gold, I cannot go beyond the word of the LORD my God, to do less or more.
4395                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore, I pray you, tarry ye also here this night, that I may know what the LORD will say unto me more.
4396                                                                                                                                                                                                                                                                                                                                                                  And God came unto Balaam at night, and said unto him, If the men come to call thee, rise up, and go with them; but yet the word which I shall say unto thee, that shalt thou do.
4397                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Balaam rose up in the morning, and saddled his ass, and went with the princes of Moab.
4398                                                                                                                                                                                                                                                                                                                                                         And God's anger was kindled because he went: and the angel of the LORD stood in the way for an adversary against him. Now he was riding upon his ass, and his two servants were with him.
4399                                                                                                                                                                                                                                                                                                                                 And the ass saw the angel of the LORD standing in the way, and his sword drawn in his hand: and the ass turned aside out of the way, and went into the field: and Balaam smote the ass, to turn her into the way.
4400                                                                                                                                                                                                                                                                                                                                                                                                                                   But the angel of the LORD stood in a path of the vineyards, a wall being on this side, and a wall on that side.
4401                                                                                                                                                                                                                                                                                                                                                                                                 And when the ass saw the angel of the LORD, she thrust herself unto the wall, and crushed Balaam's foot against the wall: and he smote her again.
4402                                                                                                                                                                                                                                                                                                                                                                                                            And the angel of the LORD went further, and stood in a narrow place, where was no way to turn either to the right hand or to the left.
4403                                                                                                                                                                                                                                                                                                                                                                                                        And when the ass saw the angel of the LORD, she fell down under Balaam: and Balaam's anger was kindled, and he smote the ass with a staff.
4404                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD opened the mouth of the ass, and she said unto Balaam, What have I done unto thee, that thou hast smitten me these three times?
4405                                                                                                                                                                                                                                                                                                                                                                                                                    And Balaam said unto the ass, Because thou hast mocked me: I would there were a sword in mine hand, for now would I kill thee.
4406                                                                                                                                                                                                                                                                                                                                                                         And the ass said unto Balaam, Am not I thine ass, upon which thou hast ridden ever since I was thine unto this day? was I ever wont to do so unto thee? And he said, Nay.
4407                                                                                                                                                                                                                                                                                                                                                            Then the LORD opened the eyes of Balaam, and he saw the angel of the LORD standing in the way, and his sword drawn in his hand: and he bowed down his head, and fell flat on his face.
4408                                                                                                                                                                                                                                                                                                                                                                    And the angel of the LORD said unto him, Wherefore hast thou smitten thine ass these three times? behold, I went out to withstand thee, because thy way is perverse before me:
4409                                                                                                                                                                                                                                                                                                                                                                                                   And the ass saw me, and turned from me these three times: unless she had turned from me, surely now also I had slain thee, and saved her alive.
4410                                                                                                                                                                                                                                                                                                                                                                And Balaam said unto the angel of the LORD, I have sinned; for I knew not that thou stoodest in the way against me: now therefore, if it displease thee, I will get me back again.
4411                                                                                                                                                                                                                                                                                                                                                                     And the angel of the LORD said unto Balaam, Go with the men: but only the word that I shall speak unto thee, that thou shalt speak. So Balaam went with the princes of Balak.
4412                                                                                                                                                                                                                                                                                                                                                                                            And when Balak heard that Balaam was come, he went out to meet him unto a city of Moab, which is in the border of Arnon, which is in the utmost coast.
4413                                                                                                                                                                                                                                                                                                                                                                                    And Balak said unto Balaam, Did I not earnestly send unto thee to call thee? wherefore camest thou not unto me? am I not able indeed to promote thee to honor?
4414                                                                                                                                                                                                                                                                                                                                                                                     And Balaam said unto Balak, Lo, I am come unto thee: have I now any power at all to say any thing? the word that God putteth in my mouth, that shall I speak.
4415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Balaam went with Balak, and they came unto Kirjathhuzoth.
4416                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Balak offered oxen and sheep, and sent to Balaam, and to the princes that were with him.
4417                                                                                                                                                                                                                                                                                                                                                                               And it came to pass on the morrow, that Balak took Balaam, and brought him up into the high places of Baal, that thence he might see the utmost part of the people.
4418                                                                                                                                                                                                                                                                                                                                                                                                                                            And Balaam said unto Balak, Build me here seven altars, and prepare me here seven oxen and seven rams.
4419                                                                                                                                                                                                                                                                                                                                                                                                                                              And Balak did as Balaam had spoken; and Balak and Balaam offered on every altar a bullock and a ram.
4420                                                                                                                                                                                                                                                                                                                                                  And Balaam said unto Balak, Stand by thy burnt offering, and I will go: peradventure the LORD will come to meet me: and whatsoever he showeth me I will tell thee. And he went to an high place.
4421                                                                                                                                                                                                                                                                                                                                                                                                                  And God met Balaam: and he said unto him, I have prepared seven altars, and I have offered upon every altar a bullock and a ram.
4422                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD put a word in Balaam's mouth, and said, Return unto Balak, and thus thou shalt speak.
4423                                                                                                                                                                                                                                                                                                                                                                                                                                              And he returned unto him, and, lo, he stood by his burnt sacrifice, he, and all the princes of Moab.
4424                                                                                                                                                                                                                                                                                                                                                                    And he took up his parable, and said, Balak the king of Moab hath brought me from Aram, out of the mountains of the east, saying, Come, curse me Jacob, and come, defy Israel.
4425                                                                                                                                                                                                                                                                                                                                                                                                                                                  How shall I curse, whom God hath not cursed? or how shall I defy, whom the LORD hath not defied?
4426                                                                                                                                                                                                                                                                                                                                                                                          For from the top of the rocks I see him, and from the hills I behold him: lo, the people shall dwell alone, and shall not be reckoned among the nations.
4427                                                                                                                                                                                                                                                                                                                                                                                             Who can count the dust of Jacob, and the number of the fourth part of Israel? Let me die the death of the righteous, and let my last end be like his!
4428                                                                                                                                                                                                                                                                                                                                                                                                       And Balak said unto Balaam, What hast thou done unto me? I took thee to curse mine enemies, and, behold, thou hast blessed them altogether.
4429                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he answered and said, Must I not take heed to speak that which the LORD hath put in my mouth?
4430                                                                                                                                                                                                                                                                                                                                  And Balak said unto him, Come, I pray thee, with me unto another place, from whence thou mayest see them: thou shalt see but the utmost part of them, and shalt not see them all: and curse me them from thence.
4431                                                                                                                                                                                                                                                                                                                                                                                                        And he brought him into the field of Zophim, to the top of Pisgah, and built seven altars, and offered a bullock and a ram on every altar.
4432                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said unto Balak, Stand here by thy burnt offering, while I meet the LORD yonder.
4433                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD met Balaam, and put a word in his mouth, and said, Go again unto Balak, and say thus.
4434                                                                                                                                                                                                                                                                                                                                                                                            And when he came to him, behold, he stood by his burnt offering, and the princes of Moab with him. And Balak said unto him, What hath the LORD spoken?
4435                                                                                                                                                                                                                                                                                                                                                                                                                                              And he took up his parable, and said, Rise up, Balak, and hear; hearken unto me, thou son of Zippor:
4436                                                                                                                                                                                                                                                                                                                                                                      God is not a man, that he should lie; neither the son of man, that he should repent: hath he said, and shall he not do it? or hath he spoken, and shall he not make it good?
4437                                                                                                                                                                                                                                                                                                                                                                                                                                                       Behold, I have received commandment to bless: and he hath blessed; and I cannot reverse it.
4438                                                                                                                                                                                                                                                                                                                                                                                           He hath not beheld iniquity in Jacob, neither hath he seen perverseness in Israel: the LORD his God is with him, and the shout of a king is among them.
4439                                                                                                                                                                                                                                                                                                                                                                                                                                                                     God brought them out of Egypt; he hath as it were the strength of an unicorn.
4440                                                                                                                                                                                                                                                                                                                                                              Surely there is no enchantment against Jacob, neither is there any divination against Israel: according to this time it shall be said of Jacob and of Israel, What hath God wrought!
4441                                                                                                                                                                                                                                                                                                                                                                          Behold, the people shall rise up as a great lion, and lift up himself as a young lion: he shall not lie down until he eat of the prey, and drink the blood of the slain.
4442                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Balak said unto Balaam, Neither curse them at all, nor bless them at all.
4443                                                                                                                                                                                                                                                                                                                                                                                                                                     But Balaam answered and said unto Balak, Told not I thee, saying, All that the LORD speaketh, that I must do?
4444                                                                                                                                                                                                                                                                                                                                                                                  And Balak said unto Balaam, Come, I pray thee, I will bring thee unto another place; peradventure it will please God that thou mayest curse me them from thence.
4445                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Balak brought Balaam unto the top of Peor, that looketh toward Jeshimon.
4446                                                                                                                                                                                                                                                                                                                                                                                                                                        And Balaam said unto Balak, Build me here seven altars, and prepare me here seven bullocks and seven rams.
4447                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Balak did as Balaam had said, and offered a bullock and a ram on every altar.
4448                                                                                                                                                                                                                                                                                                                                                                                And when Balaam saw that it pleased the LORD to bless Israel, he went not, as at other times, to seek for enchantments, but he set his face toward the wilderness.
4449                                                                                                                                                                                                                                                                                                                                                                                                             And Balaam lifted up his eyes, and he saw Israel abiding in his tents according to their tribes; and the spirit of God came upon him.
4450                                                                                                                                                                                                                                                                                                                                                                                                                                And he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said:
4451                                                                                                                                                                                                                                                                                                                                                                                                                He hath said, which heard the words of God, which saw the vision of the Almighty, falling into a trance, but having his eyes open:
4452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How goodly are thy tents, O Jacob, and thy tabernacles, O Israel!
4453                                                                                                                                                                                                                                                                                                                                                                               As the valleys are they spread forth, as gardens by the river's side, as the trees of lign aloes which the LORD hath planted, and as cedar trees beside the waters.
4454                                                                                                                                                                                                                                                                                                                                                                                       He shall pour the water out of his buckets, and his seed shall be in many waters, and his king shall be higher than Agag, and his kingdom shall be exalted.
4455                                                                                                                                                                                                                                                                                                                                                 God brought him forth out of Egypt; he hath as it were the strength of an unicorn: he shall eat up the nations his enemies, and shall break their bones, and pierce them through with his arrows.
4456                                                                                                                                                                                                                                                                                                                                                                                              He couched, he lay down as a lion, and as a great lion: who shall stir him up? Blessed is he that blesseth thee, and cursed is he that curseth thee.
4457                                                                                                                                                                                                                                                                                                                                 And Balak's anger was kindled against Balaam, and he smote his hands together: and Balak said unto Balaam, I called thee to curse mine enemies, and, behold, thou hast altogether blessed them these three times.
4458                                                                                                                                                                                                                                                                                                                                                                                                               Therefore now flee thou to thy place: I thought to promote thee unto great honor; but, lo, the LORD hath kept thee back from honor.
4459                                                                                                                                                                                                                                                                                                                                                                                                                                                And Balaam said unto Balak, Spake I not also to thy messengers which thou sentest unto me, saying,
4460                                                                                                                                                                                                                                                                                                                                                  If Balak would give me his house full of silver and gold, I cannot go beyond the commandment of the LORD, to do either good or bad of mine own mind; but what the LORD saith, that will I speak?
4461                                                                                                                                                                                                                                                                                                                                                                                                       And now, behold, I go unto my people: come therefore, and I will advertise thee what this people shall do to thy people in the latter days.
4462                                                                                                                                                                                                                                                                                                                                                                                                                                And he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said:
4463                                                                                                                                                                                                                                                                                                                                                                       He hath said, which heard the words of God, and knew the knowledge of the most High, which saw the vision of the Almighty, falling into a trance, but having his eyes open:
4464                                                                                                                                                                                                                                                                                                                         I shall see him, but not now: I shall behold him, but not nigh: there shall come a Star out of Jacob, and a Sceptre shall rise out of Israel, and shall smite the corners of Moab, and destroy all the children of Sheth.
4465                                                                                                                                                                                                                                                                                                                                                                                                                                   And Edom shall be a possession, Seir also shall be a possession for his enemies; and Israel shall do valiantly.
4466                                                                                                                                                                                                                                                                                                                                                                                                                                            Out of Jacob shall come he that shall have dominion, and shall destroy him that remaineth of the city.
4467                                                                                                                                                                                                                                                                                                                                                                                         And when he looked on Amalek, he took up his parable, and said, Amalek was the first of the nations; but his latter end shall be that he perish for ever.
4468                                                                                                                                                                                                                                                                                                                                                                                                               And he looked on the Kenites, and took up his parable, and said, Strong is thy dwelling place, and thou puttest thy nest in a rock.
4469                                                                                                                                                                                                                                                                                                                                                                                                                                                              Nevertheless the Kenite shall be wasted, until Asshur shall carry thee away captive.
4470                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he took up his parable, and said, Alas, who shall live when God doeth this!
4471                                                                                                                                                                                                                                                                                                                                                                                                              And ships shall come from the coast of Chittim, and shall afflict Asshur, and shall afflict Eber, and he also shall perish for ever.
4472                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Balaam rose up, and went and returned to his place: and Balak also went his way.
4473                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Israel abode in Shittim, and the people began to commit whoredom with the daughters of Moab.
4474                                                                                                                                                                                                                                                                                                                                                                                                                               And they called the people unto the sacrifices of their gods: and the people did eat, and bowed down to their gods.
4475                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Israel joined himself unto Baalpeor: and the anger of the LORD was kindled against Israel.
4476                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses, Take all the heads of the people, and hang them up before the LORD against the sun, that the fierce anger of the LORD may be turned away from Israel.
4477                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses said unto the judges of Israel, Slay ye every one his men that were joined unto Baalpeor.
4478                                                                                                                                                                                                                                                                              And, behold, one of the children of Israel came and brought unto his brethren a Midianitish woman in the sight of Moses, and in the sight of all the congregation of the children of Israel, who were weeping before the door of the tabernacle of the congregation.
4479                                                                                                                                                                                                                                                                                                                                                                                               And when Phinehas, the son of Eleazar, the son of Aaron the priest, saw it, he rose up from among the congregation, and took a javelin in his hand;
4480                                                                                                                                                                                                                                                                                                                                                     And he went after the man of Israel into the tent, and thrust both of them through, the man of Israel, and the woman through her belly. So the plague was stayed from the children of Israel.
4481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And those that died in the plague were twenty and four thousand.
4482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4483                                                                                                                                                                                                                                                                                                                         Phinehas, the son of Eleazar, the son of Aaron the priest, hath turned my wrath away from the children of Israel, while he was zealous for my sake among them, that I consumed not the children of Israel in my jealousy.
4484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore say, Behold, I give unto him my covenant of peace:
4485                                                                                                                                                                                                                                                                                                                                                               And he shall have it, and his seed after him, even the covenant of an everlasting priesthood; because he was zealous for his God, and made an atonement for the children of Israel.
4486                                                                                                                                                                                                                                                                                                                                                                         Now the name of the Israelite that was slain, even that was slain with the Midianitish woman, was Zimri, the son of Salu, a prince of a chief house among the Simeonites.
4487                                                                                                                                                                                                                                                                                                                                                                                                   And the name of the Midianitish woman that was slain was Cozbi, the daughter of Zur; he was head over a people, and of a chief house in Midian.
4488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Vex the Midianites, and smite them:
4490                                                                                                                                                                                                                                                                                                                For they vex you with their wiles, wherewith they have beguiled you in the matter of Peor, and in the matter of Cozbi, the daughter of a prince of Midian, their sister, which was slain in the day of the plague for Peor's sake.
4491                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass after the plague, that the LORD spake unto Moses and unto Eleazar the son of Aaron the priest, saying,
4492                                                                                                                                                                                                                                                                                                                                                                      Take the sum of all the congregation of the children of Israel, from twenty years old and upward, throughout their fathers' house, all that are able to go to war in Israel.
4493                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses and Eleazar the priest spake with them in the plains of Moab by Jordan near Jericho, saying,
4494                                                                                                                                                                                                                                                                                                                                                                                  Take the sum of the people, from twenty years old and upward; as the LORD commanded Moses and the children of Israel, which went forth out of the land of Egypt.
4495                                                                                                                                                                                                                                                                                                                                                                                             Reuben, the eldest son of Israel: the children of Reuben; Hanoch, of whom cometh the family of the Hanochites: of Pallu, the family of the Palluites:
4496                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of Hezron, the family of the Hezronites: of Carmi, the family of the Carmites.
4497                                                                                                                                                                                                                                                                                                                                                                                                         These are the families of the Reubenites: and they that were numbered of them were forty and three thousand and seven hundred and thirty.
4498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Pallu; Eliab.
4499                                                                                                                                                                                                                                                                                                              And the sons of Eliab; Nemuel, and Dathan, and Abiram. This is that Dathan and Abiram, which were famous in the congregation, who strove against Moses and against Aaron in the company of Korah, when they strove against the LORD:
4500                                                                                                                                                                                                                                                                                                                                                                 And the earth opened her mouth, and swallowed them up together with Korah, when that company died, what time the fire devoured two hundred and fifty men: and they became a sign.
4501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Notwithstanding the children of Korah died not.
4502                                                                                                                                                                                                                                                                                                                                                                                 The sons of Simeon after their families: of Nemuel, the family of the Nemuelites: of Jamin, the family of the Jaminites: of Jachin, the family of the Jachinites:
4503                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of Zerah, the family of the Zarhites: of Shaul, the family of the Shaulites.
4504                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the families of the Simeonites, twenty and two thousand and two hundred.
4505                                                                                                                                                                                                                                                                                                                                                                                    The children of Gad after their families: of Zephon, the family of the Zephonites: of Haggi, the family of the Haggites: of Shuni, the family of the Shunites:
4506                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of Ozni, the family of the Oznites: of Eri, the family of the Erites:
4507                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Of Arod, the family of the Arodites: of Areli, the family of the Arelites.
4508                                                                                                                                                                                                                                                                                                                                                                                                                     These are the families of the children of Gad according to those that were numbered of them, forty thousand and five hundred.
4509                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons of Judah were Er and Onan: and Er and Onan died in the land of Canaan.
4510                                                                                                                                                                                                                                                                                                                                                                           And the sons of Judah after their families were; of Shelah, the family of the Shelanites: of Pharez, the family of the Pharzites: of Zerah, the family of the Zarhites.
4511                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Pharez were; of Hezron, the family of the Hezronites: of Hamul, the family of the Hamulites.
4512                                                                                                                                                                                                                                                                                                                                                                                                                  These are the families of Judah according to those that were numbered of them, threescore and sixteen thousand and five hundred.
4513                                                                                                                                                                                                                                                                                                                                                                                                                             Of the sons of Issachar after their families: of Tola, the family of the Tolaites: of Pua, the family of the Punites:
4514                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of Jashub, the family of the Jashubites: of Shimron, the family of the Shimronites.
4515                                                                                                                                                                                                                                                                                                                                                                                                                 These are the families of Issachar according to those that were numbered of them, threescore and four thousand and three hundred.
4516                                                                                                                                                                                                                                                                                                                                                                                Of the sons of Zebulun after their families: of Sered, the family of the Sardites: of Elon, the family of the Elonites: of Jahleel, the family of the Jahleelites.
4517                                                                                                                                                                                                                                                                                                                                                                                                                    These are the families of the Zebulunites according to those that were numbered of them, threescore thousand and five hundred.
4518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The sons of Joseph after their families were Manasseh and Ephraim.
4519                                                                                                                                                                                                                                                                                                                                                                                                           Of the sons of Manasseh: of Machir, the family of the Machirites: and Machir begat Gilead: of Gilead come the family of the Gileadites.
4520                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the sons of Gilead: of Jeezer, the family of the Jeezerites: of Helek, the family of the Helekites:
4521                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of Asriel, the family of the Asrielites: and of Shechem, the family of the Shechemites:
4522                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of Shemida, the family of the Shemidaites: and of Hepher, the family of the Hepherites.
4523                                                                                                                                                                                                                                                                                                                                                                                      And Zelophehad the son of Hepher had no sons, but daughters: and the names of the daughters of Zelophehad were Mahlah, and Noah, Hoglah, Milcah, and Tirzah.
4524                                                                                                                                                                                                                                                                                                                                                                                                                               These are the families of Manasseh, and those that were numbered of them, fifty and two thousand and seven hundred.
4525                                                                                                                                                                                                                                                                                                                                                                  These are the sons of Ephraim after their families: of Shuthelah, the family of the Shuthalhites: of Becher, the family of the Bachrites: of Tahan, the family of the Tahanites.
4526                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And these are the sons of Shuthelah: of Eran, the family of the Eranites.
4527                                                                                                                                                                                                                                                                                                                                                         These are the families of the sons of Ephraim according to those that were numbered of them, thirty and two thousand and five hundred. These are the sons of Joseph after their families.
4528                                                                                                                                                                                                                                                                                                                                                                                 The sons of Benjamin after their families: of Bela, the family of the Belaites: of Ashbel, the family of the Ashbelites: of Ahiram, the family of the Ahiramites:
4529                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of Shupham, the family of the Shuphamites: of Hupham, the family of the Huphamites.
4530                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Bela were Ard and Naaman: of Ard, the family of the Ardites: and of Naaman, the family of the Naamites.
4531                                                                                                                                                                                                                                                                                                                                                                                                            These are the sons of Benjamin after their families: and they that were numbered of them were forty and five thousand and six hundred.
4532                                                                                                                                                                                                                                                                                                                                                                                                      These are the sons of Dan after their families: of Shuham, the family of the Shuhamites. These are the families of Dan after their families.
4533                                                                                                                                                                                                                                                                                                                                                                                                            All the families of the Shuhamites, according to those that were numbered of them, were threescore and four thousand and four hundred.
4534                                                                                                                                                                                                                                                                                                                                                                                 Of the children of Asher after their families: of Jimna, the family of the Jimnites: of Jesui, the family of the Jesuites: of Beriah, the family of the Beriites.
4535                                                                                                                                                                                                                                                                                                                                                                                                                                        Of the sons of Beriah: of Heber, the family of the Heberites: of Malchiel, the family of the Malchielites.
4536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the name of the daughter of Asher was Sarah.
4537                                                                                                                                                                                                                                                                                                                                                                                                    These are the families of the sons of Asher according to those that were numbered of them; who were fifty and three thousand and four hundred.
4538                                                                                                                                                                                                                                                                                                                                                                                                                      Of the sons of Naphtali after their families: of Jahzeel, the family of the Jahzeelites: of Guni, the family of the Gunites:
4539                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of Jezer, the family of the Jezerites: of Shillem, the family of the Shillemites.
4540                                                                                                                                                                                                                                                                                                                                                                                                These are the families of Naphtali according to their families: and they that were numbered of them were forty and five thousand and four hundred.
4541                                                                                                                                                                                                                                                                                                                                                                                                                                  These were the numbered of the children of Israel, six hundred thousand and a thousand seven hundred and thirty.
4542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4543                                                                                                                                                                                                                                                                                                                                                                                                                                                         Unto these the land shall be divided for an inheritance according to the number of names.
4544                                                                                                                                                                                                                                                                                                                                                          To many thou shalt give the more inheritance, and to few thou shalt give the less inheritance: to every one shall his inheritance be given according to those that were numbered of him.
4545                                                                                                                                                                                                                                                                                                                                                                                                                       Notwithstanding the land shall be divided by lot: according to the names of the tribes of their fathers they shall inherit.
4546                                                                                                                                                                                                                                                                                                                                                                                                                                                                According to the lot shall the possession thereof be divided between many and few.
4547                                                                                                                                                                                                                                                                                                                                            And these are they that were numbered of the Levites after their families: of Gershon, the family of the Gershonites: of Kohath, the family of the Kohathites: of Merari, the family of the Merarites.
4548                                                                                                                                                                                                                                                                                                                                    These are the families of the Levites: the family of the Libnites, the family of the Hebronites, the family of the Mahlites, the family of the Mushites, the family of the Korathites. And Kohath begat Amram.
4549                                                                                                                                                                                                                                                                                                                                                                         And the name of Amram's wife was Jochebed, the daughter of Levi, whom her mother bare to Levi in Egypt: and she bare unto Amram Aaron and Moses, and Miriam their sister.
4550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And unto Aaron was born Nadab, and Abihu, Eleazar, and Ithamar.
4551                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Nadab and Abihu died, when they offered strange fire before the LORD.
4552                                                                                                                                                                                                                                                                                                    And those that were numbered of them were twenty and three thousand, all males from a month old and upward: for they were not numbered among the children of Israel, because there was no inheritance given them among the children of Israel.
4553                                                                                                                                                                                                                                                                                                                                                                                              These are they that were numbered by Moses and Eleazar the priest, who numbered the children of Israel in the plains of Moab by Jordan near Jericho.
4554                                                                                                                                                                                                                                                                                                                                                                                       But among these there was not a man of them whom Moses and Aaron the priest numbered, when they numbered the children of Israel in the wilderness of Sinai.
4555                                                                                                                                                                                                                                                                                                                                                                         For the LORD had said of them, They shall surely die in the wilderness. And there was not left a man of them, save Caleb the son of Jephunneh, and Joshua the son of Nun.
4556                                                                                                                                                                                                                                                                                   Then came the daughters of Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, of the families of Manasseh the son of Joseph: and these are the names of his daughters; Mahlah, Noah, and Hoglah, and Milcah, and Tirzah.
4557                                                                                                                                                                                                                                                                                                                                                                           And they stood before Moses, and before Eleazar the priest, and before the princes and all the congregation, by the door of the tabernacle of the congregation, saying,
4558                                                                                                                                                                                                                                                                                                                                                    Our father died in the wilderness, and he was not in the company of them that gathered themselves together against the LORD in the company of Korah; but died in his own sin, and had no sons.
4559                                                                                                                                                                                                                                                                                                                                                                               Why should the name of our father be done away from among his family, because he hath no son? Give unto us therefore a possession among the brethren of our father.
4560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses brought their cause before the LORD.
4561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4562                                                                                                                                                                                                                                                                                                                                        The daughters of Zelophehad speak right: thou shalt surely give them a possession of an inheritance among their father's brethren; and thou shalt cause the inheritance of their father to pass unto them.
4563                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt speak unto the children of Israel, saying, If a man die, and have no son, then ye shall cause his inheritance to pass unto his daughter.
4564                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if he have no daughter, then ye shall give his inheritance unto his brethren.
4565                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if he have no brethren, then ye shall give his inheritance unto his father's brethren.
4566                                                                                                                                                                                                                                                                                               And if his father have no brethren, then ye shall give his inheritance unto his kinsman that is next to him of his family, and he shall possess it: and it shall be unto the children of Israel a statute of judgment, as the LORD commanded Moses.
4567                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, Get thee up into this mount Abarim, and see the land which I have given unto the children of Israel.
4568                                                                                                                                                                                                                                                                                                                                                                                                                                       And when thou hast seen it, thou also shalt be gathered unto thy people, as Aaron thy brother was gathered.
4569                                                                                                                                                                                                                                                                                                                                   For ye rebelled against my commandment in the desert of Zin, in the strife of the congregation, to sanctify me at the water before their eyes: that is the water of Meribah in Kadesh in the wilderness of Zin.
4570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses spake unto the LORD, saying,
4571                                                                                                                                                                                                                                                                                                                                                                                                                                                               Let the LORD, the God of the spirits of all flesh, set a man over the congregation,
4572                                                                                                                                                                                                                                                                                                                                                Which may go out before them, and which may go in before them, and which may lead them out, and which may bring them in; that the congregation of the LORD be not as sheep which have no shepherd.
4573                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, Take thee Joshua the son of Nun, a man in whom is the spirit, and lay thine hand upon him;
4574                                                                                                                                                                                                                                                                                                                                                                                                                                     And set him before Eleazar the priest, and before all the congregation; and give him a charge in their sight.
4575                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt put some of thine honor upon him, that all the congregation of the children of Israel may be obedient.
4576                                                                                                                                                                                                                                                                           And he shall stand before Eleazar the priest, who shall ask counsel for him after the judgment of Urim before the LORD: at his word shall they go out, and at his word they shall come in, both he, and all the children of Israel with him, even all the congregation.
4577                                                                                                                                                                                                                                                                                                                                                                                                              And Moses did as the LORD commanded him: and he took Joshua, and set him before Eleazar the priest, and before all the congregation:
4578                                                                                                                                                                                                                                                                                                                                                                                                                                                And he laid his hands upon him, and gave him a charge, as the LORD commanded by the hand of Moses.
4579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4580                                                                                                                                                                                                                                                                                                                                                    Command the children of Israel, and say unto them, My offering, and my bread for my sacrifices made by fire, for a sweet savor unto me, shall ye observe to offer unto me in their due season.
4581                                                                                                                                                                                                                                                                                                                                                          And thou shalt say unto them, This is the offering made by fire which ye shall offer unto the LORD; two lambs of the first year without spot day by day, for a continual burnt offering.
4582                                                                                                                                                                                                                                                                                                                                                                                                                                                        The one lamb shalt thou offer in the morning, and the other lamb shalt thou offer at even;
4583                                                                                                                                                                                                                                                                                                                                                                                                                                  And a tenth part of an ephah of flour for a meat offering, mingled with the fourth part of an hin of beaten oil.
4584                                                                                                                                                                                                                                                                                                                                                                                                                    It is a continual burnt offering, which was ordained in mount Sinai for a sweet savor, a sacrifice made by fire unto the LORD.
4585                                                                                                                                                                                                                                                                                                                                                           And the drink offering thereof shall be the fourth part of an hin for the one lamb: in the holy place shalt thou cause the strong wine to be poured unto the LORD for a drink offering.
4586                                                                                                                                                                                                                                                                                                                                               And the other lamb shalt thou offer at even: as the meat offering of the morning, and as the drink offering thereof, thou shalt offer it, a sacrifice made by fire, of a sweet savor unto the LORD.
4587                                                                                                                                                                                                                                                                                                                                                                              And on the sabbath day two lambs of the first year without spot, and two tenth deals of flour for a meat offering, mingled with oil, and the drink offering thereof:
4588                                                                                                                                                                                                                                                                                                                                                                                                                                         This is the burnt offering of every sabbath, beside the continual burnt offering, and his drink offering.
4589                                                                                                                                                                                                                                                                                                                                                                                  And in the beginnings of your months ye shall offer a burnt offering unto the LORD; two young bullocks, and one ram, seven lambs of the first year without spot;
4590                                                                                                                                                                                                                                                                                                                                                                           And three tenth deals of flour for a meat offering, mingled with oil, for one bullock; and two tenth deals of flour for a meat offering, mingled with oil, for one ram;
4591                                                                                                                                                                                                                                                                                                                                                                              And a several tenth deal of flour mingled with oil for a meat offering unto one lamb; for a burnt offering of a sweet savor, a sacrifice made by fire unto the LORD.
4592                                                                                                                                                                                                                                                                                                             And their drink offerings shall be half an hin of wine unto a bullock, and the third part of an hin unto a ram, and a fourth part of an hin unto a lamb: this is the burnt offering of every month throughout the months of the year.
4593                                                                                                                                                                                                                                                                                                                                                                                                          And one kid of the goats for a sin offering unto the LORD shall be offered, beside the continual burnt offering, and his drink offering.
4594                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in the fourteenth day of the first month is the passover of the LORD.
4595                                                                                                                                                                                                                                                                                                                                                                                                                                                  And in the fifteenth day of this month is the feast: seven days shall unleavened bread be eaten.
4596                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the first day shall be an holy convocation; ye shall do no manner of servile work therein:
4597                                                                                                                                                                                                                                                                                                                                                       But ye shall offer a sacrifice made by fire for a burnt offering unto the LORD; two young bullocks, and one ram, and seven lambs of the first year: they shall be unto you without blemish:
4598                                                                                                                                                                                                                                                                                                                                                                                                        And their meat offering shall be of flour mingled with oil: three tenth deals shall ye offer for a bullock, and two tenth deals for a ram;
4599                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A several tenth deal shalt thou offer for every lamb, throughout the seven lambs:
4600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And one goat for a sin offering, to make an atonement for you.
4601                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall offer these beside the burnt offering in the morning, which is for a continual burnt offering.
4602                                                                                                                                                                                                                                                                                                                       After this manner ye shall offer daily, throughout the seven days, the meat of the sacrifice made by fire, of a sweet savor unto the LORD: it shall be offered beside the continual burnt offering, and his drink offering.
4603                                                                                                                                                                                                                                                                                                                                                                                                                                                            And on the seventh day ye shall have an holy convocation; ye shall do no servile work.
4604                                                                                                                                                                                                                                                                                                                                                                     Also in the day of the firstfruits, when ye bring a new meat offering unto the LORD, after your weeks be out, ye shall have an holy convocation; ye shall do no servile work:
4605                                                                                                                                                                                                                                                                                                                                                                                                                But ye shall offer the burnt offering for a sweet savor unto the LORD; two young bullocks, one ram, seven lambs of the first year;
4606                                                                                                                                                                                                                                                                                                                                                                                                                              And their meat offering of flour mingled with oil, three tenth deals unto one bullock, two tenth deals unto one ram,
4607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A several tenth deal unto one lamb, throughout the seven lambs;
4608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And one kid of the goats, to make an atonement for you.
4609                                                                                                                                                                                                                                                                                                                                                                                               Ye shall offer them beside the continual burnt offering, and his meat offering, (they shall be unto you without blemish) and their drink offerings.
4610                                                                                                                                                                                                                                                                                                                                                                            And in the seventh month, on the first day of the month, ye shall have an holy convocation; ye shall do no servile work: it is a day of blowing the trumpets unto you.
4611                                                                                                                                                                                                                                                                                                                                                                                               And ye shall offer a burnt offering for a sweet savor unto the LORD; one young bullock, one ram, and seven lambs of the first year without blemish:
4612                                                                                                                                                                                                                                                                                                                                                                                                                       And their meat offering shall be of flour mingled with oil, three tenth deals for a bullock, and two tenth deals for a ram,
4613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And one tenth deal for one lamb, throughout the seven lambs:
4614                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And one kid of the goats for a sin offering, to make an atonement for you:
4615                                                                                                                                                                                                                                                                                                            Beside the burnt offering of the month, and his meat offering, and the daily burnt offering, and his meat offering, and their drink offerings, according unto their manner, for a sweet savor, a sacrifice made by fire unto the LORD.
4616                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall have on the tenth day of this seventh month an holy convocation; and ye shall afflict your souls: ye shall not do any work therein:
4617                                                                                                                                                                                                                                                                                                                                                                       But ye shall offer a burnt offering unto the LORD for a sweet savor; one young bullock, one ram, and seven lambs of the first year; they shall be unto you without blemish:
4618                                                                                                                                                                                                                                                                                                                                                                                                                       And their meat offering shall be of flour mingled with oil, three tenth deals to a bullock, and two tenth deals to one ram,
4619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A several tenth deal for one lamb, throughout the seven lambs:
4620                                                                                                                                                                                                                                                                                                                                                                          One kid of the goats for a sin offering; beside the sin offering of atonement, and the continual burnt offering, and the meat offering of it, and their drink offerings.
4621                                                                                                                                                                                                                                                                                                                                                                                 And on the fifteenth day of the seventh month ye shall have an holy convocation; ye shall do no servile work, and ye shall keep a feast unto the LORD seven days:
4622                                                                                                                                                                                                                                                                                                                                            And ye shall offer a burnt offering, a sacrifice made by fire, of a sweet savor unto the LORD; thirteen young bullocks, two rams, and fourteen lambs of the first year; they shall be without blemish:
4623                                                                                                                                                                                                                                                                                                                                                                           And their meat offering shall be of flour mingled with oil, three tenth deals unto every bullock of the thirteen bullocks, two tenth deals to each ram of the two rams,
4624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And a several tenth deal to each lamb of the fourteen lambs:
4625                                                                                                                                                                                                                                                                                                                                                                                                                      And one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
4626                                                                                                                                                                                                                                                                                                                                                                                                                              And on the second day ye shall offer twelve young bullocks, two rams, fourteen lambs of the first year without spot:
4627                                                                                                                                                                                                                                                                                                                                                                                        And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
4628                                                                                                                                                                                                                                                                                                                                                                                                       And one kid of the goats for a sin offering; beside the continual burnt offering, and the meat offering thereof, and their drink offerings.
4629                                                                                                                                                                                                                                                                                                                                                                                                                                                 And on the third day eleven bullocks, two rams, fourteen lambs of the first year without blemish;
4630                                                                                                                                                                                                                                                                                                                                                                                        And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
4631                                                                                                                                                                                                                                                                                                                                                                                                                              And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.
4632                                                                                                                                                                                                                                                                                                                                                                                                                                               And on the fourth day ten bullocks, two rams, and fourteen lambs of the first year without blemish:
4633                                                                                                                                                                                                                                                                                                                                                                                            Their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
4634                                                                                                                                                                                                                                                                                                                                                                                                                      And one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
4635                                                                                                                                                                                                                                                                                                                                                                                                                                                  And on the fifth day nine bullocks, two rams, and fourteen lambs of the first year without spot:
4636                                                                                                                                                                                                                                                                                                                                                                                        And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
4637                                                                                                                                                                                                                                                                                                                                                                                                                              And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.
4638                                                                                                                                                                                                                                                                                                                                                                                                                                              And on the sixth day eight bullocks, two rams, and fourteen lambs of the first year without blemish:
4639                                                                                                                                                                                                                                                                                                                                                                                        And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
4640                                                                                                                                                                                                                                                                                                                                                                                                                                  And one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
4641                                                                                                                                                                                                                                                                                                                                                                                                                                            And on the seventh day seven bullocks, two rams, and fourteen lambs of the first year without blemish:
4642                                                                                                                                                                                                                                                                                                                                                                                        And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
4643                                                                                                                                                                                                                                                                                                                                                                                                                                  And one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
4644                                                                                                                                                                                                                                                                                                                                                                                                                                                           On the eighth day ye shall have a solemn assembly: ye shall do no servile work therein:
4645                                                                                                                                                                                                                                                                                                                                                                               But ye shall offer a burnt offering, a sacrifice made by fire, of a sweet savor unto the LORD: one bullock, one ram, seven lambs of the first year without blemish:
4646                                                                                                                                                                                                                                                                                                                                                                                              Their meat offering and their drink offerings for the bullock, for the ram, and for the lambs, shall be according to their number, after the manner:
4647                                                                                                                                                                                                                                                                                                                                                                                                                              And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.
4648                                                                                                                                                                                                                                                                                                                      These things ye shall do unto the LORD in your set feasts, beside your vows, and your freewill offerings, for your burnt offerings, and for your meat offerings, and for your drink offerings, and for your peace offerings.
4649                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses told the children of Israel according to all that the LORD commanded Moses.
4650                                                                                                                                                                                                                                                                                                                                                                                                          And Moses spake unto the heads of the tribes concerning the children of Israel, saying, This is the thing which the LORD hath commanded.
4651                                                                                                                                                                                                                                                                                                                                                                      If a man vow a vow unto the LORD, or swear an oath to bind his soul with a bond; he shall not break his word, he shall do according to all that proceedeth out of his mouth.
4652                                                                                                                                                                                                                                                                                                                                                                                                                                    If a woman also vow a vow unto the LORD, and bind herself by a bond, being in her father's house in her youth;
4653                                                                                                                                                                                                                                                                                                                             And her father hear her vow, and her bond wherewith she hath bound her soul, and her father shall hold his peace at her; then all her vows shall stand, and every bond wherewith she hath bound her soul shall stand.
4654                                                                                                                                                                                                                                                                                                                                But if her father disallow her in the day that he heareth; not any of her vows, or of her bonds wherewith she hath bound her soul, shall stand: and the LORD shall forgive her, because her father disallowed her.
4655                                                                                                                                                                                                                                                                                                                                                                                                                                 And if she had at all an husband, when she vowed, or uttered ought out of her lips, wherewith she bound her soul;
4656                                                                                                                                                                                                                                                                                                                                                                               And her husband heard it, and held his peace at her in the day that he heard it: then her vows shall stand, and her bonds wherewith she bound her soul shall stand.
4657                                                                                                                                                                                                                                                                                                                But if her husband disallowed her on the day that he heard it; then he shall make her vow which she vowed, and that which she uttered with her lips, wherewith she bound her soul, of none effect: and the LORD shall forgive her.
4658                                                                                                                                                                                                                                                                                                                                                                                                                            But every vow of a widow, and of her that is divorced, wherewith they have bound their souls, shall stand against her.
4659                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if she vowed in her husband's house, or bound her soul by a bond with an oath;
4660                                                                                                                                                                                                                                                                                                                                                                              And her husband heard it, and held his peace at her, and disallowed her not: then all her vows shall stand, and every bond wherewith she bound her soul shall stand.
4661                                                                                                                                                                                                                                                                                     But if her husband hath utterly made them void on the day he heard them; then whatsoever proceeded out of her lips concerning her vows, or concerning the bond of her soul, shall not stand: her husband hath made them void; and the LORD shall forgive her.
4662                                                                                                                                                                                                                                                                                                                                                                                                                             Every vow, and every binding oath to afflict the soul, her husband may establish it, or her husband may make it void.
4663                                                                                                                                                                                                                                                                                                                 But if her husband altogether hold his peace at her from day to day; then he establisheth all her vows, or all her bonds, which are upon her: he confirmeth them, because he held his peace at her in the day that he heard them.
4664                                                                                                                                                                                                                                                                                                                                                                                                                                           But if he shall any ways make them void after that he hath heard them; then he shall bear her iniquity.
4665                                                                                                                                                                                                                                                                                                                                                                            These are the statutes, which the LORD commanded Moses, between a man and his wife, between the father and his daughter, being yet in her youth in her father's house.
4666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4667                                                                                                                                                                                                                                                                                                                                                                                                                                                Avenge the children of Israel of the Midianites: afterward shalt thou be gathered unto thy people.
4668                                                                                                                                                                                                                                                                                                                                                                                              And Moses spake unto the people, saying, Arm some of yourselves unto the war, and let them go against the Midianites, and avenge the LORD of Midian.
4669                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of every tribe a thousand, throughout all the tribes of Israel, shall ye send to the war.
4670                                                                                                                                                                                                                                                                                                                                                                                                                                 So there were delivered out of the thousands of Israel, a thousand of every tribe, twelve thousand armed for war.
4671                                                                                                                                                                                                                                                                                                                                                          And Moses sent them to the war, a thousand of every tribe, them and Phinehas the son of Eleazar the priest, to the war, with the holy instruments, and the trumpets to blow in his hand.
4672                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they warred against the Midianites, as the LORD commanded Moses; and they slew all the males.
4673                                                                                                                                                                                                                                                                                                                                       And they slew the kings of Midian, beside the rest of them that were slain; namely, Evi, and Rekem, and Zur, and Hur, and Reba, five kings of Midian: Balaam also the son of Beor they slew with the sword.
4674                                                                                                                                                                                                                                                                                                                                                                       And the children of Israel took all the women of Midian captives, and their little ones, and took the spoil of all their cattle, and all their flocks, and all their goods.
4675                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they burnt all their cities wherein they dwelt, and all their goodly castles, with fire.
4676                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they took all the spoil, and all the prey, both of men and of beasts.
4677                                                                                                                                                                                                                                                                                                                       And they brought the captives, and the prey, and the spoil, unto Moses, and Eleazar the priest, and unto the congregation of the children of Israel, unto the camp at the plains of Moab, which are by Jordan near Jericho.
4678                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses, and Eleazar the priest, and all the princes of the congregation, went forth to meet them without the camp.
4679                                                                                                                                                                                                                                                                                                                                                                                                      And Moses was wroth with the officers of the host, with the captains over thousands, and captains over hundreds, which came from the battle.
4680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said unto them, Have ye saved all the women alive?
4681                                                                                                                                                                                                                                                                                                                                                 Behold, these caused the children of Israel, through the counsel of Balaam, to commit trespass against the LORD in the matter of Peor, and there was a plague among the congregation of the LORD.
4682                                                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore kill every male among the little ones, and kill every woman that hath known man by lying with him.
4683                                                                                                                                                                                                                                                                                                                                                                                                                                               But all the women children, that have not known a man by lying with him, keep alive for yourselves.
4684                                                                                                                                                                                                                                                                                                                                           And do ye abide without the camp seven days: whosoever hath killed any person, and whosoever hath touched any slain, purify both yourselves and your captives on the third day, and on the seventh day.
4685                                                                                                                                                                                                                                                                                                                                                                                                                             And purify all your raiment, and all that is made of skins, and all work of goats' hair, and all things made of wood.
4686                                                                                                                                                                                                                                                                                                                                                                                                        And Eleazar the priest said unto the men of war which went to the battle, This is the ordinance of the law which the LORD commanded Moses;
4687                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Only the gold, and the silver, the brass, the iron, the tin, and the lead,
4688                                                                                                                                                                                                                                                                                                           Every thing that may abide the fire, ye shall make it go through the fire, and it shall be clean: nevertheless it shall be purified with the water of separation: and all that abideth not the fire ye shall make go through the water.
4689                                                                                                                                                                                                                                                                                                                                                                                                                              And ye shall wash your clothes on the seventh day, and ye shall be clean, and afterward ye shall come into the camp.
4690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4691                                                                                                                                                                                                                                                                                                                                                                                                       Take the sum of the prey that was taken, both of man and of beast, thou, and Eleazar the priest, and the chief fathers of the congregation:
4692                                                                                                                                                                                                                                                                                                                                                                                                           And divide the prey into two parts; between them that took the war upon them, who went out to battle, and between all the congregation:
4693                                                                                                                                                                                                                                                                                                                                                                And levy a tribute unto the LORD of the men of war which went out to battle: one soul of five hundred, both of the persons, and of the beeves, and of the asses, and of the sheep:
4694                                                                                                                                                                                                                                                                                                                                                                                                                                                    Take it of their half, and give it unto Eleazar the priest, for an heave offering of the LORD.
4695                                                                                                                                                                                                                                                                                         And of the children of Israel's half, thou shalt take one portion of fifty, of the persons, of the beeves, of the asses, and of the flocks, of all manner of beasts, and give them unto the Levites, which keep the charge of the tabernacle of the LORD.
4696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses and Eleazar the priest did as the LORD commanded Moses.
4697                                                                                                                                                                                                                                                                                                                                                                                                 And the booty, being the rest of the prey which the men of war had caught, was six hundred thousand and seventy thousand and five thousand sheep,
4698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And threescore and twelve thousand beeves,
4699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And threescore and one thousand asses,
4700                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thirty and two thousand persons in all, of women that had not known man by lying with him.
4701                                                                                                                                                                                                                                                                                                                                                                                      And the half, which was the portion of them that went out to war, was in number three hundred thousand and seven and thirty thousand and five hundred sheep:
4702                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD's tribute of the sheep was six hundred and threescore and fifteen.
4703                                                                                                                                                                                                                                                                                                                                                                                                                                               And the beeves were thirty and six thousand; of which the LORD's tribute was threescore and twelve.
4704                                                                                                                                                                                                                                                                                                                                                                                                                                          And the asses were thirty thousand and five hundred; of which the LORD's tribute was threescore and one.
4705                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the persons were sixteen thousand; of which the LORD's tribute was thirty and two persons.
4706                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses gave the tribute, which was the LORD's heave offering, unto Eleazar the priest, as the LORD commanded Moses.
4707                                                                                                                                                                                                                                                                                                                                                                                                                                                               And of the children of Israel's half, which Moses divided from the men that warred,
4708                                                                                                                                                                                                                                                                                                                                                                                                      (Now the half that pertained unto the congregation was three hundred thousand and thirty thousand and seven thousand and five hundred sheep,
4709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thirty and six thousand beeves,
4710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thirty thousand asses and five hundred,
4711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And sixteen thousand persons;)
4712                                                                                                                                                                                                                                                                                                                               Even of the children of Israel's half, Moses took one portion of fifty, both of man and of beast, and gave them unto the Levites, which kept the charge of the tabernacle of the LORD; as the LORD commanded Moses.
4713                                                                                                                                                                                                                                                                                                                                                                                                                And the officers which were over thousands of the host, the captains of thousands, and captains of hundreds, came near unto Moses:
4714                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto Moses, Thy servants have taken the sum of the men of war which are under our charge, and there lacketh not one man of us.
4715                                                                                                                                                                                                                                                                                                                                       We have therefore brought an oblation for the LORD, what every man hath gotten, of jewels of gold, chains, and bracelets, rings, earrings, and tablets, to make an atonement for our souls before the LORD.
4716                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses and Eleazar the priest took the gold of them, even all wrought jewels.
4717                                                                                                                                                                                                                                                                                                                                                           And all the gold of the offering that they offered up to the LORD, of the captains of thousands, and of the captains of hundreds, was sixteen thousand seven hundred and fifty shekels.
4718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (For the men of war had taken spoil, every man for himself.)
4719                                                                                                                                                                                                                                                                                                                                   And Moses and Eleazar the priest took the gold of the captains of thousands and of hundreds, and brought it into the tabernacle of the congregation, for a memorial for the children of Israel before the LORD.
4720                                                                                                                                                                                                                                                                                                                                             Now the children of Reuben and the children of Gad had a very great multitude of cattle: and when they saw the land of Jazer, and the land of Gilead, that, behold, the place was a place for cattle;
4721                                                                                                                                                                                                                                                                                                                                                                                            The children of Gad and the children of Reuben came and spake unto Moses, and to Eleazar the priest, and unto the princes of the congregation, saying,
4722                                                                                                                                                                                                                                                                                                                                                                                                                                              Ataroth, and Dibon, and Jazer, and Nimrah, and Heshbon, and Elealeh, and Shebam, and Nebo, and Beon,
4723                                                                                                                                                                                                                                                                                                                                                                                                                      Even the country which the LORD smote before the congregation of Israel, is a land for cattle, and thy servants have cattle:
4724                                                                                                                                                                                                                                                                                                                                                                                               Wherefore, said they, if we have found grace in thy sight, let this land be given unto thy servants for a possession, and bring us not over Jordan.
4725                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said unto the children of Gad and to the children of Reuben, Shall your brethren go to war, and shall ye sit here?
4726                                                                                                                                                                                                                                                                                                                                                                                                                     And wherefore discourage ye the heart of the children of Israel from going over into the land which the LORD hath given them?
4727                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus did your fathers, when I sent them from Kadeshbarnea to see the land.
4728                                                                                                                                                                                                                                                                                                                                                     For when they went up unto the valley of Eshcol, and saw the land, they discouraged the heart of the children of Israel, that they should not go into the land which the LORD had given them.
4729                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD's anger was kindled the same time, and he sware, saying,
4730                                                                                                                                                                                                                                                                                                                                          Surely none of the men that came up out of Egypt, from twenty years old and upward, shall see the land which I sware unto Abraham, unto Isaac, and unto Jacob; because they have not wholly followed me:
4731                                                                                                                                                                                                                                                                                                                                                                                                                                  Save Caleb the son of Jephunneh the Kenezite, and Joshua the son of Nun: for they have wholly followed the LORD.
4732                                                                                                                                                                                                                                                                                                                                                      And the LORD's anger was kindled against Israel, and he made them wander in the wilderness forty years, until all the generation, that had done evil in the sight of the LORD, was consumed.
4733                                                                                                                                                                                                                                                                                                                                                                                                        And, behold, ye are risen up in your fathers' stead, an increase of sinful men, to augment yet the fierce anger of the LORD toward Israel.
4734                                                                                                                                                                                                                                                                                                                                                                                                                         For if ye turn away from after him, he will yet again leave them in the wilderness; and ye shall destroy all this people.
4735                                                                                                                                                                                                                                                                                                                                                                                                                              And they came near unto him, and said, We will build sheepfolds here for our cattle, and cities for our little ones:
4736                                                                                                                                                                                                                                                                                                                                     But we ourselves will go ready armed before the children of Israel, until we have brought them unto their place: and our little ones shall dwell in the fenced cities because of the inhabitants of the land.
4737                                                                                                                                                                                                                                                                                                                                                                                                                                        We will not return unto our houses, until the children of Israel have inherited every man his inheritance.
4738                                                                                                                                                                                                                                                                                                                                                                                                        For we will not inherit with them on yonder side Jordan, or forward; because our inheritance is fallen to us on this side Jordan eastward.
4739                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses said unto them, If ye will do this thing, if ye will go armed before the LORD to war,
4740                                                                                                                                                                                                                                                                                                                                                                                                                                   And will go all of you armed over Jordan before the LORD, until he hath driven out his enemies from before him,
4741                                                                                                                                                                                                                                                                                                                                                             And the land be subdued before the LORD: then afterward ye shall return, and be guiltless before the LORD, and before Israel; and this land shall be your possession before the LORD.
4742                                                                                                                                                                                                                                                                                                                                                                                                                                        But if ye will not do so, behold, ye have sinned against the LORD: and be sure your sin will find you out.
4743                                                                                                                                                                                                                                                                                                                                                                                                                              Build you cities for your little ones, and folds for your sheep; and do that which hath proceeded out of your mouth.
4744                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Gad and the children of Reuben spake unto Moses, saying, Thy servants will do as my lord commandeth.
4745                                                                                                                                                                                                                                                                                                                                                                                                                                               Our little ones, our wives, our flocks, and all our cattle, shall be there in the cities of Gilead:
4746                                                                                                                                                                                                                                                                                                                                                                                                                                            But thy servants will pass over, every man armed for war, before the Lord to battle, as my lord saith.
4747                                                                                                                                                                                                                                                                                                                                                                                                  So concerning them Moses commanded Eleazar the priest, and Joshua the son of Nun, and the chief fathers of the tribes of the children of Israel:
4748                                                                                                                                                                                                                                                                                    And Moses said unto them, If the children of Gad and the children of Reuben will pass with you over Jordan, every man armed to battle, before the LORD, and the land shall be subdued before you; then ye shall give them the land of Gilead for a possession:
4749                                                                                                                                                                                                                                                                                                                                                                                                                                       But if they will not pass over with you armed, they shall have possessions among you in the land of Canaan.
4750                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Gad and the children of Reuben answered, saying, As the LORD hath said unto thy servants, so will we do.
4751                                                                                                                                                                                                                                                                                                                                                                                                          We will pass over armed before the LORD into the land of Canaan, that the possession of our inheritance on this side Jordan may be ours.
4752                                                                                                                                                                                                                        And Moses gave unto them, even to the children of Gad, and to the children of Reuben, and unto half the tribe of Manasseh the son of Joseph, the kingdom of Sihon king of the Amorites, and the kingdom of Og king of Bashan, the land, with the cities thereof in the coasts, even the cities of the country round about.
4753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Gad built Dibon, and Ataroth, and Aroer,
4754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Atroth, Shophan, and Jaazer, and Jogbehah,
4755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Bethnimrah, and Bethharan, fenced cities: and folds for sheep.
4756                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Reuben built Heshbon, and Elealeh, and Kirjathaim,
4757                                                                                                                                                                                                                                                                                                                                                                                                                        And Nebo, and Baalmeon, (their names being changed,) and Shibmah: and gave other names unto the cities which they builded.
4758                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Machir the son of Manasseh went to Gilead, and took it, and dispossessed the Amorite which was in it.
4759                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses gave Gilead unto Machir the son of Manasseh; and he dwelt therein.
4760                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jair the son of Manasseh went and took the small towns thereof, and called them Havothjair.
4761                                                                                                                                                                                                                                                                                                                                                                                                                                                And Nobah went and took Kenath, and the villages thereof, and called it Nobah, after his own name.
4762                                                                                                                                                                                                                                                                                                                                                                                                  These are the journeys of the children of Israel, which went forth out of the land of Egypt with their armies under the hand of Moses and Aaron.
4763                                                                                                                                                                                                                                                                                                                                                                                          And Moses wrote their goings out according to their journeys by the commandment of the LORD: and these are their journeys according to their goings out.
4764                                                                                                                                                                                                                                                                                                                                 And they departed from Rameses in the first month, on the fifteenth day of the first month; on the morrow after the passover the children of Israel went out with an high hand in the sight of all the Egyptians.
4765                                                                                                                                                                                                                                                                                                                                                                                                            For the Egyptians buried all their firstborn, which the LORD had smitten among them: upon their gods also the LORD executed judgments.
4766                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel removed from Rameses, and pitched in Succoth.
4767                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they departed from Succoth, and pitched in Etham, which is in the edge of the wilderness.
4768                                                                                                                                                                                                                                                                                                                                                                                                                        And they removed from Etham, and turned again unto Pihahiroth, which is before Baalzephon: and they pitched before Migdol.
4769                                                                                                                                                                                                                                                                                                                                                             And they departed from before Pihahiroth, and passed through the midst of the sea into the wilderness, and went three days' journey in the wilderness of Etham, and pitched in Marah.
4770                                                                                                                                                                                                                                                                                                                                                                                           And they removed from Marah, and came unto Elim: and in Elim were twelve fountains of water, and threescore and ten palm trees; and they pitched there.
4771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Elim, and encamped by the Red sea.
4772                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they removed from the Red sea, and encamped in the wilderness of Sin.
4773                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they took their journey out of the wilderness of Sin, and encamped in Dophkah.
4774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they departed from Dophkah, and encamped in Alush.
4775                                                                                                                                                                                                                                                                                                                                                                                                                                                And they removed from Alush, and encamped at Rephidim, where was no water for the people to drink.
4776                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they departed from Rephidim, and pitched in the wilderness of Sinai.
4777                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they removed from the desert of Sinai, and pitched at Kibrothhattaavah.
4778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they departed from Kibrothhattaavah, and encamped at Hazeroth.
4779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they departed from Hazeroth, and pitched in Rithmah.
4780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they departed from Rithmah, and pitched at Rimmonparez.
4781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they departed from Rimmonparez, and pitched in Libnah.
4782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they removed from Libnah, and pitched at Rissah.
4783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they journeyed from Rissah, and pitched in Kehelathah.
4784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they went from Kehelathah, and pitched in mount Shapher.
4785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they removed from mount Shapher, and encamped in Haradah.
4786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Haradah, and pitched in Makheloth.
4787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Makheloth, and encamped at Tahath.
4788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they departed from Tahath, and pitched at Tarah.
4789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they removed from Tarah, and pitched in Mithcah.
4790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they went from Mithcah, and pitched in Hashmonah.
4791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they departed from Hashmonah, and encamped at Moseroth.
4792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they departed from Moseroth, and pitched in Benejaakan.
4793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they removed from Benejaakan, and encamped at Horhagidgad.
4794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they went from Horhagidgad, and pitched in Jotbathah.
4795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they removed from Jotbathah, and encamped at Ebronah.
4796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they departed from Ebronah, and encamped at Eziongaber.
4797                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Eziongaber, and pitched in the wilderness of Zin, which is Kadesh.
4798                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Kadesh, and pitched in mount Hor, in the edge of the land of Edom.
4799                                                                                                                                                                                                                                                                                                                            And Aaron the priest went up into mount Hor at the commandment of the LORD, and died there, in the fortieth year after the children of Israel were come out of the land of Egypt, in the first day of the fifth month.
4800                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Aaron was an hundred and twenty and three years old when he died in mount Hor.
4801                                                                                                                                                                                                                                                                                                                                                                                                                       And king Arad the Canaanite, which dwelt in the south in the land of Canaan, heard of the coming of the children of Israel.
4802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they departed from mount Hor, and pitched in Zalmonah.
4803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they departed from Zalmonah, and pitched in Punon.
4804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they departed from Punon, and pitched in Oboth.
4805                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they departed from Oboth, and pitched in Ijeabarim, in the border of Moab.
4806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they departed from Iim, and pitched in Dibongad.
4807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they removed from Dibongad, and encamped in Almondiblathaim.
4808                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they removed from Almondiblathaim, and pitched in the mountains of Abarim, before Nebo.
4809                                                                                                                                                                                                                                                                                                                                                                                                                                         And they departed from the mountains of Abarim, and pitched in the plains of Moab by Jordan near Jericho.
4810                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they pitched by Jordan, from Bethjesimoth even unto Abelshittim in the plains of Moab.
4811                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying,
4812                                                                                                                                                                                                                                                                                                                                                                                                                                     Speak unto the children of Israel, and say unto them, When ye are passed over Jordan into the land of Canaan;
4813                                                                                                                                                                                                                                                                                                                                                         Then ye shall drive out all the inhabitants of the land from before you, and destroy all their pictures, and destroy all their molten images, and quite pluck down all their high places:
4814                                                                                                                                                                                                                                                                                                                                                                                                                              And ye shall dispossess the inhabitants of the land, and dwell therein: for I have given you the land to possess it.
4815                                                                                                                                                                                                                               And ye shall divide the land by lot for an inheritance among your families: and to the more ye shall give the more inheritance, and to the fewer ye shall give the less inheritance: every man's inheritance shall be in the place where his lot falleth; according to the tribes of your fathers ye shall inherit.
4816                                                                                                                                                                                                                                                                                              But if ye will not drive out the inhabitants of the land from before you; then it shall come to pass, that those which ye let remain of them shall be pricks in your eyes, and thorns in your sides, and shall vex you in the land wherein ye dwell.
4817                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moreover it shall come to pass, that I shall do unto you, as I thought to do unto them.
4818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4819                                                                                                                                                                                                                                                                                                                                         Command the children of Israel, and say unto them, When ye come into the land of Canaan; (this is the land that shall fall unto you for an inheritance, even the land of Canaan with the coasts thereof:)
4820                                                                                                                                                                                                                                                                                                                                                                                Then your south quarter shall be from the wilderness of Zin along by the coast of Edom, and your south border shall be the outmost coast of the salt sea eastward:
4821                                                                                                                                                                                                                                                                                                                                And your border shall turn from the south to the ascent of Akrabbim, and pass on to Zin: and the going forth thereof shall be from the south to Kadeshbarnea, and shall go on to Hazaraddar, and pass on to Azmon:
4822                                                                                                                                                                                                                                                                                                                                                                                                                            And the border shall fetch a compass from Azmon unto the river of Egypt, and the goings out of it shall be at the sea.
4823                                                                                                                                                                                                                                                                                                                                                                                                                                     And as for the western border, ye shall even have the great sea for a border: this shall be your west border.
4824                                                                                                                                                                                                                                                                                                                                                                                                                                                     And this shall be your north border: from the great sea ye shall point out for you mount Hor:
4825                                                                                                                                                                                                                                                                                                                                                                                                                  From mount Hor ye shall point out your border unto the entrance of Hamath; and the goings forth of the border shall be to Zedad:
4826                                                                                                                                                                                                                                                                                                                                                                                                                           And the border shall go on to Ziphron, and the goings out of it shall be at Hazarenan: this shall be your north border.
4827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ye shall point out your east border from Hazarenan to Shepham:
4828                                                                                                                                                                                                                                                                                                                                                                       And the coast shall go down from Shepham to Riblah, on the east side of Ain; and the border shall descend, and shall reach unto the side of the sea of Chinnereth eastward:
4829                                                                                                                                                                                                                                                                                                                                                                                           And the border shall go down to Jordan, and the goings out of it shall be at the salt sea: this shall be your land with the coasts thereof round about.
4830                                                                                                                                                                                                                                                                                                                                                                 And Moses commanded the children of Israel, saying, This is the land which ye shall inherit by lot, which the LORD commanded to give unto the nine tribes, and to the half tribe:
4831                                                                                                                                                                                                                                                                                   For the tribe of the children of Reuben according to the house of their fathers, and the tribe of the children of Gad according to the house of their fathers, have received their inheritance; and half the tribe of Manasseh have received their inheritance:
4832                                                                                                                                                                                                                                                                                                                                                                                                                The two tribes and the half tribe have received their inheritance on this side Jordan near Jericho eastward, toward the sunrising.
4833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4834                                                                                                                                                                                                                                                                                                                                                                                                                               These are the names of the men which shall divide the land unto you: Eleazar the priest, and Joshua the son of Nun.
4835                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ye shall take one prince of every tribe, to divide the land by inheritance.
4836                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the names of the men are these: Of the tribe of Judah, Caleb the son of Jephunneh.
4837                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And of the tribe of the children of Simeon, Shemuel the son of Ammihud.
4838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the tribe of Benjamin, Elidad the son of Chislon.
4839                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the prince of the tribe of the children of Dan, Bukki the son of Jogli.
4840                                                                                                                                                                                                                                                                                                                                                                                                                                        The prince of the children of Joseph, for the tribe of the children of Manasseh, Hanniel the son of Ephod.
4841                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the prince of the tribe of the children of Ephraim, Kemuel the son of Shiphtan.
4842                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the prince of the tribe of the children of Zebulun, Elizaphan the son of Parnach.
4843                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the prince of the tribe of the children of Issachar, Paltiel the son of Azzan.
4844                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the prince of the tribe of the children of Asher, Ahihud the son of Shelomi.
4845                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the prince of the tribe of the children of Naphtali, Pedahel the son of Ammihud.
4846                                                                                                                                                                                                                                                                                                                                                                                                                               These are they whom the LORD commanded to divide the inheritance unto the children of Israel in the land of Canaan.
4847                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying,
4848                                                                                                                                                                                                                                                                                                                                       Command the children of Israel, that they give unto the Levites of the inheritance of their possession cities to dwell in; and ye shall give also unto the Levites suburbs for the cities round about them.
4849                                                                                                                                                                                                                                                                                                                                                                                                     And the cities shall they have to dwell in; and the suburbs of them shall be for their cattle, and for their goods, and for all their beasts.
4850                                                                                                                                                                                                                                                                                                                                                                                             And the suburbs of the cities, which ye shall give unto the Levites, shall reach from the wall of the city and outward a thousand cubits round about.
4851                                                                                                                                                                                                                                             And ye shall measure from without the city on the east side two thousand cubits, and on the south side two thousand cubits, and on the west side two thousand cubits, and on the north side two thousand cubits; and the city shall be in the midst: this shall be to them the suburbs of the cities.
4852                                                                                                                                                                                                                                                                                                                                And among the cities which ye shall give unto the Levites there shall be six cities for refuge, which ye shall appoint for the manslayer, that he may flee thither: and to them ye shall add forty and two cities.
4853                                                                                                                                                                                                                                                                                                                                                                                                                      So all the cities which ye shall give to the Levites shall be forty and eight cities: them shall ye give with their suburbs.
4854                                                                                                                                                                                                                                                        And the cities which ye shall give shall be of the possession of the children of Israel: from them that have many ye shall give many; but from them that have few ye shall give few: every one shall give of his cities unto the Levites according to his inheritance which he inheriteth.
4855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses, saying,
4856                                                                                                                                                                                                                                                                                                                                                                                                                                        Speak unto the children of Israel, and say unto them, When ye be come over Jordan into the land of Canaan;
4857                                                                                                                                                                                                                                                                                                                                                                                                          Then ye shall appoint you cities to be cities of refuge for you; that the slayer may flee thither, which killeth any person at unawares.
4858                                                                                                                                                                                                                                                                                                                                                                                                    And they shall be unto you cities for refuge from the avenger; that the manslayer die not, until he stand before the congregation in judgment.
4859                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And of these cities which ye shall give six cities shall ye have for refuge.
4860                                                                                                                                                                                                                                                                                                                                                                                                            Ye shall give three cities on this side Jordan, and three cities shall ye give in the land of Canaan, which shall be cities of refuge.
4861                                                                                                                                                                                                                                                                                                                                                    These six cities shall be a refuge, both for the children of Israel, and for the stranger, and for the sojourner among them: that every one that killeth any person unawares may flee thither.
4862                                                                                                                                                                                                                                                                                                                                                                                                                      And if he smite him with an instrument of iron, so that he die, he is a murderer: the murderer shall surely be put to death.
4863                                                                                                                                                                                                                                                                                                                                                                                                         And if he smite him with throwing a stone, wherewith he may die, and he die, he is a murderer: the murderer shall surely be put to death.
4864                                                                                                                                                                                                                                                                                                                                                                                                    Or if he smite him with an hand weapon of wood, wherewith he may die, and he die, he is a murderer: the murderer shall surely be put to death.
4865                                                                                                                                                                                                                                                                                                                                                                                                                                                    The revenger of blood himself shall slay the murderer: when he meeteth him, he shall slay him.
4866                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if he thrust him of hatred, or hurl at him by laying of wait, that he die;
4867                                                                                                                                                                                                                                                                                                                                                      Or in enmity smite him with his hand, that he die: he that smote him shall surely be put to death; for he is a murderer: the revenger of blood shall slay the murderer, when he meeteth him.
4868                                                                                                                                                                                                                                                                                                                                                                                                                                             But if he thrust him suddenly without enmity, or have cast upon him any thing without laying of wait,
4869                                                                                                                                                                                                                                                                                                                                                                                                    Or with any stone, wherewith a man may die, seeing him not, and cast it upon him, that he die, and was not his enemy, neither sought his harm:
4870                                                                                                                                                                                                                                                                                                                                                                                                                                      Then the congregation shall judge between the slayer and the revenger of blood according to these judgments:
4871                                                                                                                                                                                                                                                                  And the congregation shall deliver the slayer out of the hand of the revenger of blood, and the congregation shall restore him to the city of his refuge, whither he was fled: and he shall abide in it unto the death of the high priest, which was anointed with the holy oil.
4872                                                                                                                                                                                                                                                                                                                                                                                                                                       But if the slayer shall at any time come without the border of the city of his refuge, whither he was fled;
4873                                                                                                                                                                                                                                                                                                                                                                                     And the revenger of blood find him without the borders of the city of his refuge, and the revenger of blood kill the slayer; he shall not be guilty of blood:
4874                                                                                                                                                                                                                                                                                                                                                     Because he should have remained in the city of his refuge until the death of the high priest: but after the death of the high priest the slayer shall return into the land of his possession.
4875                                                                                                                                                                                                                                                                                                                                                                                                                                    So these things shall be for a statute of judgment unto you throughout your generations in all your dwellings.
4876                                                                                                                                                                                                                                                                                                                                                                                 Whoso killeth any person, the murderer shall be put to death by the mouth of witnesses: but one witness shall not testify against any person to cause him to die.
4877                                                                                                                                                                                                                                                                                                                                                                                                                 Moreover ye shall take no satisfaction for the life of a murderer, which is guilty of death: but he shall be surely put to death.
4878                                                                                                                                                                                                                                                                                                                                                                                  And ye shall take no satisfaction for him that is fled to the city of his refuge, that he should come again to dwell in the land, until the death of the priest.
4879                                                                                                                                                                                                                                                                                                                                                         So ye shall not pollute the land wherein ye are: for blood it defileth the land: and the land cannot be cleansed of the blood that is shed therein, but by the blood of him that shed it.
4880                                                                                                                                                                                                                                                                                                                                                                                                                         Defile not therefore the land which ye shall inhabit, wherein I dwell: for I the LORD dwell among the children of Israel.
4881                                                                                                                                                                                                                                                                                           And the chief fathers of the families of the children of Gilead, the son of Machir, the son of Manasseh, of the families of the sons of Joseph, came near, and spake before Moses, and before the princes, the chief fathers of the children of Israel:
4882                                                                                                                                                                                                                                                                                                                       And they said, The LORD commanded my lord to give the land for an inheritance by lot to the children of Israel: and my lord was commanded by the LORD to give the inheritance of Zelophehad our brother unto his daughters.
4883                                                                                                                                                                                                                                           And if they be married to any of the sons of the other tribes of the children of Israel, then shall their inheritance be taken from the inheritance of our fathers, and shall be put to the inheritance of the tribe whereunto they are received: so shall it be taken from the lot of our inheritance.
4884                                                                                                                                                                                                                                                                                            And when the jubilee of the children of Israel shall be, then shall their inheritance be put unto the inheritance of the tribe whereunto they are received: so shall their inheritance be taken away from the inheritance of the tribe of our fathers.
4885                                                                                                                                                                                                                                                                                                                                                                                                             And Moses commanded the children of Israel according to the word of the LORD, saying, The tribe of the sons of Joseph hath said well.
4886                                                                                                                                                                                                                                                                                                                                           This is the thing which the LORD doth command concerning the daughters of Zelophehad, saying, Let them marry to whom they think best; only to the family of the tribe of their father shall they marry.
4887                                                                                                                                                                                                                                                                                                                                                     So shall not the inheritance of the children of Israel remove from tribe to tribe: for every one of the children of Israel shall keep himself to the inheritance of the tribe of his fathers.
4888                                                                                                                                                                                                                                                                                                       And every daughter, that possesseth an inheritance in any tribe of the children of Israel, shall be wife unto one of the family of the tribe of her father, that the children of Israel may enjoy every man the inheritance of his fathers.
4889                                                                                                                                                                                                                                                                                                                                                                            Neither shall the inheritance remove from one tribe to another tribe; but every one of the tribes of the children of Israel shall keep himself to his own inheritance.
4890                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Even as the LORD commanded Moses, so did the daughters of Zelophehad:
4891                                                                                                                                                                                                                                                                                                                                                                                                               For Mahlah, Tirzah, and Hoglah, and Milcah, and Noah, the daughters of Zelophehad, were married unto their father's brothers' sons:
4892                                                                                                                                                                                                                                                                                                                                                                                     And they were married into the families of the sons of Manasseh the son of Joseph, and their inheritance remained in the tribe of the family of their father.
4893                                                                                                                                                                                                                                                                                                                                                                             These are the commandments and the judgments, which the LORD commanded by the hand of Moses unto the children of Israel in the plains of Moab by Jordan near Jericho.
4894                                                                                                                                                                                                                                                                                                                                               These be the words which Moses spake unto all Israel on this side Jordan in the wilderness, in the plain over against the Red sea, between Paran, and Tophel, and Laban, and Hazeroth, and Dizahab.
4895                                                                                                                                                                                                                                                                                                                                                                                                                                                           (There are eleven days' journey from Horeb by the way of mount Seir unto Kadeshbarnea.)
4896                                                                                                                                                                                                                                                                                                                            And it came to pass in the fortieth year, in the eleventh month, on the first day of the month, that Moses spake unto the children of Israel, according unto all that the LORD had given him in commandment unto them;
4897                                                                                                                                                                                                                                                                                                                                                                                                           After he had slain Sihon the king of the Amorites, which dwelt in Heshbon, and Og the king of Bashan, which dwelt at Astaroth in Edrei:
4898                                                                                                                                                                                                                                                                                                                                                                                                                                                                On this side Jordan, in the land of Moab, began Moses to declare this law, saying,
4899                                                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD our God spake unto us in Horeb, saying, Ye have dwelt long enough in this mount:
4900                                                                                                                                                                                                                                                     Turn you, and take your journey, and go to the mount of the Amorites, and unto all the places nigh thereunto, in the plain, in the hills, and in the vale, and in the south, and by the sea side, to the land of the Canaanites, and unto Lebanon, unto the great river, the river Euphrates.
4901                                                                                                                                                                                                                                                                                                                                                             Behold, I have set the land before you: go in and possess the land which the LORD sware unto your fathers, Abraham, Isaac, and Jacob, to give unto them and to their seed after them.
4902                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I spake unto you at that time, saying, I am not able to bear you myself alone:
4903                                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD your God hath multiplied you, and, behold, ye are this day as the stars of heaven for multitude.
4904                                                                                                                                                                                                                                                                                                                                                                                                                          (The LORD God of your fathers make you a thousand times so many more as ye are, and bless you, as he hath promised you!)
4905                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How can I myself alone bear your cumbrance, and your burden, and your strife?
4906                                                                                                                                                                                                                                                                                                                                                                                                                                          Take you wise men, and understanding, and known among your tribes, and I will make them rulers over you.
4907                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ye answered me, and said, The thing which thou hast spoken is good for us to do.
4908                                                                                                                                                                                                                                                                                                                    So I took the chief of your tribes, wise men, and known, and made them heads over you, captains over thousands, and captains over hundreds, and captains over fifties, and captains over tens, and officers among your tribes.
4909                                                                                                                                                                                                                                                                                                                                                                And I charged your judges at that time, saying, Hear the causes between your brethren, and judge righteously between every man and his brother, and the stranger that is with him.
4910                                                                                                                                                                                                                                                                                                   Ye shall not respect persons in judgment; but ye shall hear the small as well as the great; ye shall not be afraid of the face of man; for the judgment is God's: and the cause that is too hard for you, bring it unto me, and I will hear it.
4911                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I commanded you at that time all the things which ye should do.
4912                                                                                                                                                                                                                                                                                                                                  And when we departed from Horeb, we went through all that great and terrible wilderness, which ye saw by the way of the mountain of the Amorites, as the LORD our God commanded us; and we came to Kadeshbarnea.
4913                                                                                                                                                                                                                                                                                                                                                                                                                                     And I said unto you, Ye are come unto the mountain of the Amorites, which the LORD our God doth give unto us.
4914                                                                                                                                                                                                                                                                                                                                                                               Behold, the LORD thy God hath set the land before thee: go up and possess it, as the LORD God of thy fathers hath said unto thee; fear not, neither be discouraged.
4915                                                                                                                                                                                                                                                                                                                                    And ye came near unto me every one of you, and said, We will send men before us, and they shall search us out the land, and bring us word again by what way we must go up, and into what cities we shall come.
4916                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the saying pleased me well: and I took twelve men of you, one of a tribe:
4917                                                                                                                                                                                                                                                                                                                                                                                                                                           And they turned and went up into the mountain, and came unto the valley of Eshcol, and searched it out.
4918                                                                                                                                                                                                                                                                                                                                                                   And they took of the fruit of the land in their hands, and brought it down unto us, and brought us word again, and said, It is a good land which the LORD our God doth give us.
4919                                                                                                                                                                                                                                                                                                                                                                                                                                                    Notwithstanding ye would not go up, but rebelled against the commandment of the LORD your God:
4920                                                                                                                                                                                                                                                                                                                                                                And ye murmured in your tents, and said, Because the LORD hated us, he hath brought us forth out of the land of Egypt, to deliver us into the hand of the Amorites, to destroy us.
4921                                                                                                                                                                                                                                                                                                                         Whither shall we go up? our brethren have discouraged our heart, saying, The people is greater and taller than we; the cities are great and walled up to heaven; and moreover we have seen the sons of the Anakims there.
4922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then I said unto you, Dread not, neither be afraid of them.
4923                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD your God which goeth before you, he shall fight for you, according to all that he did for you in Egypt before your eyes;
4924                                                                                                                                                                                                                                                                                                                                                                          And in the wilderness, where thou hast seen how that the LORD thy God bare thee, as a man doth bear his son, in all the way that ye went, until ye came into this place.
4925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet in this thing ye did not believe the LORD your God,
4926                                                                                                                                                                                                                                                                                                                                                                                  Who went in the way before you, to search you out a place to pitch your tents in, in fire by night, to show you by what way ye should go, and in a cloud by day.
4927                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD heard the voice of your words, and was wroth, and sware, saying,
4928                                                                                                                                                                                                                                                                                                                                                                                                                      Surely there shall not one of these men of this evil generation see that good land, which I sware to give unto your fathers.
4929                                                                                                                                                                                                                                                                                                                                                                       Save Caleb the son of Jephunneh; he shall see it, and to him will I give the land that he hath trodden upon, and to his children, because he hath wholly followed the LORD.
4930                                                                                                                                                                                                                                                                                                                                                                                                                                                        Also the LORD was angry with me for your sakes, saying, Thou also shalt not go in thither.
4931                                                                                                                                                                                                                                                                                                                                                                                                            But Joshua the son of Nun, which standeth before thee, he shall go in thither: encourage him: for he shall cause Israel to inherit it.
4932                                                                                                                                                                                                                                                                                                                        Moreover your little ones, which ye said should be a prey, and your children, which in that day had no knowledge between good and evil, they shall go in thither, and unto them will I give it, and they shall possess it.
4933                                                                                                                                                                                                                                                                                                                                                                                                                                                    But as for you, turn you, and take your journey into the wilderness by the way of the Red sea.
4934                                                                                                                                                                                                                                                                                                   Then ye answered and said unto me, We have sinned against the LORD, we will go up and fight, according to all that the LORD our God commanded us. And when ye had girded on every man his weapons of war, ye were ready to go up into the hill.
4935                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto me, Say unto them. Go not up, neither fight; for I am not among you; lest ye be smitten before your enemies.
4936                                                                                                                                                                                                                                                                                                                                                                                                           So I spake unto you; and ye would not hear, but rebelled against the commandment of the LORD, and went presumptuously up into the hill.
4937                                                                                                                                                                                                                                                                                                                                                                                                    And the Amorites, which dwelt in that mountain, came out against you, and chased you, as bees do, and destroyed you in Seir, even unto Hormah.
4938                                                                                                                                                                                                                                                                                                                                                                                                                                    And ye returned and wept before the LORD; but the LORD would not hearken to your voice, nor give ear unto you.
4939                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So ye abode in Kadesh many days, according unto the days that ye abode there.
4940                                                                                                                                                                                                                                                                                                                                                                                             Then we turned, and took our journey into the wilderness by the way of the Red sea, as the LORD spake unto me: and we compassed mount Seir many days.
4941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto me, saying,
4942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ye have compassed this mountain long enough: turn you northward.
4943                                                                                                                                                                                                                                                                                                                                   And command thou the people, saying, Ye are to pass through the coast of your brethren the children of Esau, which dwell in Seir; and they shall be afraid of you: take ye good heed unto yourselves therefore:
4944                                                                                                                                                                                                                                                                                                                                                                                       Meddle not with them; for I will not give you of their land, no, not so much as a foot breadth; because I have given mount Seir unto Esau for a possession.
4945                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall buy meat of them for money, that ye may eat; and ye shall also buy water of them for money, that ye may drink.
4946                                                                                                                                                                                                                                                                                                                                      For the LORD thy God hath blessed thee in all the works of thy hand: he knoweth thy walking through this great wilderness: these forty years the LORD thy God hath been with thee; thou hast lacked nothing.
4947                                                                                                                                                                                                                                                                                                                                       And when we passed by from our brethren the children of Esau, which dwelt in Seir, through the way of the plain from Elath, and from Eziongaber, we turned and passed by the way of the wilderness of Moab.
4948                                                                                                                                                                                                                                                                                                                            And the LORD said unto me, Distress not the Moabites, neither contend with them in battle: for I will not give thee of their land for a possession; because I have given Ar unto the children of Lot for a possession.
4949                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Emims dwelt therein in times past, a people great, and many, and tall, as the Anakims;
4950                                                                                                                                                                                                                                                                                                                                                                                                                                                             Which also were accounted giants, as the Anakims; but the Moabites called them Emims.
4951                                                                                                                                                                                                                                                                                                         The Horims also dwelt in Seir beforetime; but the children of Esau succeeded them, when they had destroyed them from before them, and dwelt in their stead; as Israel did unto the land of his possession, which the LORD gave unto them.
4952                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now rise up, said I, and get you over the brook Zered. And we went over the brook Zered.
4953                                                                                                                                                                                                                                                                                                               And the space in which we came from Kadeshbarnea, until we were come over the brook Zered, was thirty and eight years; until all the generation of the men of war were wasted out from among the host, as the LORD sware unto them.
4954                                                                                                                                                                                                                                                                                                                                                                                                                                  For indeed the hand of the LORD was against them, to destroy them from among the host, until they were consumed.
4955                                                                                                                                                                                                                                                                                                                                                                                                                                                         So it came to pass, when all the men of war were consumed and dead from among the people,
4956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That the LORD spake unto me, saying,
4957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou art to pass over through Ar, the coast of Moab, this day:
4958                                                                                                                                                                                                                                                                                           And when thou comest nigh over against the children of Ammon, distress them not, nor meddle with them: for I will not give thee of the land of the children of Ammon any possession; because I have given it unto the children of Lot for a possession.
4959                                                                                                                                                                                                                                                                                                                                                                                                                              (That also was accounted a land of giants: giants dwelt therein in old time; and the Ammonites call them Zamzummims;
4960                                                                                                                                                                                                                                                                                                                                                                                                   A people great, and many, and tall, as the Anakims; but the LORD destroyed them before them; and they succeeded them, and dwelt in their stead:
4961                                                                                                                                                                                                                                                                                                                                                                      As he did to the children of Esau, which dwelt in Seir, when he destroyed the Horims from before them; and they succeeded them, and dwelt in their stead even unto this day:
4962                                                                                                                                                                                                                                                                                                                                                                                                And the Avims which dwelt in Hazerim, even unto Azzah, the Caphtorims, which came forth out of Caphtor, destroyed them, and dwelt in their stead.)
4963                                                                                                                                                                                                                                                                                                                                         Rise ye up, take your journey, and pass over the river Arnon: behold, I have given into thine hand Sihon the Amorite, king of Heshbon, and his land: begin to possess it, and contend with him in battle.
4964                                                                                                                                                                                                                                                                                                                                        This day will I begin to put the dread of thee and the fear of thee upon the nations that are under the whole heaven, who shall hear report of thee, and shall tremble, and be in anguish because of thee.
4965                                                                                                                                                                                                                                                                                                                                                                                                                                   And I sent messengers out of the wilderness of Kedemoth unto Sihon king of Heshbon with words of peace, saying,
4966                                                                                                                                                                                                                                                                                                                                                                                                                           Let me pass through thy land: I will go along by the high way, I will neither turn unto the right hand nor to the left.
4967                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt sell me meat for money, that I may eat; and give me water for money, that I may drink: only I will pass through on my feet;
4968                                                                                                                                                                                                                                                                                                                                                                    (As the children of Esau which dwell in Seir, and the Moabites which dwell in Ar, did unto me;) until I shall pass over Jordan into the land which the LORD our God giveth us.
4969                                                                                                                                                                                                                                                                                                                                                   But Sihon king of Heshbon would not let us pass by him: for the LORD thy God hardened his spirit, and made his heart obstinate, that he might deliver him into thy hand, as appeareth this day.
4970                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto me, Behold, I have begun to give Sihon and his land before thee: begin to possess, that thou mayest inherit his land.
4971                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Sihon came out against us, he and all his people, to fight at Jahaz.
4972                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD our God delivered him before us; and we smote him, and his sons, and all his people.
4973                                                                                                                                                                                                                                                                                                                                                                                                And we took all his cities at that time, and utterly destroyed the men, and the women, and the little ones, of every city, we left none to remain:
4974                                                                                                                                                                                                                                                                                                                                                                                                                                                     Only the cattle we took for a prey unto ourselves, and the spoil of the cities which we took.
4975                                                                                                                                                                                                                                                                                                                                              From Aroer, which is by the brink of the river of Arnon, and from the city that is by the river, even unto Gilead, there was not one city too strong for us: the LORD our God delivered all unto us:
4976                                                                                                                                                                                                                                                                                                                                                       Only unto the land of the children of Ammon thou camest not, nor unto any place of the river Jabbok, nor unto the cities in the mountains, nor unto whatsoever the LORD our God forbade us.
4977                                                                                                                                                                                                                                                                                                                                                                                                          Then we turned, and went up the way to Bashan: and Og the king of Bashan came out against us, he and all his people, to battle at Edrei.
4978                                                                                                                                                                                                                                                                                                                               And the LORD said unto me, Fear him not: for I will deliver him, and all his people, and his land, into thy hand; and thou shalt do unto him as thou didst unto Sihon king of the Amorites, which dwelt at Heshbon.
4979                                                                                                                                                                                                                                                                                                                                                                                              So the LORD our God delivered into our hands Og also, the king of Bashan, and all his people: and we smote him until none was left to him remaining.
4980                                                                                                                                                                                                                                                                                                                                                                               And we took all his cities at that time, there was not a city which we took not from them, threescore cities, all the region of Argob, the kingdom of Og in Bashan.
4981                                                                                                                                                                                                                                                                                                                                                                                                                                                All these cities were fenced with high walls, gates, and bars; beside unwalled towns a great many.
4982                                                                                                                                                                                                                                                                                                                                                                                                              And we utterly destroyed them, as we did unto Sihon king of Heshbon, utterly destroying the men, women, and children, of every city.
4983                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But all the cattle, and the spoil of the cities, we took for a prey to ourselves.
4984                                                                                                                                                                                                                                                                                                                                                                                       And we took at that time out of the hand of the two kings of the Amorites the land that was on this side Jordan, from the river of Arnon unto mount Hermon;
4985                                                                                                                                                                                                                                                                                                                                                                                                                                                                        (Which Hermon the Sidonians call Sirion; and the Amorites call it Shenir;)
4986                                                                                                                                                                                                                                                                                                                                                                                                                       All the cities of the plain, and all Gilead, and all Bashan, unto Salchah and Edrei, cities of the kingdom of Og in Bashan.
4987                                                                                                                                                                                                                                                                                         For only Og king of Bashan remained of the remnant of giants; behold his bedstead was a bedstead of iron; is it not in Rabbath of the children of Ammon? nine cubits was the length thereof, and four cubits the breadth of it, after the cubit of a man.
4988                                                                                                                                                                                                                                                                                                                                                            And this land, which we possessed at that time, from Aroer, which is by the river Arnon, and half mount Gilead, and the cities thereof, gave I unto the Reubenites and to the Gadites.
4989                                                                                                                                                                                                                                                                                                                                                           And the rest of Gilead, and all Bashan, being the kingdom of Og, gave I unto the half tribe of Manasseh; all the region of Argob, with all Bashan, which was called the land of giants.
4990                                                                                                                                                                                                                                                                                                                                                                             Jair the son of Manasseh took all the country of Argob unto the coasts of Geshuri and Maachathi; and called them after his own name, Bashanhavothjair, unto this day.
4991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I gave Gilead unto Machir.
4992                                                                                                                                                                                                                                                                                                                                               And unto the Reubenites and unto the Gadites I gave from Gilead even unto the river Arnon half the valley, and the border even unto the river Jabbok, which is the border of the children of Ammon;
4993                                                                                                                                                                                                                                                                                                                                                                                               The plain also, and Jordan, and the coast thereof, from Chinnereth even unto the sea of the plain, even the salt sea, under Ashdothpisgah eastward.
4994                                                                                                                                                                                                                                                                                                                                          And I commanded you at that time, saying, The LORD your God hath given you this land to possess it: ye shall pass over armed before your brethren the children of Israel, all that are meet for the war.
4995                                                                                                                                                                                                                                                                                                                                                                                                  But your wives, and your little ones, and your cattle, (for I know that ye have much cattle,) shall abide in your cities which I have given you;
4996                                                                                                                                                                                                                                                                                               Until the LORD have given rest unto your brethren, as well as unto you, and until they also possess the land which the LORD your God hath given them beyond Jordan: and then shall ye return every man unto his possession, which I have given you.
4997                                                                                                                                                                                                                                                                                                                                                     And I commanded Joshua at that time, saying, Thine eyes have seen all that the LORD your God hath done unto these two kings: so shall the LORD do unto all the kingdoms whither thou passest.
4998                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall not fear them: for the LORD your God he shall fight for you.
4999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I besought the LORD at that time, saying,
5000                                                                                                                                                                                                                                                                                                                                                  O Lord GOD, thou hast begun to show thy servant thy greatness, and thy mighty hand: for what God is there in heaven or in earth, that can do according to thy works, and according to thy might?
5001                                                                                                                                                                                                                                                                                                                                                                                                                                      I pray thee, let me go over, and see the good land that is beyond Jordan, that goodly mountain, and Lebanon.
5002                                                                                                                                                                                                                                                                                                                                                                                       But the LORD was wroth with me for your sakes, and would not hear me: and the LORD said unto me, Let it suffice thee; speak no more unto me of this matter.
5003                                                                                                                                                                                                                                                                                                                                                           Get thee up into the top of Pisgah, and lift up thine eyes westward, and northward, and southward, and eastward, and behold it with thine eyes: for thou shalt not go over this Jordan.
5004                                                                                                                                                                                                                                                                                                                                                                              But charge Joshua, and encourage him, and strengthen him: for he shall go over before this people, and he shall cause them to inherit the land which thou shalt see.
5005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So we abode in the valley over against Bethpeor.
5006                                                                                                                                                                                                                                                                                                                                     Now therefore hearken, O Israel, unto the statutes and unto the judgments, which I teach you, for to do them, that ye may live, and go in and possess the land which the LORD God of your fathers giveth you.
5007                                                                                                                                                                                                                                                                                                                                                                          Ye shall not add unto the word which I command you, neither shall ye diminish ought from it, that ye may keep the commandments of the LORD your God which I command you.
5008                                                                                                                                                                                                                                                                                                                                                                                           Your eyes have seen what the LORD did because of Baalpeor: for all the men that followed Baalpeor, the LORD thy God hath destroyed them from among you.
5009                                                                                                                                                                                                                                                                                                                                                                                                                                                                But ye that did cleave unto the LORD your God are alive every one of you this day.
5010                                                                                                                                                                                                                                                                                                                                                                                             Behold, I have taught you statutes and judgments, even as the LORD my God commanded me, that ye should do so in the land whither ye go to possess it.
5011                                                                                                                                                                                                                                                                                                                                Keep therefore and do them; for this is your wisdom and your understanding in the sight of the nations, which shall hear all these statutes, and say, Surely this great nation is a wise and understanding people.
5012                                                                                                                                                                                                                                                                                                                                                                                                                For what nation is there so great, who hath God so nigh unto them, as the LORD our God is in all things that we call upon him for?
5013                                                                                                                                                                                                                                                                                                                                                                                                                And what nation is there so great, that hath statutes and judgments so righteous as all this law, which I set before you this day?
5014                                                                                                                                                                                                                                                                                                                       Only take heed to thyself, and keep thy soul diligently, lest thou forget the things which thine eyes have seen, and lest they depart from thy heart all the days of thy life: but teach them thy sons, and thy sons' sons;
5015                                                                                                                                                                                                                                                    Specially the day that thou stoodest before the LORD thy God in Horeb, when the LORD said unto me, Gather me the people together, and I will make them hear my words, that they may learn to fear me all the days that they shall live upon the earth, and that they may teach their children.
5016                                                                                                                                                                                                                                                                                                                                                                                             And ye came near and stood under the mountain; and the mountain burned with fire unto the midst of heaven, with darkness, clouds, and thick darkness.
5017                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto you out of the midst of the fire: ye heard the voice of the words, but saw no similitude; only ye heard a voice.
5018                                                                                                                                                                                                                                                                                                                                                                                                      And he declared unto you his covenant, which he commanded you to perform, even ten commandments; and he wrote them upon two tables of stone.
5019                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD commanded me at that time to teach you statutes and judgments, that ye might do them in the land whither ye go over to possess it.
5020                                                                                                                                                                                                                                                                                                                                                                                    Take ye therefore good heed unto yourselves; for ye saw no manner of similitude on the day that the LORD spake unto you in Horeb out of the midst of the fire:
5021                                                                                                                                                                                                                                                                                                                                                                                                                            Lest ye corrupt yourselves, and make you a graven image, the similitude of any figure, the likeness of male or female,
5022                                                                                                                                                                                                                                                                                                                                                                                                                                           The likeness of any beast that is on the earth, the likeness of any winged fowl that flieth in the air,
5023                                                                                                                                                                                                                                                                                                                                                                                                                          The likeness of any thing that creepeth on the ground, the likeness of any fish that is in the waters beneath the earth:
5024                                                                                                                                                                                                                                                                            And lest thou lift up thine eyes unto heaven, and when thou seest the sun, and the moon, and the stars, even all the host of heaven, shouldest be driven to worship them, and serve them, which the LORD thy God hath divided unto all nations under the whole heaven.
5025                                                                                                                                                                                                                                                                                                                                                                                        But the LORD hath taken you, and brought you forth out of the iron furnace, even out of Egypt, to be unto him a people of inheritance, as ye are this day.
5026                                                                                                                                                                                                                                                                                                                                        Furthermore the LORD was angry with me for your sakes, and sware that I should not go over Jordan, and that I should not go in unto that good land, which the LORD thy God giveth thee for an inheritance:
5027                                                                                                                                                                                                                                                                                                                                                                                                                                         But I must die in this land, I must not go over Jordan: but ye shall go over, and possess that good land.
5028                                                                                                                                                                                                                                                                                                                                       Take heed unto yourselves, lest ye forget the covenant of the LORD your God, which he made with you, and make you a graven image, or the likeness of any thing, which the LORD thy God hath forbidden thee.
5029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For the LORD thy God is a consuming fire, even a jealous God.
5030                                                                                                                                                                                                                                                                           When thou shalt beget children, and children's children, and ye shall have remained long in the land, and shall corrupt yourselves, and make a graven image, or the likeness of any thing, and shall do evil in the sight of the LORD thy God, to provoke him to anger:
5031                                                                                                                                                                                                                                                                                                                   I call heaven and earth to witness against you this day, that ye shall soon utterly perish from off the land whereunto ye go over Jordan to possess it; ye shall not prolong your days upon it, but shall utterly be destroyed.
5032                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD shall scatter you among the nations, and ye shall be left few in number among the heathen, whither the LORD shall lead you.
5033                                                                                                                                                                                                                                                                                                                                                                                                                          And there ye shall serve gods, the work of men's hands, wood and stone, which neither see, nor hear, nor eat, nor smell.
5034                                                                                                                                                                                                                                                                                                                                                                                                              But if from thence thou shalt seek the LORD thy God, thou shalt find him, if thou seek him with all thy heart and with all thy soul.
5035                                                                                                                                                                                                                                                                                                                                                                           When thou art in tribulation, and all these things are come upon thee, even in the latter days, if thou turn to the LORD thy God, and shalt be obedient unto his voice;
5036                                                                                                                                                                                                                                                                                                                                                                                        (For the LORD thy God is a merciful God;) he will not forsake thee, neither destroy thee, nor forget the covenant of thy fathers which he sware unto them.
5037                                                                                                                                                                                                                                                                                  For ask now of the days that are past, which were before thee, since the day that God created man upon the earth, and ask from the one side of heaven unto the other, whether there hath been any such thing as this great thing is, or hath been heard like it?
5038                                                                                                                                                                                                                                                                                                                                                                                                                                        Did ever people hear the voice of God speaking out of the midst of the fire, as thou hast heard, and live?
5039                                                                                                                                                                                                                                                    Or hath God assayed to go and take him a nation from the midst of another nation, by temptations, by signs, and by wonders, and by war, and by a mighty hand, and by a stretched out arm, and by great terrors, according to all that the LORD your God did for you in Egypt before your eyes?
5040                                                                                                                                                                                                                                                                                                                                                                                                                                          Unto thee it was showed, that thou mightest know that the LORD he is God; there is none else beside him.
5041                                                                                                                                                                                                                                                                                                                                                                Out of heaven he made thee to hear his voice, that he might instruct thee: and upon earth he showed thee his great fire; and thou heardest his words out of the midst of the fire.
5042                                                                                                                                                                                                                                                                                                                                                                                                 And because he loved thy fathers, therefore he chose their seed after them, and brought thee out in his sight with his mighty power out of Egypt;
5043                                                                                                                                                                                                                                                                                                                                                                                        To drive out nations from before thee greater and mightier than thou art, to bring thee in, to give thee their land for an inheritance, as it is this day.
5044                                                                                                                                                                                                                                                                                                                                                                                                 Know therefore this day, and consider it in thine heart, that the LORD he is God in heaven above, and upon the earth beneath: there is none else.
5045                                                                                                                                                                                                                                                                                 Thou shalt keep therefore his statutes, and his commandments, which I command thee this day, that it may go well with thee, and with thy children after thee, and that thou mayest prolong thy days upon the earth, which the LORD thy God giveth thee, for ever.
5046                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Moses severed three cities on this side Jordan toward the sunrising;
5047                                                                                                                                                                                                                                                                                                                                                                            That the slayer might flee thither, which should kill his neighbor unawares, and hated him not in times past; and that fleeing unto one of these cities he might live:
5048                                                                                                                                                                                                                                                                                                                                                                                           Namely, Bezer in the wilderness, in the plain country, of the Reubenites; and Ramoth in Gilead, of the Gadites; and Golan in Bashan, of the Manassites.
5049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And this is the law which Moses set before the children of Israel:
5050                                                                                                                                                                                                                                                                                                                                                                                                These are the testimonies, and the statutes, and the judgments, which Moses spake unto the children of Israel, after they came forth out of Egypt.
5051                                                                                                                                                                                                                                                                                                                                  On this side Jordan, in the valley over against Bethpeor, in the land of Sihon king of the Amorites, who dwelt at Heshbon, whom Moses and the children of Israel smote, after they were come forth out of Egypt:
5052                                                                                                                                                                                                                                                                                                                                                                                                   And they possessed his land, and the land of Og king of Bashan, two kings of the Amorites, which were on this side Jordan toward the sunrising;
5053                                                                                                                                                                                                                                                                                                                                                                                                                                                       From Aroer, which is by the bank of the river Arnon, even unto mount Sion, which is Hermon,
5054                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the plain on this side Jordan eastward, even unto the sea of the plain, under the springs of Pisgah.
5055                                                                                                                                                                                                                                                                                                                                                                   And Moses called all Israel, and said unto them, Hear, O Israel, the statutes and judgments which I speak in your ears this day, that ye may learn them, and keep, and do them.
5056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD our God made a covenant with us in Horeb.
5057                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD made not this covenant with our fathers, but with us, even us, who are all of us here alive this day.
5058                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD talked with you face to face in the mount out of the midst of the fire,
5059                                                                                                                                                                                                                                                                                                                                                                              (I stood between the LORD and you at that time, to show you the word of the LORD: for ye were afraid by reason of the fire, and went not up into the mount;) saying,
5060                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage.
5061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt have none other gods before me.
5062                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not make thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the waters beneath the earth:
5063                                                                                                                                                                                                                                                                                                                             Thou shalt not bow down thyself unto them, nor serve them: for I the LORD thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me,
5064                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And showing mercy unto thousands of them that love me and keep my commandments.
5065                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt not take the name of the LORD thy God in vain: for the LORD will not hold him guiltless that taketh his name in vain.
5066                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Keep the sabbath day to sanctify it, as the LORD thy God hath commanded thee.
5067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Six days thou shalt labor, and do all thy work:
5068                                                                                                                                                                                                          But the seventh day is the sabbath of the LORD thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, nor thy manservant, nor thy maidservant, nor thine ox, nor thine ass, nor any of thy cattle, nor thy stranger that is within thy gates; that thy manservant and thy maidservant may rest as well as thou.
5069                                                                                                                                                                                                                                                                                                                And remember that thou wast a servant in the land of Egypt, and that the LORD thy God brought thee out thence through a mighty hand and by a stretched out arm: therefore the LORD thy God commanded thee to keep the sabbath day.
5070                                                                                                                                                                                                                                                                                                                                                      Honor thy father and thy mother, as the LORD thy God hath commanded thee; that thy days may be prolonged, and that it may go well with thee, in the land which the LORD thy God giveth thee.
5071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt not kill.
5072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Neither shalt thou commit adultery.
5073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Neither shalt thou steal.
5074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Neither shalt thou bear false witness against thy neighbor.
5075                                                                                                                                                                                                                                                                                                                                          Neither shalt thou desire thy neighbor's wife, neither shalt thou covet thy neighbor's house, his field, or his manservant, or his maidservant, his ox, or his ass, or any thing that is thy neighbor's.
5076                                                                                                                                                                                                                                                                                             These words the LORD spake unto all your assembly in the mount out of the midst of the fire, of the cloud, and of the thick darkness, with a great voice: and he added no more. And he wrote them in two tables of stone, and delivered them unto me.
5077                                                                                                                                                                                                                                                                                                                                              And it came to pass, when ye heard the voice out of the midst of the darkness, (for the mountain did burn with fire,) that ye came near unto me, even all the heads of your tribes, and your elders;
5078                                                                                                                                                                                                                                                                                                                                     And ye said, Behold, the LORD our God hath showed us his glory and his greatness, and we have heard his voice out of the midst of the fire: we have seen this day that God doth talk with man, and he liveth.
5079                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore why should we die? for this great fire will consume us: if we hear the voice of the LORD our God any more, then we shall die.
5080                                                                                                                                                                                                                                                                                                                                                                                                          For who is there of all flesh, that hath heard the voice of the living God speaking out of the midst of the fire, as we have, and lived?
5081                                                                                                                                                                                                                                                                                                                                                                               Go thou near, and hear all that the LORD our God shall say: and speak thou unto us all that the LORD our God shall speak unto thee; and we will hear it, and do it.
5082                                                                                                                                                                                                                                                                                                                And the LORD heard the voice of your words, when ye spake unto me; and the LORD said unto me, I have heard the voice of the words of this people, which they have spoken unto thee: they have well said all that they have spoken.
5083                                                                                                                                                                                                                                                                                                                                                                         O that there were such an heart in them, that they would fear me, and keep all my commandments always, that it might be well with them, and with their children for ever!
5084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Go say to them, Get you into your tents again.
5085                                                                                                                                                                                                                                                                                                                     But as for thee, stand thou here by me, and I will speak unto thee all the commandments, and the statutes, and the judgments, which thou shalt teach them, that they may do them in the land which I give them to possess it.
5086                                                                                                                                                                                                                                                                                                                                                                                                               Ye shall observe to do therefore as the LORD your God hath commanded you: ye shall not turn aside to the right hand or to the left.
5087                                                                                                                                                                                                                                                                                                                                               Ye shall walk in all the ways which the LORD your God hath commanded you, that ye may live, and that it may be well with you, and that ye may prolong your days in the land which ye shall possess.
5088                                                                                                                                                                                                                                                                                                                                                                   Now these are the commandments, the statutes, and the judgments, which the LORD your God commanded to teach you, that ye might do them in the land whither ye go to possess it:
5089                                                                                                                                                                                                                                                                                                                                That thou mightest fear the LORD thy God, to keep all his statutes and his commandments, which I command thee, thou, and thy son, and thy son's son, all the days of thy life; and that thy days may be prolonged.
5090                                                                                                                                                                                                                                                                                                                                Hear therefore, O Israel, and observe to do it; that it may be well with thee, and that ye may increase mightily, as the LORD God of thy fathers hath promised thee, in the land that floweth with milk and honey.
5091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hear, O Israel: The LORD our God is one LORD:
5092                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt love the LORD thy God with all thine heart, and with all thy soul, and with all thy might.
5093                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And these words, which I command thee this day, shall be in thine heart:
5094                                                                                                                                                                                                                                                                                                                                             And thou shalt teach them diligently unto thy children, and shalt talk of them when thou sittest in thine house, and when thou walkest by the way, and when thou liest down, and when thou risest up.
5095                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt bind them for a sign upon thine hand, and they shall be as frontlets between thine eyes.
5096                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt write them upon the posts of thy house, and on thy gates.
5097                                                                                                                                                                                                                                                                                                                                 And it shall be, when the LORD thy God shall have brought thee into the land which he sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give thee great and goodly cities, which thou buildedst not,
5098                                                                                                                                                                                                                                                                                                                                              And houses full of all good things, which thou filledst not, and wells digged, which thou diggedst not, vineyards and olive trees, which thou plantedst not; when thou shalt have eaten and be full;
5099                                                                                                                                                                                                                                                                                                                                                                                                                              Then beware lest thou forget the LORD, which brought thee forth out of the land of Egypt, from the house of bondage.
5100                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt fear the LORD thy God, and serve him, and shalt swear by his name.
5101                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ye shall not go after other gods, of the gods of the people which are round about you;
5102                                                                                                                                                                                                                                                                                                                                                                                    (For the LORD thy God is a jealous God among you) lest the anger of the LORD thy God be kindled against thee, and destroy thee from off the face of the earth.
5103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ye shall not tempt the LORD your God, as ye tempted him in Massah.
5104                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall diligently keep the commandments of the LORD your God, and his testimonies, and his statutes, which he hath commanded thee.
5105                                                                                                                                                                                                                                                                                                                                               And thou shalt do that which is right and good in the sight of the LORD: that it may be well with thee, and that thou mayest go in and possess the good land which the LORD sware unto thy fathers.
5106                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To cast out all thine enemies from before thee, as the LORD hath spoken.
5107                                                                                                                                                                                                                                                                                                                                                                                  And when thy son asketh thee in time to come, saying, What mean the testimonies, and the statutes, and the judgments, which the LORD our God hath commanded you?
5108                                                                                                                                                                                                                                                                                                                                                                                                                    Then thou shalt say unto thy son, We were Pharaoh's bondmen in Egypt; and the LORD brought us out of Egypt with a mighty hand:
5109                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD showed signs and wonders, great and sore, upon Egypt, upon Pharaoh, and upon all his household, before our eyes:
5110                                                                                                                                                                                                                                                                                                                                                                                                                                And he brought us out from thence, that he might bring us in, to give us the land which he sware unto our fathers.
5111                                                                                                                                                                                                                                                                                                                                                                                         And the LORD commanded us to do all these statutes, to fear the LORD our God, for our good always, that he might preserve us alive, as it is at this day.
5112                                                                                                                                                                                                                                                                                                                                                                                                                   And it shall be our righteousness, if we observe to do all these commandments before the LORD our God, as he hath commanded us.
5113                                                                                                                                                                                                                                 When the LORD thy God shall bring thee into the land whither thou goest to possess it, and hath cast out many nations before thee, the Hittites, and the Girgashites, and the Amorites, and the Canaanites, and the Perizzites, and the Hivites, and the Jebusites, seven nations greater and mightier than thou;
5114                                                                                                                                                                                                                                                                                                                                                                       And when the LORD thy God shall deliver them before thee; thou shalt smite them, and utterly destroy them; thou shalt make no covenant with them, nor show mercy unto them:
5115                                                                                                                                                                                                                                                                                                                                                                                                        Neither shalt thou make marriages with them; thy daughter thou shalt not give unto his son, nor his daughter shalt thou take unto thy son.
5116                                                                                                                                                                                                                                                                                                                                                                               For they will turn away thy son from following me, that they may serve other gods: so will the anger of the LORD be kindled against you, and destroy thee suddenly.
5117                                                                                                                                                                                                                                                                                                                                                                                  But thus shall ye deal with them; ye shall destroy their altars, and break down their images, and cut down their groves, and burn their graven images with fire.
5118                                                                                                                                                                                                                                                                                                                                                                   For thou art an holy people unto the LORD thy God: the LORD thy God hath chosen thee to be a special people unto himself, above all people that are upon the face of the earth.
5119                                                                                                                                                                                                                                                                                                                                                                                                     The LORD did not set his love upon you, nor choose you, because ye were more in number than any people; for ye were the fewest of all people:
5120                                                                                                                                                                                                                                                                                                  But because the LORD loved you, and because he would keep the oath which he had sworn unto your fathers, hath the LORD brought you out with a mighty hand, and redeemed you out of the house of bondmen, from the hand of Pharaoh king of Egypt.
5121                                                                                                                                                                                                                                                                                                                                                                  Know therefore that the LORD thy God, he is God, the faithful God, which keepeth covenant and mercy with them that love him and keep his commandments to a thousand generations;
5122                                                                                                                                                                                                                                                                                                                                                                                                       And repayeth them that hate him to their face, to destroy them: he will not be slack to him that hateth him, he will repay him to his face.
5123                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt therefore keep the commandments, and the statutes, and the judgments, which I command thee this day, to do them.
5124                                                                                                                                                                                                                                                                                                                                                  Wherefore it shall come to pass, if ye hearken to these judgments, and keep, and do them, that the LORD thy God shall keep unto thee the covenant and the mercy which he sware unto thy fathers:
5125                                                                                                                                                                                                                                                            And he will love thee, and bless thee, and multiply thee: he will also bless the fruit of thy womb, and the fruit of thy land, thy corn, and thy wine, and thine oil, the increase of thy kine, and the flocks of thy sheep, in the land which he sware unto thy fathers to give thee.
5126                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt be blessed above all people: there shall not be male or female barren among you, or among your cattle.
5127                                                                                                                                                                                                                                                                                                                                                               And the LORD will take away from thee all sickness, and will put none of the evil diseases of Egypt, which thou knowest, upon thee; but will lay them upon all them that hate thee.
5128                                                                                                                                                                                                                                                                                                                                                 And thou shalt consume all the people which the LORD thy God shall deliver thee; thine eye shall have no pity upon them: neither shalt thou serve their gods; for that will be a snare unto thee.
5129                                                                                                                                                                                                                                                                                                                                                                                                                                                       If thou shalt say in thine heart, These nations are more than I; how can I dispossess them?
5130                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not be afraid of them: but shalt well remember what the LORD thy God did unto Pharaoh, and unto all Egypt;
5131                                                                                                                                                                                                                                                                                                  The great temptations which thine eyes saw, and the signs, and the wonders, and the mighty hand, and the stretched out arm, whereby the LORD thy God brought thee out: so shall the LORD thy God do unto all the people of whom thou art afraid.
5132                                                                                                                                                                                                                                                                                                                                                                                                                 Moreover the LORD thy God will send the hornet among them, until they that are left, and hide themselves from thee, be destroyed.
5133                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not be affrighted at them: for the LORD thy God is among you, a mighty God and terrible.
5134                                                                                                                                                                                                                                                                                                                                                                          And the LORD thy God will put out those nations before thee by little and little: thou mayest not consume them at once, lest the beasts of the field increase upon thee.
5135                                                                                                                                                                                                                                                                                                                                                                                                                     But the LORD thy God shall deliver them unto thee, and shall destroy them with a mighty destruction, until they be destroyed.
5136                                                                                                                                                                                                                                                                                                                                                           And he shall deliver their kings into thine hand, and thou shalt destroy their name from under heaven: there shall no man be able to stand before thee, until thou have destroyed them.
5137                                                                                                                                                                                                                                                                                                                              The graven images of their gods shall ye burn with fire: thou shalt not desire the silver or gold that is on them, nor take it unto thee, lest thou be snared therein: for it is an abomination to the LORD thy God.
5138                                                                                                                                                                                                                                                                                                                                                       Neither shalt thou bring an abomination into thine house, lest thou be a cursed thing like it: but thou shalt utterly detest it, and thou shalt utterly abhor it; for it is a cursed thing.
5139                                                                                                                                                                                                                                                                                                                                                                 All the commandments which I command thee this day shall ye observe to do, that ye may live, and multiply, and go in and possess the land which the LORD sware unto your fathers.
5140                                                                                                                                                                                                                                                                                                                  And thou shalt remember all the way which the LORD thy God led thee these forty years in the wilderness, to humble thee, and to prove thee, to know what was in thine heart, whether thou wouldest keep his commandments, or no.
5141                                                                                                                                                                                                                                                                 And he humbled thee, and suffered thee to hunger, and fed thee with manna, which thou knewest not, neither did thy fathers know; that he might make thee know that man doth not live by bread only, but by every word that proceedeth out of the mouth of the LORD doth man live.
5142                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thy raiment waxed not old upon thee, neither did thy foot swell, these forty years.
5143                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt also consider in thine heart, that, as a man chasteneth his son, so the LORD thy God chasteneth thee.
5144                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore thou shalt keep the commandments of the LORD thy God, to walk in his ways, and to fear him.
5145                                                                                                                                                                                                                                                                                                                                                                                                     For the LORD thy God bringeth thee into a good land, a land of brooks of water, of fountains and depths that spring out of valleys and hills;
5146                                                                                                                                                                                                                                                                                                                                                                                                                                          A land of wheat, and barley, and vines, and fig trees, and pomegranates; a land of oil olive, and honey;
5147                                                                                                                                                                                                                                                                                                                                                                          A land wherein thou shalt eat bread without scarceness, thou shalt not lack any thing in it; a land whose stones are iron, and out of whose hills thou mayest dig brass.
5148                                                                                                                                                                                                                                                                                                                                                                                                                             When thou hast eaten and art full, then thou shalt bless the LORD thy God for the good land which he hath given thee.
5149                                                                                                                                                                                                                                                                                                                                                                                                Beware that thou forget not the LORD thy God, in not keeping his commandments, and his judgments, and his statutes, which I command thee this day:
5150                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lest when thou hast eaten and art full, and hast built goodly houses, and dwelt therein;
5151                                                                                                                                                                                                                                                                                                                                                                                                                      And when thy herds and thy flocks multiply, and thy silver and thy gold is multiplied, and all that thou hast is multiplied;
5152                                                                                                                                                                                                                                                                                                                                                                                                    Then thine heart be lifted up, and thou forget the LORD thy God, which brought thee forth out of the land of Egypt, from the house of bondage;
5153                                                                                                                                                                                                                                                                                                                                                Who led thee through that great and terrible wilderness, wherein were fiery serpents, and scorpions, and drought, where there was no water; who brought thee forth water out of the rock of flint;
5154                                                                                                                                                                                                                                                                                                                                                                                Who fed thee in the wilderness with manna, which thy fathers knew not, that he might humble thee, and that he might prove thee, to do thee good at thy latter end;
5155                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou say in thine heart, My power and the might of mine hand hath gotten me this wealth.
5156                                                                                                                                                                                                                                                                                                                                                               But thou shalt remember the LORD thy God: for it is he that giveth thee power to get wealth, that he may establish his covenant which he sware unto thy fathers, as it is this day.
5157                                                                                                                                                                                                                                                                                                                                                              And it shall be, if thou do at all forget the LORD thy God, and walk after other gods, and serve them, and worship them, I testify against you this day that ye shall surely perish.
5158                                                                                                                                                                                                                                                                                                                                                                                              As the nations which the LORD destroyeth before your face, so shall ye perish; because ye would not be obedient unto the voice of the LORD your God.
5159                                                                                                                                                                                                                                                                                                                                                                                       Hear, O Israel: Thou art to pass over Jordan this day, to go in to possess nations greater and mightier than thyself, cities great and fenced up to heaven,
5160                                                                                                                                                                                                                                                                                                                                                                                              A people great and tall, the children of the Anakims, whom thou knowest, and of whom thou hast heard say, Who can stand before the children of Anak!
5161                                                                                                                                                                                                                                                                        Understand therefore this day, that the LORD thy God is he which goeth over before thee; as a consuming fire he shall destroy them, and he shall bring them down before thy face: so shalt thou drive them out, and destroy them quickly, as the LORD hath said unto thee.
5162                                                                                                                                                                                                                                                                             Speak not thou in thine heart, after that the LORD thy God hath cast them out from before thee, saying, For my righteousness the LORD hath brought me in to possess this land: but for the wickedness of these nations the LORD doth drive them out from before thee.
5163                                                                                                                                                                                                                                           Not for thy righteousness, or for the uprightness of thine heart, dost thou go to possess their land: but for the wickedness of these nations the LORD thy God doth drive them out from before thee, and that he may perform the word which the LORD sware unto thy fathers, Abraham, Isaac, and Jacob.
5164                                                                                                                                                                                                                                                                                                                                                                                                Understand therefore, that the LORD thy God giveth thee not this good land to possess it for thy righteousness; for thou art a stiffnecked people.
5165                                                                                                                                                                                                                                                                                                                 Remember, and forget not, how thou provokedst the LORD thy God to wrath in the wilderness: from the day that thou didst depart out of the land of Egypt, until ye came unto this place, ye have been rebellious against the LORD.
5166                                                                                                                                                                                                                                                                                                                                                                                                                                           Also in Horeb ye provoked the LORD to wrath, so that the LORD was angry with you to have destroyed you.
5167                                                                                                                                                                                                                                                                                                                   When I was gone up into the mount to receive the tables of stone, even the tables of the covenant which the LORD made with you, then I abode in the mount forty days and forty nights, I neither did eat bread nor drink water:
5168                                                                                                                                                                                                                                                                                                        And the LORD delivered unto me two tables of stone written with the finger of God; and on them was written according to all the words, which the LORD spake with you in the mount out of the midst of the fire in the day of the assembly.
5169                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass at the end of forty days and forty nights, that the LORD gave me the two tables of stone, even the tables of the covenant.
5170                                                                                                                                                                                                                                                                                 And the LORD said unto me, Arise, get thee down quickly from hence; for thy people which thou hast brought forth out of Egypt have corrupted themselves; they are quickly turned aside out of the way which I commanded them; they have made them a molten image.
5171                                                                                                                                                                                                                                                                                                                                                                                                                                     Furthermore the LORD spake unto me, saying, I have seen this people, and, behold, it is a stiffnecked people:
5172                                                                                                                                                                                                                                                                                                                                                                                                Let me alone, that I may destroy them, and blot out their name from under heaven: and I will make of thee a nation mightier and greater than they.
5173                                                                                                                                                                                                                                                                                                                                                                                                                So I turned and came down from the mount, and the mount burned with fire: and the two tables of the covenant were in my two hands.
5174                                                                                                                                                                                                                                                                                                                                                                  And I looked, and, behold, ye had sinned against the LORD your God, and had made you a molten calf: ye had turned aside quickly out of the way which the LORD had commanded you.
5175                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I took the two tables, and cast them out of my two hands, and brake them before your eyes.
5176                                                                                                                                                                                                                                                                                                           And I fell down before the LORD, as at the first, forty days and forty nights: I did neither eat bread, nor drink water, because of all your sins which ye sinned, in doing wickedly in the sight of the LORD, to provoke him to anger.
5177                                                                                                                                                                                                                                                                                                                                                                                     For I was afraid of the anger and hot displeasure, wherewith the LORD was wroth against you to destroy you. But the LORD hearkened unto me at that time also.
5178                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD was very angry with Aaron to have destroyed him: and I prayed for Aaron also the same time.
5179                                                                                                                                                                                                                                                                                                                And I took your sin, the calf which ye had made, and burnt it with fire, and stamped it, and ground it very small, even until it was as small as dust: and I cast the dust thereof into the brook that descended out of the mount.
5180                                                                                                                                                                                                                                                                                                                                                                                                                                                            And at Taberah, and at Massah, and at Kibrothhattaavah, ye provoked the LORD to wrath.
5181                                                                                                                                                                                                                                                                                                                 Likewise when the LORD sent you from Kadeshbarnea, saying, Go up and possess the land which I have given you; then ye rebelled against the commandment of the LORD your God, and ye believed him not, nor hearkened to his voice.
5182                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ye have been rebellious against the LORD from the day that I knew you.
5183                                                                                                                                                                                                                                                                                                                                                                                                        Thus I fell down before the LORD forty days and forty nights, as I fell down at the first; because the LORD had said he would destroy you.
5184                                                                                                                                                                                                                                                                                                                              I prayed therefore unto the LORD, and said, O Lord GOD, destroy not thy people and thine inheritance, which thou hast redeemed through thy greatness, which thou hast brought forth out of Egypt with a mighty hand.
5185                                                                                                                                                                                                                                                                                                                                                                                                       Remember thy servants, Abraham, Isaac, and Jacob; look not unto the stubbornness of this people, nor to their wickedness, nor to their sin:
5186                                                                                                                                                                                                                                                                                                                            Lest the land whence thou broughtest us out say, Because the LORD was not able to bring them into the land which he promised them, and because he hated them, he hath brought them out to slay them in the wilderness.
5187                                                                                                                                                                                                                                                                                                                                                                                                                        Yet they are thy people and thine inheritance, which thou broughtest out by thy mighty power and by thy stretched out arm.
5188                                                                                                                                                                                                                                                                                                                                                                                           At that time the LORD said unto me, Hew thee two tables of stone like unto the first, and come up unto me into the mount, and make thee an ark of wood.
5189                                                                                                                                                                                                                                                                                                                                                                                                                    And I will write on the tables the words that were in the first tables which thou brakest, and thou shalt put them in the ark.
5190                                                                                                                                                                                                                                                                                                                                                                                             And I made an ark of shittim wood, and hewed two tables of stone like unto the first, and went up into the mount, having the two tables in mine hand.
5191                                                                                                                                                                                                                                                                                                                             And he wrote on the tables, according to the first writing, the ten commandments, which the LORD spake unto you in the mount out of the midst of the fire in the day of the assembly: and the LORD gave them unto me.
5192                                                                                                                                                                                                                                                                                                                                                                                                    And I turned myself and came down from the mount, and put the tables in the ark which I had made; and there they be, as the LORD commanded me.
5193                                                                                                                                                                                                                                                                                                                                    And the children of Israel took their journey from Beeroth of the children of Jaakan to Mosera: there Aaron died, and there he was buried; and Eleazar his son ministered in the priest's office in his stead.
5194                                                                                                                                                                                                                                                                                                                                                                                                                                               From thence they journeyed unto Gudgodah; and from Gudgodah to Jotbath, a land of rivers of waters.
5195                                                                                                                                                                                                                                                                                                                                                           At that time the LORD separated the tribe of Levi, to bear the ark of the covenant of the LORD, to stand before the LORD to minister unto him, and to bless in his name, unto this day.
5196                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore Levi hath no part nor inheritance with his brethren; the LORD is his inheritance, according as the LORD thy God promised him.
5197                                                                                                                                                                                                                                                                                                                                                                       And I stayed in the mount, according to the first time, forty days and forty nights; and the LORD hearkened unto me at that time also, and the LORD would not destroy thee.
5198                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto me, Arise, take thy journey before the people, that they may go in and possess the land, which I sware unto their fathers to give unto them.
5199                                                                                                                                                                                                                                                                                                                                      And now, Israel, what doth the LORD thy God require of thee, but to fear the LORD thy God, to walk in all his ways, and to love him, and to serve the LORD thy God with all thy heart and with all thy soul,
5200                                                                                                                                                                                                                                                                                                                                                                                                                                               To keep the commandments of the LORD, and his statutes, which I command thee this day for thy good?
5201                                                                                                                                                                                                                                                                                                                                                                                                                                     Behold, the heaven and the heaven of heavens is the LORD's thy God, the earth also, with all that therein is.
5202                                                                                                                                                                                                                                                                                                                                                                                                        Only the LORD had a delight in thy fathers to love them, and he chose their seed after them, even you above all people, as it is this day.
5203                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Circumcise therefore the foreskin of your heart, and be no more stiffnecked.
5204                                                                                                                                                                                                                                                                                                                                                                                                   For the LORD your God is God of gods, and Lord of lords, a great God, a mighty, and a terrible, which regardeth not persons, nor taketh reward:
5205                                                                                                                                                                                                                                                                                                                                                                                                                                He doth execute the judgment of the fatherless and widow, and loveth the stranger, in giving him food and raiment.
5206                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Love ye therefore the stranger: for ye were strangers in the land of Egypt.
5207                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt fear the LORD thy God; him shalt thou serve, and to him shalt thou cleave, and swear by his name.
5208                                                                                                                                                                                                                                                                                                                                                                                                                         He is thy praise, and he is thy God, that hath done for thee these great and terrible things, which thine eyes have seen.
5209                                                                                                                                                                                                                                                                                                                                                                                                   Thy fathers went down into Egypt with threescore and ten persons; and now the LORD thy God hath made thee as the stars of heaven for multitude.
5210                                                                                                                                                                                                                                                                                                                                                                                                                Therefore thou shalt love the LORD thy God, and keep his charge, and his statutes, and his judgments, and his commandments, alway.
5211                                                                                                                                                                                                                                                                                                                                          And know ye this day: for I speak not with your children which have not known, and which have not seen the chastisement of the LORD your God, his greatness, his mighty hand, and his stretched out arm,
5212                                                                                                                                                                                                                                                                                                                                                                                                                         And his miracles, and his acts, which he did in the midst of Egypt unto Pharaoh the king of Egypt, and unto all his land;
5213                                                                                                                                                                                                                                                                                                                            And what he did unto the army of Egypt, unto their horses, and to their chariots; how he made the water of the Red sea to overflow them as they pursued after you, and how the LORD hath destroyed them unto this day;
5214                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And what he did unto you in the wilderness, until ye came into this place;
5215                                                                                                                                                                                                                                                                                       And what he did unto Dathan and Abiram, the sons of Eliab, the son of Reuben: how the earth opened her mouth, and swallowed them up, and their households, and their tents, and all the substance that was in their possession, in the midst of all Israel:
5216                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But your eyes have seen all the great acts of the LORD which he did.
5217                                                                                                                                                                                                                                                                                                                                                                                    Therefore shall ye keep all the commandments which I command you this day, that ye may be strong, and go in and possess the land, whither ye go to possess it;
5218                                                                                                                                                                                                                                                                                                                                                                               And that ye may prolong your days in the land, which the LORD sware unto your fathers to give unto them and to their seed, a land that floweth with milk and honey.
5219                                                                                                                                                                                                                                                                                                                                                       For the land, whither thou goest in to possess it, is not as the land of Egypt, from whence ye came out, where thou sowedst thy seed, and wateredst it with thy foot, as a garden of herbs:
5220                                                                                                                                                                                                                                                                                                                                                                                                                              But the land, whither ye go to possess it, is a land of hills and valleys, and drinketh water of the rain of heaven:
5221                                                                                                                                                                                                                                                                                                                                                                                          A land which the LORD thy God careth for: the eyes of the LORD thy God are always upon it, from the beginning of the year even unto the end of the year.
5222                                                                                                                                                                                                                                                                                                                                              And it shall come to pass, if ye shall hearken diligently unto my commandments which I command you this day, to love the LORD your God, and to serve him with all your heart and with all your soul,
5223                                                                                                                                                                                                                                                                                                                                                                               That I will give you the rain of your land in his due season, the first rain and the latter rain, that thou mayest gather in thy corn, and thy wine, and thine oil.
5224                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will send grass in thy fields for thy cattle, that thou mayest eat and be full.
5225                                                                                                                                                                                                                                                                                                                                                                                                                              Take heed to yourselves, that your heart be not deceived, and ye turn aside, and serve other gods, and worship them;
5226                                                                                                                                                                                                                                                                                                                           And then the LORD's wrath be kindled against you, and he shut up the heaven, that there be no rain, and that the land yield not her fruit; and lest ye perish quickly from off the good land which the LORD giveth you.
5227                                                                                                                                                                                                                                                                                                                                                                                Therefore shall ye lay up these my words in your heart and in your soul, and bind them for a sign upon your hand, that they may be as frontlets between your eyes.
5228                                                                                                                                                                                                                                                                                                                                                                        And ye shall teach them your children, speaking of them when thou sittest in thine house, and when thou walkest by the way, when thou liest down, and when thou risest up.
5229                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt write them upon the door posts of thine house, and upon thy gates:
5230                                                                                                                                                                                                                                                                                                                                                                           That your days may be multiplied, and the days of your children, in the land which the LORD sware unto your fathers to give them, as the days of heaven upon the earth.
5231                                                                                                                                                                                                                                                                                                                                                                               For if ye shall diligently keep all these commandments which I command you, to do them, to love the LORD your God, to walk in all his ways, and to cleave unto him;
5232                                                                                                                                                                                                                                                                                                                                                                                                                Then will the LORD drive out all these nations from before you, and ye shall possess greater nations and mightier than yourselves.
5233                                                                                                                                                                                                                                                                                                                                                     Every place whereon the soles of your feet shall tread shall be yours: from the wilderness and Lebanon, from the river, the river Euphrates, even unto the uttermost sea shall your coast be.
5234                                                                                                                                                                                                                                                                                                                                                        There shall no man be able to stand before you: for the LORD your God shall lay the fear of you and the dread of you upon all the land that ye shall tread upon, as he hath said unto you.
5235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, I set before you this day a blessing and a curse;
5236                                                                                                                                                                                                                                                                                                                                                                                                                                                       A blessing, if ye obey the commandments of the LORD your God, which I command you this day:
5237                                                                                                                                                                                                                                                                                                                                                              And a curse, if ye will not obey the commandments of the LORD your God, but turn aside out of the way which I command you this day, to go after other gods, which ye have not known.
5238                                                                                                                                                                                                                                                                                                                                         And it shall come to pass, when the LORD thy God hath brought thee in unto the land whither thou goest to possess it, that thou shalt put the blessing upon mount Gerizim, and the curse upon mount Ebal.
5239                                                                                                                                                                                                                                                                                                                                                          Are they not on the other side Jordan, by the way where the sun goeth down, in the land of the Canaanites, which dwell in the champaign over against Gilgal, beside the plains of Moreh?
5240                                                                                                                                                                                                                                                                                                                                                                                                        For ye shall pass over Jordan to go in to possess the land which the LORD your God giveth you, and ye shall possess it, and dwell therein.
5241                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall observe to do all the statutes and judgments which I set before you this day.
5242                                                                                                                                                                                                                                                                                                                                                            These are the statutes and judgments, which ye shall observe to do in the land, which the LORD God of thy fathers giveth thee to possess it, all the days that ye live upon the earth.
5243                                                                                                                                                                                                                                                                                                                                                                   Ye shall utterly destroy all the places, wherein the nations which ye shall possess served their gods, upon the high mountains, and upon the hills, and under every green tree:
5244                                                                                                                                                                                                                                                                                                                                            And ye shall overthrow their altars, and break their pillars, and burn their groves with fire; and ye shall hew down the graven images of their gods, and destroy the names of them out of that place.
5245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye shall not do so unto the LORD your God.
5246                                                                                                                                                                                                                                                                                                                                                                        But unto the place which the LORD your God shall choose out of all your tribes to put his name there, even unto his habitation shall ye seek, and thither thou shalt come:
5247                                                                                                                                                                                                                                                                                                                         And thither ye shall bring your burnt offerings, and your sacrifices, and your tithes, and heave offerings of your hand, and your vows, and your freewill offerings, and the firstlings of your herds and of your flocks:
5248                                                                                                                                                                                                                                                                                                                                                                      And there ye shall eat before the LORD your God, and ye shall rejoice in all that ye put your hand unto, ye and your households, wherein the LORD thy God hath blessed thee.
5249                                                                                                                                                                                                                                                                                                                                                                                                                                     Ye shall not do after all the things that we do here this day, every man whatsoever is right in his own eyes.
5250                                                                                                                                                                                                                                                                                                                                                                                                                                                For ye are not as yet come to the rest and to the inheritance, which the LORD your God giveth you.
5251                                                                                                                                                                                                                                                                                                                                                       But when ye go over Jordan, and dwell in the land which the LORD your God giveth you to inherit, and when he giveth you rest from all your enemies round about, so that ye dwell in safety;
5252                                                                                                                                                                                                                                               Then there shall be a place which the LORD your God shall choose to cause his name to dwell there; thither shall ye bring all that I command you; your burnt offerings, and your sacrifices, your tithes, and the heave offering of your hand, and all your choice vows which ye vow unto the LORD:
5253                                                                                                                                                                                                                                                                                                               And ye shall rejoice before the LORD your God, ye, and your sons, and your daughters, and your menservants, and your maidservants, and the Levite that is within your gates; forasmuch as he hath no part nor inheritance with you.
5254                                                                                                                                                                                                                                                                                                                                                                                                                                                      Take heed to thyself that thou offer not thy burnt offerings in every place that thou seest:
5255                                                                                                                                                                                                                                                                                                                                                                                   But in the place which the LORD shall choose in one of thy tribes, there thou shalt offer thy burnt offerings, and there thou shalt do all that I command thee.
5256                                                                                                                                                                                                                                                                                     Notwithstanding thou mayest kill and eat flesh in all thy gates, whatsoever thy soul lusteth after, according to the blessing of the LORD thy God which he hath given thee: the unclean and the clean may eat thereof, as of the roebuck, and as of the hart.
5257                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Only ye shall not eat the blood; ye shall pour it upon the earth as water.
5258                                                                                                                                                                                                                                                                                                    Thou mayest not eat within thy gates the tithe of thy corn, or of thy wine, or of thy oil, or the firstlings of thy herds or of thy flock, nor any of thy vows which thou vowest, nor thy freewill offerings, or heave offering of thine hand:
5259                                                                                                                                                                                                                                 But thou must eat them before the LORD thy God in the place which the LORD thy God shall choose, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite that is within thy gates: and thou shalt rejoice before the LORD thy God in all that thou puttest thine hands unto.
5260                                                                                                                                                                                                                                                                                                                                                                                                                                                      Take heed to thyself that thou forsake not the Levite as long as thou livest upon the earth.
5261                                                                                                                                                                                                                                                                                                                                  When the LORD thy God shall enlarge thy border, as he hath promised thee, and thou shalt say, I will eat flesh, because thy soul longeth to eat flesh; thou mayest eat flesh, whatsoever thy soul lusteth after.
5262                                                                                                                                                                                                                                                                       If the place which the LORD thy God hath chosen to put his name there be too far from thee, then thou shalt kill of thy herd and of thy flock, which the LORD hath given thee, as I have commanded thee, and thou shalt eat in thy gates whatsoever thy soul lusteth after.
5263                                                                                                                                                                                                                                                                                                                                                                                                                             Even as the roebuck and the hart is eaten, so thou shalt eat them: the unclean and the clean shall eat of them alike.
5264                                                                                                                                                                                                                                                                                                                                                                                                                             Only be sure that thou eat not the blood: for the blood is the life; and thou mayest not eat the life with the flesh.
5265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not eat it; thou shalt pour it upon the earth as water.
5266                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not eat it; that it may go well with thee, and with thy children after thee, when thou shalt do that which is right in the sight of the LORD.
5267                                                                                                                                                                                                                                                                                                                                                                                                                           Only thy holy things which thou hast, and thy vows, thou shalt take, and go unto the place which the LORD shall choose:
5268                                                                                                                                                                                                                                                                                                                      And thou shalt offer thy burnt offerings, the flesh and the blood, upon the altar of the LORD thy God: and the blood of thy sacrifices shall be poured out upon the altar of the LORD thy God, and thou shalt eat the flesh.
5269                                                                                                                                                                                                                                                                                                                                   Observe and hear all these words which I command thee, that it may go well with thee, and with thy children after thee for ever, when thou doest that which is good and right in the sight of the LORD thy God.
5270                                                                                                                                                                                                                                                                                                                                                                                       When the LORD thy God shall cut off the nations from before thee, whither thou goest to possess them, and thou succeedest them, and dwellest in their land;
5271                                                                                                                                                                                                                                                                                                            Take heed to thyself that thou be not snared by following them, after that they be destroyed from before thee; and that thou inquire not after their gods, saying, How did these nations serve their gods? even so will I do likewise.
5272                                                                                                                                                                                                                                                                                                                                Thou shalt not do so unto the LORD thy God: for every abomination to the LORD, which he hateth, have they done unto their gods; for even their sons and their daughters they have burnt in the fire to their gods.
5273                                                                                                                                                                                                                                                                                                                                                                                                                                              What thing soever I command you, observe to do it: thou shalt not add thereto, nor diminish from it.
5274                                                                                                                                                                                                                                                                                                                                                                                                                                                   If there arise among you a prophet, or a dreamer of dreams, and giveth thee a sign or a wonder,
5275                                                                                                                                                                                                                                                                                                                                                                                        And the sign or the wonder come to pass, whereof he spake unto thee, saying, Let us go after other gods, which thou hast not known, and let us serve them;
5276                                                                                                                                                                                                                                                                                                                                        Thou shalt not hearken unto the words of that prophet, or that dreamer of dreams: for the LORD your God proveth you, to know whether ye love the LORD your God with all your heart and with all your soul.
5277                                                                                                                                                                                                                                                                                                                                                                                                  Ye shall walk after the LORD your God, and fear him, and keep his commandments, and obey his voice, and ye shall serve him, and cleave unto him.
5278                                                                                                                                                                             And that prophet, or that dreamer of dreams, shall be put to death; because he hath spoken to turn you away from the LORD your God, which brought you out of the land of Egypt, and redeemed you out of the house of bondage, to thrust thee out of the way which the LORD thy God commanded thee to walk in. So shalt thou put the evil away from the midst of thee.
5279                                                                                                                                                                                                                                                                                          If thy brother, the son of thy mother, or thy son, or thy daughter, or the wife of thy bosom, or thy friend, which is as thine own soul, entice thee secretly, saying, Let us go and serve other gods, which thou hast not known, thou, nor thy fathers;
5280                                                                                                                                                                                                                                                                                                                                                                            Namely, of the gods of the people which are round about you, nigh unto thee, or far off from thee, from the one end of the earth even unto the other end of the earth;
5281                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not consent unto him, nor hearken unto him; neither shall thine eye pity him, neither shalt thou spare, neither shalt thou conceal him:
5282                                                                                                                                                                                                                                                                                                                                                                                                                But thou shalt surely kill him; thine hand shall be first upon him to put him to death, and afterwards the hand of all the people.
5283                                                                                                                                                                                                                                                                                                                                                      And thou shalt stone him with stones, that he die; because he hath sought to thrust thee away from the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage.
5284                                                                                                                                                                                                                                                                                                                                                                                                                                               And all Israel shall hear, and fear, and shall do no more any such wickedness as this is among you.
5285                                                                                                                                                                                                                                                                                                                                                                                                                                       If thou shalt hear say in one of thy cities, which the LORD thy God hath given thee to dwell there, saying,
5286                                                                                                                                                                                                                                                                                                                                                              Certain men, the children of Belial, are gone out from among you, and have withdrawn the inhabitants of their city, saying, Let us go and serve other gods, which ye have not known;
5287                                                                                                                                                                                                                                                                                                                                                                                     Then shalt thou inquire, and make search, and ask diligently; and, behold, if it be truth, and the thing certain, that such abomination is wrought among you;
5288                                                                                                                                                                                                                                                                                                                                                              Thou shalt surely smite the inhabitants of that city with the edge of the sword, destroying it utterly, and all that is therein, and the cattle thereof, with the edge of the sword.
5289                                                                                                                                                                                                                                                                                                     And thou shalt gather all the spoil of it into the midst of the street thereof, and shalt burn with fire the city, and all the spoil thereof every whit, for the LORD thy God: and it shall be an heap for ever; it shall not be built again.
5290                                                                                                                                                                                                                                                                                                               And there shall cleave nought of the cursed thing to thine hand: that the LORD may turn from the fierceness of his anger, and show thee mercy, and have compassion upon thee, and multiply thee, as he hath sworn unto thy fathers;
5291                                                                                                                                                                                                                                                                                                                                                                  When thou shalt hearken to the voice of the LORD thy God, to keep all his commandments which I command thee this day, to do that which is right in the eyes of the LORD thy God.
5292                                                                                                                                                                                                                                                                                                                                                                                                                      Ye are the children of the LORD your God: ye shall not cut yourselves, nor make any baldness between your eyes for the dead.
5293                                                                                                                                                                                                                                                                                                                                                                             For thou art an holy people unto the LORD thy God, and the LORD hath chosen thee to be a peculiar people unto himself, above all the nations that are upon the earth.
5294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not eat any abominable thing.
5295                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the beasts which ye shall eat: the ox, the sheep, and the goat,
5296                                                                                                                                                                                                                                                                                                                                                                                                                              The hart, and the roebuck, and the fallow deer, and the wild goat, and the pygarg, and the wild ox, and the chamois.
5297                                                                                                                                                                                                                                                                                                                                                                                                            And every beast that parteth the hoof, and cleaveth the cleft into two claws, and cheweth the cud among the beasts, that ye shall eat.
5298                                                                                                                                                                                                                                                                                                            Nevertheless these ye shall not eat of them that chew the cud, or of them that divide the cloven hoof; as the camel, and the hare, and the coney: for they chew the cud, but divide not the hoof; therefore they are unclean unto you.
5299                                                                                                                                                                                                                                                                                                                                                                                      And the swine, because it divideth the hoof, yet cheweth not the cud, it is unclean unto you: ye shall not eat of their flesh, nor touch their dead carcass.
5300                                                                                                                                                                                                                                                                                                                                                                                                                                                     These ye shall eat of all that are in the waters: all that have fins and scales shall ye eat:
5301                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And whatsoever hath not fins and scales ye may not eat; it is unclean unto you.
5302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of all clean birds ye shall eat.
5303                                                                                                                                                                                                                                                                                                                                                                                                                                                       But these are they of which ye shall not eat: the eagle, and the ossifrage, and the ospray,
5304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the glede, and the kite, and the vulture after his kind,
5305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And every raven after his kind,
5306                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the owl, and the night hawk, and the cuckoo, and the hawk after his kind,
5307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The little owl, and the great owl, and the swan,
5308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the pelican, and the gier eagle, and the cormorant,
5309                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the stork, and the heron after her kind, and the lapwing, and the bat.
5310                                                                                                                                                                                                                                                                                                                                                                                                                                                                And every creeping thing that flieth is unclean unto you: they shall not be eaten.
5311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But of all clean fowls ye may eat.
5312                                                                                                                                                                                                                                                                      Ye shall not eat of anything that dieth of itself: thou shalt give it unto the stranger that is in thy gates, that he may eat it; or thou mayest sell it unto an alien: for thou art an holy people unto the LORD thy God. Thou shalt not seethe a kid in his mother's milk.
5313                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt truly tithe all the increase of thy seed, that the field bringeth forth year by year.
5314                                                                                                                                                                                                                                                                          And thou shalt eat before the LORD thy God, in the place which he shall choose to place his name there, the tithe of thy corn, of thy wine, and of thine oil, and the firstlings of thy herds and of thy flocks; that thou mayest learn to fear the LORD thy God always.
5315                                                                                                                                                                                                                                                                                                                             And if the way be too long for thee, so that thou art not able to carry it; or if the place be too far from thee, which the LORD thy God shall choose to set his name there, when the LORD thy God hath blessed thee:
5316                                                                                                                                                                                                                                                                                                                                                                                                         Then shalt thou turn it into money, and bind up the money in thine hand, and shalt go unto the place which the LORD thy God shall choose:
5317                                                                                                                                                                                                                                                                       And thou shalt bestow that money for whatsoever thy soul lusteth after, for oxen, or for sheep, or for wine, or for strong drink, or for whatsoever thy soul desireth: and thou shalt eat there before the LORD thy God, and thou shalt rejoice, thou, and thine household,
5318                                                                                                                                                                                                                                                                                                                                                                                                                               And the Levite that is within thy gates; thou shalt not forsake him; for he hath no part nor inheritance with thee.
5319                                                                                                                                                                                                                                                                                                                                                                                                             At the end of three years thou shalt bring forth all the tithe of thine increase the same year, and shalt lay it up within thy gates:
5320                                                                                                                                                                                                                                                            And the Levite, (because he hath no part nor inheritance with thee,) and the stranger, and the fatherless, and the widow, which are within thy gates, shall come, and shall eat and be satisfied; that the LORD thy God may bless thee in all the work of thine hand which thou doest.
5321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        At the end of every seven years thou shalt make a release.
5322                                                                                                                                                                                                                                                                                                                                   And this is the manner of the release: Every creditor that lendeth ought unto his neighbor shall release it; he shall not exact it of his neighbor, or of his brother; because it is called the LORD's release.
5323                                                                                                                                                                                                                                                                                                                                                                                                                                     Of a foreigner thou mayest exact it again: but that which is thine with thy brother thine hand shall release;
5324                                                                                                                                                                                                                                                                                                                                                                                Save when there shall be no poor among you; for the LORD shall greatly bless thee in the land which the LORD thy God giveth thee for an inheritance to possess it:
5325                                                                                                                                                                                                                                                                                                                                                                                                         Only if thou carefully hearken unto the voice of the LORD thy God, to observe to do all these commandments which I command thee this day.
5326                                                                                                                                                                                                                                                                                                                                            For the LORD thy God blesseth thee, as he promised thee: and thou shalt lend unto many nations, but thou shalt not borrow; and thou shalt reign over many nations, but they shall not reign over thee.
5327                                                                                                                                                                                                                                                                                                                                     If there be among you a poor man of one of thy brethren within any of thy gates in thy land which the LORD thy God giveth thee, thou shalt not harden thine heart, nor shut thine hand from thy poor brother:
5328                                                                                                                                                                                                                                                                                                                                                                                                                        But thou shalt open thine hand wide unto him, and shalt surely lend him sufficient for his need, in that which he wanteth.
5329                                                                                                                                                                                                                                                                                    Beware that there be not a thought in thy wicked heart, saying, The seventh year, the year of release, is at hand; and thine eye be evil against thy poor brother, and thou givest him nought; and he cry unto the LORD against thee, and it be sin unto thee.
5330                                                                                                                                                                                                                                                                                                                         Thou shalt surely give him, and thine heart shall not be grieved when thou givest unto him: because that for this thing the LORD thy God shall bless thee in all thy works, and in all that thou puttest thine hand unto.
5331                                                                                                                                                                                                                                                                                                                                                                   For the poor shall never cease out of the land: therefore I command thee, saying, Thou shalt open thine hand wide unto thy brother, to thy poor, and to thy needy, in thy land.
5332                                                                                                                                                                                                                                                                                                                                                                                And if thy brother, an Hebrew man, or an Hebrew woman, be sold unto thee, and serve thee six years; then in the seventh year thou shalt let him go free from thee.
5333                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when thou sendest him out free from thee, thou shalt not let him go away empty:
5334                                                                                                                                                                                                                                                                                                                                                                 Thou shalt furnish him liberally out of thy flock, and out of thy floor, and out of thy winepress: of that wherewith the LORD thy God hath blessed thee thou shalt give unto him.
5335                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt remember that thou wast a bondman in the land of Egypt, and the LORD thy God redeemed thee: therefore I command thee this thing to day.
5336                                                                                                                                                                                                                                                                                                                                                                                                         And it shall be, if he say unto thee, I will not go away from thee; because he loveth thee and thine house, because he is well with thee;
5337                                                                                                                                                                                                                                                                                                                                                                             Then thou shalt take an awl, and thrust it through his ear unto the door, and he shall be thy servant for ever. And also unto thy maidservant thou shalt do likewise.
5338                                                                                                                                                                                                                                                                                                                      It shall not seem hard unto thee, when thou sendest him away free from thee; for he hath been worth a double hired servant to thee, in serving thee six years: and the LORD thy God shall bless thee in all that thou doest.
5339                                                                                                                                                                                                                                                                                                                                          All the firstling males that come of thy herd and of thy flock thou shalt sanctify unto the LORD thy God: thou shalt do no work with the firstling of thy bullock, nor shear the firstling of thy sheep.
5340                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt eat it before the LORD thy God year by year in the place which the LORD shall choose, thou and thy household.
5341                                                                                                                                                                                                                                                                                                                                                                                                      And if there be any blemish therein, as if it be lame, or blind, or have any ill blemish, thou shalt not sacrifice it unto the LORD thy God.
5342                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt eat it within thy gates: the unclean and the clean person shall eat it alike, as the roebuck, and as the hart.
5343                                                                                                                                                                                                                                                                                                                                                                                                                                                           Only thou shalt not eat the blood thereof; thou shalt pour it upon the ground as water.
5344                                                                                                                                                                                                                                                                                                                                                                                       Observe the month of Abib, and keep the passover unto the LORD thy God: for in the month of Abib the LORD thy God brought thee forth out of Egypt by night.
5345                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt therefore sacrifice the passover unto the LORD thy God, of the flock and the herd, in the place which the LORD shall choose to place his name there.
5346                                                                                                                                                                                                                                                Thou shalt eat no leavened bread with it; seven days shalt thou eat unleavened bread therewith, even the bread of affliction; for thou camest forth out of the land of Egypt in haste: that thou mayest remember the day when thou camest forth out of the land of Egypt all the days of thy life.
5347                                                                                                                                                                                                                                                                                                                                   And there shall be no leavened bread seen with thee in all thy coast seven days; neither shall there any thing of the flesh, which thou sacrificedst the first day at even, remain all night until the morning.
5348                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou mayest not sacrifice the passover within any of thy gates, which the LORD thy God giveth thee:
5349                                                                                                                                                                                                                                                                                                                                      But at the place which the LORD thy God shall choose to place his name in, there thou shalt sacrifice the passover at even, at the going down of the sun, at the season that thou camest forth out of Egypt.
5350                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt roast and eat it in the place which the LORD thy God shall choose: and thou shalt turn in the morning, and go unto thy tents.
5351                                                                                                                                                                                                                                                                                                                                                                                                   Six days thou shalt eat unleavened bread: and on the seventh day shall be a solemn assembly to the LORD thy God: thou shalt do no work therein.
5352                                                                                                                                                                                                                                                                                                                                                                                                          Seven weeks shalt thou number unto thee: begin to number the seven weeks from such time as thou beginnest to put the sickle to the corn.
5353                                                                                                                                                                                                                                                                                                                                   And thou shalt keep the feast of weeks unto the LORD thy God with a tribute of a freewill offering of thine hand, which thou shalt give unto the LORD thy God, according as the LORD thy God hath blessed thee:
5354                                                                                                                                                                                                                          And thou shalt rejoice before the LORD thy God, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite that is within thy gates, and the stranger, and the fatherless, and the widow, that are among you, in the place which the LORD thy God hath chosen to place his name there.
5355                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt remember that thou wast a bondman in Egypt: and thou shalt observe and do these statutes.
5356                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt observe the feast of tabernacles seven days, after that thou hast gathered in thy corn and thy wine:
5357                                                                                                                                                                                                                                                                                                                                    And thou shalt rejoice in thy feast, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite, the stranger, and the fatherless, and the widow, that are within thy gates.
5358                                                                                                                                                                                                                                                                                              Seven days shalt thou keep a solemn feast unto the LORD thy God in the place which the LORD shall choose: because the LORD thy God shall bless thee in all thine increase, and in all the works of thine hands, therefore thou shalt surely rejoice.
5359                                                                                                                                                                                                                                                                                       Three times in a year shall all thy males appear before the LORD thy God in the place which he shall choose; in the feast of unleavened bread, and in the feast of weeks, and in the feast of tabernacles: and they shall not appear before the LORD empty:
5360                                                                                                                                                                                                                                                                                                                                                                                                                                       Every man shall give as he is able, according to the blessing of the LORD thy God which he hath given thee.
5361                                                                                                                                                                                                                                                                                                                                                                         Judges and officers shalt thou make thee in all thy gates, which the LORD thy God giveth thee, throughout thy tribes: and they shall judge the people with just judgment.
5362                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not wrest judgment; thou shalt not respect persons, neither take a gift: for a gift doth blind the eyes of the wise, and pervert the words of the righteous.
5363                                                                                                                                                                                                                                                                                                                                                                                                                  That which is altogether just shalt thou follow, that thou mayest live, and inherit the land which the LORD thy God giveth thee.
5364                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not plant thee a grove of any trees near unto the altar of the LORD thy God, which thou shalt make thee.
5365                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither shalt thou set thee up any image; which the LORD thy God hateth.
5366                                                                                                                                                                                                                                                                                                                                                                              Thou shalt not sacrifice unto the LORD thy God any bullock, or sheep, wherein is blemish, or any evilfavouredness: for that is an abomination unto the LORD thy God.
5367                                                                                                                                                                                                                                                                                                                                              If there be found among you, within any of thy gates which the LORD thy God giveth thee, man or woman, that hath wrought wickedness in the sight of the LORD thy God, in transgressing his covenant,
5368                                                                                                                                                                                                                                                                                                                                                                                                      And hath gone and served other gods, and worshipped them, either the sun, or moon, or any of the host of heaven, which I have not commanded;
5369                                                                                                                                                                                                                                                                                                                                                                              And it be told thee, and thou hast heard of it, and inquired diligently, and, behold, it be true, and the thing certain, that such abomination is wrought in Israel:
5370                                                                                                                                                                                                                                                                                                                                                         Then shalt thou bring forth that man or that woman, which have committed that wicked thing, unto thy gates, even that man or that woman, and shalt stone them with stones, till they die.
5371                                                                                                                                                                                                                                                                                                                                                                                At the mouth of two witnesses, or three witnesses, shall he that is worthy of death be put to death; but at the mouth of one witness he shall not be put to death.
5372                                                                                                                                                                                                                                                                                                                                                                                The hands of the witnesses shall be first upon him to put him to death, and afterward the hands of all the people. So thou shalt put the evil away from among you.
5373                                                                                                                                                                                                                                                                   If there arise a matter too hard for thee in judgment, between blood and blood, between plea and plea, and between stroke and stroke, being matters of controversy within thy gates: then shalt thou arise, and get thee up into the place which the LORD thy God shall choose;
5374                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt come unto the priests the Levites, and unto the judge that shall be in those days, and inquire; and they shall show thee the sentence of judgment:
5375                                                                                                                                                                                                                                                                                                                                                           And thou shalt do according to the sentence, which they of that place which the LORD shall choose shall show thee; and thou shalt observe to do according to all that they inform thee:
5376                                                                                                                                                                                                                                                                                               According to the sentence of the law which they shall teach thee, and according to the judgment which they shall tell thee, thou shalt do: thou shalt not decline from the sentence which they shall show thee, to the right hand, nor to the left.
5377                                                                                                                                                                                                                                                                                                                  And the man that will do presumptuously, and will not hearken unto the priest that standeth to minister there before the LORD thy God, or unto the judge, even that man shall die: and thou shalt put away the evil from Israel.
5378                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the people shall hear, and fear, and do no more presumptuously.
5379                                                                                                                                                                                                                                                                                                                                          When thou art come unto the land which the LORD thy God giveth thee, and shalt possess it, and shalt dwell therein, and shalt say, I will set a king over me, like as all the nations that are about me;
5380                                                                                                                                                                                                                                                                                                                                 Thou shalt in any wise set him king over thee, whom the LORD thy God shall choose: one from among thy brethren shalt thou set king over thee: thou mayest not set a stranger over thee, which is not thy brother.
5381                                                                                                                                                                                                                                                                                                                           But he shall not multiply horses to himself, nor cause the people to return to Egypt, to the end that he should multiply horses: forasmuch as the LORD hath said unto you, Ye shall henceforth return no more that way.
5382                                                                                                                                                                                                                                                                                                                                                                                                           Neither shall he multiply wives to himself, that his heart turn not away: neither shall he greatly multiply to himself silver and gold.
5383                                                                                                                                                                                                                                                                                                                                                                        And it shall be, when he sitteth upon the throne of his kingdom, that he shall write him a copy of this law in a book out of that which is before the priests the Levites:
5384                                                                                                                                                                                                                                                                                                                                                       And it shall be with him, and he shall read therein all the days of his life: that he may learn to fear the LORD his God, to keep all the words of this law and these statutes, to do them:
5385                                                                                                                                                                                                                                                                                                     That his heart be not lifted up above his brethren, and that he turn not aside from the commandment, to the right hand, or to the left: to the end that he may prolong his days in his kingdom, he, and his children, in the midst of Israel.
5386                                                                                                                                                                                                                                                                                                                                                                   The priests the Levites, and all the tribe of Levi, shall have no part nor inheritance with Israel: they shall eat the offerings of the LORD made by fire, and his inheritance.
5387                                                                                                                                                                                                                                                                                                                                                                                                                          Therefore shall they have no inheritance among their brethren: the LORD is their inheritance, as he hath said unto them.
5388                                                                                                                                                                                                                                                                                                                                               And this shall be the priest's due from the people, from them that offer a sacrifice, whether it be ox or sheep; and they shall give unto the priest the shoulder, and the two cheeks, and the maw.
5389                                                                                                                                                                                                                                                                                                                                                                                                                    The firstfruit also of thy corn, of thy wine, and of thine oil, and the first of the fleece of thy sheep, shalt thou give him.
5390                                                                                                                                                                                                                                                                                                                                                                                                              For the LORD thy God hath chosen him out of all thy tribes, to stand to minister in the name of the LORD, him and his sons for ever.
5391                                                                                                                                                                                                                                                                                                                                                                            And if a Levite come from any of thy gates out of all Israel, where he sojourned, and come with all the desire of his mind unto the place which the LORD shall choose;
5392                                                                                                                                                                                                                                                                                                                                                                                                                    Then he shall minister in the name of the LORD his God, as all his brethren the Levites do, which stand there before the LORD.
5393                                                                                                                                                                                                                                                                                                                                                                                                                                                      They shall have like portions to eat, beside that which cometh of the sale of his patrimony.
5394                                                                                                                                                                                                                                                                                                                                                                                                          When thou art come into the land which the LORD thy God giveth thee, thou shalt not learn to do after the abominations of those nations.
5395                                                                                                                                                                                                                                                                                                                                                          There shall not be found among you any one that maketh his son or his daughter to pass through the fire, or that useth divination, or an observer of times, or an enchanter, or a witch.
5396                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or a charmer, or a consulter with familiar spirits, or a wizard, or a necromancer.
5397                                                                                                                                                                                                                                                                                                                                                                                           For all that do these things are an abomination unto the LORD: and because of these abominations the LORD thy God doth drive them out from before thee.
5398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt be perfect with the LORD thy God.
5399                                                                                                                                                                                                                                                                                                                                                                             For these nations, which thou shalt possess, hearkened unto observers of times, and unto diviners: but as for thee, the LORD thy God hath not suffered thee so to do.
5400                                                                                                                                                                                                                                                                                                                                                                                                              The LORD thy God will raise up unto thee a Prophet from the midst of thee, of thy brethren, like unto me; unto him ye shall hearken;
5401                                                                                                                                                                                                                                                                                                                            According to all that thou desiredst of the LORD thy God in Horeb in the day of the assembly, saying, Let me not hear again the voice of the LORD my God, neither let me see this great fire any more, that I die not.
5402                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto me, They have well spoken that which they have spoken.
5403                                                                                                                                                                                                                                                                                                                                                                          I will raise them up a Prophet from among their brethren, like unto thee, and will put my words in his mouth; and he shall speak unto them all that I shall command him.
5404                                                                                                                                                                                                                                                                                                                                                                                                               And it shall come to pass, that whosoever will not hearken unto my words which he shall speak in my name, I will require it of him.
5405                                                                                                                                                                                                                                                                                                                                                             But the prophet, which shall presume to speak a word in my name, which I have not commanded him to speak, or that shall speak in the name of other gods, even that prophet shall die.
5406                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if thou say in thine heart, How shall we know the word which the LORD hath not spoken?
5407                                                                                                                                                                                                                                                                                                                     When a prophet speaketh in the name of the LORD, if the thing follow not, nor come to pass, that is the thing which the LORD hath not spoken, but the prophet hath spoken it presumptuously: thou shalt not be afraid of him.
5408                                                                                                                                                                                                                                                                                                                                                                             When the LORD thy God hath cut off the nations, whose land the LORD thy God giveth thee, and thou succeedest them, and dwellest in their cities, and in their houses;
5409                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt separate three cities for thee in the midst of thy land, which the LORD thy God giveth thee to possess it.
5410                                                                                                                                                                                                                                                                                                                                                                            Thou shalt prepare thee a way, and divide the coasts of thy land, which the LORD thy God giveth thee to inherit, into three parts, that every slayer may flee thither.
5411                                                                                                                                                                                                                                                                                                                                                                                            And this is the case of the slayer, which shall flee thither, that he may live: Whoso killeth his neighbor ignorantly, whom he hated not in time past;
5412                                                                                                                                                                                                                                                                           As when a man goeth into the wood with his neighbor to hew wood, and his hand fetcheth a stroke with the axe to cut down the tree, and the head slippeth from the helve, and lighteth upon his neighbor, that he die; he shall flee unto one of those cities, and live:
5413                                                                                                                                                                                                                                                                                                                                  Lest the avenger of the blood pursue the slayer, while his heart is hot, and overtake him, because the way is long, and slay him; whereas he was not worthy of death, inasmuch as he hated him not in time past.
5414                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore I command thee, saying, Thou shalt separate three cities for thee.
5415                                                                                                                                                                                                                                                                                                                                                                                              And if the LORD thy God enlarge thy coast, as he hath sworn unto thy fathers, and give thee all the land which he promised to give unto thy fathers;
5416                                                                                                                                                                                                                                                                                                                                  If thou shalt keep all these commandments to do them, which I command thee this day, to love the LORD thy God, and to walk ever in his ways; then shalt thou add three cities more for thee, beside these three:
5417                                                                                                                                                                                                                                                                                                                                                                                                                    That innocent blood be not shed in thy land, which the LORD thy God giveth thee for an inheritance, and so blood be upon thee.
5418                                                                                                                                                                                                                                                                                                                                                                                      But if any man hate his neighbor, and lie in wait for him, and rise up against him, and smite him mortally that he die, and fleeth into one of these cities:
5419                                                                                                                                                                                                                                                                                                                                                                                                              Then the elders of his city shall send and fetch him thence, and deliver him into the hand of the avenger of blood, that he may die.
5420                                                                                                                                                                                                                                                                                                                                                                                                                     Thine eye shall not pity him, but thou shalt put away the guilt of innocent blood from Israel, that it may go well with thee.
5421                                                                                                                                                                                                                                                                                                                                                       Thou shalt not remove thy  neighbor's landmark, which they of old time have set in thine inheritance, which thou shalt inherit in the land that the LORD thy God giveth thee to possess it.
5422                                                                                                                                                                                                                                                                                                                                     One witness shall not rise up against a man for any iniquity, or for any sin, in any sin that he sinneth: at the mouth of two witnesses, or at the mouth of three witnesses, shall the matter be established.
5423                                                                                                                                                                                                                                                                                                                                                                                                                                                            If a false witness rise up against any man to testify against him that which is wrong;
5424                                                                                                                                                                                                                                                                                                                                                                                                 Then both the men, between whom the controversy is, shall stand before the LORD, before the priests and the judges, which shall be in those days;
5425                                                                                                                                                                                                                                                                                                                                                                                                   And the judges shall make diligent inquisition: and, behold, if the witness be a false witness, and hath testified falsely against his brother;
5426                                                                                                                                                                                                                                                                                                                                                                                                                       Then shall ye do unto him, as he had thought to have done unto his brother: so shalt thou put the evil away from among you.
5427                                                                                                                                                                                                                                                                                                                                                                                                                                         And those which remain shall hear, and fear, and shall henceforth commit no more any such evil among you.
5428                                                                                                                                                                                                                                                                                                                                                                                                                             And thine eye shall not pity; but life shall go for life, eye for eye, tooth for tooth, hand for hand, foot for foot.
5429                                                                                                                                                                                                                                                                                                                       When thou goest out to battle against thine enemies, and seest horses, and chariots, and a people more than thou, be not afraid of them: for the LORD thy God is with thee, which brought thee up out of the land of Egypt.
5430                                                                                                                                                                                                                                                                                                                                                                                                                                 And it shall be, when ye are come nigh unto the battle, that the priest shall approach and speak unto the people,
5431                                                                                                                                                                                                                                                                                                                                                 And shall say unto them, Hear, O Israel, ye approach this day unto battle against your enemies: let not your hearts faint, fear not, and do not tremble, neither be ye terrified because of them;
5432                                                                                                                                                                                                                                                                                                                                                                                                                                              For the LORD your God is he that goeth with you, to fight for you against your enemies, to save you.
5433                                                                                                                                                                                                                                                                                                                       And the officers shall speak unto the people, saying, What man is there that hath built a new house, and hath not dedicated it? let him go and return to his house, lest he die in the battle, and another man dedicate it.
5434                                                                                                                                                                                                                                                                                                                                                                   And what man is he that hath planted a vineyard, and hath not yet eaten of it? let him also go and return unto his house, lest he die in the battle, and another man eat of it.
5435                                                                                                                                                                                                                                                                                                                                                                              And what man is there that hath betrothed a wife, and hath not taken her? let him go and return unto his house, lest he die in the battle, and another man take her.
5436                                                                                                                                                                                                                                                                                                                         And the officers shall speak further unto the people, and they shall say, What man is there that is fearful and fainthearted? let him go and return unto his house, lest his brethren's heart faint as well as his heart.
5437                                                                                                                                                                                                                                                                                                                                                                                                   And it shall be, when the officers have made an end of speaking unto the people that they shall make captains of the armies to lead the people.
5438                                                                                                                                                                                                                                                                                                                                                                                                                                                               When thou comest nigh unto a city to fight against it, then proclaim peace unto it.
5439                                                                                                                                                                                                                                                                                                                                                      And it shall be, if it make thee answer of peace, and open unto thee, then it shall be, that all the people that is found therein shall be tributaries unto thee, and they shall serve thee.
5440                                                                                                                                                                                                                                                                                                                                                                                                                                               And if it will make no peace with thee, but will make war against thee, then thou shalt besiege it:
5441                                                                                                                                                                                                                                                                                                                                                                                                                     And when the LORD thy God hath delivered it into thine hands, thou shalt smite every male thereof with the edge of the sword:
5442                                                                                                                                                                                                                                                                                                                 But the women, and the little ones, and the cattle, and all that is in the city, even all the spoil thereof, shalt thou take unto thyself; and thou shalt eat the spoil of thine enemies, which the LORD thy God hath given thee.
5443                                                                                                                                                                                                                                                                                                                                                                                                                            Thus shalt thou do unto all the cities which are very far off from thee, which are not of the cities of these nations.
5444                                                                                                                                                                                                                                                                                                                                                                                                        But of the cities of these people, which the LORD thy God doth give thee for an inheritance, thou shalt save alive nothing that breatheth:
5445                                                                                                                                                                                                                                                                                                                                                         But thou shalt utterly destroy them; namely, the Hittites, and the Amorites, the Canaanites, and the Perizzites, the Hivites, and the Jebusites; as the LORD thy God hath commanded thee:
5446                                                                                                                                                                                                                                                                                                                                                                                                     That they teach you not to do after all their abominations, which they have done unto their gods; so should ye sin against the LORD your God.
5447                                                                                                                                                                                                                                                    When thou shalt besiege a city a long time, in making war against it to take it, thou shalt not destroy the trees thereof by forcing an axe against them: for thou mayest eat of them, and thou shalt not cut them down (for the tree of the field is man's life) to employ them in the siege:
5448                                                                                                                                                                                                                                                                                                                                           Only the trees which thou knowest that they be not trees for meat, thou shalt destroy and cut them down; and thou shalt build bulwarks against the city that maketh war with thee, until it be subdued.
5449                                                                                                                                                                                                                                                                                                                                                                                                   If one be found slain in the land which the LORD thy God giveth thee to possess it, lying in the field, and it be not known who hath slain him:
5450                                                                                                                                                                                                                                                                                                                                                                                                                  Then thy elders and thy judges shall come forth, and they shall measure unto the cities which are round about him that is slain:
5451                                                                                                                                                                                                                                                                                                                                                       And it shall be, that the city which is next unto the slain man, even the elders of that city shall take an heifer, which hath not been wrought with, and which hath not drawn in the yoke;
5452                                                                                                                                                                                                                                                                                                                                                                         And the elders of that city shall bring down the heifer unto a rough valley, which is neither eared nor sown, and shall strike off the heifer's neck there in the valley:
5453                                                                                                                                                                                                                                                                                                                          And the priests the sons of Levi shall come near; for them the LORD thy God hath chosen to minister unto him, and to bless in the name of the LORD; and by their word shall every controversy and every stroke be tried:
5454                                                                                                                                                                                                                                                                                                                                                                                                         And all the elders of that city, that are next unto the slain man, shall wash their hands over the heifer that is beheaded in the valley:
5455                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they shall answer and say, Our hands have not shed this blood, neither have our eyes seen it.
5456                                                                                                                                                                                                                                                                                                                                                                        Be merciful, O LORD, unto thy people Israel, whom thou hast redeemed, and lay not innocent blood unto thy people of Israel's charge. And the blood shall be forgiven them.
5457                                                                                                                                                                                                                                                                                                                                                                                                               So shalt thou put away the guilt of innocent blood from among you, when thou shalt do that which is right in the sight of the LORD.
5458                                                                                                                                                                                                                                                                                                                                                                                                  When thou goest forth to war against thine enemies, and the LORD thy God hath delivered them into thine hands, and thou hast taken them captive,
5459                                                                                                                                                                                                                                                                                                                                                                                                                              And seest among the captives a beautiful woman, and hast a desire unto her, that thou wouldest have her to thy wife;
5460                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then thou shalt bring her home to thine house, and she shall shave her head, and pare her nails;
5461                                                                                                                                                                                                                                                                                                         And she shall put the raiment of her captivity from off her, and shall remain in thine house, and bewail her father and her mother a full month: and after that thou shalt go in unto her, and be her husband, and she shall be thy wife.
5462                                                                                                                                                                                                                                                                                                                                And it shall be, if thou have no delight in her, then thou shalt let her go whither she will; but thou shalt not sell her at all for money, thou shalt not make merchandise of her, because thou hast humbled her.
5463                                                                                                                                                                                                                                                                                                                                                                        If a man have two wives, one beloved, and another hated, and they have born him children, both the beloved and the hated; and if the firstborn son be hers that was hated:
5464                                                                                                                                                                                                                                                                                                                                                        Then it shall be, when he maketh his sons to inherit that which he hath, that he may not make the son of the beloved firstborn before the son of the hated, which is indeed the firstborn:
5465                                                                                                                                                                                                                                                                                                                                                  But he shall acknowledge the son of the hated for the firstborn, by giving him a double portion of all that he hath: for he is the beginning of his strength; the right of the firstborn is his.
5466                                                                                                                                                                                                                                                                                                                                                         If a man have a stubborn and rebellious son, which will not obey the voice of his father, or the voice of his mother, and that, when they have chastened him, will not hearken unto them:
5467                                                                                                                                                                                                                                                                                                                                                                                                              Then shall his father and his mother lay hold on him, and bring him out unto the elders of his city, and unto the gate of his place;
5468                                                                                                                                                                                                                                                                                                                                                                                             And they shall say unto the elders of his city, This our son is stubborn and rebellious, he will not obey our voice; he is a glutton, and a drunkard.
5469                                                                                                                                                                                                                                                                                                                                                                                            And all the men of his city shall stone him with stones, that he die: so shalt thou put evil away from among you; and all Israel shall hear, and fear.
5470                                                                                                                                                                                                                                                                                                                                                                                                                                     And if a man have committed a sin worthy of death, and he be to be put to death, and thou hang him on a tree:
5471                                                                                                                                                                                                                                                                                                                 His body shall not remain all night upon the tree, but thou shalt in any wise bury him that day; (for he that is hanged is accursed of God;) that thy land be not defiled, which the LORD thy God giveth thee for an inheritance.
5472                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt not see thy brother's ox or his sheep go astray, and hide thyself from them: thou shalt in any case bring them again unto thy brother.
5473                                                                                                                                                                                                                                                                                                                              And if thy brother be not nigh unto thee, or if thou know him not, then thou shalt bring it unto thine own house, and it shall be with thee until thy brother seek after it, and thou shalt restore it to him again.
5474                                                                                                                                                                                                                                                                                                                        In like manner shalt thou do with his ass; and so shalt thou do with his raiment; and with all lost thing of thy brother's, which he hath lost, and thou hast found, shalt thou do likewise: thou mayest not hide thyself.
5475                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not see thy brother's ass or his ox fall down by the way, and hide thyself from them: thou shalt surely help him to lift them up again.
5476                                                                                                                                                                                                                                                                                                                                                                                The woman shall not wear that which pertaineth unto a man, neither shall a man put on a woman's garment: for all that do so are abomination unto the LORD thy God.
5477                                                                                                                                                                                                                                                                                                                        If a bird's nest chance to be before thee in the way in any tree, or on the ground, whether they be young ones, or eggs, and the dam sitting upon the young, or upon the eggs, thou shalt not take the dam with the young:
5478                                                                                                                                                                                                                                                                                                                                                                                                      But thou shalt in any wise let the dam go, and take the young to thee; that it may be well with thee, and that thou mayest prolong thy days.
5479                                                                                                                                                                                                                                                                                                                                                                                          When thou buildest a new house, then thou shalt make a battlement for thy roof, that thou bring not blood upon thine house, if any man fall from thence.
5480                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt not sow thy vineyard with divers seeds: lest the fruit of thy seed which thou hast sown, and the fruit of thy vineyard, be defiled.
5481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not plow with an ox and an ass together.
5482                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not wear a garment of divers sorts, as of woolen and linen together.
5483                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt make thee fringes upon the four quarters of thy vesture, wherewith thou coverest thyself.
5484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If any man take a wife, and go in unto her, and hate her,
5485                                                                                                                                                                                                                                                                                                                                                                                         And give occasions of speech against her, and bring up an evil name upon her, and say, I took this woman, and when I came to her, I found her not a maid:
5486                                                                                                                                                                                                                                                                                                                                                                                           Then shall the father of the damsel, and her mother, take and bring forth the tokens of the damsel's virginity unto the elders of the city in the gate:
5487                                                                                                                                                                                                                                                                                                                                                                                                                                   And the damsel's father shall say unto the elders, I gave my daughter unto this man to wife, and he hateth her;
5488                                                                                                                                                                                                                                                                                                                          And, lo, he hath given occasions of speech against her, saying, I found not thy daughter a maid; and yet these are the tokens of my daughter's virginity. And they shall spread the cloth before the elders of the city.
5489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the elders of that city shall take that man and chastise him;
5490                                                                                                                                                                                                                                                                                                         And they shall amerce him in an hundred shekels of silver, and give them unto the father of the damsel, because he hath brought up an evil name upon a virgin of Israel: and she shall be his wife; he may not put her away all his days.
5491                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if this thing be true, and the tokens of virginity be not found for the damsel:
5492                                                                                                                                                                                                                                                                          Then they shall bring out the damsel to the door of her father's house, and the men of her city shall stone her with stones that she die: because she hath wrought folly in Israel, to play the whore in her father's house: so shalt thou put evil away from among you.
5493                                                                                                                                                                                                                                                                                                                                                       If a man be found lying with a woman married to an husband, then they shall both of them die, both the man that lay with the woman, and the woman: so shalt thou put away evil from Israel.
5494                                                                                                                                                                                                                                                                                                                                                                                                                                      If a damsel that is a virgin be betrothed unto an husband, and a man find her in the city, and lie with her;
5495                                                                                                                                                                                                                                                                      Then ye shall bring them both out unto the gate of that city, and ye shall stone them with stones that they die; the damsel, because she cried not, being in the city; and the man, because he hath humbled his neighbor's wife: so thou shalt put away evil from among you.
5496                                                                                                                                                                                                                                                                                                                                                                                                        But if a man find a betrothed damsel in the field, and the man force her, and lie with her: then the man only that lay with her shall die.
5497                                                                                                                                                                                                                                                                                                                                                                 But unto the damsel thou shalt do nothing; there is in the damsel no sin worthy of death: for as when a man riseth against his neighbor, and slayeth him, even so is this matter:
5498                                                                                                                                                                                                                                                                                                                                                                                                                                                    For he found her in the field, and the betrothed damsel cried, and there was none to save her.
5499                                                                                                                                                                                                                                                                                                                                                                                                                        If a man find a damsel that is a virgin, which is not betrothed, and lay hold on her, and lie with her, and they be found;
5500                                                                                                                                                                                                                                                                                                                                                         Then the man that lay with her shall give unto the damsel's father fifty shekels of silver, and she shall be his wife; because he hath humbled her, he may not put her away all his days.
5501                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A man shall not take his father's wife, nor discover his father's skirt.
5502                                                                                                                                                                                                                                                                                                                                                                                                                            He that is wounded in the stones, or hath his privy member cut off, shall not enter into the congregation of the LORD.
5503                                                                                                                                                                                                                                                                                                                                                                                                   A bastard shall not enter into the congregation of the LORD; even to his tenth generation shall he not enter into the congregation of the LORD.
5504                                                                                                                                                                                                                                                                                                                                                                         An Ammonite or Moabite shall not enter into the congregation of the LORD; even to their tenth generation shall they not enter into the congregation of the LORD for ever:
5505                                                                                                                                                                                                                                                                                                                                               Because they met you not with bread and with water in the way, when ye came forth out of Egypt; and because they hired against thee Balaam the son of Beor of Pethor of Mesopotamia, to curse thee.
5506                                                                                                                                                                                                                                                                                                                                                                                Nevertheless the LORD thy God would not hearken unto Balaam; but the LORD thy God turned the curse into a blessing unto thee, because the LORD thy God loved thee.
5507                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not seek their peace nor their prosperity all thy days for ever.
5508                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not abhor an Edomite; for he is thy brother: thou shalt not abhor an Egyptian; because thou wast a stranger in his land.
5509                                                                                                                                                                                                                                                                                                                                                                                                                                   The children that are begotten of them shall enter into the congregation of the LORD in their third generation.
5510                                                                                                                                                                                                                                                                                                                                                                                                                                                          When the host goeth forth against thine enemies, then keep thee from every wicked thing.
5511                                                                                                                                                                                                                                                                                                                                                                 If there be among you any man, that is not clean by reason of uncleanness that chanceth him by night, then shall he go abroad out of the camp, he shall not come within the camp:
5512                                                                                                                                                                                                                                                                                                                                                                                                           But it shall be, when evening cometh on, he shall wash himself with water: and when the sun is down, he shall come into the camp again.
5513                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt have a place also without the camp, whither thou shalt go forth abroad:
5514                                                                                                                                                                                                                                                                                                                                                           And thou shalt have a paddle upon thy weapon; and it shall be, when thou wilt ease thyself abroad, thou shalt dig therewith, and shalt turn back and cover that which cometh from thee:
5515                                                                                                                                                                                                                                                                                                                                For the LORD thy God walketh in the midst of thy camp, to deliver thee, and to give up thine enemies before thee; therefore shall thy camp be holy: that he see no unclean thing in thee, and turn away from thee.
5516                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt not deliver unto his master the servant which is escaped from his master unto thee:
5517                                                                                                                                                                                                                                                                                                                                                                                          He shall dwell with thee, even among you, in that place which he shall choose in one of thy gates, where it liketh him best: thou shalt not oppress him.
5518                                                                                                                                                                                                                                                                                                                                                                                                                                                         There shall be no whore of the daughters of Israel, nor a sodomite of the sons of Israel.
5519                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not bring the hire of a whore, or the price of a dog, into the house of the LORD thy God for any vow: for even both these are abomination unto the LORD thy God.
5520                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not lend upon usury to thy brother; usury of money, usury of victuals, usury of any thing that is lent upon usury:
5521                                                                                                                                                                                                                                                                                                                       Unto a stranger thou mayest lend upon usury; but unto thy brother thou shalt not lend upon usury: that the LORD thy God may bless thee in all that thou settest thine hand to in the land whither thou goest to possess it.
5522                                                                                                                                                                                                                                                                                                                                                                                When thou shalt vow a vow unto the LORD thy God, thou shalt not slack to pay it: for the LORD thy God will surely require it of thee; and it would be sin in thee.
5523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But if thou shalt forbear to vow, it shall be no sin in thee.
5524                                                                                                                                                                                                                                                                                                                                                            That which is gone out of thy lips thou shalt keep and perform; even a freewill offering, according as thou hast vowed unto the LORD thy God, which thou hast promised with thy mouth.
5525                                                                                                                                                                                                                                                                                                                                                                                              When thou comest into thy neighbor's vineyard, then thou mayest eat grapes thy fill at thine own pleasure; but thou shalt not put any in thy vessel.
5526                                                                                                                                                                                                                                                                                                                                                                     When thou comest into the standing corn of thy neighbor, then thou mayest pluck the ears with thine hand; but thou shalt not move a sickle unto thy neighbor's standing corn.
5527                                                                                                                                                                                                                                                                                       When a man hath taken a wife, and married her, and it come to pass that she find no favor in his eyes, because he hath found some uncleanness in her: then let him write her a bill of divorcement, and give it in her hand, and send her out of his house.
5528                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when she is departed out of his house, she may go and be another man's wife.
5529                                                                                                                                                                                                                                                                                                                                                And if the latter husband hate her, and write her a bill of divorcement, and giveth it in her hand, and sendeth her out of his house; or if the latter husband die, which took her to be his wife;
5530                                                                                                                                                                                                                                                                                              Her former husband, which sent her away, may not take her again to be his wife, after that she is defiled; for that is abomination before the LORD: and thou shalt not cause the land to sin, which the LORD thy God giveth thee for an inheritance.
5531                                                                                                                                                                                                                                                                                                                                              When a man hath taken a new wife, he shall not go out to war, neither shall he be charged with any business: but he shall be free at home one year, and shall cheer up his wife which he hath taken.
5532                                                                                                                                                                                                                                                                                                                                                                                                                                              No man shall take the nether or the upper millstone to pledge: for he taketh a man's life to pledge.
5533                                                                                                                                                                                                                                                                                                                                                  If a man be found stealing any of his brethren of the children of Israel, and maketh merchandise of him, or selleth him; then that thief shall die; and thou shalt put evil away from among you.
5534                                                                                                                                                                                                                                                                                                                                                           Take heed in the plague of leprosy, that thou observe diligently, and do according to all that the priests the Levites shall teach you: as I commanded them, so ye shall observe to do.
5535                                                                                                                                                                                                                                                                                                                                                                                                                                            Remember what the LORD thy God did unto Miriam by the way, after that ye were come forth out of Egypt.
5536                                                                                                                                                                                                                                                                                                                                                                                                                                                  When thou dost lend thy brother any thing, thou shalt not go into his house to fetch his pledge.
5537                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt stand abroad, and the man to whom thou dost lend shall bring out the pledge abroad unto thee.
5538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if the man be poor, thou shalt not sleep with his pledge:
5539                                                                                                                                                                                                                                                                                                                                               In any case thou shalt deliver him the pledge again when the sun goeth down, that he may sleep in his own raiment, and bless thee: and it shall be righteousness unto thee before the LORD thy God.
5540                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not oppress an hired servant that is poor and needy, whether he be of thy brethren, or of thy strangers that are in thy land within thy gates:
5541                                                                                                                                                                                                                                                                                                                                                   At his day thou shalt give him his hire, neither shall the sun go down upon it; for he is poor, and setteth his heart upon it: lest he cry against thee unto the LORD, and it be sin unto thee.
5542                                                                                                                                                                                                                                                                                                                                                                              The fathers shall not be put to death for the children, neither shall the children be put to death for the fathers: every man shall be put to death for his own sin.
5543                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt not pervert the judgment of the stranger, nor of the fatherless; nor take a widow's raiment to pledge:
5544                                                                                                                                                                                                                                                                                                                                                                                                  But thou shalt remember that thou wast a bondman in Egypt, and the LORD thy God redeemed thee thence: therefore I command thee to do this thing.
5545                                                                                                                                                                                                                                                                           When thou cuttest down thine harvest in thy field, and hast forgot a sheaf in the field, thou shalt not go again to fetch it: it shall be for the stranger, for the fatherless, and for the widow: that the LORD thy God may bless thee in all the work of thine hands.
5546                                                                                                                                                                                                                                                                                                                                                                                                 When thou beatest thine olive tree, thou shalt not go over the boughs again: it shall be for the stranger, for the fatherless, and for the widow.
5547                                                                                                                                                                                                                                                                                                                                                                                           When thou gatherest the grapes of thy vineyard, thou shalt not glean it afterward: it shall be for the stranger, for the fatherless, and for the widow.
5548                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt remember that thou wast a bondman in the land of Egypt: therefore I command thee to do this thing.
5549                                                                                                                                                                                                                                                                                                                                                                                If there be a controversy between men, and they come unto judgment, that the judges may judge them; then they shall justify the righteous, and condemn the wicked.
5550                                                                                                                                                                                                                                                                                                                                                             And it shall be, if the wicked man be worthy to be beaten, that the judge shall cause him to lie down, and to be beaten before his face, according to his fault, by a certain number.
5551                                                                                                                                                                                                                                                                                                                                                                                Forty stripes he may give him, and not exceed: lest, if he should exceed, and beat him above these with many stripes, then thy brother should seem vile unto thee.
5552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not muzzle the ox when he treadeth out the corn.
5553                                                                                                                                                                                                                                                                                 If brethren dwell together, and one of them die, and have no child, the wife of the dead shall not marry without unto a stranger: her husband's brother shall go in unto her, and take her to him to wife, and perform the duty of an husband's brother unto her.
5554                                                                                                                                                                                                                                                                                                                                                                                             And it shall be, that the firstborn which she beareth shall succeed in the name of his brother which is dead, that his name be not put out of Israel.
5555                                                                                                                                                                                                                                                                                    And if the man like not to take his brother's wife, then let his brother's wife go up to the gate unto the elders, and say, My husband's brother refuseth to raise up unto his brother a name in Israel, he will not perform the duty of my husband's brother.
5556                                                                                                                                                                                                                                                                                                                                                                                                                           Then the elders of his city shall call him, and speak unto him: and if he stand to it, and say, I like not to take her;
5557                                                                                                                                                                                                                                                                                                    Then shall his brother's wife come unto him in the presence of the elders, and loose his shoe from off his foot, and spit in his face, and shall answer and say, So shall it be done unto that man that will not build up his brother's house.
5558                                                                                                                                                                                                                                                                                                                                                                                                                                                               And his name shall be called in Israel, The house of him that hath his shoe loosed.
5559                                                                                                                                                                                                                                                                                                                                    When men strive together one with another, and the wife of the one draweth near for to deliver her husband out of the hand of him that smiteth him, and putteth forth her hand, and taketh him by the secrets:
5560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then thou shalt cut off her hand, thine eye shall not pity her.
5561                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not have in thy bag divers weights, a great and a small.
5562                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not have in thine house divers measures, a great and a small.
5563                                                                                                                                                                                                                                                                                                                                                                        But thou shalt have a perfect and just weight, a perfect and just measure shalt thou have: that thy days may be lengthened in the land which the LORD thy God giveth thee.
5564                                                                                                                                                                                                                                                                                                                                                                                                                                             For all that do such things, and all that do unrighteously, are an abomination unto the LORD thy God.
5565                                                                                                                                                                                                                                                                                                                                                                                                                                                              Remember what Amalek did unto thee by the way, when ye were come forth out of Egypt;
5566                                                                                                                                                                                                                                                                                                                                                                                         How he met thee by the way, and smote the hindmost of thee, even all that were feeble behind thee, when thou wast faint and weary; and he feared not God.
5567                                                                                                                                                                                                                                                            Therefore it shall be, when the LORD thy God hath given thee rest from all thine enemies round about, in the land which the LORD thy God giveth thee for an inheritance to possess it, that thou shalt blot out the remembrance of Amalek from under heaven; thou shalt not forget it.
5568                                                                                                                                                                                                                                                                                                                                                                                              And it shall be, when thou art come in unto the land which the LORD thy God giveth thee for an inheritance, and possessest it, and dwellest therein;
5569                                                                                                                                                                                                                                                                                     That thou shalt take of the first of all the fruit of the earth, which thou shalt bring of thy land that the LORD thy God giveth thee, and shalt put it in a basket, and shalt go unto the place which the LORD thy God shall choose to place his name there.
5570                                                                                                                                                                                                                                                                                                                                  And thou shalt go unto the priest that shall be in those days, and say unto him, I profess this day unto the LORD thy God, that I am come unto the country which the LORD sware unto our fathers for to give us.
5571                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall take the basket out of thine hand, and set it down before the altar of the LORD thy God.
5572                                                                                                                                                                                                                                                                                                                                And thou shalt speak and say before the LORD thy God, A Syrian ready to perish was my father, and he went down into Egypt, and sojourned there with a few, and became there a nation, great, mighty, and populous:
5573                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the Egyptians evil entreated us, and afflicted us, and laid upon us hard bondage:
5574                                                                                                                                                                                                                                                                                                                                                                                                    And when we cried unto the LORD God of our fathers, the LORD heard our voice, and looked on our affliction, and our labor, and our oppression:
5575                                                                                                                                                                                                                                                                                                                                                                                       And the LORD brought us forth out of Egypt with a mighty hand, and with an outstretched arm, and with great terribleness, and with signs, and with wonders:
5576                                                                                                                                                                                                                                                                                                                                                                                                                                And he hath brought us into this place, and hath given us this land, even a land that floweth with milk and honey.
5577                                                                                                                                                                                                                                                                                                                                                               And now, behold, I have brought the firstfruits of the land, which thou, O LORD, hast given me. And thou shalt set it before the LORD thy God, and worship before the LORD thy God:
5578                                                                                                                                                                                                                                                                                                                                                                           And thou shalt rejoice in every good thing which the LORD thy God hath given unto thee, and unto thine house, thou, and the Levite, and the stranger that is among you.
5579                                                                                                                                                                                                                                                                                           When thou hast made an end of tithing all the tithes of thine increase the third year, which is the year of tithing, and hast given it unto the Levite, the stranger, the fatherless, and the widow, that they may eat within thy gates, and be filled;
5580                                                                                                                                                                                            Then thou shalt say before the LORD thy God, I have brought away the hallowed things out of mine house, and also have given them unto the Levite, and unto the stranger, to the fatherless, and to the widow, according to all thy commandments which thou hast commanded me: I have not transgressed thy commandments, neither have I forgotten them.
5581                                                                                                                                                                                                                                                                                     I have not eaten thereof in my mourning, neither have I taken away ought thereof for any unclean use, nor given ought thereof for the dead: but I have hearkened to the voice of the LORD my God, and have done according to all that thou hast commanded me.
5582                                                                                                                                                                                                                                                                                                                                                   Look down from thy holy habitation, from heaven, and bless thy people Israel, and the land which thou hast given us, as thou swarest unto our fathers, a land that floweth with milk and honey.
5583                                                                                                                                                                                                                                                                                                                                                                              This day the LORD thy God hath commanded thee to do these statutes and judgments: thou shalt therefore keep and do them with all thine heart, and with all thy soul.
5584                                                                                                                                                                                                                                                                                                                                                                    Thou hast avouched the LORD this day to be thy God, and to walk in his ways, and to keep his statutes, and his commandments, and his judgments, and to hearken unto his voice:
5585                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD hath avouched thee this day to be his peculiar people, as he hath promised thee, and that thou shouldest keep all his commandments;
5586                                                                                                                                                                                                                                                                                                                                                                And to make thee high above all nations which he hath made, in praise, and in name, and in honor; and that thou mayest be an holy people unto the LORD thy God, as he hath spoken.
5587                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses with the elders of Israel commanded the people, saying, Keep all the commandments which I command you this day.
5588                                                                                                                                                                                                                                                                                                                                                              And it shall be on the day when ye shall pass over Jordan unto the land which the LORD thy God giveth thee, that thou shalt set thee up great stones, and plaster them with plaster:
5589                                                                                                                                                                                                                                                                                         And thou shalt write upon them all the words of this law, when thou art passed over, that thou mayest go in unto the land which the LORD thy God giveth thee, a land that floweth with milk and honey; as the LORD God of thy fathers hath promised thee.
5590                                                                                                                                                                                                                                                                                                                                                                      Therefore it shall be when ye be gone over Jordan, that ye shall set up these stones, which I command you this day, in mount Ebal, and thou shalt plaster them with plaster.
5591                                                                                                                                                                                                                                                                                                                                                                                                                    And there shalt thou build an altar unto the LORD thy God, an altar of stones: thou shalt not lift up any iron tool upon them.
5592                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt build the altar of the LORD thy God of whole stones: and thou shalt offer burnt offerings thereon unto the LORD thy God:
5593                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt offer peace offerings, and shalt eat there, and rejoice before the LORD thy God.
5594                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt write upon the stones all the words of this law very plainly.
5595                                                                                                                                                                                                                                                                                                                                                                                   And Moses and the priests the Levites spake unto all Israel, saying, Take heed, and hearken, O Israel; this day thou art become the people of the LORD thy God.
5596                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt therefore obey the voice of the LORD thy God, and do his commandments and his statutes, which I command thee this day.
5597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses charged the people the same day, saying,
5598                                                                                                                                                                                                                                                                                                                                                                                      These shall stand upon mount Gerizim to bless the people, when ye are come over Jordan; Simeon, and Levi, and Judah, and Issachar, and Joseph, and Benjamin:
5599                                                                                                                                                                                                                                                                                                                                                                                                                                           And these shall stand upon mount Ebal to curse; Reuben, Gad, and Asher, and Zebulun, Dan, and Naphtali.
5600                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Levites shall speak, and say unto all the men of Israel with a loud voice,
5601                                                                                                                                                                                                                                                                                                                                  Cursed be the man that maketh any graven or molten image, an abomination unto the LORD, the work of the hands of the craftsman, and putteth it in a secret place. And all the people shall answer and say, Amen.
5602                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cursed be he that setteth light by his father or his mother. And all the people shall say, Amen.
5603                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cursed be he that removeth his neighbor's landmark. And all the people shall say, Amen.
5604                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cursed be he that maketh the blind to wander out of the way. And all the people shall say, Amen.
5605                                                                                                                                                                                                                                                                                                                                                                                                                             Cursed be he that perverteth the judgment of the stranger, fatherless, and widow. And all the people shall say, Amen.
5606                                                                                                                                                                                                                                                                                                                                                                                                                     Cursed be he that lieth with his father's wife; because he uncovereth his father's skirt. And all the people shall say, Amen.
5607                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cursed be he that lieth with any manner of beast. And all the people shall say, Amen.
5608                                                                                                                                                                                                                                                                                                                                                                                                           Cursed be he that lieth with his sister, the daughter of his father, or the daughter of his mother. And all the people shall say, Amen.
5609                                                                                                                                                                                                                                                                                                                                                                                                                                                               Cursed be he that lieth with his mother in law. And all the people shall say, Amen.
5610                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cursed be he that smiteth his neighbor secretly. And all the people shall say, Amen.
5611                                                                                                                                                                                                                                                                                                                                                                                                                                                   Cursed be he that taketh reward to slay an innocent person. And all the people shall say, Amen.
5612                                                                                                                                                                                                                                                                                                                                                                                                                                        Cursed be he that confirmeth not all the words of this law to do them. And all the people shall say, Amen.
5613                                                                                                                                                                                                                                                                                              And it shall come to pass, if thou shalt hearken diligently unto the voice of the LORD thy God, to observe and to do all his commandments which I command thee this day, that the LORD thy God will set thee on high above all nations of the earth:
5614                                                                                                                                                                                                                                                                                                                                                                                                                          And all these blessings shall come on thee, and overtake thee, if thou shalt hearken unto the voice of the LORD thy God.
5615                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Blessed shalt thou be in the city, and blessed shalt thou be in the field.
5616                                                                                                                                                                                                                                                                                                                                                                                          Blessed shall be the fruit of thy body, and the fruit of thy ground, and the fruit of thy cattle, the increase of thy kine, and the flocks of thy sheep.
5617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Blessed shall be thy basket and thy store.
5618                                                                                                                                                                                                                                                                                                                                                                                                                                                         Blessed shalt thou be when thou comest in, and blessed shalt thou be when thou goest out.
5619                                                                                                                                                                                                                                                                                                                                                                            The LORD shall cause thine enemies that rise up against thee to be smitten before thy face: they shall come out against thee one way, and flee before thee seven ways.
5620                                                                                                                                                                                                                                                                                                                                                           The LORD shall command the blessing upon thee in thy storehouses, and in all that thou settest thine hand unto; and he shall bless thee in the land which the LORD thy God giveth thee.
5621                                                                                                                                                                                                                                                                                                                                                                             The LORD shall establish thee an holy people unto himself, as he hath sworn unto thee, if thou shalt keep the commandments of the LORD thy God, and walk in his ways.
5622                                                                                                                                                                                                                                                                                                                                                                                                                             And all people of the earth shall see that thou art called by the name of the LORD; and they shall be afraid of thee.
5623                                                                                                                                                                                                                                                                                                                                        And the LORD shall make thee plenteous in goods, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy ground, in the land which the LORD sware unto thy fathers to give thee.
5624                                                                                                                                                                                                                                                                                                                              The LORD shall open unto thee his good treasure, the heaven to give the rain unto thy land in his season, and to bless all the work of thine hand: and thou shalt lend unto many nations, and thou shalt not borrow.
5625                                                                                                                                                                                                                                                                                                   And the LORD shall make thee the head, and not the tail; and thou shalt be above only, and thou shalt not be beneath; if that thou hearken unto the commandments of the LORD thy God, which I command thee this day, to observe and to do them:
5626                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt not go aside from any of the words which I command thee this day, to the right hand, or to the left, to go after other gods to serve them.
5627                                                                                                                                                                                                                                                                                                      But it shall come to pass, if thou wilt not hearken unto the voice of the LORD thy God, to observe to do all his commandments and his statutes which I command thee this day; that all these curses shall come upon thee, and overtake thee:
5628                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cursed shalt thou be in the city, and cursed shalt thou be in the field.
5629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cursed shall be thy basket and thy store.
5630                                                                                                                                                                                                                                                                                                                                                                                                                          Cursed shall be the fruit of thy body, and the fruit of thy land, the increase of thy kine, and the flocks of thy sheep.
5631                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cursed shalt thou be when thou comest in, and cursed shalt thou be when thou goest out.
5632                                                                                                                                                                                                                                                                                                  The LORD shall send upon thee cursing, vexation, and rebuke, in all that thou settest thine hand unto for to do, until thou be destroyed, and until thou perish quickly; because of the wickedness of thy doings, whereby thou hast forsaken me.
5633                                                                                                                                                                                                                                                                                                                                                                                                             The LORD shall make the pestilence cleave unto thee, until he have consumed thee from off the land, whither thou goest to possess it.
5634                                                                                                                                                                                                                                                                                                                      The LORD shall smite thee with a consumption, and with a fever, and with an inflammation, and with an extreme burning, and with the sword, and with blasting, and with mildew; and they shall pursue thee until thou perish.
5635                                                                                                                                                                                                                                                                                                                                                                                                                                              And thy heaven that is over thy head shall be brass, and the earth that is under thee shall be iron.
5636                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD shall make the rain of thy land powder and dust: from heaven shall it come down upon thee, until thou be destroyed.
5637                                                                                                                                                                                                                                                                                                                                                   The LORD shall cause thee to be smitten before thine enemies: thou shalt go out one way against them, and flee seven ways before them: and shalt be removed into all the kingdoms of the earth.
5638                                                                                                                                                                                                                                                                                                                                                                                                                       And thy carcass shall be meat unto all fowls of the air, and unto the beasts of the earth, and no man shall fray them away.
5639                                                                                                                                                                                                                                                                                                                                                                                                   The LORD will smite thee with the botch of Egypt, and with the emerods, and with the scab, and with the itch, whereof thou canst not be healed.
5640                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD shall smite thee with madness, and blindness, and astonishment of heart:
5641                                                                                                                                                                                                                                                                                                                                                     And thou shalt grope at noonday, as the blind gropeth in darkness, and thou shalt not prosper in thy ways: and thou shalt be only oppressed and spoiled evermore, and no man shall save thee.
5642                                                                                                                                                                                                                                                                                                                                                 Thou shalt betroth a wife, and another man shall lie with her: thou shalt build an house, and thou shalt not dwell therein: thou shalt plant a vineyard, and shalt not gather the grapes thereof.
5643                                                                                                                                                                                                                                                                                 Thine ox shall be slain before thine eyes, and thou shalt not eat thereof: thine ass shall be violently taken away from before thy face, and shall not be restored to thee: thy sheep shall be given unto thine enemies, and thou shalt have none to rescue them.
5644                                                                                                                                                                                                                                                                                                                                                             Thy sons and thy daughters shall be given unto another people, and thine eyes shall look, and fail with longing for them all the day long; and there shall be no might in thine hand.
5645                                                                                                                                                                                                                                                                                                                                                                                                      The fruit of thy land, and all thy labors, shall a nation which thou knowest not eat up; and thou shalt be only oppressed and crushed alway:
5646                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So that thou shalt be mad for the sight of thine eyes which thou shalt see.
5647                                                                                                                                                                                                                                                                                                                                                                                             The LORD shall smite thee in the knees, and in the legs, with a sore botch that cannot be healed, from the sole of thy foot unto the top of thy head.
5648                                                                                                                                                                                                                                                                                                                                                       The LORD shall bring thee, and thy king which thou shalt set over thee, unto a nation which neither thou nor thy fathers have known; and there shalt thou serve other gods, wood and stone.
5649                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt become an astonishment, a proverb, and a byword, among all nations whither the LORD shall lead thee.
5650                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt carry much seed out into the field, and shalt gather but little in; for the locust shall consume it.
5651                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt plant vineyards, and dress them, but shalt neither drink of the wine, nor gather the grapes; for the worms shall eat them.
5652                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt have olive trees throughout all thy coasts, but thou shalt not anoint thyself with the oil; for thine olive shall cast his fruit.
5653                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt beget sons and daughters, but thou shalt not enjoy them; for they shall go into captivity.
5654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All thy trees and fruit of thy land shall the locust consume.
5655                                                                                                                                                                                                                                                                                                                                                                                                                                            The stranger that is within thee shall get up above thee very high; and thou shalt come down very low.
5656                                                                                                                                                                                                                                                                                                                                                                                                                                          He shall lend to thee, and thou shalt not lend to him: he shall be the head, and thou shalt be the tail.
5657                                                                                                                                                                                                                                                                                             Moreover all these curses shall come upon thee, and shall pursue thee, and overtake thee, till thou be destroyed; because thou hearkenedst not unto the voice of the LORD thy God, to keep his commandments and his statutes which he commanded thee:
5658                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they shall be upon thee for a sign and for a wonder, and upon thy seed for ever.
5659                                                                                                                                                                                                                                                                                                                                                                                                                          Because thou servedst not the LORD thy God with joyfulness, and with gladness of heart, for the abundance of all things;
5660                                                                                                                                                                                                                                                                                                              Therefore shalt thou serve thine enemies which the LORD shall send against thee, in hunger, and in thirst, and in nakedness, and in want of all things: and he shall put a yoke of iron upon thy neck, until he have destroyed thee.
5661                                                                                                                                                                                                                                                                                                                                                                                    The LORD shall bring a nation against thee from far, from the end of the earth, as swift as the eagle flieth; a nation whose tongue thou shalt not understand;
5662                                                                                                                                                                                                                                                                                                                                                                                                                                        A nation of fierce countenance, which shall not regard the person of the old, nor show favor to the young:
5663                                                                                                                                                                                                                                                                                                       And he shall eat the fruit of thy cattle, and the fruit of thy land, until thou be destroyed: which also shall not leave thee either corn, wine, or oil, or the increase of thy kine, or flocks of thy sheep, until he have destroyed thee.
5664                                                                                                                                                                                                                                                                                               And he shall besiege thee in all thy gates, until thy high and fenced walls come down, wherein thou trustedst, throughout all thy land: and he shall besiege thee in all thy gates throughout all thy land, which the LORD thy God hath given thee.
5665                                                                                                                                                                                                                                                                                                                             And thou shalt eat the fruit of thine own body, the flesh of thy sons and of thy daughters, which the LORD thy God hath given thee, in the siege, and in the straitness, wherewith thine enemies shall distress thee:
5666                                                                                                                                                                                                                                                                                                                                             So that the man that is tender among you, and very delicate, his eye shall be evil toward his brother, and toward the wife of his bosom, and toward the remnant of his children which he shall leave:
5667                                                                                                                                                                                                                                                                                                                       So that he will not give to any of them of the flesh of his children whom he shall eat: because he hath nothing left him in the siege, and in the straitness, wherewith thine enemies shall distress thee in all thy gates.
5668                                                                                                                                                                                                                                                                                               The tender and delicate woman among you, which would not adventure to set the sole of her foot upon the ground for delicateness and tenderness, her eye shall be evil toward the husband of her bosom, and toward her son, and toward her daughter,
5669                                                                                                                                                                                                                                                                                         And toward her young one that cometh out from between her feet, and toward her children which she shall bear: for she shall eat them for want of all things secretly in the siege and straitness, wherewith thine enemy shall distress thee in thy gates.
5670                                                                                                                                                                                                                                                                                                                                                                                   If thou wilt not observe to do all the words of this law that are written in this book, that thou mayest fear this glorious and fearful name, THE LORD THY GOD;
5671                                                                                                                                                                                                                                                                                                                                                                            Then the LORD will make thy plagues wonderful, and the plagues of thy seed, even great plagues, and of long continuance, and sore sicknesses, and of long continuance.
5672                                                                                                                                                                                                                                                                                                                                                                                                                           Moreover he will bring upon thee all the diseases of Egypt, which thou wast afraid of; and they shall cleave unto thee.
5673                                                                                                                                                                                                                                                                                                                                                                                                 Also every sickness, and every plague, which is not written in the book of this law, them will the LORD bring upon thee, until thou be destroyed.
5674                                                                                                                                                                                                                                                                                                                                                                                           And ye shall be left few in number, whereas ye were as the stars of heaven for multitude; because thou wouldest not obey the voice of the LORD thy God.
5675                                                                                                                                                                                                                                                                                      And it shall come to pass, that as the LORD rejoiced over you to do you good, and to multiply you; so the LORD will rejoice over you to destroy you, and to bring you to nought; and ye shall be plucked from off the land whither thou goest to possess it.
5676                                                                                                                                                                                                                                                                                                                                   And the LORD shall scatter thee among all people, from the one end of the earth even unto the other; and there thou shalt serve other gods, which neither thou nor thy fathers have known, even wood and stone.
5677                                                                                                                                                                                                                                                                                                                                                     And among these nations shalt thou find no ease, neither shall the sole of thy foot have rest: but the LORD shall give thee there a trembling heart, and failing of eyes, and sorrow of mind:
5678                                                                                                                                                                                                                                                                                                                                                                                                                       And thy life shall hang in doubt before thee; and thou shalt fear day and night, and shalt have none assurance of thy life:
5679                                                                                                                                                                                                                                                                                                                        In the morning thou shalt say, Would God it were even! and at even thou shalt say, Would God it were morning! for the fear of thine heart wherewith thou shalt fear, and for the sight of thine eyes which thou shalt see.
5680                                                                                                                                                                                                                                                                                                               And the LORD shall bring thee into Egypt again with ships, by the way whereof I spake unto thee, Thou shalt see it no more again: and there ye shall be sold unto your enemies for bondmen and bondwomen, and no man shall buy you.
5681                                                                                                                                                                                                                                                                                                                                                                These are the words of the covenant, which the LORD commanded Moses to make with the children of Israel in the land of Moab, beside the covenant which he made with them in Horeb.
5682                                                                                                                                                                                                                                                                                                                                                    And Moses called unto all Israel, and said unto them, Ye have seen all that the LORD did before your eyes in the land of Egypt unto Pharaoh, and unto all his servants, and unto all his land;
5683                                                                                                                                                                                                                                                                                                                                                                                                                                                            The great temptations which thine eyes have seen, the signs, and those great miracles:
5684                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet the LORD hath not given you an heart to perceive, and eyes to see, and ears to hear, unto this day.
5685                                                                                                                                                                                                                                                                                                                                                                                                           And I have led you forty years in the wilderness: your clothes are not waxen old upon you, and thy shoe is not waxen old upon thy foot.
5686                                                                                                                                                                                                                                                                                                                                                                                                                              Ye have not eaten bread, neither have ye drunk wine or strong drink: that ye might know that I am the LORD your God.
5687                                                                                                                                                                                                                                                                                                                                                                                                       And when ye came unto this place, Sihon the king of Heshbon, and Og the king of Bashan, came out against us unto battle, and we smote them:
5688                                                                                                                                                                                                                                                                                                                                                                                                                And we took their land, and gave it for an inheritance unto the Reubenites, and to the Gadites, and to the half tribe of Manasseh.
5689                                                                                                                                                                                                                                                                                                                                                                                                                                                    Keep therefore the words of this covenant, and do them, that ye may prosper in all that ye do.
5690                                                                                                                                                                                                                                                                                                                                                                                                  Ye stand this day all of you before the LORD your God; your captains of your tribes, your elders, and your officers, with all the men of Israel,
5691                                                                                                                                                                                                                                                                                                                                                                                                                      Your little ones, your wives, and thy stranger that is in thy camp, from the hewer of thy wood unto the drawer of thy water:
5692                                                                                                                                                                                                                                                                                                                                                                                                               That thou shouldest enter into covenant with the LORD thy God, and into his oath, which the LORD thy God maketh with thee this day:
5693                                                                                                                                                                                                                                                                                                                                            That he may establish thee to day for a people unto himself, and that he may be unto thee a God, as he hath said unto thee, and as he hath sworn unto thy fathers, to Abraham, to Isaac, and to Jacob.
5694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Neither with you only do I make this covenant and this oath;
5695                                                                                                                                                                                                                                                                                                                                                                                                                    But with him that standeth here with us this day before the LORD our God, and also with him that is not here with us this day:
5696                                                                                                                                                                                                                                                                                                                                                                                                                                      (For ye know how we have dwelt in the land of Egypt; and how we came through the nations which ye passed by;
5697                                                                                                                                                                                                                                                                                                                                                                                                                                    And ye have seen their abominations, and their idols, wood and stone, silver and gold, which were among them:)
5698                                                                                                                                                                                                                                                                                                      Lest there should be among you man, or woman, or family, or tribe, whose heart turneth away this day from the LORD our God, to go and serve the gods of these nations; lest there should be among you a root that beareth gall and wormwood;
5699                                                                                                                                                                                                                                                                                                                                       And it come to pass, when he heareth the words of this curse, that he bless himself in his heart, saying, I shall have peace, though I walk in the imagination of mine heart, to add drunkenness to thirst:
5700                                                                                                                                                                                                                                                                                                           The LORD will not spare him, but then the anger of the LORD and his jealousy shall smoke against that man, and all the curses that are written in this book shall lie upon him, and the LORD shall blot out his name from under heaven.
5701                                                                                                                                                                                                                                                                                                                                                                                  And the LORD shall separate him unto evil out of all the tribes of Israel, according to all the curses of the covenant that are written in this book of the law:
5702                                                                                                                                                                                                                                                                                                           So that the generation to come of your children that shall rise up after you, and the stranger that shall come from a far land, shall say, when they see the plagues of that land, and the sicknesses which the LORD hath laid upon it;
5703                                                                                                                                                                                                                                                                                      And that the whole land thereof is brimstone, and salt, and burning, that it is not sown, nor beareth, nor any grass groweth therein, like the overthrow of Sodom, and Gomorrah, Admah, and Zeboim, which the LORD overthrew in his anger, and in his wrath:
5704                                                                                                                                                                                                                                                                                                                                                                                                                          Even all nations shall say, Wherefore hath the LORD done thus unto this land? what meaneth the heat of this great anger?
5705                                                                                                                                                                                                                                                                                                                                                                        Then men shall say, Because they have forsaken the covenant of the LORD God of their fathers, which he made with them when he brought them forth out of the land of Egypt:
5706                                                                                                                                                                                                                                                                                                                                                                                                                           For they went and served other gods, and worshipped them, gods whom they knew not, and whom he had not given unto them:
5707                                                                                                                                                                                                                                                                                                                                                                                                                           And the anger of the LORD was kindled against this land, to bring upon it all the curses that are written in this book:
5708                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD rooted them out of their land in anger, and in wrath, and in great indignation, and cast them into another land, as it is this day.
5709                                                                                                                                                                                                                                                                                                                                                                        The secret things belong unto the LORD our God: but those things which are revealed belong unto us and to our children for ever, that we may do all the words of this law.
5710                                                                                                                                                                                                                                                                                                                 And it shall come to pass, when all these things are come upon thee, the blessing and the curse, which I have set before thee, and thou shalt call them to mind among all the nations, whither the LORD thy God hath driven thee,
5711                                                                                                                                                                                                                                                                                                                                                               And shalt return unto the LORD thy God, and shalt obey his voice according to all that I command thee this day, thou and thy children, with all thine heart, and with all thy soul;
5712                                                                                                                                                                                                                                                                                                                                                            That then the LORD thy God will turn thy captivity, and have compassion upon thee, and will return and gather thee from all the nations, whither the LORD thy God hath scattered thee.
5713                                                                                                                                                                                                                                                                                                                                                                                                If any of thine be driven out unto the outmost parts of heaven, from thence will the LORD thy God gather thee, and from thence will he fetch thee:
5714                                                                                                                                                                                                                                                                                                                                                                         And the LORD thy God will bring thee into the land which thy fathers possessed, and thou shalt possess it; and he will do thee good, and multiply thee above thy fathers.
5715                                                                                                                                                                                                                                                                                                                                                                         And the LORD thy God will circumcise thine heart, and the heart of thy seed, to love the LORD thy God with all thine heart, and with all thy soul, that thou mayest live.
5716                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD thy God will put all these curses upon thine enemies, and on them that hate thee, which persecuted thee.
5717                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt return and obey the voice of the LORD, and do all his commandments which I command thee this day.
5718                                                                                                                                                                                                                                                                                 And the LORD thy God will make thee plenteous in every work of thine hand, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy land, for good: for the LORD will again rejoice over thee for good, as he rejoiced over thy fathers:
5719                                                                                                                                                                                                                                                                                                                If thou shalt hearken unto the voice of the LORD thy God, to keep his commandments and his statutes which are written in this book of the law, and if thou turn unto the LORD thy God with all thine heart, and with all thy soul.
5720                                                                                                                                                                                                                                                                                                                                                                                                                                            For this commandment which I command thee this day, it is not hidden from thee, neither is it far off.
5721                                                                                                                                                                                                                                                                                                                                                                                                             It is not in heaven, that thou shouldest say, Who shall go up for us to heaven, and bring it unto us, that we may hear it, and do it?
5722                                                                                                                                                                                                                                                                                                                                                                                                    Neither is it beyond the sea, that thou shouldest say, Who shall go over the sea for us, and bring it unto us, that we may hear it, and do it?
5723                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the word is very nigh unto thee, in thy mouth, and in thy heart, that thou mayest do it.
5724                                                                                                                                                                                                                                                                                                                                                                                                                                                                           See, I have set before thee this day life and good, and death and evil;
5725                                                                                                                                                                                                                                                                           In that I command thee this day to love the LORD thy God, to walk in his ways, and to keep his commandments and his statutes and his judgments, that thou mayest live and multiply: and the LORD thy God shall bless thee in the land whither thou goest to possess it.
5726                                                                                                                                                                                                                                                                                                                                                                                                                        But if thine heart turn away, so that thou wilt not hear, but shalt be drawn away, and worship other gods, and serve them;
5727                                                                                                                                                                                                                                                                                                                                                                           I denounce unto you this day, that ye shall surely perish, and that ye shall not prolong your days upon the land, whither thou passest over Jordan to go to possess it.
5728                                                                                                                                                                                                                                                                                                                                                             I call heaven and earth to record this day against you, that I have set before you life and death, blessing and cursing: therefore choose life, that both thou and thy seed may live:
5729                                                                                                                                                                                                                                                    That thou mayest love the LORD thy God, and that thou mayest obey his voice, and that thou mayest cleave unto him: for he is thy life, and the length of thy days: that thou mayest dwell in the land which the LORD sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give them.
5730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses went and spake these words unto all Israel.
5731                                                                                                                                                                                                                                                                                                                                                                      And he said unto them, I am an hundred and twenty years old this day; I can no more go out and come in: also the LORD hath said unto me, Thou shalt not go over this Jordan.
5732                                                                                                                                                                                                                                                                                                                                                  The LORD thy God, he will go over before thee, and he will destroy these nations from before thee, and thou shalt possess them: and Joshua, he shall go over before thee, as the LORD hath said.
5733                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD shall do unto them as he did to Sihon and to Og, kings of the Amorites, and unto the land of them, whom he destroyed.
5734                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD shall give them up before your face, that ye may do unto them according unto all the commandments which I have commanded you.
5735                                                                                                                                                                                                                                                                                                                                                                                 Be strong and of a good courage, fear not, nor be afraid of them: for the LORD thy God, he it is that doth go with thee; he will not fail thee, nor forsake thee.
5736                                                                                                                                                                                                                                                                                  And Moses called unto Joshua, and said unto him in the sight of all Israel, Be strong and of a good courage: for thou must go with this people unto the land which the LORD hath sworn unto their fathers to give them; and thou shalt cause them to inherit it.
5737                                                                                                                                                                                                                                                                                                                                                                                                And the LORD, he it is that doth go before thee; he will be with thee, he will not fail thee, neither forsake thee: fear not, neither be dismayed.
5738                                                                                                                                                                                                                                                                                                                                                                                  And Moses wrote this law, and delivered it unto the priests the sons of Levi, which bare the ark of the covenant of the LORD, and unto all the elders of Israel.
5739                                                                                                                                                                                                                                                                                                                                                                                                          And Moses commanded them, saying, At the end of every seven years, in the solemnity of the year of release, in the feast of tabernacles,
5740                                                                                                                                                                                                                                                                                                                                                                                        When all Israel is come to appear before the LORD thy God in the place which he shall choose, thou shalt read this law before all Israel in their hearing.
5741                                                                                                                                                                                                                                                                                                                         Gather the people together, men and women, and children, and thy stranger that is within thy gates, that they may hear, and that they may learn, and fear the LORD your God, and observe to do all the words of this law:
5742                                                                                                                                                                                                                                                                                                                                                                   And that their children, which have not known any thing, may hear, and learn to fear the LORD your God, as long as ye live in the land whither ye go over Jordan to possess it.
5743                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Behold, thy days approach that thou must die: call Joshua, and present yourselves in the tabernacle of the congregation, that I may give him a charge. And Moses and Joshua went, and presented themselves in the tabernacle of the congregation.
5744                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD appeared in the tabernacle in a pillar of a cloud: and the pillar of the cloud stood over the door of the tabernacle.
5745                                                                                                                                                                                                                                                                    And the LORD said unto Moses, Behold, thou shalt sleep with thy fathers; and this people will rise up, and go a whoring after the gods of the strangers of the land, whither they go to be among them, and will forsake me, and break my covenant which I have made with them.
5746                                                                                                                                                                                                                                             Then my anger shall be kindled against them in that day, and I will forsake them, and I will hide my face from them, and they shall be devoured, and many evils and troubles shall befall them; so that they will say in that day, Are not these evils come upon us, because our God is not among us?
5747                                                                                                                                                                                                                                                                                                                                                                                                              And I will surely hide my face in that day for all the evils which they shall have wrought, in that they are turned unto other gods.
5748                                                                                                                                                                                                                                                                                                                                                                     Now therefore write ye this song for you, and teach it the children of Israel: put it in their mouths, that this song may be a witness for me against the children of Israel.
5749                                                                                                                                                                                                                                                                  For when I shall have brought them into the land which I sware unto their fathers, that floweth with milk and honey; and they shall have eaten and filled themselves, and waxen fat; then will they turn unto other gods, and serve them, and provoke me, and break my covenant.
5750                                                                                                                                                                                                                             And it shall come to pass, when many evils and troubles are befallen them, that this song shall testify against them as a witness; for it shall not be forgotten out of the mouths of their seed: for I know their imagination which they go about, even now, before I have brought them into the land which I sware.
5751                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses therefore wrote this song the same day, and taught it the children of Israel.
5752                                                                                                                                                                                                                                                                                                                                                And he gave Joshua the son of Nun a charge, and said, Be strong and of a good courage: for thou shalt bring the children of Israel into the land which I sware unto them: and I will be with thee.
5753                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when Moses had made an end of writing the words of this law in a book, until they were finished,
5754                                                                                                                                                                                                                                                                                                                                                                                                                                                         That Moses commanded the Levites, which bare the ark of the covenant of the LORD, saying,
5755                                                                                                                                                                                                                                                                                                                                                                                               Take this book of the law, and put it in the side of the ark of the covenant of the LORD your God, that it may be there for a witness against thee.
5756                                                                                                                                                                                                                                                                                                                                                                         For I know thy rebellion, and thy stiff neck: behold, while I am yet alive with you this day, ye have been rebellious against the LORD; and how much more after my death?
5757                                                                                                                                                                                                                                                                                                                                                                                    Gather unto me all the elders of your tribes, and your officers, that I may speak these words in their ears, and call heaven and earth to record against them.
5758                                                                                                                                                                                                                                                                 For I know that after my death ye will utterly corrupt yourselves, and turn aside from the way which I have commanded you; and evil will befall you in the latter days; because ye will do evil in the sight of the LORD, to provoke him to anger through the work of your hands.
5759                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses spake in the ears of all the congregation of Israel the words of this song, until they were ended.
5760                                                                                                                                                                                                                                                                                                                                                                                                                                                               Give ear, O ye heavens, and I will speak; and hear, O earth, the words of my mouth.
5761                                                                                                                                                                                                                                                                                                                                                                                                 My doctrine shall drop as the rain, my speech shall distil as the dew, as the small rain upon the tender herb, and as the showers upon the grass:
5762                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Because I will publish the name of the LORD: ascribe ye greatness unto our God.
5763                                                                                                                                                                                                                                                                                                                                                                                                                    He is the Rock, his work is perfect: for all his ways are judgment: a God of truth and without iniquity, just and right is he.
5764                                                                                                                                                                                                                                                                                                                                                                                                                           They have corrupted themselves, their spot is not the spot of his children: they are a perverse and crooked generation.
5765                                                                                                                                                                                                                                                                                                                                                                                                Do ye thus requite the LORD, O foolish people and unwise? is not he thy father that hath bought thee? hath he not made thee, and established thee?
5766                                                                                                                                                                                                                                                                                                                                                                                                     Remember the days of old, consider the years of many generations: ask thy father, and he will show thee; thy elders, and they will tell thee.
5767                                                                                                                                                                                                                                                                                                                                                               When the Most High divided to the nations their inheritance, when he separated the sons of Adam, he set the bounds of the people according to the number of the children of Israel.
5768                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For the LORD's portion is his people; Jacob is the lot of his inheritance.
5769                                                                                                                                                                                                                                                                                                                                                                                                     He found him in a desert land, and in the waste howling wilderness; he led him about, he instructed him, he kept him as the apple of his eye.
5770                                                                                                                                                                                                                                                                                                                                                                                                                  As an eagle stirreth up her nest, fluttereth over her young, spreadeth abroad her wings, taketh them, beareth them on her wings:
5771                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So the LORD alone did lead him, and there was no strange god with him.
5772                                                                                                                                                                                                                                                                                                                                                                    He made him ride on the high places of the earth, that he might eat the increase of the fields; and he made him to suck honey out of the rock, and oil out of the flinty rock;
5773                                                                                                                                                                                                                                                                                                                                                             Butter of kine, and milk of sheep, with fat of lambs, and rams of the breed of Bashan, and goats, with the fat of kidneys of wheat; and thou didst drink the pure blood of the grape.
5774                                                                                                                                                                                                                                                                                                                                                  But Jeshurun waxed fat, and kicked: thou art waxen fat, thou art grown thick, thou art covered with fatness; then he forsook God which made him, and lightly esteemed the Rock of his salvation.
5775                                                                                                                                                                                                                                                                                                                                                                                                                                                    They provoked him to jealousy with strange gods, with abominations provoked they him to anger.
5776                                                                                                                                                                                                                                                                                                                                                                                                                They sacrificed unto devils, not to God; to gods whom they knew not, to new gods that came newly up, whom your fathers feared not.
5777                                                                                                                                                                                                                                                                                                                                                                                                                                                          Of the Rock that begat thee thou art unmindful, and hast forgotten God that formed thee.
5778                                                                                                                                                                                                                                                                                                                                                                                                                                           And when the LORD saw it, he abhorred them, because of the provoking of his sons, and of his daughters.
5779                                                                                                                                                                                                                                                                                                                                                                                             And he said, I will hide my face from them, I will see what their end shall be: for they are a very froward generation, children in whom is no faith.
5780                                                                                                                                                                                                                                                                                                            They have moved me to jealousy with that which is not God; they have provoked me to anger with their vanities: and I will move them to jealousy with those which are not a people; I will provoke them to anger with a foolish nation.
5781                                                                                                                                                                                                                                                                                                                                                                        For a fire is kindled in mine anger, and shall burn unto the lowest hell, and shall consume the earth with her increase, and set on fire the foundations of the mountains.
5782                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I will heap mischiefs upon them; I will spend mine arrows upon them.
5783                                                                                                                                                                                                                                                                                                                                                            They shall be burnt with hunger, and devoured with burning heat, and with bitter destruction: I will also send the teeth of beasts upon them, with the poison of serpents of the dust.
5784                                                                                                                                                                                                                                                                                                                                                                                                              The sword without, and terror within, shall destroy both the young man and the virgin, the suckling also with the man of gray hairs.
5785                                                                                                                                                                                                                                                                                                                                                                                                                                          I said, I would scatter them into corners, I would make the remembrance of them to cease from among men:
5786                                                                                                                                                                                                                                                                                                                                                     Were it not that I feared the wrath of the enemy, lest their adversaries should behave themselves strangely, and lest they should say, Our hand is high, and the LORD hath not done all this.
5787                                                                                                                                                                                                                                                                                                                                                                                                                                                                For they are a nation void of counsel, neither is there any understanding in them.
5788                                                                                                                                                                                                                                                                                                                                                                                                                                                      O that they were wise, that they understood this, that they would consider their latter end!
5789                                                                                                                                                                                                                                                                                                                                                                                                              How should one chase a thousand, and two put ten thousand to flight, except their Rock had sold them, and the LORD had shut them up?
5790                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For their rock is not as our Rock, even our enemies themselves being judges.
5791                                                                                                                                                                                                                                                                                                                                                                                                                For their vine is of the vine of Sodom, and of the fields of Gomorrah: their grapes are grapes of gall, their clusters are bitter:
5792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Their wine is the poison of dragons, and the cruel venom of asps.
5793                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Is not this laid up in store with me, and sealed up among my treasures?
5794                                                                                                                                                                                                                                                                                                                                                                      To me belongeth vengeance and recompence; their foot shall slide in due time: for the day of their calamity is at hand, and the things that shall come upon them make haste.
5795                                                                                                                                                                                                                                                                                                                                                                                             For the LORD shall judge his people, and repent himself for his servants, when he seeth that their power is gone, and there is none shut up, or left.
5796                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he shall say, Where are their gods, their rock in whom they trusted,
5797                                                                                                                                                                                                                                                                                                                                                                                                    Which did eat the fat of their sacrifices, and drank the wine of their drink offerings? let them rise up and help you, and be your protection.
5798                                                                                                                                                                                                                                                                                                                                                                                  See now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand.
5799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For I lift up my hand to heaven, and say, I live for ever.
5800                                                                                                                                                                                                                                                                                                                                                                                                   If I whet my glittering sword, and mine hand take hold on judgment; I will render vengeance to mine enemies, and will reward them that hate me.
5801                                                                                                                                                                                                                                                                                                                                                               I will make mine arrows drunk with blood, and my sword shall devour flesh; and that with the blood of the slain and of the captives, from the beginning of revenges upon the enemy.
5802                                                                                                                                                                                                                                                                                                                                                        Rejoice, O ye nations, with his people: for he will avenge the blood of his servants, and will render vengeance to his adversaries, and will be merciful unto his land, and to his people.
5803                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses came and spake all the words of this song in the ears of the people, he, and Hoshea the son of Nun.
5804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses made an end of speaking all these words to all Israel:
5805                                                                                                                                                                                                                                                                                                                                                                   And he said unto them, Set your hearts unto all the words which I testify among you this day, which ye shall command your children to observe to do, all the words of this law.
5806                                                                                                                                                                                                                                                                                                                                                                              For it is not a vain thing for you; because it is your life: and through this thing ye shall prolong your days in the land, whither ye go over Jordan to possess it.
5807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto Moses that selfsame day, saying,
5808                                                                                                                                                                                                                                                                                                                                     Get thee up into this mountain Abarim, unto mount Nebo, which is in the land of Moab, that is over against Jericho; and behold the land of Canaan, which I give unto the children of Israel for a possession:
5809                                                                                                                                                                                                                                                                                                                                                                                            And die in the mount whither thou goest up, and be gathered unto thy people; as Aaron thy brother died in mount Hor, and was gathered unto his people:
5810                                                                                                                                                                                                                                                                                                                                                      Because ye trespassed against me among the children of Israel at the waters of MeribahKadesh, in the wilderness of Zin; because ye sanctified me not in the midst of the children of Israel.
5811                                                                                                                                                                                                                                                                                                                                                                                                                         Yet thou shalt see the land before thee; but thou shalt not go thither unto the land which I give the children of Israel.
5812                                                                                                                                                                                                                                                                                                                                                                                                                                         And this is the blessing, wherewith Moses the man of God blessed the children of Israel before his death.
5813                                                                                                                                                                                                                                                                                                                                                And he said, The LORD came from Sinai, and rose up from Seir unto them; he shined forth from mount Paran, and he came with ten thousands of saints: from his right hand went a fiery law for them.
5814                                                                                                                                                                                                                                                                                                                                                                                                                    Yea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words.
5815                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moses commanded us a law, even the inheritance of the congregation of Jacob.
5816                                                                                                                                                                                                                                                                                                                                                                                                                                        And he was king in Jeshurun, when the heads of the people and the tribes of Israel were gathered together.
5817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let Reuben live, and not die; and let not his men be few.
5818                                                                                                                                                                                                                                                                                                                                                  And this is the blessing of Judah: and he said, Hear, LORD, the voice of Judah, and bring him unto his people: let his hands be sufficient for him; and be thou an help to him from his enemies.
5819                                                                                                                                                                                                                                                                                                                                                                                And of Levi he said, Let thy Thummim and thy Urim be with thy holy one, whom thou didst prove at Massah, and with whom thou didst strive at the waters of Meribah;
5820                                                                                                                                                                                                                                                                                                                                                      Who said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant.
5821                                                                                                                                                                                                                                                                                                                                                                                                         They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar.
5822                                                                                                                                                                                                                                                                                                                                                                         Bless, LORD, his substance, and accept the work of his hands; smite through the loins of them that rise against him, and of them that hate him, that they rise not again.
5823                                                                                                                                                                                                                                                                                                                                                                           And of Benjamin he said, The beloved of the LORD shall dwell in safety by him; and the Lord shall cover him all the day long, and he shall dwell between his shoulders.
5824                                                                                                                                                                                                                                                                                                                                                                                                   And of Joseph he said, Blessed of the LORD be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath,
5825                                                                                                                                                                                                                                                                                                                                                                                                                                          And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon,
5826                                                                                                                                                                                                                                                                                                                                                                                                                                              And for the chief things of the ancient mountains, and for the precious things of the lasting hills,
5827                                                                                                                                                                                                                                                                                                       And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren.
5828                                                                                                                                                                                                                                                                                            His glory is like the firstling of his bullock, and his horns are like the horns of unicorns: with them he shall push the people together to the ends of the earth: and they are the ten thousands of Ephraim, and they are the thousands of Manasseh.
5829                                                                                                                                                                                                                                                                                                                                                                                                                                                          And of Zebulun he said, Rejoice, Zebulun, in thy going out; and, Issachar, in thy tents.
5830                                                                                                                                                                                                                                                                                                                                                             They shall call the people unto the mountain; there they shall offer sacrifices of righteousness: for they shall suck of the abundance of the seas, and of treasures hid in the sand.
5831                                                                                                                                                                                                                                                                                                                                                                                                                      And of Gad he said, Blessed be he that enlargeth Gad: he dwelleth as a lion, and teareth the arm with the crown of the head.
5832                                                                                                                                                                                                                                                                                                                             And he provided the first part for himself, because there, in a portion of the lawgiver, was he seated; and he came with the heads of the people, he executed the justice of the LORD, and his judgments with Israel.
5833                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And of Dan he said, Dan is a lion's whelp: he shall leap from Bashan.
5834                                                                                                                                                                                                                                                                                                                                                                                                           And of Naphtali he said, O Naphtali, satisfied with favor, and full with the blessing of the LORD: possess thou the west and the south.
5835                                                                                                                                                                                                                                                                                                                                                                                                                 And of Asher he said, Let Asher be blessed with children; let him be acceptable to his brethren, and let him dip his foot in oil.
5836                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy shoes shall be iron and brass; and as thy days, so shall thy strength be.
5837                                                                                                                                                                                                                                                                                                                                                                                                                            There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky.
5838                                                                                                                                                                                                                                                                                                                                                                                          The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them.
5839                                                                                                                                                                                                                                                                                                                                                                                                       Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew.
5840                                                                                                                                                                                                                                                                                                       Happy art thou, O Israel: who is like unto thee, O people saved by the LORD, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places.
5841                                                                                                                                                                                                                                                                                                                                                                And Moses went up from the plains of Moab unto the mountain of Nebo, to the top of Pisgah, that is over against Jericho. And the LORD showed him all the land of Gilead, unto Dan,
5842                                                                                                                                                                                                                                                                                                                                                                                                                                          And all Naphtali, and the land of Ephraim, and Manasseh, and all the land of Judah, unto the utmost sea,
5843                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the south, and the plain of the valley of Jericho, the city of palm trees, unto Zoar.
5844                                                                                                                                                                                                                                                                                                                      And the LORD said unto him, This is the land which I sware unto Abraham, unto Isaac, and unto Jacob, saying, I will give it unto thy seed: I have caused thee to see it with thine eyes, but thou shalt not go over thither.
5845                                                                                                                                                                                                                                                                                                                                                                                                                                               So Moses the servant of the LORD died there in the land of Moab, according to the word of the LORD.
5846                                                                                                                                                                                                                                                                                                                                                                                                                      And he buried him in a valley in the land of Moab, over against Bethpeor: but no man knoweth of his sepulchre unto this day.
5847                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses was an hundred and twenty years old when he died: his eye was not dim, nor his natural force abated.
5848                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel wept for Moses in the plains of Moab thirty days: so the days of weeping and mourning for Moses were ended.
5849                                                                                                                                                                                                                                                                                                                                                            And Joshua the son of Nun was full of the spirit of wisdom; for Moses had laid his hands upon him: and the children of Israel hearkened unto him, and did as the LORD commanded Moses.
5850                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there arose not a prophet since in Israel like unto Moses, whom the LORD knew face to face,
5851                                                                                                                                                                                                                                                                                                                                                                                                    In all the signs and the wonders, which the LORD sent him to do in the land of Egypt to Pharaoh, and to all his servants, and to all his land,
5852                                                                                                                                                                                                                                                                                                                                                                                                                                           And in all that mighty hand, and in all the great terror which Moses showed in the sight of all Israel.
5853                                                                                                                                                                                                                                                                                                                                                                                                    Now after the death of Moses the servant of the LORD it came to pass, that the LORD spake unto Joshua the son of Nun, Moses' minister, saying,
5854                                                                                                                                                                                                                                                                                                                                                                             Moses my servant is dead; now therefore arise, go over this Jordan, thou, and all this people, unto the land which I do give to them, even to the children of Israel.
5855                                                                                                                                                                                                                                                                                                                                                                                                                                        Every place that the sole of your foot shall tread upon, that have I given unto you, as I said unto Moses.
5856                                                                                                                                                                                                                                                                                                                                                  From the wilderness and this Lebanon even unto the great river, the river Euphrates, all the land of the Hittites, and unto the great sea toward the going down of the sun, shall be your coast.
5857                                                                                                                                                                                                                                                                                                                                                                               There shall not any man be able to stand before thee all the days of thy life: as I was with Moses, so I will be with thee: I will not fail thee, nor forsake thee.
5858                                                                                                                                                                                                                                                                                                                                                                                               Be strong and of a good courage: for unto this people shalt thou divide for an inheritance the land, which I sware unto their fathers to give them.
5859                                                                                                                                                                                                                                                                                                    Only be thou strong and very courageous, that thou mayest observe to do according to all the law, which Moses my servant commanded thee: turn not from it to the right hand or to the left, that thou mayest prosper whithersoever thou goest.
5860                                                                                                                                                                                                                                                                               This book of the law shall not depart out of thy mouth; but thou shalt meditate therein day and night, that thou mayest observe to do according to all that is written therein: for then thou shalt make thy way prosperous, and then thou shalt have good success.
5861                                                                                                                                                                                                                                                                                                                                                                                  Have not I commanded thee? Be strong and of a good courage; be not afraid, neither be thou dismayed: for the LORD thy God is with thee whithersoever thou goest.
5862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Joshua commanded the officers of the people, saying,
5863                                                                                                                                                                                                                                                                                                                                Pass through the host, and command the people, saying, Prepare you victuals; for within three days ye shall pass over this Jordan, to go in to possess the land, which the LORD your God giveth you to possess it.
5864                                                                                                                                                                                                                                                                                                                                                                                                                                               And to the Reubenites, and to the Gadites, and to half the tribe of Manasseh, spake Joshua, saying,
5865                                                                                                                                                                                                                                                                                                                                                                                                 Remember the word which Moses the servant of the LORD commanded you, saying, The LORD your God hath given you rest, and hath given you this land.
5866                                                                                                                                                                                                                                                                                                                                       Your wives, your little ones, and your cattle, shall remain in the land which Moses gave you on this side Jordan; but ye shall pass before your brethren armed, all the mighty men of valor, and help them;
5867                                                                                                                                                                                                                                             Until the LORD have given your brethren rest, as he hath given you, and they also have possessed the land which the LORD your God giveth them: then ye shall return unto the land of your possession, and enjoy it, which Moses the LORD's servant gave you on this side Jordan toward the sunrising.
5868                                                                                                                                                                                                                                                                                                                                                                                                                          And they answered Joshua, saying, All that thou commandest us we will do, and whithersoever thou sendest us, we will go.
5869                                                                                                                                                                                                                                                                                                                                                                                                       According as we hearkened unto Moses in all things, so will we hearken unto thee: only the LORD thy God be with thee, as he was with Moses.
5870                                                                                                                                                                                                                                                                                                                                                     Whosoever he be that doth rebel against thy commandment, and will not hearken unto thy words in all that thou commandest him, he shall be put to death: only be strong and of a good courage.
5871                                                                                                                                                                                                                                                                                                                                                     And Joshua the son of Nun sent out of Shittim two men to spy secretly, saying, Go view the land, even Jericho. And they went, and came into an harlot's house, named Rahab, and lodged there.
5872                                                                                                                                                                                                                                                                                                                                                                                                       And it was told the king of Jericho, saying, Behold, there came men in hither to night of the children of Israel to search out the country.
5873                                                                                                                                                                                                                                                                                                                                                                   And the king of Jericho sent unto Rahab, saying, Bring forth the men that are come to thee, which are entered into thine house: for they be come to search out all the country.
5874                                                                                                                                                                                                                                                                                                                                                                                                                             And the woman took the two men, and hid them, and said thus, There came men unto me, but I wist not whence they were:
5875                                                                                                                                                                                                                                                                                                                                                       And it came to pass about the time of shutting of the gate, when it was dark, that the men went out: whither the men went I wot not: pursue after them quickly; for ye shall overtake them.
5876                                                                                                                                                                                                                                                                                                                                                                                                            But she had brought them up to the roof of the house, and hid them with the stalks of flax, which she had laid in order upon the roof.
5877                                                                                                                                                                                                                                                                                                                                                                                                  And the men pursued after them the way to Jordan unto the fords: and as soon as they which pursued after them were gone out, they shut the gate.
5878                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And before they were laid down, she came up unto them upon the roof;
5879                                                                                                                                                                                                                                                                                                                                                                   And she said unto the men, I know that the LORD hath given you the land, and that your terror is fallen upon us, and that all the inhabitants of the land faint because of you.
5880                                                                                                                                                                                                                                                                                                             For we have heard how the LORD dried up the water of the Red sea for you, when ye came out of Egypt; and what ye did unto the two kings of the Amorites, that were on the other side Jordan, Sihon and Og, whom ye utterly destroyed.
5881                                                                                                                                                                                                                                                                                                                                      And as soon as we had heard these things, our hearts did melt, neither did there remain any more courage in any man, because of you: for the LORD your God, he is God in heaven above, and in earth beneath.
5882                                                                                                                                                                                                                                                                                                                                                                         Now therefore, I pray you, swear unto me by the LORD, since I have showed you kindness, that ye will also show kindness unto my father's house, and give me a true token:
5883                                                                                                                                                                                                                                                                                                                                                                                                  And that ye will save alive my father, and my mother, and my brethren, and my sisters, and all that they have, and deliver our lives from death.
5884                                                                                                                                                                                                                                                                                                                                                             And the men answered her, Our life for yours, if ye utter not this our business. And it shall be, when the LORD hath given us the land, that we will deal kindly and truly with thee.
5885                                                                                                                                                                                                                                                                                                                                                                                                                           Then she let them down by a cord through the window: for her house was upon the town wall, and she dwelt upon the wall.
5886                                                                                                                                                                                                                                                                                                                                                              And she said unto them, Get you to the mountain, lest the pursuers meet you; and hide yourselves there three days, until the pursuers be returned: and afterward may ye go your way.
5887                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the men said unto her, We will be blameless of this thine oath which thou hast made us swear.
5888                                                                                                                                                                                                                                                                                                 Behold, when we come into the land, thou shalt bind this line of scarlet thread in the window which thou didst let us down by: and thou shalt bring thy father, and thy mother, and thy brethren, and all thy father's household, home unto thee.
5889                                                                                                                                                                                                                                                                                       And it shall be, that whosoever shall go out of the doors of thy house into the street, his blood shall be upon his head, and we will be guiltless: and whosoever shall be with thee in the house, his blood shall be on our head, if any hand be upon him.
5890                                                                                                                                                                                                                                                                                                                                                                                                                                         And if thou utter this our business, then we will be quit of thine oath which thou hast made us to swear.
5891                                                                                                                                                                                                                                                                                                                                                                                                       And she said, According unto your words, so be it. And she sent them away, and they departed: and she bound the scarlet line in the window.
5892                                                                                                                                                                                                                                                                                                                                                                 And they went, and came unto the mountain, and abode there three days, until the pursuers were returned: and the pursuers sought them throughout all the way, but found them not.
5893                                                                                                                                                                                                                                                                                                                                                                                           So the two men returned, and descended from the mountain, and passed over, and came to Joshua the son of Nun, and told him all things that befell them:
5894                                                                                                                                                                                                                                                                                                                                                                                         And they said unto Joshua, Truly the LORD hath delivered into our hands all the land; for even all the inhabitants of the country do faint because of us.
5895                                                                                                                                                                                                                                                                                                                                                                             And Joshua rose early in the morning; and they removed from Shittim, and came to Jordan, he and all the children of Israel, and lodged there before they passed over.
5896                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass after three days, that the officers went through the host;
5897                                                                                                                                                                                                                                                                                                                                                   And they commanded the people, saying, When ye see the ark of the covenant of the LORD your God, and the priests the Levites bearing it, then ye shall remove from your place, and go after it.
5898                                                                                                                                                                                                                                                                                                                                             Yet there shall be a space between you and it, about two thousand cubits by measure: come not near unto it, that ye may know the way by which ye must go: for ye have not passed this way heretofore.
5899                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joshua said unto the people, Sanctify yourselves: for to morrow the LORD will do wonders among you.
5900                                                                                                                                                                                                                                                                                                                                                                And Joshua spake unto the priests, saying, Take up the ark of the covenant, and pass over before the people. And they took up the ark of the covenant, and went before the people.
5901                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Joshua, This day will I begin to magnify thee in the sight of all Israel, that they may know that, as I was with Moses, so I will be with thee.
5902                                                                                                                                                                                                                                                                                                                                                                               And thou shalt command the priests that bear the ark of the covenant, saying, When ye are come to the brink of the water of Jordan, ye shall stand still in Jordan.
5903                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joshua said unto the children of Israel, Come hither, and hear the words of the LORD your God.
5904                                                                                                                                                                                                                                                                                  And Joshua said, Hereby ye shall know that the living God is among you, and that he will without fail drive out from before you the Canaanites, and the Hittites, and the Hivites, and the Perizzites, and the Girgashites, and the Amorites, and the Jebusites.
5905                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, the ark of the covenant of the LORD of all the earth passeth over before you into Jordan.
5906                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now therefore take you twelve men out of the tribes of Israel, out of every tribe a man.
5907                                                                                                                                                                                                                                                 And it shall come to pass, as soon as the soles of the feet of the priests that bear the ark of the LORD, the LORD of all the earth, shall rest in the waters of Jordan, that the waters of Jordan shall be cut off from the waters that come down from above; and they shall stand upon an heap.
5908                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when the people removed from their tents, to pass over Jordan, and the priests bearing the ark of the covenant before the people;
5909                                                                                                                                                                                                                                                                                                                                          And as they that bare the ark were come unto Jordan, and the feet of the priests that bare the ark were dipped in the brim of the water, (for Jordan overfloweth all his banks all the time of harvest,)
5910                                                                                                                                                                                                                                                               That the waters which came down from above stood and rose up upon an heap very far from the city Adam, that is beside Zaretan: and those that came down toward the sea of the plain, even the salt sea, failed, and were cut off: and the people passed over right against Jericho.
5911                                                                                                                                                                                                                                                                                                                              And the priests that bare the ark of the covenant of the LORD stood firm on dry ground in the midst of Jordan, and all the Israelites passed over on dry ground, until all the people were passed clean over Jordan.
5912                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when all the people were clean passed over Jordan, that the LORD spake unto Joshua, saying,
5913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Take you twelve men out of the people, out of every tribe a man,
5914                                                                                                                                                                                                                                                                                          And command ye them, saying, Take you hence out of the midst of Jordan, out of the place where the priests' feet stood firm, twelve stones, and ye shall carry them over with you, and leave them in the lodging place, where ye shall lodge this night.
5915                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Joshua called the twelve men, whom he had prepared of the children of Israel, out of every tribe a man:
5916                                                                                                                                                                                                                                                                                                                 And Joshua said unto them, Pass over before the ark of the LORD your God into the midst of Jordan, and take you up every man of you a stone upon his shoulder, according unto the number of the tribes of the children of Israel:
5917                                                                                                                                                                                                                                                                                                                                                                                                               That this may be a sign among you, that when your children ask their fathers in time to come, saying, What mean ye by these stones?
5918                                                                                                                                                                                                                                                                                       Then ye shall answer them, That the waters of Jordan were cut off before the ark of the covenant of the LORD; when it passed over Jordan, the waters of Jordan were cut off: and these stones shall be for a memorial unto the children of Israel for ever.
5919                                                                                                                                                                                                                                          And the children of Israel did so as Joshua commanded, and took up twelve stones out of the midst of Jordan, as the LORD spake unto Joshua, according to the number of the tribes of the children of Israel, and carried them over with them unto the place where they lodged, and laid them down there.
5920                                                                                                                                                                                                                                                                                                                                                                    And Joshua set up twelve stones in the midst of Jordan, in the place where the feet of the priests which bare the ark of the covenant stood: and they are there unto this day.
5921                                                                                                                                                                                                                                                                                                      For the priests which bare the ark stood in the midst of Jordan, until everything was finished that the LORD commanded Joshua to speak unto the people, according to all that Moses commanded Joshua: and the people hasted and passed over.
5922                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when all the people were clean passed over, that the ark of the LORD passed over, and the priests, in the presence of the people.
5923                                                                                                                                                                                                                                                                                                                                                                                   And the children of Reuben, and the children of Gad, and half the tribe of Manasseh, passed over armed before the children of Israel, as Moses spake unto them:
5924                                                                                                                                                                                                                                                                                                                                                                                                                                          About forty thousand prepared for war passed over before the LORD unto battle, to the plains of Jericho.
5925                                                                                                                                                                                                                                                                                                                                                                                                            On that day the LORD magnified Joshua in the sight of all Israel; and they feared him, as they feared Moses, all the days of his life.
5926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto Joshua, saying,
5927                                                                                                                                                                                                                                                                                                                                                                                                                                                          Command the priests that bear the ark of the testimony, that they come up out of Jordan.
5928                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joshua therefore commanded the priests, saying, Come ye up out of Jordan.
5929                                                                                                                                                                                                                                         And it came to pass, when the priests that bare the ark of the covenant of the LORD were come up out of the midst of Jordan, and the soles of the priests' feet were lifted up unto the dry land, that the waters of Jordan returned unto their place, and flowed over all his banks, as they did before.
5930                                                                                                                                                                                                                                                                                                                                                                                                                  And the people came up out of Jordan on the tenth day of the first month, and encamped in Gilgal, in the east border of Jericho.
5931                                                                                                                                                                                                                                                                                                                                                                                                                                                               And those twelve stones, which they took out of Jordan, did Joshua pitch in Gilgal.
5932                                                                                                                                                                                                                                                                                                                                                                                                     And he spake unto the children of Israel, saying, When your children shall ask their fathers in time to come, saying, What mean these stones?
5933                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then ye shall let your children know, saying, Israel came over this Jordan on dry land.
5934                                                                                                                                                                                                                                                                                                                                               For the LORD your God dried up the waters of Jordan from before you, until ye were passed over, as the LORD your God did to the Red sea, which he dried up from before us, until we were gone over:
5935                                                                                                                                                                                                                                                                                                                                                                                                               That all the people of the earth might know the hand of the LORD, that it is mighty: that ye might fear the LORD your God for ever.
5936                                                                                                                                                       And it came to pass, when all the kings of the Amorites, which were on the side of Jordan westward, and all the kings of the Canaanites, which were by the sea, heard that the LORD had dried up the waters of Jordan from before the children of Israel, until we were passed over, that their heart melted, neither was there spirit in them any more, because of the children of Israel.
5937                                                                                                                                                                                                                                                                                                                                                                                                                      At that time the LORD said unto Joshua, Make thee sharp knives, and circumcise again the children of Israel the second time.
5938                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua made him sharp knives, and circumcised the children of Israel at the hill of the foreskins.
5939                                                                                                                                                                                                                                                                                                                                                And this is the cause why Joshua did circumcise: All the people that came out of Egypt, that were males, even all the men of war, died in the wilderness by the way, after they came out of Egypt.
5940                                                                                                                                                                                                                                                                                                                                                                 Now all the people that came out were circumcised: but all the people that were born in the wilderness by the way as they came forth out of Egypt, them they had not circumcised.
5941                                                                                                                                                                          For the children of Israel walked forty years in the wilderness, till all the people that were men of war, which came out of Egypt, were consumed, because they obeyed not the voice of the LORD: unto whom the LORD sware that he would not show them the land, which the LORD sware unto their fathers that he would give us, a land that floweth with milk and honey.
5942                                                                                                                                                                                                                                                                                                                                                                                     And their children, whom he raised up in their stead, them Joshua circumcised: for they were uncircumcised, because they had not circumcised them by the way.
5943                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when they had done circumcising all the people, that they abode in their places in the camp, till they were whole.
5944                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Joshua, This day have I rolled away the reproach of Egypt from off you. Wherefore the name of the place is called Gilgal unto this day.
5945                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel encamped in Gilgal, and kept the passover on the fourteenth day of the month at even in the plains of Jericho.
5946                                                                                                                                                                                                                                                                                                                                                                                                            And they did eat of the old corn of the land on the morrow after the passover, unleavened cakes, and parched corn in the selfsame day.
5947                                                                                                                                                                                                                                                                                                                                            And the manna ceased on the morrow after they had eaten of the old corn of the land; neither had the children of Israel manna any more; but they did eat of the fruit of the land of Canaan that year.
5948                                                                                                                                                                                                                                                                                   And it came to pass, when Joshua was by Jericho, that he lifted up his eyes and looked, and, behold, there stood a man over against him with his sword drawn in his hand: and Joshua went unto him, and said unto him, Art thou for us, or for our adversaries?
5949                                                                                                                                                                                                                                                                                                                                                        And he said, Nay; but as captain of the host of the LORD am I now come. And Joshua fell on his face to the earth, and did worship, and said unto him, What saith my Lord unto his servant?
5950                                                                                                                                                                                                                                                                                                                                                                                            And the captain of the LORD's host said unto Joshua, Loose thy shoe from off thy foot; for the place whereon thou standest is holy. And Joshua did so.
5951                                                                                                                                                                                                                                                                                                                                                                                                                                              Now Jericho was straitly shut up because of the children of Israel: none went out, and none came in.
5952                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Joshua, See, I have given into thine hand Jericho, and the king thereof, and the mighty men of valor.
5953                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall compass the city, all ye men of war, and go round about the city once. Thus shalt thou do six days.
5954                                                                                                                                                                                                                                                                                                                                                               And seven priests shall bear before the ark seven trumpets of rams' horns: and the seventh day ye shall compass the city seven times, and the priests shall blow with the trumpets.
5955                                                                                                                                                                                                                                                           And it shall come to pass, that when they make a long blast with the ram's horn, and when ye hear the sound of the trumpet, all the people shall shout with a great shout; and the wall of the city shall fall down flat, and the people shall ascend up every man straight before him.
5956                                                                                                                                                                                                                                                                                                                                                           And Joshua the son of Nun called the priests, and said unto them, Take up the ark of the covenant, and let seven priests bear seven trumpets of rams' horns before the ark of the LORD.
5957                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto the people, Pass on, and compass the city, and let him that is armed pass on before the ark of the LORD.
5958                                                                                                                                                                                                                                                                                                       And it came to pass, when Joshua had spoken unto the people, that the seven priests bearing the seven trumpets of rams' horns passed on before the LORD, and blew with the trumpets: and the ark of the covenant of the LORD followed them.
5959                                                                                                                                                                                                                                                                                                                                                                                  And the armed men went before the priests that blew with the trumpets, and the rearward came after the ark, the priests going on, and blowing with the trumpets.
5960                                                                                                                                                                                                                                                                                                                                        And Joshua had commanded the people, saying, Ye shall not shout, nor make any noise with your voice, neither shall any word proceed out of your mouth, until the day I bid you shout; then shall ye shout.
5961                                                                                                                                                                                                                                                                                                                                                                                                                              So the ark of the LORD compassed the city, going about it once: and they came into the camp, and lodged in the camp.
5962                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joshua rose early in the morning, and the priests took up the ark of the LORD.
5963                                                                                                                                                                                                                                                                     And seven priests bearing seven trumpets of rams' horns before the ark of the LORD went on continually, and blew with the trumpets: and the armed men went before them; but the rearward came after the ark of the LORD, the priests going on, and blowing with the trumpets.
5964                                                                                                                                                                                                                                                                                                                                                                                                                                                And the second day they compassed the city once, and returned into the camp: so they did six days.
5965                                                                                                                                                                                                                                                                                                                                        And it came to pass on the seventh day, that they rose early about the dawning of the day, and compassed the city after the same manner seven times: only on that day they compassed the city seven times.
5966                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass at the seventh time, when the priests blew with the trumpets, Joshua said unto the people, Shout; for the LORD hath given you the city.
5967                                                                                                                                                                                                                                                                                                                                        And the city shall be accursed, even it, and all that are therein, to the LORD: only Rahab the harlot shall live, she and all that are with her in the house, because she hid the messengers that we sent.
5968                                                                                                                                                                                                                                                                                                                                                           And ye, in any wise keep yourselves from the accursed thing, lest ye make yourselves accursed, when ye take of the accursed thing, and make the camp of Israel a curse, and trouble it.
5969                                                                                                                                                                                                                                                                                                                                                                                                        But all the silver, and gold, and vessels of brass and iron, are consecrated unto the LORD: they shall come into the treasury of the LORD.
5970                                                                                                                                                                                                                                     So the people shouted when the priests blew with the trumpets: and it came to pass, when the people heard the sound of the trumpet, and the people shouted with a great shout, that the wall fell down flat, so that the people went up into the city, every man straight before him, and they took the city.
5971                                                                                                                                                                                                                                                                                                                                                                                                   And they utterly destroyed all that was in the city, both man and woman, young and old, and ox, and sheep, and ass, with the edge of the sword.
5972                                                                                                                                                                                                                                                                                                                                                                     But Joshua had said unto the two men that had spied out the country, Go into the harlot's house, and bring out thence the woman, and all that she hath, as ye sware unto her.
5973                                                                                                                                                                                                                                                                                                                         And the young men that were spies went in, and brought out Rahab, and her father, and her mother, and her brethren, and all that she had; and they brought out all her kindred, and left them without the camp of Israel.
5974                                                                                                                                                                                                                                                                                                                                                            And they burnt the city with fire, and all that was therein: only the silver, and the gold, and the vessels of brass and of iron, they put into the treasury of the house of the LORD.
5975                                                                                                                                                                                                                                                                                                                                   And Joshua saved Rahab the harlot alive, and her father's household, and all that she had; and she dwelleth in Israel even unto this day; because she hid the messengers, which Joshua sent to spy out Jericho.
5976                                                                                                                                                                                                                                                                                                    And Joshua adjured them at that time, saying, Cursed be the man before the LORD, that riseth up and buildeth this city Jericho: he shall lay the foundation thereof in his firstborn, and in his youngest son shall he set up the gates of it.
5977                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the LORD was with Joshua; and his fame was noised throughout all the country.
5978                                                                                                                                                                                                                                                                                  But the children of Israel committed a trespass in the accursed thing: for Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, took of the accursed thing: and the anger of the LORD was kindled against the children of Israel.
5979                                                                                                                                                                                                                                                                                                                                                              And Joshua sent men from Jericho to Ai, which is beside Bethaven, on the east of Bethel, and spake unto them, saying, Go up and view the country. And the men went up and viewed Ai.
5980                                                                                                                                                                                                                                                                                                                                     And they returned to Joshua, and said unto him, Let not all the people go up; but let about two or three thousand men go up and smite Ai; and make not all the people to labor thither; for they are but few.
5981                                                                                                                                                                                                                                                                                                                                                                                                                                              So there went up thither of the people about three thousand men: and they fled before the men of Ai.
5982                                                                                                                                                                                                                                                                                                                         And the men of Ai smote of them about thirty and six men: for they chased them from before the gate even unto Shebarim, and smote them in the going down: wherefore the hearts of the people melted, and became as water.
5983                                                                                                                                                                                                                                                                                                                                                                       And Joshua rent his clothes, and fell to the earth upon his face before the ark of the LORD until the eventide, he and the elders of Israel, and put dust upon their heads.
5984                                                                                                                                                                                                                                                                                                                  And Joshua said, Alas, O LORD God, wherefore hast thou at all brought this people over Jordan, to deliver us into the hand of the Amorites, to destroy us? would to God we had been content, and dwelt on the other side Jordan!
5985                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O LORD, what shall I say, when Israel turneth their backs before their enemies!
5986                                                                                                                                                                                                                                                                                                                                                              For the Canaanites and all the inhabitants of the land shall hear of it, and shall environ us round, and cut off our name from the earth: and what wilt thou do unto thy great name?
5987                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto Joshua, Get thee up; wherefore liest thou thus upon thy face?
5988                                                                                                                                                                                                                                                                                                               Israel hath sinned, and they have also transgressed my covenant which I commanded them: for they have even taken of the accursed thing, and have also stolen, and dissembled also, and they have put it even among their own stuff.
5989                                                                                                                                                                                                                                                                                                               Therefore the children of Israel could not stand before their enemies, but turned their backs before their enemies, because they were accursed: neither will I be with you any more, except ye destroy the accursed from among you.
5990                                                                                                                                                                                                                                                                       Up, sanctify the people, and say, Sanctify yourselves against to morrow: for thus saith the LORD God of Israel, There is an accursed thing in the midst of thee, O Israel: thou canst not stand before thine enemies, until ye take away the accursed thing from among you.
5991                                                                                                                                                                                                                                  In the morning therefore ye shall be brought according to your tribes: and it shall be, that the tribe which the LORD taketh shall come according to the families thereof; and the family which the LORD shall take shall come by households; and the household which the LORD shall take shall come man by man.
5992                                                                                                                                                                                                                                                                                                                             And it shall be, that he that is taken with the accursed thing shall be burnt with fire, he and all that he hath: because he hath transgressed the covenant of the LORD, and because he hath wrought folly in Israel.
5993                                                                                                                                                                                                                                                                                                                                                                                                                                     So Joshua rose up early in the morning, and brought Israel by their tribes; and the tribe of Judah was taken:
5994                                                                                                                                                                                                                                                                                                                                                                                            And he brought the family of Judah; and he took the family of the Zarhites: and he brought the family of the Zarhites man by man; and Zabdi was taken:
5995                                                                                                                                                                                                                                                                                                                                                                                                       And he brought his household man by man; and Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, was taken.
5996                                                                                                                                                                                                                                                                                                                                                                   And Joshua said unto Achan, My son, give, I pray thee, glory to the LORD God of Israel, and make confession unto him; and tell me now what thou hast done; hide it not from me.
5997                                                                                                                                                                                                                                                                                                                                                                                                                          And Achan answered Joshua, and said, Indeed I have sinned against the LORD God of Israel, and thus and thus have I done:
5998                                                                                                                                                                                                                                                                             When I saw among the spoils a goodly Babylonish garment, and two hundred shekels of silver, and a wedge of gold of fifty shekels weight, then I coveted them, and took them; and, behold, they are hid in the earth in the midst of my tent, and the silver under it.
5999                                                                                                                                                                                                                                                                                                                                                                                                                              So Joshua sent messengers, and they ran unto the tent; and, behold, it was hid in his tent, and the silver under it.
6000                                                                                                                                                                                                                                                                                                                                                                                            And they took them out of the midst of the tent, and brought them unto Joshua, and unto all the children of Israel, and laid them out before the LORD.
6001                                                                                                                                                                                                                                                         And Joshua, and all Israel with him, took Achan the son of Zerah, and the silver, and the garment, and the wedge of gold, and his sons, and his daughters, and his oxen, and his asses, and his sheep, and his tent, and all that he had: and they brought them unto the valley of Achor.
6002                                                                                                                                                                                                                                                                                                                                                       And Joshua said, Why hast thou troubled us? the LORD shall trouble thee this day. And all Israel stoned him with stones, and burned them with fire, after they had stoned them with stones.
6003                                                                                                                                                                                                                                                                                                                                              And they raised over him a great heap of stones unto this day. So the LORD turned from the fierceness of his anger. Wherefore the name of that place was called, The valley of Achor, unto this day.
6004                                                                                                                                                                                                                                                                                                                      And the LORD said unto Joshua, Fear not, neither be thou dismayed: take all the people of war with thee, and arise, go up to Ai: see, I have given into thy hand the king of Ai, and his people, and his city, and his land:
6005                                                                                                                                                                                                                                                                                                                                And thou shalt do to Ai and her king as thou didst unto Jericho and her king: only the spoil thereof, and the cattle thereof, shall ye take for a prey unto yourselves: lay thee an ambush for the city behind it.
6006                                                                                                                                                                                                                                                                                                                                                                                           So Joshua arose, and all the people of war, to go up against Ai: and Joshua chose out thirty thousand mighty men of valor, and sent them away by night.
6007                                                                                                                                                                                                                                                                                                                                                                                           And he commanded them, saying, Behold, ye shall lie in wait against the city, even behind the city: go not very far from the city, but be ye all ready:
6008                                                                                                                                                                                                                                                                                                                                                                And I, and all the people that are with me, will approach unto the city: and it shall come to pass, when they come out against us, as at the first, that we will flee before them,
6009                                                                                                                                                                                                                                                                                                                                                                             (For they will come out after us) till we have drawn them from the city; for they will say, They flee before us, as at the first: therefore we will flee before them.
6010                                                                                                                                                                                                                                                                                                                                                                                                                             Then ye shall rise up from the ambush, and seize upon the city: for the LORD your God will deliver it into your hand.
6011                                                                                                                                                                                                                                                                                                                                                                                And it shall be, when ye have taken the city, that ye shall set the city on fire: according to the commandment of the LORD shall ye do. See, I have commanded you.
6012                                                                                                                                                                                                                                                                                                                                                                         Joshua therefore sent them forth: and they went to lie in ambush, and abode between Bethel and Ai, on the west side of Ai: but Joshua lodged that night among the people.
6013                                                                                                                                                                                                                                                                                                                                                                                                              And Joshua rose up early in the morning, and numbered the people, and went up, he and the elders of Israel, before the people to Ai.
6014                                                                                                                                                                                                                                                                                                                                                 And all the people, even the people of war that were with him, went up, and drew nigh, and came before the city, and pitched on the north side of Ai: now there was a valley between them and Ai.
6015                                                                                                                                                                                                                                                                                                                                                                                                                           And he took about five thousand men, and set them to lie in ambush between Bethel and Ai, on the west side of the city.
6016                                                                                                                                                                                                                                                                                                                                                      And when they had set the people, even all the host that was on the north of the city, and their liers in wait on the west of the city, Joshua went that night into the midst of the valley.
6017                                                                                                                                                                                                                                                        And it came to pass, when the king of Ai saw it, that they hasted and rose up early, and the men of the city went out against Israel to battle, he and all his people, at a time appointed, before the plain; but he wist not that there were liers in ambush against him behind the city.
6018                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joshua and all Israel made as if they were beaten before them, and fled by the way of the wilderness.
6019                                                                                                                                                                                                                                                                                                                                                                                                   And all the people that were in Ai were called together to pursue after them: and they pursued after Joshua, and were drawn away from the city.
6020                                                                                                                                                                                                                                                                                                                                                                                                              And there was not a man left in Ai or Bethel, that went not out after Israel: and they left the city open, and pursued after Israel.
6021                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Joshua, Stretch out the spear that is in thy hand toward Ai; for I will give it into thine hand. And Joshua stretched out the spear that he had in his hand toward the city.
6022                                                                                                                                                                                                                                                                                                                                                         And the ambush arose quickly out of their place, and they ran as soon as he had stretched out his hand: and they entered into the city, and took it, and hasted and set the city on fire.
6023                                                                                                                                                                                                                                                                                                      And when the men of Ai looked behind them, they saw, and, behold, the smoke of the city ascended up to heaven, and they had no power to flee this way or that way: and the people that fled to the wilderness turned back upon the pursuers.
6024                                                                                                                                                                                                                                                                                                                                                                                   And when Joshua and all Israel saw that the ambush had taken the city, and that the smoke of the city ascended, then they turned again, and slew the men of Ai.
6025                                                                                                                                                                                                                                                                                                                                            And the other issued out of the city against them; so they were in the midst of Israel, some on this side, and some on that side: and they smote them, so that they let none of them remain or escape.
6026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king of Ai they took alive, and brought him to Joshua.
6027                                                                                                                                                                                                                              And it came to pass, when Israel had made an end of slaying all the inhabitants of Ai in the field, in the wilderness wherein they chased them, and when they were all fallen on the edge of the sword, until they were consumed, that all the Israelites returned unto Ai, and smote it with the edge of the sword.
6028                                                                                                                                                                                                                                                                                                                                                                                                                                  And so it was, that all that fell that day, both of men and women, were twelve thousand, even all the men of Ai.
6029                                                                                                                                                                                                                                                                                                                                                                                                                For Joshua drew not his hand back, wherewith he stretched out the spear, until he had utterly destroyed all the inhabitants of Ai.
6030                                                                                                                                                                                                                                                                                                                                                                                                 Only the cattle and the spoil of that city Israel took for a prey unto themselves, according unto the word of the LORD which he commanded Joshua.
6031                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joshua burnt Ai, and made it an heap for ever, even a desolation unto this day.
6032                                                                                                                                                                                                                                                       And the king of Ai he hanged on a tree until eventide: and as soon as the sun was down, Joshua commanded that they should take his carcass down from the tree, and cast it at the entering of the gate of the city, and raise thereon a great heap of stones, that remaineth unto this day.
6033                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Joshua built an altar unto the LORD God of Israel in mount Ebal,
6034                                                                                                                                                                                                                                                                   As Moses the servant of the LORD commanded the children of Israel, as it is written in the book of the law of Moses, an altar of whole stones, over which no man hath lift up any iron: and they offered thereon burnt offerings unto the LORD, and sacrificed peace offerings.
6035                                                                                                                                                                                                                                                                                                                                                                                                                          And he wrote there upon the stones a copy of the law of Moses, which he wrote in the presence of the children of Israel.
6036                                                                                                        And all Israel, and their elders, and officers, and their judges, stood on this side the ark and on that side before the priests the Levites, which bare the ark of the covenant of the LORD, as well the stranger, as he that was born among them; half of them over against mount Gerizim, and half of them over against mount Ebal; as Moses the servant of the LORD had commanded before, that they should bless the people of Israel.
6037                                                                                                                                                                                                                                                                                                                                                                                                              And afterward he read all the words of the law, the blessings and cursings, according to all that is written in the book of the law.
6038                                                                                                                                                                                                                                                                                                                                            There was not a word of all that Moses commanded, which Joshua read not before all the congregation of Israel, with the women, and the little ones, and the strangers that were conversant among them.
6039                                                                                                                                                                                                                                                                   And it came to pass, when all the kings which were on this side Jordan, in the hills, and in the valleys, and in all the coasts of the great sea over against Lebanon, the Hittite, and the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusite, heard thereof;
6040                                                                                                                                                                                                                                                                                                                                                                                                                                                    That they gathered themselves together, to fight with Joshua and with Israel, with one accord.
6041                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the inhabitants of Gibeon heard what Joshua had done unto Jericho and to Ai,
6042                                                                                                                                                                                                                                                                                                                                                                                      They did work wilily, and went and made as if they had been ambassadors, and took old sacks upon their asses, and wine bottles, old, and rent, and bound up;
6043                                                                                                                                                                                                                                                                                                                                                                                                                   And old shoes and clouted upon their feet, and old garments upon them; and all the bread of their provision was dry and mouldy.
6044                                                                                                                                                                                                                                                                                                                                                                              And they went to Joshua unto the camp at Gilgal, and said unto him, and to the men of Israel, We be come from a far country: now therefore make ye a league with us.
6045                                                                                                                                                                                                                                                                                                                                                                                                                             And the men of Israel said unto the Hivites, Peradventure ye dwell among us; and how shall we make a league with you?
6046                                                                                                                                                                                                                                                                                                                                                                                                                                   And they said unto Joshua, We are thy servants. And Joshua said unto them, Who are ye? and from whence come ye?
6047                                                                                                                                                                                                                                                                                                                                                                   And they said unto him, From a very far country thy servants are come because of the name of the LORD thy God: for we have heard the fame of him, and all that he did in Egypt,
6048                                                                                                                                                                                                                                                                                                                                                                                        And all that he did to the two kings of the Amorites, that were beyond Jordan, to Sihon king of Heshbon, and to Og king of Bashan, which was at Ashtaroth.
6049                                                                                                                                                                                                                                                                                                                    Wherefore our elders and all the inhabitants of our country spake to us, saying, Take victuals with you for the journey, and go to meet them, and say unto them, We are your servants: therefore now make ye a league with us.
6050                                                                                                                                                                                                                                                                                                                                                                                             This our bread we took hot for our provision out of our houses on the day we came forth to go unto you; but now, behold, it is dry, and it is mouldy:
6051                                                                                                                                                                                                                                                                                                                                                                          And these bottles of wine, which we filled, were new; and, behold, they be rent: and these our garments and our shoes are become old by reason of the very long journey.
6052                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the men took of their victuals, and asked not counsel at the mouth of the LORD.
6053                                                                                                                                                                                                                                                                                                                                                                                                              And Joshua made peace with them, and made a league with them, to let them live: and the princes of the congregation sware unto them.
6054                                                                                                                                                                                                                                                                                                                                                                              And it came to pass at the end of three days after they had made a league with them, that they heard that they were their neighbors, and that they dwelt among them.
6055                                                                                                                                                                                                                                                                                                                                                                                   And the children of Israel journeyed, and came unto their cities on the third day. Now their cities were Gibeon, and Chephirah, and Beeroth, and Kirjathjearim.
6056                                                                                                                                                                                                                                                                                                                                                          And the children of Israel smote them not, because the princes of the congregation had sworn unto them by the LORD God of Israel. And all the congregation murmured against the princes.
6057                                                                                                                                                                                                                                                                                                                                                                                                       But all the princes said unto all the congregation, We have sworn unto them by the LORD God of Israel: now therefore we may not touch them.
6058                                                                                                                                                                                                                                                                                                                                                                                                                         This we will do to them; we will even let them live, lest wrath be upon us, because of the oath which we sware unto them.
6059                                                                                                                                                                                                                                                                                                                                                                                   And the princes said unto them, Let them live; but let them be hewers of wood and drawers of water unto all the congregation; as the princes had promised them.
6060                                                                                                                                                                                                                                                                                                                                                                                              And Joshua called for them, and he spake unto them, saying, Wherefore have ye beguiled us, saying, We are very far from you; when ye dwell among us?
6061                                                                                                                                                                                                                                                                                                                                                                                            Now therefore ye are cursed, and there shall none of you be freed from being bondmen, and hewers of wood and drawers of water for the house of my God.
6062                                                                                                                                                                                                                              And they answered Joshua, and said, Because it was certainly told thy servants, how that the LORD thy God commanded his servant Moses to give you all the land, and to destroy all the inhabitants of the land from before you, therefore we were sore afraid of our lives because of you, and have done this thing.
6063                                                                                                                                                                                                                                                                                                                                                                                                                                                  And now, behold, we are in thine hand: as it seemeth good and right unto thee to do unto us, do.
6064                                                                                                                                                                                                                                                                                                                                                                                                                                   And so did he unto them, and delivered them out of the hand of the children of Israel, that they slew them not.
6065                                                                                                                                                                                                                                                                                                                                                                   And Joshua made them that day hewers of wood and drawers of water for the congregation, and for the altar of the LORD, even unto this day, in the place which he should choose.
6066                                                                                                                                                                                                                                                             Now it came to pass, when Adonizedec king of Jerusalem had heard how Joshua had taken Ai, and had utterly destroyed it; as he had done to Jericho and her king, so he had done to Ai and her king; and how the inhabitants of Gibeon had made peace with Israel, and were among them;
6067                                                                                                                                                                                                                                                                                                                                                                                   That they feared greatly, because Gibeon was a great city, as one of the royal cities, and because it was greater than Ai, and all the men thereof were mighty.
6068                                                                                                                                                                                                                                                                                                                                                                    Wherefore Adonizedec king of Jerusalem, sent unto Hoham king of Hebron, and unto Piram king of Jarmuth, and unto Japhia king of Lachish, and unto Debir king of Eglon, saying,
6069                                                                                                                                                                                                                                                                                                                                                                                                                       Come up unto me, and help me, that we may smite Gibeon: for it hath made peace with Joshua and with the children of Israel.
6070                                                                                                                                                                                                                                                                       Therefore the five kings of the Amorites, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, the king of Eglon, gathered themselves together, and went up, they and all their hosts, and encamped before Gibeon, and made war against it.
6071                                                                                                                                                                                                                                                                                      And the men of Gibeon sent unto Joshua to the camp to Gilgal, saying, Slack not thy hand from thy servants; come up to us quickly, and save us, and help us: for all the kings of the Amorites that dwell in the mountains are gathered together against us.
6072                                                                                                                                                                                                                                                                                                                                                                                                                                          So Joshua ascended from Gilgal, he, and all the people of war with him, and all the mighty men of valor.
6073                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto Joshua, Fear them not: for I have delivered them into thine hand; there shall not a man of them stand before thee.
6074                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Joshua therefore came unto them suddenly, and went up from Gilgal all night.
6075                                                                                                                                                                                                                                                                                                                                               And the LORD discomfited them before Israel, and slew them with a great slaughter at Gibeon, and chased them along the way that goeth up to Bethhoron, and smote them to Azekah, and unto Makkedah.
6076                                                                                                                                                                                                                                                        And it came to pass, as they fled from before Israel, and were in the going down to Bethhoron, that the LORD cast down great stones from heaven upon them unto Azekah, and they died: they were more which died with hailstones than they whom the children of Israel slew with the sword.
6077                                                                                                                                                                                                                                                                                                                   Then spake Joshua to the LORD in the day when the LORD delivered up the Amorites before the children of Israel, and he said in the sight of Israel, Sun, stand thou still upon Gibeon; and thou, Moon, in the valley of Ajalon.
6078                                                                                                                                                                                                                                                                                                  And the sun stood still, and the moon stayed, until the people had avenged themselves upon their enemies. Is not this written in the book of Jasher? So the sun stood still in the midst of heaven, and hasted not to go down about a whole day.
6079                                                                                                                                                                                                                                                                                                                                                                                                            And there was no day like that before it or after it, that the LORD hearkened unto the voice of a man: for the LORD fought for Israel.
6080                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua returned, and all Israel with him, unto the camp to Gilgal.
6081                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But these five kings fled, and hid themselves in a cave at Makkedah.
6082                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it was told Joshua, saying, The five kings are found hid in a cave at Makkedah.
6083                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joshua said, Roll great stones upon the mouth of the cave, and set men by it for to keep them:
6084                                                                                                                                                                                                                                                                                                                                                             And stay ye not, but pursue after your enemies, and smite the hindmost of them; suffer them not to enter into their cities: for the LORD your God hath delivered them into your hand.
6085                                                                                                                                                                                                                                                                                                                                And it came to pass, when Joshua and the children of Israel had made an end of slaying them with a very great slaughter, till they were consumed, that the rest which remained of them entered into fenced cities.
6086                                                                                                                                                                                                                                                                                                                                                                                                              And all the people returned to the camp to Joshua at Makkedah in peace: none moved his tongue against any of the children of Israel.
6087                                                                                                                                                                                                                                                                                                                                                                                                                                             Then said Joshua, Open the mouth of the cave, and bring out those five kings unto me out of the cave.
6088                                                                                                                                                                                                                                                                                                                                                         And they did so, and brought forth those five kings unto him out of the cave, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon.
6089                                                                                                                                                                                                                                        And it came to pass, when they brought out those kings unto Joshua, that Joshua called for all the men of Israel, and said unto the captains of the men of war which went with him, Come near, put your feet upon the necks of these kings. And they came near, and put their feet upon the necks of them.
6090                                                                                                                                                                                                                                                                                                                                                                                        And Joshua said unto them, Fear not, nor be dismayed, be strong and of good courage: for thus shall the LORD do to all your enemies against whom ye fight.
6091                                                                                                                                                                                                                                                                                                                                                                                                            And afterward Joshua smote them, and slew them, and hanged them on five trees: and they were hanging upon the trees until the evening.
6092                                                                                                                                                                                                                                                                                   And it came to pass at the time of the going down of the sun, that Joshua commanded, and they took them down off the trees, and cast them into the cave wherein they had been hid, and laid great stones in the cave's mouth, which remain until this very day.
6093                                                                                                                                                                                                                                                                                      And that day Joshua took Makkedah, and smote it with the edge of the sword, and the king thereof he utterly destroyed, them, and all the souls that were therein; he let none remain: and he did to the king of Makkedah as he did unto the king of Jericho.
6094                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Joshua passed from Makkedah, and all Israel with him, unto Libnah, and fought against Libnah:
6095                                                                                                                                                                                                                                                                                       And the LORD delivered it also, and the king thereof, into the hand of Israel; and he smote it with the edge of the sword, and all the souls that were therein; he let none remain in it; but did unto the king thereof as he did unto the king of Jericho.
6096                                                                                                                                                                                                                                                                                                                                                                                                                             And Joshua passed from Libnah, and all Israel with him, unto Lachish, and encamped against it, and fought against it:
6097                                                                                                                                                                                                                                                                                                                               And the LORD delivered Lachish into the hand of Israel, which took it on the second day, and smote it with the edge of the sword, and all the souls that were therein, according to all that he had done to Libnah.
6098                                                                                                                                                                                                                                                                                                                                                                                                                      Then Horam king of Gezer came up to help Lachish; and Joshua smote him and his people, until he had left him none remaining.
6099                                                                                                                                                                                                                                                                                                                                                                                                                          And from Lachish Joshua passed unto Eglon, and all Israel with him; and they encamped against it, and fought against it:
6100                                                                                                                                                                                                                                                                                                                                                           And they took it on that day, and smote it with the edge of the sword, and all the souls that were therein he utterly destroyed that day, according to all that he had done to Lachish.
6101                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Joshua went up from Eglon, and all Israel with him, unto Hebron; and they fought against it:
6102                                                                                                                                                                                                                                                              And they took it, and smote it with the edge of the sword, and the king thereof, and all the cities thereof, and all the souls that were therein; he left none remaining, according to all that he had done to Eglon; but destroyed it utterly, and all the souls that were therein.
6103                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joshua returned, and all Israel with him, to Debir; and fought against it:
6104                                                                                                                                                                                                                           And he took it, and the king thereof, and all the cities thereof; and they smote them with the edge of the sword, and utterly destroyed all the souls that were therein; he left none remaining: as he had done to Hebron, so he did to Debir, and to the king thereof; as he had done also to Libnah, and to her king.
6105                                                                                                                                                                                                                                                                                                                   So Joshua smote all the country of the hills, and of the south, and of the vale, and of the springs, and all their kings: he left none remaining, but utterly destroyed all that breathed, as the LORD God of Israel commanded.
6106                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua smote them from Kadeshbarnea even unto Gaza, and all the country of Goshen, even unto Gibeon.
6107                                                                                                                                                                                                                                                                                                                                                                                                                                 And all these kings and their land did Joshua take at one time, because the LORD God of Israel fought for Israel.
6108                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua returned, and all Israel with him, unto the camp to Gilgal.
6109                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when Jabin king of Hazor had heard those things, that he sent to Jobab king of Madon, and to the king of Shimron, and to the king of Achshaph,
6110                                                                                                                                                                                                                                                                                                                                                                                        And to the kings that were on the north of the mountains, and of the plains south of Chinneroth, and in the valley, and in the borders of Dor on the west,
6111                                                                                                                                                                                                                                                                                                                                                And to the Canaanite on the east and on the west, and to the Amorite, and the Hittite, and the Perizzite, and the Jebusite in the mountains, and to the Hivite under Hermon in the land of Mizpeh.
6112                                                                                                                                                                                                                                                                                                                                                                                 And they went out, they and all their hosts with them, much people, even as the sand that is upon the sea shore in multitude, with horses and chariots very many.
6113                                                                                                                                                                                                                                                                                                                                                                                                                       And when all these kings were met together, they came and pitched together at the waters of Merom, to fight against Israel.
6114                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Joshua, Be not afraid because of them: for to morrow about this time will I deliver them up all slain before Israel: thou shalt hough their horses, and burn their chariots with fire.
6115                                                                                                                                                                                                                                                                                                                                                                                                                        So Joshua came, and all the people of war with him, against them by the waters of Merom suddenly; and they fell upon them.
6116                                                                                                                                                                                                                                                                                                                 And the LORD delivered them into the hand of Israel, who smote them, and chased them unto great Zidon, and unto Misrephothmaim, and unto the valley of Mizpeh eastward; and they smote them, until they left them none remaining.
6117                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joshua did unto them as the LORD bade him: he houghed their horses, and burnt their chariots with fire.
6118                                                                                                                                                                                                                                                                                                                                                                                          And Joshua at that time turned back, and took Hazor, and smote the king thereof with the sword: for Hazor beforetime was the head of all those kingdoms.
6119                                                                                                                                                                                                                                                                                                                                                                              And they smote all the souls that were therein with the edge of the sword, utterly destroying them: there was not any left to breathe: and he burnt Hazor with fire.
6120                                                                                                                                                                                                                                                                                                                                              And all the cities of those kings, and all the kings of them, did Joshua take, and smote them with the edge of the sword, and he utterly destroyed them, as Moses the servant of the LORD commanded.
6121                                                                                                                                                                                                                                                                                                                                                                                                                      But as for the cities that stood still in their strength, Israel burned none of them, save Hazor only; that did Joshua burn.
6122                                                                                                                                                                                                                                                                                                                  And all the spoil of these cities, and the cattle, the children of Israel took for a prey unto themselves; but every man they smote with the edge of the sword, until they had destroyed them, neither left they any to breathe.
6123                                                                                                                                                                                                                                                                                                                                                                                             As the LORD commanded Moses his servant, so did Moses command Joshua, and so did Joshua; he left nothing undone of all that the LORD commanded Moses.
6124                                                                                                                                                                                                                                                                                                                                                            So Joshua took all that land, the hills, and all the south country, and all the land of Goshen, and the valley, and the plain, and the mountain of Israel, and the valley of the same;
6125                                                                                                                                                                                                                                                                                                                                                                      Even from the mount Halak, that goeth up to Seir, even unto Baalgad in the valley of Lebanon under mount Hermon: and all their kings he took, and smote them, and slew them.
6126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joshua made war a long time with all those kings.
6127                                                                                                                                                                                                                                                                                                                                                                                                      There was not a city that made peace with the children of Israel, save the Hivites the inhabitants of Gibeon: all other they took in battle.
6128                                                                                                                                                                                                                                                                                                                For it was of the LORD to harden their hearts, that they should come against Israel in battle, that he might destroy them utterly, and that they might have no favor, but that he might destroy them, as the LORD commanded Moses.
6129                                                                                                                                                                                                                                                                                                         And at that time came Joshua, and cut off the Anakims from the mountains, from Hebron, from Debir, from Anab, and from all the mountains of Judah, and from all the mountains of Israel: Joshua destroyed them utterly with their cities.
6130                                                                                                                                                                                                                                                                                                                                                                                                                   There was none of the Anakims left in the land of the children of Israel: only in Gaza, in Gath, and in Ashdod, there remained.
6131                                                                                                                                                                                                                                                                                                                                      So Joshua took the whole land, according to all that the LORD said unto Moses; and Joshua gave it for an inheritance unto Israel according to their divisions by their tribes. And the land rested from war.
6132                                                                                                                                                                                                                                                                                                                   Now these are the kings of the land, which the children of Israel smote, and possessed their land on the other side Jordan toward the rising of the sun, from the river Arnon unto mount Hermon, and all the plain on the east:
6133                                                                                                                                                                                                                                                                                              Sihon king of the Amorites, who dwelt in Heshbon, and ruled from Aroer, which is upon the bank of the river Arnon, and from the middle of the river, and from half Gilead, even unto the river Jabbok, which is the border of the children of Ammon;
6134                                                                                                                                                                                                                                                                                                                                                         And from the plain to the sea of Chinneroth on the east, and unto the sea of the plain, even the salt sea on the east, the way to Bethjeshimoth; and from the south, under Ashdothpisgah:
6135                                                                                                                                                                                                                                                                                                                                                                                                                                 And the coast of Og king of Bashan, which was of the remnant of the giants, that dwelt at Ashtaroth and at Edrei,
6136                                                                                                                                                                                                                                                                                                                                                                      And reigned in mount Hermon, and in Salcah, and in all Bashan, unto the border of the Geshurites and the Maachathites, and half Gilead, the border of Sihon king of Heshbon.
6137                                                                                                                                                                                                                                                                                                                                         Them did Moses the servant of the LORD and the children of Israel smite: and Moses the servant of the LORD gave it for a possession unto the Reubenites, and the Gadites, and the half tribe of Manasseh.
6138                                                                                                                                                                                                                                          And these are the kings of the country which Joshua and the children of Israel smote on this side Jordan on the west, from Baalgad in the valley of Lebanon even unto the mount Halak, that goeth up to Seir; which Joshua gave unto the tribes of Israel for a possession according to their divisions;
6139                                                                                                                                                                                                                                                                                                                     In the mountains, and in the valleys, and in the plains, and in the springs, and in the wilderness, and in the south country; the Hittites, the Amorites, and the Canaanites, the Perizzites, the Hivites, and the Jebusites:
6140                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The king of Jericho, one; the king of Ai, which is beside Bethel, one;
6141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The king of Jerusalem, one; the king of Hebron, one;
6142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Jarmuth, one; the king of Lachish, one;
6143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The king of Eglon, one; the king of Gezer, one;
6144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The king of Debir, one; the king of Geder, one;
6145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The king of Hormah, one; the king of Arad, one;
6146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The king of Libnah, one; the king of Adullam, one;
6147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Makkedah, one; the king of Bethel, one;
6148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The king of Tappuah, one; the king of Hepher, one;
6149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The king of Aphek, one; the king of Lasharon, one;
6150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The king of Madon, one; the king of Hazor, one;
6151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The king of Shimronmeron, one; the king of Achshaph, one;
6152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Taanach, one; the king of Megiddo, one;
6153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The king of Kedesh, one; the king of Jokneam of Carmel, one;
6154                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The king of Dor in the coast of Dor, one; the king of the nations of Gilgal, one;
6155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The king of Tirzah, one: all the kings thirty and one.
6156                                                                                                                                                                                                                                                                                                                                                                                 Now Joshua was old and stricken in years; and the LORD said unto him, Thou art old and stricken in years, and there remaineth yet very much land to be possessed.
6157                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is the land that yet remaineth: all the borders of the Philistines, and all Geshuri,
6158                                                                                                                                                                                                                                                                                           From Sihor, which is before Egypt, even unto the borders of Ekron northward, which is counted to the Canaanite: five lords of the Philistines; the Gazathites, and the Ashdothites, the Eshkalonites, the Gittites, and the Ekronites; also the Avites:
6159                                                                                                                                                                                                                                                                                                                                                                                                               From the south, all the land of the Canaanites, and Mearah that is beside the Sidonians unto Aphek, to the borders of the Amorites:
6160                                                                                                                                                                                                                                                                                                                                                                                                               And the land of the Giblites, and all Lebanon, toward the sunrising, from Baalgad under mount Hermon unto the entering into Hamath.
6161                                                                                                                                                                                                                                                                                           All the inhabitants of the hill country from Lebanon unto Misrephothmaim, and all the Sidonians, them will I drive out from before the children of Israel: only divide thou it by lot unto the Israelites for an inheritance, as I have commanded thee.
6162                                                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore divide this land for an inheritance unto the nine tribes, and the half tribe of Manasseh,
6163                                                                                                                                                                                                                                                                                                                                                                         With whom the Reubenites and the Gadites have received their inheritance, which Moses gave them, beyond Jordan eastward, even as Moses the servant of the LORD gave them;
6164                                                                                                                                                                                                                                                                                                                                                                                                     From Aroer, that is upon the bank of the river Arnon, and the city that is in the midst of the river, and all the plain of Medeba unto Dibon;
6165                                                                                                                                                                                                                                                                                                                                                                                                                             And all the cities of Sihon king of the Amorites, which reigned in Heshbon, unto the border of the children of Ammon;
6166                                                                                                                                                                                                                                                                                                                                                                                                                                  And Gilead, and the border of the Geshurites and Maachathites, and all mount Hermon, and all Bashan unto Salcah;
6167                                                                                                                                                                                                                                                                                                                                                                                All the kingdom of Og in Bashan, which reigned in Ashtaroth and in Edrei, who remained of the remnant of the giants: for these did Moses smite, and cast them out.
6168                                                                                                                                                                                                                                                                                                                                                                         Nevertheless the children of Israel expelled not the Geshurites, nor the Maachathites: but the Geshurites and the Maachathites dwell among the Israelites until this day.
6169                                                                                                                                                                                                                                                                                                                                                                                         Only unto the tribes of Levi he gave none inheritance; the sacrifices of the LORD God of Israel made by fire are their inheritance, as he said unto them.
6170                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses gave unto the tribe of the children of Reuben inheritance according to their families.
6171                                                                                                                                                                                                                                                                                                                                                                                              And their coast was from Aroer, that is on the bank of the river Arnon, and the city that is in the midst of the river, and all the plain by Medeba;
6172                                                                                                                                                                                                                                                                                                                                                                                                                                                       Heshbon, and all her cities that are in the plain; Dibon, and Bamothbaal, and Bethbaalmeon,
6173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jahaza, and Kedemoth, and Mephaath,
6174                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Kirjathaim, and Sibmah, and Zarethshahar in the mount of the valley,
6175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Bethpeor, and Ashdothpisgah, and Bethjeshimoth,
6176                                                                                                                                                                                                                                                                                        And all the cities of the plain, and all the kingdom of Sihon king of the Amorites, which reigned in Heshbon, whom Moses smote with the princes of Midian, Evi, and Rekem, and Zur, and Hur, and Reba, which were dukes of Sihon, dwelling in the country.
6177                                                                                                                                                                                                                                                                                                                                                                                                                   Balaam also the son of Beor, the soothsayer, did the children of Israel slay with the sword among them that were slain by them.
6178                                                                                                                                                                                                                                                                                                                                                        And the border of the children of Reuben was Jordan, and the border thereof. This was the inheritance of the children of Reuben after their families, the cities and the villages thereof.
6179                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses gave inheritance unto the tribe of Gad, even unto the children of Gad according to their families.
6180                                                                                                                                                                                                                                                                                                                                                                                                            And their coast was Jazer, and all the cities of Gilead, and half the land of the children of Ammon, unto Aroer that is before Rabbah;
6181                                                                                                                                                                                                                                                                                                                                                                                                                                                      And from Heshbon unto Ramathmizpeh, and Betonim; and from Mahanaim unto the border of Debir;
6182                                                                                                                                                                                                                                                                                                                     And in the valley, Betharam, and Bethnimrah, and Succoth, and Zaphon, the rest of the kingdom of Sihon king of Heshbon, Jordan and his border, even unto the edge of the sea of Chinnereth on the other side Jordan eastward.
6183                                                                                                                                                                                                                                                                                                                                                                                                                                              This is the inheritance of the children of Gad after their families, the cities, and their villages.
6184                                                                                                                                                                                                                                                                                                                                                                                          And Moses gave inheritance unto the half tribe of Manasseh: and this was the possession of the half tribe of the children of Manasseh by their families.
6185                                                                                                                                                                                                                                                                                                                                                                                           And their coast was from Mahanaim, all Bashan, all the kingdom of Og king of Bashan, and all the towns of Jair, which are in Bashan, threescore cities:
6186                                                                                                                                                                                                                                                                                                                              And half Gilead, and Ashtaroth, and Edrei, cities of the kingdom of Og in Bashan, were pertaining unto the children of Machir the son of Manasseh, even to the one half of the children of Machir by their families.
6187                                                                                                                                                                                                                                                                                                                                                                                                         These are the countries which Moses did distribute for inheritance in the plains of Moab, on the other side Jordan, by Jericho, eastward.
6188                                                                                                                                                                                                                                                                                                                                                                                                                    But unto the tribe of Levi Moses gave not any inheritance: the LORD God of Israel was their inheritance, as he said unto them.
6189                                                                                                                                                                                                                                                                                         And these are the countries which the children of Israel inherited in the land of Canaan, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers of the tribes of the children of Israel, distributed for inheritance to them.
6190                                                                                                                                                                                                                                                                                                                                                                                                                            By lot was their inheritance, as the LORD commanded by the hand of Moses, for the nine tribes, and for the half tribe.
6191                                                                                                                                                                                                                                                                                                                                                                                           For Moses had given the inheritance of two tribes and an half tribe on the other side Jordan: but unto the Levites he gave none inheritance among them.
6192                                                                                                                                                                                                                                                                                                                                 For the children of Joseph were two tribes, Manasseh and Ephraim: therefore they gave no part unto the Levites in the land, save cities to dwell in, with their suburbs for their cattle and for their substance.
6193                                                                                                                                                                                                                                                                                                                                                                                                                                                            As the LORD commanded Moses, so the children of Israel did, and they divided the land.
6194                                                                                                                                                                                                                                                                                                                     Then the children of Judah came unto Joshua in Gilgal: and Caleb the son of Jephunneh the Kenezite said unto him, Thou knowest the thing that the LORD said unto Moses the man of God concerning me and thee in Kadeshbarnea.
6195                                                                                                                                                                                                                                                                                                                                                                                    Forty years old was I when Moses the servant of the LORD sent me from Kadeshbarnea to espy out the land; and I brought him word again as it was in mine heart.
6196                                                                                                                                                                                                                                                                                                                                                                                                                           Nevertheless my brethren that went up with me made the heart of the people melt: but I wholly followed the LORD my God.
6197                                                                                                                                                                                                                                                                                                                                                    And Moses sware on that day, saying, Surely the land whereon thy feet have trodden shall be thine inheritance, and thy children's for ever, because thou hast wholly followed the LORD my God.
6198                                                                                                                                                                                                                                                                                           And now, behold, the LORD hath kept me alive, as he said, these forty and five years, even since the LORD spake this word unto Moses, while the children of Israel wandered in the wilderness: and now, lo, I am this day fourscore and five years old.
6199                                                                                                                                                                                                                                                                                                                                                                              As yet I am as strong this day as I was in the day that Moses sent me: as my strength was then, even so is my strength now, for war, both to go out, and to come in.
6200                                                                                                                                                                                                                                                                        Now therefore give me this mountain, whereof the LORD spake in that day; for thou heardest in that day how the Anakims were there, and that the cities were great and fenced: if so be the LORD will be with me, then I shall be able to drive them out, as the LORD said.
6201                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joshua blessed him, and gave unto Caleb the son of Jephunneh Hebron for an inheritance.
6202                                                                                                                                                                                                                                                                                                                                                                                         Hebron therefore became the inheritance of Caleb the son of Jephunneh the Kenezite unto this day, because that he wholly followed the LORD God of Israel.
6203                                                                                                                                                                                                                                                                                                                                                                                                                      And the name of Hebron before was Kirjatharba; which Arba was a great man among the Anakims. And the land had rest from war.
6204                                                                                                                                                                                                                                                                                                                                                              This then was the lot of the tribe of the children of Judah by their families; even to the border of Edom the wilderness of Zin southward was the uttermost part of the south coast.
6205                                                                                                                                                                                                                                                                                                                                                                                                                                                   And their south border was from the shore of the salt sea, from the bay that looketh southward:
6206                                                                                                                                                                                                                                                                                                                              And it went out to the south side to Maalehacrabbim, and passed along to Zin, and ascended up on the south side unto Kadeshbarnea, and passed along to Hezron, and went up to Adar, and fetched a compass to Karkaa:
6207                                                                                                                                                                                                                                                                                                                                                                                       From thence it passed toward Azmon, and went out unto the river of Egypt; and the goings out of that coast were at the sea: this shall be your south coast.
6208                                                                                                                                                                                                                                                                                                                                                                             And the east border was the salt sea, even unto the end of Jordan. And their border in the north quarter was from the bay of the sea at the uttermost part of Jordan:
6209                                                                                                                                                                                                                                                                                                                                                                                                 And the border went up to Bethhogla, and passed along by the north of Betharabah; and the border went up to the stone of Bohan the son of Reuben:
6210                                                                                                                                                                                                                                                         And the border went up toward Debir from the valley of Achor, and so northward, looking toward Gilgal, that is before the going up to Adummim, which is on the south side of the river: and the border passed toward the waters of Enshemesh, and the goings out thereof were at Enrogel:
6211                                                                                                                                                                                                                                                               And the border went up by the valley of the son of Hinnom unto the south side of the Jebusite; the same is Jerusalem: and the border went up to the top of the mountain that lieth before the valley of Hinnom westward, which is at the end of the valley of the giants northward:
6212                                                                                                                                                                                                                                                                                                                                             And the border was drawn from the top of the hill unto the fountain of the water of Nephtoah, and went out to the cities of mount Ephron; and the border was drawn to Baalah, which is Kirjathjearim:
6213                                                                                                                                                                                                                                                                                                                                       And the border compassed from Baalah westward unto mount Seir, and passed along unto the side of mount Jearim, which is Chesalon, on the north side, and went down to Bethshemesh, and passed on to Timnah:
6214                                                                                                                                                                                                                                                                                                                                     And the border went out unto the side of Ekron northward: and the border was drawn to Shicron, and passed along to mount Baalah, and went out unto Jabneel; and the goings out of the border were at the sea.
6215                                                                                                                                                                                                                                                                                                                                                                                              And the west border was to the great sea, and the coast thereof. This is the coast of the children of Judah round about according to their families.
6216                                                                                                                                                                                                                                                                                                                                               And unto Caleb the son of Jephunneh he gave a part among the children of Judah, according to the commandment of the LORD to Joshua, even the city of Arba the father of Anak, which city is Hebron.
6217                                                                                                                                                                                                                                                                                                                                                                                                                                             And Caleb drove thence the three sons of Anak, Sheshai, and Ahiman, and Talmai, the children of Anak.
6218                                                                                                                                                                                                                                                                                                                                                                                                                                                And he went up thence to the inhabitants of Debir: and the name of Debir before was Kirjathsepher.
6219                                                                                                                                                                                                                                                                                                                                                                                                                                      And Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife.
6220                                                                                                                                                                                                                                                                                                                                                                                                                                         And Othniel the son of Kenaz, the brother of Caleb, took it: and he gave him Achsah his daughter to wife.
6221                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, as she came unto him, that she moved him to ask of her father a field: and she lighted off her ass; and Caleb said unto her, What wouldest thou?
6222                                                                                                                                                                                                                                                                                                                                                                                  Who answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs.
6223                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is the inheritance of the tribe of the children of Judah according to their families.
6224                                                                                                                                                                                                                                                                                                                                                                                                              And the uttermost cities of the tribe of the children of Judah toward the coast of Edom southward were Kabzeel, and Eder, and Jagur,
6225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Kinah, and Dimonah, and Adadah,
6226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Kedesh, and Hazor, and Ithnan,
6227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ziph, and Telem, and Bealoth,
6228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Hazor, Hadattah, and Kerioth, and Hezron, which is Hazor,
6229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Amam, and Shema, and Moladah,
6230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Hazargaddah, and Heshmon, and Bethpalet,
6231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hazarshual, and Beersheba, and Bizjothjah,
6232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Baalah, and Iim, and Azem,
6233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Eltolad, and Chesil, and Hormah,
6234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Ziklag, and Madmannah, and Sansannah,
6235                                                                                                                                                                                                                                                                                                                                                                                                                                           And Lebaoth, and Shilhim, and Ain, and Rimmon: all the cities are twenty and nine, with their villages:
6236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And in the valley, Eshtaol, and Zoreah, and Ashnah,
6237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Zanoah, and Engannim, Tappuah, and Enam,
6238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Jarmuth, and Adullam, Socoh, and Azekah,
6239                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Sharaim, and Adithaim, and Gederah, and Gederothaim; fourteen cities with their villages:
6240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Zenan, and Hadashah, and Migdalgad,
6241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Dilean, and Mizpeh, and Joktheel,
6242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lachish, and Bozkath, and Eglon,
6243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Cabbon, and Lahmam, and Kithlish,
6244                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Gederoth, Bethdagon, and Naamah, and Makkedah; sixteen cities with their villages:
6245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Libnah, and Ether, and Ashan,
6246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jiphtah, and Ashnah, and Nezib,
6247                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Keilah, and Achzib, and Mareshah; nine cities with their villages:
6248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ekron, with her towns and her villages:
6249                                                                                                                                                                                                                                                                                                                                                                                                                                                                      From Ekron even unto the sea, all that lay near Ashdod, with their villages:
6250                                                                                                                                                                                                                                                                                                                                                                                                 Ashdod with her towns and her villages, Gaza with her towns and her villages, unto the river of Egypt, and the great sea, and the border thereof:
6251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in the mountains, Shamir, and Jattir, and Socoh,
6252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Dannah, and Kirjathsannah, which is Debir,
6253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Anab, and Eshtemoh, and Anim,
6254                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Goshen, and Holon, and Giloh; eleven cities with their villages:
6255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arab, and Dumah, and Eshean,
6256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Janum, and Bethtappuah, and Aphekah,
6257                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Humtah, and Kirjatharba, which is Hebron, and Zior; nine cities with their villages:
6258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Maon, Carmel, and Ziph, and Juttah,
6259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jezreel, and Jokdeam, and Zanoah,
6260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cain, Gibeah, and Timnah; ten cities with their villages:
6261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Halhul, Bethzur, and Gedor,
6262                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Maarath, and Bethanoth, and Eltekon; six cities with their villages:
6263                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Kirjathbaal, which is Kirjathjearim, and Rabbah; two cities with their villages:
6264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In the wilderness, Betharabah, Middin, and Secacah,
6265                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Nibshan, and the city of Salt, and Engedi; six cities with their villages.
6266                                                                                                                                                                                                                                                                                                                                                                 As for the Jebusites the inhabitants of Jerusalem, the children of Judah could not drive them out; but the Jebusites dwell with the children of Judah at Jerusalem unto this day.
6267                                                                                                                                                                                                                                                                                                                                                                   And the lot of the children of Joseph fell from Jordan by Jericho, unto the water of Jericho on the east, to the wilderness that goeth up from Jericho throughout mount Bethel,
6268                                                                                                                                                                                                                                                                                                                                                                                                                                                         And goeth out from Bethel to Luz, and passeth along unto the borders of Archi to Ataroth,
6269                                                                                                                                                                                                                                                                                                                                                                                                And goeth down westward to the coast of Japhleti, unto the coast of Bethhoron the nether, and to Gezer; and the goings out thereof are at the sea.
6270                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the children of Joseph, Manasseh and Ephraim, took their inheritance.
6271                                                                                                                                                                                                                                                                                                                                                                 And the border of the children of Ephraim according to their families was thus: even the border of their inheritance on the east side was Atarothaddar, unto Bethhoron the upper;
6272                                                                                                                                                                                                                                                                                                                                                                           And the border went out toward the sea to Michmethah on the north side; and the border went about eastward unto Taanathshiloh, and passed by it on the east to Janohah;
6273                                                                                                                                                                                                                                                                                                                                                                                                                                            And it went down from Janohah to Ataroth, and to Naarath, and came to Jericho, and went out at Jordan.
6274                                                                                                                                                                                                                                                                                                                                                    The border went out from Tappuah westward unto the river Kanah; and the goings out thereof were at the sea. This is the inheritance of the tribe of the children of Ephraim by their families.
6275                                                                                                                                                                                                                                                                                                                                                                                                   And the separate cities for the children of Ephraim were among the inheritance of the children of Manasseh, all the cities with their villages.
6276                                                                                                                                                                                                                                                                                                                                                                                                 And they drave not out the Canaanites that dwelt in Gezer: but the Canaanites dwell among the Ephraimites unto this day, and serve under tribute.
6277                                                                                                                                                                                                                                                                                                                          There was also a lot for the tribe of Manasseh; for he was the firstborn of Joseph; to wit, for Machir the firstborn of Manasseh, the father of Gilead: because he was a man of war, therefore he had Gilead and Bashan.
6278                                                                                                                                                                                      There was also a lot for the rest of the children of Manasseh by their families; for the children of Abiezer, and for the children of Helek, and for the children of Asriel, and for the children of Shechem, and for the children of Hepher, and for the children of Shemida: these were the male children of Manasseh the son of Joseph by their families.
6279                                                                                                                                                                                                                                                                                                                                 But Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, had no sons, but daughters: and these are the names of his daughters, Mahlah, and Noah, Hoglah, Milcah, and Tirzah.
6280                                                                                                                                                                                                                                         And they came near before Eleazar the priest, and before Joshua the son of Nun, and before the princes, saying, The LORD commanded Moses to give us an inheritance among our brethren. Therefore according to the commandment of the LORD he gave them an inheritance among the brethren of their father.
6281                                                                                                                                                                                                                                                                                                                                                                                                                               And there fell ten portions to Manasseh, beside the land of Gilead and Bashan, which were on the other side Jordan;
6282                                                                                                                                                                                                                                                                                                                                                                                                                      Because the daughters of Manasseh had an inheritance among his sons: and the rest of Manasseh's sons had the land of Gilead.
6283                                                                                                                                                                                                                                                                                                                                                                                 And the coast of Manasseh was from Asher to Michmethah, that lieth before Shechem; and the border went along on the right hand unto the inhabitants of Entappuah.
6284                                                                                                                                                                                                                                                                                                                                                                                                                                  Now Manasseh had the land of Tappuah: but Tappuah on the border of Manasseh belonged to the children of Ephraim;
6285                                                                                                                                                                                                                                                                                                           And the coast descended unto the river Kanah, southward of the river: these cities of Ephraim are among the cities of Manasseh: the coast of Manasseh also was on the north side of the river, and the outgoings of it were at the sea:
6286                                                                                                                                                                                                                                                                                                                                                                                 Southward it was Ephraim's, and northward it was Manasseh's, and the sea is his border; and they met together in Asher on the north, and in Issachar on the east.
6287                                                                                                                                                                                                                                              And Manasseh had in Issachar and in Asher Bethshean and her towns, and Ibleam and her towns, and the inhabitants of Dor and her towns, and the inhabitants of Endor and her towns, and the inhabitants of Taanach and her towns, and the inhabitants of Megiddo and her towns, even three countries.
6288                                                                                                                                                                                                                                                                                                                                                                                                                    Yet the children of Manasseh could not drive out the inhabitants of those cities; but the Canaanites would dwell in that land.
6289                                                                                                                                                                                                                                                                                                                                                                                                  Yet it came to pass, when the children of Israel were waxen strong, that they put the Canaanites to tribute, but did not utterly drive them out.
6290                                                                                                                                                                                                                                                                                                                                                  And the children of Joseph spake unto Joshua, saying, Why hast thou given me but one lot and one portion to inherit, seeing I am a great people, forasmuch as the LORD hath blessed me hitherto?
6291                                                                                                                                                                                                                                                                                                                               And Joshua answered them, If thou be a great people, then get thee up to the wood country, and cut down for thyself there in the land of the Perizzites and of the giants, if mount Ephraim be too narrow for thee.
6292                                                                                                                                                                                                                                                                                                       And the children of Joseph said, The hill is not enough for us: and all the Canaanites that dwell in the land of the valley have chariots of iron, both they who are of Bethshean and her towns, and they who are of the valley of Jezreel.
6293                                                                                                                                                                                                                                                                                                                                                                              And Joshua spake unto the house of Joseph, even to Ephraim and to Manasseh, saying, Thou art a great people, and hast great power: thou shalt not have one lot only:
6294                                                                                                                                                                                                                                                                                                                        But the mountain shall be thine; for it is a wood, and thou shalt cut it down: and the outgoings of it shall be thine: for thou shalt drive out the Canaanites, though they have iron chariots, and though they be strong.
6295                                                                                                                                                                                                                                                                                                                                                                     And the whole congregation of the children of Israel assembled together at Shiloh, and set up the tabernacle of the congregation there. And the land was subdued before them.
6296                                                                                                                                                                                                                                                                                                                                                                                                                                       And there remained among the children of Israel seven tribes, which had not yet received their inheritance.
6297                                                                                                                                                                                                                                                                                                                                                                                                  And Joshua said unto the children of Israel, How long are ye slack to go to possess the land, which the LORD God of your fathers hath given you?
6298                                                                                                                                                                                                                                                                                                                                      Give out from among you three men for each tribe: and I will send them, and they shall rise, and go through the land, and describe it according to the inheritance of them; and they shall come again to me.
6299                                                                                                                                                                                                                                                                                                                                                                                       And they shall divide it into seven parts: Judah shall abide in their coast on the south, and the house of Joseph shall abide in their coasts on the north.
6300                                                                                                                                                                                                                                                                                                                                                                                         Ye shall therefore describe the land into seven parts, and bring the description hither to me, that I may cast lots for you here before the LORD our God.
6301                                                                                                                                                                                                                                                                                       But the Levites have no part among you; for the priesthood of the LORD is their inheritance: and Gad, and Reuben, and half the tribe of Manasseh, have received their inheritance beyond Jordan on the east, which Moses the servant of the LORD gave them.
6302                                                                                                                                                                                                                                                                                                               And the men arose, and went away: and Joshua charged them that went to describe the land, saying, Go and walk through the land, and describe it, and come again to me, that I may here cast lots for you before the LORD in Shiloh.
6303                                                                                                                                                                                                                                                                                                                                                                                              And the men went and passed through the land, and described it by cities into seven parts in a book, and came again to Joshua to the host at Shiloh.
6304                                                                                                                                                                                                                                                                                                                                                                                              And Joshua cast lots for them in Shiloh before the LORD: and there Joshua divided the land unto the children of Israel according to their divisions.
6305                                                                                                                                                                                                                                                                                                                                                         And the lot of the tribe of the children of Benjamin came up according to their families: and the coast of their lot came forth between the children of Judah and the children of Joseph.
6306                                                                                                                                                                                                                                                                                                                   And their border on the north side was from Jordan; and the border went up to the side of Jericho on the north side, and went up through the mountains westward; and the goings out thereof were at the wilderness of Bethaven.
6307                                                                                                                                                                                                                                                                                                                                     And the border went over from thence toward Luz, to the side of Luz, which is Bethel, southward; and the border descended to Atarothadar, near the hill that lieth on the south side of the nether Bethhoron.
6308                                                                                                                                                                                                                                                                          And the border was drawn thence, and compassed the corner of the sea southward, from the hill that lieth before Bethhoron southward; and the goings out thereof were at Kirjathbaal, which is Kirjathjearim, a city of the children of Judah: this was the west quarter.
6309                                                                                                                                                                                                                                                                                                                                                                                                     And the south quarter was from the end of Kirjathjearim, and the border went out on the west, and went out to the well of waters of Nephtoah:
6310                                                                                                                                                                                                                                                                                And the border came down to the end of the mountain that lieth before the valley of the son of Hinnom, and which is in the valley of the giants on the north, and descended to the valley of Hinnom, to the side of Jebusi on the south, and descended to Enrogel,
6311                                                                                                                                                                                                                                                                                                                                                  And was drawn from the north, and went forth to Enshemesh, and went forth toward Geliloth, which is over against the going up of Adummim, and descended to the stone of Bohan the son of Reuben,
6312                                                                                                                                                                                                                                                                                                                                                                                                                                                        And passed along toward the side over against Arabah northward, and went down unto Arabah:
6313                                                                                                                                                                                                                                                                                                                                                      And the border passed along to the side of Bethhoglah northward: and the outgoings of the border were at the north bay of the salt sea at the south end of Jordan: this was the south coast.
6314                                                                                                                                                                                                                                                                                                                                                                           And Jordan was the border of it on the east side. This was the inheritance of the children of Benjamin, by the coasts thereof round about, according to their families.
6315                                                                                                                                                                                                                                                                                                                                                                                                        Now the cities of the tribe of the children of Benjamin according to their families were Jericho, and Bethhoglah, and the valley of Keziz,
6316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Betharabah, and Zemaraim, and Bethel,
6317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Avim, and Pharah, and Ophrah,
6318                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Chepharhaammonai, and Ophni, and Gaba; twelve cities with their villages:
6319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Gibeon, and Ramah, and Beeroth,
6320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Mizpeh, and Chephirah, and Mozah,
6321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Rekem, and Irpeel, and Taralah,
6322                                                                                                                                                                                                                                                                                                                                                     And Zelah, Eleph, and Jebusi, which is Jerusalem, Gibeath, and Kirjath; fourteen cities with their villages. This is the inheritance of the children of Benjamin according to their families.
6323                                                                                                                                                                                                                                                                                                                                                     And the second lot came forth to Simeon, even for the tribe of the children of Simeon according to their families: and their inheritance was within the inheritance of the children of Judah.
6324                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they had in their inheritance Beersheba, and Sheba, and Moladah,
6325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Hazarshual, and Balah, and Azem,
6326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Eltolad, and Bethul, and Hormah,
6327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Ziklag, and Bethmarcaboth, and Hazarsusah,
6328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Bethlebaoth, and Sharuhen; thirteen cities and their villages:
6329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ain, Remmon, and Ether, and Ashan; four cities and their villages:
6330                                                                                                                                                                                                                                                                                                                                                          And all the villages that were round about these cities to Baalathbeer, Ramath of the south. This is the inheritance of the tribe of the children of Simeon according to their families.
6331                                                                                                                                                                                                                                                                                                    Out of the portion of the children of Judah was the inheritance of the children of Simeon: for the part of the children of Judah was too much for them: therefore the children of Simeon had their inheritance within the inheritance of them.
6332                                                                                                                                                                                                                                                                                                                                                                                                            And the third lot came up for the children of Zebulun according to their families: and the border of their inheritance was unto Sarid:
6333                                                                                                                                                                                                                                                                                                                                                                                                                 And their border went up toward the sea, and Maralah, and reached to Dabbasheth, and reached to the river that is before Jokneam;
6334                                                                                                                                                                                                                                                                                                                                                                                                     And turned from Sarid eastward toward the sunrising unto the border of Chislothtabor, and then goeth out to Daberath, and goeth up to Japhia,
6335                                                                                                                                                                                                                                                                                                                                                                                                                              And from thence passeth on along on the east to Gittahhepher, to Ittahkazin, and goeth out to Remmonmethoar to Neah;
6336                                                                                                                                                                                                                                                                                                                                                                                                                           And the border compasseth it on the north side to Hannathon: and the outgoings thereof are in the valley of Jiphthahel:
6337                                                                                                                                                                                                                                                                                                                                                                                                                                             And Kattath, and Nahallal, and Shimron, and Idalah, and Bethlehem: twelve cities with their villages.
6338                                                                                                                                                                                                                                                                                                                                                                                                                                 This is the inheritance of the children of Zebulun according to their families, these cities with their villages.
6339                                                                                                                                                                                                                                                                                                                                                                                                                                                And the fourth lot came out to Issachar, for the children of Issachar according to their families.
6340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And their border was toward Jezreel, and Chesulloth, and Shunem,
6341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Haphraim, and Shihon, and Anaharath,
6342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Rabbith, and Kishion, and Abez,
6343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Remeth, and Engannim, and Enhaddah, and Bethpazzez;
6344                                                                                                                                                                                                                                                                                                                                                                                           And the coast reacheth to Tabor, and Shahazimah, and Bethshemesh; and the outgoings of their border were at Jordan: sixteen cities with their villages.
6345                                                                                                                                                                                                                                                                                                                                                                                                                      This is the inheritance of the tribe of the children of Issachar according to their families, the cities and their villages.
6346                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the fifth lot came out for the tribe of the children of Asher according to their families.
6347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And their border was Helkath, and Hali, and Beten, and Achshaph,
6348                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Alammelech, and Amad, and Misheal; and reacheth to Carmel westward, and to Shihorlibnath;
6349                                                                                                                                                                                                                                                                                                                                                    And turneth toward the sunrising to Bethdagon, and reacheth to Zebulun, and to the valley of Jiphthahel toward the north side of Bethemek, and Neiel, and goeth out to Cabul on the left hand,
6350                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Hebron, and Rehob, and Hammon, and Kanah, even unto great Zidon;
6351                                                                                                                                                                                                                                                                                                                                                                              And then the coast turneth to Ramah, and to the strong city Tyre; and the coast turneth to Hosah; and the outgoings thereof are at the sea from the coast to Achzib:
6352                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ummah also, and Aphek, and Rehob: twenty and two cities with their villages.
6353                                                                                                                                                                                                                                                                                                                                                                                                                      This is the inheritance of the tribe of the children of Asher according to their families, these cities with their villages.
6354                                                                                                                                                                                                                                                                                                                                                                                                                                The sixth lot came out to the children of Naphtali, even for the children of Naphtali according to their families.
6355                                                                                                                                                                                                                                                                                                                                                                                                    And their coast was from Heleph, from Allon to Zaanannim, and Adami, Nekeb, and Jabneel, unto Lakum; and the outgoings thereof were at Jordan:
6356                                                                                                                                                                                                                                                                                                                        And then the coast turneth westward to Aznothtabor, and goeth out from thence to Hukkok, and reacheth to Zebulun on the south side, and reacheth to Asher on the west side, and to Judah upon Jordan toward the sunrising.
6357                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the fenced cities are Ziddim, Zer, and Hammath, Rakkath, and Chinnereth,
6358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Adamah, and Ramah, and Hazor,
6359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Kedesh, and Edrei, and Enhazor,
6360                                                                                                                                                                                                                                                                                                                                                                                                                                               And Iron, and Migdalel, Horem, and Bethanath, and Bethshemesh; nineteen cities with their villages.
6361                                                                                                                                                                                                                                                                                                                                                                                                                      This is the inheritance of the tribe of the children of Naphtali according to their families, the cities and their villages.
6362                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the seventh lot came out for the tribe of the children of Dan according to their families.
6363                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the coast of their inheritance was Zorah, and Eshtaol, and Irshemesh,
6364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Shaalabbin, and Ajalon, and Jethlah,
6365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Elon, and Thimnathah, and Ekron,
6366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Eltekeh, and Gibbethon, and Baalath,
6367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jehud, and Beneberak, and Gathrimmon,
6368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Mejarkon, and Rakkon, with the border before Japho.
6369                                                                                                                                                                                                                                                          And the coast of the children of Dan went out too little for them: therefore the children of Dan went up to fight against Leshem, and took it, and smote it with the edge of the sword, and possessed it, and dwelt therein, and called Leshem, Dan, after the name of Dan their father.
6370                                                                                                                                                                                                                                                                                                                                                                                                                        This is the inheritance of the tribe of the children of Dan according to their families, these cities with their villages.
6371                                                                                                                                                                                                                                                                                                                                                                                   When they had made an end of dividing the land for inheritance by their coasts, the children of Israel gave an inheritance to Joshua the son of Nun among them:
6372                                                                                                                                                                                                                                                                                                                                                                                            According to the word of the LORD they gave him the city which he asked, even Timnathserah in mount Ephraim: and he built the city, and dwelt therein.
6373                                                                                                                                                                                                                               These are the inheritances, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers of the tribes of the children of Israel, divided for an inheritance by lot in Shiloh before the LORD, at the door of the tabernacle of the congregation. So they made an end of dividing the country.
6374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD also spake unto Joshua, saying,
6375                                                                                                                                                                                                                                                                                                                                                                                                                     Speak to the children of Israel, saying, Appoint out for you cities of refuge, whereof I spake unto you by the hand of Moses:
6376                                                                                                                                                                                                                                                                                                                                                                                                       That the slayer that killeth any person unawares and unwittingly may flee thither: and they shall be your refuge from the avenger of blood.
6377                                                                                                                                                                                                                                                                     And when he that doth flee unto one of those cities shall stand at the entering of the gate of the city, and shall declare his cause in the ears of the elders of that city, they shall take him into the city unto them, and give him a place, that he may dwell among them.
6378                                                                                                                                                                                                                                                                                                                                                                   And if the avenger of blood pursue after him, then they shall not deliver the slayer up into his hand; because he smote his neighbor unwittingly, and hated him not beforetime.
6379                                                                                                                                                                                                                                                                    And he shall dwell in that city, until he stand before the congregation for judgment, and until the death of the high priest that shall be in those days: then shall the slayer return, and come unto his own city, and unto his own house, unto the city from whence he fled.
6380                                                                                                                                                                                                                                                                                                                                                                                                 And they appointed Kedesh in Galilee in mount Naphtali, and Shechem in mount Ephraim, and Kirjatharba, which is Hebron, in the mountain of Judah.
6381                                                                                                                                                                                                                                                                                                                And on the other side Jordan by Jericho eastward, they assigned Bezer in the wilderness upon the plain out of the tribe of Reuben, and Ramoth in Gilead out of the tribe of Gad, and Golan in Bashan out of the tribe of Manasseh.
6382                                                                                                                                                                                                                                                                       These were the cities appointed for all the children of Israel, and for the stranger that sojourneth among them, that whosoever killeth any person at unawares might flee thither, and not die by the hand of the avenger of blood, until he stood before the congregation.
6383                                                                                                                                                                                                                                                                                                                                                        Then came near the heads of the fathers of the Levites unto Eleazar the priest, and unto Joshua the son of Nun, and unto the heads of the fathers of the tribes of the children of Israel;
6384                                                                                                                                                                                                                                                                                                                                                                 And they spake unto them at Shiloh in the land of Canaan, saying, The LORD commanded by the hand of Moses to give us cities to dwell in, with the suburbs thereof for our cattle.
6385                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Israel gave unto the Levites out of their inheritance, at the commandment of the LORD, these cities and their suburbs.
6386                                                                                                                                                                                                                                                                                                And the lot came out for the families of the Kohathites: and the children of Aaron the priest, which were of the Levites, had by lot out of the tribe of Judah, and out of the tribe of Simeon, and out of the tribe of Benjamin, thirteen cities.
6387                                                                                                                                                                                                                                                                                                                                                                    And the rest of the children of Kohath had by lot out of the families of the tribe of Ephraim, and out of the tribe of Dan, and out of the half tribe of Manasseh, ten cities.
6388                                                                                                                                                                                                                                                                                                                           And the children of Gershon had by lot out of the families of the tribe of Issachar, and out of the tribe of Asher, and out of the tribe of Naphtali, and out of the half tribe of Manasseh in Bashan, thirteen cities.
6389                                                                                                                                                                                                                                                                                                                                                                                             The children of Merari by their families had out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities.
6390                                                                                                                                                                                                                                                                                                                                                                                                              And the children of Israel gave by lot unto the Levites these cities with their suburbs, as the LORD commanded by the hand of Moses.
6391                                                                                                                                                                                                                                                                                                                                                                                           And they gave out of the tribe of the children of Judah, and out of the tribe of the children of Simeon, these cities which are here mentioned by name.
6392                                                                                                                                                                                                                                                                                                                                                                                                        Which the children of Aaron, being of the families of the Kohathites, who were of the children of Levi, had: for theirs was the first lot.
6393                                                                                                                                                                                                                                                                                                                                                                                              And they gave them the city of Arba the father of Anak, which city is Hebron, in the hill country of Judah, with the suburbs thereof round about it.
6394                                                                                                                                                                                                                                                                                                                                                                                                                                 But the fields of the city, and the villages thereof, gave they to Caleb the son of Jephunneh for his possession.
6395                                                                                                                                                                                                                                                                                                                                                                                                   Thus they gave to the children of Aaron the priest Hebron with her suburbs, to be a city of refuge for the slayer; and Libnah with her suburbs,
6396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jattir with her suburbs, and Eshtemoa with her suburbs,
6397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Holon with her suburbs, and Debir with her suburbs,
6398                                                                                                                                                                                                                                                                                                                                                                                                                     And Ain with her suburbs, and Juttah with her suburbs, and Bethshemesh with her suburbs; nine cities out of those two tribes.
6399                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And out of the tribe of Benjamin, Gibeon with her suburbs, Geba with her suburbs,
6400                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Anathoth with her suburbs, and Almon with her suburbs; four cities.
6401                                                                                                                                                                                                                                                                                                                                                                                                                                                    All the cities of the children of Aaron, the priests, were thirteen cities with their suburbs.
6402                                                                                                                                                                                                                                                                                                                                                                              And the families of the children of Kohath, the Levites which remained of the children of Kohath, even they had the cities of their lot out of the tribe of Ephraim.
6403                                                                                                                                                                                                                                                                                                                                                                                                                  For they gave them Shechem with her suburbs in mount Ephraim, to be a city of refuge for the slayer; and Gezer with her suburbs,
6404                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Kibzaim with her suburbs, and Bethhoron with her suburbs; four cities.
6405                                                                                                                                                                                                                                                                                                                                                                                                                                                                And out of the tribe of Dan, Eltekeh with her suburbs, Gibbethon with her suburbs,
6406                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Aijalon with her suburbs, Gathrimmon with her suburbs; four cities.
6407                                                                                                                                                                                                                                                                                                                                                                                                                                      And out of the half tribe of Manasseh, Tanach with her suburbs, and Gathrimmon with her suburbs; two cities.
6408                                                                                                                                                                                                                                                                                                                                                                                                                                              All the cities were ten with their suburbs for the families of the children of Kohath that remained.
6409                                                                                                                                                                                                                                                                                                         And unto the children of Gershon, of the families of the Levites, out of the other half tribe of Manasseh they gave Golan in Bashan with her suburbs, to be a city of refuge for the slayer; and Beeshterah with her suburbs; two cities.
6410                                                                                                                                                                                                                                                                                                                                                                                                                                                              And out of the tribe of Issachar, Kishon with her suburbs, Dabareh with her suburbs,
6411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jarmuth with her suburbs, Engannim with her suburbs; four cities.
6412                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And out of the tribe of Asher, Mishal with her suburbs, Abdon with her suburbs,
6413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Helkath with her suburbs, and Rehob with her suburbs; four cities.
6414                                                                                                                                                                                                                                                                                                                                                          And out of the tribe of Naphtali, Kedesh in Galilee with her suburbs, to be a city of refuge for the slayer; and Hammothdor with her suburbs, and Kartan with her suburbs; three cities.
6415                                                                                                                                                                                                                                                                                                                                                                                                                                            All the cities of the Gershonites according to their families were thirteen cities with their suburbs.
6416                                                                                                                                                                                                                                                                                                                                                                                     And unto the families of the children of Merari, the rest of the Levites, out of the tribe of Zebulun, Jokneam with her suburbs, and Kartah with her suburbs,
6417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dimnah with her suburbs, Nahalal with her suburbs; four cities.
6418                                                                                                                                                                                                                                                                                                                                                                                                                                                             And out of the tribe of Reuben, Bezer with her suburbs, and Jahazah with her suburbs,
6419                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kedemoth with her suburbs, and Mephaath with her suburbs; four cities.
6420                                                                                                                                                                                                                                                                                                                                                                                                             And out of the tribe of Gad, Ramoth in Gilead with her suburbs, to be a city of refuge for the slayer; and Mahanaim with her suburbs,
6421                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Heshbon with her suburbs, Jazer with her suburbs; four cities in all.
6422                                                                                                                                                                                                                                                                                                                                                                                             So all the cities for the children of Merari by their families, which were remaining of the families of the Levites, were by their lot twelve cities.
6423                                                                                                                                                                                                                                                                                                                                                                                                                     All the cities of the Levites within the possession of the children of Israel were forty and eight cities with their suburbs.
6424                                                                                                                                                                                                                                                                                                                                                                                                                                                      These cities were every one with their suburbs round about them: thus were all these cities.
6425                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD gave unto Israel all the land which he sware to give unto their fathers; and they possessed it, and dwelt therein.
6426                                                                                                                                                                                                                                                                                                                                     And the LORD gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the LORD delivered all their enemies into their hand.
6427                                                                                                                                                                                                                                                                                                                                                                                                                                    There failed not ought of any good thing which the LORD had spoken unto the house of Israel; all came to pass.
6428                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Joshua called the Reubenites, and the Gadites, and the half tribe of Manasseh,
6429                                                                                                                                                                                                                                                                                                                                                                                                      And said unto them, Ye have kept all that Moses the servant of the LORD commanded you, and have obeyed my voice in all that I commanded you:
6430                                                                                                                                                                                                                                                                                                                                                                                                                   Ye have not left your brethren these many days unto this day, but have kept the charge of the commandment of the LORD your God.
6431                                                                                                                                                                                                                                                                                             And now the LORD your God hath given rest unto your brethren, as he promised them: therefore now return ye, and get you unto your tents, and unto the land of your possession, which Moses the servant of the LORD gave you on the other side Jordan.
6432                                                                                                                                                                                                                                                             But take diligent heed to do the commandment and the law, which Moses the servant of the LORD charged you, to love the LORD your God, and to walk in all his ways, and to keep his commandments, and to cleave unto him, and to serve him with all your heart and with all your soul.
6433                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Joshua blessed them, and sent them away: and they went unto their tents.
6434                                                                                                                                                                                                                                                                                     Now to the one half of the tribe of Manasseh Moses had given possession in Bashan: but unto the other half thereof gave Joshua among their brethren on this side Jordan westward. And when Joshua sent them away also unto their tents, then he blessed them,
6435                                                                                                                                                                                                                                                                                                   And he spake unto them, saying, Return with much riches unto your tents, and with very much cattle, with silver, and with gold, and with brass, and with iron, and with very much raiment: divide the spoil of your enemies with your brethren.
6436                                                                                                                                                                                                       And the children of Reuben and the children of Gad and the half tribe of Manasseh returned, and departed from the children of Israel out of Shiloh, which is in the land of Canaan, to go unto the country of Gilead, to the land of their possession, whereof they were possessed, according to the word of the LORD by the hand of Moses.
6437                                                                                                                                                                                                                                                                                                                             And when they came unto the borders of Jordan, that are in the land of Canaan, the children of Reuben and the children of Gad and the half tribe of Manasseh built there an altar by Jordan, a great altar to see to.
6438                                                                                                                                                                                                                                                                                              And the children of Israel heard say, Behold, the children of Reuben and the children of Gad and the half tribe of Manasseh have built an altar over against the land of Canaan, in the borders of Jordan, at the passage of the children of Israel.
6439                                                                                                                                                                                                                                                                                                                                                                               And when the children of Israel heard of it, the whole congregation of the children of Israel gathered themselves together at Shiloh, to go up to war against them.
6440                                                                                                                                                                                                                                                                                                                                                      And the children of Israel sent unto the children of Reuben, and to the children of Gad, and to the half tribe of Manasseh, into the land of Gilead, Phinehas the son of Eleazar the priest,
6441                                                                                                                                                                                                                                                                                                                                                                 And with him ten princes, of each chief house a prince throughout all the tribes of Israel; and each one was an head of the house of their fathers among the thousands of Israel.
6442                                                                                                                                                                                                                                                                                                                                                                              And they came unto the children of Reuben, and to the children of Gad, and to the half tribe of Manasseh, unto the land of Gilead, and they spake with them, saying,
6443                                                                                                                                                                                                                                                                                        Thus saith the whole congregation of the LORD, What trespass is this that ye have committed against the God of Israel, to turn away this day from following the LORD, in that ye have builded you an altar, that ye might rebel this day against the LORD?
6444                                                                                                                                                                                                                                                                                                                                                                                            Is the iniquity of Peor too little for us, from which we are not cleansed until this day, although there was a plague in the congregation of the LORD,
6445                                                                                                                                                                                                                                                                                                                                                      But that ye must turn away this day from following the LORD? and it will be, seeing ye rebel to day against the LORD, that to morrow he will be wroth with the whole congregation of Israel.
6446                                                                                                                                                                                                                             Notwithstanding, if the land of your possession be unclean, then pass ye over unto the land of the possession of the LORD, wherein the LORD's tabernacle dwelleth, and take possession among us: but rebel not against the LORD, nor rebel against us, in building you an altar beside the altar of the LORD our God.
6447                                                                                                                                                                                                                                                                                                                                                                        Did not Achan the son of Zerah commit a trespass in the accursed thing, and wrath fell on all the congregation of Israel? and that man perished not alone in his iniquity.
6448                                                                                                                                                                                                                                                                                                                                                                                                  Then the children of Reuben and the children of Gad and the half tribe of Manasseh answered, and said unto the heads of the thousands of Israel,
6449                                                                                                                                                                                                                                                                                                                                                                         The LORD God of gods, the LORD God of gods, he knoweth, and Israel he shall know; if it be in rebellion, or if in transgression against the LORD, (save us not this day,)
6450                                                                                                                                                                                                                                                                                                                                                  That we have built us an altar to turn from following the LORD, or if to offer thereon burnt offering or meat offering, or if to offer peace offerings thereon, let the LORD himself require it;
6451                                                                                                                                                                                                                                                                                                                                                            And if we have not rather done it for fear of this thing, saying, In time to come your children might speak unto our children, saying, What have ye to do with the LORD God of Israel?
6452                                                                                                                                                                                                                                                                                                                                          For the LORD hath made Jordan a border between us and you, ye children of Reuben and children of Gad; ye have no part in the LORD: so shall your children make our children cease from fearing the LORD.
6453                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore we said, Let us now prepare to build us an altar, not for burnt offering, nor for sacrifice:
6454                                                                                                                                                                                                                                 But that it may be a witness between us, and you, and our generations after us, that we might do the service of the LORD before him with our burnt offerings, and with our sacrifices, and with our peace offerings; that your children may not say to our children in time to come, Ye have no part in the LORD.
6455                                                                                                                                                                                                                                                        Therefore said we, that it shall be, when they should so say to us or to our generations in time to come, that we may say again, Behold the pattern of the altar of the LORD, which our fathers made, not for burnt offerings, nor for sacrifices; but it is a witness between us and you.
6456                                                                                                                                                                                                                                                                                                    God forbid that we should rebel against the LORD, and turn this day from following the LORD, to build an altar for burnt offerings, for meat offerings, or for sacrifices, beside the altar of the LORD our God that is before his tabernacle.
6457                                                                                                                                                                                                                                                                                              And when Phinehas the priest, and the princes of the congregation and heads of the thousands of Israel which were with him, heard the words that the children of Reuben and the children of Gad and the children of Manasseh spake, it pleased them.
6458                                                                                                                                                                                                                 And Phinehas the son of Eleazar the priest said unto the children of Reuben, and to the children of Gad, and to the children of Manasseh, This day we perceive that the LORD is among us, because ye have not committed this trespass against the LORD: now ye have delivered the children of Israel out of the hand of the LORD.
6459                                                                                                                                                                                                                                                                                                      And Phinehas the son of Eleazar the priest, and the princes, returned from the children of Reuben, and from the children of Gad, out of the land of Gilead, unto the land of Canaan, to the children of Israel, and brought them word again.
6460                                                                                                                                                                                                                                                                                                                                       And the thing pleased the children of Israel; and the children of Israel blessed God, and did not intend to go up against them in battle, to destroy the land wherein the children of Reuben and Gad dwelt.
6461                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Reuben and the children of Gad called the altar Ed: for it shall be a witness between us that the LORD is God.
6462                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass a long time after that the LORD had given rest unto Israel from all their enemies round about, that Joshua waxed old and stricken in age.
6463                                                                                                                                                                                                                                                                                                                                                                      And Joshua called for all Israel, and for their elders, and for their heads, and for their judges, and for their officers, and said unto them, I am old and stricken in age:
6464                                                                                                                                                                                                                                                                                                                                                                                                And ye have seen all that the LORD your God hath done unto all these nations because of you; for the LORD your God is he that hath fought for you.
6465                                                                                                                                                                                                                                                                                                                                                  Behold, I have divided unto you by lot these nations that remain, to be an inheritance for your tribes, from Jordan, with all the nations that I have cut off, even unto the great sea westward.
6466                                                                                                                                                                                                                                                                                                                                                                  And the LORD your God, he shall expel them from before you, and drive them from out of your sight; and ye shall possess their land, as the LORD your God hath promised unto you.
6467                                                                                                                                                                                                                                                                                                                                                                         Be ye therefore very courageous to keep and to do all that is written in the book of the law of Moses, that ye turn not aside therefrom to the right hand or to the left;
6468                                                                                                                                                                                                                                                                                                                                                  That ye come not among these nations, these that remain among you; neither make mention of the name of their gods, nor cause to swear by them, neither serve them, nor bow yourselves unto them:
6469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But cleave unto the LORD your God, as ye have done unto this day.
6470                                                                                                                                                                                                                                                                                                                                                                                                   For the LORD hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day.
6471                                                                                                                                                                                                                                                                                                                                                                                                                            One man of you shall chase a thousand: for the LORD your God, he it is that fighteth for you, as he hath promised you.
6472                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Take good heed therefore unto yourselves, that ye love the LORD your God.
6473                                                                                                                                                                                                                                                                                                                                                      Else if ye do in any wise go back, and cleave unto the remnant of these nations, even these that remain among you, and shall make marriages with them, and go in unto them, and they to you:
6474                                                                                                                                                                                                                                                        Know for a certainty that the LORD your God will no more drive out any of these nations from before you; but they shall be snares and traps unto you, and scourges in your sides, and thorns in your eyes, until ye perish from off this good land which the LORD your God hath given you.
6475                                                                                                                                                                                                                                                        And, behold, this day I am going the way of all the earth: and ye know in all your hearts and in all your souls, that not one thing hath failed of all the good things which the LORD your God spake concerning you; all are come to pass unto you, and not one thing hath failed thereof.
6476                                                                                                                                                                                                                                                                                   Therefore it shall come to pass, that as all good things are come upon you, which the LORD your God promised you; so shall the LORD bring upon you all evil things, until he have destroyed you from off this good land which the LORD your God hath given you.
6477                                                                                                                                                                                                                                                 When ye have transgressed the covenant of the LORD your God, which he commanded you, and have gone and served other gods, and bowed yourselves to them; then shall the anger of the LORD be kindled against you, and ye shall perish quickly from off the good land which he hath given unto you.
6478                                                                                                                                                                                                                                                                                                                                        And Joshua gathered all the tribes of Israel to Shechem, and called for the elders of Israel, and for their heads, and for their judges, and for their officers; and they presented themselves before God.
6479                                                                                                                                                                                                                                                                                                                   And Joshua said unto all the people, Thus saith the LORD God of Israel, Your fathers dwelt on the other side of the flood in old time, even Terah, the father of Abraham, and the father of Nachor: and they served other gods.
6480                                                                                                                                                                                                                                                                                                                                                                                      And I took your father Abraham from the other side of the flood, and led him throughout all the land of Canaan, and multiplied his seed, and gave him Isaac.
6481                                                                                                                                                                                                                                                                                                                                                                                                            And I gave unto Isaac Jacob and Esau: and I gave unto Esau mount Seir, to possess it; but Jacob and his children went down into Egypt.
6482                                                                                                                                                                                                                                                                                                                                                                                                                      I sent Moses also and Aaron, and I plagued Egypt, according to that which I did among them: and afterward I brought you out.
6483                                                                                                                                                                                                                                                                                                                                                                                      And I brought your fathers out of Egypt: and ye came unto the sea; and the Egyptians pursued after your fathers with chariots and horsemen unto the Red sea.
6484                                                                                                                                                                                                                                                                                                               And when they cried unto the LORD, he put darkness between you and the Egyptians, and brought the sea upon them, and covered them; and your eyes have seen what I have done in Egypt: and ye dwelt in the wilderness a long season.
6485                                                                                                                                                                                                                                                                                                                          And I brought you into the land of the Amorites, which dwelt on the other side Jordan; and they fought with you: and I gave them into your hand, that ye might possess their land; and I destroyed them from before you.
6486                                                                                                                                                                                                                                                                                                                                                                                                             Then Balak the son of Zippor, king of Moab, arose and warred against Israel, and sent and called Balaam the son of Beor to curse you:
6487                                                                                                                                                                                                                                                                                                                                                                                                                                          But I would not hearken unto Balaam; therefore he blessed you still: so I delivered you out of his hand.
6488                                                                                                                                                                                                                                                                                     And you went over Jordan, and came unto Jericho: and the men of Jericho fought against you, the Amorites, and the Perizzites, and the Canaanites, and the Hittites, and the Girgashites, the Hivites, and the Jebusites; and I delivered them into your hand.
6489                                                                                                                                                                                                                                                                                                                                                                                             And I sent the hornet before you, which drave them out from before you, even the two kings of the Amorites; but not with thy sword, nor with thy bow.
6490                                                                                                                                                                                                                                                                                                                                                                      And I have given you a land for which ye did not labor, and cities which ye built not, and ye dwell in them; of the vineyards and oliveyards which ye planted not do ye eat.
6491                                                                                                                                                                                                                                                                                                                                                        Now therefore fear the LORD, and serve him in sincerity and in truth: and put away the gods which your fathers served on the other side of the flood, and in Egypt; and serve ye the LORD.
6492                                                                                                                                                                                                                                                             And if it seem evil unto you to serve the LORD, choose you this day whom ye will serve; whether the gods which your fathers served that were on the other side of the flood, or the gods of the Amorites, in whose land ye dwell: but as for me and my house, we will serve the LORD.
6493                                                                                                                                                                                                                                                                                                                                                                                                                                                And the people answered and said, God forbid that we should forsake the LORD, to serve other gods;
6494                                                                                                                                                                                                                                                                            For the LORD our God, he it is that brought us up and our fathers out of the land of Egypt, from the house of bondage, and which did those great signs in our sight, and preserved us in all the way wherein we went, and among all the people through whom we passed:
6495                                                                                                                                                                                                                                                                                                                                                                                        And the LORD drave out from before us all the people, even the Amorites which dwelt in the land: therefore will we also serve the LORD; for he is our God.
6496                                                                                                                                                                                                                                                                                                                                                                                     And Joshua said unto the people, Ye cannot serve the LORD: for he is an holy God; he is a jealous God; he will not forgive your transgressions nor your sins.
6497                                                                                                                                                                                                                                                                                                                                                                                                             If ye forsake the LORD, and serve strange gods, then he will turn and do you hurt, and consume you, after that he hath done you good.
6498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the people said unto Joshua, Nay; but we will serve the LORD.
6499                                                                                                                                                                                                                                                                                                                                                                                             And Joshua said unto the people, Ye are witnesses against yourselves that ye have chosen you the LORD, to serve him. And they said, We are witnesses.
6500                                                                                                                                                                                                                                                                                                                                                                                                                        Now therefore put away, said he, the strange gods which are among you, and incline your heart unto the LORD God of Israel.
6501                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the people said unto Joshua, The LORD our God will we serve, and his voice will we obey.
6502                                                                                                                                                                                                                                                                                                                                                                                                                                           So Joshua made a covenant with the people that day, and set them a statute and an ordinance in Shechem.
6503                                                                                                                                                                                                                                                                                                                                                                                      And Joshua wrote these words in the book of the law of God, and took a great stone, and set it up there under an oak, that was by the sanctuary of the LORD.
6504                                                                                                                                                                                                                                                                                                                          And Joshua said unto all the people, Behold, this stone shall be a witness unto us; for it hath heard all the words of the LORD which he spake unto us: it shall be therefore a witness unto you, lest ye deny your God.
6505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Joshua let the people depart, every man unto his inheritance.
6506                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass after these things, that Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old.
6507                                                                                                                                                                                                                                                                                                                                                                                                          And they buried him in the border of his inheritance in Timnathserah, which is in mount Ephraim, on the north side of the hill of Gaash.
6508                                                                                                                                                                                                                                                                                                                                                              And Israel served the LORD all the days of Joshua, and all the days of the elders that overlived Joshua, and which had known all the works of the LORD, that he had done for Israel.
6509                                                                                                                                                                                                                                                              And the bones of Joseph, which the children of Israel brought up out of Egypt, buried they in Shechem, in a parcel of ground which Jacob bought of the sons of Hamor the father of Shechem for an hundred pieces of silver: and it became the inheritance of the children of Joseph.
6510                                                                                                                                                                                                                                                                                                                                                                                                        And Eleazar the son of Aaron died; and they buried him in a hill that pertained to Phinehas his son, which was given him in mount Ephraim.
6511                                                                                                                                                                                                                                                                                                                                                                    Now after the death of Joshua it came to pass, that the children of Israel asked the LORD, saying, Who shall go up for us against the Canaanites first, to fight against them?
6512                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said, Judah shall go up: behold, I have delivered the land into his hand.
6513                                                                                                                                                                                                                                                                                                                                                            And Judah said unto Simeon his brother, Come up with me into my lot, that we may fight against the Canaanites; and I likewise will go with thee into thy lot. So Simeon went with him.
6514                                                                                                                                                                                                                                                                                                                                                                                                     And Judah went up; and the LORD delivered the Canaanites and the Perizzites into their hand: and they slew of them in Bezek ten thousand men.
6515                                                                                                                                                                                                                                                                                                                                                                                                                                 And they found Adonibezek in Bezek: and they fought against him, and they slew the Canaanites and the Perizzites.
6516                                                                                                                                                                                                                                                                                                                                                                                                                                       But Adonibezek fled; and they pursued after him, and caught him, and cut off his thumbs and his great toes.
6517                                                                                                                                                                                                                                                                                                               And Adonibezek said, Threescore and ten kings, having their thumbs and their great toes cut off, gathered their meat under my table: as I have done, so God hath requited me. And they brought him to Jerusalem, and there he died.
6518                                                                                                                                                                                                                                                                                                                                                                                                    Now the children of Judah had fought against Jerusalem, and had taken it, and smitten it with the edge of the sword, and set the city on fire.
6519                                                                                                                                                                                                                                                                                                                                                                                                   And afterward the children of Judah went down to fight against the Canaanites, that dwelt in the mountain, and in the south, and in the valley.
6520                                                                                                                                                                                                                                                                                                                                                                                       And Judah went against the Canaanites that dwelt in Hebron: (now the name of Hebron before was Kirjatharba:) and they slew Sheshai, and Ahiman, and Talmai.
6521                                                                                                                                                                                                                                                                                                                                                                                                                                         And from thence he went against the inhabitants of Debir: and the name of Debir before was Kirjathsepher:
6522                                                                                                                                                                                                                                                                                                                                                                                                                                      And Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife.
6523                                                                                                                                                                                                                                                                                                                                                                                                                                      And Othniel the son of Kenaz, Caleb's younger brother, took it: and he gave him Achsah his daughter to wife.
6524                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when she came to him, that she moved him to ask of her father a field: and she lighted from off her ass; and Caleb said unto her, What wilt thou?
6525                                                                                                                                                                                                                                                                                                                                                                       And she said unto him, Give me a blessing: for thou hast given me a south land; give me also springs of water. And Caleb gave her the upper springs and the nether springs.
6526                                                                                                                                                                                                                                                                                                                  And the children of the Kenite, Moses' father in law, went up out of the city of palm trees with the children of Judah into the wilderness of Judah, which lieth in the south of Arad; and they went and dwelt among the people.
6527                                                                                                                                                                                                                                                                                                                                                                                And Judah went with Simeon his brother, and they slew the Canaanites that inhabited Zephath, and utterly destroyed it. And the name of the city was called Hormah.
6528                                                                                                                                                                                                                                                                                                                                                                                                                                Also Judah took Gaza with the coast thereof, and Askelon with the coast thereof, and Ekron with the coast thereof.
6529                                                                                                                                                                                                                                                                                                                                                                          And the LORD was with Judah; and he drave out the inhabitants of the mountain; but could not drive out the inhabitants of the valley, because they had chariots of iron.
6530                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they gave Hebron unto Caleb, as Moses said: and he expelled thence the three sons of Anak.
6531                                                                                                                                                                                                                                                                                                                                                                          And the children of Benjamin did not drive out the Jebusites that inhabited Jerusalem; but the Jebusites dwell with the children of Benjamin in Jerusalem unto this day.
6532                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the house of Joseph, they also went up against Bethel: and the LORD was with them.
6533                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the house of Joseph sent to descry Bethel. (Now the name of the city before was Luz.)
6534                                                                                                                                                                                                                                                                                                                                                                                       And the spies saw a man come forth out of the city, and they said unto him, Show us, we pray thee, the entrance into the city, and we will show thee mercy.
6535                                                                                                                                                                                                                                                                                                                                                                                                   And when he showed them the entrance into the city, they smote the city with the edge of the sword; but they let go the man and all his family.
6536                                                                                                                                                                                                                                                                                                                                                                                                       And the man went into the land of the Hittites, and built a city, and called the name thereof Luz: which is the name thereof unto this day.
6537                                                                                                                                                                                                                                                           Neither did Manasseh drive out the inhabitants of Bethshean and her towns, nor Taanach and her towns, nor the inhabitants of Dor and her towns, nor the inhabitants of Ibleam and her towns, nor the inhabitants of Megiddo and her towns: but the Canaanites would dwell in that land.
6538                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Israel was strong, that they put the Canaanites to tribute, and did not utterly drive them out.
6539                                                                                                                                                                                                                                                                                                                                                                                                                                   Neither did Ephraim drive out the Canaanites that dwelt in Gezer; but the Canaanites dwelt in Gezer among them.
6540                                                                                                                                                                                                                                                                                                                                                                                             Neither did Zebulun drive out the inhabitants of Kitron, nor the inhabitants of Nahalol; but the Canaanites dwelt among them, and became tributaries.
6541                                                                                                                                                                                                                                                                                                                                                                                       Neither did Asher drive out the inhabitants of Accho, nor the inhabitants of Zidon, nor of Ahlab, nor of Achzib, nor of Helbah, nor of Aphik, nor of Rehob:
6542                                                                                                                                                                                                                                                                                                                                                                                                                                       But the Asherites dwelt among the Canaanites, the inhabitants of the land: for they did not drive them out.
6543                                                                                                                                                                                                                                                                                       Neither did Naphtali drive out the inhabitants of Bethshemesh, nor the inhabitants of Bethanath; but he dwelt among the Canaanites, the inhabitants of the land: nevertheless the inhabitants of Bethshemesh and of Bethanath became tributaries unto them.
6544                                                                                                                                                                                                                                                                                                                                                                                                                         And the Amorites forced the children of Dan into the mountain: for they would not suffer them to come down to the valley:
6545                                                                                                                                                                                                                                                                                                                                                                                          But the Amorites would dwell in mount Heres in Aijalon, and in Shaalbim: yet the hand of the house of Joseph prevailed, so that they became tributaries.
6546                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the coast of the Amorites was from the going up to Akrabbim, from the rock, and upward.
6547                                                                                                                                                                                                                                                                                                                      And an angel of the LORD came up from Gilgal to Bochim, and said, I made you to go up out of Egypt, and have brought you unto the land which I sware unto your fathers; and I said, I will never break my covenant with you.
6548                                                                                                                                                                                                                                                                                                                                                                                          And ye shall make no league with the inhabitants of this land; ye shall throw down their altars: but ye have not obeyed my voice: why have ye done this?
6549                                                                                                                                                                                                                                                                                                                                                                                            Wherefore I also said, I will not drive them out from before you; but they shall be as thorns in your sides, and their gods shall be a snare unto you.
6550                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when the angel of the LORD spake these words unto all the children of Israel, that the people lifted up their voice, and wept.
6551                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they called the name of that place Bochim: and they sacrificed there unto the LORD.
6552                                                                                                                                                                                                                                                                                                                                                                                                                            And when Joshua had let the people go, the children of Israel went every man unto his inheritance to possess the land.
6553                                                                                                                                                                                                                                                                                                                                                                 And the people served the LORD all the days of Joshua, and all the days of the elders that outlived Joshua, who had seen all the great works of the LORD, that he did for Israel.
6554                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old.
6555                                                                                                                                                                                                                                                                                                                                                                                                               And they buried him in the border of his inheritance in Timnathheres, in the mount of Ephraim, on the north side of the hill Gaash.
6556                                                                                                                                                                                                                                                                                                                                                            And also all that generation were gathered unto their fathers: and there arose another generation after them, which knew not the LORD, nor yet the works which he had done for Israel.
6557                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Israel did evil in the sight of the LORD, and served Baalim:
6558                                                                                                                                                                                                                                                                                                       And they forsook the LORD God of their fathers, which brought them out of the land of Egypt, and followed other gods, of the gods of the people that were round about them, and bowed themselves unto them, and provoked the LORD to anger.
6559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they forsook the LORD, and served Baal and Ashtaroth.
6560                                                                                                                                                                                                                                                                                                 And the anger of the LORD was hot against Israel, and he delivered them into the hands of spoilers that spoiled them, and he sold them into the hands of their enemies round about, so that they could not any longer stand before their enemies.
6561                                                                                                                                                                                                                                                                                                                                                                         Whithersoever they went out, the hand of the LORD was against them for evil, as the LORD had said, and as the LORD had sworn unto them: and they were greatly distressed.
6562                                                                                                                                                                                                                                                                                                                                                                                                                                          Nevertheless the LORD raised up judges, which delivered them out of the hand of those that spoiled them.
6563                                                                                                                                                                                                                                                                                          And yet they would not hearken unto their judges, but they went a whoring after other gods, and bowed themselves unto them: they turned quickly out of the way which their fathers walked in, obeying the commandments of the LORD; but they did not so.
6564                                                                                                                                                                                                                                                                               And when the LORD raised them up judges, then the LORD was with the judge, and delivered them out of the hand of their enemies all the days of the judge: for it repented the LORD because of their groanings by reason of them that oppressed them and vexed them.
6565                                                                                                                                                                                                                                                                                         And it came to pass, when the judge was dead, that they returned, and corrupted themselves more than their fathers, in following other gods to serve them, and to bow down unto them; they ceased not from their own doings, nor from their stubborn way.
6566                                                                                                                                                                                                                                                                                                                                                      And the anger of the LORD was hot against Israel; and he said, Because that this people hath transgressed my covenant which I commanded their fathers, and have not hearkened unto my voice;
6567                                                                                                                                                                                                                                                                                                                                                                                                                                          I also will not henceforth drive out any from before them of the nations which Joshua left when he died:
6568                                                                                                                                                                                                                                                                                                                                                                                                           That through them I may prove Israel, whether they will keep the way of the LORD to walk therein, as their fathers did keep it, or not.
6569                                                                                                                                                                                                                                                                                                                                                                                                                       Therefore the LORD left those nations, without driving them out hastily; neither delivered he them into the hand of Joshua.
6570                                                                                                                                                                                                                                                                                                                                                                                                           Now these are the nations which the LORD left, to prove Israel by them, even as many of Israel as had not known all the wars of Canaan;
6571                                                                                                                                                                                                                                                                                                                                                                                                              Only that the generations of the children of Israel might know, to teach them war, at the least such as before knew nothing thereof;
6572                                                                                                                                                                                                                                                                                                                                                              Namely, five lords of the Philistines, and all the Canaanites, and the Sidonians, and the Hivites that dwelt in mount Lebanon, from mount Baalhermon unto the entering in of Hamath.
6573                                                                                                                                                                                                                                                                                                                                                                               And they were to prove Israel by them, to know whether they would hearken unto the commandments of the LORD, which he commanded their fathers by the hand of Moses.
6574                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Israel dwelt among the Canaanites, Hittites, and Amorites, and Perizzites, and Hivites, and Jebusites:
6575                                                                                                                                                                                                                                                                                                                                                                                                                                   And they took their daughters to be their wives, and gave their daughters to their sons, and served their gods.
6576                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel did evil in the sight of the LORD, and forgat the LORD their God, and served Baalim and the groves.
6577                                                                                                                                                                                                                                                                                                                                                 Therefore the anger of the LORD was hot against Israel, and he sold them into the hand of Chushanrishathaim king of Mesopotamia: and the children of Israel served Chushanrishathaim eight years.
6578                                                                                                                                                                                                                                                                                                                                                        And when the children of Israel cried unto the LORD, the LORD raised up a deliverer to the children of Israel, who delivered them, even Othniel the son of Kenaz, Caleb's younger brother.
6579                                                                                                                                                                                                                                                                                                                                And the Spirit of the LORD came upon him, and he judged Israel, and went out to war: and the LORD delivered Chushanrishathaim king of Mesopotamia into his hand; and his hand prevailed against Chushanrishathaim.
6580                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the land had rest forty years. And Othniel the son of Kenaz died.
6581                                                                                                                                                                                                                                                                                                                                                         And the children of Israel did evil again in the sight of the LORD: and the LORD strengthened Eglon the king of Moab against Israel, because they had done evil in the sight of the LORD.
6582                                                                                                                                                                                                                                                                                                                                                                                                                       And he gathered unto him the children of Ammon and Amalek, and went and smote Israel, and possessed the city of palm trees.
6583                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So the children of Israel served Eglon the king of Moab eighteen years.
6584                                                                                                                                                                                                                                                                                                                      But when the children of Israel cried unto the LORD, the LORD raised them up a deliverer, Ehud the son of Gera, a Benjamite, a man lefthanded: and by him the children of Israel sent a present unto Eglon the king of Moab.
6585                                                                                                                                                                                                                                                                                                                                                                                                                     But Ehud made him a dagger which had two edges, of a cubit length; and he did gird it under his raiment upon his right thigh.
6586                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he brought the present unto Eglon king of Moab: and Eglon was a very fat man.
6587                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when he had made an end to offer the present, he sent away the people that bare the present.
6588                                                                                                                                                                                                                                                                                                                                                       But he himself turned again from the quarries that were by Gilgal, and said, I have a secret errand unto thee, O king: who said, Keep silence. And all that stood by him went out from him.
6589                                                                                                                                                                                                                                                                                                                                                                  And Ehud came unto him; and he was sitting in a summer parlor, which he had for himself alone. And Ehud said, I have a message from God unto thee. And he arose out of his seat.
6590                                                                                                                                                                                                                                                                                                                                                                                                                                         And Ehud put forth his left hand, and took the dagger from his right thigh, and thrust it into his belly:
6591                                                                                                                                                                                                                                                                                                                                                                                       And the haft also went in after the blade; and the fat closed upon the blade, so that he could not draw the dagger out of his belly; and the dirt came out.
6592                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Ehud went forth through the porch, and shut the doors of the parlor upon him, and locked them.
6593                                                                                                                                                                                                                                                                                                                                                                       When he was gone out, his servants came; and when they saw that, behold, the doors of the parlor were locked, they said, Surely he covereth his feet in his summer chamber.
6594                                                                                                                                                                                                                                                                                                                                               And they tarried till they were ashamed: and, behold, he opened not the doors of the parlor; therefore they took a key, and opened them: and, behold, their lord was fallen down dead on the earth.
6595                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Ehud escaped while they tarried, and passed beyond the quarries, and escaped unto Seirath.
6596                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when he was come, that he blew a trumpet in the mountain of Ephraim, and the children of Israel went down with him from the mount, and he before them.
6597                                                                                                                                                                                                                                                                                                                        And he said unto them, Follow after me: for the LORD hath delivered your enemies the Moabites into your hand. And they went down after him, and took the fords of Jordan toward Moab, and suffered not a man to pass over.
6598                                                                                                                                                                                                                                                                                                                                                                                                                          And they slew of Moab at that time about ten thousand men, all lusty, and all men of valor; and there escaped not a man.
6599                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Moab was subdued that day under the hand of Israel. And the land had rest fourscore years.
6600                                                                                                                                                                                                                                                                                                                                                                                                          And after him was Shamgar the son of Anath, which slew of the Philistines six hundred men with an ox goad: and he also delivered Israel.
6601                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the children of Israel again did evil in the sight of the LORD, when Ehud was dead.
6602                                                                                                                                                                                                                                                                                                                                                                              And the LORD sold them into the hand of Jabin king of Canaan, that reigned in Hazor; the captain of whose host was Sisera, which dwelt in Harosheth of the Gentiles.
6603                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel cried unto the LORD: for he had nine hundred chariots of iron; and twenty years he mightily oppressed the children of Israel.
6604                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Deborah, a prophetess, the wife of Lapidoth, she judged Israel at that time.
6605                                                                                                                                                                                                                                                                                                                                                                                                   And she dwelt under the palm tree of Deborah between Ramah and Bethel in mount Ephraim: and the children of Israel came up to her for judgment.
6606                                                                                                                                                                                                                                                                     And she sent and called Barak the son of Abinoam out of Kedeshnaphtali, and said unto him, Hath not the LORD God of Israel commanded, saying, Go and draw toward mount Tabor, and take with thee ten thousand men of the children of Naphtali and of the children of Zebulun?
6607                                                                                                                                                                                                                                                                                                                                                                                   And I will draw unto thee to the river Kishon Sisera, the captain of Jabin's army, with his chariots and his multitude; and I will deliver him into thine hand.
6608                                                                                                                                                                                                                                                                                                                                                                                                                            And Barak said unto her, If thou wilt go with me, then I will go: but if thou wilt not go with me, then I will not go.
6609                                                                                                                                                                                                                                                                                                                   And she said, I will surely go with thee: notwithstanding the journey that thou takest shall not be for thine honor; for the LORD shall sell Sisera into the hand of a woman. And Deborah arose, and went with Barak to Kedesh.
6610                                                                                                                                                                                                                                                                                                                                                                                                                  And Barak called Zebulun and Naphtali to Kedesh; and he went up with ten thousand men at his feet: and Deborah went up with him.
6611                                                                                                                                                                                                                                                                                                                                                    Now Heber the Kenite, which was of the children of Hobab the father in law of Moses, had severed himself from the Kenites, and pitched his tent unto the plain of Zaanaim, which is by Kedesh.
6612                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they showed Sisera that Barak the son of Abinoam was gone up to mount Tabor.
6613                                                                                                                                                                                                                                                                                                                                                                And Sisera gathered together all his chariots, even nine hundred chariots of iron, and all the people that were with him, from Harosheth of the Gentiles unto the river of Kishon.
6614                                                                                                                                                                                                                                                                                                                          And Deborah said unto Barak, Up; for this is the day in which the LORD hath delivered Sisera into thine hand: is not the LORD gone out before thee? So Barak went down from mount Tabor, and ten thousand men after him.
6615                                                                                                                                                                                                                                                                                                                                                         And the LORD discomfited Sisera, and all his chariots, and all his host, with the edge of the sword before Barak; so that Sisera lighted down off his chariot, and fled away on his feet.
6616                                                                                                                                                                                                                                                                                                                                                               But Barak pursued after the chariots, and after the host, unto Harosheth of the Gentiles: and all the host of Sisera fell upon the edge of the sword; and there was not a man left.
6617                                                                                                                                                                                                                                                                                                                                                                     Howbeit Sisera fled away on his feet to the tent of Jael the wife of Heber the Kenite: for there was peace between Jabin the king of Hazor and the house of Heber the Kenite.
6618                                                                                                                                                                                                                                                                                                                                                                  And Jael went out to meet Sisera, and said unto him, Turn in, my lord, turn in to me; fear not. And when he had turned in unto her into the tent, she covered him with a mantle.
6619                                                                                                                                                                                                                                                                                                                                                                                      And he said unto her, Give me, I pray thee, a little water to drink; for I am thirsty. And she opened a bottle of milk, and gave him drink, and covered him.
6620                                                                                                                                                                                                                                                                                                                                                                      Again he said unto her, Stand in the door of the tent, and it shall be, when any man doth come and inquire of thee, and say, Is there any man here? that thou shalt say, No.
6621                                                                                                                                                                                                                                                                                                                     Then Jael Heber's wife took a nail of the tent, and took an hammer in her hand, and went softly unto him, and smote the nail into his temples, and fastened it into the ground: for he was fast asleep and weary. So he died.
6622                                                                                                                                                                                                                                                                                                               And, behold, as Barak pursued Sisera, Jael came out to meet him, and said unto him, Come, and I will show thee the man whom thou seekest. And when he came into her tent, behold, Sisera lay dead, and the nail was in his temples.
6623                                                                                                                                                                                                                                                                                                                                                                                                                                                                So God subdued on that day Jabin the king of Canaan before the children of Israel.
6624                                                                                                                                                                                                                                                                                                                                                                                                  And the hand of the children of Israel prospered, and prevailed against Jabin the king of Canaan, until they had destroyed Jabin king of Canaan.
6625                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then sang Deborah and Barak the son of Abinoam on that day, saying,
6626                                                                                                                                                                                                                                                                                                                                                                                                                                                      Praise ye the LORD for the avenging of Israel, when the people willingly offered themselves.
6627                                                                                                                                                                                                                                                                                                                                                                                                                       Hear, O ye kings; give ear, O ye princes; I, even I, will sing unto the LORD; I will sing praise to the LORD God of Israel.
6628                                                                                                                                                                                                                                                                                                                                                                                    LORD, when thou wentest out of Seir, when thou marchedst out of the field of Edom, the earth trembled, and the heavens dropped, the clouds also dropped water.
6629                                                                                                                                                                                                                                                                                                                                                                                                                                                    The mountains melted from before the LORD, even that Sinai from before the LORD God of Israel.
6630                                                                                                                                                                                                                                                                                                                                                                                                             In the days of Shamgar the son of Anath, in the days of Jael, the highways were unoccupied, and the travellers walked through byways.
6631                                                                                                                                                                                                                                                                                                                                                                                                                       The inhabitants of the villages ceased, they ceased in Israel, until that I Deborah arose, that I arose a mother in Israel.
6632                                                                                                                                                                                                                                                                                                                                                                                                                                  They chose new gods; then was war in the gates: was there a shield or spear seen among forty thousand in Israel?
6633                                                                                                                                                                                                                                                                                                                                                                                                                                My heart is toward the governors of Israel, that offered themselves willingly among the people. Bless ye the LORD.
6634                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak, ye that ride on white asses, ye that sit in judgment, and walk by the way.
6635                                                                                                                                                                                                                                                                     They that are delivered from the noise of archers in the places of drawing water, there shall they rehearse the righteous acts of the LORD, even the righteous acts toward the inhabitants of his villages in Israel: then shall the people of the LORD go down to the gates.
6636                                                                                                                                                                                                                                                                                                                                                                                                                             Awake, awake, Deborah: awake, awake, utter a song: arise, Barak, and lead thy captivity captive, thou son of Abinoam.
6637                                                                                                                                                                                                                                                                                                                                                                                                                   Then he made him that remaineth have dominion over the nobles among the people: the LORD made me have dominion over the mighty.
6638                                                                                                                                                                                                                                                                                                                                                     Out of Ephraim was there a root of them against Amalek; after thee, Benjamin, among thy people; out of Machir came down governors, and out of Zebulun they that handle the pen of the writer.
6639                                                                                                                                                                                                                                                                                                                                                                And the princes of Issachar were with Deborah; even Issachar, and also Barak: he was sent on foot into the valley. For the divisions of Reuben there were great thoughts of heart.
6640                                                                                                                                                                                                                                                                                                                                                                                                     Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart.
6641                                                                                                                                                                                                                                                                                                                                                                                                                         Gilead abode beyond Jordan: and why did Dan remain in ships? Asher continued on the sea shore, and abode in his breaches.
6642                                                                                                                                                                                                                                                                                                                                                                                                                                     Zebulun and Naphtali were a people that jeoparded their lives unto the death in the high places of the field.
6643                                                                                                                                                                                                                                                                                                                                                                                                                       The kings came and fought, then fought the kings of Canaan in Taanach by the waters of Megiddo; they took no gain of money.
6644                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They fought from heaven; the stars in their courses fought against Sisera.
6645                                                                                                                                                                                                                                                                                                                                                                                                                            The river of Kishon swept them away, that ancient river, the river Kishon. O my soul, thou hast trodden down strength.
6646                                                                                                                                                                                                                                                                                                                                                                                                                                                Then were the horsehoofs broken by the means of the pransings, the pransings of their mighty ones.
6647                                                                                                                                                                                                                                                                                                                                                                 Curse ye Meroz, said the angel of the LORD, curse ye bitterly the inhabitants thereof; because they came not to the help of the LORD, to the help of the LORD against the mighty.
6648                                                                                                                                                                                                                                                                                                                                                                                                                                     Blessed above women shall Jael the wife of Heber the Kenite be, blessed shall she be above women in the tent.
6649                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He asked water, and she gave him milk; she brought forth butter in a lordly dish.
6650                                                                                                                                                                                                                                                                                                                                                    She put her hand to the nail, and her right hand to the workmen's hammer; and with the hammer she smote Sisera, she smote off his head, when she had pierced and stricken through his temples.
6651                                                                                                                                                                                                                                                                                                                                                                                                                               At her feet he bowed, he fell, he lay down: at her feet he bowed, he fell: where he bowed, there he fell down dead.
6652                                                                                                                                                                                                                                                                                                                                                                                           The mother of Sisera looked out at a window, and cried through the lattice, Why is his chariot so long in coming? why tarry the wheels of his chariots?
6653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Her wise ladies answered her, yea, she returned answer to herself,
6654                                                                                                                                                                                                                                                                                         Have they not sped? have they not divided the prey; to every man a damsel or two; to Sisera a prey of divers colors, a prey of divers colors of needlework, of divers colors of needlework on both sides, meet for the necks of them that take the spoil?
6655                                                                                                                                                                                                                                                                                                                                                                                            So let all thine enemies perish, O LORD: but let them that love him be as the sun when he goeth forth in his might. And the land had rest forty years.
6656                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel did evil in the sight of the LORD: and the LORD delivered them into the hand of Midian seven years.
6657                                                                                                                                                                                                                                                                                                                                                                 And the hand of Midian prevailed against Israel: and because of the Midianites the children of Israel made them the dens which are in the mountains, and caves, and strong holds.
6658                                                                                                                                                                                                                                                                                                                                                                                               And so it was, when Israel had sown, that the Midianites came up, and the Amalekites, and the children of the east, even they came up against them;
6659                                                                                                                                                                                                                                                                                                                                                                             And they encamped against them, and destroyed the increase of the earth, till thou come unto Gaza, and left no sustenance for Israel, neither sheep, nor ox, nor ass.
6660                                                                                                                                                                                                                                                                                                                                                For they came up with their cattle and their tents, and they came as grasshoppers for multitude; for both they and their camels were without number: and they entered into the land to destroy it.
6661                                                                                                                                                                                                                                                                                                                                                                                                                                    And Israel was greatly impoverished because of the Midianites; and the children of Israel cried unto the LORD.
6662                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when the children of Israel cried unto the LORD because of the Midianites,
6663                                                                                                                                                                                                                                                                                                                                                That the LORD sent a prophet unto the children of Israel, which said unto them, Thus saith the LORD God of Israel, I brought you up from Egypt, and brought you forth out of the house of bondage;
6664                                                                                                                                                                                                                                                                                                                                                                                 And I delivered you out of the hand of the Egyptians, and out of the hand of all that oppressed you, and drave them out from before you, and gave you their land;
6665                                                                                                                                                                                                                                                                                                                                                                                                          And I said unto you, I am the LORD your God; fear not the gods of the Amorites, in whose land ye dwell: but ye have not obeyed my voice.
6666                                                                                                                                                                                                                                                                                                                                       And there came an angel of the LORD, and sat under an oak which was in Ophrah, that pertained unto Joash the Abiezrite: and his son Gideon threshed wheat by the winepress, to hide it from the Midianites.
6667                                                                                                                                                                                                                                                                                                                                                                                                                                  And the angel of the LORD appeared unto him, and said unto him, The LORD is with thee, thou mighty man of valor.
6668                                                                                                                                                                                                                                                And Gideon said unto him, Oh my Lord, if the LORD be with us, why then is all this befallen us? and where be all his miracles which our fathers told us of, saying, Did not the LORD bring us up from Egypt? but now the LORD hath forsaken us, and delivered us into the hands of the Midianites.
6669                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD looked upon him, and said, Go in this thy might, and thou shalt save Israel from the hand of the Midianites: have not I sent thee?
6670                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto him, Oh my Lord, wherewith shall I save Israel? behold, my family is poor in Manasseh, and I am the least in my father's house.
6671                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto him, Surely I will be with thee, and thou shalt smite the Midianites as one man.
6672                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto him, If now I have found grace in thy sight, then show me a sign that thou talkest with me.
6673                                                                                                                                                                                                                                                                                                                                                                                       Depart not hence, I pray thee, until I come unto thee, and bring forth my present, and set it before thee. And he said, I will tarry until thou come again.
6674                                                                                                                                                                                                                                                                                                                                    And Gideon went in, and made ready a kid, and unleavened cakes of an ephah of flour: the flesh he put in a basket, and he put the broth in a pot, and brought it out unto him under the oak, and presented it.
6675                                                                                                                                                                                                                                                                                                                                                                                                  And the angel of God said unto him, Take the flesh and the unleavened cakes, and lay them upon this rock, and pour out the broth. And he did so.
6676                                                                                                                                                                                                                                                                    Then the angel of the LORD put forth the end of the staff that was in his hand, and touched the flesh and the unleavened cakes; and there rose up fire out of the rock, and consumed the flesh and the unleavened cakes. Then the angel of the LORD departed out of his sight.
6677                                                                                                                                                                                                                                                                                                                                                                                             And when Gideon perceived that he was an angel of the LORD, Gideon said, Alas, O LORD God! for because I have seen an angel of the LORD face to face.
6678                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto him, Peace be unto thee; fear not: thou shalt not die.
6679                                                                                                                                                                                                                                                                                                                                                                                                                 Then Gideon built an altar there unto the LORD, and called it Jehovahshalom: unto this day it is yet in Ophrah of the Abiezrites.
6680                                                                                                                                                                                                                                                                                                        And it came to pass the same night, that the LORD said unto him, Take thy father's young bullock, even the second bullock of seven years old, and throw down the altar of Baal that thy father hath, and cut down the grove that is by it:
6681                                                                                                                                                                                                                                                                                                                                          And build an altar unto the LORD thy God upon the top of this rock, in the ordered place, and take the second bullock, and offer a burnt sacrifice with the wood of the grove which thou shalt cut down.
6682                                                                                                                                                                                                                                                                                                                       Then Gideon took ten men of his servants, and did as the LORD had said unto him: and so it was, because he feared his father's household, and the men of the city, that he could not do it by day, that he did it by night.
6683                                                                                                                                                                                                                                                                                                                                    And when the men of the city arose early in the morning, behold, the altar of Baal was cast down, and the grove was cut down that was by it, and the second bullock was offered upon the altar that was built.
6684                                                                                                                                                                                                                                                                                                                                                                                                And they said one to another, Who hath done this thing? And when they inquired and asked, they said, Gideon the son of Joash hath done this thing.
6685                                                                                                                                                                                                                                                                                                                                                                 Then the men of the city said unto Joash, Bring out thy son, that he may die: because he hath cast down the altar of Baal, and because he hath cut down the grove that was by it.
6686                                                                                                                                                                                                                                                                                          And Joash said unto all that stood against him, Will ye plead for Baal? will ye save him? he that will plead for him, let him be put to death whilst it is yet morning: if he be a god, let him plead for himself, because one hath cast down his altar.
6687                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore on that day he called him Jerubbaal, saying, Let Baal plead against him, because he hath thrown down his altar.
6688                                                                                                                                                                                                                                                                                                                                                                                              Then all the Midianites and the Amalekites and the children of the east were gathered together, and went over, and pitched in the valley of Jezreel.
6689                                                                                                                                                                                                                                                                                                                                                                                                                                           But the Spirit of the LORD came upon Gideon, and he blew a trumpet; and Abiezer was gathered after him.
6690                                                                                                                                                                                                                                                                                                                                                           And he sent messengers throughout all Manasseh; who also was gathered after him: and he sent messengers unto Asher, and unto Zebulun, and unto Naphtali; and they came up to meet them.
6691                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Gideon said unto God, If thou wilt save Israel by mine hand, as thou hast said,
6692                                                                                                                                                                                                                                                                                                                                    Behold, I will put a fleece of wool in the floor; and if the dew be on the fleece only, and it be dry upon all the earth beside, then shall I know that thou wilt save Israel by mine hand, as thou hast said.
6693                                                                                                                                                                                                                                                                                                                                                                                                   And it was so: for he rose up early on the morrow, and thrust the fleece together, and wringed the dew out of the fleece, a bowl full of water.
6694                                                                                                                                                                                                                                                                                                      And Gideon said unto God, Let not thine anger be hot against me, and I will speak but this once: let me prove, I pray thee, but this once with the fleece; let it now be dry only upon the fleece, and upon all the ground let there be dew.
6695                                                                                                                                                                                                                                                                                                                                                                                                                                              And God did so that night: for it was dry upon the fleece only, and there was dew on all the ground.
6696                                                                                                                                                                                                                                                                                                                Then Jerubbaal, who is Gideon, and all the people that were with him, rose up early, and pitched beside the well of Harod: so that the host of the Midianites were on the north side of them, by the hill of Moreh, in the valley.
6697                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Gideon, The people that are with thee are too many for me to give the Midianites into their hands, lest Israel vaunt themselves against me, saying, Mine own hand hath saved me.
6698                                                                                                                                                                                                                                                                                                   Now therefore go to, proclaim in the ears of the people, saying, Whosoever is fearful and afraid, let him return and depart early from mount Gilead. And there returned of the people twenty and two thousand; and there remained ten thousand.
6699                                                                                                                                                                                                                       And the LORD said unto Gideon, The people are yet too many; bring them down unto the water, and I will try them for thee there: and it shall be, that of whom I say unto thee, This shall go with thee, the same shall go with thee; and of whomsoever I say unto thee, This shall not go with thee, the same shall not go.
6700                                                                                                                                                                                                                                                                                                   So he brought down the people unto the water: and the LORD said unto Gideon, Every one that lappeth of the water with his tongue, as a dog lappeth, him shalt thou set by himself; likewise every one that boweth down upon his knees to drink.
6701                                                                                                                                                                                                                                                                                                                                                                         And the number of them that lapped, putting their hand to their mouth, were three hundred men: but all the rest of the people bowed down upon their knees to drink water.
6702                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Gideon, By the three hundred men that lapped will I save you, and deliver the Midianites into thine hand: and let all the other people go every man unto his place.
6703                                                                                                                                                                                                                                                                                                                            So the people took victuals in their hand, and their trumpets: and he sent all the rest of Israel every man unto his tent, and retained those three hundred men: and the host of Midian was beneath him in the valley.
6704                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass the same night, that the LORD said unto him, Arise, get thee down unto the host; for I have delivered it into thine hand.
6705                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if thou fear to go down, go thou with Phurah thy servant down to the host:
6706                                                                                                                                                                                                                                                                                                                                   And thou shalt hear what they say; and afterward shall thine hands be strengthened to go down unto the host. Then went he down with Phurah his servant unto the outside of the armed men that were in the host.
6707                                                                                                                                                                                                                                                                                                                                  And the Midianites and the Amalekites and all the children of the east lay along in the valley like grasshoppers for multitude; and their camels were without number, as the sand by the sea side for multitude.
6708                                                                                                                                                                                                                                                           And when Gideon was come, behold, there was a man that told a dream unto his fellow, and said, Behold, I dreamed a dream, and, lo, a cake of barley bread tumbled into the host of Midian, and came unto a tent, and smote it that it fell, and overturned it, that the tent lay along.
6709                                                                                                                                                                                                                                                                                                                                                                 And his fellow answered and said, This is nothing else save the sword of Gideon the son of Joash, a man of Israel: for into his hand hath God delivered Midian, and all the host.
6710                                                                                                                                                                                                                                                                                                              And it was so, when Gideon heard the telling of the dream, and the interpretation thereof, that he worshipped, and returned into the host of Israel, and said, Arise; for the LORD hath delivered into your hand the host of Midian.
6711                                                                                                                                                                                                                                                                                                                                                                                          And he divided the three hundred men into three companies, and he put a trumpet in every man's hand, with empty pitchers, and lamps within the pitchers.
6712                                                                                                                                                                                                                                                                                                                                                                                               And he said unto them, Look on me, and do likewise: and, behold, when I come to the outside of the camp, it shall be that, as I do, so shall ye do.
6713                                                                                                                                                                                                                                                                                                                                                                              When I blow with a trumpet, I and all that are with me, then blow ye the trumpets also on every side of all the camp, and say, The sword of the LORD, and of Gideon.
6714                                                                                                                                                                                                                                                                                                     So Gideon, and the hundred men that were with him, came unto the outside of the camp in the beginning of the middle watch; and they had but newly set the watch: and they blew the trumpets, and brake the pitchers that were in their hands.
6715                                                                                                                                                                                                                                                                                                                            And the three companies blew the trumpets, and brake the pitchers, and held the lamps in their left hands, and the trumpets in their right hands to blow withal: and they cried, The sword of the LORD, and of Gideon.
6716                                                                                                                                                                                                                                                                                                                                                                                                                                            And they stood every man in his place round about the camp; and all the host ran, and cried, and fled.
6717                                                                                                                                                                                                                                                                                                                       And the three hundred blew the trumpets, and the LORD set every man's sword against his fellow, even throughout all the host: and the host fled to Bethshittah in Zererath, and to the border of Abelmeholah, unto Tabbath.
6718                                                                                                                                                                                                                                                                                                                                                                                                  And the men of Israel gathered themselves together out of Naphtali, and out of Asher, and out of all Manasseh, and pursued after the Midianites.
6719                                                                                                                                                                                                                                                                            And Gideon sent messengers throughout all mount Ephraim, saying, come down against the Midianites, and take before them the waters unto Bethbarah and Jordan. Then all the men of Ephraim gathered themselves together, and took the waters unto Bethbarah and Jordan.
6720                                                                                                                                                                                                                                                                                                    And they took two princes of the Midianites, Oreb and Zeeb; and they slew Oreb upon the rock Oreb, and Zeeb they slew at the winepress of Zeeb, and pursued Midian, and brought the heads of Oreb and Zeeb to Gideon on the other side Jordan.
6721                                                                                                                                                                                                                                                                                                                                                               And the men of Ephraim said unto him, Why hast thou served us thus, that thou calledst us not, when thou wentest to fight with the Midianites? And they did chide with him sharply.
6722                                                                                                                                                                                                                                                                                                                                                                                                And he said unto them, What have I done now in comparison of you? Is not the gleaning of the grapes of Ephraim better than the vintage of Abiezer?
6723                                                                                                                                                                                                                                                                                                                                                           God hath delivered into your hands the princes of Midian, Oreb and Zeeb: and what was I able to do in comparison of you? Then their anger was abated toward him, when he had said that.
6724                                                                                                                                                                                                                                                                                                                                                                                                                           And Gideon came to Jordan, and passed over, he, and the three hundred men that were with him, faint, yet pursuing them.
6725                                                                                                                                                                                                                                                                                                                                                            And he said unto the men of Succoth, Give, I pray you, loaves of bread unto the people that follow me; for they be faint, and I am pursuing after Zebah and Zalmunna, kings of Midian.
6726                                                                                                                                                                                                                                                                                                                                                                                                                And the princes of Succoth said, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thine army?
6727                                                                                                                                                                                                                                                                                                                                                                         And Gideon said, Therefore when the LORD hath delivered Zebah and Zalmunna into mine hand, then I will tear your flesh with the thorns of the wilderness and with briers.
6728                                                                                                                                                                                                                                                                                                                                                                                                         And he went up thence to Penuel, and spake unto them likewise: and the men of Penuel answered him as the men of Succoth had answered him.
6729                                                                                                                                                                                                                                                                                                                                                                                                                                       And he spake also unto the men of Penuel, saying, When I come again in peace, I will break down this tower.
6730                                                                                                                                                                                                                                                                                                                 Now Zebah and Zalmunna were in Karkor, and their hosts with them, about fifteen thousand men, all that were left of all the hosts of the children of the east: for there fell an hundred and twenty thousand men that drew sword.
6731                                                                                                                                                                                                                                                                                                                                                                                                         And Gideon went up by the way of them that dwelt in tents on the east of Nobah and Jogbehah, and smote the host; for the host was secure.
6732                                                                                                                                                                                                                                                                                                                                                                                                      And when Zebah and Zalmunna fled, he pursued after them, and took the two kings of Midian, Zebah and Zalmunna, and discomfited all the host.
6733                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Gideon the son of Joash returned from battle before the sun was up,
6734                                                                                                                                                                                                                                                                                                                                                                   And caught a young man of the men of Succoth, and inquired of him: and he described unto him the princes of Succoth, and the elders thereof, even threescore and seventeen men.
6735                                                                                                                                                                                                                                                                                                                      And he came unto the men of Succoth, and said, Behold Zebah and Zalmunna, with whom ye did upbraid me, saying, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thy men that are weary?
6736                                                                                                                                                                                                                                                                                                                                                                                                                          And he took the elders of the city, and thorns of the wilderness and briers, and with them he taught the men of Succoth.
6737                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he beat down the tower of Penuel, and slew the men of the city.
6738                                                                                                                                                                                                                                                                                                                                                                Then said he unto Zebah and Zalmunna, What manner of men were they whom ye slew at Tabor? And they answered, As thou art, so were they; each one resembled the children of a king.
6739                                                                                                                                                                                                                                                                                                                                                                                                             And he said, They were my brethren, even the sons of my mother: as the LORD liveth, if ye had saved them alive, I would not slay you.
6740                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto Jether his firstborn, Up, and slay them. But the youth drew not his sword: for he feared, because he was yet a youth.
6741                                                                                                                                                                                                                                                                                                                                    Then Zebah and Zalmunna said, Rise thou, and fall upon us: for as the man is, so is his strength. And Gideon arose, and slew Zebah and Zalmunna, and took away the ornaments that were on their camels' necks.
6742                                                                                                                                                                                                                                                                                                                                                                                   Then the men of Israel said unto Gideon, Rule thou over us, both thou, and thy son, and thy son's son also: for thou hast delivered us from the hand of Midian.
6743                                                                                                                                                                                                                                                                                                                                                                                                                            And Gideon said unto them, I will not rule over you, neither shall my son rule over you: the LORD shall rule over you.
6744                                                                                                                                                                                                                                                                                                                                                              And Gideon said unto them, I would desire a request of you, that ye would give me every man the earrings of his prey. (For they had golden earrings, because they were Ishmaelites.)
6745                                                                                                                                                                                                                                                                                                                                                                                                               And they answered, We will willingly give them. And they spread a garment, and did cast therein every man the earrings of his prey.
6746                                                                                                                                                                                                                                                                                           And the weight of the golden earrings that he requested was a thousand and seven hundred shekels of gold; beside ornaments, and collars, and purple raiment that was on the kings of Midian, and beside the chains that were about their camels' necks.
6747                                                                                                                                                                                                                                                                                                                                                               And Gideon made an ephod thereof, and put it in his city, even in Ophrah: and all Israel went thither a whoring after it: which thing became a snare unto Gideon, and to his house.
6748                                                                                                                                                                                                                                                                                                                                                                            Thus was Midian subdued before the children of Israel, so that they lifted up their heads no more. And the country was in quietness forty years in the days of Gideon.
6749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jerubbaal the son of Joash went and dwelt in his own house.
6750                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Gideon had threescore and ten sons of his body begotten: for he had many wives.
6751                                                                                                                                                                                                                                                                                                                                                                                                                                                   And his concubine that was in Shechem, she also bare him a son, whose name he called Abimelech.
6752                                                                                                                                                                                                                                                                                                                                                                                                             And Gideon the son of Joash died in a good old age, and was buried in the sepulchre of Joash his father, in Ophrah of the Abiezrites.
6753                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, as soon as Gideon was dead, that the children of Israel turned again, and went a whoring after Baalim, and made Baalberith their god.
6754                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel remembered not the LORD their God, who had delivered them out of the hands of all their enemies on every side:
6755                                                                                                                                                                                                                                                                                                                                                                                                            Neither showed they kindness to the house of Jerubbaal, namely, Gideon, according to all the goodness which he had showed unto Israel.
6756                                                                                                                                                                                                                                                                                                                                                                       And Abimelech the son of Jerubbaal went to Shechem unto his mother's brethren, and communed with them, and with all the family of the house of his mother's father, saying,
6757                                                                                                                                                                                                                                                                                   Speak, I pray you, in the ears of all the men of Shechem, Whether is better for you, either that all the sons of Jerubbaal, which are threescore and ten persons, reign over you, or that one reign over you? remember also that I am your bone and your flesh.
6758                                                                                                                                                                                                                                                                                                                                                                    And his mother's brethren spake of him in the ears of all the men of Shechem all these words: and their hearts inclined to follow Abimelech; for they said, He is our brother.
6759                                                                                                                                                                                                                                                                                                                                                                                       And they gave him threescore and ten pieces of silver out of the house of Baalberith, wherewith Abimelech hired vain and light persons, which followed him.
6760                                                                                                                                                                                                                                                                                                              And he went unto his father's house at Ophrah, and slew his brethren the sons of Jerubbaal, being threescore and ten persons, upon one stone: notwithstanding yet Jotham the youngest son of Jerubbaal was left; for he hid himself.
6761                                                                                                                                                                                                                                                                                                                                                                                      And all the men of Shechem gathered together, and all the house of Millo, and went, and made Abimelech king, by the plain of the pillar that was in Shechem.
6762                                                                                                                                                                                                                                                                                                                                        And when they told it to Jotham, he went and stood in the top of mount Gerizim, and lifted up his voice, and cried, and said unto them, Hearken unto me, ye men of Shechem, that God may hearken unto you.
6763                                                                                                                                                                                                                                                                                                                                                                                                                                 The trees went forth on a time to anoint a king over them; and they said unto the olive tree, Reign thou over us.
6764                                                                                                                                                                                                                                                                                                                                                                                                       But the olive tree said unto them, Should I leave my fatness, wherewith by me they honor God and man, and go to be promoted over the trees?
6765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the trees said to the fig tree, Come thou, and reign over us.
6766                                                                                                                                                                                                                                                                                                                                                                                                                          But the fig tree said unto them, Should I forsake my sweetness, and my good fruit, and go to be promoted over the trees?
6767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then said the trees unto the vine, Come thou, and reign over us.
6768                                                                                                                                                                                                                                                                                                                                                                                                                            And the vine said unto them, Should I leave my wine, which cheereth God and man, and go to be promoted over the trees?
6769                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then said all the trees unto the bramble, Come thou, and reign over us.
6770                                                                                                                                                                                                                                                                                                                                           And the bramble said unto the trees, If in truth ye anoint me king over you, then come and put your trust in my shadow: and if not, let fire come out of the bramble, and devour the cedars of Lebanon.
6771                                                                                                                                                                                                                                                                                                                                  Now therefore, if ye have done truly and sincerely, in that ye have made Abimelech king, and if ye have dealt well with Jerubbaal and his house, and have done unto him according to the deserving of his hands;
6772                                                                                                                                                                                                                                                                                                                                                                                                                                          (For my father fought for you, and adventured his life far, and delivered you out of the hand of Midian:
6773                                                                                                                                                                                                                                                                                                      And ye are risen up against my father's house this day, and have slain his sons, threescore and ten persons, upon one stone, and have made Abimelech, the son of his maidservant, king over the men of Shechem, because he is your brother;)
6774                                                                                                                                                                                                                                                                                                                                                                                              If ye then have dealt truly and sincerely with Jerubbaal and with his house this day, then rejoice ye in Abimelech, and let him also rejoice in you:
6775                                                                                                                                                                                                                                                                                                                                            But if not, let fire come out from Abimelech, and devour the men of Shechem, and the house of Millo; and let fire come out from the men of Shechem, and from the house of Millo, and devour Abimelech.
6776                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jotham ran away, and fled, and went to Beer, and dwelt there, for fear of Abimelech his brother.
6777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When Abimelech had reigned three years over Israel,
6778                                                                                                                                                                                                                                                                                                                                                                                                                 Then God sent an evil spirit between Abimelech and the men of Shechem; and the men of Shechem dealt treacherously with Abimelech:
6779                                                                                                                                                                                                                                                                                                                 That the cruelty done to the threescore and ten sons of Jerubbaal might come, and their blood be laid upon Abimelech their brother, which slew them; and upon the men of Shechem, which aided him in the killing of his brethren.
6780                                                                                                                                                                                                                                                                                                                                                                                    And the men of Shechem set liers in wait for him in the top of the mountains, and they robbed all that came along that way by them: and it was told Abimelech.
6781                                                                                                                                                                                                                                                                                                                                                                                                                    And Gaal the son of Ebed came with his brethren, and went over to Shechem: and the men of Shechem put their confidence in him.
6782                                                                                                                                                                                                                                                                                                                                                         And they went out into the fields, and gathered their vineyards, and trode the grapes, and made merry, and went into the house of their god, and did eat and drink, and cursed Abimelech.
6783                                                                                                                                                                                                                                                                                                                  And Gaal the son of Ebed said, Who is Abimelech, and who is Shechem, that we should serve him? is not he the son of Jerubbaal? and Zebul his officer? serve the men of Hamor the father of Shechem: for why should we serve him?
6784                                                                                                                                                                                                                                                                                                                                                                                                      And would to God this people were under my hand! then would I remove Abimelech. And he said to Abimelech, Increase thine army, and come out.
6785                                                                                                                                                                                                                                                                                                                                                                                                                                              And when Zebul the ruler of the city heard the words of Gaal the son of Ebed, his anger was kindled.
6786                                                                                                                                                                                                                                                                                                                                                                         And he sent messengers unto Abimelech privily, saying, Behold, Gaal the son of Ebed and his brethren be come to Shechem; and, behold, they fortify the city against thee.
6787                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now therefore up by night, thou and the people that is with thee, and lie in wait in the field:
6788                                                                                                                                                                                                                                                                                                And it shall be, that in the morning, as soon as the sun is up, thou shalt rise early, and set upon the city: and, behold, when he and the people that is with him come out against thee, then mayest thou do to them as thou shalt find occasion.
6789                                                                                                                                                                                                                                                                                                                                                                                                                     And Abimelech rose up, and all the people that were with him, by night, and they laid wait against Shechem in four companies.
6790                                                                                                                                                                                                                                                                                                                                                                               And Gaal the son of Ebed went out, and stood in the entering of the gate of the city: and Abimelech rose up, and the people that were with him, from lying in wait.
6791                                                                                                                                                                                                                                                                                                                                                And when Gaal saw the people, he said to Zebul, Behold, there come people down from the top of the mountains. And Zebul said unto him, Thou seest the shadow of the mountains as if they were men.
6792                                                                                                                                                                                                                                                                                                                                                                                                    And Gaal spake again, and said, See there come people down by the middle of the land, and another company come along by the plain of Meonenim.
6793                                                                                                                                                                                                                                                                                                                                     Then said Zebul unto him, Where is now thy mouth, wherewith thou saidst, Who is Abimelech, that we should serve him? is not this the people that thou hast despised? go out, I pray now, and fight with them.
6794                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Gaal went out before the men of Shechem, and fought with Abimelech.
6795                                                                                                                                                                                                                                                                                                                                                                                                                       And Abimelech chased him, and he fled before him, and many were overthrown and wounded, even unto the entering of the gate.
6796                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abimelech dwelt at Arumah: and Zebul thrust out Gaal and his brethren, that they should not dwell in Shechem.
6797                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass on the morrow, that the people went out into the field; and they told Abimelech.
6798                                                                                                                                                                                                                                                                                                                                      And he took the people, and divided them into three companies, and laid wait in the field, and looked, and, behold, the people were come forth out of the city; and he rose up against them, and smote them.
6799                                                                                                                                                                                                                                                                                                                                  And Abimelech, and the company that was with him, rushed forward, and stood in the entering of the gate of the city: and the two other companies ran upon all the people that were in the fields, and slew them.
6800                                                                                                                                                                                                                                                                                                                                                                                   And Abimelech fought against the city all that day; and he took the city, and slew the people that was therein, and beat down the city, and sowed it with salt.
6801                                                                                                                                                                                                                                                                                                                                                                                                                                And when all the men of the tower of Shechem heard that, they entered into an hold of the house of the god Berith.
6802                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it was told Abimelech, that all the men of the tower of Shechem were gathered together.
6803                                                                                                                                                                                                                                And Abimelech gat him up to mount Zalmon, he and all the people that were with him; and Abimelech took an axe in his hand, and cut down a bough from the trees, and took it, and laid it on his shoulder, and said unto the people that were with him, What ye have seen me do, make haste, and do as I have done.
6804                                                                                                                                                                                                                                                                                                            And all the people likewise cut down every man his bough, and followed Abimelech, and put them to the hold, and set the hold on fire upon them; so that all the men of the tower of Shechem died also, about a thousand men and women.
6805                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then went Abimelech to Thebez, and encamped against Thebez, and took it.
6806                                                                                                                                                                                                                                                                                                                                                                     But there was a strong tower within the city, and thither fled all the men and women, and all they of the city, and shut it to them, and gat them up to the top of the tower.
6807                                                                                                                                                                                                                                                                                                                                                                                                                          And Abimelech came unto the tower, and fought against it, and went hard unto the door of the tower to burn it with fire.
6808                                                                                                                                                                                                                                                                                                                                                                                                                                                And a certain woman cast a piece of a millstone upon Abimelech's head, and all to brake his skull.
6809                                                                                                                                                                                                                                                                                                                                          Then he called hastily unto the young man his armourbearer, and said unto him, Draw thy sword, and slay me, that men say not of me, A women slew him. And his young man thrust him through, and he died.
6810                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when the men of Israel saw that Abimelech was dead, they departed every man unto his place.
6811                                                                                                                                                                                                                                                                                                                                                                                                                                     Thus God rendered the wickedness of Abimelech, which he did unto his father, in slaying his seventy brethren:
6812                                                                                                                                                                                                                                                                                                                                                                                                              And all the evil of the men of Shechem did God render upon their heads: and upon them came the curse of Jotham the son of Jerubbaal.
6813                                                                                                                                                                                                                                                                                                                                                                                               And after Abimelech there arose to defend Israel Tola the son of Puah, the son of Dodo, a man of Issachar; and he dwelt in Shamir in mount Ephraim.
6814                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he judged Israel twenty and three years, and died, and was buried in Shamir.
6815                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And after him arose Jair, a Gileadite, and judged Israel twenty and two years.
6816                                                                                                                                                                                                                                                                                                                                                                                     And he had thirty sons that rode on thirty ass colts, and they had thirty cities, which are called Havothjair unto this day, which are in the land of Gilead.
6817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jair died, and was buried in Camon.
6818                                                                                                                                                                                                                                                       And the children of Israel did evil again in the sight of the LORD, and served Baalim, and Ashtaroth, and the gods of Syria, and the gods of Zidon, and the gods of Moab, and the gods of the children of Ammon, and the gods of the Philistines, and forsook the LORD, and served not him.
6819                                                                                                                                                                                                                                                                                                                                                                                                And the anger of the LORD was hot against Israel, and he sold them into the hands of the Philistines, and into the hands of the children of Ammon.
6820                                                                                                                                                                                                                                                                                                                                                     And that year they vexed and oppressed the children of Israel: eighteen years, all the children of Israel that were on the other side Jordan in the land of the Amorites, which is in Gilead.
6821                                                                                                                                                                                                                                                                                                                                                                        Moreover the children of Ammon passed over Jordan to fight also against Judah, and against Benjamin, and against the house of Ephraim; so that Israel was sore distressed.
6822                                                                                                                                                                                                                                                                                                                                                                                               And the children of Israel cried unto the LORD, saying, We have sinned against thee, both because we have forsaken our God, and also served Baalim.
6823                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto the children of Israel, Did not I deliver you from the Egyptians, and from the Amorites, from the children of Ammon, and from the Philistines?
6824                                                                                                                                                                                                                                                                                                                                                                                                             The Zidonians also, and the Amalekites, and the Maonites, did oppress you; and ye cried to me, and I delivered you out of their hand.
6825                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yet ye have forsaken me, and served other gods: wherefore I will deliver you no more.
6826                                                                                                                                                                                                                                                                                                                                                                                                                                              Go and cry unto the gods which ye have chosen; let them deliver you in the time of your tribulation.
6827                                                                                                                                                                                                                                                                                                                                                                                        And the children of Israel said unto the LORD, We have sinned: do thou unto us whatsoever seemeth good unto thee; deliver us only, we pray thee, this day.
6828                                                                                                                                                                                                                                                                                                                                                                                                                       And they put away the strange gods from among them, and served the LORD: and his soul was grieved for the misery of Israel.
6829                                                                                                                                                                                                                                                                                                                                                                                      Then the children of Ammon were gathered together, and encamped in Gilead. And the children of Israel assembled themselves together, and encamped in Mizpeh.
6830                                                                                                                                                                                                                                                                                                                                                             And the people and princes of Gilead said one to another, What man is he that will begin to fight against the children of Ammon? he shall be head over all the inhabitants of Gilead.
6831                                                                                                                                                                                                                                                                                                                                                                                                                                 Now Jephthah the Gileadite was a mighty man of valor, and he was the son of an harlot: and Gilead begat Jephthah.
6832                                                                                                                                                                                                                                                                                                                                             And Gilead's wife bare him sons; and his wife's sons grew up, and they thrust out Jephthah, and said unto him, Thou shalt not inherit in our father's house; for thou art the son of a strange woman.
6833                                                                                                                                                                                                                                                                                                                                                                                                          Then Jephthah fled from his brethren, and dwelt in the land of Tob: and there were gathered vain men to Jephthah, and went out with him.
6834                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass in process of time, that the children of Ammon made war against Israel.
6835                                                                                                                                                                                                                                                                                                                                                                                                       And it was so, that when the children of Ammon made war against Israel, the elders of Gilead went to fetch Jephthah out of the land of Tob:
6836                                                                                                                                                                                                                                                                                                                                                                                                                                              And they said unto Jephthah, Come, and be our captain, that we may fight with the children of Ammon.
6837                                                                                                                                                                                                                                                                                                                                                                                  And Jephthah said unto the elders of Gilead, Did not ye hate me, and expel me out of my father's house? and why are ye come unto me now when ye are in distress?
6838                                                                                                                                                                                                                                                                                                                                       And the elders of Gilead said unto Jephthah, Therefore we turn again to thee now, that thou mayest go with us, and fight against the children of Ammon, and be our head over all the inhabitants of Gilead.
6839                                                                                                                                                                                                                                                                                                                                                                         And Jephthah said unto the elders of Gilead, If ye bring me home again to fight against the children of Ammon, and the LORD deliver them before me, shall I be your head?
6840                                                                                                                                                                                                                                                                                                                                                                                                                              And the elders of Gilead said unto Jephthah, The LORD be witness between us, if we do not so according to thy words.
6841                                                                                                                                                                                                                                                                                                                                                                                   Then Jephthah went with the elders of Gilead, and the people made him head and captain over them: and Jephthah uttered all his words before the LORD in Mizpeh.
6842                                                                                                                                                                                                                                                                                                                                                                                     And Jephthah sent messengers unto the king of the children of Ammon, saying, What hast thou to do with me, that thou art come against me to fight in my land?
6843                                                                                                                                                                                                                                                                                                And the king of the children of Ammon answered unto the messengers of Jephthah, Because Israel took away my land, when they came up out of Egypt, from Arnon even unto Jabbok, and unto Jordan: now therefore restore those lands again peaceably.
6844                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jephthah sent messengers again unto the king of the children of Ammon:
6845                                                                                                                                                                                                                                                                                                                                                                                                                             And said unto him, Thus saith Jephthah, Israel took not away the land of Moab, nor the land of the children of Ammon:
6846                                                                                                                                                                                                                                                                                                                                                                                                                                       But when Israel came up from Egypt, and walked through the wilderness unto the Red sea, and came to Kadesh;
6847                                                                                                                                                                                                                                                                                  Then Israel sent messengers unto the king of Edom, saying, Let me, I pray thee, pass through thy land: but the king of Edom would not hearken thereto. And in like manner they sent unto the king of Moab: but he would not consent: and Israel abode in Kadesh.
6848                                                                                                                                                                                                                                                                               Then they went along through the wilderness, and compassed the land of Edom, and the land of Moab, and came by the east side of the land of Moab, and pitched on the other side of Arnon, but came not within the border of Moab: for Arnon was the border of Moab.
6849                                                                                                                                                                                                                                                                                                                                                                             And Israel sent messengers unto Sihon king of the Amorites, the king of Heshbon; and Israel said unto him, Let us pass, we pray thee, through thy land into my place.
6850                                                                                                                                                                                                                                                                                                                                                                                              But Sihon trusted not Israel to pass through his coast: but Sihon gathered all his people together, and pitched in Jahaz, and fought against Israel.
6851                                                                                                                                                                                                                                                                                                                                                    And the LORD God of Israel delivered Sihon and all his people into the hand of Israel, and they smote them: so Israel possessed all the land of the Amorites, the inhabitants of that country.
6852                                                                                                                                                                                                                                                                                                                                                                                                                         And they possessed all the coasts of the Amorites, from Arnon even unto Jabbok, and from the wilderness even unto Jordan.
6853                                                                                                                                                                                                                                                                                                                                                                                                                        So now the LORD God of Israel hath dispossessed the Amorites from before his people Israel, and shouldest thou possess it?
6854                                                                                                                                                                                                                                                                                                                                                                                     Wilt not thou possess that which Chemosh thy god giveth thee to possess? So whomsoever the LORD our God shall drive out from before us, them will we possess.
6855                                                                                                                                                                                                                                                                                                                                                                                               And now art thou any thing better than Balak the son of Zippor, king of Moab? did he ever strive against Israel, or did he ever fight against them,
6856                                                                                                                                                                                                                                                                                                                                 While Israel dwelt in Heshbon and her towns, and in Aroer and her towns, and in all the cities that be along by the coasts of Arnon, three hundred years? why therefore did ye not recover them within that time?
6857                                                                                                                                                                                                                                                                                                                                                               Wherefore I have not sinned against thee, but thou doest me wrong to war against me: the LORD the Judge be judge this day between the children of Israel and the children of Ammon.
6858                                                                                                                                                                                                                                                                                                                                                                                                                                             Howbeit the king of the children of Ammon hearkened not unto the words of Jephthah which he sent him.
6859                                                                                                                                                                                                                                                                                                                                                   Then the Spirit of the LORD came upon Jephthah, and he passed over Gilead, and Manasseh, and passed over Mizpeh of Gilead, and from Mizpeh of Gilead he passed over unto the children of Ammon.
6860                                                                                                                                                                                                                                                                                                                                                                                                                       And Jephthah vowed a vow unto the LORD, and said, If thou shalt without fail deliver the children of Ammon into mine hands,
6861                                                                                                                                                                                                                                                                                                                                   Then it shall be, that whatsoever cometh forth of the doors of my house to meet me, when I return in peace from the children of Ammon, shall surely be the LORD's, and I will offer it up for a burnt offering.
6862                                                                                                                                                                                                                                                                                                                                                                                                                             So Jephthah passed over unto the children of Ammon to fight against them; and the LORD delivered them into his hands.
6863                                                                                                                                                                                                                                                                                                                        And he smote them from Aroer, even till thou come to Minnith, even twenty cities, and unto the plain of the vineyards, with a very great slaughter. Thus the children of Ammon were subdued before the children of Israel.
6864                                                                                                                                                                                                                                                                                                                                                 And Jephthah came to Mizpeh unto his house, and, behold, his daughter came out to meet him with timbrels and with dances: and she was his only child; beside her he had neither son nor daughter.
6865                                                                                                                                                                                                                                                                                                             And it came to pass, when he saw her, that he rent his clothes, and said, Alas, my daughter! thou hast brought me very low, and thou art one of them that trouble me: for I have opened my mouth unto the LORD, and I cannot go back.
6866                                                                                                                                                                                                                                                                                             And she said unto him, My father, if thou hast opened thy mouth unto the LORD, do to me according to that which hath proceeded out of thy mouth; forasmuch as the LORD hath taken vengeance for thee of thine enemies, even of the children of Ammon.
6867                                                                                                                                                                                                                                                                                                                                                                    And she said unto her father, Let this thing be done for me: let me alone two months, that I may go up and down upon the mountains, and bewail my virginity, I and my fellows.
6868                                                                                                                                                                                                                                                                                                                                                                                                            And he said, Go. And he sent her away for two months: and she went with her companions, and bewailed her virginity upon the mountains.
6869                                                                                                                                                                                                                                                                                                                                                    And it came to pass at the end of two months, that she returned unto her father, who did with her according to his vow which he had vowed: and she knew no man. And it was a custom in Israel,
6870                                                                                                                                                                                                                                                                                                                                                                                                                                    That the daughters of Israel went yearly to lament the daughter of Jephthah the Gileadite four days in a year.
6871                                                                                                                                                                                                                                                                                        And the men of Ephraim gathered themselves together, and went northward, and said unto Jephthah, Wherefore passedst thou over to fight against the children of Ammon, and didst not call us to go with thee? we will burn thine house upon thee with fire.
6872                                                                                                                                                                                                                                                                                                                                                                                      And Jephthah said unto them, I and my people were at great strife with the children of Ammon; and when I called you, ye delivered me not out of their hands.
6873                                                                                                                                                                                                                                                                                                                 And when I saw that ye delivered me not, I put my life in my hands, and passed over against the children of Ammon, and the LORD delivered them into my hand: wherefore then are ye come up unto me this day, to fight against me?
6874                                                                                                                                                                                                                                                                                                                   Then Jephthah gathered together all the men of Gilead, and fought with Ephraim: and the men of Gilead smote Ephraim, because they said, Ye Gileadites are fugitives of Ephraim among the Ephraimites, and among the Manassites.
6875                                                                                                                                                                                                                                                                                                         And the Gileadites took the passages of Jordan before the Ephraimites: and it was so, that when those Ephraimites which were escaped said, Let me go over; that the men of Gilead said unto him, Art thou an Ephraimite? If he said, Nay;
6876                                                                                                                                                                                                                                                                                              Then said they unto him, Say now Shibboleth: and he said Sibboleth: for he could not frame to pronounce it right. Then they took him, and slew him at the passages of Jordan: and there fell at that time of the Ephraimites forty and two thousand.
6877                                                                                                                                                                                                                                                                                                                                                                                                                            And Jephthah judged Israel six years. Then died Jephthah the Gileadite, and was buried in one of the cities of Gilead.
6878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And after him Ibzan of Bethlehem judged Israel.
6879                                                                                                                                                                                                                                                                                                                                                                                       And he had thirty sons, and thirty daughters, whom he sent abroad, and took in thirty daughters from abroad for his sons. And he judged Israel seven years.
6880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then died Ibzan, and was buried at Bethlehem.
6881                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And after him Elon, a Zebulonite, judged Israel; and he judged Israel ten years.
6882                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Elon the Zebulonite died, and was buried in Aijalon in the country of Zebulun.
6883                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And after him Abdon the son of Hillel, a Pirathonite, judged Israel.
6884                                                                                                                                                                                                                                                                                                                                                                                                                            And he had forty sons and thirty nephews, that rode on threescore and ten ass colts: and he judged Israel eight years.
6885                                                                                                                                                                                                                                                                                                                                                                                                              And Abdon the son of Hillel the Pirathonite died, and was buried in Pirathon in the land of Ephraim, in the mount of the Amalekites.
6886                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel did evil again in the sight of the LORD; and the LORD delivered them into the hand of the Philistines forty years.
6887                                                                                                                                                                                                                                                                                                                                                                                                                 And there was a certain man of Zorah, of the family of the Danites, whose name was Manoah; and his wife was barren, and bare not.
6888                                                                                                                                                                                                                                                                                                                                                                                      And the angel of the LORD appeared unto the woman, and said unto her, Behold now, thou art barren, and bearest not: but thou shalt conceive, and bear a son.
6889                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore beware, I pray thee, and drink not wine nor strong drink, and eat not any unclean thing:
6890                                                                                                                                                                                                                                                                                                                             For, lo, thou shalt conceive, and bear a son; and no razor shall come on his head: for the child shall be a Nazarite unto God from the womb: and he shall begin to deliver Israel out of the hand of the Philistines.
6891                                                                                                                                                                                                                                                                                                                      Then the woman came and told her husband, saying, A man of God came unto me, and his countenance was like the countenance of an angel of God, very terrible: but I asked him not whence he was, neither told he me his name:
6892                                                                                                                                                                                                                                                                                                                          But he said unto me, Behold, thou shalt conceive, and bear a son; and now drink no wine nor strong drink, neither eat any unclean thing: for the child shall be a Nazarite to God from the womb to the day of his death.
6893                                                                                                                                                                                                                                                                                                                                                                Then Manoah intreated the LORD, and said, O my Lord, let the man of God which thou didst send come again unto us, and teach us what we shall do unto the child that shall be born.
6894                                                                                                                                                                                                                                                                                                                                                                                        And God hearkened to the voice of Manoah; and the angel of God came again unto the woman as she sat in the field: but Manoah her husband was not with her.
6895                                                                                                                                                                                                                                                                                                                                                                                             And the woman made haste, and ran, and showed her husband, and said unto him, Behold, the man hath appeared unto me, that came unto me the other day.
6896                                                                                                                                                                                                                                                                                                                                                                                               And Manoah arose, and went after his wife, and came to the man, and said unto him, Art thou the man that spakest unto the woman? And he said, I am.
6897                                                                                                                                                                                                                                                                                                                                                                                                                                      And Manoah said, Now let thy words come to pass. How shall we order the child, and how shall we do unto him?
6898                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the angel of the LORD said unto Manoah, Of all that I said unto the woman let her beware.
6899                                                                                                                                                                                                                                                                                                                                                                            She may not eat of any thing that cometh of the vine, neither let her drink wine or strong drink, nor eat any unclean thing: all that I commanded her let her observe.
6900                                                                                                                                                                                                                                                                                                                                                                                                                       And Manoah said unto the angel of the LORD, I pray thee, let us detain thee, until we shall have made ready a kid for thee.
6901                                                                                                                                                                                                                                                                                                                  And the angel of the LORD said unto Manoah, Though thou detain me, I will not eat of thy bread: and if thou wilt offer a burnt offering, thou must offer it unto the LORD. For Manoah knew not that he was an angel of the LORD.
6902                                                                                                                                                                                                                                                                                                                                                                                                                            And Manoah said unto the angel of the LORD, What is thy name, that when thy sayings come to pass we may do thee honor?
6903                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the angel of the LORD said unto him, Why askest thou thus after my name, seeing it is secret?
6904                                                                                                                                                                                                                                                                                                                                                                                            So Manoah took a kid with a meat offering, and offered it upon a rock unto the LORD: and the angel did wonderously; and Manoah and his wife looked on.
6905                                                                                                                                                                                                                                                                                                                         For it came to pass, when the flame went up toward heaven from off the altar, that the angel of the LORD ascended in the flame of the altar. And Manoah and his wife looked on it, and fell on their faces to the ground.
6906                                                                                                                                                                                                                                                                                                                                                                                                                        But the angel of the LORD did no more appear to Manoah and to his wife. Then Manoah knew that he was an angel of the LORD.
6907                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Manoah said unto his wife, We shall surely die, because we have seen God.
6908                                                                                                                                                                                                                                                                                     But his wife said unto him, If the LORD were pleased to kill us, he would not have received a burnt offering and a meat offering at our hands, neither would he have showed us all these things, nor would as at this time have told us such things as these.
6909                                                                                                                                                                                                                                                                                                                                                                                                                                               And the woman bare a son, and called his name Samson: and the child grew, and the LORD blessed him.
6910                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Spirit of the LORD began to move him at times in the camp of Dan between Zorah and Eshtaol.
6911                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Samson went down to Timnath, and saw a woman in Timnath of the daughters of the Philistines.
6912                                                                                                                                                                                                                                                                                                                                                                           And he came up, and told his father and his mother, and said, I have seen a woman in Timnath of the daughters of the Philistines: now therefore get her for me to wife.
6913                                                                                                                                                                                                                                                                     Then his father and his mother said unto him, Is there never a woman among the daughters of thy brethren, or among all my people, that thou goest to take a wife of the uncircumcised Philistines? And Samson said unto his father, Get her for me; for she pleaseth me well.
6914                                                                                                                                                                                                                                                                                                                                                                    But his father and his mother knew not that it was of the LORD, that he sought an occasion against the Philistines: for at that time the Philistines had dominion over Israel.
6915                                                                                                                                                                                                                                                                                                                                                                                             Then went Samson down, and his father and his mother, to Timnath, and came to the vineyards of Timnath: and, behold, a young lion roared against him.
6916                                                                                                                                                                                                                                                                                                                                                        And the Spirit of the LORD came mightily upon him, and he rent him as he would have rent a kid, and he had nothing in his hand: but he told not his father or his mother what he had done.
6917                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he went down, and talked with the woman; and she pleased Samson well.
6918                                                                                                                                                                                                                                                                                                                                                                        And after a time he returned to take her, and he turned aside to see the carcass of the lion: and, behold, there was a swarm of bees and honey in the carcass of the lion.
6919                                                                                                                                                                                                                                                                                                                                     And he took thereof in his hands, and went on eating, and came to his father and mother, and he gave them, and they did eat: but he told not them that he had taken the honey out of the carcass of the lion.
6920                                                                                                                                                                                                                                                                                                                                                                                                                                           So his father went down unto the woman: and Samson made there a feast; for so used the young men to do.
6921                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when they saw him, that they brought thirty companions to be with him.
6922                                                                                                                                                                                                                                                                                                                       And Samson said unto them, I will now put forth a riddle unto you: if ye can certainly declare it me within the seven days of the feast, and find it out, then I will give you thirty sheets and thirty change of garments:
6923                                                                                                                                                                                                                                                                                                                                                                             But if ye cannot declare it me, then shall ye give me thirty sheets and thirty change of garments. And they said unto him, Put forth thy riddle, that we may hear it.
6924                                                                                                                                                                                                                                                                                                                                                                                         And he said unto them, Out of the eater came forth meat, and out of the strong came forth sweetness. And they could not in three days expound the riddle.
6925                                                                                                                                                                                                                                                                                                  And it came to pass on the seventh day, that they said unto Samson's wife, Entice thy husband, that he may declare unto us the riddle, lest we burn thee and thy father's house with fire: have ye called us to take that we have? is it not so?
6926                                                                                                                                                                                                                                                                  And Samson's wife wept before him, and said, Thou dost but hate me, and lovest me not: thou hast put forth a riddle unto the children of my people, and hast not told it me. And he said unto her, Behold, I have not told it my father nor my mother, and shall I tell it thee?
6927                                                                                                                                                                                                                                                                                                                                 And she wept before him the seven days, while their feast lasted: and it came to pass on the seventh day, that he told her, because she lay sore upon him: and she told the riddle to the children of her people.
6928                                                                                                                                                                                                                                                                                                      And the men of the city said unto him on the seventh day before the sun went down, What is sweeter than honey? And what is stronger than a lion? and he said unto them, If ye had not plowed with my heifer, ye had not found out my riddle.
6929                                                                                                                                                                                                                                                                                     And the Spirit of the LORD came upon him, and he went down to Ashkelon, and slew thirty men of them, and took their spoil, and gave change of garments unto them which expounded the riddle. And his anger was kindled, and he went up to his father's house.
6930                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Samson's wife was given to his companion, whom he had used as his friend.
6931                                                                                                                                                                                                                                                                                                                             But it came to pass within a while after, in the time of wheat harvest, that Samson visited his wife with a kid; and he said, I will go in to my wife into the chamber. But her father would not suffer him to go in.
6932                                                                                                                                                                                                                                                                                                                                                 And her father said, I verily thought that thou hadst utterly hated her; therefore I gave her to thy companion: is not her younger sister fairer than she? take her, I pray thee, instead of her.
6933                                                                                                                                                                                                                                                                                                                                                                                                                              And Samson said concerning them, Now shall I be more blameless than the Philistines, though I do them a displeasure.
6934                                                                                                                                                                                                                                                                                                                                                                                                 And Samson went and caught three hundred foxes, and took firebrands, and turned tail to tail, and put a firebrand in the midst between two tails.
6935                                                                                                                                                                                                                                                                                                                                                        And when he had set the brands on fire, he let them go into the standing corn of the Philistines, and burnt up both the shocks, and also the standing corn, with the vineyards and olives.
6936                                                                                                                                                                                                                                                                                                      Then the Philistines said, Who hath done this? And they answered, Samson, the son in law of the Timnite, because he had taken his wife, and given her to his companion. And the Philistines came up, and burnt her and her father with fire.
6937                                                                                                                                                                                                                                                                                                                                                                                                                                   And Samson said unto them, Though ye have done this, yet will I be avenged of you, and after that I will cease.
6938                                                                                                                                                                                                                                                                                                                                                                                                                                   And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam.
6939                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the Philistines went up, and pitched in Judah, and spread themselves in Lehi.
6940                                                                                                                                                                                                                                                                                                                                                                                                   And the men of Judah said, Why are ye come up against us? And they answered, To bind Samson are we come up, to do to him as he hath done to us.
6941                                                                                                                                                                                                                                                                                  Then three thousand men of Judah went to the top of the rock Etam, and said to Samson, Knowest thou not that the Philistines are rulers over us? what is this that thou hast done unto us? And he said unto them, As they did unto me, so have I done unto them.
6942                                                                                                                                                                                                                                                                                                                                             And they said unto him, We are come down to bind thee, that we may deliver thee into the hand of the Philistines. And Samson said unto them, Swear unto me, that ye will not fall upon me yourselves.
6943                                                                                                                                                                                                                                                                                                                                     And they spake unto him, saying, No; but we will bind thee fast, and deliver thee into their hand: but surely we will not kill thee. And they bound him with two new cords, and brought him up from the rock.
6944                                                                                                                                                                                                                                                                                                       And when he came unto Lehi, the Philistines shouted against him: and the Spirit of the LORD came mightily upon him, and the cords that were upon his arms became as flax that was burnt with fire, and his bands loosed from off his hands.
6945                                                                                                                                                                                                                                                                                                                                                                                                                                     And he found a new jawbone of an ass, and put forth his hand, and took it, and slew a thousand men therewith.
6946                                                                                                                                                                                                                                                                                                                                                                                                                                And Samson said, With the jawbone of an ass, heaps upon heaps, with the jaw of an ass have I slain a thousand men.
6947                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when he had made an end of speaking, that he cast away the jawbone out of his hand, and called that place Ramathlehi.
6948                                                                                                                                                                                                                                                                                                                                      And he was sore athirst, and called on the LORD, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised?
6949                                                                                                                                                                                                                                                                                                                   But God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof Enhakkore, which is in Lehi unto this day.
6950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he judged Israel in the days of the Philistines twenty years.
6951                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then went Samson to Gaza, and saw there an harlot, and went in unto her.
6952                                                                                                                                                                                                                                                                                                          And it was told the Gazites, saying, Samson is come hither. And they compassed him in, and laid wait for him all night in the gate of the city, and were quiet all the night, saying, In the morning, when it is day, we shall kill him.
6953                                                                                                                                                                                                                                                                                       And Samson lay till midnight, and arose at midnight, and took the doors of the gate of the city, and the two posts, and went away with them, bar and all, and put them upon his shoulders, and carried them up to the top of an hill that is before Hebron.
6954                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass afterward, that he loved a woman in the valley of Sorek, whose name was Delilah.
6955                                                                                                                                                                                                                                                             And the lords of the Philistines came up unto her, and said unto her, Entice him, and see wherein his great strength lieth, and by what means we may prevail against him, that we may bind him to afflict him; and we will give thee every one of us eleven hundred pieces of silver.
6956                                                                                                                                                                                                                                                                                                                                                                                                         And Delilah said to Samson, Tell me, I pray thee, wherein thy great strength lieth, and wherewith thou mightest be bound to afflict thee.
6957                                                                                                                                                                                                                                                                                                                                                                                                             And Samson said unto her, If they bind me with seven green withes that were never dried, then shall I be weak, and be as another man.
6958                                                                                                                                                                                                                                                                                                                                                                                                                     Then the lords of the Philistines brought up to her seven green withes which had not been dried, and she bound him with them.
6959                                                                                                                                                                                                                                                                                                   Now there were men lying in wait, abiding with her in the chamber. And she said unto him, The Philistines be upon thee, Samson. And he brake the withes, as a thread of tow is broken when it toucheth the fire. So his strength was not known.
6960                                                                                                                                                                                                                                                                                                                                                                                                          And Delilah said unto Samson, Behold, thou hast mocked me, and told me lies: now tell me, I pray thee, wherewith thou mightest be bound.
6961                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto her, If they bind me fast with new ropes that never were occupied, then shall I be weak, and be as another man.
6962                                                                                                                                                                                                                                                                                                                       Delilah therefore took new ropes, and bound him therewith, and said unto him, The Philistines be upon thee, Samson. And there were liers in wait abiding in the chamber. And he brake them from off his arms like a thread.
6963                                                                                                                                                                                                                                                                                                                                            And Delilah said unto Samson, Hitherto thou hast mocked me, and told me lies: tell me wherewith thou mightest be bound. And he said unto her, If thou weavest the seven locks of my head with the web.
6964                                                                                                                                                                                                                                                                                                                                                              And she fastened it with the pin, and said unto him, The Philistines be upon thee, Samson. And he awaked out of his sleep, and went away with the pin of the beam, and with the web.
6965                                                                                                                                                                                                                                                                                                                                                            And she said unto him, How canst thou say, I love thee, when thine heart is not with me? thou hast mocked me these three times, and hast not told me wherein thy great strength lieth.
6966                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when she pressed him daily with her words, and urged him, so that his soul was vexed unto death;
6967                                                                                                                                                                                                                                                                                   That he told her all his heart, and said unto her, There hath not come a razor upon mine head; for I have been a Nazarite unto God from my mother's womb: if I be shaven, then my strength will go from me, and I shall become weak, and be like any other man.
6968                                                                                                                                                                                                                                                                               And when Delilah saw that he had told her all his heart, she sent and called for the lords of the Philistines, saying, Come up this once, for he hath showed me all his heart. Then the lords of the Philistines came up unto her, and brought money in their hand.
6969                                                                                                                                                                                                                                                                                                                                                       And she made him sleep upon her knees; and she called for a man, and she caused him to shave off the seven locks of his head; and she began to afflict him, and his strength went from him.
6970                                                                                                                                                                                                                                                                                                                                       And she said, The Philistines be upon thee, Samson. And he awoke out of his sleep, and said, I will go out as at other times before, and shake myself. And he wist not that the LORD was departed from him.
6971                                                                                                                                                                                                                                                                                                                                                                                      But the Philistines took him, and put out his eyes, and brought him down to Gaza, and bound him with fetters of brass; and he did grind in the prison house.
6972                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Howbeit the hair of his head began to grow again after he was shaven.
6973                                                                                                                                                                                                                                                                                                                                               Then the lords of the Philistines gathered them together for to offer a great sacrifice unto Dagon their god, and to rejoice: for they said, Our god hath delivered Samson our enemy into our hand.
6974                                                                                                                                                                                                                                                                                                                                                                     And when the people saw him, they praised their god: for they said, Our god hath delivered into our hands our enemy, and the destroyer of our country, which slew many of us.
6975                                                                                                                                                                                                                                                                                                                  And it came to pass, when their hearts were merry, that they said, Call for Samson, that he may make us sport. And they called for Samson out of the prison house; and he made them sport: and they set him between the pillars.
6976                                                                                                                                                                                                                                                                                                                                                                                            And Samson said unto the lad that held him by the hand, Suffer me that I may feel the pillars whereupon the house standeth, that I may lean upon them.
6977                                                                                                                                                                                                                                                                                                                                                   Now the house was full of men and women; and all the lords of the Philistines were there; and there were upon the roof about three thousand men and women, that beheld while Samson made sport.
6978                                                                                                                                                                                                                                                                                                                                         And Samson called unto the LORD, and said, O Lord God, remember me, I pray thee, and strengthen me, I pray thee, only this once, O God, that I may be at once avenged of the Philistines for my two eyes.
6979                                                                                                                                                                                                                                                                                                                                                                          And Samson took hold of the two middle pillars upon which the house stood, and on which it was borne up, of the one with his right hand, and of the other with his left.
6980                                                                                                                                                                                                                                                                                    And Samson said, Let me die with the Philistines. And he bowed himself with all his might; and the house fell upon the lords, and upon all the people that were therein. So the dead which he slew at his death were more than they which he slew in his life.
6981                                                                                                                                                                                                                                                                                                                              Then his brethren and all the house of his father came down, and took him, and brought him up, and buried him between Zorah and Eshtaol in the buryingplace of Manoah his father. And he judged Israel twenty years.
6982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there was a man of mount Ephraim, whose name was Micah.
6983                                                                                                                                                                                                                                                                                     And he said unto his mother, The eleven hundred shekels of silver that were taken from thee, about which thou cursedst, and spakest of also in mine ears, behold, the silver is with me; I took it. And his mother said, Blessed be thou of the LORD, my son.
6984                                                                                                                                                                                                                                                                                      And when he had restored the eleven hundred shekels of silver to his mother, his mother said, I had wholly dedicated the silver unto the LORD from my hand for my son, to make a graven image and a molten image: now therefore I will restore it unto thee.
6985                                                                                                                                                                                                                                                                                                                              Yet he restored the money unto his mother; and his mother took two hundred shekels of silver, and gave them to the founder, who made thereof a graven image and a molten image: and they were in the house of Micah.
6986                                                                                                                                                                                                                                                                                                                                                                                                                  And the man Micah had an house of gods, and made an ephod, and teraphim, and consecrated one of his sons, who became his priest.
6987                                                                                                                                                                                                                                                                                                                                                                                                                                                In those days there was no king in Israel, but every man did that which was right in his own eyes.
6988                                                                                                                                                                                                                                                                                                                                                                                                                                 And there was a young man out of Bethlehemjudah of the family of Judah, who was a Levite, and he sojourned there.
6989                                                                                                                                                                                                                                                                                                                                                                             And the man departed out of the city from Bethlehemjudah to sojourn where he could find a place: and he came to mount Ephraim to the house of Micah, as he journeyed.
6990                                                                                                                                                                                                                                                                                                                                                                                                 And Micah said unto him, Whence comest thou? And he said unto him, I am a Levite of Bethlehemjudah, and I go to sojourn where I may find a place.
6991                                                                                                                                                                                                                                                                                                                                             And Micah said unto him, Dwell with me, and be unto me a father and a priest, and I will give thee ten shekels of silver by the year, and a suit of apparel, and thy victuals. So the Levite went in.
6992                                                                                                                                                                                                                                                                                                                                                                                                                                              And the Levite was content to dwell with the man; and the young man was unto him as one of his sons.
6993                                                                                                                                                                                                                                                                                                                                                                                                                                             And Micah consecrated the Levite; and the young man became his priest, and was in the house of Micah.
6994                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then said Micah, Now know I that the LORD will do me good, seeing I have a Levite to my priest.
6995                                                                                                                                                                                                                                                                                                                        In those days there was no king in Israel: and in those days the tribe of the Danites sought them an inheritance to dwell in; for unto that day all their inheritance had not fallen unto them among the tribes of Israel.
6996                                                                                                                                                                                                                                                          And the children of Dan sent of their family five men from their coasts, men of valor, from Zorah, and from Eshtaol, to spy out the land, and to search it; and they said unto them, Go, search the land: who when they came to mount Ephraim, to the house of Micah, they lodged there.
6997                                                                                                                                                                                                                                                                                                                       When they were by the house of Micah, they knew the voice of the young man the Levite: and they turned in thither, and said unto him, Who brought thee hither? and what makest thou in this place? and what hast thou here?
6998                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said unto them, Thus and thus dealeth Micah with me, and hath hired me, and I am his priest.
6999                                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto him, Ask counsel, we pray thee, of God, that we may know whether our way which we go shall be prosperous.
7000                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the priest said unto them, Go in peace: before the LORD is your way wherein ye go.
7001                                                                                                                                                                                                                    Then the five men departed, and came to Laish, and saw the people that were therein, how they dwelt careless, after the manner of the Zidonians, quiet and secure; and there was no magistrate in the land, that might put them to shame in any thing; and they were far from the Zidonians, and had no business with any man.
7002                                                                                                                                                                                                                                                                                                                                                                                                                                           And they came unto their brethren to Zorah and Eshtaol: and their brethren said unto them, What say ye?
7003                                                                                                                                                                                                                                                                                                                                                         And they said, Arise, that we may go up against them: for we have seen the land, and, behold, it is very good: and are ye still? be not slothful to go, and to enter to possess the land.
7004                                                                                                                                                                                                                                                                                                                                                                     When ye go, ye shall come unto a people secure, and to a large land: for God hath given it into your hands; a place where there is no want of any thing that is in the earth.
7005                                                                                                                                                                                                                                                                                                                                                                                                          And there went from thence of the family of the Danites, out of Zorah and out of Eshtaol, six hundred men appointed with weapons of war.
7006                                                                                                                                                                                                                                                                                                                                                                                          And they went up, and pitched in Kirjathjearim, in Judah: wherefore they called that place Mahanehdan unto this day: behold, it is behind Kirjathjearim.
7007                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they passed thence unto mount Ephraim, and came unto the house of Micah.
7008                                                                                                                                                                                                                                                                                           Then answered the five men that went to spy out the country of Laish, and said unto their brethren, Do ye know that there is in these houses an ephod, and teraphim, and a graven image, and a molten image? now therefore consider what ye have to do.
7009                                                                                                                                                                                                                                                                                                                                                                                                                    And they turned thitherward, and came to the house of the young man the Levite, even unto the house of Micah, and saluted him.
7010                                                                                                                                                                                                                                                                                                                                                                                                                And the six hundred men appointed with their weapons of war, which were of the children of Dan, stood by the entering of the gate.
7011                                                                                                                                                                                                                                                                 And the five men that went to spy out the land went up, and came in thither, and took the graven image, and the ephod, and the teraphim, and the molten image: and the priest stood in the entering of the gate with the six hundred men that were appointed with weapons of war.
7012                                                                                                                                                                                                                                                                                                                                                                                   And these went into Micah's house, and fetched the carved image, the ephod, and the teraphim, and the molten image. Then said the priest unto them, What do ye?
7013                                                                                                                                                                                                                                                                                          And they said unto him, Hold thy peace, lay thine hand upon thy mouth, and go with us, and be to us a father and a priest: is it better for thee to be a priest unto the house of one man, or that thou be a priest unto a tribe and a family in Israel?
7014                                                                                                                                                                                                                                                                                                                                                                                                              And the priest's heart was glad, and he took the ephod, and the teraphim, and the graven image, and went in the midst of the people.
7015                                                                                                                                                                                                                                                                                                                                                                                                                                                 So they turned and departed, and put the little ones and the cattle and the carriage before them.
7016                                                                                                                                                                                                                                                                                                                                                                            And when they were a good way from the house of Micah, the men that were in the houses near to Micah's house were gathered together, and overtook the children of Dan.
7017                                                                                                                                                                                                                                                                                                                                                                                                And they cried unto the children of Dan. And they turned their faces, and said unto Micah, What aileth thee, that thou comest with such a company?
7018                                                                                                                                                                                                                                                                                                                                                                         And he said, Ye have taken away my gods which I made, and the priest, and ye are gone away: and what have I more? and what is this that ye say unto me, What aileth thee?
7019                                                                                                                                                                                                                                                                                                                                                                            And the children of Dan said unto him, Let not thy voice be heard among us, lest angry fellows run upon thee, and thou lose thy life, with the lives of thy household.
7020                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Dan went their way: and when Micah saw that they were too strong for him, he turned and went back unto his house.
7021                                                                                                                                                                                                                                                                                                                       And they took the things which Micah had made, and the priest which he had, and came unto Laish, unto a people that were at quiet and secure: and they smote them with the edge of the sword, and burnt the city with fire.
7022                                                                                                                                                                                                                                                                                                                                                     And there was no deliverer, because it was far from Zidon, and they had no business with any man; and it was in the valley that lieth by Bethrehob. And they built a city, and dwelt therein.
7023                                                                                                                                                                                                                                                                                                                                                                                      And they called the name of the city Dan, after the name of Dan their father, who was born unto Israel: howbeit the name of the city was Laish at the first.
7024                                                                                                                                                                                                                                                                                                                                              And the children of Dan set up the graven image: and Jonathan, the son of Gershom, the son of Manasseh, he and his sons were priests to the tribe of Dan until the day of the captivity of the land.
7025                                                                                                                                                                                                                                                                                                                                                                                                                                       And they set them up Micah's graven image, which he made, all the time that the house of God was in Shiloh.
7026                                                                                                                                                                                                                                                                                                                                                  And it came to pass in those days, when there was no king in Israel, that there was a certain Levite sojourning on the side of mount Ephraim, who took to him a concubine out of Bethlehemjudah.
7027                                                                                                                                                                                                                                                                                                                                                                                                And his concubine played the whore against him, and went away from him unto her father's house to Bethlehemjudah, and was there four whole months.
7028                                                                                                                                                                                                                                                                               And her husband arose, and went after her, to speak friendly unto her, and to bring her again, having his servant with him, and a couple of asses: and she brought him into her father's house: and when the father of the damsel saw him, he rejoiced to meet him.
7029                                                                                                                                                                                                                                                                                                                                                                                                          And his father in law, the damsel's father, retained him; and he abode with him three days: so they did eat and drink, and lodged there.
7030                                                                                                                                                                                                                                                                                                                  And it came to pass on the fourth day, when they arose early in the morning, that he rose up to depart: and the damsel's father said unto his son in law, Comfort thine heart with a morsel of bread, and afterward go your way.
7031                                                                                                                                                                                                                                                                                                                                                        And they sat down, and did eat and drink both of them together: for the damsel's father had said unto the man, Be content, I pray thee, and tarry all night, and let thine heart be merry.
7032                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the man rose up to depart, his father in law urged him: therefore he lodged there again.
7033                                                                                                                                                                                                                                                                                                                                                    And he arose early in the morning on the fifth day to depart; and the damsel's father said, Comfort thine heart, I pray thee. And they tarried until afternoon, and they did eat both of them.
7034                                                                                                                                                                                       And when the man rose up to depart, he, and his concubine, and his servant, his father in law, the damsel's father, said unto him, Behold, now the day draweth toward evening, I pray you tarry all night: behold, the day groweth to an end, lodge here, that thine heart may be merry; and to morrow get you early on your way, that thou mayest go home.
7035                                                                                                                                                                                                                                                                                                                                                 But the man would not tarry that night, but he rose up and departed, and came over against Jebus, which is Jerusalem; and there were with him two asses saddled, his concubine also was with him.
7036                                                                                                                                                                                                                                                                                                                                                                 And when they were by Jebus, the day was far spent; and the servant said unto his master, Come, I pray thee, and let us turn in into this city of the Jebusites, and lodge in it.
7037                                                                                                                                                                                                                                                                                                                                                                                      And his master said unto him, We will not turn aside hither into the city of a stranger, that is not of the children of Israel; we will pass over to Gibeah.
7038                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto his servant, Come, and let us draw near to one of these places to lodge all night, in Gibeah, or in Ramah.
7039                                                                                                                                                                                                                                                                                                                                                                                                                     And they passed on and went their way; and the sun went down upon them when they were by Gibeah, which belongeth to Benjamin.
7040                                                                                                                                                                                                                                                                                                                                                      And they turned aside thither, to go in and to lodge in Gibeah: and when he went in, he sat him down in a street of the city: for there was no man that took them into his house to lodging.
7041                                                                                                                                                                                                                                                                                                                                                                 And, behold, there came an old man from his work out of the field at even, which was also of mount Ephraim; and he sojourned in Gibeah: but the men of the place were Benjamites.
7042                                                                                                                                                                                                                                                                                                                                                                                           And when he had lifted up his eyes, he saw a wayfaring man in the street of the city: and the old man said, Whither goest thou? and whence comest thou?
7043                                                                                                                                                                                                                                                                                                           And he said unto him, We are passing from Bethlehemjudah toward the side of mount Ephraim; from thence am I: and I went to Bethlehemjudah, but I am now going to the house of the LORD; and there is no man that receiveth me to house.
7044                                                                                                                                                                                                                                                                                                                                              Yet there is both straw and provender for our asses; and there is bread and wine also for me, and for thy handmaid, and for the young man which is with thy servants: there is no want of any thing.
7045                                                                                                                                                                                                                                                                                                                                                                                                                                  And the old man said, Peace be with thee; howsoever let all thy wants lie upon me; only lodge not in the street.
7046                                                                                                                                                                                                                                                                                                                                                                                                                           So he brought him into his house, and gave provender unto the asses: and they washed their feet, and did eat and drink.
7047                                                                                                                                                                                                                                                              Now as they were making their hearts merry, behold, the men of the city, certain sons of Belial, beset the house round about, and beat at the door, and spake to the master of the house, the old man, saying, Bring forth the man that came into thine house, that we may know him.
7048                                                                                                                                                                                                                                                                                                                                             And the man, the master of the house, went out unto them, and said unto them, Nay, my brethren, nay, I pray you, do not so wickedly; seeing that this man is come into mine house, do not this folly.
7049                                                                                                                                                                                                                                                                                                                                                    Behold, here is my daughter a maiden, and his concubine; them I will bring out now, and humble ye them, and do with them what seemeth good unto you: but unto this man do not so vile a thing.
7050                                                                                                                                                                                                                                                                                                                       But the men would not hearken to him: so the man took his concubine, and brought her forth unto them; and they knew her, and abused her all the night until the morning: and when the day began to spring, they let her go.
7051                                                                                                                                                                                                                                                                                                                                                                                                                Then came the woman in the dawning of the day, and fell down at the door of the man's house where her lord was, till it was light.
7052                                                                                                                                                                                                                                                                                                                         And her lord rose up in the morning, and opened the doors of the house, and went out to go his way: and, behold, the woman his concubine was fallen down at the door of the house, and her hands were upon the threshold.
7053                                                                                                                                                                                                                                                                                                                                                                                          And he said unto her, Up, and let us be going. But none answered. Then the man took her up upon an ass, and the man rose up, and gat him unto his place.
7054                                                                                                                                                                                                                                                                                                                                                   And when he was come into his house, he took a knife, and laid hold on his concubine, and divided her, together with her bones, into twelve pieces, and sent her into all the coasts of Israel.
7055                                                                                                                                                                                                                                                                                                                        And it was so, that all that saw it said, There was no such deed done nor seen from the day that the children of Israel came up out of the land of Egypt unto this day: consider of it, take advice, and speak your minds.
7056                                                                                                                                                                                                                                                                                                                                                                    Then all the children of Israel went out, and the congregation was gathered together as one man, from Dan even to Beersheba, with the land of Gilead, unto the LORD in Mizpeh.
7057                                                                                                                                                                                                                                                                                                                                                                      And the chief of all the people, even of all the tribes of Israel, presented themselves in the assembly of the people of God, four hundred thousand footmen that drew sword.
7058                                                                                                                                                                                                                                                                                                                                                                                      (Now the children of Benjamin heard that the children of Israel were gone up to Mizpeh.) Then said the children of Israel, Tell us, how was this wickedness?
7059                                                                                                                                                                                                                                                                                                                                                                                          And the Levite, the husband of the woman that was slain, answered and said, I came into Gibeah that belongeth to Benjamin, I and my concubine, to lodge.
7060                                                                                                                                                                                                                                                                                                                                                                       And the men of Gibeah rose against me, and beset the house round about upon me by night, and thought to have slain me: and my concubine have they forced, that she is dead.
7061                                                                                                                                                                                                                                                                                                                                                                       And I took my concubine, and cut her in pieces, and sent her throughout all the country of the inheritance of Israel: for they have committed lewdness and folly in Israel.
7062                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, ye are all children of Israel; give here your advice and counsel.
7063                                                                                                                                                                                                                                                                                                                                                                                                                 And all the people arose as one man, saying, We will not any of us go to his tent, neither will we any of us turn into his house.
7064                                                                                                                                                                                                                                                                                                                                                                                                                                                      But now this shall be the thing which we will do to Gibeah; we will go up by lot against it;
7065                                                                                                                                                                                                                                               And we will take ten men of an hundred throughout all the tribes of Israel, and an hundred of a thousand, and a thousand out of ten thousand, to fetch victual for the people, that they may do, when they come to Gibeah of Benjamin, according to all the folly that they have wrought in Israel.
7066                                                                                                                                                                                                                                                                                                                                                                                                                                                                So all the men of Israel were gathered against the city, knit together as one man.
7067                                                                                                                                                                                                                                                                                                                                                                                                                      And the tribes of Israel sent men through all the tribe of Benjamin, saying, What wickedness is this that is done among you?
7068                                                                                                                                                                                                                                                                                                Now therefore deliver us the men, the children of Belial, which are in Gibeah, that we may put them to death, and put away evil from Israel. But the children of Benjamin would not hearken to the voice of their brethren the children of Israel.
7069                                                                                                                                                                                                                                                                                                                                                                                                      But the children of Benjamin gathered themselves together out of the cities unto Gibeah, to go out to battle against the children of Israel.
7070                                                                                                                                                                                                                                                                                                                                            And the children of Benjamin were numbered at that time out of the cities twenty and six thousand men that drew sword, beside the inhabitants of Gibeah, which were numbered seven hundred chosen men.
7071                                                                                                                                                                                                                                                                                                                                                                                                              Among all this people there were seven hundred chosen men lefthanded; every one could sling stones at an hair breadth, and not miss.
7072                                                                                                                                                                                                                                                                                                                                                                                                                       And the men of Israel, beside Benjamin, were numbered four hundred thousand men that drew sword: all these were men of war.
7073                                                                                                                                                                                                                                                                                                                  And the children of Israel arose, and went up to the house of God, and asked counsel of God, and said, Which of us shall go up first to the battle against the children of Benjamin? And the LORD said, Judah shall go up first.
7074                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Israel rose up in the morning, and encamped against Gibeah.
7075                                                                                                                                                                                                                                                                                                                                                                                                         And the men of Israel went out to battle against Benjamin; and the men of Israel put themselves in array to fight against them at Gibeah.
7076                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Benjamin came forth out of Gibeah, and destroyed down to the ground of the Israelites that day twenty and two thousand men.
7077                                                                                                                                                                                                                                                                                                                                                                                        And the people the men of Israel encouraged themselves, and set their battle again in array in the place where they put themselves in array the first day.
7078                                                                                                                                                                                                                                                                                                                 (And the children of Israel went up and wept before the LORD until even, and asked counsel of the LORD, saying, Shall I go up again to battle against the children of Benjamin my brother? And the LORD said, Go up against him.)
7079                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel came near against the children of Benjamin the second day.
7080                                                                                                                                                                                                                                                                                                                                                              And Benjamin went forth against them out of Gibeah the second day, and destroyed down to the ground of the children of Israel again eighteen thousand men; all these drew the sword.
7081                                                                                                                                                                                                                                                                                                           Then all the children of Israel, and all the people, went up, and came unto the house of God, and wept, and sat there before the LORD, and fasted that day until even, and offered burnt offerings and peace offerings before the LORD.
7082                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel inquired of the LORD, (for the ark of the covenant of God was there in those days,
7083                                                                                                                                                                                                                                                                        And Phinehas, the son of Eleazar, the son of Aaron, stood before it in those days,) saying, Shall I yet again go out to battle against the children of Benjamin my brother, or shall I cease? And the LORD said, Go up; for to morrow I will deliver them into thine hand.
7084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Israel set liers in wait round about Gibeah.
7085                                                                                                                                                                                                                                                                                                                                                                                              And the children of Israel went up against the children of Benjamin on the third day, and put themselves in array against Gibeah, as at other times.
7086                                                                                                                                                                                                                                                    And the children of Benjamin went out against the people, and were drawn away from the city; and they began to smite of the people, and kill, as at other times, in the highways, of which one goeth up to the house of God, and the other to Gibeah in the field, about thirty men of Israel.
7087                                                                                                                                                                                                                                                                                                                                                                 And the children of Benjamin said, They are smitten down before us, as at the first. But the children of Israel said, Let us flee, and draw them from the city unto the highways.
7088                                                                                                                                                                                                                                                                                                                                                And all the men of Israel rose up out of their place, and put themselves in array at Baaltamar: and the liers in wait of Israel came forth out of their places, even out of the meadows of Gibeah.
7089                                                                                                                                                                                                                                                                                                                                                                                                      And there came against Gibeah ten thousand chosen men out of all Israel, and the battle was sore: but they knew not that evil was near them.
7090                                                                                                                                                                                                                                                                                                                                                                 And the LORD smote Benjamin before Israel: and the children of Israel destroyed of the Benjamites that day twenty and five thousand and an hundred men: all these drew the sword.
7091                                                                                                                                                                                                                                                                                                                                                         So the children of Benjamin saw that they were smitten: for the men of Israel gave place to the Benjamites, because they trusted unto the liers in wait which they had set beside Gibeah.
7092                                                                                                                                                                                                                                                                                                                                                                                             And the liers in wait hasted, and rushed upon Gibeah; and the liers in wait drew themselves along, and smote all the city with the edge of the sword.
7093                                                                                                                                                                                                                                                                                                                                                                                          Now there was an appointed sign between the men of Israel and the liers in wait, that they should make a great flame with smoke rise up out of the city.
7094                                                                                                                                                                                                                                                                                                                                      And when the men of Israel retired in the battle, Benjamin began to smite and kill of the men of Israel about thirty persons: for they said, Surely they are smitten down before us, as in the first battle.
7095                                                                                                                                                                                                                                                                                                                                                                         But when the flame began to arise up out of the city with a pillar of smoke, the Benjamites looked behind them, and, behold, the flame of the city ascended up to heaven.
7096                                                                                                                                                                                                                                                                                                                                                                                                                              And when the men of Israel turned again, the men of Benjamin were amazed: for they saw that evil was come upon them.
7097                                                                                                                                                                                                                                                                                                                                               Therefore they turned their backs before the men of Israel unto the way of the wilderness; but the battle overtook them; and them which came out of the cities they destroyed in the midst of them.
7098                                                                                                                                                                                                                                                                                                                                                                                                           Thus they inclosed the Benjamites round about, and chased them, and trode them down with ease over against Gibeah toward the sunrising.
7099                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there fell of Benjamin eighteen thousand men; all these were men of valor.
7100                                                                                                                                                                                                                                                                                                                                    And they turned and fled toward the wilderness unto the rock of Rimmon: and they gleaned of them in the highways five thousand men; and pursued hard after them unto Gidom, and slew two thousand men of them.
7101                                                                                                                                                                                                                                                                                                                                                                                                                   So that all which fell that day of Benjamin were twenty and five thousand men that drew the sword; all these were men of valor.
7102                                                                                                                                                                                                                                                                                                                                                                                                                             But six hundred men turned and fled to the wilderness unto the rock Rimmon, and abode in the rock Rimmon four months.
7103                                                                                                                                                                                                                                                                                                      And the men of Israel turned again upon the children of Benjamin, and smote them with the edge of the sword, as well the men of every city, as the beast, and all that came to hand: also they set on fire all the cities that they came to.
7104                                                                                                                                                                                                                                                                                                                                                                                                                             Now the men of Israel had sworn in Mizpeh, saying, There shall not any of us give his daughter unto Benjamin to wife.
7105                                                                                                                                                                                                                                                                                                                                                                                                                         And the people came to the house of God, and abode there till even before God, and lifted up their voices, and wept sore;
7106                                                                                                                                                                                                                                                                                                                                                                                                                      And said, O LORD God of Israel, why is this come to pass in Israel, that there should be to day one tribe lacking in Israel?
7107                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass on the morrow, that the people rose early, and built there an altar, and offered burnt offerings and peace offerings.
7108                                                                                                                                                                                                                                                                                 And the children of Israel said, Who is there among all the tribes of Israel that came not up with the congregation unto the LORD? For they had made a great oath concerning him that came not up to the LORD to Mizpeh, saying, He shall surely be put to death.
7109                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Israel repented them for Benjamin their brother, and said, There is one tribe cut off from Israel this day.
7110                                                                                                                                                                                                                                                                                                                                                                                                            How shall we do for wives for them that remain, seeing we have sworn by the LORD that we will not give them of our daughters to wives?
7111                                                                                                                                                                                                                                                                                                                                                                      And they said, What one is there of the tribes of Israel that came not up to Mizpeh to the LORD? And, behold, there came none to the camp from Jabeshgilead to the assembly.
7112                                                                                                                                                                                                                                                                                                                                                                                                                                              For the people were numbered, and, behold, there were none of the inhabitants of Jabeshgilead there.
7113                                                                                                                                                                                                                                                                                                                                    And the congregation sent thither twelve thousand men of the valiantest, and commanded them, saying, Go and smite the inhabitants of Jabeshgilead with the edge of the sword, with the women and the children.
7114                                                                                                                                                                                                                                                                                                                                                                                                                               And this is the thing that ye shall do, Ye shall utterly destroy every male, and every woman that hath lain by man.
7115                                                                                                                                                                                                                                                                                                                                     And they found among the inhabitants of Jabeshgilead four hundred young virgins, that had known no man by lying with any male: and they brought them unto the camp to Shiloh, which is in the land of Canaan.
7116                                                                                                                                                                                                                                                                                                                                                                                                          And the whole congregation sent some to speak to the children of Benjamin that were in the rock Rimmon, and to call peaceably unto them.
7117                                                                                                                                                                                                                                                                                                                                                                                        And Benjamin came again at that time; and they gave them wives which they had saved alive of the women of Jabeshgilead: and yet so they sufficed them not.
7118                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people repented them for Benjamin, because that the LORD had made a breach in the tribes of Israel.
7119                                                                                                                                                                                                                                                                                                                                                                                                         Then the elders of the congregation said, How shall we do for wives for them that remain, seeing the women are destroyed out of Benjamin?
7120                                                                                                                                                                                                                                                                                                                                                                                                                    And they said, There must be an inheritance for them that be escaped of Benjamin, that a tribe be not destroyed out of Israel.
7121                                                                                                                                                                                                                                                                                                                                                                                                  Howbeit we may not give them wives of our daughters: for the children of Israel have sworn, saying, Cursed be he that giveth a wife to Benjamin.
7122                                                                                                                                                                                                                                                                                                                         Then they said, Behold, there is a feast of the LORD in Shiloh yearly in a place which is on the north side of Bethel, on the east side of the highway that goeth up from Bethel to Shechem, and on the south of Lebonah.
7123                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore they commanded the children of Benjamin, saying, Go and lie in wait in the vineyards;
7124                                                                                                                                                                                                                                                                                                                                     And see, and, behold, if the daughters of Shiloh come out to dance in dances, then come ye out of the vineyards, and catch you every man his wife of the daughters of Shiloh, and go to the land of Benjamin.
7125                                                                                                                                                                                                                                                                  And it shall be, when their fathers or their brethren come unto us to complain, that we will say unto them, Be favorable unto them for our sakes: because we reserved not to each man his wife in the war: for ye did not give unto them at this time, that ye should be guilty.
7126                                                                                                                                                                                                                                                                                                                        And the children of Benjamin did so, and took them wives, according to their number, of them that danced, whom they caught: and they went and returned unto their inheritance, and repaired the cities, and dwelt in them.
7127                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel departed thence at that time, every man to his tribe and to his family, and they went out from thence every man to his inheritance.
7128                                                                                                                                                                                                                                                                                                                                                                                                                                                    In those days there was no king in Israel: every man did that which was right in his own eyes.
7129                                                                                                                                                                                                                                                                                                                                       Now it came to pass in the days when the judges ruled, that there was a famine in the land. And a certain man of Bethlehemjudah went to sojourn in the country of Moab, he, and his wife, and his two sons.
7130                                                                                                                                                                                                                                                                                                                               And the name of the man was Elimelech, and the name of his wife Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of Bethlehemjudah. And they came into the country of Moab, and continued there.
7131                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Elimelech Naomi's husband died; and she was left, and her two sons.
7132                                                                                                                                                                                                                                                                                                                                                                                             And they took them wives of the women of Moab; the name of the one was Orpah, and the name of the other Ruth: and they dwelled there about ten years.
7133                                                                                                                                                                                                                                                                                                                                                                                                                                            And Mahlon and Chilion died also both of them; and the woman was left of her two sons and her husband.
7134                                                                                                                                                                                                                                                                                                                                                 Then she arose with her daughters in law, that she might return from the country of Moab: for she had heard in the country of Moab how that the LORD had visited his people in giving them bread.
7135                                                                                                                                                                                                                                                                                                                                                                                        Wherefore she went forth out of the place where she was, and her two daughters in law with her; and they went on the way to return unto the land of Judah.
7136                                                                                                                                                                                                                                                                                                                                                                                  And Naomi said unto her two daughters in law, Go, return each to her mother's house: the LORD deal kindly with you, as ye have dealt with the dead, and with me.
7137                                                                                                                                                                                                                                                                                                                                                                                                The LORD grant you that ye may find rest, each of you in the house of her husband. Then she kissed them; and they lifted up their voice, and wept.
7138                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they said unto her, Surely we will return with thee unto thy people.
7139                                                                                                                                                                                                                                                                                                                                                                                                         And Naomi said, Turn again, my daughters: why will ye go with me? are there yet any more sons in my womb, that they may be your husbands?
7140                                                                                                                                                                                                                                                                                                                                                                   Turn again, my daughters, go your way; for I am too old to have an husband. If I should say, I have hope, if I should have an husband also to night, and should also bear sons;
7141                                                                                                                                                                                                                                                                                                                                            Would ye tarry for them till they were grown? would ye stay for them from having husbands? nay, my daughters; for it grieveth me much for your sakes that the hand of the LORD is gone out against me.
7142                                                                                                                                                                                                                                                                                                                                                                                                                                      And they lifted up their voice, and wept again: and Orpah kissed her mother in law; but Ruth clave unto her.
7143                                                                                                                                                                                                                                                                                                                                                                                                                     And she said, Behold, thy sister in law is gone back unto her people, and unto her gods: return thou after thy sister in law.
7144                                                                                                                                                                                                                                                                                                                                  And Ruth said, Entreat me not to leave thee, or to return from following after thee: for whither thou goest, I will go; and where thou lodgest, I will lodge: thy people shall be my people, and thy God my God:
7145                                                                                                                                                                                                                                                                                                                                                                                                               Where thou diest, will I die, and there will I be buried: the LORD do so to me, and more also, if ought but death part thee and me.
7146                                                                                                                                                                                                                                                                                                                                                                                                                                                      When she saw that she was stedfastly minded to go with her, then she left speaking unto her.
7147                                                                                                                                                                                                                                                                                                                                                                       So they two went until they came to Bethlehem. And it came to pass, when they were come to Bethlehem, that all the city was moved about them, and they said, Is this Naomi?
7148                                                                                                                                                                                                                                                                                                                                                                                                                                       And she said unto them, Call me not Naomi, call me Mara: for the Almighty hath dealt very bitterly with me.
7149                                                                                                                                                                                                                                                                                                                                                                          I went out full and the LORD hath brought me home again empty: why then call ye me Naomi, seeing the LORD hath testified against me, and the Almighty hath afflicted me?
7150                                                                                                                                                                                                                                                                                                                                                               So Naomi returned, and Ruth the Moabitess, her daughter in law, with her, which returned out of the country of Moab: and they came to Bethlehem in the beginning of barley harvest.
7151                                                                                                                                                                                                                                                                                                                                                                                                                              And Naomi had a kinsman of her husband's, a mighty man of wealth, of the family of Elimelech; and his name was Boaz.
7152                                                                                                                                                                                                                                                                                                                                                                   And Ruth the Moabitess said unto Naomi, Let me now go to the field, and glean ears of corn after him in whose sight I shall find grace. And she said unto her, Go, my daughter.
7153                                                                                                                                                                                                                                                                                                                                                                     And she went, and came, and gleaned in the field after the reapers: and her hap was to light on a part of the field belonging unto Boaz, who was of the kindred of Elimelech.
7154                                                                                                                                                                                                                                                                                                                                                                                                               And, behold, Boaz came from Bethlehem, and said unto the reapers, The LORD be with you. And they answered him, The LORD bless thee.
7155                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then said Boaz unto his servant that was set over the reapers, Whose damsel is this?
7156                                                                                                                                                                                                                                                                                                                                                                                                 And the servant that was set over the reapers answered and said, It is the Moabitish damsel that came back with Naomi out of the country of Moab:
7157                                                                                                                                                                                                                                                                                                                                                   And she said, I pray you, let me glean and gather after the reapers among the sheaves: so she came, and hath continued even from the morning until now, that she tarried a little in the house.
7158                                                                                                                                                                                                                                                                                                                                                                                              Then said Boaz unto Ruth, Hearest thou not, my daughter? Go not to glean in another field, neither go from hence, but abide here fast by my maidens:
7159                                                                                                                                                                                                                                                                                                      Let thine eyes be on the field that they do reap, and go thou after them: have I not charged the young men that they shall not touch thee? and when thou art athirst, go unto the vessels, and drink of that which the young men have drawn.
7160                                                                                                                                                                                                                                                                                                                                                            Then she fell on her face, and bowed herself to the ground, and said unto him, Why have I found grace in thine eyes, that thou shouldest take knowledge of me, seeing I am a stranger?
7161                                                                                                                                                                                                                                                 And Boaz answered and said unto her, It hath fully been showed me, all that thou hast done unto thy mother in law since the death of thine husband: and how thou hast left thy father and thy mother, and the land of thy nativity, and art come unto a people which thou knewest not heretofore.
7162                                                                                                                                                                                                                                                                                                                                                                                                                The LORD recompense thy work, and a full reward be given thee of the LORD God of Israel, under whose wings thou art come to trust.
7163                                                                                                                                                                                                                                                                                                                                          Then she said, Let me find favor in thy sight, my lord; for that thou hast comforted me, and for that thou hast spoken friendly unto thine handmaid, though I be not like unto one of thine handmaidens.
7164                                                                                                                                                                                                                                                                                                                      And Boaz said unto her, At mealtime come thou hither, and eat of the bread, and dip thy morsel in the vinegar. And she sat beside the reapers: and he reached her parched corn, and she did eat, and was sufficed, and left.
7165                                                                                                                                                                                                                                                                                                                                                                                                             And when she was risen up to glean, Boaz commanded his young men, saying, Let her glean even among the sheaves, and reproach her not:
7166                                                                                                                                                                                                                                                                                                                                                                                                                           And let fall also some of the handfuls of purpose for her, and leave them, that she may glean them, and rebuke her not.
7167                                                                                                                                                                                                                                                                                                                                                                                                                                   So she gleaned in the field until even, and beat out that she had gleaned: and it was about an ephah of barley.
7168                                                                                                                                                                                                                                                                                                                                                                  And she took it up, and went into the city: and her mother in law saw what she had gleaned: and she brought forth, and gave to her that she had reserved after she was sufficed.
7169                                                                                                                                                                                                                                                                           And her mother in law said unto her, Where hast thou gleaned to day? and where wroughtest thou? blessed be he that did take knowledge of thee. And she showed her mother in law with whom she had wrought, and said, The man's name with whom I wrought to day is Boaz.
7170                                                                                                                                                                                                                                                                                                                           And Naomi said unto her daughter in law, Blessed be he of the LORD, who hath not left off his kindness to the living and to the dead. And Naomi said unto her, The man is near of kin unto us, one of our next kinsmen.
7171                                                                                                                                                                                                                                                                                                                                                                                                                    And Ruth the Moabitess said, He said unto me also, Thou shalt keep fast by my young men, until they have ended all my harvest.
7172                                                                                                                                                                                                                                                                                                                                                                                             And Naomi said unto Ruth her daughter in law, It is good, my daughter, that thou go out with his maidens, that they meet thee not in any other field.
7173                                                                                                                                                                                                                                                                                                                                                                                                           So she kept fast by the maidens of Boaz to glean unto the end of barley harvest and of wheat harvest; and dwelt with her mother in law.
7174                                                                                                                                                                                                                                                                                                                                                                                                                           Then Naomi her mother in law said unto her, My daughter, shall I not seek rest for thee, that it may be well with thee?
7175                                                                                                                                                                                                                                                                                                                                                                                                                     And now is not Boaz of our kindred, with whose maidens thou wast? Behold, he winnoweth barley to night in the threshingfloor.
7176                                                                                                                                                                                                                                                                                                                                                    Wash thyself therefore, and anoint thee, and put thy raiment upon thee, and get thee down to the floor: but make not thyself known unto the man, until he shall have done eating and drinking.
7177                                                                                                                                                                                                                                                                                                                                                  And it shall be, when he lieth down, that thou shalt mark the place where he shall lie, and thou shalt go in, and uncover his feet, and lay thee down; and he will tell thee what thou shalt do.
7178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And she said unto her, All that thou sayest unto me I will do.
7179                                                                                                                                                                                                                                                                                                                                                                                                                                                       And she went down unto the floor, and did according to all that her mother in law bade her.
7180                                                                                                                                                                                                                                                                                                                                                                   And when Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of corn: and she came softly, and uncovered his feet, and laid her down.
7181                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass at midnight, that the man was afraid, and turned himself: and, behold, a woman lay at his feet.
7182                                                                                                                                                                                                                                                                                                                                                                                               And he said, Who art thou? And she answered, I am Ruth thine handmaid: spread therefore thy skirt over thine handmaid; for thou art a near kinsman.
7183                                                                                                                                                                                                                                                                                                                                               And he said, Blessed be thou of the LORD, my daughter: for thou hast showed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich.
7184                                                                                                                                                                                                                                                                                                                                                                                                And now, my daughter, fear not; I will do to thee all that thou requirest: for all the city of my people doth know that thou art a virtuous woman.
7185                                                                                                                                                                                                                                                                                                                                                                                                                                                          And now it is true that I am thy near kinsman: howbeit there is a kinsman nearer than I.
7186                                                                                                                                                                                                                                                Tarry this night, and it shall be in the morning, that if he will perform unto thee the part of a kinsman, well; let him do the kinsman's part: but if he will not do the part of a kinsman to thee, then will I do the part of a kinsman to thee, as the LORD liveth: lie down until the morning.
7187                                                                                                                                                                                                                                                                                                                                                                                      And she lay at his feet until the morning: and she rose up before one could know another. And he said, Let it not be known that a woman came into the floor.
7188                                                                                                                                                                                                                                                                                                                                                                     Also he said, Bring the vail that thou hast upon thee, and hold it. And when she held it, he measured six measures of barley, and laid it on her: and she went into the city.
7189                                                                                                                                                                                                                                                                                                                                                                                                                   And when she came to her mother in law, she said, Who art thou, my daughter? And she told her all that the man had done to her.
7190                                                                                                                                                                                                                                                                                                                                                                                                                                    And she said, These six measures of barley gave he me; for he said to me, Go not empty unto thy mother in law.
7191                                                                                                                                                                                                                                                                                                                                                                                      Then said she, Sit still, my daughter, until thou know how the matter will fall: for the man will not be in rest, until he have finished the thing this day.
7192                                                                                                                                                                                                                                                                                                                                      Then went Boaz up to the gate, and sat him down there: and, behold, the kinsman of whom Boaz spake came by; unto whom he said, Ho, such a one! turn aside, sit down here. And he turned aside, and sat down.
7193                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he took ten men of the elders of the city, and said, Sit ye down here. And they sat down.
7194                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto the kinsman, Naomi, that is come again out of the country of Moab, selleth a parcel of land, which was our brother Elimelech's:
7195                                                                                                                                                                                                                                     And I thought to advertise thee, saying, Buy it before the inhabitants, and before the elders of my people. If thou wilt redeem it, redeem it: but if thou wilt not redeem it, then tell me, that I may know: for there is none to redeem it beside thee; and I am after thee. And he said, I will redeem it.
7196                                                                                                                                                                                                                                                                                                                                                    Then said Boaz, What day thou buyest the field of the hand of Naomi, thou must buy it also of Ruth the Moabitess, the wife of the dead, to raise up the name of the dead upon his inheritance.
7197                                                                                                                                                                                                                                                                                                                                                                                                    And the kinsman said, I cannot redeem it for myself, lest I mar mine own inheritance: redeem thou my right to thyself; for I cannot redeem it.
7198                                                                                                                                                                                                                                                                                                                            Now this was the manner in former time in Israel concerning redeeming and concerning changing, for to confirm all things; a man plucked off his shoe, and gave it to his neighbor: and this was a testimony in Israel.
7199                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore the kinsman said unto Boaz, Buy it for thee. So he drew off his shoe.
7200                                                                                                                                                                                                                                                                                                                                                    And Boaz said unto the elders, and unto all the people, Ye are witnesses this day, that I have bought all that was Elimelech's, and all that was Chilion's and Mahlon's, of the hand of Naomi.
7201                                                                                                                                                                                                                                                                              Moreover Ruth the Moabitess, the wife of Mahlon, have I purchased to be my wife, to raise up the name of the dead upon his inheritance, that the name of the dead be not cut off from among his brethren, and from the gate of his place: ye are witnesses this day.
7202                                                                                                                                                                                                                                                                         And all the people that were in the gate, and the elders, said, We are witnesses. The LORD make the woman that is come into thine house like Rachel and like Leah, which two did build the house of Israel: and do thou worthily in Ephratah, and be famous in Bethlehem:
7203                                                                                                                                                                                                                                                                                                                                                                                                        And let thy house be like the house of Pharez, whom Tamar bare unto Judah, of the seed which the LORD shall give thee of this young woman.
7204                                                                                                                                                                                                                                                                                                                                                                                                                          So Boaz took Ruth, and she was his wife: and when he went in unto her, the LORD gave her conception, and she bare a son.
7205                                                                                                                                                                                                                                                                                                                                                                                                   And the women said unto Naomi, Blessed be the LORD, which hath not left thee this day without a kinsman, that his name may be famous in Israel.
7206                                                                                                                                                                                                                                                                                                                                                           And he shall be unto thee a restorer of thy life, and a nourisher of thine old age: for thy daughter in law, which loveth thee, which is better to thee than seven sons, hath born him.
7207                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Naomi took the child, and laid it in her bosom, and became nurse unto it.
7208                                                                                                                                                                                                                                                                                                                                                                                  And the women her neighbors gave it a name, saying, There is a son born to Naomi; and they called his name Obed: he is the father of Jesse, the father of David.
7209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now these are the generations of Pharez: Pharez begat Hezron,
7210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hezron begat Ram, and Ram begat Amminadab,
7211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Amminadab begat Nahshon, and Nahshon begat Salmon,
7212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Salmon begat Boaz, and Boaz begat Obed,
7213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Obed begat Jesse, and Jesse begat David.
7214                                                                                                                                                                                                                                                                                                                                                                Now there was a certain man of Ramathaimzophim, of mount Ephraim, and his name was Elkanah, the son of Jeroham, the son of Elihu, the son of Tohu, the son of Zuph, an Ephrathite:
7215                                                                                                                                                                                                                                                                                                                                                                                                  And he had two wives; the name of the one was Hannah, and the name of the other Peninnah: and Peninnah had children, but Hannah had no children.
7216                                                                                                                                                                                                                                                                                                                                                      And this man went up out of his city yearly to worship and to sacrifice unto the LORD of hosts in Shiloh. And the two sons of Eli, Hophni and Phinehas, the priests of the LORD, were there.
7217                                                                                                                                                                                                                                                                                                                                                                                                                        And when the time was that Elkanah offered, he gave to Peninnah his wife, and to all her sons and her daughters, portions:
7218                                                                                                                                                                                                                                                                                                                                                                                                                                                 But unto Hannah he gave a worthy portion; for he loved Hannah: but the LORD had shut up her womb.
7219                                                                                                                                                                                                                                                                                                                                                                                                                                            And her adversary also provoked her sore, for to make her fret, because the LORD had shut up her womb.
7220                                                                                                                                                                                                                                                                                                                                                                                                               And as he did so year by year, when she went up to the house of the LORD, so she provoked her; therefore she wept, and did not eat.
7221                                                                                                                                                                                                                                                                                                                                                                                     Then said Elkanah her husband to her, Hannah, why weepest thou? and why eatest thou not? and why is thy heart grieved? am not I better to thee than ten sons?
7222                                                                                                                                                                                                                                                                                                                                                                                               So Hannah rose up after they had eaten in Shiloh, and after they had drunk. Now Eli the priest sat upon a seat by a post of the temple of the LORD.
7223                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And she was in bitterness of soul, and prayed unto the LORD, and wept sore.
7224                                                                                                                                                                                                                            And she vowed a vow, and said, O LORD of hosts, if thou wilt indeed look on the affliction of thine handmaid, and remember me, and not forget thine handmaid, but wilt give unto thine handmaid a man child, then I will give him unto the LORD all the days of his life, and there shall no razor come upon his head.
7225                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as she continued praying before the LORD, that Eli marked her mouth.
7226                                                                                                                                                                                                                                                                                                                                                                                                                 Now Hannah, she spake in her heart; only her lips moved, but her voice was not heard: therefore Eli thought she had been drunken.
7227                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee.
7228                                                                                                                                                                                                                                                                                                                                                                           And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the LORD.
7229                                                                                                                                                                                                                                                                                                                                                                                                                     Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto.
7230                                                                                                                                                                                                                                                                                                                                                                                                                               Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him.
7231                                                                                                                                                                                                                                                                                                                                                                                                            And she said, Let thine handmaid find grace in thy sight. So the woman went her way, and did eat, and her countenance was no more sad.
7232                                                                                                                                                                                                                                                                                                                                                             And they rose up in the morning early, and worshipped before the LORD, and returned, and came to their house to Ramah: and Elkanah knew Hannah his wife; and the LORD remembered her.
7233                                                                                                                                                                                                                                                                                                                                                                Wherefore it came to pass, when the time was come about after Hannah had conceived, that she bare a son, and called his name Samuel, saying, Because I have asked him of the LORD.
7234                                                                                                                                                                                                                                                                                                                                                                                                                                         And the man Elkanah, and all his house, went up to offer unto the LORD the yearly sacrifice, and his vow.
7235                                                                                                                                                                                                                                                                                                                                                       But Hannah went not up; for she said unto her husband, I will not go up until the child be weaned, and then I will bring him, that he may appear before the LORD, and there abide for ever.
7236                                                                                                                                                                                                                                                                                                                                             And Elkanah her husband said unto her, Do what seemeth thee good; tarry until thou have weaned him; only the LORD establish his word. So the woman abode, and gave her son suck until she weaned him.
7237                                                                                                                                                                                                                                                                                                                                          And when she had weaned him, she took him up with her, with three bullocks, and one ephah of flour, and a bottle of wine, and brought him unto the house of the LORD in Shiloh: and the child was young.
7238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they slew a bullock, and brought the child to Eli.
7239                                                                                                                                                                                                                                                                                                                                                                                                                             And she said, Oh my lord, as thy soul liveth, my lord, I am the woman that stood by thee here, praying unto the LORD.
7240                                                                                                                                                                                                                                                                                                                                                                                                                                                             For this child I prayed; and the LORD hath given me my petition which I asked of him:
7241                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore also I have lent him to the LORD; as long as he liveth he shall be lent to the LORD. And he worshipped the LORD there.
7242                                                                                                                                                                                                                                                                                                                                                                        And Hannah prayed, and said, My heart rejoiceth in the LORD, mine horn is exalted in the LORD: my mouth is enlarged over mine enemies; because I rejoice in thy salvation.
7243                                                                                                                                                                                                                                                                                                                                                                                                                                            There is none holy as the LORD: for there is none beside thee: neither is there any rock like our God.
7244                                                                                                                                                                                                                                                                                                                                                                                                  Talk no more so exceeding proudly; let not arrogancy come out of your mouth: for the LORD is a God of knowledge, and by him actions are weighed.
7245                                                                                                                                                                                                                                                                                                                                                                                                                                                           The bows of the mighty men are broken, and they that stumbled are girded with strength.
7246                                                                                                                                                                                                                                                                                                                                                                   They that were full have hired out themselves for bread; and they that were hungry ceased: so that the barren hath born seven; and she that hath many children is waxed feeble.
7247                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD killeth, and maketh alive: he bringeth down to the grave, and bringeth up.
7248                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD maketh poor, and maketh rich: he bringeth low, and lifteth up.
7249                                                                                                                                                                                                                                                                                                   He raiseth up the poor out of the dust, and lifteth up the beggar from the dunghill, to set them among princes, and to make them inherit the throne of glory: for the pillars of the earth are the LORD's, and he hath set the world upon them.
7250                                                                                                                                                                                                                                                                                                                                                                                                                            He will keep the feet of his saints, and the wicked shall be silent in darkness; for by strength shall no man prevail.
7251                                                                                                                                                                                                                                                                                                                        The adversaries of the LORD shall be broken to pieces; out of heaven shall he thunder upon them: the LORD shall judge the ends of the earth; and he shall give strength unto his king, and exalt the horn of his anointed.
7252                                                                                                                                                                                                                                                                                                                                                                                                                                           And Elkanah went to Ramah to his house. And the child did minister unto the LORD before Eli the priest.
7253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now the sons of Eli were sons of Belial; they knew not the LORD.
7254                                                                                                                                                                                                                                                                                                                                                       And the priest's custom with the people was, that, when any man offered sacrifice, the priest's servant came, while the flesh was in seething, with a fleshhook of three teeth in his hand;
7255                                                                                                                                                                                                                                                                                                                                                     And he struck it into the pan, or kettle, or caldron, or pot; all that the fleshhook brought up the priest took for himself. So they did in Shiloh unto all the Israelites that came thither.
7256                                                                                                                                                                                                                                                                                                                                                           Also before they burnt the fat, the priest's servant came, and said to the man that sacrificed, Give flesh to roast for the priest; for he will not have sodden flesh of thee, but raw.
7257                                                                                                                                                                                                                                                                                                                         And if any man said unto him, Let them not fail to burn the fat presently, and then take as much as thy soul desireth; then he would answer him, Nay; but thou shalt give it me now: and if not, I will take it by force.
7258                                                                                                                                                                                                                                                                                                                                                                                                                                     Wherefore the sin of the young men was very great before the LORD: for men abhorred the offering of the LORD.
7259                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But Samuel ministered before the LORD, being a child, girded with a linen ephod.
7260                                                                                                                                                                                                                                                                                                                                                                                             Moreover his mother made him a little coat, and brought it to him from year to year, when she came up with her husband to offer the yearly sacrifice.
7261                                                                                                                                                                                                                                                                                                                                                                                  And Eli blessed Elkanah and his wife, and said, The LORD give thee seed of this woman for the loan which is lent to the LORD. And they went unto their own home.
7262                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD visited Hannah, so that she conceived, and bare three sons and two daughters. And the child Samuel grew before the LORD.
7263                                                                                                                                                                                                                                                                                                                                                                          Now Eli was very old, and heard all that his sons did unto all Israel; and how they lay with the women that assembled at the door of the tabernacle of the congregation.
7264                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said unto them, Why do ye such things? for I hear of your evil dealings by all this people.
7265                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nay, my sons; for it is no good report that I hear: ye make the LORD's people to transgress.
7266                                                                                                                                                                                                                                                                                                                     If one man sin against another, the judge shall judge him: but if a man sin against the LORD, who shall entreat for him? Notwithstanding they hearkened not unto the voice of their father, because the LORD would slay them.
7267                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the child Samuel grew on, and was in favor both with the LORD, and also with men.
7268                                                                                                                                                                                                                                                                                                                                                                      And there came a man of God unto Eli, and said unto him, Thus saith the LORD, Did I plainly appear unto the house of thy father, when they were in Egypt in Pharaoh's house?
7269                                                                                                                                                                                                                                                                                                And did I choose him out of all the tribes of Israel to be my priest, to offer upon mine altar, to burn incense, to wear an ephod before me? and did I give unto the house of thy father all the offerings made by fire of the children of Israel?
7270                                                                                                                                                                                                                                                                                                                               Wherefore kick ye at my sacrifice and at mine offering, which I have commanded in my habitation; and honorest thy sons above me, to make yourselves fat with the chiefest of all the offerings of Israel my people?
7271                                                                                                                                                                                                                                                                            Wherefore the LORD God of Israel saith, I said indeed that thy house, and the house of thy father, should walk before me for ever: but now the LORD saith, Be it far from me; for them that honor me I will honor, and they that despise me shall be lightly esteemed.
7272                                                                                                                                                                                                                                                                                                                                                                                                       Behold, the days come, that I will cut off thine arm, and the arm of thy father's house, that there shall not be an old man in thine house.
7273                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt see an enemy in my habitation, in all the wealth which God shall give Israel: and there shall not be an old man in thine house for ever.
7274                                                                                                                                                                                                                                                                                                                                              And the man of thine, whom I shall not cut off from mine altar, shall be to consume thine eyes, and to grieve thine heart: and all the increase of thine house shall die in the flower of their age.
7275                                                                                                                                                                                                                                                                                                                                                                                                            And this shall be a sign unto thee, that shall come upon thy two sons, on Hophni and Phinehas; in one day they shall die both of them.
7276                                                                                                                                                                                                                                                                                                                                              And I will raise me up a faithful priest, that shall do according to that which is in mine heart and in my mind: and I will build him a sure house; and he shall walk before mine anointed for ever.
7277                                                                                                                                                                                                                                                                                            And it shall come to pass, that every one that is left in thine house shall come and crouch to him for a piece of silver and a morsel of bread, and shall say, Put me, I pray thee, into one of the priests' offices, that I may eat a piece of bread.
7278                                                                                                                                                                                                                                                                                                                                                                                                          And the child Samuel ministered unto the LORD before Eli. And the word of the LORD was precious in those days; there was no open vision.
7279                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass at that time, when Eli was laid down in his place, and his eyes began to wax dim, that he could not see;
7280                                                                                                                                                                                                                                                                                                                                                                                                                          And ere the lamp of God went out in the temple of the LORD, where the ark of God was, and Samuel was laid down to sleep;
7281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That the LORD called Samuel: and he answered, Here am I.
7282                                                                                                                                                                                                                                                                                                                                                                                                              And he ran unto Eli, and said, Here am I; for thou calledst me. And he said, I called not; lie down again. And he went and lay down.
7283                                                                                                                                                                                                                                                                                                                                                                      And the LORD called yet again, Samuel. And Samuel arose and went to Eli, and said, Here am I; for thou didst call me. And he answered, I called not, my son; lie down again.
7284                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now Samuel did not yet know the LORD, neither was the word of the LORD yet revealed unto him.
7285                                                                                                                                                                                                                                                                                                                                                                 And the LORD called Samuel again the third time. And he arose and went to Eli, and said, Here am I; for thou didst call me. And Eli perceived that the LORD had called the child.
7286                                                                                                                                                                                                                                                                                                                                                              Therefore Eli said unto Samuel, Go, lie down: and it shall be, if he call thee, that thou shalt say, Speak, LORD; for thy servant heareth. So Samuel went and lay down in his place.
7287                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD came, and stood, and called as at other times, Samuel, Samuel. Then Samuel answered, Speak; for thy servant heareth.
7288                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said to Samuel, Behold, I will do a thing in Israel, at which both the ears of every one that heareth it shall tingle.
7289                                                                                                                                                                                                                                                                                                                                                                                                                In that day I will perform against Eli all things which I have spoken concerning his house: when I begin, I will also make an end.
7290                                                                                                                                                                                                                                                                                                                                                                                    For I have told him that I will judge his house for ever for the iniquity which he knoweth; because his sons made themselves vile, and he restrained them not.
7291                                                                                                                                                                                                                                                                                                                                                                                                      And therefore I have sworn unto the house of Eli, that the iniquity of Eli's house shall not be purged with sacrifice nor offering for ever.
7292                                                                                                                                                                                                                                                                                                                                                                                                                        And Samuel lay until the morning, and opened the doors of the house of the LORD. And Samuel feared to show Eli the vision.
7293                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Eli called Samuel, and said, Samuel, my son. And he answered, Here am I.
7294                                                                                                                                                                                                                                                                                                                                     And he said, What is the thing that the LORD hath said unto thee? I pray thee hide it not from me: God do so to thee, and more also, if thou hide any thing from me of all the things that he said unto thee.
7295                                                                                                                                                                                                                                                                                                                                                                                                                          And Samuel told him every whit, and hid nothing from him. And he said, It is the LORD: let him do what seemeth him good.
7296                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Samuel grew, and the LORD was with him, and did let none of his words fall to the ground.
7297                                                                                                                                                                                                                                                                                                                                                                                                                                           And all Israel from Dan even to Beersheba knew that Samuel was established to be a prophet of the LORD.
7298                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD appeared again in Shiloh: for the LORD revealed himself to Samuel in Shiloh by the word of the LORD.
7299                                                                                                                                                                                                                                                                                                                                                                              And the word of Samuel came to all Israel. Now Israel went out against the Philistines to battle, and pitched beside Ebenezer: and the Philistines pitched in Aphek.
7300                                                                                                                                                                                                                                                                                                                                               And the Philistines put themselves in array against Israel: and when they joined battle, Israel was smitten before the Philistines: and they slew of the army in the field about four thousand men.
7301                                                                                                                                                                                                                                                   And when the people were come into the camp, the elders of Israel said, Wherefore hath the LORD smitten us to day before the Philistines? Let us fetch the ark of the covenant of the LORD out of Shiloh unto us, that, when it cometh among us, it may save us out of the hand of our enemies.
7302                                                                                                                                                                                                                                                                                                  So the people sent to Shiloh, that they might bring from thence the ark of the covenant of the LORD of hosts, which dwelleth between the cherubim: and the two sons of Eli, Hophni and Phinehas, were there with the ark of the covenant of God.
7303                                                                                                                                                                                                                                                                                                                                                                                                             And when the ark of the covenant of the LORD came into the camp, all Israel shouted with a great shout, so that the earth rang again.
7304                                                                                                                                                                                                                                                                                                                                     And when the Philistines heard the noise of the shout, they said, What meaneth the noise of this great shout in the camp of the Hebrews? And they understood that the ark of the LORD was come into the camp.
7305                                                                                                                                                                                                                                                                                                                                                                                           And the Philistines were afraid, for they said, God is come into the camp. And they said, Woe unto us! for there hath not been such a thing heretofore.
7306                                                                                                                                                                                                                                                                                                                                                                                       Woe unto us! who shall deliver us out of the hand of these mighty Gods? these are the Gods that smote the Egyptians with all the plagues in the wilderness.
7307                                                                                                                                                                                                                                                                                                                                                                                Be strong and quit yourselves like men, O ye Philistines, that ye be not servants unto the Hebrews, as they have been to you: quit yourselves like men, and fight.
7308                                                                                                                                                                                                                                                                                                                                                                And the Philistines fought, and Israel was smitten, and they fled every man into his tent: and there was a very great slaughter; for there fell of Israel thirty thousand footmen.
7309                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the ark of God was taken; and the two sons of Eli, Hophni and Phinehas, were slain.
7310                                                                                                                                                                                                                                                                                                                                                                                                             And there ran a man of Benjamin out of the army, and came to Shiloh the same day with his clothes rent, and with earth upon his head.
7311                                                                                                                                                                                                                                                                                                                                                           And when he came, lo, Eli sat upon a seat by the wayside watching: for his heart trembled for the ark of God. And when the man came into the city, and told it, all the city cried out.
7312                                                                                                                                                                                                                                                                                                                                                                                                            And when Eli heard the noise of the crying, he said, What meaneth the noise of this tumult? And the man came in hastily, and told Eli.
7313                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now Eli was ninety and eight years old; and his eyes were dim, that he could not see.
7314                                                                                                                                                                                                                                                                                                                                                                                                         And the man said unto Eli, I am he that came out of the army, and I fled to day out of the army. And he said, What is there done, my son?
7315                                                                                                                                                                                                                                                                                                                       And the messenger answered and said, Israel is fled before the Philistines, and there hath been also a great slaughter among the people, and thy two sons also, Hophni and Phinehas, are dead, and the ark of God is taken.
7316                                                                                                                                                                                                                                                                                                            And it came to pass, when he made mention of the ark of God, that he fell from off the seat backward by the side of the gate, and his neck brake, and he died: for he was an old man, and heavy. And he had judged Israel forty years.
7317                                                                                                                                                                                                                                                                                  And his daughter in law, Phinehas' wife, was with child, near to be delivered: and when she heard the tidings that the ark of God was taken, and that her father in law and her husband were dead, she bowed herself and travailed; for her pains came upon her.
7318                                                                                                                                                                                                                                                                                                                                                                                   And about the time of her death the women that stood by her said unto her, Fear not; for thou hast born a son. But she answered not, neither did she regard it.
7319                                                                                                                                                                                                                                                                                                                                                                                   And she named the child Ichabod, saying, The glory is departed from Israel: because the ark of God was taken, and because of her father in law and her husband.
7320                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she said, The glory is departed from Israel: for the ark of God is taken.
7321                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Philistines took the ark of God, and brought it from Ebenezer unto Ashdod.
7322                                                                                                                                                                                                                                                                                                                                                                                                                                           When the Philistines took the ark of God, they brought it into the house of Dagon, and set it by Dagon.
7323                                                                                                                                                                                                                                                                                                                                                           And when they of Ashdod arose early on the morrow, behold, Dagon was fallen upon his face to the earth before the ark of the LORD. And they took Dagon, and set him in his place again.
7324                                                                                                                                                                                                                                                                                 And when they arose early on the morrow morning, behold, Dagon was fallen upon his face to the ground before the ark of the LORD; and the head of Dagon and both the palms of his hands were cut off upon the threshold; only the stump of Dagon was left to him.
7325                                                                                                                                                                                                                                                                                                                                                                                                            Therefore neither the priests of Dagon, nor any that come into Dagon's house, tread on the threshold of Dagon in Ashdod unto this day.
7326                                                                                                                                                                                                                                                                                                                                                                                                   But the hand of the LORD was heavy upon them of Ashdod, and he destroyed them, and smote them with emerods, even Ashdod and the coasts thereof.
7327                                                                                                                                                                                                                                                                                                                                                                             And when the men of Ashdod saw that it was so, they said, The ark of the God of Israel shall not abide with us: for his hand is sore upon us, and upon Dagon our god.
7328                                                                                                                                                                                                                                                           They sent therefore and gathered all the lords of the Philistines unto them, and said, What shall we do with the ark of the God of Israel? And they answered, Let the ark of the God of Israel be carried about unto Gath. And they carried the ark of the God of Israel about thither.
7329                                                                                                                                                                                                                                                                                                                And it was so, that, after they had carried it about, the hand of the LORD was against the city with a very great destruction: and he smote the men of the city, both small and great, and they had emerods in their secret parts.
7330                                                                                                                                                                                                                                                                                                                   Therefore they sent the ark of God to Ekron. And it came to pass, as the ark of God came to Ekron, that the Ekronites cried out, saying, They have brought about the ark of the God of Israel to us, to slay us and our people.
7331                                                                                                                                                                                                                                               So they sent and gathered together all the lords of the Philistines, and said, Send away the ark of the God of Israel, and let it go again to his own place, that it slay us not, and our people: for there was a deadly destruction throughout all the city; the hand of God was very heavy there.
7332                                                                                                                                                                                                                                                                                                                                                                                                                                               And the men that died not were smitten with the emerods: and the cry of the city went up to heaven.
7333                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the ark of the LORD was in the country of the Philistines seven months.
7334                                                                                                                                                                                                                                                                                                                                                                                    And the Philistines called for the priests and the diviners, saying, What shall we do to the ark of the LORD? tell us wherewith we shall send it to his place.
7335                                                                                                                                                                                                                                                                                                                       And they said, If ye send away the ark of the God of Israel, send it not empty; but in any wise return him a trespass offering: then ye shall be healed, and it shall be known to you why his hand is not removed from you.
7336                                                                                                                                                                                                                                                                                            Then said they, What shall be the trespass offering which we shall return to him? They answered, Five golden emerods, and five golden mice, according to the number of the lords of the Philistines: for one plague was on you all, and on your lords.
7337                                                                                                                                                                                                                                                                                                    Wherefore ye shall make images of your emerods, and images of your mice that mar the land; and ye shall give glory unto the God of Israel: peradventure he will lighten his hand from off you, and from off your gods, and from off your land.
7338                                                                                                                                                                                                                                                                                                                                                       Wherefore then do ye harden your hearts, as the Egyptians and Pharaoh hardened their hearts? when he had wrought wonderfully among them, did they not let the people go, and they departed?
7339                                                                                                                                                                                                                                                                                                                                                                                    Now therefore make a new cart, and take two milch kine, on which there hath come no yoke, and tie the kine to the cart, and bring their calves home from them:
7340                                                                                                                                                                                                                                                                                                                                               And take the ark of the LORD, and lay it upon the cart; and put the jewels of gold, which ye return him for a trespass offering, in a coffer by the side thereof; and send it away, that it may go.
7341                                                                                                                                                                                                                                                                                                                              And see, if it goeth up by the way of his own coast to Bethshemesh, then he hath done us this great evil: but if not, then we shall know that it is not his hand that smote us: it was a chance that happened to us.
7342                                                                                                                                                                                                                                                                                                                                                                                                                                         And the men did so; and took two milch kine, and tied them to the cart, and shut up their calves at home:
7343                                                                                                                                                                                                                                                                                                                                                                                                                            And they laid the ark of the LORD upon the cart, and the coffer with the mice of gold and the images of their emerods.
7344                                                                                                                                                                                                                                                                                            And the kine took the straight way to the way of Bethshemesh, and went along the highway, lowing as they went, and turned not aside to the right hand or to the left; and the lords of the Philistines went after them unto the border of Bethshemesh.
7345                                                                                                                                                                                                                                                                                                                                                                                                   And they of Bethshemesh were reaping their wheat harvest in the valley: and they lifted up their eyes, and saw the ark, and rejoiced to see it.
7346                                                                                                                                                                                                                                                                                                                                              And the cart came into the field of Joshua, a Bethshemite, and stood there, where there was a great stone: and they clave the wood of the cart, and offered the kine a burnt offering unto the LORD.
7347                                                                                                                                                                                                                                                                                        And the Levites took down the ark of the LORD, and the coffer that was with it, wherein the jewels of gold were, and put them on the great stone: and the men of Bethshemesh offered burnt offerings and sacrificed sacrifices the same day unto the LORD.
7348                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when the five lords of the Philistines had seen it, they returned to Ekron the same day.
7349                                                                                                                                                                                                                                                                                                                                                                And these are the golden emerods which the Philistines returned for a trespass offering unto the LORD; for Ashdod one, for Gaza one, for Askelon one, for Gath one, for Ekron one;
7350                                                                                                                                                                                                                         And the golden mice, according to the number of all the cities of the Philistines belonging to the five lords, both of fenced cities, and of country villages, even unto the great stone of Abel, whereon they set down the ark of the LORD: which stone remaineth unto this day in the field of Joshua, the Bethshemite.
7351                                                                                                                                                                                                                                                                                    And he smote the men of Bethshemesh, because they had looked into the ark of the LORD, even he smote of the people fifty thousand and threescore and ten men: and the people lamented, because the LORD had smitten many of the people with a great slaughter.
7352                                                                                                                                                                                                                                                                                                                                                                                                                              And the men of Bethshemesh said, Who is able to stand before this holy LORD God? and to whom shall he go up from us?
7353                                                                                                                                                                                                                                                                                                                                                                               And they sent messengers to the inhabitants of Kirjathjearim, saying, The Philistines have brought again the ark of the LORD; come ye down, and fetch it up to you.
7354                                                                                                                                                                                                                                                                                                                                                         And the men of Kirjathjearim came, and fetched up the ark of the LORD, and brought it into the house of Abinadab in the hill, and sanctified Eleazar his son to keep the ark of the LORD.
7355                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, while the ark abode in Kirjathjearim, that the time was long; for it was twenty years: and all the house of Israel lamented after the LORD.
7356                                                                                                                                                                                                                                                    And Samuel spake unto all the house of Israel, saying, If ye do return unto the LORD with all your hearts, then put away the strange gods and Ashtaroth from among you, and prepare your hearts unto the LORD, and serve him only: and he will deliver you out of the hand of the Philistines.
7357                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the children of Israel did put away Baalim and Ashtaroth, and served the LORD only.
7358                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Samuel said, Gather all Israel to Mizpeh, and I will pray for you unto the LORD.
7359                                                                                                                                                                                                                                                                                                                             And they gathered together to Mizpeh, and drew water, and poured it out before the LORD, and fasted on that day, and said there, We have sinned against the LORD. And Samuel judged the children of Israel in Mizpeh.
7360                                                                                                                                                                                                                                                                                                                  And when the Philistines heard that the children of Israel were gathered together to Mizpeh, the lords of the Philistines went up against Israel. And when the children of Israel heard it, they were afraid of the Philistines.
7361                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel said to Samuel, Cease not to cry unto the LORD our God for us, that he will save us out of the hand of the Philistines.
7362                                                                                                                                                                                                                                                                                                                                                                                      And Samuel took a sucking lamb, and offered it for a burnt offering wholly unto the LORD: and Samuel cried unto the LORD for Israel; and the LORD heard him.
7363                                                                                                                                                                                                                                                                                                    And as Samuel was offering up the burnt offering, the Philistines drew near to battle against Israel: but the LORD thundered with a great thunder on that day upon the Philistines, and discomfited them; and they were smitten before Israel.
7364                                                                                                                                                                                                                                                                                                                                                                                                                             And the men of Israel went out of Mizpeh, and pursued the Philistines, and smote them, until they came under Bethcar.
7365                                                                                                                                                                                                                                                                                                                                                                                                       Then Samuel took a stone, and set it between Mizpeh and Shen, and called the name of it Ebenezer, saying, Hitherto hath the LORD helped us.
7366                                                                                                                                                                                                                                                                                                                                                                                     So the Philistines were subdued, and they came no more into the coast of Israel: and the hand of the LORD was against the Philistines all the days of Samuel.
7367                                                                                                                                                                                                                                                                                                And the cities which the Philistines had taken from Israel were restored to Israel, from Ekron even unto Gath; and the coasts thereof did Israel deliver out of the hands of the Philistines. And there was peace between Israel and the Amorites.
7368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Samuel judged Israel all the days of his life.
7369                                                                                                                                                                                                                                                                                                                                                                                                                                And he went from year to year in circuit to Bethel, and Gilgal, and Mizpeh, and judged Israel in all those places.
7370                                                                                                                                                                                                                                                                                                                                                                                                                      And his return was to Ramah; for there was his house; and there he judged Israel; and there he built an altar unto the LORD.
7371                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when Samuel was old, that he made his sons judges over Israel.
7372                                                                                                                                                                                                                                                                                                                                                                                                                                         Now the name of his firstborn was Joel; and the name of his second, Abiah: they were judges in Beersheba.
7373                                                                                                                                                                                                                                                                                                                                                                                                                                       And his sons walked not in his ways, but turned aside after lucre, and took bribes, and perverted judgment.
7374                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then all the elders of Israel gathered themselves together, and came to Samuel unto Ramah,
7375                                                                                                                                                                                                                                                                                                                                                                                                                  And said unto him, Behold, thou art old, and thy sons walk not in thy ways: now make us a king to judge us like all the nations.
7376                                                                                                                                                                                                                                                                                                                                                                                                                                     But the thing displeased Samuel, when they said, Give us a king to judge us. And Samuel prayed unto the LORD.
7377                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Samuel, Hearken unto the voice of the people in all that they say unto thee: for they have not rejected thee, but they have rejected me, that I should not reign over them.
7378                                                                                                                                                                                                                                                                                                                                          According to all the works which they have done since the day that I brought them up out of Egypt even unto this day, wherewith they have forsaken me, and served other gods, so do they also unto thee.
7379                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore hearken unto their voice: howbeit yet protest solemnly unto them, and show them the manner of the king that shall reign over them.
7380                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Samuel told all the words of the LORD unto the people that asked of him a king.
7381                                                                                                                                                                                                                                                                                                                               And he said, This will be the manner of the king that shall reign over you: He will take your sons, and appoint them for himself, for his chariots, and to be his horsemen; and some shall run before his chariots.
7382                                                                                                                                                                                                                                                                                                                                    And he will appoint him captains over thousands, and captains over fifties; and will set them to ear his ground, and to reap his harvest, and to make his instruments of war, and instruments of his chariots.
7383                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he will take your daughters to be confectionaries, and to be cooks, and to be bakers.
7384                                                                                                                                                                                                                                                                                                                                                                                                                      And he will take your fields, and your vineyards, and your oliveyards, even the best of them, and give them to his servants.
7385                                                                                                                                                                                                                                                                                                                                                                                                                                    And he will take the tenth of your seed, and of your vineyards, and give to his officers, and to his servants.
7386                                                                                                                                                                                                                                                                                                                                                                                                                 And he will take your menservants, and your maidservants, and your goodliest young men, and your asses, and put them to his work.
7387                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He will take the tenth of your sheep: and ye shall be his servants.
7388                                                                                                                                                                                                                                                                                                                                                                                                                 And ye shall cry out in that day because of your king which ye shall have chosen you; and the LORD will not hear you in that day.
7389                                                                                                                                                                                                                                                                                                                                                                                                                                 Nevertheless the people refused to obey the voice of Samuel; and they said, Nay; but we will have a king over us;
7390                                                                                                                                                                                                                                                                                                                                                                                                                            That we also may be like all the nations; and that our king may judge us, and go out before us, and fight our battles.
7391                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Samuel heard all the words of the people, and he rehearsed them in the ears of the LORD.
7392                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said to Samuel, Hearken unto their voice, and make them a king. And Samuel said unto the men of Israel, Go ye every man unto his city.
7393                                                                                                                                                                                                                                                                                                                                                                            Now there was a man of Benjamin, whose name was Kish, the son of Abiel, the son of Zeror, the son of Bechorath, the son of Aphiah, a Benjamite, a mighty man of power.
7394                                                                                                                                                                                                                                                                                                                            And he had a son, whose name was Saul, a choice young man, and a goodly: and there was not among the children of Israel a goodlier person than he: from his shoulders and upward he was higher than any of the people.
7395                                                                                                                                                                                                                                                                                                                                                                                               And the asses of Kish Saul's father were lost. And Kish said to Saul his son, Take now one of the servants with thee, and arise, go seek the asses.
7396                                                                                                                                                                                                                                                                                           And he passed through mount Ephraim, and passed through the land of Shalisha, but they found them not: then they passed through the land of Shalim, and there they were not: and he passed through the land of the Benjamites, but they found them not.
7397                                                                                                                                                                                                                                                                                                                                                             And when they were come to the land of Zuph, Saul said to his servant that was with him, Come, and let us return; lest my father leave caring for the asses, and take thought for us.
7398                                                                                                                                                                                                                                                                                                                          And he said unto him, Behold now, there is in this city a man of God, and he is an honorable man; all that he saith cometh surely to pass: now let us go thither; peradventure he can show us our way that we should go.
7399                                                                                                                                                                                                                                                                                                                                                    Then said Saul to his servant, But, behold, if we go, what shall we bring the man? for the bread is spent in our vessels, and there is not a present to bring to the man of God: what have we?
7400                                                                                                                                                                                                                                                                                                                                                                         And the servant answered Saul again, and said, Behold, I have here at hand the fourth part of a shekel of silver: that will I give to the man of God, to tell us our way.
7401                                                                                                                                                                                                                                                                                                                                                                      (Beforetime in Israel, when a man went to inquire of God, thus he spake, Come, and let us go to the seer: for he that is now called a Prophet was beforetime called a Seer.)
7402                                                                                                                                                                                                                                                                                                                                                                                                                                   Then said Saul to his servant, Well said; come, let us go. So they went unto the city where the man of God was.
7403                                                                                                                                                                                                                                                                                                                                                                                                                 And as they went up the hill to the city, they found young maidens going out to draw water, and said unto them, Is the seer here?
7404                                                                                                                                                                                                                                                                                                                                                               And they answered them, and said, He is; behold, he is before you: make haste now, for he came to day to the city; for there is a sacrifice of the people to day in the high place:
7405                                                                                                                                                                                                                                            As soon as ye be come into the city, ye shall straightway find him, before he go up to the high place to eat: for the people will not eat until he come, because he doth bless the sacrifice; and afterwards they eat that be bidden. Now therefore get you up; for about this time ye shall find him.
7406                                                                                                                                                                                                                                                                                                                                                                                                      And they went up into the city: and when they were come into the city, behold, Samuel came out against them, for to go up to the high place.
7407                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now the LORD had told Samuel in his ear a day before Saul came, saying,
7408                                                                                                                                                                                                                                                                  To morrow about this time I will send thee a man out of the land of Benjamin, and thou shalt anoint him to be captain over my people Israel, that he may save my people out of the hand of the Philistines: for I have looked upon my people, because their cry is come unto me.
7409                                                                                                                                                                                                                                                                                                                                                                                                                   And when Samuel saw Saul, the LORD said unto him, Behold the man whom I spake to thee of! this same shall reign over my people.
7410                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Saul drew near to Samuel in the gate, and said, Tell me, I pray thee, where the seer's house is.
7411                                                                                                                                                                                                                                                                                                                                         And Samuel answered Saul, and said, I am the seer: go up before me unto the high place; for ye shall eat with me to day, and to morrow I will let thee go, and will tell thee all that is in thine heart.
7412                                                                                                                                                                                                                                                                                                                                                    And as for thine asses that were lost three days ago, set not thy mind on them; for they are found. And on whom is all the desire of Israel? Is it not on thee, and on all thy father's house?
7413                                                                                                                                                                                                                                                                                                                                           And Saul answered and said, Am not I a Benjamite, of the smallest of the tribes of Israel? and my family the least of all the families of the tribe of Benjamin? wherefore then speakest thou so to me?
7414                                                                                                                                                                                                                                                                                                                                                                     And Samuel took Saul and his servant, and brought them into the parlor, and made them sit in the chiefest place among them that were bidden, which were about thirty persons.
7415                                                                                                                                                                                                                                                                                                                                                                                                                                    And Samuel said unto the cook, Bring the portion which I gave thee, of which I said unto thee, Set it by thee.
7416                                                                                                                                                                                                                                                      And the cook took up the shoulder, and that which was upon it, and set it before Saul. And Samuel said, Behold that which is left! set it before thee, and eat: for unto this time hath it been kept for thee since I said, I have invited the people. So Saul did eat with Samuel that day.
7417                                                                                                                                                                                                                                                                                                                                                                                                                              And when they were come down from the high place into the city, Samuel communed with Saul upon the top of the house.
7418                                                                                                                                                                                                                                                                                                             And they arose early: and it came to pass about the spring of the day, that Samuel called Saul to the top of the house, saying, Up, that I may send thee away. And Saul arose, and they went out both of them, he and Samuel, abroad.
7419                                                                                                                                                                                                                                                                                                                                               And as they were going down to the end of the city, Samuel said to Saul, Bid the servant pass on before us, (and he passed on), but stand thou still a while, that I may show thee the word of God.
7420                                                                                                                                                                                                                                                                                                                                                                          Then Samuel took a vial of oil, and poured it upon his head, and kissed him, and said, Is it not because the LORD hath anointed thee to be captain over his inheritance?
7421                                                                                                                                                                                                                       When thou art departed from me to day, then thou shalt find two men by Rachel's sepulchre in the border of Benjamin at Zelzah; and they will say unto thee, The asses which thou wentest to seek are found: and, lo, thy father hath left the care of the asses, and sorroweth for you, saying, What shall I do for my son?
7422                                                                                                                                                                                                                                                                                  Then shalt thou go on forward from thence, and thou shalt come to the plain of Tabor, and there shall meet thee three men going up to God to Bethel, one carrying three kids, and another carrying three loaves of bread, and another carrying a bottle of wine:
7423                                                                                                                                                                                                                                                                                                                                                                                                                                            And they will salute thee, and give thee two loaves of bread; which thou shalt receive of their hands.
7424                                                                                                                                                                                                               After that thou shalt come to the hill of God, where is the garrison of the Philistines: and it shall come to pass, when thou art come thither to the city, that thou shalt meet a company of prophets coming down from the high place with a psaltery, and a tabret, and a pipe, and a harp, before them; and they shall prophesy:
7425                                                                                                                                                                                                                                                                                                                                                                                                                          And the Spirit of the LORD will come upon thee, and thou shalt prophesy with them, and shalt be turned into another man.
7426                                                                                                                                                                                                                                                                                                                                                                                                                                    And let it be, when these signs are come unto thee, that thou do as occasion serve thee; for God is with thee.
7427                                                                                                                                                                                                                                                                                                And thou shalt go down before me to Gilgal; and, behold, I will come down unto thee, to offer burnt offerings, and to sacrifice sacrifices of peace offerings: seven days shalt thou tarry, till I come to thee, and show thee what thou shalt do.
7428                                                                                                                                                                                                                                                                                                                                                                                                         And it was so, that when he had turned his back to go from Samuel, God gave him another heart: and all those signs came to pass that day.
7429                                                                                                                                                                                                                                                                                                                                                                                                 And when they came thither to the hill, behold, a company of prophets met him; and the Spirit of God came upon him, and he prophesied among them.
7430                                                                                                                                                                                                                                                                                                                  And it came to pass, when all that knew him beforetime saw that, behold, he prophesied among the prophets, then the people said one to another, What is this that is come unto the son of Kish? Is Saul also among the prophets?
7431                                                                                                                                                                                                                                                                                                                                                                                                             And one of the same place answered and said, But who is their father? Therefore it became a proverb, Is Saul also among the prophets?
7432                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when he had made an end of prophesying, he came to the high place.
7433                                                                                                                                                                                                                                                                                                                                                                                   And Saul's uncle said unto him and to his servant, Whither went ye? And he said, To seek the asses: and when we saw that they were no where, we came to Samuel.
7434                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul's uncle said, Tell me, I pray thee, what Samuel said unto you.
7435                                                                                                                                                                                                                                                                                                                                                                                              And Saul said unto his uncle, He told us plainly that the asses were found. But of the matter of the kingdom, whereof Samuel spake, he told him not.
7436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Samuel called the people together unto the LORD to Mizpeh;
7437                                                                                                                                                                                                                                                                                                               And said unto the children of Israel, Thus saith the LORD God of Israel, I brought up Israel out of Egypt, and delivered you out of the hand of the Egyptians, and out of the hand of all kingdoms, and of them that oppressed you:
7438                                                                                                                                                                                                                                                                                  And ye have this day rejected your God, who himself saved you out of all your adversities and your tribulations; and ye have said unto him, Nay, but set a king over us. Now therefore present yourselves before the LORD by your tribes, and by your thousands.
7439                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Samuel had caused all the tribes of Israel to come near, the tribe of Benjamin was taken.
7440                                                                                                                                                                                                                                                                                                                                                      When he had caused the tribe of Benjamin to come near by their families, the family of Matri was taken, and Saul the son of Kish was taken: and when they sought him, he could not be found.
7441                                                                                                                                                                                                                                                                                                                                                                                               Therefore they inquired of the LORD further, if the man should yet come thither. And the LORD answered, Behold he hath hid himself among the stuff.
7442                                                                                                                                                                                                                                                                                                                                                                                                      And they ran and fetched him thence: and when he stood among the people, he was higher than any of the people from his shoulders and upward.
7443                                                                                                                                                                                                                                                                                                                                                               And Samuel said to all the people, See ye him whom the LORD hath chosen, that there is none like him among all the people? And all the people shouted, and said, God save the king.
7444                                                                                                                                                                                                                                                                                                                                                                       Then Samuel told the people the manner of the kingdom, and wrote it in a book, and laid it up before the LORD. And Samuel sent all the people away, every man to his house.
7445                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul also went home to Gibeah; and there went with him a band of men, whose hearts God had touched.
7446                                                                                                                                                                                                                                                                                                                                                                                                               But the children of Belial said, How shall this man save us? And they despised him, and brought no presents. But he held his peace.
7447                                                                                                                                                                                                                                                                                                                                                                                 Then Nahash the Ammonite came up, and encamped against Jabeshgilead: and all the men of Jabesh said unto Nahash, Make a covenant with us, and we will serve thee.
7448                                                                                                                                                                                                                                                                                                                                                                   And Nahash the Ammonite answered them, On this condition will I make a covenant with you, that I may thrust out all your right eyes, and lay it for a reproach upon all Israel.
7449                                                                                                                                                                                                                                                                                                                                                And the elders of Jabesh said unto him, Give us seven days' respite, that we may send messengers unto all the coasts of Israel: and then, if there be no man to save us, we will come out to thee.
7450                                                                                                                                                                                                                                                                                                                                                                                                  Then came the messengers to Gibeah of Saul, and told the tidings in the ears of the people: and all the people lifted up their voices, and wept.
7451                                                                                                                                                                                                                                                                                                                                                                                 And, behold, Saul came after the herd out of the field; and Saul said, What aileth the people that they weep? And they told him the tidings of the men of Jabesh.
7452                                                                                                                                                                                                                                                                                                                                                                                                                                              And the Spirit of God came upon Saul when he heard those tidings, and his anger was kindled greatly.
7453                                                                                                                                                                                                                           And he took a yoke of oxen, and hewed them in pieces, and sent them throughout all the coasts of Israel by the hands of messengers, saying, Whosoever cometh not forth after Saul and after Samuel, so shall it be done unto his oxen. And the fear of the LORD fell on the people, and they came out with one consent.
7454                                                                                                                                                                                                                                                                                                                                                                                                                     And when he numbered them in Bezek, the children of Israel were three hundred thousand, and the men of Judah thirty thousand.
7455                                                                                                                                                                                                                                                                                                          And they said unto the messengers that came, Thus shall ye say unto the men of Jabeshgilead, To morrow, by that time the sun be hot, ye shall have help. And the messengers came and showed it to the men of Jabesh; and they were glad.
7456                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore the men of Jabesh said, To morrow we will come out unto you, and ye shall do with us all that seemeth good unto you.
7457                                                                                                                                                                                                                                              And it was so on the morrow, that Saul put the people in three companies; and they came into the midst of the host in the morning watch, and slew the Ammonites until the heat of the day: and it came to pass, that they which remained were scattered, so that two of them were not left together.
7458                                                                                                                                                                                                                                                                                                                                                                                                                     And the people said unto Samuel, Who is he that said, Shall Saul reign over us? bring the men, that we may put them to death.
7459                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul said, There shall not a man be put to death this day: for to day the LORD hath wrought salvation in Israel.
7460                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then said Samuel to the people, Come, and let us go to Gilgal, and renew the kingdom there.
7461                                                                                                                                                                                                                                                                                                                   And all the people went to Gilgal; and there they made Saul king before the LORD in Gilgal; and there they sacrificed sacrifices of peace offerings before the LORD; and there Saul and all the men of Israel rejoiced greatly.
7462                                                                                                                                                                                                                                                                                                                                                                                                             And Samuel said unto all Israel, Behold, I have hearkened unto your voice in all that ye said unto me, and have made a king over you.
7463                                                                                                                                                                                                                                                                                                                                                                       And now, behold, the king walketh before you: and I am old and grayheaded; and, behold, my sons are with you: and I have walked before you from my childhood unto this day.
7464                                                                                                                                                                                                                                                            Behold, here I am: witness against me before the LORD, and before his anointed: whose ox have I taken? or whose ass have I taken? or whom have I defrauded? whom have I oppressed? or of whose hand have I received any bribe to blind mine eyes therewith? and I will restore it you.
7465                                                                                                                                                                                                                                                                                                                                                                                                                                     And they said, Thou hast not defrauded us, nor oppressed us, neither hast thou taken ought of any man's hand.
7466                                                                                                                                                                                                                                                                                                                                                                          And he said unto them, The LORD is witness against you, and his anointed is witness this day, that ye have not found ought in my hand. And they answered, He is witness.
7467                                                                                                                                                                                                                                                                                                                                                                                                         And Samuel said unto the people, It is the LORD that advanced Moses and Aaron, and that brought your fathers up out of the land of Egypt.
7468                                                                                                                                                                                                                                                                                                                                                                                             Now therefore stand still, that I may reason with you before the LORD of all the righteous acts of the LORD, which he did to you and to your fathers.
7469                                                                                                                                                                                                                                                                                                                                                       When Jacob was come into Egypt, and your fathers cried unto the LORD, then the LORD sent Moses and Aaron, which brought forth your fathers out of Egypt, and made them dwell in this place.
7470                                                                                                                                                                                                                                                                                                                           And when they forgat the LORD their God, he sold them into the hand of Sisera, captain of the host of Hazor, and into the hand of the Philistines, and into the hand of the king of Moab, and they fought against them.
7471                                                                                                                                                                                                                                                                                                                                       And they cried unto the LORD, and said, We have sinned, because we have forsaken the LORD, and have served Baalim and Ashtaroth: but now deliver us out of the hand of our enemies, and we will serve thee.
7472                                                                                                                                                                                                                                                                                                                                                                                           And the LORD sent Jerubbaal, and Bedan, and Jephthah, and Samuel, and delivered you out of the hand of your enemies on every side, and ye dwelled safe.
7473                                                                                                                                                                                                                                                                                                                                                                       And when ye saw that Nahash the king of the children of Ammon came against you, ye said unto me, Nay; but a king shall reign over us: when the LORD your God was your king.
7474                                                                                                                                                                                                                                                                                                                                                                                                                      Now therefore behold the king whom ye have chosen, and whom ye have desired! and, behold, the LORD hath set a king over you.
7475                                                                                                                                                                                                                                                                                                                                 If ye will fear the LORD, and serve him, and obey his voice, and not rebel against the commandment of the LORD, then shall both ye and also the king that reigneth over you continue following the LORD your God:
7476                                                                                                                                                                                                                                                                                                                                                                     But if ye will not obey the voice of the LORD, but rebel against the commandment of the LORD, then shall the hand of the LORD be against you, as it was against your fathers.
7477                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore stand and see this great thing, which the LORD will do before your eyes.
7478                                                                                                                                                                                                                                                                                                                     Is it not wheat harvest to day? I will call unto the LORD, and he shall send thunder and rain; that ye may perceive and see that your wickedness is great, which ye have done in the sight of the LORD, in asking you a king.
7479                                                                                                                                                                                                                                                                                                                                                                                                               So Samuel called unto the LORD; and the LORD sent thunder and rain that day: and all the people greatly feared the LORD and Samuel.
7480                                                                                                                                                                                                                                                                                                                                                                               And all the people said unto Samuel, Pray for thy servants unto the LORD thy God, that we die not: for we have added unto all our sins this evil, to ask us a king.
7481                                                                                                                                                                                                                                                                                                                                                                                  And Samuel said unto the people, Fear not: ye have done all this wickedness: yet turn not aside from following the LORD, but serve the LORD with all your heart;
7482                                                                                                                                                                                                                                                                                                                                                                                                                               And turn ye not aside: for then should ye go after vain things, which cannot profit nor deliver; for they are vain.
7483                                                                                                                                                                                                                                                                                                                                                                                                                      For the LORD will not forsake his people for his great name's sake: because it hath pleased the LORD to make you his people.
7484                                                                                                                                                                                                                                                                                                                                                                                                    Moreover as for me, God forbid that I should sin against the LORD in ceasing to pray for you: but I will teach you the good and the right way:
7485                                                                                                                                                                                                                                                                                                                                                                                                                               Only fear the LORD, and serve him in truth with all your heart: for consider how great things he hath done for you.
7486                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if ye shall still do wickedly, ye shall be consumed, both ye and your king.
7487                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Saul reigned one year; and when he had reigned two years over Israel,
7488                                                                                                                                                                                                                                                                                                              Saul chose him three thousand men of Israel; whereof two thousand were with Saul in Michmash and in mount Bethel, and a thousand were with Jonathan in Gibeah of Benjamin: and the rest of the people he sent every man to his tent.
7489                                                                                                                                                                                                                                                                                                                                                            And Jonathan smote the garrison of the Philistines that was in Geba, and the Philistines heard of it. And Saul blew the trumpet throughout all the land, saying, Let the Hebrews hear.
7490                                                                                                                                                                                                                                                                                                                                         And all Israel heard say that Saul had smitten a garrison of the Philistines, and that Israel also was had in abomination with the Philistines. And the people were called together after Saul to Gilgal.
7491                                                                                                                                                                                                                                                                                     And the Philistines gathered themselves together to fight with Israel, thirty thousand chariots, and six thousand horsemen, and people as the sand which is on the sea shore in multitude: and they came up, and pitched in Michmash, eastward from Bethaven.
7492                                                                                                                                                                                                                                                                                                                                            When the men of Israel saw that they were in a strait, (for the people were distressed,) then the people did hide themselves in caves, and in thickets, and in rocks, and in high places, and in pits.
7493                                                                                                                                                                                                                                                                                                                                                                                             And some of the Hebrews went over Jordan to the land of Gad and Gilead. As for Saul, he was yet in Gilgal, and all the people followed him trembling.
7494                                                                                                                                                                                                                                                                                                                                                                                            And he tarried seven days, according to the set time that Samuel had appointed: but Samuel came not to Gilgal; and the people were scattered from him.
7495                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul said, Bring hither a burnt offering to me, and peace offerings. And he offered the burnt offering.
7496                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, that as soon as he had made an end of offering the burnt offering, behold, Samuel came; and Saul went out to meet him, that he might salute him.
7497                                                                                                                                                                                                                                                                                                                 And Samuel said, What hast thou done? And Saul said, Because I saw that the people were scattered from me, and that thou camest not within the days appointed, and that the Philistines gathered themselves together at Michmash;
7498                                                                                                                                                                                                                                                                                                                                                                  Therefore said I, The Philistines will come down now upon me to Gilgal, and I have not made supplication unto the LORD: I forced myself therefore, and offered a burnt offering.
7499                                                                                                                                                                                                                                                                                                                                     And Samuel said to Saul, Thou hast done foolishly: thou hast not kept the commandment of the LORD thy God, which he commanded thee: for now would the LORD have established thy kingdom upon Israel for ever.
7500                                                                                                                                                                                                                                                                                                                         But now thy kingdom shall not continue: the LORD hath sought him a man after his own heart, and the LORD hath commanded him to be captain over his people, because thou hast not kept that which the LORD commanded thee.
7501                                                                                                                                                                                                                                                                                                                                                                                             And Samuel arose, and gat him up from Gilgal unto Gibeah of Benjamin. And Saul numbered the people that were present with him, about six hundred men.
7502                                                                                                                                                                                                                                                                                                                                                                                                And Saul, and Jonathan his son, and the people that were present with them, abode in Gibeah of Benjamin: but the Philistines encamped in Michmash.
7503                                                                                                                                                                                                                                                                                                                                                                                      And the spoilers came out of the camp of the Philistines in three companies: one company turned unto the way that leadeth to Ophrah, unto the land of Shual:
7504                                                                                                                                                                                                                                                                                                                                                                                  And another company turned the way to Bethhoron: and another company turned to the way of the border that looketh to the valley of Zeboim toward the wilderness.
7505                                                                                                                                                                                                                                                                                                                                                                                                            Now there was no smith found throughout all the land of Israel: for the Philistines said, Lest the Hebrews make them swords or spears:
7506                                                                                                                                                                                                                                                                                                                                                                                                               But all the Israelites went down to the Philistines, to sharpen every man his share, and his coulter, and his axe, and his mattock.
7507                                                                                                                                                                                                                                                                                                                                                                                                                        Yet they had a file for the mattocks, and for the coulters, and for the forks, and for the axes, and to sharpen the goads.
7508                                                                                                                                                                                                                                                                                                                                 So it came to pass in the day of battle, that there was neither sword nor spear found in the hand of any of the people that were with Saul and Jonathan: but with Saul and with Jonathan his son was there found.
7509                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the garrison of the Philistines went out to the passage of Michmash.
7510                                                                                                                                                                                                                                                                                                                          Now it came to pass upon a day, that Jonathan the son of Saul said unto the young man that bare his armor, Come, and let us go over to the Philistines' garrison, that is on the other side. But he told not his father.
7511                                                                                                                                                                                                                                                                                                                                                                                       And Saul tarried in the uttermost part of Gibeah under a pomegranate tree which is in Migron: and the people that were with him were about six hundred men;
7512                                                                                                                                                                                                                                                                                                                                                              And Ahiah, the son of Ahitub, Ichabod's brother, the son of Phinehas, the son of Eli, the LORD's priest in Shiloh, wearing an ephod. And the people knew not that Jonathan was gone.
7513                                                                                                                                                                                                                                                                                                     And between the passages, by which Jonathan sought to go over unto the Philistines' garrison, there was a sharp rock on the one side, and a sharp rock on the other side: and the name of the one was Bozez, and the name of the other Seneh.
7514                                                                                                                                                                                                                                                                                                                                                                                                                                The forefront of the one was situate northward over against Michmash, and the other southward over against Gibeah.
7515                                                                                                                                                                                                                                                                                                             And Jonathan said to the young man that bare his armor, Come, and let us go over unto the garrison of these uncircumcised: it may be that the LORD will work for us: for there is no restraint to the LORD to save by many or by few.
7516                                                                                                                                                                                                                                                                                                                                                                                                                      And his armourbearer said unto him, Do all that is in thine heart: turn thee; behold, I am with thee according to thy heart.
7517                                                                                                                                                                                                                                                                                                                                                                                                                                           Then said Jonathan, Behold, we will pass over unto these men, and we will discover ourselves unto them.
7518                                                                                                                                                                                                                                                                                                                                                                                                                        If they say thus unto us, Tarry until we come to you; then we will stand still in our place, and will not go up unto them.
7519                                                                                                                                                                                                                                                                                                                                                                                                      But if they say thus, Come up unto us; then we will go up: for the LORD hath delivered them into our hand: and this shall be a sign unto us.
7520                                                                                                                                                                                                                                                                                                                                                             And both of them discovered themselves unto the garrison of the Philistines: and the Philistines said, Behold, the Hebrews come forth out of the holes where they had hid themselves.
7521                                                                                                                                                                                                                                                                                                   And the men of the garrison answered Jonathan and his armourbearer, and said, Come up to us, and we will show you a thing. And Jonathan said unto his armourbearer, Come up after me: for the LORD hath delivered them into the hand of Israel.
7522                                                                                                                                                                                                                                                                                                                                                                                     And Jonathan climbed up upon his hands and upon his feet, and his armourbearer after him: and they fell before Jonathan; and his armourbearer slew after him.
7523                                                                                                                                                                                                                                                                                                                                                                                And that first slaughter, which Jonathan and his armourbearer made, was about twenty men, within as it were an half acre of land, which a yoke of oxen might plow.
7524                                                                                                                                                                                                                                                                                                                                                          And there was trembling in the host, in the field, and among all the people: the garrison, and the spoilers, they also trembled, and the earth quaked: so it was a very great trembling.
7525                                                                                                                                                                                                                                                                                                                                                                                                         And the watchmen of Saul in Gibeah of Benjamin looked; and, behold, the multitude melted away, and they went on beating down one another.
7526                                                                                                                                                                                                                                                                                                                                                                     Then said Saul unto the people that were with him, Number now, and see who is gone from us. And when they had numbered, behold, Jonathan and his armourbearer were not there.
7527                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul said unto Ahiah, Bring hither the ark of God. For the ark of God was at that time with the children of Israel.
7528                                                                                                                                                                                                                                                                                                                                                         And it came to pass, while Saul talked unto the priest, that the noise that was in the host of the Philistines went on and increased: and Saul said unto the priest, Withdraw thine hand.
7529                                                                                                                                                                                                                                                                                                                                                 And Saul and all the people that were with him assembled themselves, and they came to the battle: and, behold, every man's sword was against his fellow, and there was a very great discomfiture.
7530                                                                                                                                                                                                                                                                                                                       Moreover the Hebrews that were with the Philistines before that time, which went up with them into the camp from the country round about, even they also turned to be with the Israelites that were with Saul and Jonathan.
7531                                                                                                                                                                                                                                                                                                                                                                       Likewise all the men of Israel which had hid themselves in mount Ephraim, when they heard that the Philistines fled, even they also followed hard after them in the battle.
7532                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So the LORD saved Israel that day: and the battle passed over unto Bethaven.
7533                                                                                                                                                                                                                                                                                                                      And the men of Israel were distressed that day: for Saul had adjured the people, saying, Cursed be the man that eateth any food until evening, that I may be avenged on mine enemies. So none of the people tasted any food.
7534                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all they of the land came to a wood; and there was honey upon the ground.
7535                                                                                                                                                                                                                                                                                                                                                                                                     And when the people were come into the wood, behold, the honey dropped; but no man put his hand to his mouth: for the people feared the oath.
7536                                                                                                                                                                                                                                                                                                             But Jonathan heard not when his father charged the people with the oath: wherefore he put forth the end of the rod that was in his hand, and dipped it in an honeycomb, and put his hand to his mouth; and his eyes were enlightened.
7537                                                                                                                                                                                                                                                                                                                                                               Then answered one of the people, and said, Thy father straitly charged the people with an oath, saying, Cursed be the man that eateth any food this day. And the people were faint.
7538                                                                                                                                                                                                                                                                                                                                                                                              Then said Jonathan, My father hath troubled the land: see, I pray you, how mine eyes have been enlightened, because I tasted a little of this honey.
7539                                                                                                                                                                                                                                                                                                                                                             How much more, if haply the people had eaten freely to day of the spoil of their enemies which they found? for had there not been now a much greater slaughter among the Philistines?
7540                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they smote the Philistines that day from Michmash to Aijalon: and the people were very faint.
7541                                                                                                                                                                                                                                                                                                                                                                                                And the people flew upon the spoil, and took sheep, and oxen, and calves, and slew them on the ground: and the people did eat them with the blood.
7542                                                                                                                                                                                                                                                                                                                                                                    Then they told Saul, saying, Behold, the people sin against the LORD, in that they eat with the blood. And he said, Ye have transgressed: roll a great stone unto me this day.
7543                                                                                                                                                                                                                                      And Saul said, Disperse yourselves among the people, and say unto them, Bring me hither every man his ox, and every man his sheep, and slay them here, and eat; and sin not against the LORD in eating with the blood. And all the people brought every man his ox with him that night, and slew them there.
7544                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul built an altar unto the LORD: the same was the first altar that he built unto the LORD.
7545                                                                                                                                                                                                                                                                                            And Saul said, Let us go down after the Philistines by night, and spoil them until the morning light, and let us not leave a man of them. And they said, Do whatsoever seemeth good unto thee. Then said the priest, Let us draw near hither unto God.
7546                                                                                                                                                                                                                                                                                                                                                                                           And Saul asked counsel of God, Shall I go down after the Philistines? wilt thou deliver them into the hand of Israel? But he answered him not that day.
7547                                                                                                                                                                                                                                                                                                                                                                                                                            And Saul said, Draw ye near hither, all the chief of the people: and know and see wherein this sin hath been this day.
7548                                                                                                                                                                                                                                                                                                                                                                               For, as the LORD liveth, which saveth Israel, though it be in Jonathan my son, he shall surely die. But there was not a man among all the people that answered him.
7549                                                                                                                                                                                                                                                                                                                                                                              Then said he unto all Israel, Be ye on one side, and I and Jonathan my son will be on the other side. And the people said unto Saul, Do what seemeth good unto thee.
7550                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore Saul said unto the LORD God of Israel, Give a perfect lot. And Saul and Jonathan were taken: but the people escaped.
7551                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul said, Cast lots between me and Jonathan my son. And Jonathan was taken.
7552                                                                                                                                                                                                                                                                                                                                                      Then Saul said to Jonathan, Tell me what thou hast done. And Jonathan told him, and said, I did but taste a little honey with the end of the rod that was in mine hand, and, lo, I must die.
7553                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul answered, God do so and more also: for thou shalt surely die, Jonathan.
7554                                                                                                                                                                                                                                                             And the people said unto Saul, Shall Jonathan die, who hath wrought this great salvation in Israel? God forbid: as the LORD liveth, there shall not one hair of his head fall to the ground; for he hath wrought with God this day. So the people rescued Jonathan, that he died not.
7555                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Saul went up from following the Philistines: and the Philistines went to their own place.
7556                                                                                                                                                                                                                                                                       So Saul took the kingdom over Israel, and fought against all his enemies on every side, against Moab, and against the children of Ammon, and against Edom, and against the kings of Zobah, and against the Philistines: and whithersoever he turned himself, he vexed them.
7557                                                                                                                                                                                                                                                                                                                                                                                                                               And he gathered an host, and smote the Amalekites, and delivered Israel out of the hands of them that spoiled them.
7558                                                                                                                                                                                                                                                                                                                                                                Now the sons of Saul were Jonathan, and Ishui, and Melchishua: and the names of his two daughters were these; the name of the firstborn Merab, and the name of the younger Michal:
7559                                                                                                                                                                                                                                                                                                                                                                                                And the name of Saul's wife was Ahinoam, the daughter of Ahimaaz: and the name of the captain of his host was Abner, the son of Ner, Saul's uncle.
7560                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Kish was the father of Saul; and Ner the father of Abner was the son of Abiel.
7561                                                                                                                                                                                                                                                                                                                                                                                                  And there was sore war against the Philistines all the days of Saul: and when Saul saw any strong man, or any valiant man, he took him unto him.
7562                                                                                                                                                                                                                                                                                                                                                                          Samuel also said unto Saul, The LORD sent me to anoint thee to be king over his people, over Israel: now therefore hearken thou unto the voice of the words of the LORD.
7563                                                                                                                                                                                                                                                                                                                                                                                                        Thus saith the LORD of hosts, I remember that which Amalek did to Israel, how he laid wait for him in the way, when he came up from Egypt.
7564                                                                                                                                                                                                                                                                                                                                                                               Now go and smite Amalek, and utterly destroy all that they have, and spare them not; but slay both man and woman, infant and suckling, ox and sheep, camel and ass.
7565                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul gathered the people together, and numbered them in Telaim, two hundred thousand footmen, and ten thousand men of Judah.
7566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Saul came to a city of Amalek, and laid wait in the valley.
7567                                                                                                                                                                                                                                                                                        And Saul said unto the Kenites, Go, depart, get you down from among the Amalekites, lest I destroy you with them: for ye showed kindness to all the children of Israel, when they came up out of Egypt. So the Kenites departed from among the Amalekites.
7568                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul smote the Amalekites from Havilah until thou comest to Shur, that is over against Egypt.
7569                                                                                                                                                                                                                                                                                                                                                                                                                               And he took Agag the king of the Amalekites alive, and utterly destroyed all the people with the edge of the sword.
7570                                                                                                                                                                                                                                                                                            But Saul and the people spared Agag, and the best of the sheep, and of the oxen, and of the fatlings, and the lambs, and all that was good, and would not utterly destroy them: but every thing that was vile and refuse, that they destroyed utterly.
7571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then came the word of the LORD unto Samuel, saying,
7572                                                                                                                                                                                                                                                                                                                                                 It repenteth me that I have set up Saul to be king: for he is turned back from following me, and hath not performed my commandments. And it grieved Samuel; and he cried unto the LORD all night.
7573                                                                                                                                                                                                                                                                                                                                           And when Samuel rose early to meet Saul in the morning, it was told Samuel, saying, Saul came to Carmel, and, behold, he set him up a place, and is gone about, and passed on, and gone down to Gilgal.
7574                                                                                                                                                                                                                                                                                                                                                                                                                       And Samuel came to Saul: and Saul said unto him, Blessed be thou of the LORD: I have performed the commandment of the LORD.
7575                                                                                                                                                                                                                                                                                                                                                                                                                              And Samuel said, What meaneth then this bleating of the sheep in mine ears, and the lowing of the oxen which I hear?
7576                                                                                                                                                                                                                                                                                                                                               And Saul said, They have brought them from the Amalekites: for the people spared the best of the sheep and of the oxen, to sacrifice unto the LORD thy God; and the rest we have utterly destroyed.
7577                                                                                                                                                                                                                                                                                                                                                                                                                    Then Samuel said unto Saul, Stay, and I will tell thee what the LORD hath said to me this night. And he said unto him, Say on.
7578                                                                                                                                                                                                                                                                                                                                                                                      And Samuel said, When thou wast little in thine own sight, wast thou not made the head of the tribes of Israel, and the LORD anointed thee king over Israel?
7579                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD sent thee on a journey, and said, Go and utterly destroy the sinners the Amalekites, and fight against them until they be consumed.
7580                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore then didst thou not obey the voice of the LORD, but didst fly upon the spoil, and didst evil in the sight of the LORD?
7581                                                                                                                                                                                                                                                                                                                                           And Saul said unto Samuel, Yea, I have obeyed the voice of the LORD, and have gone the way which the LORD sent me, and have brought Agag the king of Amalek, and have utterly destroyed the Amalekites.
7582                                                                                                                                                                                                                                                                                                                                                                                 But the people took of the spoil, sheep and oxen, the chief of the things which should have been utterly destroyed, to sacrifice unto the LORD thy God in Gilgal.
7583                                                                                                                                                                                                                                                                                                                                            And Samuel said, Hath the LORD as great delight in burnt offerings and sacrifices, as in obeying the voice of the LORD? Behold, to obey is better than sacrifice, and to hearken than the fat of rams.
7584                                                                                                                                                                                                                                                                                                                                                             For rebellion is as the sin of witchcraft, and stubbornness is as iniquity and idolatry. Because thou hast rejected the word of the LORD, he hath also rejected thee from being king.
7585                                                                                                                                                                                                                                                                                                                                                                                And Saul said unto Samuel, I have sinned: for I have transgressed the commandment of the LORD, and thy words: because I feared the people, and obeyed their voice.
7586                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now therefore, I pray thee, pardon my sin, and turn again with me, that I may worship the LORD.
7587                                                                                                                                                                                                                                                                                                                                                                                 And Samuel said unto Saul, I will not return with thee: for thou hast rejected the word of the LORD, and the LORD hath rejected thee from being king over Israel.
7588                                                                                                                                                                                                                                                                                                                                                                                                                                                    And as Samuel turned about to go away, he laid hold upon the skirt of his mantle, and it rent.
7589                                                                                                                                                                                                                                                                                                                                                                                        And Samuel said unto him, The LORD hath rent the kingdom of Israel from thee this day, and hath given it to a neighbor of thine, that is better than thou.
7590                                                                                                                                                                                                                                                                                                                                                                                                                                              And also the Strength of Israel will not lie nor repent: for he is not a man, that he should repent.
7591                                                                                                                                                                                                                                                                                                                                                                       Then he said, I have sinned: yet honor me now, I pray thee, before the elders of my people, and before Israel, and turn again with me, that I may worship the LORD thy God.
7592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Samuel turned again after Saul; and Saul worshipped the LORD.
7593                                                                                                                                                                                                                                                                                                                                                                                Then said Samuel, Bring ye hither to me Agag the king of the Amalekites. And Agag came unto him delicately. And Agag said, Surely the bitterness of death is past.
7594                                                                                                                                                                                                                                                                                                                                                                                 And Samuel said, As the sword hath made women childless, so shall thy mother be childless among women. And Samuel hewed Agag in pieces before the LORD in Gilgal.
7595                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Samuel went to Ramah; and Saul went up to his house to Gibeah of Saul.
7596                                                                                                                                                                                                                                                                                                                                                                               And Samuel came no more to see Saul until the day of his death: nevertheless Samuel mourned for Saul: and the LORD repented that he had made Saul king over Israel.
7597                                                                                                                                                                                                                                                                                               And the LORD said unto Samuel, How long wilt thou mourn for Saul, seeing I have rejected him from reigning over Israel? fill thine horn with oil, and go, I will send thee to Jesse the Bethlehemite: for I have provided me a king among his sons.
7598                                                                                                                                                                                                                                                                                                                                                                                        And Samuel said, How can I go? if Saul hear it, he will kill me. And the LORD said, Take an heifer with thee, and say, I am come to sacrifice to the LORD.
7599                                                                                                                                                                                                                                                                                                                                                                                                                And call Jesse to the sacrifice, and I will show thee what thou shalt do: and thou shalt anoint unto me him whom I name unto thee.
7600                                                                                                                                                                                                                                                                                                                                                                                              And Samuel did that which the LORD spake, and came to Bethlehem. And the elders of the town trembled at his coming, and said, Comest thou peaceably?
7601                                                                                                                                                                                                                                                                                                                                                     And he said, Peaceably: I am come to sacrifice unto the LORD: sanctify yourselves, and come with me to the sacrifice. And he sanctified Jesse and his sons, and called them to the sacrifice.
7602                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when they were come, that he looked on Eliab, and said, Surely the LORD's anointed is before him.
7603                                                                                                                                                                                                                                                                                                       But the LORD said unto Samuel, Look not on his countenance, or on the height of his stature; because I have refused him: for the LORD seeth not as man seeth; for man looketh on the outward appearance, but the LORD looketh on the heart.
7604                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Jesse called Abinadab, and made him pass before Samuel. And he said, Neither hath the LORD chosen this.
7605                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Jesse made Shammah to pass by. And he said, Neither hath the LORD chosen this.
7606                                                                                                                                                                                                                                                                                                                                                                                                                            Again, Jesse made seven of his sons to pass before Samuel. And Samuel said unto Jesse, The LORD hath not chosen these.
7607                                                                                                                                                                                                                                                                                                            And Samuel said unto Jesse, Are here all thy children? And he said, There remaineth yet the youngest, and, behold, he keepeth the sheep. And Samuel said unto Jesse, Send and fetch him: for we will not sit down till he come hither.
7608                                                                                                                                                                                                                                                                                                                                                                            And he sent, and brought him in. Now he was ruddy, and withal of a beautiful countenance, and goodly to look to. And the LORD said, Arise, anoint him: for this is he.
7609                                                                                                                                                                                                                                                                                                                                                          Then Samuel took the horn of oil, and anointed him in the midst of his brethren: and the Spirit of the LORD came upon David from that day forward. So Samuel rose up, and went to Ramah.
7610                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the Spirit of the LORD departed from Saul, and an evil spirit from the LORD troubled him.
7611                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Saul's servants said unto him, Behold now, an evil spirit from God troubleth thee.
7612                                                                                                                                                                                                                                                                                             Let our lord now command thy servants, which are before thee, to seek out a man, who is a cunning player on an harp: and it shall come to pass, when the evil spirit from God is upon thee, that he shall play with his hand, and thou shalt be well.
7613                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Saul said unto his servants, Provide me now a man that can play well, and bring him to me.
7614                                                                                                                                                                                                                                                                                                  Then answered one of the servants, and said, Behold, I have seen a son of Jesse the Bethlehemite, that is cunning in playing, and a mighty valiant man, and a man of war, and prudent in matters, and a comely person, and the LORD is with him.
7615                                                                                                                                                                                                                                                                                                                                                                                                                                              Wherefore Saul sent messengers unto Jesse, and said, Send me David thy son, which is with the sheep.
7616                                                                                                                                                                                                                                                                                                                                                                                                                                And Jesse took an ass laden with bread, and a bottle of wine, and a kid, and sent them by David his son unto Saul.
7617                                                                                                                                                                                                                                                                                                                                                                                                                                           And David came to Saul, and stood before him: and he loved him greatly; and he became his armourbearer.
7618                                                                                                                                                                                                                                                                                                                                                                                                                                     And Saul sent to Jesse, saying, Let David, I pray thee, stand before me; for he hath found favor in my sight.
7619                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when the evil spirit from God was upon Saul, that David took an harp, and played with his hand: so Saul was refreshed, and was well, and the evil spirit departed from him.
7620                                                                                                                                                                                                                                                                                                                                                            Now the Philistines gathered together their armies to battle, and were gathered together at Shochoh, which belongeth to Judah, and pitched between Shochoh and Azekah, in Ephesdammim.
7621                                                                                                                                                                                                                                                                                                                                                                                                    And Saul and the men of Israel were gathered together, and pitched by the valley of Elah, and set the battle in array against the Philistines.
7622                                                                                                                                                                                                                                                                                                                                                                                                   And the Philistines stood on a mountain on the one side, and Israel stood on a mountain on the other side: and there was a valley between them.
7623                                                                                                                                                                                                                                                                                                                                                                                                                 And there went out a champion out of the camp of the Philistines, named Goliath, of Gath, whose height was six cubits and a span.
7624                                                                                                                                                                                                                                                                                                                                                                                                 And he had an helmet of brass upon his head, and he was armed with a coat of mail; and the weight of the coat was five thousand shekels of brass.
7625                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he had greaves of brass upon his legs, and a target of brass between his shoulders.
7626                                                                                                                                                                                                                                                                                                                                                                                          And the staff of his spear was like a weaver's beam; and his spear's head weighed six hundred shekels of iron: and one bearing a shield went before him.
7627                                                                                                                                                                                                                                                                                                                     And he stood and cried unto the armies of Israel, and said unto them, Why are ye come out to set your battle in array? am not I a Philistine, and ye servants to Saul? choose you a man for you, and let him come down to me.
7628                                                                                                                                                                                                                                                                                                                                                                           If he be able to fight with me, and to kill me, then will we be your servants: but if I prevail against him, and kill him, then shall ye be our servants, and serve us.
7629                                                                                                                                                                                                                                                                                                                                                                                                                                         And the Philistine said, I defy the armies of Israel this day; give me a man, that we may fight together.
7630                                                                                                                                                                                                                                                                                                                                                                                                                                             When Saul and all Israel heard those words of the Philistine, they were dismayed, and greatly afraid.
7631                                                                                                                                                                                                                                                                                                                                                                           Now David was the son of that Ephrathite of Bethlehemjudah, whose name was Jesse; and he had eight sons: and the man went among men for an old man in the days of Saul.
7632                                                                                                                                                                                                                                                                                                                                     And the three eldest sons of Jesse went and followed Saul to the battle: and the names of his three sons that went to the battle were Eliab the firstborn, and next unto him Abinadab, and the third Shammah.
7633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David was the youngest: and the three eldest followed Saul.
7634                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But David went and returned from Saul to feed his father's sheep at Bethlehem.
7635                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Philistine drew near morning and evening, and presented himself forty days.
7636                                                                                                                                                                                                                                                                                                                                                                                            And Jesse said unto David his son, Take now for thy brethren an ephah of this parched corn, and these ten loaves, and run to the camp of thy brethren;
7637                                                                                                                                                                                                                                                                                                                                                                                                                            And carry these ten cheeses unto the captain of their thousand, and look how thy brethren fare, and take their pledge.
7638                                                                                                                                                                                                                                                                                                                                                                                                                                         Now Saul, and they, and all the men of Israel, were in the valley of Elah, fighting with the Philistines.
7639                                                                                                                                                                                                                                                                                                                        And David rose up early in the morning, and left the sheep with a keeper, and took, and went, as Jesse had commanded him; and he came to the trench, as the host was going forth to the fight, and shouted for the battle.
7640                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For Israel and the Philistines had put the battle in array, army against army.
7641                                                                                                                                                                                                                                                                                                                                                                                                                  And David left his carriage in the hand of the keeper of the carriage, and ran into the army, and came and saluted his brethren.
7642                                                                                                                                                                                                                                                                                                                                       And as he talked with them, behold, there came up the champion, the Philistine of Gath, Goliath by name, out of the armies of the Philistines, and spake according to the same words: and David heard them.
7643                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the men of Israel, when they saw the man, fled from him, and were sore afraid.
7644                                                                                                                                                                                                                                                                    And the men of Israel said, Have ye seen this man that is come up? surely to defy Israel is he come up: and it shall be, that the man who killeth him, the king will enrich him with great riches, and will give him his daughter, and make his father's house free in Israel.
7645                                                                                                                                                                                                                                                                                           And David spake to the men that stood by him, saying, What shall be done to the man that killeth this Philistine, and taketh away the reproach from Israel? for who is this uncircumcised Philistine, that he should defy the armies of the living God?
7646                                                                                                                                                                                                                                                                                                                                                                                                                                           And the people answered him after this manner, saying, So shall it be done to the man that killeth him.
7647                                                                                                                                                                                                             And Eliab his eldest brother heard when he spake unto the men; and Eliab's anger was kindled against David, and he said, Why camest thou down hither? and with whom hast thou left those few sheep in the wilderness? I know thy pride, and the naughtiness of thine heart; for thou art come down that thou mightest see the battle.
7648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David said, What have I now done? Is there not a cause?
7649                                                                                                                                                                                                                                                                                                                                                                                                                And he turned from him toward another, and spake after the same manner: and the people answered him again after the former manner.
7650                                                                                                                                                                                                                                                                                                                                                                                                                                            And when the words were heard which David spake, they rehearsed them before Saul: and he sent for him.
7651                                                                                                                                                                                                                                                                                                                                                                                                                               And David said to Saul, Let no man's heart fail because of him; thy servant will go and fight with this Philistine.
7652                                                                                                                                                                                                                                                                                                                                                                                          And Saul said to David, Thou art not able to go against this Philistine to fight with him: for thou art but a youth, and he a man of war from his youth.
7653                                                                                                                                                                                                                                                                                                                                                                                                               And David said unto Saul, Thy servant kept his father's sheep, and there came a lion, and a bear, and took a lamb out of the flock:
7654                                                                                                                                                                                                                                                                                                                                                                                 And I went out after him, and smote him, and delivered it out of his mouth: and when he arose against me, I caught him by his beard, and smote him, and slew him.
7655                                                                                                                                                                                                                                                                                                                                                                                       Thy servant slew both the lion and the bear: and this uncircumcised Philistine shall be as one of them, seeing he hath defied the armies of the living God.
7656                                                                                                                                                                                                                                                                                                                       David said moreover, The LORD that delivered me out of the paw of the lion, and out of the paw of the bear, he will deliver me out of the hand of this Philistine. And Saul said unto David, Go, and the LORD be with thee.
7657                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul armed David with his armor, and he put an helmet of brass upon his head; also he armed him with a coat of mail.
7658                                                                                                                                                                                                                                                                                                                                              And David girded his sword upon his armor, and he assayed to go; for he had not proved it. And David said unto Saul, I cannot go with these; for I have not proved them. And David put them off him.
7659                                                                                                                                                                                                                                                                                                                          And he took his staff in his hand, and chose him five smooth stones out of the brook, and put them in a shepherd's bag which he had, even in a scrip; and his sling was in his hand: and he drew near to the Philistine.
7660                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Philistine came on and drew near unto David; and the man that bare the shield went before him.
7661                                                                                                                                                                                                                                                                                                                                                                                                              And when the Philistine looked about, and saw David, he disdained him: for he was but a youth, and ruddy, and of a fair countenance.
7662                                                                                                                                                                                                                                                                                                                                                                                                                  And the Philistine said unto David, Am I a dog, that thou comest to me with staves? And the Philistine cursed David by his gods.
7663                                                                                                                                                                                                                                                                                                                                                                                                                And the Philistine said to David, Come to me, and I will give thy flesh unto the fowls of the air, and to the beasts of the field.
7664                                                                                                                                                                                                                                                                                                                              Then said David to the Philistine, Thou comest to me with a sword, and with a spear, and with a shield: but I come to thee in the name of the LORD of hosts, the God of the armies of Israel, whom thou hast defied.
7665                                                                                                                                                                                                                                        This day will the LORD deliver thee into mine hand; and I will smite thee, and take thine head from thee; and I will give the carcasses of the host of the Philistines this day unto the fowls of the air, and to the wild beasts of the earth; that all the earth may know that there is a God in Israel.
7666                                                                                                                                                                                                                                                                                                                                                                                                And all this assembly shall know that the LORD saveth not with sword and spear: for the battle is the LORD's, and he will give you into our hands.
7667                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when the Philistine arose, and came, and drew nigh to meet David, that David hastened, and ran toward the army to meet the Philistine.
7668                                                                                                                                                                                                                                                                                                                                                And David put his hand in his bag, and took thence a stone, and slang it, and smote the Philistine in his forehead, that the stone sunk into his forehead; and he fell upon his face to the earth.
7669                                                                                                                                                                                                                                                                                                                                                                                        So David prevailed over the Philistine with a sling and with a stone, and smote the Philistine, and slew him; but there was no sword in the hand of David.
7670                                                                                                                                                                                                                                                                                                                     Therefore David ran, and stood upon the Philistine, and took his sword, and drew it out of the sheath thereof, and slew him, and cut off his head therewith. And when the Philistines saw their champion was dead, they fled.
7671                                                                                                                                                                                                                                                                                                And the men of Israel and of Judah arose, and shouted, and pursued the Philistines, until thou come to the valley, and to the gates of Ekron. And the wounded of the Philistines fell down by the way to Shaaraim, even unto Gath, and unto Ekron.
7672                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel returned from chasing after the Philistines, and they spoiled their tents.
7673                                                                                                                                                                                                                                                                                                                                                                                                                                         And David took the head of the Philistine, and brought it to Jerusalem; but he put his armor in his tent.
7674                                                                                                                                                                                                                                                                                                                                                  And when Saul saw David go forth against the Philistine, he said unto Abner, the captain of the host, Abner, whose son is this youth? And Abner said, As thy soul liveth, O king, I cannot tell.
7675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king said, Inquire thou whose son the stripling is.
7676                                                                                                                                                                                                                                                                                                                                                                                              And as David returned from the slaughter of the Philistine, Abner took him, and brought him before Saul with the head of the Philistine in his hand.
7677                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul said to him, Whose son art thou, thou young man? And David answered, I am the son of thy servant Jesse the Bethlehemite.
7678                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when he had made an end of speaking unto Saul, that the soul of Jonathan was knit with the soul of David, and Jonathan loved him as his own soul.
7679                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul took him that day, and would let him go no more home to his father's house.
7680                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Jonathan and David made a covenant, because he loved him as his own soul.
7681                                                                                                                                                                                                                                                                                                                                                                                        And Jonathan stripped himself of the robe that was upon him, and gave it to David, and his garments, even to his sword, and to his bow, and to his girdle.
7682                                                                                                                                                                                                                                                                                                                                   And David went out whithersoever Saul sent him, and behaved himself wisely: and Saul set him over the men of war, and he was accepted in the sight of all the people, and also in the sight of Saul's servants.
7683                                                                                                                                                                                                                                                                                                   And it came to pass as they came, when David was returned from the slaughter of the Philistine, that the women came out of all cities of Israel, singing and dancing, to meet king Saul, with tabrets, with joy, and with instruments of music.
7684                                                                                                                                                                                                                                                                                                                                                                                                                          And the women answered one another as they played, and said, Saul hath slain his thousands, and David his ten thousands.
7685                                                                                                                                                                                                                                                                                                                                          And Saul was very wroth, and the saying displeased him; and he said, They have ascribed unto David ten thousands, and to me they have ascribed but thousands: and what can he have more but the kingdom?
7686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Saul eyed David from that day and forward.
7687                                                                                                                                                                                                                                                                                                                          And it came to pass on the morrow, that the evil spirit from God came upon Saul, and he prophesied in the midst of the house: and David played with his hand, as at other times: and there was a javelin in Saul's hand.
7688                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul cast the javelin; for he said, I will smite David even to the wall with it. And David avoided out of his presence twice.
7689                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul was afraid of David, because the LORD was with him, and was departed from Saul.
7690                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore Saul removed him from him, and made him his captain over a thousand; and he went out and came in before the people.
7691                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David behaved himself wisely in all his ways; and the LORD was with him.
7692                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wherefore when Saul saw that he behaved himself very wisely, he was afraid of him.
7693                                                                                                                                                                                                                                                                                                                                                                                                                                                                But all Israel and Judah loved David, because he went out and came in before them.
7694                                                                                                                                                                                                                                                                                                   And Saul said to David, Behold my elder daughter Merab, her will I give thee to wife: only be thou valiant for me, and fight the LORD's battles. For Saul said, Let not mine hand be upon him, but let the hand of the Philistines be upon him.
7695                                                                                                                                                                                                                                                                                                                                                                                                                And David said unto Saul, Who am I? and what is my life, or my father's family in Israel, that I should be son in law to the king?
7696                                                                                                                                                                                                                                                                                                                                                                                               But it came to pass at the time when Merab Saul's daughter should have been given to David, that she was given unto Adriel the Meholathite to wife.
7697                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Michal Saul's daughter loved David: and they told Saul, and the thing pleased him.
7698                                                                                                                                                                                                                                                                                                                          And Saul said, I will give him her, that she may be a snare to him, and that the hand of the Philistines may be against him. Wherefore Saul said to David, Thou shalt this day be my son in law in the one of the twain.
7699                                                                                                                                                                                                                                                                                                                                                     And Saul commanded his servants, saying, Commune with David secretly, and say, Behold, the king hath delight in thee, and all his servants love thee: now therefore be the king's son in law.
7700                                                                                                                                                                                                                                                                                                                                                         And Saul's servants spake those words in the ears of David. And David said, Seemeth it to you a light thing to be a king's son in law, seeing that I am a poor man, and lightly esteemed?
7701                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the servants of Saul told him, saying, On this manner spake David.
7702                                                                                                                                                                                                                                                                                                                 And Saul said, Thus shall ye say to David, The king desireth not any dowry, but an hundred foreskins of the Philistines, to be avenged of the king's enemies. But Saul thought to make David fall by the hand of the Philistines.
7703                                                                                                                                                                                                                                                                                                                                                                                                                   And when his servants told David these words, it pleased David well to be the king's son in law: and the days were not expired.
7704                                                                                                                                                                                                                                                                               Wherefore David arose and went, he and his men, and slew of the Philistines two hundred men; and David brought their foreskins, and they gave them in full tale to the king, that he might be the king's son in law. And Saul gave him Michal his daughter to wife.
7705                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Saul saw and knew that the LORD was with David, and that Michal Saul's daughter loved him.
7706                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul was yet the more afraid of David; and Saul became David's enemy continually.
7707                                                                                                                                                                                                                                                                                                                                               Then the princes of the Philistines went forth: and it came to pass, after they went forth, that David behaved himself more wisely than all the servants of Saul; so that his name was much set by.
7708                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Saul spake to Jonathan his son, and to all his servants, that they should kill David.
7709                                                                                                                                                                                                                                                                                                         But Jonathan Saul's son delighted much in David: and Jonathan told David, saying, Saul my father seeketh to kill thee: now therefore, I pray thee, take heed to thyself until the morning, and abide in a secret place, and hide thyself:
7710                                                                                                                                                                                                                                                                                                                                                                                       And I will go out and stand beside my father in the field where thou art, and I will commune with my father of thee; and what I see, that I will tell thee.
7711                                                                                                                                                                                                                                                                                                               And Jonathan spake good of David unto Saul his father, and said unto him, Let not the king sin against his servant, against David; because he hath not sinned against thee, and because his works have been to thee-ward very good:
7712                                                                                                                                                                                                                                                                                                       For he did put his life in his hand, and slew the Philistine, and the LORD wrought a great salvation for all Israel: thou sawest it, and didst rejoice: wherefore then wilt thou sin against innocent blood, to slay David without a cause?
7713                                                                                                                                                                                                                                                                                                                                                                                                                                         And Saul hearkened unto the voice of Jonathan: and Saul sware, As the LORD liveth, he shall not be slain.
7714                                                                                                                                                                                                                                                                                                                                                                                            And Jonathan called David, and Jonathan showed him all those things. And Jonathan brought David to Saul, and he was in his presence, as in times past.
7715                                                                                                                                                                                                                                                                                                                                                                                                       And there was war again: and David went out, and fought with the Philistines, and slew them with a great slaughter; and they fled from him.
7716                                                                                                                                                                                                                                                                                                                                                                                                             And the evil spirit from the LORD was upon Saul, as he sat in his house with his javelin in his hand: and David played with his hand.
7717                                                                                                                                                                                                                                                                                                                                                     And Saul sought to smite David even to the wall with the javelin: but he slipped away out of Saul's presence, and he smote the javelin into the wall: and David fled, and escaped that night.
7718                                                                                                                                                                                                                                                                                                                                          Saul also sent messengers unto David's house, to watch him, and to slay him in the morning: and Michal David's wife told him, saying, If thou save not thy life to night, to morrow thou shalt be slain.
7719                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Michal let David down through a window: and he went, and fled, and escaped.
7720                                                                                                                                                                                                                                                                                                                                                                                                                   And Michal took an image, and laid it in the bed, and put a pillow of goats' hair for his bolster, and covered it with a cloth.
7721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Saul sent messengers to take David, she said, He is sick.
7722                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul sent the messengers again to see David, saying, Bring him up to me in the bed, that I may slay him.
7723                                                                                                                                                                                                                                                                                                                                                                                                                        And when the messengers were come in, behold, there was an image in the bed, with a pillow of goats' hair for his bolster.
7724                                                                                                                                                                                                                                                                                                                                                              And Saul said unto Michal, Why hast thou deceived me so, and sent away mine enemy, that he is escaped? And Michal answered Saul, He said unto me, Let me go; why should I kill thee?
7725                                                                                                                                                                                                                                                                                                                                                                                                  So David fled, and escaped, and came to Samuel to Ramah, and told him all that Saul had done to him. And he and Samuel went and dwelt in Naioth.
7726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it was told Saul, saying, Behold, David is at Naioth in Ramah.
7727                                                                                                                                                                                                                                                                                                                       And Saul sent messengers to take David: and when they saw the company of the prophets prophesying, and Samuel standing as appointed over them, the Spirit of God was upon the messengers of Saul, and they also prophesied.
7728                                                                                                                                                                                                                                                                                                                                                                                       And when it was told Saul, he sent other messengers, and they prophesied likewise. And Saul sent messengers again the third time, and they prophesied also.
7729                                                                                                                                                                                                                                                                                                                                                                       Then went he also to Ramah, and came to a great well that is in Sechu: and he asked and said, Where are Samuel and David? And one said, Behold, they be at Naioth in Ramah.
7730                                                                                                                                                                                                                                                                                                                                                                                                And he went thither to Naioth in Ramah: and the Spirit of God was upon him also, and he went on, and prophesied, until he came to Naioth in Ramah.
7731                                                                                                                                                                                                                                                                                                                                                       And he stripped off his clothes also, and prophesied before Samuel in like manner, and lay down naked all that day and all that night. Wherefore they say, Is Saul also among the prophets?
7732                                                                                                                                                                                                                                                                                                                                                                   And David fled from Naioth in Ramah, and came and said before Jonathan, What have I done? what is mine iniquity? and what is my sin before thy father, that he seeketh my life?
7733                                                                                                                                                                                                                                                                                                                                       And he said unto him, God forbid; thou shalt not die: behold, my father will do nothing either great or small, but that he will show it me: and why should my father hide this thing from me? it is not so.
7734                                                                                                                                                                                                                                                                             And David sware moreover, and said, Thy father certainly knoweth that I have found grace in thine eyes; and he saith, Let not Jonathan know this, lest he be grieved: but truly as the LORD liveth, and as thy soul liveth, there is but a step between me and death.
7735                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said Jonathan unto David, Whatsoever thy soul desireth, I will even do it for thee.
7736                                                                                                                                                                                                                                                                                                                                               And David said unto Jonathan, Behold, to morrow is the new moon, and I should not fail to sit with the king at meat: but let me go, that I may hide myself in the field unto the third day at even.
7737                                                                                                                                                                                                                                                                                                                                                                      If thy father at all miss me, then say, David earnestly asked leave of me that he might run to Bethlehem his city: for there is a yearly sacrifice there for all the family.
7738                                                                                                                                                                                                                                                                                                                                                                                                                   If he say thus, It is well; thy servant shall have peace: but if he be very wroth, then be sure that evil is determined by him.
7739                                                                                                                                                                                                                                                                                                          Therefore thou shalt deal kindly with thy servant; for thou hast brought thy servant into a covenant of the LORD with thee: notwithstanding, if there be in me iniquity, slay me thyself; for why shouldest thou bring me to thy father?
7740                                                                                                                                                                                                                                                                                                                                                                                          And Jonathan said, Far be it from thee: for if I knew certainly that evil were determined by my father to come upon thee, then would not I tell it thee?
7741                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said David to Jonathan, Who shall tell me? or what if thy father answer thee roughly?
7742                                                                                                                                                                                                                                                                                                                                                                                                                              And Jonathan said unto David, Come, and let us go out into the field. And they went out both of them into the field.
7743                                                                                                                                                                                                                                                                                                                        And Jonathan said unto David, O LORD God of Israel, when I have sounded my father about to morrow any time, or the third day, and, behold, if there be good toward David, and I then send not unto thee, and show it thee;
7744                                                                                                                                                                                                                                                                                                                      The LORD do so and much more to Jonathan: but if it please my father to do thee evil, then I will show it thee, and send thee away, that thou mayest go in peace: and the LORD be with thee, as he hath been with my father.
7745                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt not only while yet I live show me the kindness of the LORD, that I die not:
7746                                                                                                                                                                                                                                                                                                                                                                                But also thou shalt not cut off thy kindness from my house for ever: no, not when the LORD hath cut off the enemies of David every one from the face of the earth.
7747                                                                                                                                                                                                                                                                                                                                                                                                                         So Jonathan made a covenant with the house of David, saying, Let the LORD even require it at the hand of David's enemies.
7748                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jonathan caused David to swear again, because he loved him: for he loved him as he loved his own soul.
7749                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Jonathan said to David, To morrow is the new moon: and thou shalt be missed, because thy seat will be empty.
7750                                                                                                                                                                                                                                                                                                                                                     And when thou hast stayed three days, then thou shalt go down quickly, and come to the place where thou didst hide thyself when the business was in hand, and shalt remain by the stone Ezel.
7751                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I will shoot three arrows on the side thereof, as though I shot at a mark.
7752                                                                                                                                                                                                                                                                                                            And, behold, I will send a lad, saying, Go, find out the arrows. If I expressly say unto the lad, Behold, the arrows are on this side of thee, take them; then come thou: for there is peace to thee, and no hurt; as the LORD liveth.
7753                                                                                                                                                                                                                                                                                                                                                                                                                           But if I say thus unto the young man, Behold, the arrows are beyond thee; go thy way: for the LORD hath sent thee away.
7754                                                                                                                                                                                                                                                                                                                                                                                                                                     And as touching the matter which thou and I have spoken of, behold, the LORD be between thee and me for ever.
7755                                                                                                                                                                                                                                                                                                                                                                                                                                             So David hid himself in the field: and when the new moon was come, the king sat him down to eat meat.
7756                                                                                                                                                                                                                                                                                                                                                                                   And the king sat upon his seat, as at other times, even upon a seat by the wall: and Jonathan arose, and Abner sat by Saul's side, and David's place was empty.
7757                                                                                                                                                                                                                                                                                                                                                                                                             Nevertheless Saul spake not any thing that day: for he thought, Something hath befallen him, he is not clean; surely he is not clean.
7758                                                                                                                                                                                                                                                                                                                        And it came to pass on the morrow, which was the second day of the month, that David's place was empty: and Saul said unto Jonathan his son, Wherefore cometh not the son of Jesse to meat, neither yesterday, nor to day?
7759                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jonathan answered Saul, David earnestly asked leave of me to go to Bethlehem:
7760                                                                                                                                                                                                                                                               And he said, Let me go, I pray thee; for our family hath a sacrifice in the city; and my brother, he hath commanded me to be there: and now, if I have found favor in thine eyes, let me get away, I pray thee, and see my brethren. Therefore he cometh not unto the king's table.
7761                                                                                                                                                                                                                                                                                                   Then Saul's anger was kindled against Jonathan, and he said unto him, Thou son of the perverse rebellious woman, do not I know that thou hast chosen the son of Jesse to thine own confusion, and unto the confusion of thy mother's nakedness?
7762                                                                                                                                                                                                                                                                                                                                                                        For as long as the son of Jesse liveth upon the ground, thou shalt not be established, nor thy kingdom. Wherefore now send and fetch him unto me, for he shall surely die.
7763                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jonathan answered Saul his father, and said unto him, Wherefore shall he be slain? what hath he done?
7764                                                                                                                                                                                                                                                                                                                                                                                                                            And Saul cast a javelin at him to smite him: whereby Jonathan knew that it was determined of his father to slay David.
7765                                                                                                                                                                                                                                                                                                                                                                           So Jonathan arose from the table in fierce anger, and did eat no meat the second day of the month: for he was grieved for David, because his father had done him shame.
7766                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass in the morning, that Jonathan went out into the field at the time appointed with David, and a little lad with him.
7767                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto his lad, Run, find out now the arrows which I shoot. And as the lad ran, he shot an arrow beyond him.
7768                                                                                                                                                                                                                                                                                                                                                                                                And when the lad was come to the place of the arrow which Jonathan had shot, Jonathan cried after the lad, and said, Is not the arrow beyond thee?
7769                                                                                                                                                                                                                                                                                                                                                                                                                 And Jonathan cried after the lad, Make speed, haste, stay not. And Jonathan's lad gathered up the arrows, and came to his master.
7770                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the lad knew not any thing: only Jonathan and David knew the matter.
7771                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jonathan gave his artillery unto his lad, and said unto him, Go, carry them to the city.
7772                                                                                                                                                                                                                                                                                                                    And as soon as the lad was gone, David arose out of a place toward the south, and fell on his face to the ground, and bowed himself three times: and they kissed one another, and wept one with another, until David exceeded.
7773                                                                                                                                                                                                                                                                                           And Jonathan said to David, Go in peace, forasmuch as we have sworn both of us in the name of the LORD, saying, The LORD be between me and thee, and between my seed and thy seed for ever. And he arose and departed: and Jonathan went into the city.
7774                                                                                                                                                                                                                                                                                                                                                                                    Then came David to Nob to Ahimelech the priest: and Ahimelech was afraid at the meeting of David, and said unto him, Why art thou alone, and no man with thee?
7775                                                                                                                                                                                                                                                                              And David said unto Ahimelech the priest, The king hath commanded me a business, and hath said unto me, Let no man know any thing of the business whereabout I send thee, and what I have commanded thee: and I have appointed my servants to such and such a place.
7776                                                                                                                                                                                                                                                                                                                                                                                                                                      Now therefore what is under thine hand? give me five loaves of bread in mine hand, or what there is present.
7777                                                                                                                                                                                                                                                                                                                                                                        And the priest answered David, and said, There is no common bread under mine hand, but there is hallowed bread; if the young men have kept themselves at least from women.
7778                                                                                                                                                                                                                                                                        And David answered the priest, and said unto him, Of a truth women have been kept from us about these three days, since I came out, and the vessels of the young men are holy, and the bread is in a manner common, yea, though it were sanctified this day in the vessel.
7779                                                                                                                                                                                                                                                                                                                                                                   So the priest gave him hallowed bread: for there was no bread there but the showbread, that was taken from before the LORD, to put hot bread in the day when it was taken away.
7780                                                                                                                                                                                                                                                                                                                                                                     Now a certain man of the servants of Saul was there that day, detained before the LORD; and his name was Doeg, an Edomite, the chiefest of the herdmen that belonged to Saul.
7781                                                                                                                                                                                                                                                                                                                                                     And David said unto Ahimelech, And is there not here under thine hand spear or sword? for I have neither brought my sword nor my weapons with me, because the king's business required haste.
7782                                                                                                                                                                                                                                                            And the priest said, The sword of Goliath the Philistine, whom thou slewest in the valley of Elah, behold, it is here wrapped in a cloth behind the ephod: if thou wilt take that, take it: for there is no other save that here. And David said, There is none like that; give it me.
7783                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David arose and fled that day for fear of Saul, and went to Achish the king of Gath.
7784                                                                                                                                                                                                                                                                                                                                          And the servants of Achish said unto him, Is not this David the king of the land? did they not sing one to another of him in dances, saying, Saul hath slain his thousands, and David his ten thousands?
7785                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David laid up these words in his heart, and was sore afraid of Achish the king of Gath.
7786                                                                                                                                                                                                                                                                                                                                                                            And he changed his behavior before them, and feigned himself mad in their hands, and scrabbled on the doors of the gate, and let his spittle fall down upon his beard.
7787                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said Achish unto his servants, Lo, ye see the man is mad: wherefore then have ye brought him to me?
7788                                                                                                                                                                                                                                                                                                                                                                                                                Have I need of mad men, that ye have brought this fellow to play the mad man in my presence? shall this fellow come into my house?
7789                                                                                                                                                                                                                                                                                                                                                                                       David therefore departed thence, and escaped to the cave Adullam: and when his brethren and all his father's house heard it, they went down thither to him.
7790                                                                                                                                                                                                                                                                                                                         And every one that was in distress, and every one that was in debt, and every one that was discontented, gathered themselves unto him; and he became a captain over them: and there were with him about four hundred men.
7791                                                                                                                                                                                                                                                                                                                                                           And David went thence to Mizpeh of Moab: and he said unto the king of Moab, Let my father and my mother, I pray thee, come forth, and be with you, till I know what God will do for me.
7792                                                                                                                                                                                                                                                                                                                                                                                                                                    And he brought them before the king of Moab: and they dwelt with him all the while that David was in the hold.
7793                                                                                                                                                                                                                                                                                                                                                                                 And the prophet Gad said unto David, Abide not in the hold; depart, and get thee into the land of Judah. Then David departed, and came into the forest of Hareth.
7794                                                                                                                                                                                                                                                                                                                                          When Saul heard that David was discovered, and the men that were with him, (now Saul abode in Gibeah under a tree in Ramah, having his spear in his hand, and all his servants were standing about him;)
7795                                                                                                                                                                                                                                                                                                                               Then Saul said unto his servants that stood about him, Hear now, ye Benjamites; will the son of Jesse give every one of you fields and vineyards, and make you all captains of thousands, and captains of hundreds;
7796                                                                                                                                                                                                                                                           That all of you have conspired against me, and there is none that showeth me that my son hath made a league with the son of Jesse, and there is none of you that is sorry for me, or showeth unto me that my son hath stirred up my servant against me, to lie in wait, as at this day?
7797                                                                                                                                                                                                                                                                                                                                                                                          Then answered Doeg the Edomite, which was set over the servants of Saul, and said, I saw the son of Jesse coming to Nob, to Ahimelech the son of Ahitub.
7798                                                                                                                                                                                                                                                                                                                                                                                                                                     And he inquired of the LORD for him, and gave him victuals, and gave him the sword of Goliath the Philistine.
7799                                                                                                                                                                                                                                                                                                                                                                              Then the king sent to call Ahimelech the priest, the son of Ahitub, and all his father's house, the priests that were in Nob: and they came all of them to the king.
7800                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul said, Hear now, thou son of Ahitub. And he answered, Here I am, my lord.
7801                                                                                                                                                                                                                                                                                                            And Saul said unto him, Why have ye conspired against me, thou and the son of Jesse, in that thou hast given him bread, and a sword, and hast inquired of God for him, that he should rise against me, to lie in wait, as at this day?
7802                                                                                                                                                                                                                                                                                                                                                    Then Ahimelech answered the king, and said, And who is so faithful among all thy servants as David, which is the king's son in law, and goeth at thy bidding, and is honorable in thine house?
7803                                                                                                                                                                                                                                                                                                                                     Did I then begin to inquire of God for him? be it far from me: let not the king impute any thing unto his servant, nor to all the house of my father: for thy servant knew nothing of all this, less or more.
7804                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king said, Thou shalt surely die, Ahimelech, thou, and all thy father's house.
7805                                                                                                                                                                                                                                          And the king said unto the footmen that stood about him, Turn, and slay the priests of the LORD: because their hand also is with David, and because they knew when he fled, and did not show it to me. But the servants of the king would not put forth their hand to fall upon the priests of the LORD.
7806                                                                                                                                                                                                                                                                                                                                          And the king said to Doeg, Turn thou, and fall upon the priests. And Doeg the Edomite turned, and he fell upon the priests, and slew on that day fourscore and five persons that did wear a linen ephod.
7807                                                                                                                                                                                                                                                                                                                                                                    And Nob, the city of the priests, smote he with the edge of the sword, both men and women, children and sucklings, and oxen, and asses, and sheep, with the edge of the sword.
7808                                                                                                                                                                                                                                                                                                                                                                                                                                                And one of the sons of Ahimelech the son of Ahitub, named Abiathar, escaped, and fled after David.
7809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abiathar showed David that Saul had slain the LORD's priests.
7810                                                                                                                                                                                                                                                                                                                                                          And David said unto Abiathar, I knew it that day, when Doeg the Edomite was there, that he would surely tell Saul: I have occasioned the death of all the persons of thy father's house.
7811                                                                                                                                                                                                                                                                                                                                                                                                                               Abide thou with me, fear not: for he that seeketh my life seeketh thy life: but with me thou shalt be in safeguard.
7812                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they told David, saying, Behold, the Philistines fight against Keilah, and they rob the threshingfloors.
7813                                                                                                                                                                                                                                                                                                                                                                               Therefore David inquired of the LORD, saying, Shall I go and smite these Philistines? And the LORD said unto David, Go, and smite the Philistines, and save Keilah.
7814                                                                                                                                                                                                                                                                                                                                                                                                 And David's men said unto him, Behold, we be afraid here in Judah: how much more then if we come to Keilah against the armies of the Philistines?
7815                                                                                                                                                                                                                                                                                                                                                                                      Then David inquired of the LORD yet again. And the LORD answered him and said, Arise, go down to Keilah; for I will deliver the Philistines into thine hand.
7816                                                                                                                                                                                                                                                                                                                                                             So David and his men went to Keilah, and fought with the Philistines, and brought away their cattle, and smote them with a great slaughter. So David saved the inhabitants of Keilah.
7817                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when Abiathar the son of Ahimelech fled to David to Keilah, that he came down with an ephod in his hand.
7818                                                                                                                                                                                                                                                                                                                                                                    And it was told Saul that David was come to Keilah. And Saul said, God hath delivered him into mine hand; for he is shut in, by entering into a town that hath gates and bars.
7819                                                                                                                                                                                                                                                                                                                                                                                                                                               And Saul called all the people together to war, to go down to Keilah, to besiege David and his men.
7820                                                                                                                                                                                                                                                                                                                                                                                                                     And David knew that Saul secretly practiced mischief against him; and he said to Abiathar the priest, Bring hither the ephod.
7821                                                                                                                                                                                                                                                                                                                                                                                                     Then said David, O LORD God of Israel, thy servant hath certainly heard that Saul seeketh to come to Keilah, to destroy the city for my sake.
7822                                                                                                                                                                                                                                                                                                                                                 Will the men of Keilah deliver me up into his hand? will Saul come down, as thy servant hath heard? O LORD God of Israel, I beseech thee, tell thy servant. And the LORD said, He will come down.
7823                                                                                                                                                                                                                                                                                                                                                                                                                Then said David, Will the men of Keilah deliver me and my men into the hand of Saul? And the LORD said, They will deliver thee up.
7824                                                                                                                                                                                                                                                                                                                                Then David and his men, which were about six hundred, arose and departed out of Keilah, and went whithersoever they could go. And it was told Saul that David was escaped from Keilah; and he forbare to go forth.
7825                                                                                                                                                                                                                                                                                                                                                                  And David abode in the wilderness in strong holds, and remained in a mountain in the wilderness of Ziph. And Saul sought him every day, but God delivered him not into his hand.
7826                                                                                                                                                                                                                                                                                                                                                                                                                                         And David saw that Saul was come out to seek his life: and David was in the wilderness of Ziph in a wood.
7827                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jonathan Saul's son arose, and went to David into the wood, and strengthened his hand in God.
7828                                                                                                                                                                                                                                                                                                                                                      And he said unto him, Fear not: for the hand of Saul my father shall not find thee; and thou shalt be king over Israel, and I shall be next unto thee; and that also Saul my father knoweth.
7829                                                                                                                                                                                                                                                                                                                                                                                                                                        And they two made a covenant before the LORD: and David abode in the wood, and Jonathan went to his house.
7830                                                                                                                                                                                                                                                                                                                                                                 Then came up the Ziphites to Saul to Gibeah, saying, Doth not David hide himself with us in strong holds in the wood, in the hill of Hachilah, which is on the south of Jeshimon?
7831                                                                                                                                                                                                                                                                                                                                                                                                 Now therefore, O king, come down according to all the desire of thy soul to come down; and our part shall be to deliver him into the king's hand.
7832                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul said, Blessed be ye of the LORD; for ye have compassion on me.
7833                                                                                                                                                                                                                                                                                                                                                                                         Go, I pray you, prepare yet, and know and see his place where his haunt is, and who hath seen him there: for it is told me that he dealeth very subtilly.
7834                                                                                                                                                                                                                                                                       See therefore, and take knowledge of all the lurking places where he hideth himself, and come ye again to me with the certainty, and I will go with you: and it shall come to pass, if he be in the land, that I will search him out throughout all the thousands of Judah.
7835                                                                                                                                                                                                                                                                                                                                                                                                        And they arose, and went to Ziph before Saul: but David and his men were in the wilderness of Maon, in the plain on the south of Jeshimon.
7836                                                                                                                                                                                                                                                                                                                                 Saul also and his men went to seek him. And they told David; wherefore he came down into a rock, and abode in the wilderness of Maon. And when Saul heard that, he pursued after David in the wilderness of Maon.
7837                                                                                                                                                                                                                                                                                                                     And Saul went on this side of the mountain, and David and his men on that side of the mountain: and David made haste to get away for fear of Saul; for Saul and his men compassed David and his men round about to take them.
7838                                                                                                                                                                                                                                                                                                                                                                                                                                    But there came a messenger unto Saul, saying, Haste thee, and come; for the Philistines have invaded the land.
7839                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore Saul returned from pursuing after David, and went against the Philistines: therefore they called that place Selahammahlekoth.
7840                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David went up from thence, and dwelt in strong holds at Engedi.
7841                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Saul was returned from following the Philistines, that it was told him, saying, Behold, David is in the wilderness of Engedi.
7842                                                                                                                                                                                                                                                                                                                                                                                                                  Then Saul took three thousand chosen men out of all Israel, and went to seek David and his men upon the rocks of the wild goats.
7843                                                                                                                                                                                                                                                                                                                                                                                          And he came to the sheepcotes by the way, where was a cave; and Saul went in to cover his feet: and David and his men remained in the sides of the cave.
7844                                                                                                                                                                                                                                                                              And the men of David said unto him, Behold the day of which the LORD said unto thee, Behold, I will deliver thine enemy into thine hand, that thou mayest do to him as it shall seem good unto thee. Then David arose, and cut off the skirt of Saul's robe privily.
7845                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass afterward, that David's heart smote him, because he had cut off Saul's skirt.
7846                                                                                                                                                                                                                                                                                                                                                         And he said unto his men, The LORD forbid that I should do this thing unto my master, the LORD's anointed, to stretch forth mine hand against him, seeing he is the anointed of the LORD.
7847                                                                                                                                                                                                                                                                                                                                                                                                 So David stayed his servants with these words, and suffered them not to rise against Saul. But Saul rose up out of the cave, and went on his way.
7848                                                                                                                                                                                                                                                                                                                                               David also arose afterward, and went out of the cave, and cried after Saul, saying, My lord the king. And when Saul looked behind him, David stooped with his face to the earth, and bowed himself.
7849                                                                                                                                                                                                                                                                                                                                                                                                                                               And David said to Saul, Wherefore hearest thou men's words, saying, Behold, David seeketh thy hurt?
7850                                                                                                                                                                                                                                                                                    Behold, this day thine eyes have seen how that the LORD had delivered thee to day into mine hand in the cave: and some bade me kill thee: but mine eye spared thee; and I said, I will not put forth mine hand against my lord; for he is the LORD's anointed.
7851                                                                                                                                                                                                                                                      Moreover, my father, see, yea, see the skirt of thy robe in my hand: for in that I cut off the skirt of thy robe, and killed thee not, know thou and see that there is neither evil nor transgression in mine hand, and I have not sinned against thee; yet thou huntest my soul to take it.
7852                                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD judge between me and thee, and the LORD avenge me of thee: but mine hand shall not be upon thee.
7853                                                                                                                                                                                                                                                                                                                                                                                                                                As saith the proverb of the ancients, Wickedness proceedeth from the wicked: but mine hand shall not be upon thee.
7854                                                                                                                                                                                                                                                                                                                                                                                                                                           After whom is the king of Israel come out? after whom dost thou pursue? after a dead dog, after a flea.
7855                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD therefore be judge, and judge between me and thee, and see, and plead my cause, and deliver me out of thine hand.
7856                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when David had made an end of speaking these words unto Saul, that Saul said, Is this thy voice, my son David? And Saul lifted up his voice, and wept.
7857                                                                                                                                                                                                                                                                                                                                                                                                                          And he said to David, Thou art more righteous than I: for thou hast rewarded me good, whereas I have rewarded thee evil.
7858                                                                                                                                                                                                                                                                                                                                                                                           And thou hast showed this day how that thou hast dealt well with me: forasmuch as when the LORD had delivered me into thine hand, thou killedst me not.
7859                                                                                                                                                                                                                                                                                                                                                                                                          For if a man find his enemy, will he let him go well away? wherefore the LORD reward thee good for that thou hast done unto me this day.
7860                                                                                                                                                                                                                                                                                                                                                                                                                   And now, behold, I know well that thou shalt surely be king, and that the kingdom of Israel shall be established in thine hand.
7861                                                                                                                                                                                                                                                                                                                                                                                            Swear now therefore unto me by the LORD, that thou wilt not cut off my seed after me, and that thou wilt not destroy my name out of my father's house.
7862                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David sware unto Saul. And Saul went home; but David and his men gat them up unto the hold.
7863                                                                                                                                                                                                                                                                                                                                                                And Samuel died; and all the Israelites were gathered together, and lamented him, and buried him in his house at Ramah. And David arose, and went down to the wilderness of Paran.
7864                                                                                                                                                                                                                                                                                                                                                        And there was a man in Maon, whose possessions were in Carmel; and the man was very great, and he had three thousand sheep, and a thousand goats: and he was shearing his sheep in Carmel.
7865                                                                                                                                                                                                                                                                                                                Now the name of the man was Nabal; and the name of his wife Abigail: and she was a woman of good understanding, and of a beautiful countenance: but the man was churlish and evil in his doings; and he was of the house of Caleb.
7866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David heard in the wilderness that Nabal did shear his sheep.
7867                                                                                                                                                                                                                                                                                                                                                                                                             And David sent out ten young men, and David said unto the young men, Get you up to Carmel, and go to Nabal, and greet him in my name:
7868                                                                                                                                                                                                                                                                                                                                                                                                 And thus shall ye say to him that liveth in prosperity, Peace be both to thee, and peace be to thine house, and peace be unto all that thou hast.
7869                                                                                                                                                                                                                                                                                                                                                               And now I have heard that thou hast shearers: now thy shepherds which were with us, we hurt them not, neither was there ought missing unto them, all the while they were in Carmel.
7870                                                                                                                                                                                                                                                                                                                          Ask thy young men, and they will show thee. Wherefore let the young men find favor in thine eyes: for we come in a good day: give, I pray thee, whatsoever cometh to thine hand unto thy servants, and to thy son David.
7871                                                                                                                                                                                                                                                                                                                                                                                                                               And when David's young men came, they spake to Nabal according to all those words in the name of David, and ceased.
7872                                                                                                                                                                                                                                                                                                                                                                            And Nabal answered David's servants, and said, Who is David? and who is the son of Jesse? there be many servants now a days that break away every man from his master.
7873                                                                                                                                                                                                                                                                                                                                                                                                  Shall I then take my bread, and my water, and my flesh that I have killed for my shearers, and give it unto men, whom I know not whence they be?
7874                                                                                                                                                                                                                                                                                                                                                                                                                                                   So David's young men turned their way, and went again, and came and told him all those sayings.
7875                                                                                                                                                                                                                                                                                                                And David said unto his men, Gird ye on every man his sword. And they girded on every man his sword; and David also girded on his sword: and there went up after David about four hundred men; and two hundred abode by the stuff.
7876                                                                                                                                                                                                                                                                                                                                                                                     But one of the young men told Abigail, Nabal's wife, saying, Behold, David sent messengers out of the wilderness to salute our master; and he railed on them.
7877                                                                                                                                                                                                                                                                                                                                                                                       But the men were very good unto us, and we were not hurt, neither missed we any thing, as long as we were conversant with them, when we were in the fields:
7878                                                                                                                                                                                                                                                                                                                                                                                                                                                They were a wall unto us both by night and day, all the while we were with them keeping the sheep.
7879                                                                                                                                                                                                                                                                                                                                                      Now therefore know and consider what thou wilt do; for evil is determined against our master, and against all his household: for he is such a son of Belial, that a man cannot speak to him.
7880                                                                                                                                                                                                                                                                                                        Then Abigail made haste, and took two hundred loaves, and two bottles of wine, and five sheep ready dressed, and five measures of parched corn, and an hundred clusters of raisins, and two hundred cakes of figs, and laid them on asses.
7881                                                                                                                                                                                                                                                                                                                                                                                                                                    And she said unto her servants, Go on before me; behold, I come after you. But she told not her husband Nabal.
7882                                                                                                                                                                                                                                                                                                                                                                                      And it was so, as she rode on the ass, that she came down by the covert on the hill, and, behold, David and his men came down against her; and she met them.
7883                                                                                                                                                                                                                                                                                                                                                     Now David had said, Surely in vain have I kept all that this fellow hath in the wilderness, so that nothing was missed of all that pertained unto him: and he hath requited me evil for good.
7884                                                                                                                                                                                                                                                                                                                                                                                                  So and more also do God unto the enemies of David, if I leave of all that pertain to him by the morning light any that pisseth against the wall.
7885                                                                                                                                                                                                                                                                                                                                                                                                              And when Abigail saw David, she hasted, and lighted off the ass, and fell before David on her face, and bowed herself to the ground,
7886                                                                                                                                                                                                                                                                                                                                                               And fell at his feet, and said, Upon me, my lord, upon me let this iniquity be: and let thine handmaid, I pray thee, speak in thine audience, and hear the words of thine handmaid.
7887                                                                                                                                                                                                                                                                                                                         Let not my lord, I pray thee, regard this man of Belial, even Nabal: for as his name is, so is he; Nabal is his name, and folly is with him: but I thine handmaid saw not the young men of my lord, whom thou didst send.
7888                                                                                                                                                                                                                                                                                        Now therefore, my lord, as the LORD liveth, and as thy soul liveth, seeing the LORD hath withholden thee from coming to shed blood, and from avenging thyself with thine own hand, now let thine enemies, and they that seek evil to my lord, be as Nabal.
7889                                                                                                                                                                                                                                                                                                                                                                                                                And now this blessing which thine handmaid hath brought unto my lord, let it even be given unto the young men that follow my lord.
7890                                                                                                                                                                                                                                                                                                                                  I pray thee, forgive the trespass of thine handmaid: for the LORD will certainly make my lord a sure house; because my lord fighteth the battles of the LORD, and evil hath not been found in thee all thy days.
7891                                                                                                                                                                                                                                                                                                            Yet a man is risen to pursue thee, and to seek thy soul: but the soul of my lord shall be bound in the bundle of life with the LORD thy God; and the souls of thine enemies, them shall he sling out, as out of the middle of a sling.
7892                                                                                                                                                                                                                                                                                                                                                               And it shall come to pass, when the LORD shall have done to my lord according to all the good that he hath spoken concerning thee, and shall have appointed thee ruler over Israel;
7893                                                                                                                                                                                                                                                                                                   That this shall be no grief unto thee, nor offense of heart unto my lord, either that thou hast shed blood causeless, or that my lord hath avenged himself: but when the LORD shall have dealt well with my lord, then remember thine handmaid.
7894                                                                                                                                                                                                                                                                                                                                                                                                                                                And David said to Abigail, Blessed be the LORD God of Israel, which sent thee this day to meet me:
7895                                                                                                                                                                                                                                                                                                                                                                                               And blessed be thy advice, and blessed be thou, which hast kept me this day from coming to shed blood, and from avenging myself with mine own hand.
7896                                                                                                                                                                                                                                                                                                    For in very deed, as the LORD God of Israel liveth, which hath kept me back from hurting thee, except thou hadst hasted and come to meet me, surely there had not been left unto Nabal by the morning light any that pisseth against the wall.
7897                                                                                                                                                                                                                                                                                                                                                                 So David received of her hand that which she had brought him, and said unto her, Go up in peace to thine house; see, I have hearkened to thy voice, and have accepted thy person.
7898                                                                                                                                                                                                                                                                                                           And Abigail came to Nabal; and, behold, he held a feast in his house, like the feast of a king; and Nabal's heart was merry within him, for he was very drunken: wherefore she told him nothing, less or more, until the morning light.
7899                                                                                                                                                                                                                                                                                                                                                                        But it came to pass in the morning, when the wine was gone out of Nabal, and his wife had told him these things, that his heart died within him, and he became as a stone.
7900                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass about ten days after, that the LORD smote Nabal, that he died.
7901                                                                                                                                                                                                                       And when David heard that Nabal was dead, he said, Blessed be the LORD, that hath pleaded the cause of my reproach from the hand of Nabal, and hath kept his servant from evil: for the LORD hath returned the wickedness of Nabal upon his own head. And David sent and communed with Abigail, to take her to him to wife.
7902                                                                                                                                                                                                                                                                                                                                                                                                 And when the servants of David were come to Abigail to Carmel, they spake unto her, saying, David sent us unto thee, to take thee to him to wife.
7903                                                                                                                                                                                                                                                                                                                                                                                         And she arose, and bowed herself on her face to the earth, and said, Behold, let thine handmaid be a servant to wash the feet of the servants of my lord.
7904                                                                                                                                                                                                                                                                                                                                                                               And Abigail hasted, and arose and rode upon an ass, with five damsels of hers that went after her; and she went after the messengers of David, and became his wife.
7905                                                                                                                                                                                                                                                                                                                                                                                                                                                                    David also took Ahinoam of Jezreel; and they were also both of them his wives.
7906                                                                                                                                                                                                                                                                                                                                                                                                                                            But Saul had given Michal his daughter, David's wife, to Phalti the son of Laish, which was of Gallim.
7907                                                                                                                                                                                                                                                                                                                                                                                                                 And the Ziphites came unto Saul to Gibeah, saying, Doth not David hide himself in the hill of Hachilah, which is before Jeshimon?
7908                                                                                                                                                                                                                                                                                                                                                                                           Then Saul arose, and went down to the wilderness of Ziph, having three thousand chosen men of Israel with him, to seek David in the wilderness of Ziph.
7909                                                                                                                                                                                                                                                                                                                                                                       And Saul pitched in the hill of Hachilah, which is before Jeshimon, by the way. But David abode in the wilderness, and he saw that Saul came after him into the wilderness.
7910                                                                                                                                                                                                                                                                                                                                                                                                                                                                   David therefore sent out spies, and understood that Saul was come in very deed.
7911                                                                                                                                                                                                                                                                                                                  And David arose, and came to the place where Saul had pitched: and David beheld the place where Saul lay, and Abner the son of Ner, the captain of his host: and Saul lay in the trench, and the people pitched round about him.
7912                                                                                                                                                                                                                                                                                                                                      Then answered David and said to Ahimelech the Hittite, and to Abishai the son of Zeruiah, brother to Joab, saying, Who will go down with me to Saul to the camp? And Abishai said, I will go down with thee.
7913                                                                                                                                                                                                                                                                                                                                               So David and Abishai came to the people by night: and, behold, Saul lay sleeping within the trench, and his spear stuck in the ground at his bolster: but Abner and the people lay round about him.
7914                                                                                                                                                                                                                                                                                                                             Then said Abishai to David, God hath delivered thine enemy into thine hand this day: now therefore let me smite him, I pray thee, with the spear even to the earth at once, and I will not smite him the second time.
7915                                                                                                                                                                                                                                                                                                                                                                                                                     And David said to Abishai, Destroy him not: for who can stretch forth his hand against the LORD's anointed, and be guiltless?
7916                                                                                                                                                                                                                                                                                                                                                                                                  David said furthermore, As the LORD liveth, the LORD shall smite him; or his day shall come to die; or he shall descend into battle, and perish.
7917                                                                                                                                                                                                                                                                                                                                                       The LORD forbid that I should stretch forth mine hand against the LORD's anointed: but, I pray thee, take thou now the spear that is at his bolster, and the cruse of water, and let us go.
7918                                                                                                                                                                                                                                                                                                                    So David took the spear and the cruse of water from Saul's bolster; and they gat them away, and no man saw it, nor knew it, neither awaked: for they were all asleep; because a deep sleep from the LORD was fallen upon them.
7919                                                                                                                                                                                                                                                                                                                                                                                                                               Then David went over to the other side, and stood on the top of an hill afar off; a great space being between them:
7920                                                                                                                                                                                                                                                                                                                                                                                And David cried to the people, and to Abner the son of Ner, saying, Answerest thou not, Abner? Then Abner answered and said, Who art thou that criest to the king?
7921                                                                                                                                                                                                                                                                                                                                    And David said to Abner, Art not thou a valiant man? and who is like to thee in Israel? wherefore then hast thou not kept thy lord the king? for there came one of the people in to destroy the king thy lord.
7922                                                                                                                                                                                                                                                                                                           This thing is not good that thou hast done. As the LORD liveth, ye are worthy to die, because ye have not kept your master, the LORD's anointed. And now see where the king's spear is, and the cruse of water that was at his bolster.
7923                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul knew David's voice, and said, Is this thy voice, my son David? And David said, It is my voice, my lord, O king.
7924                                                                                                                                                                                                                                                                                                                                                                                                                            And he said, Wherefore doth my lord thus pursue after his servant? for what have I done? or what evil is in mine hand?
7925                                                                                                                                                                                                      Now therefore, I pray thee, let my lord the king hear the words of his servant. If the LORD have stirred thee up against me, let him accept an offering: but if they be the children of men, cursed be they before the LORD; for they have driven me out this day from abiding in the inheritance of the LORD, saying, Go, serve other gods.
7926                                                                                                                                                                                                                                                                                                                                                             Now therefore, let not my blood fall to the earth before the face of the LORD: for the king of Israel is come out to seek a flea, as when one doth hunt a partridge in the mountains.
7927                                                                                                                                                                                                                                                                                                                                            Then said Saul, I have sinned: return, my son David: for I will no more do thee harm, because my soul was precious in thine eyes this day: behold, I have played the fool, and have erred exceedingly.
7928                                                                                                                                                                                                                                                                                                                                                                                                                                        And David answered and said, Behold the king's spear! and let one of the young men come over and fetch it.
7929                                                                                                                                                                                                                                                                                                                                                        The LORD render to every man his righteousness and his faithfulness; for the LORD delivered thee into my hand to day, but I would not stretch forth mine hand against the LORD's anointed.
7930                                                                                                                                                                                                                                                                                                                                                                             And, behold, as thy life was much set by this day in mine eyes, so let my life be much set by in the eyes of the LORD, and let him deliver me out of all tribulation.
7931                                                                                                                                                                                                                                                                                                                                                                  Then Saul said to David, Blessed be thou, my son David: thou shalt both do great things, and also shalt still prevail. So David went on his way, and Saul returned to his place.
7932                                                                                                                                                                                                                                                     And David said in his heart, I shall now perish one day by the hand of Saul: there is nothing better for me than that I should speedily escape into the land of the Philistines; and Saul shall despair of me, to seek me any more in any coast of Israel: so shall I escape out of his hand.
7933                                                                                                                                                                                                                                                                                                                                                                                                                      And David arose, and he passed over with the six hundred men that were with him unto Achish, the son of Maoch, king of Gath.
7934                                                                                                                                                                                                                                                                                                                                                            And David dwelt with Achish at Gath, he and his men, every man with his household, even David with his two wives, Ahinoam the Jezreelitess, and Abigail the Carmelitess, Nabal's wife.
7935                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it was told Saul that David was fled to Gath: and he sought no more again for him.
7936                                                                                                                                                                                                                                                                                                                                  And David said unto Achish, If I have now found grace in thine eyes, let them give me a place in some town in the country, that I may dwell there: for why should thy servant dwell in the royal city with thee?
7937                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Achish gave him Ziklag that day: wherefore Ziklag pertaineth unto the kings of Judah unto this day.
7938                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the time that David dwelt in the country of the Philistines was a full year and four months.
7939                                                                                                                                                                                                                                                                                                                                   And David and his men went up, and invaded the Geshurites, and the Gezrites, and the Amalekites: for those nations were of old the inhabitants of the land, as thou goest to Shur, even unto the land of Egypt.
7940                                                                                                                                                                                                                                                                                                                                                          And David smote the land, and left neither man nor woman alive, and took away the sheep, and the oxen, and the asses, and the camels, and the apparel, and returned, and came to Achish.
7941                                                                                                                                                                                                                                                                                                                                                                And Achish said, Whither have ye made a road to day? And David said, Against the south of Judah, and against the south of the Jerahmeelites, and against the south of the Kenites.
7942                                                                                                                                                                                                                                                                                                                          And David saved neither man nor woman alive, to bring tidings to Gath, saying, Lest they should tell on us, saying, So did David, and so will be his manner all the while he dwelleth in the country of the Philistines.
7943                                                                                                                                                                                                                                                                                                                                                                                                                And Achish believed David, saying, He hath made his people Israel utterly to abhor him; therefore he shall be my servant for ever.
7944                                                                                                                                                                                                                                                                                                            And it came to pass in those days, that the Philistines gathered their armies together for warfare, to fight with Israel. And Achish said unto David, Know thou assuredly, that thou shalt go out with me to battle, thou and thy men.
7945                                                                                                                                                                                                                                                                                                                                                                                      And David said to Achish, Surely thou shalt know what thy servant can do. And Achish said to David, Therefore will I make thee keeper of mine head for ever.
7946                                                                                                                                                                                                                                                                                                                                                     Now Samuel was dead, and all Israel had lamented him, and buried him in Ramah, even in his own city. And Saul had put away those that had familiar spirits, and the wizards, out of the land.
7947                                                                                                                                                                                                                                                                                                                                                                                              And the Philistines gathered themselves together, and came and pitched in Shunem: and Saul gathered all Israel together, and they pitched in Gilboa.
7948                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when Saul saw the host of the Philistines, he was afraid, and his heart greatly trembled.
7949                                                                                                                                                                                                                                                                                                                                                                                                                                   And when Saul inquired of the LORD, the LORD answered him not, neither by dreams, nor by Urim, nor by prophets.
7950                                                                                                                                                                                                                                                                                                                             Then said Saul unto his servants, Seek me a woman that hath a familiar spirit, that I may go to her, and inquire of her. And his servants said to him, Behold, there is a woman that hath a familiar spirit at Endor.
7951                                                                                                                                                                                                                                                                                                  And Saul disguised himself, and put on other raiment, and he went, and two men with him, and they came to the woman by night: and he said, I pray thee, divine unto me by the familiar spirit, and bring me him up, whom I shall name unto thee.
7952                                                                                                                                                                                                                                                                                                                And the woman said unto him, Behold, thou knowest what Saul hath done, how he hath cut off those that have familiar spirits, and the wizards, out of the land: wherefore then layest thou a snare for my life, to cause me to die?
7953                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul sware to her by the LORD, saying, As the LORD liveth, there shall no punishment happen to thee for this thing.
7954                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said the woman, Whom shall I bring up unto thee? And he said, Bring me up Samuel.
7955                                                                                                                                                                                                                                                                                                                                                                                                    And when the woman saw Samuel, she cried with a loud voice: and the woman spake to Saul, saying, Why hast thou deceived me? for thou art Saul.
7956                                                                                                                                                                                                                                                                                                                                                                                                             And the king said unto her, Be not afraid: for what sawest thou? And the woman said unto Saul, I saw gods ascending out of the earth.
7957                                                                                                                                                                                                                                                                                                                              And he said unto her, What form is he of? And she said, An old man cometh up; and he is covered with a mantle. And Saul perceived that it was Samuel, and he stooped with his face to the ground, and bowed himself.
7958                                                                                                                                                                                                             And Samuel said to Saul, Why hast thou disquieted me, to bring me up? And Saul answered, I am sore distressed; for the Philistines make war against me, and God is departed from me, and answereth me no more, neither by prophets, nor by dreams: therefore I have called thee, that thou mayest make known unto me what I shall do.
7959                                                                                                                                                                                                                                                                                                                                                                                                                           Then said Samuel, Wherefore then dost thou ask of me, seeing the LORD is departed from thee, and is become thine enemy?
7960                                                                                                                                                                                                                                                                                                                                                                                              And the LORD hath done to him, as he spake by me: for the LORD hath rent the kingdom out of thine hand, and given it to thy neighbor, even to David:
7961                                                                                                                                                                                                                                                                                                                                                                                         Because thou obeyedst not the voice of the LORD, nor executedst his fierce wrath upon Amalek, therefore hath the LORD done this thing unto thee this day.
7962                                                                                                                                                                                                                                                                                                                         Moreover the LORD will also deliver Israel with thee into the hand of the Philistines: and to morrow shalt thou and thy sons be with me: the LORD also shall deliver the host of Israel into the hand of the Philistines.
7963                                                                                                                                                                                                                                                                                                                                               Then Saul fell straightway all along on the earth, and was sore afraid, because of the words of Samuel: and there was no strength in him; for he had eaten no bread all the day, nor all the night.
7964                                                                                                                                                                                                                                                                                                                And the woman came unto Saul, and saw that he was sore troubled, and said unto him, Behold, thine handmaid hath obeyed thy voice, and I have put my life in my hand, and have hearkened unto thy words which thou spakest unto me.
7965                                                                                                                                                                                                                                                                                                                                                Now therefore, I pray thee, hearken thou also unto the voice of thine handmaid, and let me set a morsel of bread before thee; and eat, that thou mayest have strength, when thou goest on thy way.
7966                                                                                                                                                                                                                                                                                                                                                          But he refused, and said, I will not eat. But his servants, together with the woman, compelled him; and he hearkened unto their voice. So he arose from the earth, and sat upon the bed.
7967                                                                                                                                                                                                                                                                                                                                                                                                  And the woman had a fat calf in the house; and she hasted, and killed it, and took flour, and kneaded it, and did bake unleavened bread thereof:
7968                                                                                                                                                                                                                                                                                                                                                                                                                           And she brought it before Saul, and before his servants; and they did eat. Then they rose up, and went away that night.
7969                                                                                                                                                                                                                                                                                                                                                                                                                    Now the Philistines gathered together all their armies to Aphek: and the Israelites pitched by a fountain which is in Jezreel.
7970                                                                                                                                                                                                                                                                                                                                                                                                            And the lords of the Philistines passed on by hundreds, and by thousands: but David and his men passed on in the rearward with Achish.
7971                                                                                                                                                                                                                                   Then said the princes of the Philistines, What do these Hebrews here? And Achish said unto the princes of the Philistines, Is not this David, the servant of Saul the king of Israel, which hath been with me these days, or these years, and I have found no fault in him since he fell unto me unto this day?
7972                                                                                                                                              And the princes of the Philistines were wroth with him; and the princes of the Philistines said unto him, Make this fellow return, that he may go again to his place which thou hast appointed him, and let him not go down with us to battle, lest in the battle he be an adversary to us: for wherewith should he reconcile himself unto his master? should it not be with the heads of these men?
7973                                                                                                                                                                                                                                                                                                                                                                                                                      Is not this David, of whom they sang one to another in dances, saying, Saul slew his thousands, and David his ten thousands?
7974                                                                                                                                                                                                                                         Then Achish called David, and said unto him, Surely, as the LORD liveth, thou hast been upright, and thy going out and thy coming in with me in the host is good in my sight: for I have not found evil in thee since the day of thy coming unto me unto this day: nevertheless the lords favor thee not.
7975                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore now return, and go in peace, that thou displease not the lords of the Philistines.
7976                                                                                                                                                                                                                                                                                                                                        And David said unto Achish, But what have I done? and what hast thou found in thy servant so long as I have been with thee unto this day, that I may not go fight against the enemies of my lord the king?
7977                                                                                                                                                                                                                                                                                                                                             And Achish answered and said to David, I know that thou art good in my sight, as an angel of God: notwithstanding the princes of the Philistines have said, He shall not go up with us to the battle.
7978                                                                                                                                                                                                                                                                                                                                                                              Wherefore now rise up early in the morning with thy master's servants that are come with thee: and as soon as ye be up early in the morning, and have light, depart.
7979                                                                                                                                                                                                                                                                                                                                                                                                  So David and his men rose up early to depart in the morning, to return into the land of the Philistines. And the Philistines went up to Jezreel.
7980                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when David and his men were come to Ziklag on the third day, that the Amalekites had invaded the south, and Ziklag, and smitten Ziklag, and burned it with fire;
7981                                                                                                                                                                                                                                                                                                                                                                                                      And had taken the women captives, that were therein: they slew not any, either great or small, but carried them away, and went on their way.
7982                                                                                                                                                                                                                                                                                                                                                                                           So David and his men came to the city, and, behold, it was burned with fire; and their wives, and their sons, and their daughters, were taken captives.
7983                                                                                                                                                                                                                                                                                                                                                                                                                                Then David and the people that were with him lifted up their voice and wept, until they had no more power to weep.
7984                                                                                                                                                                                                                                                                                                                                                                                                                                 And David's two wives were taken captives, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite.
7985                                                                                                                                                                                                                                                                                                                            And David was greatly distressed; for the people spake of stoning him, because the soul of all the people was grieved, every man for his sons and for his daughters: but David encouraged himself in the LORD his God.
7986                                                                                                                                                                                                                                                                                                                                                                                                  And David said to Abiathar the priest, Ahimelech's son, I pray thee, bring me hither the ephod. And Abiathar brought thither the ephod to David.
7987                                                                                                                                                                                                                                                                                                                                                   And David inquired at the LORD, saying, Shall I pursue after this troop? shall I overtake them? And he answered him, Pursue: for thou shalt surely overtake them, and without fail recover all.
7988                                                                                                                                                                                                                                                                                                                                                                                                              So David went, he and the six hundred men that were with him, and came to the brook Besor, where those that were left behind stayed.
7989                                                                                                                                                                                                                                                                                                                                                                                                        But David pursued, he and four hundred men: for two hundred abode behind, which were so faint that they could not go over the brook Besor.
7990                                                                                                                                                                                                                                                                                                                                                                                                             And they found an Egyptian in the field, and brought him to David, and gave him bread, and he did eat; and they made him drink water;
7991                                                                                                                                                                                                                                                                                                                                       And they gave him a piece of a cake of figs, and two clusters of raisins: and when he had eaten, his spirit came again to him: for he had eaten no bread, nor drunk any water, three days and three nights.
7992                                                                                                                                                                                                                                                                                                                                               And David said unto him, To whom belongest thou? and whence art thou? And he said, I am a young man of Egypt, servant to an Amalekite; and my master left me, because three days agone I fell sick.
7993                                                                                                                                                                                                                                                                                                                                                                                  We made an invasion upon the south of the Cherethites, and upon the coast which belongeth to Judah, and upon the south of Caleb; and we burned Ziklag with fire.
7994                                                                                                                                                                                                                                                                                                                       And David said to him, Canst thou bring me down to this company? And he said, Swear unto me by God, that thou wilt neither kill me, nor deliver me into the hands of my master, and I will bring thee down to this company.
7995                                                                                                                                                                                                                                                                                                      And when he had brought him down, behold, they were spread abroad upon all the earth, eating and drinking, and dancing, because of all the great spoil that they had taken out of the land of the Philistines, and out of the land of Judah.
7996                                                                                                                                                                                                                                                                                                                                                                 And David smote them from the twilight even unto the evening of the next day: and there escaped not a man of them, save four hundred young men, which rode upon camels, and fled.
7997                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David recovered all that the Amalekites had carried away: and David rescued his two wives.
7998                                                                                                                                                                                                                                                                                                                                                                        And there was nothing lacking to them, neither small nor great, neither sons nor daughters, neither spoil, nor any thing that they had taken to them: David recovered all.
7999                                                                                                                                                                                                                                                                                                                                                                                                                         And David took all the flocks and the herds, which they drave before those other cattle, and said, This is David's spoil.
8000                                                                                                                                                                                                                                                          And David came to the two hundred men, which were so faint that they could not follow David, whom they had made also to abide at the brook Besor: and they went forth to meet David, and to meet the people that were with him: and when David came near to the people, he saluted them.
8001                                                                                                                                                                                                                                                               Then answered all the wicked men and men of Belial, of those that went with David, and said, Because they went not with us, we will not give them ought of the spoil that we have recovered, save to every man his wife and his children, that they may lead them away, and depart.
8002                                                                                                                                                                                                                                                                                                                                                                    Then said David, Ye shall not do so, my brethren, with that which the LORD hath given us, who hath preserved us, and delivered the company that came against us into our hand.
8003                                                                                                                                                                                                                                                                                                                                                                           For who will hearken unto you in this matter? but as his part is that goeth down to the battle, so shall his part be that tarrieth by the stuff: they shall part alike.
8004                                                                                                                                                                                                                                                                                                                                                                                                                                         And it was so from that day forward, that he made it a statute and an ordinance for Israel unto this day.
8005                                                                                                                                                                                                                                                                                                                                                                      And when David came to Ziklag, he sent of the spoil unto the elders of Judah, even to his friends, saying, Behold a present for you of the spoil of the enemies of the LORD;
8006                                                                                                                                                                                                                                                                                                                                                                                                                                           To them which were in Bethel, and to them which were in south Ramoth, and to them which were in Jattir,
8007                                                                                                                                                                                                                                                                                                                                                                                                                                          And to them which were in Aroer, and to them which were in Siphmoth, and to them which were in Eshtemoa,
8008                                                                                                                                                                                                                                                                                                                                                                                                 And to them which were in Rachal, and to them which were in the cities of the Jerahmeelites, and to them which were in the cities of the Kenites,
8009                                                                                                                                                                                                                                                                                                                                                                                                                                          And to them which were in Hormah, and to them which were in Chorashan, and to them which were in Athach,
8010                                                                                                                                                                                                                                                                                                                                                                                                                                       And to them which were in Hebron, and to all the places where David himself and his men were wont to haunt.
8011                                                                                                                                                                                                                                                                                                                                                                                                           Now the Philistines fought against Israel: and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.
8012                                                                                                                                                                                                                                                                                                                                                                                                      And the Philistines followed hard upon Saul and upon his sons; and the Philistines slew Jonathan, and Abinadab, and Melchishua, Saul's sons.
8013                                                                                                                                                                                                                                                                                                                                                                                                                                           And the battle went sore against Saul, and the archers hit him; and he was sore wounded of the archers.
8014                                                                                                                                                                                                                                                                                  Then said Saul unto his armourbearer, Draw thy sword, and thrust me through therewith; lest these uncircumcised come and thrust me through, and abuse me. But his armourbearer would not; for he was sore afraid. Therefore Saul took a sword, and fell upon it.
8015                                                                                                                                                                                                                                                                                                                                                                                                                                             And when his armourbearer saw that Saul was dead, he fell likewise upon his sword, and died with him.
8016                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Saul died, and his three sons, and his armourbearer, and all his men, that same day together.
8017                                                                                                                                                                                                                                                                          And when the men of Israel that were on the other side of the valley, and they that were on the other side Jordan, saw that the men of Israel fled, and that Saul and his sons were dead, they forsook the cities, and fled; and the Philistines came and dwelt in them.
8018                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass on the morrow, when the Philistines came to strip the slain, that they found Saul and his three sons fallen in mount Gilboa.
8019                                                                                                                                                                                                                                                                                                                                                                    And they cut off his head, and stripped off his armor, and sent into the land of the Philistines round about, to publish it in the house of their idols, and among the people.
8020                                                                                                                                                                                                                                                                                                                                                                                                                                             And they put his armor in the house of Ashtaroth: and they fastened his body to the wall of Bethshan.
8021                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the inhabitants of Jabeshgilead heard of that which the Philistines had done to Saul;
8022                                                                                                                                                                                                                                                                                                                                                                          All the valiant men arose, and went all night, and took the body of Saul and the bodies of his sons from the wall of Bethshan, and came to Jabesh, and burnt them there.
8023                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they took their bones, and buried them under a tree at Jabesh, and fasted seven days.
8024                                                                                                                                                                                                                                                                                                                                                                                                Now it came to pass after the death of Saul, when David was returned from the slaughter of the Amalekites, and David had abode two days in Ziklag;
8025                                                                                                                                                                                                                                                                                                                     It came even to pass on the third day, that, behold, a man came out of the camp from Saul with his clothes rent, and earth upon his head: and so it was, when he came to David, that he fell to the earth, and did obeisance.
8026                                                                                                                                                                                                                                                                                                                                                                                                                                   And David said unto him, From whence comest thou? And he said unto him, Out of the camp of Israel am I escaped.
8027                                                                                                                                                                                                                                                                                                                      And David said unto him, How went the matter? I pray thee, tell me. And he answered, That the people are fled from the battle, and many of the people also are fallen and dead; and Saul and Jonathan his son are dead also.
8028                                                                                                                                                                                                                                                                                                                                                                                                                                         And David said unto the young man that told him, How knowest thou that Saul and Jonathan his son be dead?
8029                                                                                                                                                                                                                                                                                                                                                                  And the young man that told him said, As I happened by chance upon mount Gilboa, behold, Saul leaned upon his spear; and, lo, the chariots and horsemen followed hard after him.
8030                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when he looked behind him, he saw me, and called unto me. And I answered, Here am I.
8031                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto me, Who art thou? And I answered him, I am an Amalekite.
8032                                                                                                                                                                                                                                                                                                                                                                                                                 He said unto me again, Stand, I pray thee, upon me, and slay me: for anguish is come upon me, because my life is yet whole in me.
8033                                                                                                                                                                                                                                                                                                              So I stood upon him, and slew him, because I was sure that he could not live after that he was fallen: and I took the crown that was upon his head, and the bracelet that was on his arm, and have brought them hither unto my lord.
8034                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then David took hold on his clothes, and rent them; and likewise all the men that were with him:
8035                                                                                                                                                                                                                                                                                                                                                        And they mourned, and wept, and fasted until even, for Saul, and for Jonathan his son, and for the people of the LORD, and for the house of Israel; because they were fallen by the sword.
8036                                                                                                                                                                                                                                                                                                                                                                                                                      And David said unto the young man that told him, Whence art thou? And he answered, I am the son of a stranger, an Amalekite.
8037                                                                                                                                                                                                                                                                                                                                                                                                                                     And David said unto him, How wast thou not afraid to stretch forth thine hand to destroy the LORD's anointed?
8038                                                                                                                                                                                                                                                                                                                                                                                                                                       And David called one of the young men, and said, Go near, and fall upon him. And he smote him that he died.
8039                                                                                                                                                                                                                                                                                                                                                                                                         And David said unto him, Thy blood be upon thy head; for thy mouth hath testified against thee, saying, I have slain the LORD's anointed.
8040                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David lamented with this lamentation over Saul and over Jonathan his son:
8041                                                                                                                                                                                                                                                                                                                                                                                                                                  (Also he bade them teach the children of Judah the use of the bow: behold, it is written in the book of Jasher.)
8042                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The beauty of Israel is slain upon thy high places: how are the mighty fallen!
8043                                                                                                                                                                                                                                                                                                                                                                                    Tell it not in Gath, publish it not in the streets of Askelon; lest the daughters of the Philistines rejoice, lest the daughters of the uncircumcised triumph.
8044                                                                                                                                                                                                                                                                                                               Ye mountains of Gilboa, let there be no dew, neither let there be rain, upon you, nor fields of offerings: for there the shield of the mighty is vilely cast away, the shield of Saul, as though he had not been anointed with oil.
8045                                                                                                                                                                                                                                                                                                                                                                                                           From the blood of the slain, from the fat of the mighty, the bow of Jonathan turned not back, and the sword of Saul returned not empty.
8046                                                                                                                                                                                                                                                                                                                                                                                Saul and Jonathan were lovely and pleasant in their lives, and in their death they were not divided: they were swifter than eagles, they were stronger than lions.
8047                                                                                                                                                                                                                                                                                                                                                                                                          Ye daughters of Israel, weep over Saul, who clothed you in scarlet, with other delights, who put on ornaments of gold upon your apparel.
8048                                                                                                                                                                                                                                                                                                                                                                                                                                           How are the mighty fallen in the midst of the battle! O Jonathan, thou wast slain in thine high places.
8049                                                                                                                                                                                                                                                                                                                                                                                                     I am distressed for thee, my brother Jonathan: very pleasant hast thou been unto me: thy love to me was wonderful, passing the love of women.
8050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How are the mighty fallen, and the weapons of war perished!
8051                                                                                                                                                                                                                                                                                                                       And it came to pass after this, that David inquired of the LORD, saying, Shall I go up into any of the cities of Judah? And the LORD said unto him, Go up. And David said, Whither shall I go up? And he said, Unto Hebron.
8052                                                                                                                                                                                                                                                                                                                                                                                                                               So David went up thither, and his two wives also, Ahinoam the Jezreelitess, and Abigail Nabal's wife the Carmelite.
8053                                                                                                                                                                                                                                                                                                                                                                                                                          And his men that were with him did David bring up, every man with his household: and they dwelt in the cities of Hebron.
8054                                                                                                                                                                                                                                                                                                                                                                      And the men of Judah came, and there they anointed David king over the house of Judah. And they told David, saying, That the men of Jabeshgilead were they that buried Saul.
8055                                                                                                                                                                                                                                                                                                                                                     And David sent messengers unto the men of Jabeshgilead, and said unto them, Blessed be ye of the LORD, that ye have showed this kindness unto your lord, even unto Saul, and have buried him.
8056                                                                                                                                                                                                                                                                                                                                                                                                                    And now the LORD show kindness and truth unto you: and I also will requite you this kindness, because ye have done this thing.
8057                                                                                                                                                                                                                                                                                                                                                                                       Therefore now let your hands be strengthened, and be ye valiant: for your master Saul is dead, and also the house of Judah have anointed me king over them.
8058                                                                                                                                                                                                                                                                                                                                                                                                                              But Abner the son of Ner, captain of Saul's host, took Ishbosheth the son of Saul, and brought him over to Mahanaim;
8059                                                                                                                                                                                                                                                                                                                                                                                                                And made him king over Gilead, and over the Ashurites, and over Jezreel, and over Ephraim, and over Benjamin, and over all Israel.
8060                                                                                                                                                                                                                                                                                                                                                                                                       Ishbosheth Saul's son was forty years old when he began to reign over Israel, and reigned two years. But the house of Judah followed David.
8061                                                                                                                                                                                                                                                                                                                                                                                                                                                And the time that David was king in Hebron over the house of Judah was seven years and six months.
8062                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abner the son of Ner, and the servants of Ishbosheth the son of Saul, went out from Mahanaim to Gibeon.
8063                                                                                                                                                                                                                                                                                                                                    And Joab the son of Zeruiah, and the servants of David, went out, and met together by the pool of Gibeon: and they sat down, the one on the one side of the pool, and the other on the other side of the pool.
8064                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abner said to Joab, Let the young men now arise, and play before us. And Joab said, Let them arise.
8065                                                                                                                                                                                                                                                                                                                                                                                                  Then there arose and went over by number twelve of Benjamin, which pertained to Ishbosheth the son of Saul, and twelve of the servants of David.
8066                                                                                                                                                                                                                                                                                                                                                     And they caught every one his fellow by the head, and thrust his sword in his fellow's side; so they fell down together: wherefore that place was called Helkathhazzurim, which is in Gibeon.
8067                                                                                                                                                                                                                                                                                                                                                                                                                             And there was a very sore battle that day; and Abner was beaten, and the men of Israel, before the servants of David.
8068                                                                                                                                                                                                                                                                                                                                                                                                                         And there were three sons of Zeruiah there, Joab, and Abishai, and Asahel: and Asahel was as light of foot as a wild roe.
8069                                                                                                                                                                                                                                                                                                                                                                                                                                And Asahel pursued after Abner; and in going he turned not to the right hand nor to the left from following Abner.
8070                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Abner looked behind him, and said, Art thou Asahel? And he answered, I am.
8071                                                                                                                                                                                                                                                                                                                                               And Abner said to him, Turn thee aside to thy right hand or to thy left, and lay thee hold on one of the young men, and take thee his armor. But Asahel would not turn aside from following of him.
8072                                                                                                                                                                                                                                                                                                                                                                            And Abner said again to Asahel, Turn thee aside from following me: wherefore should I smite thee to the ground? how then should I hold up my face to Joab thy brother?
8073                                                                                                                                                                                                                                     Howbeit he refused to turn aside: wherefore Abner with the hinder end of the spear smote him under the fifth rib, that the spear came out behind him; and he fell down there, and died in the same place: and it came to pass, that as many as came to the place where Asahel fell down and died stood still.
8074                                                                                                                                                                                                                                                                                                                                                                         Joab also and Abishai pursued after Abner: and the sun went down when they were come to the hill of Ammah, that lieth before Giah by the way of the wilderness of Gibeon.
8075                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Benjamin gathered themselves together after Abner, and became one troop, and stood on the top of an hill.
8076                                                                                                                                                                                                                                                                                                                     Then Abner called to Joab, and said, Shall the sword devour for ever? knowest thou not that it will be bitterness in the latter end? how long shall it be then, ere thou bid the people return from following their brethren?
8077                                                                                                                                                                                                                                                                                                                                                                                                   And Joab said, As God liveth, unless thou hadst spoken, surely then in the morning the people had gone up every one from following his brother.
8078                                                                                                                                                                                                                                                                                                                                                                                                                           So Joab blew a trumpet, and all the people stood still, and pursued after Israel no more, neither fought they any more.
8079                                                                                                                                                                                                                                                                                                                                                                                                   And Abner and his men walked all that night through the plain, and passed over Jordan, and went through all Bithron, and they came to Mahanaim.
8080                                                                                                                                                                                                                                                                                                                                                                                               And Joab returned from following Abner: and when he had gathered all the people together, there lacked of David's servants nineteen men and Asahel.
8081                                                                                                                                                                                                                                                                                                                                                                                                                             But the servants of David had smitten of Benjamin, and of Abner's men, so that three hundred and threescore men died.
8082                                                                                                                                                                                                                                                                                                                                                                     And they took up Asahel, and buried him in the sepulchre of his father, which was in Bethlehem. And Joab and his men went all night, and they came to Hebron at break of day.
8083                                                                                                                                                                                                                                                                                                                                                                                    Now there was long war between the house of Saul and the house of David: but David waxed stronger and stronger, and the house of Saul waxed weaker and weaker.
8084                                                                                                                                                                                                                                                                                                                                                                                                                                                And unto David were sons born in Hebron: and his firstborn was Amnon, of Ahinoam the Jezreelitess;
8085                                                                                                                                                                                                                                                                                                                                                                                              And his second, Chileab, of Abigail the wife of Nabal the Carmelite; and the third, Absalom the son of Maacah the daughter of Talmai king of Geshur;
8086                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son of Abital;
8087                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sixth, Ithream, by Eglah David's wife. These were born to David in Hebron.
8088                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, while there was war between the house of Saul and the house of David, that Abner made himself strong for the house of Saul.
8089                                                                                                                                                                                                                                                                                                                                                                                      And Saul had a concubine, whose name was Rizpah, the daughter of Aiah: and Ishbosheth said to Abner, Wherefore hast thou gone in unto my father's concubine?
8090                                                                                                                                                                                                                    Then was Abner very wroth for the words of Ishbosheth, and said, Am I a dog's head, which against Judah do show kindness this day unto the house of Saul thy father, to his brethren, and to his friends, and have not delivered thee into the hand of David, that thou chargest me to day with a fault concerning this woman?
8091                                                                                                                                                                                                                                                                                                                                                                                                                                                  So do God to Abner, and more also, except, as the LORD hath sworn to David, even so I do to him;
8092                                                                                                                                                                                                                                                                                                                                                                                                        To translate the kingdom from the house of Saul, and to set up the throne of David over Israel and over Judah, from Dan even to Beersheba.
8093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he could not answer Abner a word again, because he feared him.
8094                                                                                                                                                                                                                                                                                                                                                  And Abner sent messengers to David on his behalf, saying, Whose is the land? saying also, Make thy league with me, and, behold, my hand shall be with thee, to bring about all Israel unto thee.
8095                                                                                                                                                                                                                                                                                                                                         And he said, Well; I will make a league with thee: but one thing I require of thee, that is, Thou shalt not see my face, except thou first bring Michal Saul's daughter, when thou comest to see my face.
8096                                                                                                                                                                                                                                                                                                                                                                                        And David sent messengers to Ishbosheth Saul's son, saying, Deliver me my wife Michal, which I espoused to me for an hundred foreskins of the Philistines.
8097                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Ishbosheth sent, and took her from her husband, even from Phaltiel the son of Laish.
8098                                                                                                                                                                                                                                                                                                                                                                                                                         And her husband went with her along weeping behind her to Bahurim. Then said Abner unto him, Go, return. And he returned.
8099                                                                                                                                                                                                                                                                                                                                                                                                                             And Abner had communication with the elders of Israel, saying, Ye sought for David in times past to be king over you:
8100                                                                                                                                                                                                                                                                                                                                             Now then do it: for the LORD hath spoken of David, saying, By the hand of my servant David I will save my people Israel out of the hand of the Philistines, and out of the hand of all their enemies.
8101                                                                                                                                                                                                                                                                                                                                                    And Abner also spake in the ears of Benjamin: and Abner went also to speak in the ears of David in Hebron all that seemed good to Israel, and that seemed good to the whole house of Benjamin.
8102                                                                                                                                                                                                                                                                                                                                                                                                                           So Abner came to David to Hebron, and twenty men with him. And David made Abner and the men that were with him a feast.
8103                                                                                                                                                                                                                                                                                          And Abner said unto David, I will arise and go, and will gather all Israel unto my lord the king, that they may make a league with thee, and that thou mayest reign over all that thine heart desireth. And David sent Abner away; and he went in peace.
8104                                                                                                                                                                                                                                                                                                                                       And, behold, the servants of David and Joab came from pursuing a troop, and brought in a great spoil with them: but Abner was not with David in Hebron; for he had sent him away, and he was gone in peace.
8105                                                                                                                                                                                                                                                                                                                                                                        When Joab and all the host that was with him were come, they told Joab, saying, Abner the son of Ner came to the king, and he hath sent him away, and he is gone in peace.
8106                                                                                                                                                                                                                                                                                                                                                                                            Then Joab came to the king, and said, What hast thou done? behold, Abner came unto thee; why is it that thou hast sent him away, and he is quite gone?
8107                                                                                                                                                                                                                                                                                                                                                                                                    Thou knowest Abner the son of Ner, that he came to deceive thee, and to know thy going out and thy coming in, and to know all that thou doest.
8108                                                                                                                                                                                                                                                                                                                                                                                                     And when Joab was come out from David, he sent messengers after Abner, which brought him again from the well of Sirah: but David knew it not.
8109                                                                                                                                                                                                                                                                                                                                                     And when Abner was returned to Hebron, Joab took him aside in the gate to speak with him quietly, and smote him there under the fifth rib, that he died, for the blood of Asahel his brother.
8110                                                                                                                                                                                                                                                                                                                                                                                                       And afterward when David heard it, he said, I and my kingdom are guiltless before the LORD for ever from the blood of Abner the son of Ner:
8111                                                                                                                                                                                                                                                                                                        Let it rest on the head of Joab, and on all his father's house; and let there not fail from the house of Joab one that hath an issue, or that is a leper, or that leaneth on a staff, or that falleth on the sword, or that lacketh bread.
8112                                                                                                                                                                                                                                                                                                                                                                                                                                   So Joab, and Abishai his brother slew Abner, because he had slain their brother Asahel at Gibeon in the battle.
8113                                                                                                                                                                                                                                                                                                                                                               And David said to Joab, and to all the people that were with him, Rend your clothes, and gird you with sackcloth, and mourn before Abner. And king David himself followed the bier.
8114                                                                                                                                                                                                                                                                                                                                                                                                                       And they buried Abner in Hebron: and the king lifted up his voice, and wept at the grave of Abner; and all the people wept.
8115                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king lamented over Abner, and said, Died Abner as a fool dieth?
8116                                                                                                                                                                                                                                                                                                                                                                                             Thy hands were not bound, nor thy feet put into fetters: as a man falleth before wicked men, so fellest thou. And all the people wept again over him.
8117                                                                                                                                                                                                                                                                                                                                                         And when all the people came to cause David to eat meat while it was yet day, David sware, saying, So do God to me, and more also, if I taste bread, or ought else, till the sun be down.
8118                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the people took notice of it, and it pleased them: as whatsoever the king did pleased all the people.
8119                                                                                                                                                                                                                                                                                                                                                                                                                                   For all the people and all Israel understood that day that it was not of the king to slay Abner the son of Ner.
8120                                                                                                                                                                                                                                                                                                                                                                                                                                And the king said unto his servants, Know ye not that there is a prince and a great man fallen this day in Israel?
8121                                                                                                                                                                                                                                                                                                                                                                           And I am this day weak, though anointed king; and these men the sons of Zeruiah be too hard for me: the LORD shall reward the doer of evil according to his wickedness.
8122                                                                                                                                                                                                                                                                                                                                                                                                                             And when Saul's son heard that Abner was dead in Hebron, his hands were feeble, and all the Israelites were troubled.
8123                                                                                                                                                                                                                                                                                                               And Saul's son had two men that were captains of bands: the name of the one was Baanah, and the name of the other Rechab, the sons of Rimmon a Beerothite, of the children of Benjamin: (for Beeroth also was reckoned to Benjamin.
8124                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the Beerothites fled to Gittaim, and were sojourners there until this day.)
8125                                                                                                                                                                                                                                                And Jonathan, Saul's son, had a son that was lame of his feet. He was five years old when the tidings came of Saul and Jonathan out of Jezreel, and his nurse took him up, and fled: and it came to pass, as she made haste to flee, that he fell, and became lame. And his name was Mephibosheth.
8126                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Rimmon the Beerothite, Rechab and Baanah, went, and came about the heat of the day to the house of Ishbosheth, who lay on a bed at noon.
8127                                                                                                                                                                                                                                                                                                                                                                    And they came thither into the midst of the house, as though they would have fetched wheat; and they smote him under the fifth rib: and Rechab and Baanah his brother escaped.
8128                                                                                                                                                                                                                                                                                                                                                     For when they came into the house, he lay on his bed in his bedchamber, and they smote him, and slew him, and beheaded him, and took his head, and gat them away through the plain all night.
8129                                                                                                                                                                                                                                                                                               And they brought the head of Ishbosheth unto David to Hebron, and said to the king, Behold the head of Ishbosheth the son of Saul thine enemy, which sought thy life; and the LORD hath avenged my lord the king this day of Saul, and of his seed.
8130                                                                                                                                                                                                                                                                                                                                                                      And David answered Rechab and Baanah his brother, the sons of Rimmon the Beerothite, and said unto them, As the LORD liveth, who hath redeemed my soul out of all adversity,
8131                                                                                                                                                                                                                                                                                                                                              When one told me, saying, Behold, Saul is dead, thinking to have brought good tidings, I took hold of him, and slew him in Ziklag, who thought that I would have given him a reward for his tidings:
8132                                                                                                                                                                                                                                                                                                                                                           How much more, when wicked men have slain a righteous person in his own house upon his bed? shall I not therefore now require his blood of your hand, and take you away from the earth?
8133                                                                                                                                                                                                                                                                                                               And David commanded his young men, and they slew them, and cut off their hands and their feet, and hanged them up over the pool in Hebron. But they took the head of Ishbosheth, and buried it in the sepulchre of Abner in Hebron.
8134                                                                                                                                                                                                                                                                                                                                                                                                                                Then came all the tribes of Israel to David unto Hebron, and spake, saying, Behold, we are thy bone and thy flesh.
8135                                                                                                                                                                                                                                                                                                                                      Also in time past, when Saul was king over us, thou wast he that leddest out and broughtest in Israel: and the LORD said to thee, Thou shalt feed my people Israel, and thou shalt be a captain over Israel.
8136                                                                                                                                                                                                                                                                                                                                                                               So all the elders of Israel came to the king to Hebron; and king David made a league with them in Hebron before the LORD: and they anointed David king over Israel.
8137                                                                                                                                                                                                                                                                                                                                                                                                                                                                    David was thirty years old when he began to reign, and he reigned forty years.
8138                                                                                                                                                                                                                                                                                                                                                                                                         In Hebron he reigned over Judah seven years and six months: and in Jerusalem he reigned thirty and three years over all Israel and Judah.
8139                                                                                                                                                                                                                                                                                                   And the king and his men went to Jerusalem unto the Jebusites, the inhabitants of the land: which spake unto David, saying, Except thou take away the blind and the lame, thou shalt not come in hither: thinking, David cannot come in hither.
8140                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nevertheless David took the strong hold of Zion: the same is the city of David.
8141                                                                                                                                                                                                                                                                                   And David said on that day, Whosoever getteth up to the gutter, and smiteth the Jebusites, and the lame and the blind that are hated of David's soul, he shall be chief and captain. Wherefore they said, The blind and the lame shall not come into the house.
8142                                                                                                                                                                                                                                                                                                                                                                                                                                   So David dwelt in the fort, and called it the city of David. And David built round about from Millo and inward.
8143                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And David went on, and grew great, and the LORD God of hosts was with him.
8144                                                                                                                                                                                                                                                                                                                                                                                                                      And Hiram king of Tyre sent messengers to David, and cedar trees, and carpenters, and masons: and they built David an house.
8145                                                                                                                                                                                                                                                                                                                                                                                                         And David perceived that the LORD had established him king over Israel, and that he had exalted his kingdom for his people Israel's sake.
8146                                                                                                                                                                                                                                                                                                                                                                                                And David took him more concubines and wives out of Jerusalem, after he was come from Hebron: and there were yet sons and daughters born to David.
8147                                                                                                                                                                                                                                                                                                                                                                                                                              And these be the names of those that were born unto him in Jerusalem; Shammuah, and Shobab, and Nathan, and Solomon,
8148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ibhar also, and Elishua, and Nepheg, and Japhia,
8149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Elishama, and Eliada, and Eliphalet.
8150                                                                                                                                                                                                                                                                                                                                                                        But when the Philistines heard that they had anointed David king over Israel, all the Philistines came up to seek David; and David heard of it, and went down to the hold.
8151                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Philistines also came and spread themselves in the valley of Rephaim.
8152                                                                                                                                                                                                                                                                                                                               And David inquired of the LORD, saying, Shall I go up to the Philistines? wilt thou deliver them into mine hand? And the LORD said unto David, Go up: for I will doubtless deliver the Philistines into thine hand.
8153                                                                                                                                                                                                                                                                                                                                     And David came to Baalperazim, and David smote them there, and said, The LORD hath broken forth upon mine enemies before me, as the breach of waters. Therefore he called the name of that place Baalperazim.
8154                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And there they left their images, and David and his men burned them.
8155                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Philistines came up yet again, and spread themselves in the valley of Rephaim.
8156                                                                                                                                                                                                                                                                                                                                                                                          And when David inquired of the LORD, he said, Thou shalt not go up; but fetch a compass behind them, and come upon them over against the mulberry trees.
8157                                                                                                                                                                                                                                                                                                                                   And let it be, when thou hearest the sound of a going in the tops of the mulberry trees, that then thou shalt bestir thyself: for then shall the LORD go out before thee, to smite the host of the Philistines.
8158                                                                                                                                                                                                                                                                                                                                                                                                                                    And David did so, as the LORD had commanded him; and smote the Philistines from Geba until thou come to Gazer.
8159                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Again, David gathered together all the chosen men of Israel, thirty thousand.
8160                                                                                                                                                                                                                                                                                                                           And David arose, and went with all the people that were with him from Baale of Judah, to bring up from thence the ark of God, whose name is called by the name of the LORD of hosts that dwelleth between the cherubim.
8161                                                                                                                                                                                                                                                                                                                                                                        And they set the ark of God upon a new cart, and brought it out of the house of Abinadab that was in Gibeah: and Uzzah and Ahio, the sons of Abinadab, drave the new cart.
8162                                                                                                                                                                                                                                                                                                                                                                                                                  And they brought it out of the house of Abinadab which was at Gibeah, accompanying the ark of God: and Ahio went before the ark.
8163                                                                                                                                                                                                                                                                                                                                                    And David and all the house of Israel played before the LORD on all manner of instruments made of fir wood, even on harps, and on psalteries, and on timbrels, and on cornets, and on cymbals.
8164                                                                                                                                                                                                                                                                                                                                                                                                            And when they came to Nachon's threshingfloor, Uzzah put forth his hand to the ark of God, and took hold of it; for the oxen shook it.
8165                                                                                                                                                                                                                                                                                                                                                                                                                  And the anger of the LORD was kindled against Uzzah; and God smote him there for his error; and there he died by the ark of God.
8166                                                                                                                                                                                                                                                                                                                                                                                                              And David was displeased, because the LORD had made a breach upon Uzzah: and he called the name of the place Perezuzzah to this day.
8167                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David was afraid of the LORD that day, and said, How shall the ark of the LORD come to me?
8168                                                                                                                                                                                                                                                                                                                                                                                                 So David would not remove the ark of the LORD unto him into the city of David: but David carried it aside into the house of Obededom the Gittite.
8169                                                                                                                                                                                                                                                                                                                                                                                                        And the ark of the LORD continued in the house of Obededom the Gittite three months: and the LORD blessed Obededom, and all his household.
8170                                                                                                                                                                                                                                                                                        And it was told king David, saying, The LORD hath blessed the house of Obededom, and all that pertaineth unto him, because of the ark of God. So David went and brought up the ark of God from the house of Obededom into the city of David with gladness.
8171                                                                                                                                                                                                                                                                                                                                                                                                                                  And it was so, that when they that bare the ark of the LORD had gone six paces, he sacrificed oxen and fatlings.
8172                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David danced before the LORD with all his might; and David was girded with a linen ephod.
8173                                                                                                                                                                                                                                                                                                                                                                                                                             So David and all the house of Israel brought up the ark of the LORD with shouting, and with the sound of the trumpet.
8174                                                                                                                                                                                                                                                                                                                                                And as the ark of the LORD came into the city of David, Michal Saul's daughter looked through a window, and saw king David leaping and dancing before the LORD; and she despised him in her heart.
8175                                                                                                                                                                                                                                                                                                                                            And they brought in the ark of the LORD, and set it in his place, in the midst of the tabernacle that David had pitched for it: and David offered burnt offerings and peace offerings before the LORD.
8176                                                                                                                                                                                                                                                                                                                                                                                                     And as soon as David had made an end of offering burnt offerings and peace offerings, he blessed the people in the name of the LORD of hosts.
8177                                                                                                                                                                                                                                                                                                       And he dealt among all the people, even among the whole multitude of Israel, as well to the women as men, to every one a cake of bread, and a good piece of flesh, and a flagon of wine. So all the people departed every one to his house.
8178                                                                                                                                                                                                                                                   Then David returned to bless his household. And Michal the daughter of Saul came out to meet David, and said, How glorious was the king of Israel to day, who uncovered himself to day in the eyes of the handmaids of his servants, as one of the vain fellows shamelessly uncovereth himself!
8179                                                                                                                                                                                                                                                                                                                              And David said unto Michal, It was before the LORD, which chose me before thy father, and before all his house, to appoint me ruler over the people of the LORD, over Israel: therefore will I play before the LORD.
8180                                                                                                                                                                                                                                                                                                                                                                                    And I will yet be more vile than thus, and will be base in mine own sight: and of the maidservants which thou hast spoken of, of them shall I be had in honor.
8181                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore Michal the daughter of Saul had no child unto the day of her death.
8182                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when the king sat in his house, and the LORD had given him rest round about from all his enemies;
8183                                                                                                                                                                                                                                                                                                                                                                                                                   That the king said unto Nathan the prophet, See now, I dwell in an house of cedar, but the ark of God dwelleth within curtains.
8184                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Nathan said to the king, Go, do all that is in thine heart; for the LORD is with thee.
8185                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass that night, that the word of the LORD came unto Nathan, saying,
8186                                                                                                                                                                                                                                                                                                                                                                                                                                               Go and tell my servant David, Thus saith the LORD, Shalt thou build me an house for me to dwell in?
8187                                                                                                                                                                                                                                                                                                                                                                      Whereas I have not dwelt in any house since the time that I brought up the children of Israel out of Egypt, even to this day, but have walked in a tent and in a tabernacle.
8188                                                                                                                                                                                                                                                                                                                                In all the places wherein I have walked with all the children of Israel spake I a word with any of the tribes of Israel, whom I commanded to feed my people Israel, saying, Why build ye not me an house of cedar?
8189                                                                                                                                                                                                                                                                                                                                                           Now therefore so shalt thou say unto my servant David, Thus saith the LORD of hosts, I took thee from the sheepcote, from following the sheep, to be ruler over my people, over Israel:
8190                                                                                                                                                                                                                                                                                                                                                  And I was with thee whithersoever thou wentest, and have cut off all thine enemies out of thy sight, and have made thee a great name, like unto the name of the great men that are in the earth.
8191                                                                                                                                                                                                                                                                                                                          Moreover I will appoint a place for my people Israel, and will plant them, that they may dwell in a place of their own, and move no more; neither shall the children of wickedness afflict them any more, as beforetime,
8192                                                                                                                                                                                                                                                                                                                                                       And as since the time that I commanded judges to be over my people Israel, and have caused thee to rest from all thine enemies. Also the LORD telleth thee that he will make thee an house.
8193                                                                                                                                                                                                                                                                                                                                                                And when thy days be fulfilled, and thou shalt sleep with thy fathers, I will set up thy seed after thee, which shall proceed out of thy bowels, and I will establish his kingdom.
8194                                                                                                                                                                                                                                                                                                                                                                                                                                                      He shall build an house for my name, and I will stablish the throne of his kingdom for ever.
8195                                                                                                                                                                                                                                                                                                                                                                                         I will be his father, and he shall be my son. If he commit iniquity, I will chasten him with the rod of men, and with the stripes of the children of men:
8196                                                                                                                                                                                                                                                                                                                                                                                                                                                 But my mercy shall not depart away from him, as I took it from Saul, whom I put away before thee.
8197                                                                                                                                                                                                                                                                                                                                                                                                                              And thine house and thy kingdom shall be established for ever before thee: thy throne shall be established for ever.
8198                                                                                                                                                                                                                                                                                                                                                                                                                                                   According to all these words, and according to all this vision, so did Nathan speak unto David.
8199                                                                                                                                                                                                                                                                                                                                                                                                    Then went king David in, and sat before the LORD, and he said, Who am I, O Lord GOD? and what is my house, that thou hast brought me hitherto?
8200                                                                                                                                                                                                                                                                                                                                                                   And this was yet a small thing in thy sight, O Lord GOD; but thou hast spoken also of thy servant's house for a great while to come. And is this the manner of man, O Lord GOD?
8201                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And what can David say more unto thee? for thou, Lord GOD, knowest thy servant.
8202                                                                                                                                                                                                                                                                                                                                                                                                                      For thy word's sake, and according to thine own heart, hast thou done all these great things, to make thy servant know them.
8203                                                                                                                                                                                                                                                                                                                                                                                       Wherefore thou art great, O LORD God: for there is none like thee, neither is there any God beside thee, according to all that we have heard with our ears.
8204                                                                                                                                                                                                                                          And what one nation in the earth is like thy people, even like Israel, whom God went to redeem for a people to himself, and to make him a name, and to do for you great things and terrible, for thy land, before thy people, which thou redeemedst to thee from Egypt, from the nations and their gods?
8205                                                                                                                                                                                                                                                                                                                                                                                                                     For thou hast confirmed to thyself thy people Israel to be a people unto thee for ever: and thou, LORD, art become their God.
8206                                                                                                                                                                                                                                                                                                                                                                                            And now, O LORD God, the word that thou hast spoken concerning thy servant, and concerning his house, establish it for ever, and do as thou hast said.
8207                                                                                                                                                                                                                                                                                                                                                                                      And let thy name be magnified for ever, saying, The LORD of hosts is the God over Israel: and let the house of thy servant David be established before thee.
8208                                                                                                                                                                                                                                                                                                                                                          For thou, O LORD of hosts, God of Israel, hast revealed to thy servant, saying, I will build thee an house: therefore hath thy servant found in his heart to pray this prayer unto thee.
8209                                                                                                                                                                                                                                                                                                                                                                                                                             And now, O Lord GOD, thou art that God, and thy words be true, and thou hast promised this goodness unto thy servant:
8210                                                                                                                                                                                                                                                                                                                      Therefore now let it please thee to bless the house of thy servant, that it may continue for ever before thee: for thou, O Lord GOD, hast spoken it: and with thy blessing let the house of thy servant be blessed for ever.
8211                                                                                                                                                                                                                                                                                                                                                                                                 And after this it came to pass that David smote the Philistines, and subdued them: and David took Methegammah out of the hand of the Philistines.
8212                                                                                                                                                                                                                                                                                                         And he smote Moab, and measured them with a line, casting them down to the ground; even with two lines measured he to put to death, and with one full line to keep alive. And so the Moabites became David's servants, and brought gifts.
8213                                                                                                                                                                                                                                                                                                                                                                                                                             David smote also Hadadezer, the son of Rehob, king of Zobah, as he went to recover his border at the river Euphrates.
8214                                                                                                                                                                                                                                                                                                                                                     And David took from him a thousand chariots, and seven hundred horsemen, and twenty thousand footmen: and David houghed all the chariot horses, but reserved of them for an hundred chariots.
8215                                                                                                                                                                                                                                                                                                                                                                                                                   And when the Syrians of Damascus came to succor Hadadezer king of Zobah, David slew of the Syrians two and twenty thousand men.
8216                                                                                                                                                                                                                                                                                                                                                                                   Then David put garrisons in Syria of Damascus: and the Syrians became servants to David, and brought gifts. And the LORD preserved David whithersoever he went.
8217                                                                                                                                                                                                                                                                                                                                                                                                                                         And David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem.
8218                                                                                                                                                                                                                                                                                                                                                                                                                                                     And from Betah, and from Berothai, cities of Hadadezer, king David took exceeding much brass.
8219                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Toi king of Hamath heard that David had smitten all the host of Hadadezer,
8220                                                                                                                                                                                                                                                                                 Then Toi sent Joram his son unto king David, to salute him, and to bless him, because he had fought against Hadadezer, and smitten him: for Hadadezer had wars with Toi. And Joram brought with him vessels of silver, and vessels of gold, and vessels of brass:
8221                                                                                                                                                                                                                                                                                                                                                                                                                 Which also king David did dedicate unto the LORD, with the silver and gold that he had dedicated of all nations which he subdued;
8222                                                                                                                                                                                                                                                                                                                                                                                           Of Syria, and of Moab, and of the children of Ammon, and of the Philistines, and of Amalek, and of the spoil of Hadadezer, son of Rehob, king of Zobah.
8223                                                                                                                                                                                                                                                                                                                                                                                                                         And David gat him a name when he returned from smiting of the Syrians in the valley of salt, being eighteen thousand men.
8224                                                                                                                                                                                                                                                                                                                                                                             And he put garrisons in Edom; throughout all Edom put he garrisons, and all they of Edom became David's servants. And the LORD preserved David whithersoever he went.
8225                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David reigned over all Israel; and David executed judgment and justice unto all his people.
8226                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud was recorder;
8227                                                                                                                                                                                                                                                                                                                                                                                                                                     And Zadok the son of Ahitub, and Ahimelech the son of Abiathar, were the priests; and Seraiah was the scribe;
8228                                                                                                                                                                                                                                                                                                                                                                                                                             And Benaiah the son of Jehoiada was over both the Cherethites and the Pelethites; and David's sons were chief rulers.
8229                                                                                                                                                                                                                                                                                                                                                                                                                             And David said, Is there yet any that is left of the house of Saul, that I may show him kindness for Jonathan's sake?
8230                                                                                                                                                                                                                                                                                                                                                                 And there was of the house of Saul a servant whose name was Ziba. And when they had called him unto David, the king said unto him, Art thou Ziba? And he said, Thy servant is he.
8231                                                                                                                                                                                                                                                                                                                                                      And the king said, Is there not yet any of the house of Saul, that I may show the kindness of God unto him? And Ziba said unto the king, Jonathan hath yet a son, which is lame on his feet.
8232                                                                                                                                                                                                                                                                                                                                                                                                        And the king said unto him, Where is he? And Ziba said unto the king, Behold, he is in the house of Machir, the son of Ammiel, in Lodebar.
8233                                                                                                                                                                                                                                                                                                                                                                                                                                                Then king David sent, and fetched him out of the house of Machir, the son of Ammiel, from Lodebar.
8234                                                                                                                                                                                                                                                                                                                                                      Now when Mephibosheth, the son of Jonathan, the son of Saul, was come unto David, he fell on his face, and did reverence. And David said, Mephibosheth. And he answered, Behold thy servant!
8235                                                                                                                                                                                                                                                                                                                                  And David said unto him, Fear not: for I will surely show thee kindness for Jonathan thy father's sake, and will restore thee all the land of Saul thy father; and thou shalt eat bread at my table continually.
8236                                                                                                                                                                                                                                                                                                                                                                                                                                       And he bowed himself, and said, What is thy servant, that thou shouldest look upon such a dead dog as I am?
8237                                                                                                                                                                                                                                                                                                                                                                                              Then the king called to Ziba, Saul's servant, and said unto him, I have given unto thy master's son all that pertained to Saul and to all his house.
8238                                                                                                                                                                                                                                                                  Thou therefore, and thy sons, and thy servants, shall till the land for him, and thou shalt bring in the fruits, that thy master's son may have food to eat: but Mephibosheth thy master's son shall eat bread alway at my table. Now Ziba had fifteen sons and twenty servants.
8239                                                                                                                                                                                                                                                                                                                                Then said Ziba unto the king, According to all that my lord the king hath commanded his servant, so shall thy servant do. As for Mephibosheth, said the king, he shall eat at my table, as one of the king's sons.
8240                                                                                                                                                                                                                                                                                                                                                                                                                  And Mephibosheth had a young son, whose name was Micha. And all that dwelt in the house of Ziba were servants unto Mephibosheth.
8241                                                                                                                                                                                                                                                                                                                                                                                                                                So Mephibosheth dwelt in Jerusalem: for he did eat continually at the king's table; and was lame on both his feet.
8242                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass after this, that the king of the children of Ammon died, and Hanun his son reigned in his stead.
8243                                                                                                                                                                                                                                                                                            Then said David, I will show kindness unto Hanun the son of Nahash, as his father showed kindness unto me. And David sent to comfort him by the hand of his servants for his father. And David's servants came into the land of the children of Ammon.
8244                                                                                                                                                                                                                                                                       And the princes of the children of Ammon said unto Hanun their lord, Thinkest thou that David doth honor thy father, that he hath sent comforters unto thee? hath not David rather sent his servants unto thee, to search the city, and to spy it out, and to overthrow it?
8245                                                                                                                                                                                                                                                                                                                                                                         Wherefore Hanun took David's servants, and shaved off the one half of their beards, and cut off their garments in the middle, even to their buttocks, and sent them away.
8246                                                                                                                                                                                                                                                                                                                                                                        When they told it unto David, he sent to meet them, because the men were greatly ashamed: and the king said, Tarry at Jericho until your beards be grown, and then return.
8247                                                                                                                                                                                                                                                                                            And when the children of Ammon saw that they stank before David, the children of Ammon sent and hired the Syrians of Bethrehob and the Syrians of Zoba, twenty thousand footmen, and of king Maacah a thousand men, and of Ishtob twelve thousand men.
8248                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when David heard of it, he sent Joab, and all the host of the mighty men.
8249                                                                                                                                                                                                                                                                                                                                                   And the children of Ammon came out, and put the battle in array at the entering in of the gate: and the Syrians of Zoba, and of Rehob, and Ishtob, and Maacah, were by themselves in the field.
8250                                                                                                                                                                                                                                                                                                                                                                                When Joab saw that the front of the battle was against him before and behind, he chose of all the choice men of Israel, and put them in array against the Syrians:
8251                                                                                                                                                                                                                                                                                                                                                                                                      And the rest of the people he delivered into the hand of Abishai his brother, that he might put them in array against the children of Ammon.
8252                                                                                                                                                                                                                                                                                                                                                                                   And he said, If the Syrians be too strong for me, then thou shalt help me: but if the children of Ammon be too strong for thee, then I will come and help thee.
8253                                                                                                                                                                                                                                                                                                                                                                                                           Be of good courage, and let us play the men for our people, and for the cities of our God: and the LORD do that which seemeth him good.
8254                                                                                                                                                                                                                                                                                                                                                                                                                             And Joab drew nigh, and the people that were with him, unto the battle against the Syrians: and they fled before him.
8255                                                                                                                                                                                                                                                                                                                                                 And when the children of Ammon saw that the Syrians were fled, then fled they also before Abishai, and entered into the city. So Joab returned from the children of Ammon, and came to Jerusalem.
8256                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the Syrians saw that they were smitten before Israel, they gathered themselves together.
8257                                                                                                                                                                                                                                                                                                                                                                            And Hadarezer sent, and brought out the Syrians that were beyond the river: and they came to Helam; and Shobach the captain of the host of Hadarezer went before them.
8258                                                                                                                                                                                                                                                                                                                                                               And when it was told David, he gathered all Israel together, and passed over Jordan, and came to Helam. And the Syrians set themselves in array against David, and fought with him.
8259                                                                                                                                                                                                                                                                                                                                                    And the Syrians fled before Israel; and David slew the men of seven hundred chariots of the Syrians, and forty thousand horsemen, and smote Shobach the captain of their host, who died there.
8260                                                                                                                                                                                                                                                                                                                                      And when all the kings that were servants to Hadarezer saw that they were smitten before Israel, they made peace with Israel, and served them. So the Syrians feared to help the children of Ammon any more.
8261                                                                                                                                                                                                                                                                                 And it came to pass, after the year was expired, at the time when kings go forth to battle, that David sent Joab, and his servants with him, and all Israel; and they destroyed the children of Ammon, and besieged Rabbah. But David tarried still at Jerusalem.
8262                                                                                                                                                                                                                                                                                                                          And it came to pass in an eveningtide, that David arose from off his bed, and walked upon the roof of the king's house: and from the roof he saw a woman washing herself; and the woman was very beautiful to look upon.
8263                                                                                                                                                                                                                                                                                                                                                                                                           And David sent and inquired after the woman. And one said, Is not this Bathsheba, the daughter of Eliam, the wife of Uriah the Hittite?
8264                                                                                                                                                                                                                                                                                                                                                                               And David sent messengers, and took her; and she came in unto him, and he lay with her; for she was purified from her uncleanness: and she returned unto her house.
8265                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the woman conceived, and sent and told David, and said, I am with child.
8266                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David sent to Joab, saying, Send me Uriah the Hittite. And Joab sent Uriah to David.
8267                                                                                                                                                                                                                                                                                                                                                                                                                          And when Uriah was come unto him, David demanded of him how Joab did, and how the people did, and how the war prospered.
8268                                                                                                                                                                                                                                                                                                                                                                                And David said to Uriah, Go down to thy house, and wash thy feet. And Uriah departed out of the king's house, and there followed him a mess of meat from the king.
8269                                                                                                                                                                                                                                                                                                                                                                                                                                But Uriah slept at the door of the king's house with all the servants of his lord, and went not down to his house.
8270                                                                                                                                                                                                                                                                                                                                                              And when they had told David, saying, Uriah went not down unto his house, David said unto Uriah, Camest thou not from thy journey? why then didst thou not go down unto thine house?
8271                                                                                                                                                                                                                                       And Uriah said unto David, The ark, and Israel, and Judah, abide in tents; and my lord Joab, and the servants of my lord, are encamped in the open fields; shall I then go into mine house, to eat and to drink, and to lie with my wife? as thou livest, and as thy soul liveth, I will not do this thing.
8272                                                                                                                                                                                                                                                                                                                                                                                                      And David said to Uriah, Tarry here to day also, and to morrow I will let thee depart. So Uriah abode in Jerusalem that day, and the morrow.
8273                                                                                                                                                                                                                                                                                                                                                   And when David had called him, he did eat and drink before him; and he made him drunk: and at even he went out to lie on his bed with the servants of his lord, but went not down to his house.
8274                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass in the morning, that David wrote a letter to Joab, and sent it by the hand of Uriah.
8275                                                                                                                                                                                                                                                                                                                                                                                                 And he wrote in the letter, saying, Set ye Uriah in the forefront of the hottest battle, and retire ye from him, that he may be smitten, and die.
8276                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when Joab observed the city, that he assigned Uriah unto a place where he knew that valiant men were.
8277                                                                                                                                                                                                                                                                                                                                                                                              And the men of the city went out, and fought with Joab: and there fell some of the people of the servants of David; and Uriah the Hittite died also.
8278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Joab sent and told David all the things concerning the war;
8279                                                                                                                                                                                                                                                                                                                                                                                                                                    And charged the messenger, saying, When thou hast made an end of telling the matters of the war unto the king,
8280                                                                                                                                                                                                                                                                                                                                                                 And if so be that the king's wrath arise, and he say unto thee, Wherefore approached ye so nigh unto the city when ye did fight? knew ye not that they would shoot from the wall?
8281                                                                                                                                                                                                                                                                                                                    Who smote Abimelech the son of Jerubbesheth? did not a woman cast a piece of a millstone upon him from the wall, that he died in Thebez? why went ye nigh the wall? then say thou, Thy servant Uriah the Hittite is dead also.
8282                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the messenger went, and came and showed David all that Joab had sent him for.
8283                                                                                                                                                                                                                                                                                                                                                                            And the messenger said unto David, Surely the men prevailed against us, and came out unto us into the field, and we were upon them even unto the entering of the gate.
8284                                                                                                                                                                                                                                                                                                                                                                                               And the shooters shot from off the wall upon thy servants; and some of the king's servants be dead, and thy servant Uriah the Hittite is dead also.
8285                                                                                                                                                                                                                                                                                                     Then David said unto the messenger, Thus shalt thou say unto Joab, Let not this thing displease thee, for the sword devoureth one as well as another: make thy battle more strong against the city, and overthrow it: and encourage thou him.
8286                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the wife of Uriah heard that Uriah her husband was dead, she mourned for her husband.
8287                                                                                                                                                                                                                                                                                                                                                                      And when the mourning was past, David sent and fetched her to his house, and she became his wife, and bare him a son. But the thing that David had done displeased the LORD.
8288                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD sent Nathan unto David. And he came unto him, and said unto him, There were two men in one city; the one rich, and the other poor.
8289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The rich man had exceeding many flocks and herds:
8290                                                                                                                                                                                                                                                                                But the poor man had nothing, save one little ewe lamb, which he had bought and nourished up: and it grew up together with him, and with his children; it did eat of his own meat, and drank of his own cup, and lay in his bosom, and was unto him as a daughter.
8291                                                                                                                                                                                                                                                                                                    And there came a traveler unto the rich man, and he spared to take of his own flock and of his own herd, to dress for the wayfaring man that was come unto him; but took the poor man's lamb, and dressed it for the man that was come to him.
8292                                                                                                                                                                                                                                                                                                                                                                                             And David's anger was greatly kindled against the man; and he said to Nathan, As the LORD liveth, the man that hath done this thing shall surely die:
8293                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall restore the lamb fourfold, because he did this thing, and because he had no pity.
8294                                                                                                                                                                                                                                                                                                                                                                                    And Nathan said to David, Thou art the man. Thus saith the LORD God of Israel, I anointed thee king over Israel, and I delivered thee out of the hand of Saul;
8295                                                                                                                                                                                                                                                                                                                           And I gave thee thy master's house, and thy master's wives into thy bosom, and gave thee the house of Israel and of Judah; and if that had been too little, I would moreover have given unto thee such and such things.
8296                                                                                                                                                                                                                                                                                                         Wherefore hast thou despised the commandment of the LORD, to do evil in his sight? thou hast killed Uriah the Hittite with the sword, and hast taken his wife to be thy wife, and hast slain him with the sword of the children of Ammon.
8297                                                                                                                                                                                                                                                                                                                                                                                          Now therefore the sword shall never depart from thine house; because thou hast despised me, and hast taken the wife of Uriah the Hittite to be thy wife.
8298                                                                                                                                                                                                                                                                                                                    Thus saith the LORD, Behold, I will raise up evil against thee out of thine own house, and I will take thy wives before thine eyes, and give them unto thy neighbor, and he shall lie with thy wives in the sight of this sun.
8299                                                                                                                                                                                                                                                                                                                                                                                                                                                       For thou didst it secretly: but I will do this thing before all Israel, and before the sun.
8300                                                                                                                                                                                                                                                                                                                                                                                                  And David said unto Nathan, I have sinned against the LORD. And Nathan said unto David, The LORD also hath put away thy sin; thou shalt not die.
8301                                                                                                                                                                                                                                                                                                                                                                                     Howbeit, because by this deed thou hast given great occasion to the enemies of the LORD to blaspheme, the child also that is born unto thee shall surely die.
8302                                                                                                                                                                                                                                                                                                                                                                                                                        And Nathan departed unto his house. And the LORD struck the child that Uriah's wife bare unto David, and it was very sick.
8303                                                                                                                                                                                                                                                                                                                                                                                                                                      David therefore besought God for the child; and David fasted, and went in, and lay all night upon the earth.
8304                                                                                                                                                                                                                                                                                                                                                                                                         And the elders of his house arose, and went to him, to raise him up from the earth: but he would not, neither did he eat bread with them.
8305                                                                                                                                                                                                                         And it came to pass on the seventh day, that the child died. And the servants of David feared to tell him that the child was dead: for they said, Behold, while the child was yet alive, we spake unto him, and he would not hearken unto our voice: how will he then vex himself, if we tell him that the child is dead?
8306                                                                                                                                                                                                                                                                                                                                                                    But when David saw that his servants whispered, David perceived that the child was dead: therefore David said unto his servants, Is the child dead? And they said, He is dead.
8307                                                                                                                                                                                                                                                                                                  Then David arose from the earth, and washed, and anointed himself, and changed his apparel, and came into the house of the LORD, and worshipped: then he came to his own house; and when he required, they set bread before him, and he did eat.
8308                                                                                                                                                                                                                                                                                                                                                  Then said his servants unto him, What thing is this that thou hast done? thou didst fast and weep for the child, while it was alive; but when the child was dead, thou didst rise and eat bread.
8309                                                                                                                                                                                                                                                                                                                                                                                              And he said, While the child was yet alive, I fasted and wept: for I said, Who can tell whether GOD will be gracious to me, that the child may live?
8310                                                                                                                                                                                                                                                                                                                                                                                                                        But now he is dead, wherefore should I fast? can I bring him back again? I shall go to him, but he shall not return to me.
8311                                                                                                                                                                                                                                                                                                                                                                                       And David comforted Bathsheba his wife, and went in unto her, and lay with her: and she bare a son, and he called his name Solomon: and the LORD loved him.
8312                                                                                                                                                                                                                                                                                                                                                                                                                                              And he sent by the hand of Nathan the prophet; and he called his name Jedidiah, because of the LORD.
8313                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joab fought against Rabbah of the children of Ammon, and took the royal city.
8314                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joab sent messengers to David, and said, I have fought against Rabbah, and have taken the city of waters.
8315                                                                                                                                                                                                                                                                                                                                                                                             Now therefore gather the rest of the people together, and encamp against the city, and take it: lest I take the city, and it be called after my name.
8316                                                                                                                                                                                                                                                                                                                                                                                                                                               And David gathered all the people together, and went to Rabbah, and fought against it, and took it.
8317                                                                                                                                                                                                                                                                                                                                And he took their king's crown from off his head, the weight whereof was a talent of gold with the precious stones: and it was set on David's head. And he brought forth the spoil of the city in great abundance.
8318                                                                                                                                                                                                                                                      And he brought forth the people that were therein, and put them under saws, and under harrows of iron, and under axes of iron, and made them pass through the brick-kiln: and thus did he unto all the cities of the children of Ammon. So David and all the people returned unto Jerusalem.
8319                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass after this, that Absalom the son of David had a fair sister, whose name was Tamar; and Amnon the son of David loved her.
8320                                                                                                                                                                                                                                                                                                                                                                                                    And Amnon was so vexed, that he fell sick for his sister Tamar; for she was a virgin; and Amnon thought it hard for him to do anything to her.
8321                                                                                                                                                                                                                                                                                                                                                                                                                            But Amnon had a friend, whose name was Jonadab, the son of Shimeah David's brother: and Jonadab was a very subtil man.
8322                                                                                                                                                                                                                                                                                                                                                                        And he said unto him, Why art thou, being the king's son, lean from day to day? wilt thou not tell me? And Amnon said unto him, I love Tamar, my brother Absalom's sister.
8323                                                                                                                                                                                                                                                                             And Jonadab said unto him, Lay thee down on thy bed, and make thyself sick: and when thy father cometh to see thee, say unto him, I pray thee, let my sister Tamar come, and give me meat, and dress the meat in my sight, that I may see it, and eat it at her hand.
8324                                                                                                                                                                                                                                                                                                                          So Amnon lay down, and made himself sick: and when the king was come to see him, Amnon said unto the king, I pray thee, let Tamar my sister come, and make me a couple of cakes in my sight, that I may eat at her hand.
8325                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then David sent home to Tamar, saying, Go now to thy brother Amnon's house, and dress him meat.
8326                                                                                                                                                                                                                                                                                                                                                                                        So Tamar went to her brother Amnon's house; and he was laid down. And she took flour, and kneaded it, and made cakes in his sight, and did bake the cakes.
8327                                                                                                                                                                                                                                                                                                                                                                                        And she took a pan, and poured them out before him; but he refused to eat. And Amnon said, Have out all men from me. And they went out every man from him.
8328                                                                                                                                                                                                                                                                                                                                                    And Amnon said unto Tamar, Bring the meat into the chamber, that I may eat of thine hand. And Tamar took the cakes which she had made, and brought them into the chamber to Amnon her brother.
8329                                                                                                                                                                                                                                                                                                                                                                                                                               And when she had brought them unto him to eat, he took hold of her, and said unto her, Come lie with me, my sister.
8330                                                                                                                                                                                                                                                                                                                                                                                                                     And she answered him, Nay, my brother, do not force me; for no such thing ought to be done in Israel: do not thou this folly.
8331                                                                                                                                                                                                                                                                                                                                                And I, whither shall I cause my shame to go? and as for thee, thou shalt be as one of the fools in Israel. Now therefore, I pray thee, speak unto the king; for he will not withhold me from thee.
8332                                                                                                                                                                                                                                                                                                                                                                                                                                          Howbeit he would not hearken unto her voice: but, being stronger than she, forced her, and lay with her.
8333                                                                                                                                                                                                                                                                                                                                                                        Then Amnon hated her exceedingly; so that the hatred wherewith he hated her was greater than the love wherewith he had loved her. And Amnon said unto her, Arise, be gone.
8334                                                                                                                                                                                                                                                                                                                                                                                      And she said unto him, There is no cause: this evil in sending me away is greater than the other that thou didst unto me. But he would not hearken unto her.
8335                                                                                                                                                                                                                                                                                                                                                                                                                       Then he called his servant that ministered unto him, and said, Put now this woman out from me, and bolt the door after her.
8336                                                                                                                                                                                                                                                                                                                                                     And she had a garment of divers colors upon her: for with such robes were the king's daughters that were virgins apparelled. Then his servant brought her out, and bolted the door after her.
8337                                                                                                                                                                                                                                                                                                                                                                                                        And Tamar put ashes on her head, and rent her garment of divers colors that was on her, and laid her hand on her head, and went on crying.
8338                                                                                                                                                                                                                                                                                                                             And Absalom her brother said unto her, Hath Amnon thy brother been with thee? but hold now thy peace, my sister: he is thy brother; regard not this thing. So Tamar remained desolate in her brother Absalom's house.
8339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But when king David heard of all these things, he was very wroth.
8340                                                                                                                                                                                                                                                                                                                                                                                                                   And Absalom spake unto his brother Amnon neither good nor bad: for Absalom hated Amnon, because he had forced his sister Tamar.
8341                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass after two full years, that Absalom had sheepshearers in Baalhazor, which is beside Ephraim: and Absalom invited all the king's sons.
8342                                                                                                                                                                                                                                                                                                                                                                                           And Absalom came to the king, and said, Behold now, thy servant hath sheepshearers; let the king, I beseech thee, and his servants go with thy servant.
8343                                                                                                                                                                                                                                                                                                                                                                                  And the king said to Absalom, Nay, my son, let us not all now go, lest we be chargeable unto thee. And he pressed him: howbeit he would not go, but blessed him.
8344                                                                                                                                                                                                                                                                                                                                                                                                                  Then said Absalom, If not, I pray thee, let my brother Amnon go with us. And the king said unto him, Why should he go with thee?
8345                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Absalom pressed him, that he let Amnon and all the king's sons go with him.
8346                                                                                                                                                                                                                                                                                                                        Now Absalom had commanded his servants, saying, Mark ye now when Amnon's heart is merry with wine, and when I say unto you, Smite Amnon; then kill him, fear not: have not I commanded you? be courageous, and be valiant.
8347                                                                                                                                                                                                                                                                                                                                                                                            And the servants of Absalom did unto Amnon as Absalom had commanded. Then all the king's sons arose, and every man gat him up upon his mule, and fled.
8348                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, while they were in the way, that tidings came to David, saying, Absalom hath slain all the king's sons, and there is not one of them left.
8349                                                                                                                                                                                                                                                                                                                                                                                                                          Then the king arose, and tare his garments, and lay on the earth; and all his servants stood by with their clothes rent.
8350                                                                                                                                                                                                                                                             And Jonadab, the son of Shimeah David's brother, answered and said, Let not my lord suppose that they have slain all the young men the king's sons; for Amnon only is dead: for by the appointment of Absalom this hath been determined from the day that he forced his sister Tamar.
8351                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore let not my lord the king take the thing to his heart, to think that all the king's sons are dead: for Amnon only is dead.
8352                                                                                                                                                                                                                                                                                                                                                                               But Absalom fled. And the young man that kept the watch lifted up his eyes, and looked, and, behold, there came much people by the way of the hill side behind him.
8353                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jonadab said unto the king, Behold, the king's sons come: as thy servant said, so it is.
8354                                                                                                                                                                                                                                                                                                                                                    And it came to pass, as soon as he had made an end of speaking, that, behold, the king's sons came, and lifted up their voice and wept: and the king also and all his servants wept very sore.
8355                                                                                                                                                                                                                                                                                                                                                                                                                                But Absalom fled, and went to Talmai, the son of Ammihud, king of Geshur. And David mourned for his son every day.
8356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So Absalom fled, and went to Geshur, and was there three years.
8357                                                                                                                                                                                                                                                                                                                                                                                                                            And the soul of king David longed to go forth unto Absalom: for he was comforted concerning Amnon, seeing he was dead.
8358                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now Joab the son of Zeruiah perceived that the king's heart was toward Absalom.
8359                                                                                                                                                                                                                                                                                           And Joab sent to Tekoah, and fetched thence a wise woman, and said unto her, I pray thee, feign thyself to be a mourner, and put on now mourning apparel, and anoint not thyself with oil, but be as a woman that had a long time mourned for the dead:
8360                                                                                                                                                                                                                                                                                                                                                                                                                                                      And come to the king, and speak on this manner unto him. So Joab put the words in her mouth.
8361                                                                                                                                                                                                                                                                                                                                                                                                                    And when the woman of Tekoah spake to the king, she fell on her face to the ground, and did obeisance, and said, Help, O king.
8362                                                                                                                                                                                                                                                                                                                                                                                                                              And the king said unto her, What aileth thee? And she answered, I am indeed a widow woman, and mine husband is dead.
8363                                                                                                                                                                                                                                                                                                                                                                                             And thy handmaid had two sons, and they two strove together in the field, and there was none to part them, but the one smote the other, and slew him.
8364                                                                                                                                                                                                 And, behold, the whole family is risen against thine handmaid, and they said, Deliver him that smote his brother, that we may kill him, for the life of his brother whom he slew; and we will destroy the heir also: and so they shall quench my coal which is left, and shall not leave to my husband neither name nor remainder upon the earth.
8365                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the king said unto the woman, Go to thine house, and I will give charge concerning thee.
8366                                                                                                                                                                                                                                                                                                                                                                                           And the woman of Tekoah said unto the king, My lord, O king, the iniquity be on me, and on my father's house: and the king and his throne be guiltless.
8367                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king said, Whoever saith ought unto thee, bring him to me, and he shall not touch thee any more.
8368                                                                                                                                                                                                                                                                                   Then said she, I pray thee, let the king remember the LORD thy God, that thou wouldest not suffer the revengers of blood to destroy any more, lest they destroy my son. And he said, As the LORD liveth, there shall not one hair of thy son fall to the earth.
8369                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the woman said, Let thine handmaid, I pray thee, speak one word unto my lord the king. And he said, Say on.
8370                                                                                                                                                                                                                                                                                                                                  And the woman said, Wherefore then hast thou thought such a thing against the people of God? for the king doth speak this thing as one which is faulty, in that the king doth not fetch home again his banished.
8371                                                                                                                                                                                                                                                                                                                                        For we must needs die, and are as water spilt on the ground, which cannot be gathered up again; neither doth God respect any person: yet doth he devise means, that his banished be not expelled from him.
8372                                                                                                                                                                                                                                                                                                 Now therefore that I am come to speak of this thing unto my lord the king, it is because the people have made me afraid: and thy handmaid said, I will now speak unto the king; it may be that the king will perform the request of his handmaid.
8373                                                                                                                                                                                                                                                                                                                                                                                               For the king will hear, to deliver his handmaid out of the hand of the man that would destroy me and my son together out of the inheritance of God.
8374                                                                                                                                                                                                                                                                                                                                            Then thine handmaid said, The word of my lord the king shall now be comfortable: for as an angel of God, so is my lord the king to discern good and bad: therefore the LORD thy God will be with thee.
8375                                                                                                                                                                                                                                                                                                                                                                               Then the king answered and said unto the woman, Hide not from me, I pray thee, the thing that I shall ask thee. And the woman said, Let my lord the king now speak.
8376                                                                                                                                                                                                                And the king said, Is not the hand of Joab with thee in all this? And the woman answered and said, As thy soul liveth, my lord the king, none can turn to the right hand or to the left from ought that my lord the king hath spoken: for thy servant Joab, he bade me, and he put all these words in the mouth of thine handmaid:
8377                                                                                                                                                                                                                                                                                                                                                              To fetch about this form of speech hath thy servant Joab done this thing: and my lord is wise, according to the wisdom of an angel of God, to know all things that are in the earth.
8378                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king said unto Joab, Behold now, I have done this thing: go therefore, bring the young man Absalom again.
8379                                                                                                                                                                                                                                                                                                    And Joab fell to the ground on his face, and bowed himself, and thanked the king: and Joab said, To day thy servant knoweth that I have found grace in thy sight, my lord, O king, in that the king hath fulfilled the request of his servant.
8380                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Joab arose and went to Geshur, and brought Absalom to Jerusalem.
8381                                                                                                                                                                                                                                                                                                                                                                                                 And the king said, Let him turn to his own house, and let him not see my face. So Absalom returned to his own house, and saw not the king's face.
8382                                                                                                                                                                                                                                                                                                                                                                            But in all Israel there was none to be so much praised as Absalom for his beauty: from the sole of his foot even to the crown of his head there was no blemish in him.
8383                                                                                                                                                                                                                                                                                                                       And when he polled his head, (for it was at every year's end that he polled it: because the hair was heavy on him, therefore he polled it:) he weighed the hair of his head at two hundred shekels after the king's weight.
8384                                                                                                                                                                                                                                                                                                                                                                                                                       And unto Absalom there were born three sons, and one daughter, whose name was Tamar: she was a woman of a fair countenance.
8385                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Absalom dwelt two full years in Jerusalem, and saw not the king's face.
8386                                                                                                                                                                                                                                                                                                                                                                                           Therefore Absalom sent for Joab, to have sent him to the king; but he would not come to him: and when he sent again the second time, he would not come.
8387                                                                                                                                                                                                                                                                                                                                                                               Therefore he said unto his servants, See, Joab's field is near mine, and he hath barley there; go and set it on fire. And Absalom's servants set the field on fire.
8388                                                                                                                                                                                                                                                                                                                                                                                                                         Then Joab arose, and came to Absalom unto his house, and said unto him, Wherefore have thy servants set my field on fire?
8389                                                                                                                                                                                                                                             And Absalom answered Joab, Behold, I sent unto thee, saying, Come hither, that I may send thee to the king, to say, Wherefore am I come from Geshur? it had been good for me to have been there still: now therefore let me see the king's face; and if there be any iniquity in me, let him kill me.
8390                                                                                                                                                                                                                                                                                                                                                        So Joab came to the king, and told him: and when he had called for Absalom, he came to the king, and bowed himself on his face to the ground before the king: and the king kissed Absalom.
8391                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass after this, that Absalom prepared him chariots and horses, and fifty men to run before him.
8392                                                                                                                                                                                                                                                                And Absalom rose up early, and stood beside the way of the gate: and it was so, that when any man that had a controversy came to the king for judgment, then Absalom called unto him, and said, Of what city art thou? And he said, Thy servant is of one of the tribes of Israel.
8393                                                                                                                                                                                                                                                                                                                                                                                                                             And Absalom said unto him, See, thy matters are good and right; but there is no man deputed of the king to hear thee.
8394                                                                                                                                                                                                                                                                                                                                                                                         Absalom said moreover, Oh that I were made judge in the land, that every man which hath any suit or cause might come unto me, and I would do him justice!
8395                                                                                                                                                                                                                                                                                                                                                                                                                       And it was so, that when any man came nigh to him to do him obeisance, he put forth his hand, and took him, and kissed him.
8396                                                                                                                                                                                                                                                                                                                                                                                                                And on this manner did Absalom to all Israel that came to the king for judgment: so Absalom stole the hearts of the men of Israel.
8397                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass after forty years, that Absalom said unto the king, I pray thee, let me go and pay my vow, which I have vowed unto the LORD, in Hebron.
8398                                                                                                                                                                                                                                                                                                                                                                                           For thy servant vowed a vow while I abode at Geshur in Syria, saying, If the LORD shall bring me again indeed to Jerusalem, then I will serve the LORD.
8399                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king said unto him, Go in peace. So he arose, and went to Hebron.
8400                                                                                                                                                                                                                                                                                                                                                                                   But Absalom sent spies throughout all the tribes of Israel, saying, As soon as ye hear the sound of the trumpet, then ye shall say, Absalom reigneth in Hebron.
8401                                                                                                                                                                                                                                                                                                                                                                                                         And with Absalom went two hundred men out of Jerusalem, that were called; and they went in their simplicity, and they knew not any thing.
8402                                                                                                                                                                                                                                                                                                                                   And Absalom sent for Ahithophel the Gilonite, David's counselor, from his city, even from Giloh, while he offered sacrifices. And the conspiracy was strong; for the people increased continually with Absalom.
8403                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there came a messenger to David, saying, The hearts of the men of Israel are after Absalom.
8404                                                                                                                                                                                                                                                                               And David said unto all his servants that were with him at Jerusalem, Arise, and let us flee; for we shall not else escape from Absalom: make speed to depart, lest he overtake us suddenly, and bring evil upon us, and smite the city with the edge of the sword.
8405                                                                                                                                                                                                                                                                                                                                                                                                                       And the king's servants said unto the king, Behold, thy servants are ready to do whatsoever my lord the king shall appoint.
8406                                                                                                                                                                                                                                                                                                                                                                                                                  And the king went forth, and all his household after him. And the king left ten women, which were concubines, to keep the house.
8407                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king went forth, and all the people after him, and tarried in a place that was far off.
8408                                                                                                                                                                                                                                                                                                                                                      And all his servants passed on beside him; and all the Cherethites, and all the Pelethites, and all the Gittites, six hundred men which came after him from Gath, passed on before the king.
8409                                                                                                                                                                                                                                                                                                                                                                             Then said the king to Ittai the Gittite, Wherefore goest thou also with us? return to thy place, and abide with the king: for thou art a stranger, and also an exile.
8410                                                                                                                                                                                                                                                                                                                                                          Whereas thou camest but yesterday, should I this day make thee go up and down with us? seeing I go whither I may, return thou, and take back thy brethren: mercy and truth be with thee.
8411                                                                                                                                                                                                                                                                                                                                         And Ittai answered the king, and said, As the LORD liveth, and as my lord the king liveth, surely in what place my lord the king shall be, whether in death or life, even there also will thy servant be.
8412                                                                                                                                                                                                                                                                                                                                                                                                        And David said to Ittai, Go and pass over. And Ittai the Gittite passed over, and all his men, and all the little ones that were with him.
8413                                                                                                                                                                                                                                                                                                                                                 And all the country wept with a loud voice, and all the people passed over: the king also himself passed over the brook Kidron, and all the people passed over, toward the way of the wilderness.
8414                                                                                                                                                                                                                                                                                                                                      And lo Zadok also, and all the Levites were with him, bearing the ark of the covenant of God: and they set down the ark of God; and Abiathar went up, until all the people had done passing out of the city.
8415                                                                                                                                                                                                                                                                                                                                                            And the king said unto Zadok, Carry back the ark of God into the city: if I shall find favor in the eyes of the LORD, he will bring me again, and show me both it, and his habitation:
8416                                                                                                                                                                                                                                                                                                                                                                                                                                      But if he thus say, I have no delight in thee; behold, here am I, let him do to me as seemeth good unto him.
8417                                                                                                                                                                                                                                                                                                                                                                      The king said also unto Zadok the priest, Art not thou a seer? return into the city in peace, and your two sons with you, Ahimaaz thy son, and Jonathan the son of Abiathar.
8418                                                                                                                                                                                                                                                                                                                                                                                                                                                   See, I will tarry in the plain of the wilderness, until there come word from you to certify me.
8419                                                                                                                                                                                                                                                                                                                                                                                                                                                   Zadok therefore and Abiathar carried the ark of God again to Jerusalem: and they tarried there.
8420                                                                                                                                                                                                                                                                                                              And David went up by the ascent of mount Olivet, and wept as he went up, and had his head covered, and he went barefoot: and all the people that was with him covered every man his head, and they went up, weeping as they went up.
8421                                                                                                                                                                                                                                                                                                                                                                              And one told David, saying, Ahithophel is among the conspirators with Absalom. And David said, O LORD, I pray thee, turn the counsel of Ahithophel into foolishness.
8422                                                                                                                                                                                                                                                                                                                                                          And it came to pass, that when David was come to the top of the mount, where he worshipped God, behold, Hushai the Archite came to meet him with his coat rent, and earth upon his head:
8423                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unto whom David said, If thou passest on with me, then thou shalt be a burden unto me:
8424                                                                                                                                                                                                                                                                                                                   But if thou return to the city, and say unto Absalom, I will be thy servant, O king; as I have been thy father's servant hitherto, so will I now also be thy servant: then mayest thou for me defeat the counsel of Ahithophel.
8425                                                                                                                                                                                                                                                                                                                                    And hast thou not there with thee Zadok and Abiathar the priests? therefore it shall be, that what thing soever thou shalt hear out of the king's house, thou shalt tell it to Zadok and Abiathar the priests.
8426                                                                                                                                                                                                                                                                                                                                                                               Behold, they have there with them their two sons, Ahimaaz Zadok's son, and Jonathan Abiathar's son; and by them ye shall send unto me every thing that ye can hear.
8427                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Hushai David's friend came into the city, and Absalom came into Jerusalem.
8428                                                                                                                                                                                                                                                                      And when David was a little past the top of the hill, behold, Ziba the servant of Mephibosheth met him, with a couple of asses saddled, and upon them two hundred loaves of bread, and an hundred bunches of raisins, and an hundred of summer fruits, and a bottle of wine.
8429                                                                                                                                                                                                                                                                                               And the king said unto Ziba, What meanest thou by these? And Ziba said, The asses be for the king's household to ride on; and the bread and summer fruit for the young men to eat; and the wine, that such as be faint in the wilderness may drink.
8430                                                                                                                                                                                                                                                                                                                                                And the king said, And where is thy master's son? And Ziba said unto the king, Behold, he abideth at Jerusalem: for he said, To day shall the house of Israel restore me the kingdom of my father.
8431                                                                                                                                                                                                                                                                                                                                                                     Then said the king to Ziba, Behold, thine are all that pertained unto Mephibosheth. And Ziba said, I humbly beseech thee that I may find grace in thy sight, my lord, O king.
8432                                                                                                                                                                                                                                                                                                                                                        And when king David came to Bahurim, behold, thence came out a man of the family of the house of Saul, whose name was Shimei, the son of Gera: he came forth, and cursed still as he came.
8433                                                                                                                                                                                                                                                                                                                                                                                             And he cast stones at David, and at all the servants of king David: and all the people and all the mighty men were on his right hand and on his left.
8434                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thus said Shimei when he cursed, Come out, come out, thou bloody man, and thou man of Belial:
8435                                                                                                                                                                                                                                                                                      The LORD hath returned upon thee all the blood of the house of Saul, in whose stead thou hast reigned; and the LORD hath delivered the kingdom into the hand of Absalom thy son: and, behold, thou art taken in thy mischief, because thou art a bloody man.
8436                                                                                                                                                                                                                                                                                                                                                                                          Then said Abishai the son of Zeruiah unto the king, Why should this dead dog curse my lord the king? let me go over, I pray thee, and take off his head.
8437                                                                                                                                                                                                                                                                                                                                                           And the king said, What have I to do with you, ye sons of Zeruiah? so let him curse, because the LORD hath said unto him, Curse David. Who shall then say, Wherefore hast thou done so?
8438                                                                                                                                                                                                                                                                                                                   And David said to Abishai, and to all his servants, Behold, my son, which came forth of my bowels, seeketh my life: how much more now may this Benjamite do it? let him alone, and let him curse; for the LORD hath bidden him.
8439                                                                                                                                                                                                                                                                                                                                                                                                                            It may be that the LORD will look on mine affliction, and that the LORD will requite me good for his cursing this day.
8440                                                                                                                                                                                                                                                                                                                                                                                   And as David and his men went by the way, Shimei went along on the hill's side over against him, and cursed as he went, and threw stones at him, and cast dust.
8441                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king, and all the people that were with him, came weary, and refreshed themselves there.
8442                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Absalom, and all the people the men of Israel, came to Jerusalem, and Ahithophel with him.
8443                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Hushai the Archite, David's friend, was come unto Absalom, that Hushai said unto Absalom, God save the king, God save the king.
8444                                                                                                                                                                                                                                                                                                                                                                                                                                             And Absalom said to Hushai, Is this thy kindness to thy friend? why wentest thou not with thy friend?
8445                                                                                                                                                                                                                                                                                                                                                                                               And Hushai said unto Absalom, Nay; but whom the LORD, and this people, and all the men of Israel, choose, his will I be, and with him will I abide.
8446                                                                                                                                                                                                                                                                                                                                                                                           And again, whom should I serve? should I not serve in the presence of his son? as I have served in thy father's presence, so will I be in thy presence.
8447                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then said Absalom to Ahithophel, Give counsel among you what we shall do.
8448                                                                                                                                                                                                                                                                                                             And Ahithophel said unto Absalom, Go in unto thy father's concubines, which he hath left to keep the house; and all Israel shall hear that thou art abhorred of thy father: then shall the hands of all that are with thee be strong.
8449                                                                                                                                                                                                                                                                                                                                                                                                             So they spread Absalom a tent upon the top of the house; and Absalom went in unto his father's concubines in the sight of all Israel.
8450                                                                                                                                                                                                                                                                                                                                                        And the counsel of Ahithophel, which he counseled in those days, was as if a man had inquired at the oracle of God: so was all the counsel of Ahithophel both with David and with Absalom.
8451                                                                                                                                                                                                                                                                                                                                                                                                             Moreover Ahithophel said unto Absalom, Let me now choose out twelve thousand men, and I will arise and pursue after David this night:
8452                                                                                                                                                                                                                                                                                                                                                                            And I will come upon him while he is weary and weak handed, and will make him afraid: and all the people that are with him shall flee; and I will smite the king only:
8453                                                                                                                                                                                                                                                                                                                                                                                                             And I will bring back all the people unto thee: the man whom thou seekest is as if all returned: so all the people shall be in peace.
8454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the saying pleased Absalom well, and all the elders of Israel.
8455                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then said Absalom, Call now Hushai the Archite also, and let us hear likewise what he saith.
8456                                                                                                                                                                                                                                                                                                                                                                                  And when Hushai was come to Absalom, Absalom spake unto him, saying, Ahithophel hath spoken after this manner: shall we do after his saying? if not; speak thou.
8457                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hushai said unto Absalom, The counsel that Ahithophel hath given is not good at this time.
8458                                                                                                                                                                                                                                                                                                               For, said Hushai, thou knowest thy father and his men, that they be mighty men, and they be chafed in their minds, as a bear robbed of her whelps in the field: and thy father is a man of war, and will not lodge with the people.
8459                                                                                                                                                                                                                                                                                                                 Behold, he is hid now in some pit, or in some other place: and it will come to pass, when some of them be overthrown at the first, that whosoever heareth it will say, There is a slaughter among the people that follow Absalom.
8460                                                                                                                                                                                                                                                                                                                                                       And he also that is valiant, whose heart is as the heart of a lion, shall utterly melt: for all Israel knoweth that thy father is a mighty man, and they which be with him are valiant men.
8461                                                                                                                                                                                                                                                                                                                                                    Therefore I counsel that all Israel be generally gathered unto thee, from Dan even to Beersheba, as the sand that is by the sea for multitude; and that thou go to battle in thine own person.
8462                                                                                                                                                                                                                                                                                                                             So shall we come upon him in some place where he shall be found, and we will light upon him as the dew falleth on the ground: and of him and of all the men that are with him there shall not be left so much as one.
8463                                                                                                                                                                                                                                                                                                                                                                        Moreover, if he be gotten into a city, then shall all Israel bring ropes to that city, and we will draw it into the river, until there be not one small stone found there.
8464                                                                                                                                                                                                                                                                                           And Absalom and all the men of Israel said, The counsel of Hushai the Archite is better than the counsel of Ahithophel. For the LORD had appointed to defeat the good counsel of Ahithophel, to the intent that the LORD might bring evil upon Absalom.
8465                                                                                                                                                                                                                                                                                                                                                                               Then said Hushai unto Zadok and to Abiathar the priests, Thus and thus did Ahithophel counsel Absalom and the elders of Israel; and thus and thus have I counseled.
8466                                                                                                                                                                                                                                                                                                                                            Now therefore send quickly, and tell David, saying, Lodge not this night in the plains of the wilderness, but speedily pass over; lest the king be swallowed up, and all the people that are with him.
8467                                                                                                                                                                                                                                                                                                                                                                                  Now Jonathan and Ahimaaz stayed by Enrogel; for they might not be seen to come into the city: and a wench went and told them; and they went and told king David.
8468                                                                                                                                                                                                                                                                                                                                                              Nevertheless a lad saw them, and told Absalom: but they went both of them away quickly, and came to a man's house in Bahurim, which had a well in his court; whither they went down.
8469                                                                                                                                                                                                                                                                                                                                                                                                                      And the woman took and spread a covering over the well's mouth, and spread ground corn thereon; and the thing was not known.
8470                                                                                                                                                                                                                                                                                           And when Absalom's servants came to the woman to the house, they said, Where is Ahimaaz and Jonathan? And the woman said unto them, They be gone over the brook of water. And when they had sought and could not find them, they returned to Jerusalem.
8471                                                                                                                                                                                                                                                                                                                      And it came to pass, after they were departed, that they came up out of the well, and went and told king David, and said unto David, Arise, and pass quickly over the water: for thus hath Ahithophel counseled against you.
8472                                                                                                                                                                                                                                                                                                                                                                            Then David arose, and all the people that were with him, and they passed over Jordan: by the morning light there lacked not one of them that was not gone over Jordan.
8473                                                                                                                                                                                                                                                                                                And when Ahithophel saw that his counsel was not followed, he saddled his ass, and arose, and gat him home to his house, to his city, and put his household in order, and hanged himself, and died, and was buried in the sepulchre of his father.
8474                                                                                                                                                                                                                                                                                                                                                                                                                                               Then David came to Mahanaim. And Absalom passed over Jordan, he and all the men of Israel with him.
8475                                                                                                                                                                                                                                                                                                                                      And Absalom made Amasa captain of the host instead of Joab: which Amasa was a man's son, whose name was Ithra an Israelite, that went in to Abigail the daughter of Nahash, sister to Zeruiah Joab's mother.
8476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Israel and Absalom pitched in the land of Gilead.
8477                                                                                                                                                                                                                                                                                                                                           And it came to pass, when David was come to Mahanaim, that Shobi the son of Nahash of Rabbah of the children of Ammon, and Machir the son of Ammiel of Lodebar, and Barzillai the Gileadite of Rogelim,
8478                                                                                                                                                                                                                                                                                                                                                                                                     Brought beds, and basins, and earthen vessels, and wheat, and barley, and flour, and parched corn, and beans, and lentils, and parched pulse,
8479                                                                                                                                                                                                                                                                                                                                                   And honey, and butter, and sheep, and cheese of kine, for David, and for the people that were with him, to eat: for they said, The people is hungry, and weary, and thirsty, in the wilderness.
8480                                                                                                                                                                                                                                                                                                                                                                                                                              And David numbered the people that were with him, and set captains of thousands, and captains of hundreds over them.
8481                                                                                                                                                                                                                                                      And David sent forth a third part of the people under the hand of Joab, and a third part under the hand of Abishai the son of Zeruiah, Joab's brother, and a third part under the hand of Ittai the Gittite. And the king said unto the people, I will surely go forth with you myself also.
8482                                                                                                                                                                                                                                                                                    But the people answered, Thou shalt not go forth: for if we flee away, they will not care for us; neither if half of us die, will they care for us: but now thou art worth ten thousand of us: therefore now it is better that thou succor us out of the city.
8483                                                                                                                                                                                                                                                                                                                                                                                      And the king said unto them, What seemeth you best I will do. And the king stood by the gate side, and all the people came out by hundreds and by thousands.
8484                                                                                                                                                                                                                                                                                                                                 And the king commanded Joab and Abishai and Ittai, saying, Deal gently for my sake with the young man, even with Absalom. And all the people heard when the king gave all the captains charge concerning Absalom.
8485                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the people went out into the field against Israel: and the battle was in the wood of Ephraim;
8486                                                                                                                                                                                                                                                                                                                                                                                                        Where the people of Israel were slain before the servants of David, and there was there a great slaughter that day of twenty thousand men.
8487                                                                                                                                                                                                                                                                                                                                                                                                          For the battle was there scattered over the face of all the country: and the wood devoured more people that day than the sword devoured.
8488                                                                                                                                                                                                                                                                               And Absalom met the servants of David. And Absalom rode upon a mule, and the mule went under the thick boughs of a great oak, and his head caught hold of the oak, and he was taken up between the heaven and the earth; and the mule that was under him went away.
8489                                                                                                                                                                                                                                                                                                                                                                                                                                                        And a certain man saw it, and told Joab, and said, Behold, I saw Absalom hanged in an oak.
8490                                                                                                                                                                                                                                                                                                                                                    And Joab said unto the man that told him, And, behold, thou sawest him, and why didst thou not smite him there to the ground? and I would have given thee ten shekels of silver, and a girdle.
8491                                                                                                                                                                                                                                                                  And the man said unto Joab, Though I should receive a thousand shekels of silver in mine hand, yet would I not put forth mine hand against the king's son: for in our hearing the king charged thee and Abishai and Ittai, saying, Beware that none touch the young man Absalom.
8492                                                                                                                                                                                                                                                                                                                                                                                 Otherwise I should have wrought falsehood against mine own life: for there is no matter hid from the king, and thou thyself wouldest have set thyself against me.
8493                                                                                                                                                                                                                                                                                                                                                                Then said Joab, I may not tarry thus with thee. And he took three darts in his hand, and thrust them through the heart of Absalom, while he was yet alive in the midst of the oak.
8494                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ten young men that bare Joab's armor compassed about and smote Absalom, and slew him.
8495                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joab blew the trumpet, and the people returned from pursuing after Israel: for Joab held back the people.
8496                                                                                                                                                                                                                                                                                                                                                                                       And they took Absalom, and cast him into a great pit in the wood, and laid a very great heap of stones upon him: and all Israel fled every one to his tent.
8497                                                                                                                                                                                                                                                                                   Now Absalom in his lifetime had taken and reared up for himself a pillar, which is in the king's dale: for he said, I have no son to keep my name in remembrance: and he called the pillar after his own name: and it is called unto this day, Absalom's place.
8498                                                                                                                                                                                                                                                                                                                                                                                                                 Then said Ahimaaz the son of Zadok, Let me now run, and bear the king tidings, how that the LORD hath avenged him of his enemies.
8499                                                                                                                                                                                                                                                                                                                                                                   And Joab said unto him, Thou shalt not bear tidings this day, but thou shalt bear tidings another day: but this day thou shalt bear no tidings, because the king's son is dead.
8500                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said Joab to Cushy, Go tell the king what thou hast seen. And Cushy bowed himself unto Joab, and ran.
8501                                                                                                                                                                                                                                                                                                                                           Then said Ahimaaz the son of Zadok yet again to Joab, But howsoever, let me, I pray thee, also run after Cushy. And Joab said, Wherefore wilt thou run, my son, seeing that thou hast no tidings ready?
8502                                                                                                                                                                                                                                                                                                                                                                                                                       But howsoever, said he, let me run. And he said unto him, Run. Then Ahimaaz ran by the way of the plain, and overran Cushy.
8503                                                                                                                                                                                                                                                                                                                                                                        And David sat between the two gates: and the watchman went up to the roof over the gate unto the wall, and lifted up his eyes, and looked, and behold a man running alone.
8504                                                                                                                                                                                                                                                                                                                                                                                                    And the watchman cried, and told the king. And the king said, If he be alone, there is tidings in his mouth. And he came apace, and drew near.
8505                                                                                                                                                                                                                                                                                                                                                                       And the watchman saw another man running: and the watchman called unto the porter, and said, Behold another man running alone. And the king said, He also bringeth tidings.
8506                                                                                                                                                                                                                                                                                                                                                                And the watchman said, Me thinketh the running of the foremost is like the running of Ahimaaz the son of Zadok. And the king said, He is a good man, and cometh with good tidings.
8507                                                                                                                                                                                                                                                                                                  And Ahimaaz called, and said unto the king, All is well. And he fell down to the earth upon his face before the king, and said, Blessed be the LORD thy God, which hath delivered up the men that lifted up their hand against my lord the king.
8508                                                                                                                                                                                                                                                                                                                                                                  And the king said, Is the young man Absalom safe? And Ahimaaz answered, When Joab sent the king's servant, and me thy servant, I saw a great tumult, but I knew not what it was.
8509                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king said unto him, Turn aside, and stand here. And he turned aside, and stood still.
8510                                                                                                                                                                                                                                                                                                                                                                                                And, behold, Cushy came; and Cushy said, Tidings, my lord the king: for the LORD hath avenged thee this day of all them that rose up against thee.
8511                                                                                                                                                                                                                                                                                                                                                        And the king said unto Cushy, Is the young man Absalom safe? And Cushy answered, The enemies of my lord the king, and all that rise against thee to do thee hurt, be as that young man is.
8512                                                                                                                                                                                                                                                                                                                                And the king was much moved, and went up to the chamber over the gate, and wept: and as he went, thus he said, O my son Absalom, my son, my son Absalom! would God I had died for thee, O Absalom, my son, my son!
8513                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was told Joab, Behold, the king weepeth and mourneth for Absalom.
8514                                                                                                                                                                                                                                                                                                                                                                                                    And the victory that day was turned into mourning unto all the people: for the people heard say that day how the king was grieved for his son.
8515                                                                                                                                                                                                                                                                                                                                                                                                                           And the people gat them by stealth that day into the city, as people being ashamed steal away when they flee in battle.
8516                                                                                                                                                                                                                                                                                                                                                                                                                                 But the king covered his face, and the king cried with a loud voice, O my son Absalom, O Absalom, my son, my son!
8517                                                                                                                                                                                                                                                                                     And Joab came into the house to the king, and said, Thou hast shamed this day the faces of all thy servants, which this day have saved thy life, and the lives of thy sons and of thy daughters, and the lives of thy wives, and the lives of thy concubines;
8518                                                                                                                                                                                                                                                                                    In that thou lovest thine enemies, and hatest thy friends. For thou hast declared this day, that thou regardest neither princes nor servants: for this day I perceive, that if Absalom had lived, and all we had died this day, then it had pleased thee well.
8519                                                                                                                                                                                                                                                                               Now therefore arise, go forth, and speak comfortably unto thy servants: for I swear by the LORD, if thou go not forth, there will not tarry one with thee this night: and that will be worse unto thee than all the evil that befell thee from thy youth until now.
8520                                                                                                                                                                                                                                                                                                                                   Then the king arose, and sat in the gate. And they told unto all the people, saying, Behold, the king doth sit in the gate. And all the people came before the king: for Israel had fled every man to his tent.
8521                                                                                                                                                                                                                                                                                                          And all the people were at strife throughout all the tribes of Israel, saying, The king saved us out of the hand of our enemies, and he delivered us out of the hand of the Philistines; and now he is fled out of the land for Absalom.
8522                                                                                                                                                                                                                                                                                                                                                                                                                        And Absalom, whom we anointed over us, is dead in battle. Now therefore why speak ye not a word of bringing the king back?
8523                                                                                                                                                                                                                                                                                                        And king David sent to Zadok and to Abiathar the priests, saying, Speak unto the elders of Judah, saying, Why are ye the last to bring the king back to his house? seeing the speech of all Israel is come to the king, even to his house.
8524                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye are my brethren, ye are my bones and my flesh: wherefore then are ye the last to bring back the king?
8525                                                                                                                                                                                                                                                                                                                                                                      And say ye to Amasa, Art thou not of my bone, and of my flesh? God do so to me, and more also, if thou be not captain of the host before me continually in the room of Joab.
8526                                                                                                                                                                                                                                                                                                                                                                                       And he bowed the heart of all the men of Judah, even as the heart of one man; so that they sent this word unto the king, Return thou, and all thy servants.
8527                                                                                                                                                                                                                                                                                                                                                                                                                      So the king returned, and came to Jordan. And Judah came to Gilgal, to go to meet the king, to conduct the king over Jordan.
8528                                                                                                                                                                                                                                                                                                                                                                                                                     And Shimei the son of Gera, a Benjamite, which was of Bahurim, hasted and came down with the men of Judah to meet king David.
8529                                                                                                                                                                                                                                                                                                                                                  And there were a thousand men of Benjamin with him, and Ziba the servant of the house of Saul, and his fifteen sons and his twenty servants with him; and they went over Jordan before the king.
8530                                                                                                                                                                                                                                                                                                                                                            And there went over a ferry boat to carry over the king's household, and to do what he thought good. And Shimei the son of Gera fell down before the king, as he was come over Jordan;
8531                                                                                                                                                                                                                                                                                                                   And said unto the king, Let not my lord impute iniquity unto me, neither do thou remember that which thy servant did perversely the day that my lord the king went out of Jerusalem, that the king should take it to his heart.
8532                                                                                                                                                                                                                                                                                                                                                                                     For thy servant doth know that I have sinned: therefore, behold, I am come the first this day of all the house of Joseph to go down to meet my lord the king.
8533                                                                                                                                                                                                                                                                                                                                                                                                               But Abishai the son of Zeruiah answered and said, Shall not Shimei be put to death for this, because he cursed the LORD's anointed?
8534                                                                                                                                                                                                                                                                                                                    And David said, What have I to do with you, ye sons of Zeruiah, that ye should this day be adversaries unto me? shall there any man be put to death this day in Israel? for do not I know that I am this day king over Israel?
8535                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore the king said unto Shimei, Thou shalt not die. And the king sware unto him.
8536                                                                                                                                                                                                                                                                                                                                And Mephibosheth the son of Saul came down to meet the king, and had neither dressed his feet, nor trimmed his beard, nor washed his clothes, from the day the king departed until the day he came again in peace.
8537                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when he was come to Jerusalem to meet the king, that the king said unto him, Wherefore wentest not thou with me, Mephibosheth?
8538                                                                                                                                                                                                                                                                                                                                                                And he answered, My lord, O king, my servant deceived me: for thy servant said, I will saddle me an ass, that I may ride thereon, and go to the king; because thy servant is lame.
8539                                                                                                                                                                                                                                                                                                                                                                                                     And he hath slandered thy servant unto my lord the king; but my lord the king is as an angel of God: do therefore what is good in thine eyes.
8540                                                                                                                                                                                                                                                                                                                                 For all of my father's house were but dead men before my lord the king: yet didst thou set thy servant among them that did eat at thine own table. What right therefore have I yet to cry any more unto the king?
8541                                                                                                                                                                                                                                                                                                                                                                                                                                And the king said unto him, Why speakest thou any more of thy matters? I have said, Thou and Ziba divide the land.
8542                                                                                                                                                                                                                                                                                                                                                                                                              And Mephibosheth said unto the king, Yea, let him take all, forasmuch as my lord the king is come again in peace unto his own house.
8543                                                                                                                                                                                                                                                                                                                                                                                                                               And Barzillai the Gileadite came down from Rogelim, and went over Jordan with the king, to conduct him over Jordan.
8544                                                                                                                                                                                                                                                                                                                                                                                    Now Barzillai was a very aged man, even fourscore years old: and he had provided the king of sustenance while he lay at Mahanaim; for he was a very great man.
8545                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king said unto Barzillai, Come thou over with me, and I will feed thee with me in Jerusalem.
8546                                                                                                                                                                                                                                                                                                                                                                                                                                      And Barzillai said unto the king, How long have I to live, that I should go up with the king unto Jerusalem?
8547                                                                                                                                                                                                                                                                            I am this day fourscore years old: and can I discern between good and evil? can thy servant taste what I eat or what I drink? can I hear any more the voice of singing men and singing women? wherefore then should thy servant be yet a burden unto my lord the king?
8548                                                                                                                                                                                                                                                                                                                                                                                                                          Thy servant will go a little way over Jordan with the king: and why should the king recompense it me with such a reward?
8549                                                                                                                                                                                                                                                                                    Let thy servant, I pray thee, turn back again, that I may die in mine own city, and be buried by the grave of my father and of my mother. But behold thy servant Chimham; let him go over with my lord the king; and do to him what shall seem good unto thee.
8550                                                                                                                                                                                                                                                                                                                                                                And the king answered, Chimham shall go over with me, and I will do to him that which shall seem good unto thee: and whatsoever thou shalt require of me, that will I do for thee.
8551                                                                                                                                                                                                                                                                                                                                                                                             And all the people went over Jordan. And when the king was come over, the king kissed Barzillai, and blessed him; and he returned unto his own place.
8552                                                                                                                                                                                                                                                                                                                                                                                                Then the king went on to Gilgal, and Chimham went on with him: and all the people of Judah conducted the king, and also half the people of Israel.
8553                                                                                                                                                                                                                                                                                                                    And, behold, all the men of Israel came to the king, and said unto the king, Why have our brethren the men of Judah stolen thee away, and have brought the king, and his household, and all David's men with him, over Jordan?
8554                                                                                                                                                                                                                                                                                                                                    And all the men of Judah answered the men of Israel, Because the king is near of kin to us: wherefore then be ye angry for this matter? have we eaten at all of the king's cost? or hath he given us any gift?
8555                                                                                                                                                                                                                        And the men of Israel answered the men of Judah, and said, We have ten parts in the king, and we have also more right in David than ye: why then did ye despise us, that our advice should not be first had in bringing back our king? And the words of the men of Judah were fiercer than the words of the men of Israel.
8556                                                                                                                                                                                                                                                                                               And there happened to be there a man of Belial, whose name was Sheba, the son of Bichri, a Benjamite: and he blew a trumpet, and said, We have no part in David, neither have we inheritance in the son of Jesse: every man to his tents, O Israel.
8557                                                                                                                                                                                                                                                                                                                                                                                 So every man of Israel went up from after David, and followed Sheba the son of Bichri: but the men of Judah clave unto their king, from Jordan even to Jerusalem.
8558                                                                                                                                                                                                                                                                               And David came to his house at Jerusalem; and the king took the ten women his concubines, whom he had left to keep the house, and put them in ward, and fed them, but went not in unto them. So they were shut up unto the day of their death, living in widowhood.
8559                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said the king to Amasa, Assemble me the men of Judah within three days, and be thou here present.
8560                                                                                                                                                                                                                                                                                                                                                                                                                                   So Amasa went to assemble the men of Judah: but he tarried longer than the set time which he had appointed him.
8561                                                                                                                                                                                                                                                                                                                                                 And David said to Abishai, Now shall Sheba the son of Bichri do us more harm than did Absalom: take thou thy lord's servants, and pursue after him, lest he get him fenced cities, and escape us.
8562                                                                                                                                                                                                                                                                                                                                                                And there went out after him Joab's men, and the Cherethites, and the Pelethites, and all the mighty men: and they went out of Jerusalem, to pursue after Sheba the son of Bichri.
8563                                                                                                                                                                                                                                                                                       When they were at the great stone which is in Gibeon, Amasa went before them. And Joab's garment that he had put on was girded unto him, and upon it a girdle with a sword fastened upon his loins in the sheath thereof; and as he went forth it fell out.
8564                                                                                                                                                                                                                                                                                                                                                                                                                         And Joab said to Amasa, Art thou in health, my brother? And Joab took Amasa by the beard with the right hand to kiss him.
8565                                                                                                                                                                                                                                                                                     But Amasa took no heed to the sword that was in Joab's hand: so he smote him therewith in the fifth rib, and shed out his bowels to the ground, and struck him not again; and he died. So Joab and Abishai his brother pursued after Sheba the son of Bichri.
8566                                                                                                                                                                                                                                                                                                                                                                                                                             And one of Joab's men stood by him, and said, He that favoreth Joab, and he that is for David, let him go after Joab.
8567                                                                                                                                                                                                                                                                                            And Amasa wallowed in blood in the midst of the highway. And when the man saw that all the people stood still, he removed Amasa out of the highway into the field, and cast a cloth upon him, when he saw that every one that came by him stood still.
8568                                                                                                                                                                                                                                                                                                                                                                                                                               When he was removed out of the highway, all the people went on after Joab, to pursue after Sheba the son of Bichri.
8569                                                                                                                                                                                                                                                                                                                                                                                        And he went through all the tribes of Israel unto Abel, and to Bethmaachah, and all the Berites: and they were gathered together, and went also after him.
8570                                                                                                                                                                                                                                                                                                                                          And they came and besieged him in Abel of Bethmaachah, and they cast up a bank against the city, and it stood in the trench: and all the people that were with Joab battered the wall, to throw it down.
8571                                                                                                                                                                                                                                                                                                                                                                                                                    Then cried a wise woman out of the city, Hear, hear; say, I pray you, unto Joab, Come near hither, that I may speak with thee.
8572                                                                                                                                                                                                                                                                                                                                                                And when he was come near unto her, the woman said, Art thou Joab? And he answered, I am he. Then she said unto him, Hear the words of thine handmaid. And he answered, I do hear.
8573                                                                                                                                                                                                                                                                                                                                                                                                         Then she spake, saying, They were wont to speak in old time, saying, They shall surely ask counsel at Abel: and so they ended the matter.
8574                                                                                                                                                                                                                                                                                                                                                                          I am one of them that are peaceable and faithful in Israel: thou seekest to destroy a city and a mother in Israel: why wilt thou swallow up the inheritance of the LORD?
8575                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joab answered and said, Far be it, far be it from me, that I should swallow up or destroy.
8576                                                                                                                                                                                                                                                         The matter is not so: but a man of mount Ephraim, Sheba the son of Bichri by name, hath lifted up his hand against the king, even against David: deliver him only, and I will depart from the city. And the woman said unto Joab, Behold, his head shall be thrown to thee over the wall.
8577                                                                                                                                                                                                                                                                                 Then the woman went unto all the people in her wisdom. And they cut off the head of Sheba the son of Bichri, and cast it out to Joab. And he blew a trumpet, and they retired from the city, every man to his tent. And Joab returned to Jerusalem unto the king.
8578                                                                                                                                                                                                                                                                                                                                                                                                                       Now Joab was over all the host of Israel: and Benaiah the son of Jehoiada was over the Cherethites and over the Pelethites:
8579                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Adoram was over the tribute: and Jehoshaphat the son of Ahilud was recorder:
8580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Sheva was scribe: and Zadok and Abiathar were the priests:
8581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Ira also the Jairite was a chief ruler about David.
8582                                                                                                                                                                                                                                                                                                                                       Then there was a famine in the days of David three years, year after year; and David inquired of the LORD. And the LORD answered, It is for Saul, and for his bloody house, because he slew the Gibeonites.
8583                                                                                                                                                                                                                                                                And the king called the Gibeonites, and said unto them; (now the Gibeonites were not of the children of Israel, but of the remnant of the Amorites; and the children of Israel had sworn unto them: and Saul sought to slay them in his zeal to the children of Israel and Judah.)
8584                                                                                                                                                                                                                                                                                                                                                                                       Wherefore David said unto the Gibeonites, What shall I do for you? and wherewith shall I make the atonement, that ye may bless the inheritance of the LORD?
8585                                                                                                                                                                                                                                                                                                                                            And the Gibeonites said unto him, We will have no silver nor gold of Saul, nor of his house; neither for us shalt thou kill any man in Israel. And he said, What ye shall say, that will I do for you.
8586                                                                                                                                                                                                                                                                                                                                                                                      And they answered the king, The man that consumed us, and that devised against us that we should be destroyed from remaining in any of the coasts of Israel,
8587                                                                                                                                                                                                                                                                                                                                                                          Let seven men of his sons be delivered unto us, and we will hang them up unto the LORD in Gibeah of Saul, whom the LORD did choose. And the king said, I will give them.
8588                                                                                                                                                                                                                                                                                                                                                                              But the king spared Mephibosheth, the son of Jonathan the son of Saul, because of the LORD's oath that was between them, between David and Jonathan the son of Saul.
8589                                                                                                                                                                                                                                                                                                           But the king took the two sons of Rizpah the daughter of Aiah, whom she bare unto Saul, Armoni and Mephibosheth; and the five sons of Michal the daughter of Saul, whom she brought up for Adriel the son of Barzillai the Meholathite:
8590                                                                                                                                                                                                                                                                                                  And he delivered them into the hands of the Gibeonites, and they hanged them in the hill before the LORD: and they fell all seven together, and were put to death in the days of harvest, in the first days, in the beginning of barley harvest.
8591                                                                                                                                                                                                                                                                           And Rizpah the daughter of Aiah took sackcloth, and spread it for her upon the rock, from the beginning of harvest until water dropped upon them out of heaven, and suffered neither the birds of the air to rest on them by day, nor the beasts of the field by night.
8592                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was told David what Rizpah the daughter of Aiah, the concubine of Saul, had done.
8593                                                                                                                                                                                                                                                                                                And David went and took the bones of Saul and the bones of Jonathan his son from the men of Jabeshgilead, which had stolen them from the street of Bethshan, where the Philistines had hanged them, when the Philistines had slain Saul in Gilboa:
8594                                                                                                                                                                                                                                                                                                                                                                                                          And he brought up from thence the bones of Saul and the bones of Jonathan his son; and they gathered the bones of them that were hanged.
8595                                                                                                                                                                                                                                                                                                                   And the bones of Saul and Jonathan his son buried they in the country of Benjamin in Zelah, in the sepulchre of Kish his father: and they performed all that the king commanded. And after that God was intreated for the land.
8596                                                                                                                                                                                                                                                                                                                                                                                Moreover the Philistines had yet war again with Israel; and David went down, and his servants with him, and fought against the Philistines: and David waxed faint.
8597                                                                                                                                                                                                                                                                                                                                                    And Ishbibenob, which was of the sons of the giant, the weight of whose spear weighed three hundred shekels of brass in weight, he being girded with a new sword, thought to have slain David.
8598                                                                                                                                                                                                                                                                                                                       But Abishai the son of Zeruiah succored him, and smote the Philistine, and killed him. Then the men of David sware unto him, saying, Thou shalt go no more out with us to battle, that thou quench not the light of Israel.
8599                                                                                                                                                                                                                                                                                                                                                                           And it came to pass after this, that there was again a battle with the Philistines at Gob: then Sibbechai the Hushathite slew Saph, which was of the sons of the giant.
8600                                                                                                                                                                                                                                                                                                                                       And there was again a battle in Gob with the Philistines, where Elhanan the son of Jaareoregim, a Bethlehemite, slew the brother of Goliath the Gittite, the staff of whose spear was like a weaver's beam.
8601                                                                                                                                                                                                                                                                                                                                               And there was yet a battle in Gath, where was a man of great stature, that had on every hand six fingers, and on every foot six toes, four and twenty in number; and he also was born to the giant.
8602                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when he defied Israel, Jonathan the son of Shimeah the brother of David slew him.
8603                                                                                                                                                                                                                                                                                                                                                                                                                                        These four were born to the giant in Gath, and fell by the hand of David, and by the hand of his servants.
8604                                                                                                                                                                                                                                                                                                                                                                                  And David spake unto the LORD the words of this song in the day that the LORD had delivered him out of the hand of all his enemies, and out of the hand of Saul:
8605                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, The LORD is my rock, and my fortress, and my deliverer;
8606                                                                                                                                                                                                                                                                                                                                                                                   The God of my rock; in him will I trust: he is my shield, and the horn of my salvation, my high tower, and my refuge, my saviour; thou savest me from violence.
8607                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will call on the LORD, who is worthy to be praised: so shall I be saved from mine enemies.
8608                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When the waves of death compassed me, the floods of ungodly men made me afraid;
8609                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sorrows of hell compassed me about; the snares of death prevented me;
8610                                                                                                                                                                                                                                                                                                                                                                                                       In my distress I called upon the LORD, and cried to my God: and he did hear my voice out of his temple, and my cry did enter into his ears.
8611                                                                                                                                                                                                                                                                                                                                                                                                                                               Then the earth shook and trembled; the foundations of heaven moved and shook, because he was wroth.
8612                                                                                                                                                                                                                                                                                                                                                                                                                                          There went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it.
8613                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He bowed the heavens also, and came down; and darkness was under his feet.
8614                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he rode upon a cherub, and did fly: and he was seen upon the wings of the wind.
8615                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he made darkness pavilions round about him, dark waters, and thick clouds of the skies.
8616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Through the brightness before him were coals of fire kindled.
8617                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD thundered from heaven, and the most High uttered his voice.
8618                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he sent out arrows, and scattered them; lightning, and discomfited them.
8619                                                                                                                                                                                                                                                                                                                                                                                      And the channels of the sea appeared, the foundations of the world were discovered, at the rebuking of the LORD, at the blast of the breath of his nostrils.
8620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He sent from above, he took me; he drew me out of many waters;
8621                                                                                                                                                                                                                                                                                                                                                                                                                                               He delivered me from my strong enemy, and from them that hated me: for they were too strong for me.
8622                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They prevented me in the day of my calamity: but the LORD was my stay.
8623                                                                                                                                                                                                                                                                                                                                                                                                                                                         He brought me forth also into a large place: he delivered me, because he delighted in me.
8624                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD rewarded me according to my righteousness: according to the cleanness of my hands hath he recompensed me.
8625                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For I have kept the ways of the LORD, and have not wickedly departed from my God.
8626                                                                                                                                                                                                                                                                                                                                                                                                                                                        For all his judgments were before me: and as for his statutes, I did not depart from them.
8627                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I was also upright before him, and have kept myself from mine iniquity.
8628                                                                                                                                                                                                                                                                                                                                                                                                                                 Therefore the LORD hath recompensed me according to my righteousness; according to my cleanness in his eye sight.
8629                                                                                                                                                                                                                                                                                                                                                                                                                                       With the merciful thou wilt show thyself merciful, and with the upright man thou wilt show thyself upright.
8630                                                                                                                                                                                                                                                                                                                                                                                                                                                  With the pure thou wilt show thyself pure; and with the froward thou wilt show thyself unsavory.
8631                                                                                                                                                                                                                                                                                                                                                                                                                                   And the afflicted people thou wilt save: but thine eyes are upon the haughty, that thou mayest bring them down.
8632                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For thou art my lamp, O LORD: and the LORD will lighten my darkness.
8633                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For by thee I have run through a troop: by my God have I leaped over a wall.
8634                                                                                                                                                                                                                                                                                                                                                                                                                                     As for God, his way is perfect; the word of the LORD is tried: he is a buckler to all them that trust in him.
8635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For who is God, save the LORD? and who is a rock, save our God?
8636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       God is my strength and power: and he maketh my way perfect.
8637                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He maketh my feet like hinds' feet: and setteth me upon my high places.
8638                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He teacheth my hands to war; so that a bow of steel is broken by mine arms.
8639                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast also given me the shield of thy salvation: and thy gentleness hath made me great.
8640                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou hast enlarged my steps under me; so that my feet did not slip.
8641                                                                                                                                                                                                                                                                                                                                                                                                                                                  I have pursued mine enemies, and destroyed them; and turned not again until I had consumed them.
8642                                                                                                                                                                                                                                                                                                                                                                                                                                        And I have consumed them, and wounded them, that they could not arise: yea, they are fallen under my feet.
8643                                                                                                                                                                                                                                                                                                                                                                                                                                         For thou hast girded me with strength to battle: them that rose up against me hast thou subdued under me.
8644                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou hast also given me the necks of mine enemies, that I might destroy them that hate me.
8645                                                                                                                                                                                                                                                                                                                                                                                                                                                            They looked, but there was none to save; even unto the LORD, but he answered them not.
8646                                                                                                                                                                                                                                                                                                                                                                                                                   Then did I beat them as small as the dust of the earth, I did stamp them as the mire of the street, and did spread them abroad.
8647                                                                                                                                                                                                                                                                                                                                                                                               Thou also hast delivered me from the strivings of my people, thou hast kept me to be head of the heathen: a people which I knew not shall serve me.
8648                                                                                                                                                                                                                                                                                                                                                                                                                                                  Strangers shall submit themselves unto me: as soon as they hear, they shall be obedient unto me.
8649                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Strangers shall fade away, and they shall be afraid out of their close places.
8650                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD liveth; and blessed be my rock; and exalted be the God of the rock of my salvation.
8651                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is God that avengeth me, and that bringeth down the people under me.
8652                                                                                                                                                                                                                                                                                                                                                                                And that bringeth me forth from mine enemies: thou also hast lifted me up on high above them that rose up against me: thou hast delivered me from the violent man.
8653                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore I will give thanks unto thee, O LORD, among the heathen, and I will sing praises unto thy name.
8654                                                                                                                                                                                                                                                                                                                                                                                                                           He is the tower of salvation for his king: and sheweth mercy to his anointed, unto David, and to his seed for evermore.
8655                                                                                                                                                                                                                                                                                                                                                               Now these be the last words of David. David the son of Jesse said, and the man who was raised up on high, the anointed of the God of Jacob, and the sweet psalmist of Israel, said,
8656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Spirit of the LORD spake by me, and his word was in my tongue.
8657                                                                                                                                                                                                                                                                                                                                                                                                                          The God of Israel said, the Rock of Israel spake to me, He that ruleth over men must be just, ruling in the fear of God.
8658                                                                                                                                                                                                                                                                                                                                                                      And he shall be as the light of the morning, when the sun riseth, even a morning without clouds; as the tender grass springing out of the earth by clear shining after rain.
8659                                                                                                                                                                                                                                                                                                                                        Although my house be not so with God; yet he hath made with me an everlasting covenant, ordered in all things, and sure: for this is all my salvation, and all my desire, although he make it not to grow.
8660                                                                                                                                                                                                                                                                                                                                                                                                                                       But the sons of Belial shall be all of them as thorns thrust away, because they cannot be taken with hands:
8661                                                                                                                                                                                                                                                                                                                                                                                                But the man that shall touch them must be fenced with iron and the staff of a spear; and they shall be utterly burned with fire in the same place.
8662                                                                                                                                                                                                                                                                                                                          These be the names of the mighty men whom David had: The Tachmonite that sat in the seat, chief among the captains; the same was Adino the Eznite: he lift up his spear against eight hundred, whom he slew at one time.
8663                                                                                                                                                                                                                                                                                                                                And after him was Eleazar the son of Dodo the Ahohite, one of the three mighty men with David, when they defied the Philistines that were there gathered together to battle, and the men of Israel were gone away:
8664                                                                                                                                                                                                                                                                                                                                                  He arose, and smote the Philistines until his hand was weary, and his hand clave unto the sword: and the LORD wrought a great victory that day; and the people returned after him only to spoil.
8665                                                                                                                                                                                                                                                                                                                                           And after him was Shammah the son of Agee the Hararite. And the Philistines were gathered together into a troop, where was a piece of ground full of lentils: and the people fled from the Philistines.
8666                                                                                                                                                                                                                                                                                                                                                                                                                         But he stood in the midst of the ground, and defended it, and slew the Philistines: and the LORD wrought a great victory.
8667                                                                                                                                                                                                                                                                                                                                                                       And three of the thirty chief went down, and came to David in the harvest time unto the cave of Adullam: and the troop of the Philistines pitched in the valley of Rephaim.
8668                                                                                                                                                                                                                                                                                                                                                                                                                                                         And David was then in an hold, and the garrison of the Philistines was then in Bethlehem.
8669                                                                                                                                                                                                                                                                                                                                                                                                                          And David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, which is by the gate!
8670                                                                                                                                                                                                                                                                                            And the three mighty men brake through the host of the Philistines, and drew water out of the well of Bethlehem, that was by the gate, and took it, and brought it to David: nevertheless he would not drink thereof, but poured it out unto the LORD.
8671                                                                                                                                                                                                                                                                                                                                   And he said, Be it far from me, O LORD, that I should do this: is not this the blood of the men that went in jeopardy of their lives? therefore he would not drink it. These things did these three mighty men.
8672                                                                                                                                                                                                                                                                                                                                                                       And Abishai, the brother of Joab, the son of Zeruiah, was chief among three. And he lifted up his spear against three hundred, and slew them, and had the name among three.
8673                                                                                                                                                                                                                                                                                                                                                                                                                                 Was he not most honorable of three? therefore he was their captain: howbeit he attained not unto the first three.
8674                                                                                                                                                                                                                                                                                                                                         And Benaiah the son of Jehoiada, the son of a valiant man, of Kabzeel, who had done many acts, he slew two lionlike men of Moab: he went down also and slew a lion in the midst of a pit in time of snow:
8675                                                                                                                                                                                                                                                                                                                                         And he slew an Egyptian, a goodly man: and the Egyptian had a spear in his hand; but he went down to him with a staff, and plucked the spear out of the Egyptian's hand, and slew him with his own spear.
8676                                                                                                                                                                                                                                                                                                                                                                                                                                                            These things did Benaiah the son of Jehoiada, and had the name among three mighty men.
8677                                                                                                                                                                                                                                                                                                                                                                                                                                  He was more honorable than the thirty, but he attained not to the first three. And David set him over his guard.
8678                                                                                                                                                                                                                                                                                                                                                                                                                                                           Asahel the brother of Joab was one of the thirty; Elhanan the son of Dodo of Bethlehem,
8679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shammah the Harodite, Elika the Harodite,
8680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Helez the Paltite, Ira the son of Ikkesh the Tekoite,
8681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Abiezer the Anethothite, Mebunnai the Hushathite,
8682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Zalmon the Ahohite, Maharai the Netophathite,
8683                                                                                                                                                                                                                                                                                                                                                                                                                                        Heleb the son of Baanah, a Netophathite, Ittai the son of Ribai out of Gibeah of the children of Benjamin,
8684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Benaiah the Pirathonite, Hiddai of the brooks of Gaash,
8685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Abialbon the Arbathite, Azmaveth the Barhumite,
8686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Eliahba the Shaalbonite, of the sons of Jashen, Jonathan,
8687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shammah the Hararite, Ahiam the son of Sharar the Hararite,
8688                                                                                                                                                                                                                                                                                                                                                                                                                                               Eliphelet the son of Ahasbai, the son of the Maachathite, Eliam the son of Ahithophel the Gilonite,
8689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hezrai the Carmelite, Paarai the Arbite,
8690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Igal the son of Nathan of Zobah, Bani the Gadite,
8691                                                                                                                                                                                                                                                                                                                                                                                                                                                               Zelek the Ammonite, Nahari the Beerothite, armourbearer to Joab the son of Zeruiah,
8692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ira an Ithrite, Gareb an Ithrite,
8693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Uriah the Hittite: thirty and seven in all.
8694                                                                                                                                                                                                                                                                                                                                                                                                                  And again the anger of the LORD was kindled against Israel, and he moved David against them to say, Go, number Israel and Judah.
8695                                                                                                                                                                                                                                                                                                                                   For the king said to Joab the captain of the host, which was with him, Go now through all the tribes of Israel, from Dan even to Beersheba, and number ye the people, that I may know the number of the people.
8696                                                                                                                                                                                                                                                                                                                            And Joab said unto the king, Now the LORD thy God add unto the people, how many soever they be, an hundredfold, and that the eyes of my lord the king may see it: but why doth my lord the king delight in this thing?
8697                                                                                                                                                                                                                                                                                                                                       Notwithstanding the king's word prevailed against Joab, and against the captains of the host. And Joab and the captains of the host went out from the presence of the king, to number the people of Israel.
8698                                                                                                                                                                                                                                                                                                                                                                                                   And they passed over Jordan, and pitched in Aroer, on the right side of the city that lieth in the midst of the river of Gad, and toward Jazer:
8699                                                                                                                                                                                                                                                                                                                                                                                                                                          Then they came to Gilead, and to the land of Tahtimhodshi; and they came to Danjaan, and about to Zidon,
8700                                                                                                                                                                                                                                                                                                                                                                                     And came to the strong hold of Tyre, and to all the cities of the Hivites, and of the Canaanites: and they went out to the south of Judah, even to Beersheba.
8701                                                                                                                                                                                                                                                                                                                                                                                                                                     So when they had gone through all the land, they came to Jerusalem at the end of nine months and twenty days.
8702                                                                                                                                                                                                                                                                                                                                         And Joab gave up the sum of the number of the people unto the king: and there were in Israel eight hundred thousand valiant men that drew the sword; and the men of Judah were five hundred thousand men.
8703                                                                                                                                                                                                                                                                                               And David's heart smote him after that he had numbered the people. And David said unto the LORD, I have sinned greatly in that I have done: and now, I beseech thee, O LORD, take away the iniquity of thy servant; for I have done very foolishly.
8704                                                                                                                                                                                                                                                                                                                                                                                                                                       For when David was up in the morning, the word of the LORD came unto the prophet Gad, David's seer, saying,
8705                                                                                                                                                                                                                                                                                                                                                                                                                       Go and say unto David, Thus saith the LORD, I offer thee three things; choose thee one of them, that I may do it unto thee.
8706                                                                                                                                                                                                                              So Gad came to David, and told him, and said unto him, Shall seven years of famine come unto thee in thy land? or wilt thou flee three months before thine enemies, while they pursue thee? or that there be three days' pestilence in thy land? now advise, and see what answer I shall return to him that sent me.
8707                                                                                                                                                                                                                                                                                                                                                                                  And David said unto Gad, I am in a great strait: let us fall now into the hand of the LORD; for his mercies are great: and let me not fall into the hand of man.
8708                                                                                                                                                                                                                                                                                                                                                                              So the LORD sent a pestilence upon Israel from the morning even to the time appointed: and there died of the people from Dan even to Beersheba seventy thousand men.
8709                                                                                                                                                                                                                                                                       And when the angel stretched out his hand upon Jerusalem to destroy it, the LORD repented him of the evil, and said to the angel that destroyed the people, It is enough: stay now thine hand. And the angel of the LORD was by the threshingplace of Araunah the Jebusite.
8710                                                                                                                                                                                                                                                                                                And David spake unto the LORD when he saw the angel that smote the people, and said, Lo, I have sinned, and I have done wickedly: but these sheep, what have they done? let thine hand, I pray thee, be against me, and against my father's house.
8711                                                                                                                                                                                                                                                                                                                                                                                                              And Gad came that day to David, and said unto him, Go up, rear an altar unto the LORD in the threshingfloor of Araunah the Jebusite.
8712                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And David, according to the saying of Gad, went up as the LORD commanded.
8713                                                                                                                                                                                                                                                                                                                                                                                  And Araunah looked, and saw the king and his servants coming on toward him: and Araunah went out, and bowed himself before the king on his face upon the ground.
8714                                                                                                                                                                                                                                                                                                                                           And Araunah said, Wherefore is my lord the king come to his servant? And David said, To buy the threshingfloor of thee, to build an altar unto the LORD, that the plague may be stayed from the people.
8715                                                                                                                                                                                                                                                                                                                                   And Araunah said unto David, Let my lord the king take and offer up what seemeth good unto him: behold, here be oxen for burnt sacrifice, and threshing instruments and other instruments of the oxen for wood.
8716                                                                                                                                                                                                                                                                                                                                                                                                                        All these things did Araunah, as a king, give unto the king. And Araunah said unto the king, The LORD thy God accept thee.
8717                                                                                                                                                                                                                                                                                      And the king said unto Araunah, Nay; but I will surely buy it of thee at a price: neither will I offer burnt offerings unto the LORD my God of that which doth cost me nothing. So David bought the threshingfloor and the oxen for fifty shekels of silver.
8718                                                                                                                                                                                                                                                                                                                                                                     And David built there an altar unto the LORD, and offered burnt offerings and peace offerings. So the LORD was intreated for the land, and the plague was stayed from Israel.
8719                                                                                                                                                                                                                                                                                                                                                                                                                                              Now king David was old and stricken in years; and they covered him with clothes, but he gat no heat.
8720                                                                                                                                                                                                                                                                                                                      Wherefore his servants said unto him, Let there be sought for my lord the king a young virgin: and let her stand before the king, and let her cherish him, and let her lie in thy bosom, that my lord the king may get heat.
8721                                                                                                                                                                                                                                                                                                                                                                                                                So they sought for a fair damsel throughout all the coasts of Israel, and found Abishag a Shunammite, and brought her to the king.
8722                                                                                                                                                                                                                                                                                                                                                                                                                                           And the damsel was very fair, and cherished the king, and ministered to him: but the king knew her not.
8723                                                                                                                                                                                                                                                                                                                                                                                             Then Adonijah the son of Haggith exalted himself, saying, I will be king: and he prepared him chariots and horsemen, and fifty men to run before him.
8724                                                                                                                                                                                                                                                                                                                                                                                     And his father had not displeased him at any time in saying, Why hast thou done so? and he also was a very goodly man; and his mother bare him after Absalom.
8725                                                                                                                                                                                                                                                                                                                                                                                                                              And he conferred with Joab the son of Zeruiah, and with Abiathar the priest: and they following Adonijah helped him.
8726                                                                                                                                                                                                                                                                                                                                                                           But Zadok the priest, and Benaiah the son of Jehoiada, and Nathan the prophet, and Shimei, and Rei, and the mighty men which belonged to David, were not with Adonijah.
8727                                                                                                                                                                                                                                                                                                                                                         And Adonijah slew sheep and oxen and fat cattle by the stone of Zoheleth, which is by Enrogel, and called all his brethren the king's sons, and all the men of Judah the king's servants:
8728                                                                                                                                                                                                                                                                                                                                                                                                                                                  But Nathan the prophet, and Benaiah, and the mighty men, and Solomon his brother, he called not.
8729                                                                                                                                                                                                                                                                                                                                                                          Wherefore Nathan spake unto Bathsheba the mother of Solomon, saying, Hast thou not heard that Adonijah the son of Haggith doth reign, and David our lord knoweth it not?
8730                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore come, let me, I pray thee, give thee counsel, that thou mayest save thine own life, and the life of thy son Solomon.
8731                                                                                                                                                                                                                                                                                                          Go and get thee in unto king David, and say unto him, Didst not thou, my lord, O king, swear unto thine handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne? why then doth Adonijah reign?
8732                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold, while thou yet talkest there with the king, I also will come in after thee, and confirm thy words.
8733                                                                                                                                                                                                                                                                                                                                                                                                             And Bathsheba went in unto the king into the chamber: and the king was very old; and Abishag the Shunammite ministered unto the king.
8734                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Bathsheba bowed, and did obeisance unto the king. And the king said, What wouldest thou?
8735                                                                                                                                                                                                                                                                                                                                                                    And she said unto him, My lord, thou swarest by the LORD thy God unto thine handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne.
8736                                                                                                                                                                                                                                                                                                                                                                                                                                                               And now, behold, Adonijah reigneth; and now, my lord the king, thou knowest it not:
8737                                                                                                                                                                                                                                                                                                                                    And he hath slain oxen and fat cattle and sheep in abundance, and hath called all the sons of the king, and Abiathar the priest, and Joab the captain of the host: but Solomon thy servant hath he not called.
8738                                                                                                                                                                                                                                                                                                                                                                                         And thou, my lord, O king, the eyes of all Israel are upon thee, that thou shouldest tell them who shall sit on the throne of my lord the king after him.
8739                                                                                                                                                                                                                                                                                                                                                                                                        Otherwise it shall come to pass, when my lord the king shall sleep with his fathers, that I and my son Solomon shall be counted offenders.
8740                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And, lo, while she yet talked with the king, Nathan the prophet also came in.
8741                                                                                                                                                                                                                                                                                                                                                                                 And they told the king, saying, Behold Nathan the prophet. And when he was come in before the king, he bowed himself before the king with his face to the ground.
8742                                                                                                                                                                                                                                                                                                                                                                                                                                 And Nathan said, My lord, O king, hast thou said, Adonijah shall reign after me, and he shall sit upon my throne?
8743                                                                                                                                                                                                                                                                                 For he is gone down this day, and hath slain oxen and fat cattle and sheep in abundance, and hath called all the king's sons, and the captains of the host, and Abiathar the priest; and, behold, they eat and drink before him, and say, God save king Adonijah.
8744                                                                                                                                                                                                                                                                                                                                                                                                                  But me, even me thy servant, and Zadok the priest, and Benaiah the son of Jehoiada, and thy servant Solomon, hath he not called.
8745                                                                                                                                                                                                                                                                                                                                                                                                 Is this thing done by my lord the king, and thou hast not showed it unto thy servant, who should sit on the throne of my lord the king after him?
8746                                                                                                                                                                                                                                                                                                                                                                                                                           Then king David answered and said, Call me Bathsheba. And she came into the king's presence, and stood before the king.
8747                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king sware, and said, As the LORD liveth, that hath redeemed my soul out of all distress,
8748                                                                                                                                                                                                                                                                                                                                                   Even as I sware unto thee by the LORD God of Israel, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne in my stead; even so will I certainly do this day.
8749                                                                                                                                                                                                                                                                                                                                                                                                                   Then Bathsheba bowed with her face to the earth, and did reverence to the king, and said, Let my lord king David live for ever.
8750                                                                                                                                                                                                                                                                                                                                                                                                            And king David said, Call me Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada. And they came before the king.
8751                                                                                                                                                                                                                                                                                                                                                                                          The king also said unto them, Take with you the servants of your lord, and cause Solomon my son to ride upon mine own mule, and bring him down to Gihon:
8752                                                                                                                                                                                                                                                                                                                                                                                                  And let Zadok the priest and Nathan the prophet anoint him there king over Israel: and blow ye with the trumpet, and say, God save king Solomon.
8753                                                                                                                                                                                                                                                                                                                                                                      Then ye shall come up after him, that he may come and sit upon my throne; for he shall be king in my stead: and I have appointed him to be ruler over Israel and over Judah.
8754                                                                                                                                                                                                                                                                                                                                                                                                                                   And Benaiah the son of Jehoiada answered the king, and said, Amen: the LORD God of my lord the king say so too.
8755                                                                                                                                                                                                                                                                                                                                                                                                       As the LORD hath been with my lord the king, even so be he with Solomon, and make his throne greater than the throne of my lord king David.
8756                                                                                                                                                                                                                                                                                                                                    So Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the Pelethites, went down, and caused Solomon to ride upon king David's mule, and brought him to Gihon.
8757                                                                                                                                                                                                                                                                                                                                                                                  And Zadok the priest took an horn of oil out of the tabernacle, and anointed Solomon. And they blew the trumpet; and all the people said, God save king Solomon.
8758                                                                                                                                                                                                                                                                                                                                                                                                And all the people came up after him, and the people piped with pipes, and rejoiced with great joy, so that the earth rent with the sound of them.
8759                                                                                                                                                                                                                                                                                                                                     And Adonijah and all the guests that were with him heard it as they had made an end of eating. And when Joab heard the sound of the trumpet, he said, Wherefore is this noise of the city being in an uproar?
8760                                                                                                                                                                                                                                                                                                                                                                         And while he yet spake, behold, Jonathan the son of Abiathar the priest came; and Adonijah said unto him, Come in; for thou art a valiant man, and bringest good tidings.
8761                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jonathan answered and said to Adonijah, Verily our lord king David hath made Solomon king.
8762                                                                                                                                                                                                                                                                                                                                        And the king hath sent with him Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the Pelethites, and they have caused him to ride upon the king's mule:
8763                                                                                                                                                                                                                                                                                                                                                       And Zadok the priest and Nathan the prophet have anointed him king in Gihon: and they are come up from thence rejoicing, so that the city rang again. This is the noise that ye have heard.
8764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And also Solomon sitteth on the throne of the kingdom.
8765                                                                                                                                                                                                                                                                                                                              And moreover the king's servants came to bless our lord king David, saying, God make the name of Solomon better than thy name, and make his throne greater than thy throne. And the king bowed himself upon the bed.
8766                                                                                                                                                                                                                                                                                                                                                                                                      And also thus said the king, Blessed be the LORD God of Israel, which hath given one to sit on my throne this day, mine eyes even seeing it.
8767                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the guests that were with Adonijah were afraid, and rose up, and went every man his way.
8768                                                                                                                                                                                                                                                                                                                                                                                                                                           And Adonijah feared because of Solomon, and arose, and went, and caught hold on the horns of the altar.
8769                                                                                                                                                                                                                                                                                                                    And it was told Solomon, saying, Behold, Adonijah feareth king Solomon: for, lo, he hath caught hold on the horns of the altar, saying, Let king Solomon swear unto me today that he will not slay his servant with the sword.
8770                                                                                                                                                                                                                                                                                                                                                                                  And Solomon said, If he will show himself a worthy man, there shall not an hair of him fall to the earth: but if wickedness shall be found in him, he shall die.
8771                                                                                                                                                                                                                                                                                                                                                                                      So king Solomon sent, and they brought him down from the altar. And he came and bowed himself to king Solomon: and Solomon said unto him, Go to thine house.
8772                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the days of David drew nigh that he should die; and he charged Solomon his son, saying,
8773                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I go the way of all the earth: be thou strong therefore, and show thyself a man;
8774                                                                                                                                                                                                                                                                  And keep the charge of the LORD thy God, to walk in his ways, to keep his statutes, and his commandments, and his judgments, and his testimonies, as it is written in the law of Moses, that thou mayest prosper in all that thou doest, and whithersoever thou turnest thyself:
8775                                                                                                                                                                                                                                                                                     That the LORD may continue his word which he spake concerning me, saying, If thy children take heed to their way, to walk before me in truth with all their heart and with all their soul, there shall not fail thee (said he) a man on the throne of Israel.
8776                                                                                                                                                                                          Moreover thou knowest also what Joab the son of Zeruiah did to me, and what he did to the two captains of the hosts of Israel, unto Abner the son of Ner, and unto Amasa the son of Jether, whom he slew, and shed the blood of war in peace, and put the blood of war upon his girdle that was about his loins, and in his shoes that were on his feet.
8777                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do therefore according to thy wisdom, and let not his hoar head go down to the grave in peace.
8778                                                                                                                                                                                                                                                                                                                                                                    But show kindness unto the sons of Barzillai the Gileadite, and let them be of those that eat at thy table: for so they came to me when I fled because of Absalom thy brother.
8779                                                                                                                                                                                                                                                            And, behold, thou hast with thee Shimei the son of Gera, a Benjamite of Bahurim, which cursed me with a grievous curse in the day when I went to Mahanaim: but he came down to meet me at Jordan, and I sware to him by the LORD, saying, I will not put thee to death with the sword.
8780                                                                                                                                                                                                                                                                                                                                                                          Now therefore hold him not guiltless: for thou art a wise man, and knowest what thou oughtest to do unto him; but his hoar head bring thou down to the grave with blood.
8781                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So David slept with his fathers, and was buried in the city of David.
8782                                                                                                                                                                                                                                                                                                                                                                                               And the days that David reigned over Israel were forty years: seven years reigned he in Hebron, and thirty and three years reigned he in Jerusalem.
8783                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then sat Solomon upon the throne of David his father; and his kingdom was established greatly.
8784                                                                                                                                                                                                                                                                                                                                                                                                             And Adonijah the son of Haggith came to Bathsheba the mother of Solomon. And she said, Comest thou peaceably? And he said, Peaceably.
8785                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He said moreover, I have somewhat to say unto thee. And she said, Say on.
8786                                                                                                                                                                                                                                                                                                                               And he said, Thou knowest that the kingdom was mine, and that all Israel set their faces on me, that I should reign: howbeit the kingdom is turned about, and is become my brother's: for it was his from the LORD.
8787                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And now I ask one petition of thee, deny me not. And she said unto him, Say on.
8788                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Speak, I pray thee, unto Solomon the king, (for he will not say thee nay,) that he give me Abishag the Shunammite to wife.
8789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Bathsheba said, Well; I will speak for thee unto the king.
8790                                                                                                                                                                                                                                                                                           Bathsheba therefore went unto king Solomon, to speak unto him for Adonijah. And the king rose up to meet her, and bowed himself unto her, and sat down on his throne, and caused a seat to be set for the king's mother; and she sat on his right hand.
8791                                                                                                                                                                                                                                                                                                                                                                                      Then she said, I desire one small petition of thee; I pray thee, say me not nay. And the king said unto her, Ask on, my mother: for I will not say thee nay.
8792                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she said, Let Abishag the Shunammite be given to Adonijah thy brother to wife.
8793                                                                                                                                                                                                                                                                                            And king Solomon answered and said unto his mother, And why dost thou ask Abishag the Shunammite for Adonijah? ask for him the kingdom also; for he is mine elder brother; even for him, and for Abiathar the priest, and for Joab the son of Zeruiah.
8794                                                                                                                                                                                                                                                                                                                                                                                                          Then king Solomon sware by the LORD, saying, God do so to me, and more also, if Adonijah have not spoken this word against his own life.
8795                                                                                                                                                                                                                                                                                                                                                Now therefore, as the LORD liveth, which hath established me, and set me on the throne of David my father, and who hath made me an house, as he promised, Adonijah shall be put to death this day.
8796                                                                                                                                                                                                                                                                                                                                                                                                                                              And king Solomon sent by the hand of Benaiah the son of Jehoiada; and he fell upon him that he died.
8797                                                                                                                                                                                                                            And unto Abiathar the priest said the king, Get thee to Anathoth, unto thine own fields; for thou art worthy of death: but I will not at this time put thee to death, because thou barest the ark of the LORD God before David my father, and because thou hast been afflicted in all wherein my father was afflicted.
8798                                                                                                                                                                                                                                                                                                                                                                                  So Solomon thrust out Abiathar from being priest unto the LORD; that he might fulfil the word of the LORD, which he spake concerning the house of Eli in Shiloh.
8799                                                                                                                                                                                                                                                                                                                                                      Then tidings came to Joab: for Joab had turned after Adonijah, though he turned not after Absalom. And Joab fled unto the tabernacle of the LORD, and caught hold on the horns of the altar.
8800                                                                                                                                                                                                                                                                                                                                                       And it was told king Solomon that Joab was fled unto the tabernacle of the LORD; and, behold, he is by the altar. Then Solomon sent Benaiah the son of Jehoiada, saying, Go, fall upon him.
8801                                                                                                                                                                                                                                                                                                              And Benaiah came to the tabernacle of the LORD, and said unto him, Thus saith the king, Come forth. And he said, Nay; but I will die here. And Benaiah brought the king word again, saying, Thus said Joab, and thus he answered me.
8802                                                                                                                                                                                                                                                                                                                                                        And the king said unto him, Do as he hath said, and fall upon him, and bury him; that thou mayest take away the innocent blood, which Joab shed, from me, and from the house of my father.
8803                                                                                                                                                                                                                                        And the LORD shall return his blood upon his own head, who fell upon two men more righteous and better than he, and slew them with the sword, my father David not knowing thereof, to wit, Abner the son of Ner, captain of the host of Israel, and Amasa the son of Jether, captain of the host of Judah.
8804                                                                                                                                                                                                                                                                                                                        Their blood shall therefore return upon the head of Joab, and upon the head of his seed for ever: but upon David, and upon his seed, and upon his house, and upon his throne, shall there be peace for ever from the LORD.
8805                                                                                                                                                                                                                                                                                                                                                                                                                    So Benaiah the son of Jehoiada went up, and fell upon him, and slew him: and he was buried in his own house in the wilderness.
8806                                                                                                                                                                                                                                                                                                                                                                                                            And the king put Benaiah the son of Jehoiada in his room over the host: and Zadok the priest did the king put in the room of Abiathar.
8807                                                                                                                                                                                                                                                                                                                                                                                               And the king sent and called for Shimei, and said unto him, Build thee an house in Jerusalem, and dwell there, and go not forth thence any whither.
8808                                                                                                                                                                                                                                                                                                                                                               For it shall be, that on the day thou goest out, and passest over the brook Kidron, thou shalt know for certain that thou shalt surely die: thy blood shall be upon thine own head.
8809                                                                                                                                                                                                                                                                                                                                                                                                And Shimei said unto the king, The saying is good: as my lord the king hath said, so will thy servant do. And Shimei dwelt in Jerusalem many days.
8810                                                                                                                                                                                                                                                                                                                                                And it came to pass at the end of three years, that two of the servants of Shimei ran away unto Achish son of Maachah king of Gath. And they told Shimei, saying, Behold, thy servants be in Gath.
8811                                                                                                                                                                                                                                                                                                                                                                                                      And Shimei arose, and saddled his ass, and went to Gath to Achish to seek his servants: and Shimei went, and brought his servants from Gath.
8812                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was told Solomon that Shimei had gone from Jerusalem to Gath, and was come again.
8813                                                                                                                                                                                                                                    And the king sent and called for Shimei, and said unto him, Did I not make thee to swear by the LORD, and protested unto thee, saying, Know for a certain, on the day thou goest out, and walkest abroad any whither, that thou shalt surely die? and thou saidst unto me, The word that I have heard is good.
8814                                                                                                                                                                                                                                                                                                                                                                                                                                              Why then hast thou not kept the oath of the LORD, and the commandment that I have charged thee with?
8815                                                                                                                                                                                                                                                                                                                                          The king said moreover to Shimei, Thou knowest all the wickedness which thine heart is privy to, that thou didst to David my father: therefore the LORD shall return thy wickedness upon thine own head;
8816                                                                                                                                                                                                                                                                                                                                                                                                                                         And king Solomon shall be blessed, and the throne of David shall be established before the LORD for ever.
8817                                                                                                                                                                                                                                                                                                                                                                                       So the king commanded Benaiah the son of Jehoiada; which went out, and fell upon him, that he died. And the kingdom was established in the hand of Solomon.
8818                                                                                                                                                                                                                                                                                                  And Solomon made affinity with Pharaoh king of Egypt, and took Pharaoh's daughter, and brought her into the city of David, until he had made an end of building his own house, and the house of the LORD, and the wall of Jerusalem round about.
8819                                                                                                                                                                                                                                                                                                                                                                                                                          Only the people sacrificed in high places, because there was no house built unto the name of the LORD, until those days.
8820                                                                                                                                                                                                                                                                                                                                                                                                                     And Solomon loved the LORD, walking in the statutes of David his father: only he sacrificed and burnt incense in high places.
8821                                                                                                                                                                                                                                                                                                                                                                                                  And the king went to Gibeon to sacrifice there; for that was the great high place: a thousand burnt offerings did Solomon offer upon that altar.
8822                                                                                                                                                                                                                                                                                                                                                                                                                                             In Gibeon the LORD appeared to Solomon in a dream by night: and God said, Ask what I shall give thee.
8823                                                                                                                                                                                                                                And Solomon said, Thou hast showed unto thy servant David my father great mercy, according as he walked before thee in truth, and in righteousness, and in uprightness of heart with thee; and thou hast kept for him this great kindness, that thou hast given him a son to sit on his throne, as it is this day.
8824                                                                                                                                                                                                                                                                                                                                                                                             And now, O LORD my God, thou hast made thy servant king instead of David my father: and I am but a little child: I know not how to go out or come in.
8825                                                                                                                                                                                                                                                                                                                                                                                                          And thy servant is in the midst of thy people which thou hast chosen, a great people, that cannot be numbered nor counted for multitude.
8826                                                                                                                                                                                                                                                                                                                                                                              Give therefore thy servant an understanding heart to judge thy people, that I may discern between good and bad: for who is able to judge this thy so great a people?
8827                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the speech pleased the LORD, that Solomon had asked this thing.
8828                                                                                                                                                                                                                                                                                               And God said unto him, Because thou hast asked this thing, and hast not asked for thyself long life; neither hast asked riches for thyself, nor hast asked the life of thine enemies; but hast asked for thyself understanding to discern judgment;
8829                                                                                                                                                                                                                                                                                                                                             Behold, I have done according to thy words: lo, I have given thee a wise and an understanding heart; so that there was none like thee before thee, neither after thee shall any arise like unto thee.
8830                                                                                                                                                                                                                                                                                                                                                                                    And I have also given thee that which thou hast not asked, both riches, and honor: so that there shall not be any among the kings like unto thee all thy days.
8831                                                                                                                                                                                                                                                                                                                                                                                                           And if thou wilt walk in my ways, to keep my statutes and my commandments, as thy father David did walk, then I will lengthen thy days.
8832                                                                                                                                                                                                                                                                                                                And Solomon awoke; and, behold, it was a dream. And he came to Jerusalem, and stood before the ark of the covenant of the LORD, and offered up burnt offerings, and offered peace offerings, and made a feast to all his servants.
8833                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then came there two women, that were harlots, unto the king, and stood before him.
8834                                                                                                                                                                                                                                                                                                                                                                                                                     And the one woman said, O my lord, I and this woman dwell in one house; and I was delivered of a child with her in the house.
8835                                                                                                                                                                                                                                                                                                                                                     And it came to pass the third day after that I was delivered, that this woman was delivered also: and we were together; there was no stranger with us in the house, save we two in the house.
8836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And this woman's child died in the night; because she overlaid it.
8837                                                                                                                                                                                                                                                                                                                                                                                             And she arose at midnight, and took my son from beside me, while thine handmaid slept, and laid it in her bosom, and laid her dead child in my bosom.
8838                                                                                                                                                                                                                                                                                                                                                                              And when I rose in the morning to give my child suck, behold, it was dead: but when I had considered it in the morning, behold, it was not my son, which I did bear.
8839                                                                                                                                                                                                                                                                                                                                                          And the other woman said, Nay; but the living is my son, and the dead is thy son. And this said, No; but the dead is thy son, and the living is my son. Thus they spake before the king.
8840                                                                                                                                                                                                                                                                                                                                                                              Then said the king, The one saith, This is my son that liveth, and thy son is the dead: and the other saith, Nay; but thy son is the dead, and my son is the living.
8841                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king said, Bring me a sword. And they brought a sword before the king.
8842                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king said, Divide the living child in two, and give half to the one, and half to the other.
8843                                                                                                                                                                                                                                                                                              Then spake the woman whose the living child was unto the king, for her bowels yearned upon her son, and she said, O my lord, give her the living child, and in no wise slay it. But the other said, Let it be neither mine nor thine, but divide it.
8844                                                                                                                                                                                                                                                                                                                                                                                                                                    Then the king answered and said, Give her the living child, and in no wise slay it: she is the mother thereof.
8845                                                                                                                                                                                                                                                                                                                                                                                         And all Israel heard of the judgment which the king had judged; and they feared the king: for they saw that the wisdom of God was in him, to do judgment.
8846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So king Solomon was king over all Israel.
8847                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And these were the princes which he had; Azariah the son of Zadok the priest,
8848                                                                                                                                                                                                                                                                                                                                                                                                                                                    Elihoreph and Ahiah, the sons of Shisha, scribes; Jehoshaphat the son of Ahilud, the recorder.
8849                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Benaiah the son of Jehoiada was over the host: and Zadok and Abiathar were the priests:
8850                                                                                                                                                                                                                                                                                                                                                                                                                    And Azariah the son of Nathan was over the officers: and Zabud the son of Nathan was principal officer, and the king's friend:
8851                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Ahishar was over the household: and Adoniram the son of Abda was over the tribute.
8852                                                                                                                                                                                                                                                                                                                                                                                             And Solomon had twelve officers over all Israel, which provided victuals for the king and his household: each man his month in a year made provision.
8853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And these are their names: The son of Hur, in mount Ephraim:
8854                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The son of Dekar, in Makaz, and in Shaalbim, and Bethshemesh, and Elonbethhanan:
8855                                                                                                                                                                                                                                                                                                                                                                                                                                                                The son of Hesed, in Aruboth; to him pertained Sochoh, and all the land of Hepher:
8856                                                                                                                                                                                                                                                                                                                                                                                                                                                 The son of Abinadab, in all the region of Dor; which had Taphath the daughter of Solomon to wife:
8857                                                                                                                                                                                                                                                                                                                                                Baana the son of Ahilud; to him pertained Taanach and Megiddo, and all Bethshean, which is by Zartanah beneath Jezreel, from Bethshean to Abelmeholah, even unto the place that is beyond Jokneam:
8858                                                                                                                                                                                                                                                                                                                The son of Geber, in Ramothgilead; to him pertained the towns of Jair the son of Manasseh, which are in Gilead; to him also pertained the region of Argob, which is in Bashan, threescore great cities with walls and brazen bars:
8859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ahinadab the son of Iddo had Mahanaim:
8860                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ahimaaz was in Naphtali; he also took Basmath the daughter of Solomon to wife:
8861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Baanah the son of Hushai was in Asher and in Aloth:
8862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Jehoshaphat the son of Paruah, in Issachar:
8863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shimei the son of Elah, in Benjamin:
8864                                                                                                                                                                                                                                                                                                                                                                     Geber the son of Uri was in the country of Gilead, in the country of Sihon king of the Amorites, and of Og king of Bashan; and he was the only officer which was in the land.
8865                                                                                                                                                                                                                                                                                                                                                                                                                                  Judah and Israel were many, as the sand which is by the sea in multitude, eating and drinking, and making merry.
8866                                                                                                                                                                                                                                                                                                                                                          And Solomon reigned over all kingdoms from the river unto the land of the Philistines, and unto the border of Egypt: they brought presents, and served Solomon all the days of his life.
8867                                                                                                                                                                                                                                                                                                                                                                                                                                           And Solomon's provision for one day was thirty measures of fine flour, and threescore measures of meal,
8868                                                                                                                                                                                                                                                                                                                                                                                                             Ten fat oxen, and twenty oxen out of the pastures, and an hundred sheep, beside harts, and roebucks, and fallowdeer, and fatted fowl.
8869                                                                                                                                                                                                                                                                                                                                                             For he had dominion over all the region on this side the river, from Tiphsah even to Azzah, over all the kings on this side the river: and he had peace on all sides round about him.
8870                                                                                                                                                                                                                                                                                                                                                                                                          And Judah and Israel dwelt safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon.
8871                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen.
8872                                                                                                                                                                                                                                                                                                                                                                                               And those officers provided victual for king Solomon, and for all that came unto king Solomon's table, every man in his month: they lacked nothing.
8873                                                                                                                                                                                                                                                                                                                                                                                                      Barley also and straw for the horses and dromedaries brought they unto the place where the officers were, every man according to his charge.
8874                                                                                                                                                                                                                                                                                                                                                                                                                  And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.
8875                                                                                                                                                                                                                                                                                                                                                                                                                                    And Solomon's wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.
8876                                                                                                                                                                                                                                                                                                                                                                                        For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.
8877                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he spake three thousand proverbs: and his songs were a thousand and five.
8878                                                                                                                                                                                                                                                                                                                                                   And he spake of trees, from the cedar tree that is in Lebanon even unto the hyssop that springeth out of the wall: he spake also of beasts, and of fowl, and of creeping things, and of fishes.
8879                                                                                                                                                                                                                                                                                                                                                                                                                           And there came of all people to hear the wisdom of Solomon, from all kings of the earth, which had heard of his wisdom.
8880                                                                                                                                                                                                                                                                                                                                                                           And Hiram king of Tyre sent his servants unto Solomon; for he had heard that they had anointed him king in the room of his father: for Hiram was ever a lover of David.
8881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Solomon sent to Hiram, saying,
8882                                                                                                                                                                                                                                                                                                                                            Thou knowest how that David my father could not build an house unto the name of the LORD his God for the wars which were about him on every side, until the LORD put them under the soles of his feet.
8883                                                                                                                                                                                                                                                                                                                                                                                                                                  But now the LORD my God hath given me rest on every side, so that there is neither adversary nor evil occurrent.
8884                                                                                                                                                                                                                                                                                                                            And, behold, I purpose to build an house unto the name of the LORD my God, as the LORD spake unto David my father, saying, Thy son, whom I will set upon thy throne in thy room, he shall build an house unto my name.
8885                                                                                                                                                                                                                               Now therefore command thou that they hew me cedar trees out of Lebanon; and my servants shall be with thy servants: and unto thee will I give hire for thy servants according to all that thou shalt appoint: for thou knowest that there is not among us any that can skill to hew timber like unto the Sidonians.
8886                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when Hiram heard the words of Solomon, that he rejoiced greatly, and said, Blessed be the LORD this day, which hath given unto David a wise son over this great people.
8887                                                                                                                                                                                                                                                                                                                                                              And Hiram sent to Solomon, saying, I have considered the things which thou sentest to me for: and I will do all thy desire concerning timber of cedar, and concerning timber of fir.
8888                                                                                                                                                                                                                                                    My servants shall bring them down from Lebanon unto the sea: and I will convey them by sea in floats unto the place that thou shalt appoint me, and will cause them to be discharged there, and thou shalt receive them: and thou shalt accomplish my desire, in giving food for my household.
8889                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Hiram gave Solomon cedar trees and fir trees according to all his desire.
8890                                                                                                                                                                                                                                                                                                                                                                                     And Solomon gave Hiram twenty thousand measures of wheat for food to his household, and twenty measures of pure oil: thus gave Solomon to Hiram year by year.
8891                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD gave Solomon wisdom, as he promised him: and there was peace between Hiram and Solomon; and they two made a league together.
8892                                                                                                                                                                                                                                                                                                                                                                                                                                                           And king Solomon raised a levy out of all Israel; and the levy was thirty thousand men.
8893                                                                                                                                                                                                                                                                                                                                                                                               And he sent them to Lebanon, ten thousand a month by courses: a month they were in Lebanon, and two months at home: and Adoniram was over the levy.
8894                                                                                                                                                                                                                                                                                                                                                                                                                                    And Solomon had threescore and ten thousand that bare burdens, and fourscore thousand hewers in the mountains;
8895                                                                                                                                                                                                                                                                                                                                                                                          Beside the chief of Solomon's officers which were over the work, three thousand and three hundred, which ruled over the people that wrought in the work.
8896                                                                                                                                                                                                                                                                                                                                                                                                                       And the king commanded, and they brought great stones, costly stones, and hewed stones, to lay the foundation of the house.
8897                                                                                                                                                                                                                                                                                                                                                                                                           And Solomon's builders and Hiram's builders did hew them, and the stonesquarers: so they prepared timber and stones to build the house.
8898                                                                                                                                                                                                                                                                         And it came to pass in the four hundred and eightieth year after the children of Israel were come out of the land of Egypt, in the fourth year of Solomon's reign over Israel, in the month Zif, which is the second month, that he began to build the house of the LORD.
8899                                                                                                                                                                                                                                                                                                                                                                       And the house which king Solomon built for the LORD, the length thereof was threescore cubits, and the breadth thereof twenty cubits, and the height thereof thirty cubits.
8900                                                                                                                                                                                                                                                                                                                                                               And the porch before the temple of the house, twenty cubits was the length thereof, according to the breadth of the house; and ten cubits was the breadth thereof before the house.
8901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And for the house he made windows of narrow lights.
8902                                                                                                                                                                                                                                                                                                                                                              And against the wall of the house he built chambers round about, against the walls of the house round about, both of the temple and of the oracle: and he made chambers round about:
8903                                                                                                                                                                                                                                                                                The nethermost chamber was five cubits broad, and the middle was six cubits broad, and the third was seven cubits broad: for without in the wall of the house he made narrowed rests round about, that the beams should not be fastened in the walls of the house.
8904                                                                                                                                                                                                                                                                                                                                  And the house, when it was in building, was built of stone made ready before it was brought thither: so that there was neither hammer nor axe nor any tool of iron heard in the house, while it was in building.
8905                                                                                                                                                                                                                                                                                                                                                                           The door for the middle chamber was in the right side of the house: and they went up with winding stairs into the middle chamber, and out of the middle into the third.
8906                                                                                                                                                                                                                                                                                                                                                                                                                                                     So he built the house, and finished it; and covered the house with beams and boards of cedar.
8907                                                                                                                                                                                                                                                                                                                                                                                                                            And then he built chambers against all the house, five cubits high: and they rested on the house with timber of cedar.
8908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the word of the LORD came to Solomon, saying,
8909                                                                                                                                                                                                                                                                                                           Concerning this house which thou art in building, if thou wilt walk in my statutes, and execute my judgments, and keep all my commandments to walk in them; then will I perform my word with thee, which I spake unto David thy father:
8910                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will dwell among the children of Israel, and will not forsake my people Israel.
8911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Solomon built the house, and finished it.
8912                                                                                                                                                                                                                                                                                                                   And he built the walls of the house within with boards of cedar, both the floor of the house, and the walls of the ceiling: and he covered them on the inside with wood, and covered the floor of the house with planks of fir.
8913                                                                                                                                                                                                                                                                                                                                                     And he built twenty cubits on the sides of the house, both the floor and the walls with boards of cedar: he even built them for it within, even for the oracle, even for the most holy place.
8914                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the house, that is, the temple before it, was forty cubits long.
8915                                                                                                                                                                                                                                                                                                                                                                                                                                 And the cedar of the house within was carved with knops and open flowers: all was cedar; there was no stone seen.
8916                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the oracle he prepared in the house within, to set there the ark of the covenant of the LORD.
8917                                                                                                                                                                                                                                                                                                                                And the oracle in the forepart was twenty cubits in length, and twenty cubits in breadth, and twenty cubits in the height thereof: and he overlaid it with pure gold; and so covered the altar which was of cedar.
8918                                                                                                                                                                                                                                                                                                                                                                                               So Solomon overlaid the house within with pure gold: and he made a partition by the chains of gold before the oracle; and he overlaid it with gold.
8919                                                                                                                                                                                                                                                                                                                                                                                                And the whole house he overlaid with gold, until he had finished all the house: also the whole altar that was by the oracle he overlaid with gold.
8920                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And within the oracle he made two cherubim of olive tree, each ten cubits high.
8921                                                                                                                                                                                                                                                                                                                                                       And five cubits was the one wing of the cherub, and five cubits the other wing of the cherub: from the uttermost part of the one wing unto the uttermost part of the other were ten cubits.
8922                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the other cherub was ten cubits: both the cherubim were of one measure and one size.
8923                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The height of the one cherub was ten cubits, and so was it of the other cherub.
8924                                                                                                                                                                                                                                                                     And he set the cherubim within the inner house: and they stretched forth the wings of the cherubim, so that the wing of the one touched the one wall, and the wing of the other cherub touched the other wall; and their wings touched one another in the midst of the house.
8925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he overlaid the cherubim with gold.
8926                                                                                                                                                                                                                                                                                                                                                                                                         And he carved all the walls of the house round about with carved figures of cherubim and palm trees and open flowers, within and without.
8927                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the floors of the house he overlaid with gold, within and without.
8928                                                                                                                                                                                                                                                                                                                                                                                                                          And for the entering of the oracle he made doors of olive tree: the lintel and side posts were a fifth part of the wall.
8929                                                                                                                                                                                                                                                                                                                                     The two doors also were of olive tree; and he carved upon them carvings of cherubim and palm trees and open flowers, and overlaid them with gold, and spread gold upon the cherubim, and upon the palm trees.
8930                                                                                                                                                                                                                                                                                                                                                                                                                                                        So also made he for the door of the temple posts of olive tree, a fourth part of the wall.
8931                                                                                                                                                                                                                                                                                                                                                                                                               And the two doors were of fir tree: the two leaves of the one door were folding, and the two leaves of the other door were folding.
8932                                                                                                                                                                                                                                                                                                                                                                                                                           And he carved thereon cherubim and palm trees and open flowers: and covered them with gold fitted upon the carved work.
8933                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he built the inner court with three rows of hewed stone, and a row of cedar beams.
8934                                                                                                                                                                                                                                                                                                                                                                                                                                                            In the fourth year was the foundation of the house of the LORD laid, in the month Zif:
8935                                                                                                                                                                                                                                                                                                                                     And in the eleventh year, in the month Bul, which is the eighth month, was the house finished throughout all the parts thereof, and according to all the fashion of it. So was he seven years in building it.
8936                                                                                                                                                                                                                                                                                                                                                                                                                                                             But Solomon was building his own house thirteen years, and he finished all his house.
8937                                                                                                                                                                                                                                                                                                       He built also the house of the forest of Lebanon; the length thereof was an hundred cubits, and the breadth thereof fifty cubits, and the height thereof thirty cubits, upon four rows of cedar pillars, with cedar beams upon the pillars.
8938                                                                                                                                                                                                                                                                                                                                                                                                                                             And it was covered with cedar above upon the beams, that lay on forty five pillars, fifteen in a row.
8939                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there were windows in three rows, and light was against light in three ranks.
8940                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the doors and posts were square, with the windows: and light was against light in three ranks.
8941                                                                                                                                                                                                                                                                                                                                             And he made a porch of pillars; the length thereof was fifty cubits, and the breadth thereof thirty cubits: and the porch was before them: and the other pillars and the thick beam were before them.
8942                                                                                                                                                                                                                                                                                                                                                                                      Then he made a porch for the throne where he might judge, even the porch of judgment: and it was covered with cedar from one side of the floor to the other.
8943                                                                                                                                                                                                                                                                                                                                                  And his house where he dwelt had another court within the porch, which was of the like work. Solomon made also an house for Pharaoh's daughter, whom he had taken to wife, like unto this porch.
8944                                                                                                                                                                                                                                                                                                                                          All these were of costly stones, according to the measures of hewed stones, sawed with saws, within and without, even from the foundation unto the coping, and so on the outside toward the great court.
8945                                                                                                                                                                                                                                                                                                                                                                                                                                     And the foundation was of costly stones, even great stones, stones of ten cubits, and stones of eight cubits.
8946                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And above were costly stones, after the measures of hewed stones, and cedars.
8947                                                                                                                                                                                                                                                                                                                                                                 And the great court round about was with three rows of hewed stones, and a row of cedar beams, both for the inner court of the house of the LORD, and for the porch of the house.
8948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And king Solomon sent and fetched Hiram out of Tyre.
8949                                                                                                                                                                                                                                                                                              He was a widow's son of the tribe of Naphtali, and his father was a man of Tyre, a worker in brass: and he was filled with wisdom, and understanding, and cunning to work all works in brass. And he came to king Solomon, and wrought all his work.
8950                                                                                                                                                                                                                                                                                                                                                                                                                   For he cast two pillars of brass, of eighteen cubits high apiece: and a line of twelve cubits did compass either of them about.
8951                                                                                                                                                                                                                                                                                                                                                             And he made two chapiters of molten brass, to set upon the tops of the pillars: the height of the one chapiter was five cubits, and the height of the other chapiter was five cubits:
8952                                                                                                                                                                                                                                                                                                                                                                      And nets of checker work, and wreaths of chain work, for the chapiters which were upon the top of the pillars; seven for the one chapiter, and seven for the other chapiter.
8953                                                                                                                                                                                                                                                                                                                                                                   And he made the pillars, and two rows round about upon the one network, to cover the chapiters that were upon the top, with pomegranates: and so did he for the other chapiter.
8954                                                                                                                                                                                                                                                                                                                                                                                                                                              And the chapiters that were upon the top of the pillars were of lily work in the porch, four cubits.
8955                                                                                                                                                                                                                                                                                                                                           And the chapiters upon the two pillars had pomegranates also above, over against the belly which was by the network: and the pomegranates were two hundred in rows round about upon the other chapiter.
8956                                                                                                                                                                                                                                                                                                                                                        And he set up the pillars in the porch of the temple: and he set up the right pillar, and called the name thereof Jachin: and he set up the left pillar, and called the name thereof Boaz.
8957                                                                                                                                                                                                                                                                                                                                                                                                                                                           And upon the top of the pillars was lily work: so was the work of the pillars finished.
8958                                                                                                                                                                                                                                                                                                                                                              And he made a molten sea, ten cubits from the one brim to the other: it was round all about, and his height was five cubits: and a line of thirty cubits did compass it round about.
8959                                                                                                                                                                                                                                                                                                                                                                           And under the brim of it round about there were knops compassing it, ten in a cubit, compassing the sea round about: the knops were cast in two rows, when it was cast.
8960                                                                                                                                                                                                                                                                                                 It stood upon twelve oxen, three looking toward the north, and three looking toward the west, and three looking toward the south, and three looking toward the east: and the sea was set above upon them, and all their hinder parts were inward.
8961                                                                                                                                                                                                                                                                                                                                                                                               And it was an hand breadth thick, and the brim thereof was wrought like the brim of a cup, with flowers of lilies: it contained two thousand baths.
8962                                                                                                                                                                                                                                                                                                                                                                                                   And he made ten bases of brass; four cubits was the length of one base, and four cubits the breadth thereof, and three cubits the height of it.
8963                                                                                                                                                                                                                                                                                                                                                                                                                                          And the work of the bases was on this manner: they had borders, and the borders were between the ledges:
8964                                                                                                                                                                                                                                                                                                                                              And on the borders that were between the ledges were lions, oxen, and cherubim: and upon the ledges there was a base above: and beneath the lions and oxen were certain additions made of thin work.
8965                                                                                                                                                                                                                                                                                                                                                               And every base had four brazen wheels, and plates of brass: and the four corners thereof had undersetters: under the laver were undersetters molten, at the side of every addition.
8966                                                                                                                                                                                                                                                                                                            And the mouth of it within the chapiter and above was a cubit: but the mouth thereof was round after the work of the base, a cubit and an half: and also upon the mouth of it were gravings with their borders, foursquare, not round.
8967                                                                                                                                                                                                                                                                                                                                                                                          And under the borders were four wheels; and the axletrees of the wheels were joined to the base: and the height of a wheel was a cubit and half a cubit.
8968                                                                                                                                                                                                                                                                                                                                                                                          And the work of the wheels was like the work of a chariot wheel: their axletrees, and their naves, and their felloes, and their spokes, were all molten.
8969                                                                                                                                                                                                                                                                                                                                                                                                                              And there were four undersetters to the four corners of one base: and the undersetters were of the very base itself.
8970                                                                                                                                                                                                                                                                                                                                                                                And in the top of the base was there a round compass of half a cubit high: and on the top of the base the ledges thereof and the borders thereof were of the same.
8971                                                                                                                                                                                                                                                                                                                                                              For on the plates of the ledges thereof, and on the borders thereof, he graved cherubim, lions, and palm trees, according to the proportion of every one, and additions round about.
8972                                                                                                                                                                                                                                                                                                                                                                                                                                                  After this manner he made the ten bases: all of them had one casting, one measure, and one size.
8973                                                                                                                                                                                                                                                                                                                                                                                                Then made he ten lavers of brass: one laver contained forty baths: and every laver was four cubits: and upon every one of the ten bases one laver.
8974                                                                                                                                                                                                                                                                                                                                                                  And he put five bases on the right side of the house, and five on the left side of the house: and he set the sea on the right side of the house eastward over against the south.
8975                                                                                                                                                                                                                                                                                                                                                                                       And Hiram made the lavers, and the shovels, and the basins. So Hiram made an end of doing all the work that he made king Solomon for the house of the LORD:
8976                                                                                                                                                                                                                                                                                                                                                The two pillars, and the two bowls of the chapiters that were on the top of the two pillars; and the two networks, to cover the two bowls of the chapiters which were upon the top of the pillars;
8977                                                                                                                                                                                                                                                                                                                                                                            And four hundred pomegranates for the two networks, even two rows of pomegranates for one network, to cover the two bowls of the chapiters that were upon the pillars;
8978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the ten bases, and ten lavers on the bases;
8979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And one sea, and twelve oxen under the sea;
8980                                                                                                                                                                                                                                                                                                                                                                                           And the pots, and the shovels, and the basins: and all these vessels, which Hiram made to king Solomon for the house of the LORD, were of bright brass.
8981                                                                                                                                                                                                                                                                                                                                                                                                                                                    In the plain of Jordan did the king cast them, in the clay ground between Succoth and Zarthan.
8982                                                                                                                                                                                                                                                                                                                                                                                                                      And Solomon left all the vessels unweighed, because they were exceeding many: neither was the weight of the brass found out.
8983                                                                                                                                                                                                                                                                                                                                                                                                And Solomon made all the vessels that pertained unto the house of the LORD: the altar of gold, and the table of gold, whereupon the shewbread was,
8984                                                                                                                                                                                                                                                                                                                                                                                       And the candlesticks of pure gold, five on the right side, and five on the left, before the oracle, with the flowers, and the lamps, and the tongs of gold,
8985                                                                                                                                                                                                                                                                                                         And the bowls, and the snuffers, and the basins, and the spoons, and the censers of pure gold; and the hinges of gold, both for the doors of the inner house, the most holy place, and for the doors of the house, to wit, of the temple.
8986                                                                                                                                                                                                                                                                                      So was ended all the work that king Solomon made for the house of the LORD. And Solomon brought in the things which David his father had dedicated; even the silver, and the gold, and the vessels, did he put among the treasures of the house of the LORD.
8987                                                                                                                                                                                                                                                                           Then Solomon assembled the elders of Israel, and all the heads of the tribes, the chief of the fathers of the children of Israel, unto king Solomon in Jerusalem, that they might bring up the ark of the covenant of the LORD out of the city of David, which is Zion.
8988                                                                                                                                                                                                                                                                                                                                                                                                                   And all the men of Israel assembled themselves unto king Solomon at the feast in the month Ethanim, which is the seventh month.
8989                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And all the elders of Israel came, and the priests took up the ark.
8990                                                                                                                                                                                                                                                                                                                                                       And they brought up the ark of the LORD, and the tabernacle of the congregation, and all the holy vessels that were in the tabernacle, even those did the priests and the Levites bring up.
8991                                                                                                                                                                                                                                                                                                                                                  And king Solomon, and all the congregation of Israel, that were assembled unto him, were with him before the ark, sacrificing sheep and oxen, that could not be told nor numbered for multitude.
8992                                                                                                                                                                                                                                                                                                                                                                        And the priests brought in the ark of the covenant of the LORD unto his place, into the oracle of the house, to the most holy place, even under the wings of the cherubim.
8993                                                                                                                                                                                                                                                                                                                                                                                                           For the cherubim spread forth their two wings over the place of the ark, and the cherubim covered the ark and the staves thereof above.
8994                                                                                                                                                                                                                                                                                                                                                                    And they drew out the staves, that the ends of the staves were seen out in the holy place before the oracle, and they were not seen without: and there they are unto this day.
8995                                                                                                                                                                                                                                                                                                                                                    There was nothing in the ark save the two tables of stone, which Moses put there at Horeb, when the LORD made a covenant with the children of Israel, when they came out of the land of Egypt.
8996                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when the priests were come out of the holy place, that the cloud filled the house of the LORD,
8997                                                                                                                                                                                                                                                                                                                                                                                                                 So that the priests could not stand to minister because of the cloud: for the glory of the LORD had filled the house of the LORD.
8998                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then spake Solomon, The LORD said that he would dwell in the thick darkness.
8999                                                                                                                                                                                                                                                                                                                                                                                                                                                     I have surely built thee an house to dwell in, a settled place for thee to abide in for ever.
9000                                                                                                                                                                                                                                                                                                                                                                                                                       And the king turned his face about, and blessed all the congregation of Israel: (and all the congregation of Israel stood;)
9001                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Blessed be the LORD God of Israel, which spake with his mouth unto David my father, and hath with his hand fulfilled it, saying,
9002                                                                                                                                                                                                                                                                                                                                Since the day that I brought forth my people Israel out of Egypt, I chose no city out of all the tribes of Israel to build an house, that my name might be therein; but I chose David to be over my people Israel.
9003                                                                                                                                                                                                                                                                                                                                                                                                                                              And it was in the heart of David my father to build an house for the name of the LORD God of Israel.
9004                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto David my father, Whereas it was in thine heart to build an house unto my name, thou didst well that it was in thine heart.
9005                                                                                                                                                                                                                                                                                                                                                                                                           Nevertheless thou shalt not build the house; but thy son that shall come forth out of thy loins, he shall build the house unto my name.
9006                                                                                                                                                                                                                                                                                                                      And the LORD hath performed his word that he spake, and I am risen up in the room of David my father, and sit on the throne of Israel, as the LORD promised, and have built an house for the name of the LORD God of Israel.
9007                                                                                                                                                                                                                                                                                                                                                                                     And I have set there a place for the ark, wherein is the covenant of the LORD, which he made with our fathers, when he brought them out of the land of Egypt.
9008                                                                                                                                                                                                                                                                                                                                                                                                       And Solomon stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands toward heaven:
9009                                                                                                                                                                                                                                                                                                                                                    And he said, LORD God of Israel, there is no God like thee, in heaven above, or on earth beneath, who keepest covenant and mercy with thy servants that walk before thee with all their heart:
9010                                                                                                                                                                                                                                                                                                                                                                              Who hast kept with thy servant David my father that thou promisedst him: thou spakest also with thy mouth, and hast fulfilled it with thine hand, as it is this day.
9011                                                                                                                                                                                                                                                       Therefore now, LORD God of Israel, keep with thy servant David my father that thou promisedst him, saying, There shall not fail thee a man in my sight to sit on the throne of Israel; so that thy children take heed to their way, that they walk before me as thou hast walked before me.
9012                                                                                                                                                                                                                                                                                                                                                                                                                            And now, O God of Israel, let thy word, I pray thee, be verified, which thou spakest unto thy servant David my father.
9013                                                                                                                                                                                                                                                                                                                                                                                               But will God indeed dwell on the earth? behold, the heaven and heaven of heavens cannot contain thee; how much less this house that I have builded?
9014                                                                                                                                                                                                                                                                                                                                                            Yet have thou respect unto the prayer of thy servant, and to his supplication, O LORD my God, to hearken unto the cry and to the prayer, which thy servant prayeth before thee to day:
9015                                                                                                                                                                                                                                                                                                                      That thine eyes may be open toward this house night and day, even toward the place of which thou hast said, My name shall be there: that thou mayest hearken unto the prayer which thy servant shall make toward this place.
9016                                                                                                                                                                                                                                                                                                                                                And hearken thou to the supplication of thy servant, and of thy people Israel, when they shall pray toward this place: and hear thou in heaven thy dwelling place: and when thou hearest, forgive.
9017                                                                                                                                                                                                                                                                                                                                                                                                 If any man trespass against his neighbor, and an oath be laid upon him to cause him to swear, and the oath come before thine altar in this house:
9018                                                                                                                                                                                                                                                                                                                                                        Then hear thou in heaven, and do, and judge thy servants, condemning the wicked, to bring his way upon his head; and justifying the righteous, to give him according to his righteousness.
9019                                                                                                                                                                                                                                                                                                                                      When thy people Israel be smitten down before the enemy, because they have sinned against thee, and shall turn again to thee, and confess thy name, and pray, and make supplication unto thee in this house:
9020                                                                                                                                                                                                                                                                                                                                                                                                      Then hear thou in heaven, and forgive the sin of thy people Israel, and bring them again unto the land which thou gavest unto their fathers.
9021                                                                                                                                                                                                                                                                                                                                                    When heaven is shut up, and there is no rain, because they have sinned against thee; if they pray toward this place, and confess thy name, and turn from their sin, when thou afflictest them:
9022                                                                                                                                                                                                                                                                                                         Then hear thou in heaven, and forgive the sin of thy servants, and of thy people Israel, that thou teach them the good way wherein they should walk, and give rain upon thy land, which thou hast given to thy people for an inheritance.
9023                                                                                                                                                                                                                                                                                                                           If there be in the land famine, if there be pestilence, blasting, mildew, locust, or if there be caterpillar; if their enemy besiege them in the land of their cities; whatsoever plague, whatsoever sickness there be;
9024                                                                                                                                                                                                                                                                                                                                                        What prayer and supplication soever be made by any man, or by all thy people Israel, which shall know every man the plague of his own heart, and spread forth his hands toward this house:
9025                                                                                                                                                                                                                                                                                                                               Then hear thou in heaven thy dwelling place, and forgive, and do, and give to every man according to his ways, whose heart thou knowest; (for thou, even thou only, knowest the hearts of all the children of men;)
9026                                                                                                                                                                                                                                                                                                                                                                                                                                               That they may fear thee all the days that they live in the land which thou gavest unto our fathers.
9027                                                                                                                                                                                                                                                                                                                                                                                                                            Moreover concerning a stranger, that is not of thy people Israel, but cometh out of a far country for thy name's sake;
9028                                                                                                                                                                                                                                                                                                                                                                                                     (For they shall hear of thy great name, and of thy strong hand, and of thy stretched out arm;) when he shall come and pray toward this house;
9029                                                                                                                                                                                                                                                                Hear thou in heaven thy dwelling place, and do according to all that the stranger calleth to thee for: that all people of the earth may know thy name, to fear thee, as do thy people Israel; and that they may know that this house, which I have builded, is called by thy name.
9030                                                                                                                                                                                                                                                                                                                                 If thy people go out to battle against their enemy, whithersoever thou shalt send them, and shall pray unto the LORD toward the city which thou hast chosen, and toward the house that I have built for thy name:
9031                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then hear thou in heaven their prayer and their supplication, and maintain their cause.
9032                                                                                                                                                                                                                                                                                                                                      If they sin against thee, (for there is no man that sinneth not,) and thou be angry with them, and deliver them to the enemy, so that they carry them away captives unto the land of the enemy, far or near;
9033                                                                                                                                                                                                                                                                                  Yet if they shall bethink themselves in the land whither they were carried captives, and repent, and make supplication unto thee in the land of them that carried them captives, saying, We have sinned, and have done perversely, we have committed wickedness;
9034                                                                                                                                                                                                                                                     And so return unto thee with all their heart, and with all their soul, in the land of their enemies, which led them away captive, and pray unto thee toward their land, which thou gavest unto their fathers, the city which thou hast chosen, and the house which I have built for thy name:
9035                                                                                                                                                                                                                                                                                                                                                                                                                                        Then hear thou their prayer and their supplication in heaven thy dwelling place, and maintain their cause,
9036                                                                                                                                                                                                                                                                                                             And forgive thy people that have sinned against thee, and all their transgressions wherein they have transgressed against thee, and give them compassion before them who carried them captive, that they may have compassion on them:
9037                                                                                                                                                                                                                                                                                                                                                                                                                   For they be thy people, and thine inheritance, which thou broughtest forth out of Egypt, from the midst of the furnace of iron:
9038                                                                                                                                                                                                                                                                                                                                                                       That thine eyes may be open unto the supplication of thy servant, and unto the supplication of thy people Israel, to hearken unto them in all that they call for unto thee.
9039                                                                                                                                                                                                                                                                                                                                        For thou didst separate them from among all the people of the earth, to be thine inheritance, as thou spakest by the hand of Moses thy servant, when thou broughtest our fathers out of Egypt, O LORD God.
9040                                                                                                                                                                                                                                                                                                                            And it was so, that when Solomon had made an end of praying all this prayer and supplication unto the LORD, he arose from before the altar of the LORD, from kneeling on his knees with his hands spread up to heaven.
9041                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he stood, and blessed all the congregation of Israel with a loud voice, saying,
9042                                                                                                                                                                                                                                                                                                                                  Blessed be the LORD, that hath given rest unto his people Israel, according to all that he promised: there hath not failed one word of all his good promise, which he promised by the hand of Moses his servant.
9043                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD our God be with us, as he was with our fathers: let him not leave us, nor forsake us:
9044                                                                                                                                                                                                                                                                                                                                                                              That he may incline our hearts unto him, to walk in all his ways, and to keep his commandments, and his statutes, and his judgments, which he commanded our fathers.
9045                                                                                                                                                                                                                                                                                                 And let these my words, wherewith I have made supplication before the LORD, be nigh unto the LORD our God day and night, that he maintain the cause of his servant, and the cause of his people Israel at all times, as the matter shall require:
9046                                                                                                                                                                                                                                                                                                                                                                                                                                                      That all the people of the earth may know that the LORD is God, and that there is none else.
9047                                                                                                                                                                                                                                                                                                                                                                                                                 Let your heart therefore be perfect with the LORD our God, to walk in his statutes, and to keep his commandments, as at this day.
9048                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king, and all Israel with him, offered sacrifice before the LORD.
9049                                                                                                                                                                                                                                                                                                           And Solomon offered a sacrifice of peace offerings, which he offered unto the LORD, two and twenty thousand oxen, and an hundred and twenty thousand sheep. So the king and all the children of Israel dedicated the house of the LORD.
9050                                                                                                                                                                                            The same day did the king hallow the middle of the court that was before the house of the LORD: for there he offered burnt offerings, and meat offerings, and the fat of the peace offerings: because the brazen altar that was before the LORD was too little to receive the burnt offerings, and meat offerings, and the fat of the peace offerings.
9051                                                                                                                                                                                                                                                                                                                             And at that time Solomon held a feast, and all Israel with him, a great congregation, from the entering in of Hamath unto the river of Egypt, before the LORD our God, seven days and seven days, even fourteen days.
9052                                                                                                                                                                                                                                                                                                                            On the eighth day he sent the people away: and they blessed the king, and went unto their tents joyful and glad of heart for all the goodness that the LORD had done for David his servant, and for Israel his people.
9053                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when Solomon had finished the building of the house of the LORD, and the king's house, and all Solomon's desire which he was pleased to do,
9054                                                                                                                                                                                                                                                                                                                                                                                                                                                         That the LORD appeared to Solomon the second time, as he had appeared unto him at Gibeon.
9055                                                                                                                                                                                                                                                                                               And the LORD said unto him, I have heard thy prayer and thy supplication, that thou hast made before me: I have hallowed this house, which thou hast built, to put my name there for ever; and mine eyes and mine heart shall be there perpetually.
9056                                                                                                                                                                                                                                                                                                                                            And if thou wilt walk before me, as David thy father walked, in integrity of heart, and in uprightness, to do according to all that I have commanded thee, and wilt keep my statutes and my judgments:
9057                                                                                                                                                                                                                                                                                                                                                                       Then I will establish the throne of thy kingdom upon Israel for ever, as I promised to David thy father, saying, There shall not fail thee a man upon the throne of Israel.
9058                                                                                                                                                                                                                                                                                                                                                 But if ye shall at all turn from following me, ye or your children, and will not keep my commandments and my statutes which I have set before you, but go and serve other gods, and worship them:
9059                                                                                                                                                                                                                                                                                                                                  Then will I cut off Israel out of the land which I have given them; and this house, which I have hallowed for my name, will I cast out of my sight; and Israel shall be a proverb and a byword among all people:
9060                                                                                                                                                                                                                                                                                                                                                            And at this house, which is high, every one that passeth by it shall be astonished, and shall hiss; and they shall say, Why hath the LORD done thus unto this land, and to this house?
9061                                                                                                                                                                                                                                                                                And they shall answer, Because they forsook the LORD their God, who brought forth their fathers out of the land of Egypt, and have taken hold upon other gods, and have worshipped them, and served them: therefore hath the LORD brought upon them all this evil.
9062                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass at the end of twenty years, when Solomon had built the two houses, the house of the LORD, and the king's house,
9063                                                                                                                                                                                                                                                                                                                                            (Now Hiram the king of Tyre had furnished Solomon with cedar trees and fir trees, and with gold, according to all his desire,) that then king Solomon gave Hiram twenty cities in the land of Galilee.
9064                                                                                                                                                                                                                                                                                                                                                                                                                                             And Hiram came out from Tyre to see the cities which Solomon had given him; and they pleased him not.
9065                                                                                                                                                                                                                                                                                                                                                                                                                      And he said, What cities are these which thou hast given me, my brother? And he called them the land of Cabul unto this day.
9066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Hiram sent to the king sixscore talents of gold.
9067                                                                                                                                                                                                                                                                                                                                                     And this is the reason of the levy which king Solomon raised; for to build the house of the LORD, and his own house, and Millo, and the wall of Jerusalem, and Hazor, and Megiddo, and Gezer.
9068                                                                                                                                                                                                                                                                                                                                                    For Pharaoh king of Egypt had gone up, and taken Gezer, and burnt it with fire, and slain the Canaanites that dwelt in the city, and given it for a present unto his daughter, Solomon's wife.
9069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Solomon built Gezer, and Bethhoron the nether,
9070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Baalath, and Tadmor in the wilderness, in the land,
9071                                                                                                                                                                                                                                                                                                                                And all the cities of store that Solomon had, and cities for his chariots, and cities for his horsemen, and that which Solomon desired to build in Jerusalem, and in Lebanon, and in all the land of his dominion.
9072                                                                                                                                                                                                                                                                                                                                                                                                        And all the people that were left of the Amorites, Hittites, Perizzites, Hivites, and Jebusites, which were not of the children of Israel,
9073                                                                                                                                                                                                                                                                                                                                                      Their children that were left after them in the land, whom the children of Israel also were not able utterly to destroy, upon those did Solomon levy a tribute of bondservice unto this day.
9074                                                                                                                                                                                                                                                                                                                                                           But of the children of Israel did Solomon make no bondmen: but they were men of war, and his servants, and his princes, and his captains, and rulers of his chariots, and his horsemen.
9075                                                                                                                                                                                                                                                                                                                                                                                             These were the chief of the officers that were over Solomon's work, five hundred and fifty, which bare rule over the people that wrought in the work.
9076                                                                                                                                                                                                                                                                                                                                                                                                                  But Pharaoh's daughter came up out of the city of David unto her house which Solomon had built for her: then did he build Millo.
9077                                                                                                                                                                                                                                                                                                                              And three times in a year did Solomon offer burnt offerings and peace offerings upon the altar which he built unto the LORD, and he burnt incense upon the altar that was before the LORD. So he finished the house.
9078                                                                                                                                                                                                                                                                                                                                                                                                                     And king Solomon made a navy of ships in Eziongeber, which is beside Eloth, on the shore of the Red sea, in the land of Edom.
9079                                                                                                                                                                                                                                                                                                                                                                                                                                     And Hiram sent in the navy his servants, shipmen that had knowledge of the sea, with the servants of Solomon.
9080                                                                                                                                                                                                                                                                                                                                                                                                                            And they came to Ophir, and fetched from thence gold, four hundred and twenty talents, and brought it to king Solomon.
9081                                                                                                                                                                                                                                                                                                                                                                                                              And when the queen of Sheba heard of the fame of Solomon concerning the name of the LORD, she came to prove him with hard questions.
9082                                                                                                                                                                                                                                                                                                                                   And she came to Jerusalem with a very great train, with camels that bare spices, and very much gold, and precious stones: and when she was come to Solomon, she communed with him of all that was in her heart.
9083                                                                                                                                                                                                                                                                                                                                                                                                                                         And Solomon told her all her questions: there was not any thing hid from the king, which he told her not.
9084                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when the queen of Sheba had seen all Solomon's wisdom, and the house that he had built,
9085                                                                                                                                                                                                                                                                                                           And the meat of his table, and the sitting of his servants, and the attendance of his ministers, and their apparel, and his cupbearers, and his ascent by which he went up unto the house of the LORD; there was no more spirit in her.
9086                                                                                                                                                                                                                                                                                                                                                                                                                                       And she said to the king, It was a true report that I heard in mine own land of thy acts and of thy wisdom.
9087                                                                                                                                                                                                                                                                                                                                                                     Howbeit I believed not the words, until I came, and mine eyes had seen it: and, behold, the half was not told me: thy wisdom and prosperity exceedeth the fame which I heard.
9088                                                                                                                                                                                                                                                                                                                                                                                                                                   Happy are thy men, happy are these thy servants, which stand continually before thee, and that hear thy wisdom.
9089                                                                                                                                                                                                                                                                                                                                                       Blessed be the LORD thy God, which delighted in thee, to set thee on the throne of Israel: because the LORD loved Israel for ever, therefore made he thee king, to do judgment and justice.
9090                                                                                                                                                                                                                                                                                                                             And she gave the king an hundred and twenty talents of gold, and of spices very great store, and precious stones: there came no more such abundance of spices as these which the queen of Sheba gave to king Solomon.
9091                                                                                                                                                                                                                                                                                                                                                                                                                 And the navy also of Hiram, that brought gold from Ophir, brought in from Ophir great plenty of almug trees, and precious stones.
9092                                                                                                                                                                                                                                                                                                                                             And the king made of the almug trees pillars for the house of the LORD, and for the king's house, harps also and psalteries for singers: there came no such almug trees, nor were seen unto this day.
9093                                                                                                                                                                                                                                                                                                                                      And king Solomon gave unto the queen of Sheba all her desire, whatsoever she asked, beside that which Solomon gave her of his royal bounty. So she turned and went to her own country, she and her servants.
9094                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the weight of gold that came to Solomon in one year was six hundred threescore and six talents of gold,
9095                                                                                                                                                                                                                                                                                                                                                                                            Beside that he had of the merchantmen, and of the traffic of the spice merchants, and of all the kings of Arabia, and of the governors of the country.
9096                                                                                                                                                                                                                                                                                                                                                                                                                                         And king Solomon made two hundred targets of beaten gold: six hundred shekels of gold went to one target.
9097                                                                                                                                                                                                                                                                                                                                                                                            And he made three hundred shields of beaten gold; three pound of gold went to one shield: and the king put them in the house of the forest of Lebanon.
9098                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moreover the king made a great throne of ivory, and overlaid it with the best gold.
9099                                                                                                                                                                                                                                                                                                                                                                         The throne had six steps, and the top of the throne was round behind: and there were stays on either side on the place of the seat, and two lions stood beside the stays.
9100                                                                                                                                                                                                                                                                                                                                                                                                                     And twelve lions stood there on the one side and on the other upon the six steps: there was not the like made in any kingdom.
9101                                                                                                                                                                                                                                                                                                                                       And all king Solomon's drinking vessels were of gold, and all the vessels of the house of the forest of Lebanon were of pure gold; none were of silver: it was nothing accounted of in the days of Solomon.
9102                                                                                                                                                                                                                                                                                                                                                                     For the king had at sea a navy of Tharshish with the navy of Hiram: once in three years came the navy of Tharshish, bringing gold, and silver, ivory, and apes, and peacocks.
9103                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So king Solomon exceeded all the kings of the earth for riches and for wisdom.
9104                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the earth sought to Solomon, to hear his wisdom, which God had put in his heart.
9105                                                                                                                                                                                                                                                                                                                                                                                      And they brought every man his present, vessels of silver, and vessels of gold, and garments, and armor, and spices, horses, and mules, a rate year by year.
9106                                                                                                                                                                                                                                                                                                                                  And Solomon gathered together chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, whom he bestowed in the cities for chariots, and with the king at Jerusalem.
9107                                                                                                                                                                                                                                                                                                                                                                                                        And the king made silver to be in Jerusalem as stones, and cedars made he to be as the sycamore trees that are in the vale, for abundance.
9108                                                                                                                                                                                                                                                                                                                                                                                                                             And Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price.
9109                                                                                                                                                                                                                                                                                                               And a chariot came up and went out of Egypt for six hundred shekels of silver, and an horse for an hundred and fifty: and so for all the kings of the Hittites, and for the kings of Syria, did they bring them out by their means.
9110                                                                                                                                                                                                                                                                                                                                                                                            But king Solomon loved many strange women, together with the daughter of Pharaoh, women of the Moabites, Ammonites, Edomites, Zidonians, and Hittites:
9111                                                                                                                                                                                                                                                                                                         Of the nations concerning which the LORD said unto the children of Israel, Ye shall not go in to them, neither shall they come in unto you: for surely they will turn away your heart after their gods: Solomon clave unto these in love.
9112                                                                                                                                                                                                                                                                                                                                                                                                                                    And he had seven hundred wives, princesses, and three hundred concubines: and his wives turned away his heart.
9113                                                                                                                                                                                                                                                                                                                                                      For it came to pass, when Solomon was old, that his wives turned away his heart after other gods: and his heart was not perfect with the LORD his God, as was the heart of David his father.
9114                                                                                                                                                                                                                                                                                                                                                                                                                                 For Solomon went after Ashtoreth the goddess of the Zidonians, and after Milcom the abomination of the Ammonites.
9115                                                                                                                                                                                                                                                                                                                                                                                                                                        And Solomon did evil in the sight of the LORD, and went not fully after the LORD, as did David his father.
9116                                                                                                                                                                                                                                                                                                                                                                        Then did Solomon build an high place for Chemosh, the abomination of Moab, in the hill that is before Jerusalem, and for Molech, the abomination of the children of Ammon.
9117                                                                                                                                                                                                                                                                                                                                                                                                                                                And likewise did he for all his strange wives, which burnt incense and sacrificed unto their gods.
9118                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD was angry with Solomon, because his heart was turned from the LORD God of Israel, which had appeared unto him twice,
9119                                                                                                                                                                                                                                                                                                                                                                                                               And had commanded him concerning this thing, that he should not go after other gods: but he kept not that which the LORD commanded.
9120                                                                                                                                                                                                                                                                                                              Wherefore the LORD said unto Solomon, Forasmuch as this is done of thee, and thou hast not kept my covenant and my statutes, which I have commanded thee, I will surely rend the kingdom from thee, and will give it to thy servant.
9121                                                                                                                                                                                                                                                                                                                                                                                                                          Notwithstanding in thy days I will not do it for David thy father's sake: but I will rend it out of the hand of thy son.
9122                                                                                                                                                                                                                                                                                                                                                                                       Howbeit I will not rend away all the kingdom; but will give one tribe to thy son for David my servant's sake, and for Jerusalem's sake which I have chosen.
9123                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD stirred up an adversary unto Solomon, Hadad the Edomite: he was of the king's seed in Edom.
9124                                                                                                                                                                                                                                                                                                                                                                                             For it came to pass, when David was in Edom, and Joab the captain of the host was gone up to bury the slain, after he had smitten every male in Edom;
9125                                                                                                                                                                                                                                                                                                                                                                                                                                                  (For six months did Joab remain there with all Israel, until he had cut off every male in Edom:)
9126                                                                                                                                                                                                                                                                                                                                                                                                                     That Hadad fled, he and certain Edomites of his father's servants with him, to go into Egypt; Hadad being yet a little child.
9127                                                                                                                                                                                                                                                                                                                            And they arose out of Midian, and came to Paran: and they took men with them out of Paran, and they came to Egypt, unto Pharaoh king of Egypt; which gave him an house, and appointed him victuals, and gave him land.
9128                                                                                                                                                                                                                                                                                                                                                                                                    And Hadad found great favor in the sight of Pharaoh, so that he gave him to wife the sister of his own wife, the sister of Tahpenes the queen.
9129                                                                                                                                                                                                                                                                                                                                                                                 And the sister of Tahpenes bare him Genubath his son, whom Tahpenes weaned in Pharaoh's house: and Genubath was in Pharaoh's household among the sons of Pharaoh.
9130                                                                                                                                                                                                                                                                                                                                                         And when Hadad heard in Egypt that David slept with his fathers, and that Joab the captain of the host was dead, Hadad said to Pharaoh, Let me depart, that I may go to mine own country.
9131                                                                                                                                                                                                                                                                                                                                                                    Then Pharaoh said unto him, But what hast thou lacked with me, that, behold, thou seekest to go to thine own country? And he answered, Nothing: howbeit let me go in any wise.
9132                                                                                                                                                                                                                                                                                                                                                                                                                             And God stirred him up another adversary, Rezon the son of Eliadah, which fled from his lord Hadadezer king of Zobah:
9133                                                                                                                                                                                                                                                                                                                                                                               And he gathered men unto him, and became captain over a band, when David slew them of Zobah: and they went to Damascus, and dwelt therein, and reigned in Damascus.
9134                                                                                                                                                                                                                                                                                                                                                                                                    And he was an adversary to Israel all the days of Solomon, beside the mischief that Hadad did: and he abhorred Israel, and reigned over Syria.
9135                                                                                                                                                                                                                                                                                                                                                                            And Jeroboam the son of Nebat, an Ephrathite of Zereda, Solomon's servant, whose mother's name was Zeruah, a widow woman, even he lifted up his hand against the king.
9136                                                                                                                                                                                                                                                                                                                                                                                               And this was the cause that he lifted up his hand against the king: Solomon built Millo, and repaired the breaches of the city of David his father.
9137                                                                                                                                                                                                                                                                                                                                                                           And the man Jeroboam was a mighty man of valor: and Solomon seeing the young man that he was industrious, he made him ruler over all the charge of the house of Joseph.
9138                                                                                                                                                                                                                                                                                                                               And it came to pass at that time when Jeroboam went out of Jerusalem, that the prophet Ahijah the Shilonite found him in the way; and he had clad himself with a new garment; and they two were alone in the field:
9139                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Ahijah caught the new garment that was on him, and rent it in twelve pieces:
9140                                                                                                                                                                                                                                                                                                                                                          And he said to Jeroboam, Take thee ten pieces: for thus saith the LORD, the God of Israel, Behold, I will rend the kingdom out of the hand of Solomon, and will give ten tribes to thee:
9141                                                                                                                                                                                                                                                                                                                                                                                                (But he shall have one tribe for my servant David's sake, and for Jerusalem's sake, the city which I have chosen out of all the tribes of Israel:)
9142                                                                                                                                                                                                                          Because that they have forsaken me, and have worshipped Ashtoreth the goddess of the Zidonians, Chemosh the god of the Moabites, and Milcom the god of the children of Ammon, and have not walked in my ways, to do that which is right in mine eyes, and to keep my statutes and my judgments, as did David his father.
9143                                                                                                                                                                                                                                                                                                                                        Howbeit I will not take the whole kingdom out of his hand: but I will make him prince all the days of his life for David my servant's sake, whom I chose, because he kept my commandments and my statutes:
9144                                                                                                                                                                                                                                                                                                                                                                                                                                                   But I will take the kingdom out of his son's hand, and will give it unto thee, even ten tribes.
9145                                                                                                                                                                                                                                                                                                                                                                                And unto his son will I give one tribe, that David my servant may have a light alway before me in Jerusalem, the city which I have chosen me to put my name there.
9146                                                                                                                                                                                                                                                                                                                                                                                                                                And I will take thee, and thou shalt reign according to all that thy soul desireth, and shalt be king over Israel.
9147                                                                                                                                                                                                                                    And it shall be, if thou wilt hearken unto all that I command thee, and wilt walk in my ways, and do that is right in my sight, to keep my statutes and my commandments, as David my servant did; that I will be with thee, and build thee a sure house, as I built for David, and will give Israel unto thee.
9148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I will for this afflict the seed of David, but not for ever.
9149                                                                                                                                                                                                                                                                                                                                                                                      Solomon sought therefore to kill Jeroboam. And Jeroboam arose, and fled into Egypt, unto Shishak king of Egypt, and was in Egypt until the death of Solomon.
9150                                                                                                                                                                                                                                                                                                                                                                                                                And the rest of the acts of Solomon, and all that he did, and his wisdom, are they not written in the book of the acts of Solomon?
9151                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the time that Solomon reigned in Jerusalem over all Israel was forty years.
9152                                                                                                                                                                                                                                                                                                                                                                                                                    And Solomon slept with his fathers, and was buried in the city of David his father: and Rehoboam his son reigned in his stead.
9153                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Rehoboam went to Shechem: for all Israel were come to Shechem to make him king.
9154                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Jeroboam the son of Nebat, who was yet in Egypt, heard of it, (for he was fled from the presence of king Solomon, and Jeroboam dwelt in Egypt;)
9155                                                                                                                                                                                                                                                                                                                                                                                                                             That they sent and called him. And Jeroboam and all the congregation of Israel came, and spake unto Rehoboam, saying,
9156                                                                                                                                                                                                                                                                                                                                                                          Thy father made our yoke grievous: now therefore make thou the grievous service of thy father, and his heavy yoke which he put upon us, lighter, and we will serve thee.
9157                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto them, Depart yet for three days, then come again to me. And the people departed.
9158                                                                                                                                                                                                                                                                                                                                                                                  And king Rehoboam consulted with the old men, that stood before Solomon his father while he yet lived, and said, How do ye advise that I may answer this people?
9159                                                                                                                                                                                                                                                                                                                                                And they spake unto him, saying, If thou wilt be a servant unto this people this day, and wilt serve them, and answer them, and speak good words to them, then they will be thy servants for ever.
9160                                                                                                                                                                                                                                                                                                                                                                                    But he forsook the counsel of the old men, which they had given him, and consulted with the young men that were grown up with him, and which stood before him:
9161                                                                                                                                                                                                                                                                                                                                                                                And he said unto them, What counsel give ye that we may answer this people, who have spoken to me, saying, Make the yoke which thy father did put upon us lighter?
9162                                                                                                                                                                                                                                             And the young men that were grown up with him spake unto him, saying, Thus shalt thou speak unto this people that spake unto thee, saying, Thy father made our yoke heavy, but make thou it lighter unto us; thus shalt thou say unto them, My little finger shall be thicker than my father's loins.
9163                                                                                                                                                                                                                                                                                                                                                                               And now whereas my father did lade you with a heavy yoke, I will add to your yoke: my father hath chastised you with whips, but I will chastise you with scorpions.
9164                                                                                                                                                                                                                                                                                                                                                                                                                 So Jeroboam and all the people came to Rehoboam the third day, as the king had appointed, saying, Come to me again the third day.
9165                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king answered the people roughly, and forsook the old men's counsel that they gave him;
9166                                                                                                                                                                                                                                                                                                                                       And spake to them after the counsel of the young men, saying, My father made your yoke heavy, and I will add to your yoke: my father also chastised you with whips, but I will chastise you with scorpions.
9167                                                                                                                                                                                                                                                                                                                                                 Wherefore the king hearkened not unto the people; for the cause was from the LORD, that he might perform his saying, which the LORD spake by Ahijah the Shilonite unto Jeroboam the son of Nebat.
9168                                                                                                                                                                                                                                                              So when all Israel saw that the king hearkened not unto them, the people answered the king, saying, What portion have we in David? neither have we inheritance in the son of Jesse: to your tents, O Israel: now see to thine own house, David. So Israel departed unto their tents.
9169                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as for the children of Israel which dwelt in the cities of Judah, Rehoboam reigned over them.
9170                                                                                                                                                                                                                                                                                                                                             Then king Rehoboam sent Adoram, who was over the tribute; and all Israel stoned him with stones, that he died. Therefore king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem.
9171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Israel rebelled against the house of David unto this day.
9172                                                                                                                                                                                                                                                                                                    And it came to pass, when all Israel heard that Jeroboam was come again, that they sent and called him unto the congregation, and made him king over all Israel: there was none that followed the house of David, but the tribe of Judah only.
9173                                                                                                                                                                                                                                                                     And when Rehoboam was come to Jerusalem, he assembled all the house of Judah, with the tribe of Benjamin, an hundred and fourscore thousand chosen men, which were warriors, to fight against the house of Israel, to bring the kingdom again to Rehoboam the son of Solomon.
9174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the word of God came unto Shemaiah the man of God, saying,
9175                                                                                                                                                                                                                                                                                                                                                                                                   Speak unto Rehoboam, the son of Solomon, king of Judah, and unto all the house of Judah and Benjamin, and to the remnant of the people, saying,
9176                                                                                                                                                                                                                                                                           Thus saith the LORD, Ye shall not go up, nor fight against your brethren the children of Israel: return every man to his house; for this thing is from me. They hearkened therefore to the word of the LORD, and returned to depart, according to the word of the LORD.
9177                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Jeroboam built Shechem in mount Ephraim, and dwelt therein; and went out from thence, and built Penuel.
9178                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jeroboam said in his heart, Now shall the kingdom return to the house of David:
9179                                                                                                                                                                                                                                                                                                     If this people go up to do sacrifice in the house of the LORD at Jerusalem, then shall the heart of this people turn again unto their lord, even unto Rehoboam king of Judah, and they shall kill me, and go again to Rehoboam king of Judah.
9180                                                                                                                                                                                                                                                                                                                                        Whereupon the king took counsel, and made two calves of gold, and said unto them, It is too much for you to go up to Jerusalem: behold thy gods, O Israel, which brought thee up out of the land of Egypt.
9181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he set the one in Bethel, and the other put he in Dan.
9182                                                                                                                                                                                                                                                                                                                                                                                                                                                        And this thing became a sin: for the people went to worship before the one, even unto Dan.
9183                                                                                                                                                                                                                                                                                                                                                                                                                            And he made an house of high places, and made priests of the lowest of the people, which were not of the sons of Levi.
9184                                                                                                                                                                                                                                           And Jeroboam ordained a feast in the eighth month, on the fifteenth day of the month, like unto the feast that is in Judah, and he offered upon the altar. So did he in Bethel, sacrificing unto the calves that he had made: and he placed in Bethel the priests of the high places which he had made.
9185                                                                                                                                                                                                                                                                                      So he offered upon the altar which he had made in Bethel the fifteenth day of the eighth month, even in the month which he had devised of his own heart; and ordained a feast unto the children of Israel: and he offered upon the altar, and burnt incense.
9186                                                                                                                                                                                                                                                                                                                                                                                                           And, behold, there came a man of God out of Judah by the word of the LORD unto Bethel: and Jeroboam stood by the altar to burn incense.
9187                                                                                                                                                                                                                                  And he cried against the altar in the word of the LORD, and said, O altar, altar, thus saith the LORD; Behold, a child shall be born unto the house of David, Josiah by name; and upon thee shall he offer the priests of the high places that burn incense upon thee, and men's bones shall be burnt upon thee.
9188                                                                                                                                                                                                                                                                                                                                                                        And he gave a sign the same day, saying, This is the sign which the LORD hath spoken; Behold, the altar shall be rent, and the ashes that are upon it shall be poured out.
9189                                                                                                                                                                                                                                                And it came to pass, when king Jeroboam heard the saying of the man of God, which had cried against the altar in Bethel, that he put forth his hand from the altar, saying, Lay hold on him. And his hand, which he put forth against him, dried up, so that he could not pull it in again to him.
9190                                                                                                                                                                                                                                                                                                                                                                                                   The altar also was rent, and the ashes poured out from the altar, according to the sign which the man of God had given by the word of the LORD.
9191                                                                                                                                                                                                                                                                              And the king answered and said unto the man of God, Entreat now the face of the LORD thy God, and pray for me, that my hand may be restored me again. And the man of God besought the LORD, and the king's hand was restored him again, and became as it was before.
9192                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king said unto the man of God, Come home with me, and refresh thyself, and I will give thee a reward.
9193                                                                                                                                                                                                                                                                                                                                                                                 And the man of God said unto the king, If thou wilt give me half thine house, I will not go in with thee, neither will I eat bread nor drink water in this place:
9194                                                                                                                                                                                                                                                                                                                                                                                                         For so was it charged me by the word of the LORD, saying, Eat no bread, nor drink water, nor turn again by the same way that thou camest.
9195                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he went another way, and returned not by the way that he came to Bethel.
9196                                                                                                                                                                                                                                                                                                                         Now there dwelt an old prophet in Bethel; and his sons came and told him all the works that the man of God had done that day in Bethel: the words which he had spoken unto the king, them they told also to their father.
9197                                                                                                                                                                                                                                                                                                                                                                                                                     And their father said unto them, What way went he? For his sons had seen what way the man of God went, which came from Judah.
9198                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto his sons, Saddle me the ass. So they saddled him the ass: and he rode thereon,
9199                                                                                                                                                                                                                                                                                                                                                                                       And went after the man of God, and found him sitting under an oak: and he said unto him, Art thou the man of God that camest from Judah? And he said, I am.
9200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he said unto him, Come home with me, and eat bread.
9201                                                                                                                                                                                                                                                                                                                                                                                                                   And he said, I may not return with thee, nor go in with thee: neither will I eat bread nor drink water with thee in this place:
9202                                                                                                                                                                                                                                                                                                                                                                                                   For it was said to me by the word of the LORD, Thou shalt eat no bread nor drink water there, nor turn again to go by the way that thou camest.
9203                                                                                                                                                                                                                                                                                                                            He said unto him, I am a prophet also as thou art; and an angel spake unto me by the word of the LORD, saying, Bring him back with thee into thine house, that he may eat bread and drink water. But he lied unto him.
9204                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So he went back with him, and did eat bread in his house, and drank water.
9205                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, as they sat at the table, that the word of the LORD came unto the prophet that brought him back:
9206                                                                                                                                                                                                                                                                                                                              And he cried unto the man of God that came from Judah, saying, Thus saith the LORD, Forasmuch as thou hast disobeyed the mouth of the LORD, and hast not kept the commandment which the LORD thy God commanded thee,
9207                                                                                                                                                                                                                                                                                                                                        But camest back, and hast eaten bread and drunk water in the place, of the which the Lord did say to thee, Eat no bread, and drink no water; thy carcass shall not come unto the sepulchre of thy fathers.
9208                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, after he had eaten bread, and after he had drunk, that he saddled for him the ass, to wit, for the prophet whom he had brought back.
9209                                                                                                                                                                                                                                                                                                                                                                                  And when he was gone, a lion met him by the way, and slew him: and his carcass was cast in the way, and the ass stood by it, the lion also stood by the carcass.
9210                                                                                                                                                                                                                                                                                                                                                                         And, behold, men passed by, and saw the carcass cast in the way, and the lion standing by the carcass: and they came and told it in the city where the old prophet dwelt.
9211                                                                                                                                                                                                                                         And when the prophet that brought him back from the way heard thereof, he said, It is the man of God, who was disobedient unto the word of the LORD: therefore the LORD hath delivered him unto the lion, which hath torn him, and slain him, according to the word of the LORD, which he spake unto him.
9212                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he spake to his sons, saying, Saddle me the ass. And they saddled him.
9213                                                                                                                                                                                                                                                                                                                                                                                        And he went and found his carcass cast in the way, and the ass and the lion standing by the carcass: the lion had not eaten the carcass, nor torn the ass.
9214                                                                                                                                                                                                                                                                                                                                                                             And the prophet took up the carcass of the man of God, and laid it upon the ass, and brought it back: and the old prophet came to the city, to mourn and to bury him.
9215                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he laid his carcass in his own grave; and they mourned over him, saying, Alas, my brother!
9216                                                                                                                                                                                                                                                                                                                                                   And it came to pass, after he had buried him, that he spake to his sons, saying, When I am dead, then bury me in the sepulchre wherein the man of God is buried; lay my bones beside his bones:
9217                                                                                                                                                                                                                                                                                                                                                   For the saying which he cried by the word of the LORD against the altar in Bethel, and against all the houses of the high places which are in the cities of Samaria, shall surely come to pass.
9218                                                                                                                                                                                                                                                                                                                        After this thing Jeroboam returned not from his evil way, but made again of the lowest of the people priests of the high places: whosoever would, he consecrated him, and he became one of the priests of the high places.
9219                                                                                                                                                                                                                                                                                                                                                                                                                       And this thing became sin unto the house of Jeroboam, even to cut it off, and to destroy it from off the face of the earth.
9220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                At that time Abijah the son of Jeroboam fell sick.
9221                                                                                                                                                                                                                                                                                                    And Jeroboam said to his wife, Arise, I pray thee, and disguise thyself, that thou be not known to be the wife of Jeroboam; and get thee to Shiloh: behold, there is Ahijah the prophet, which told me that I should be king over this people.
9222                                                                                                                                                                                                                                                                                                                                                                                                             And take with thee ten loaves, and cracknels, and a cruse of honey, and go to him: he shall tell thee what shall become of the child.
9223                                                                                                                                                                                                                                                                                                                                                                                 And Jeroboam's wife did so, and arose, and went to Shiloh, and came to the house of Ahijah. But Ahijah could not see; for his eyes were set by reason of his age.
9224                                                                                                                                                                                                                                                                                              And the LORD said unto Ahijah, Behold, the wife of Jeroboam cometh to ask a thing of thee for her son; for he is sick: thus and thus shalt thou say unto her: for it shall be, when she cometh in, that she shall feign herself to be another woman.
9225                                                                                                                                                                                                                                                                                                                              And it was so, when Ahijah heard the sound of her feet, as she came in at the door, that he said, Come in, thou wife of Jeroboam; why feignest thou thyself to be another? for I am sent to thee with heavy tidings.
9226                                                                                                                                                                                                                                                                                                                                                                                              Go, tell Jeroboam, Thus saith the LORD God of Israel, Forasmuch as I exalted thee from among the people, and made thee prince over my people Israel,
9227                                                                                                                                                                                                                                                                                                              And rent the kingdom away from the house of David, and gave it thee: and yet thou hast not been as my servant David, who kept my commandments, and who followed me with all his heart, to do that only which was right in mine eyes;
9228                                                                                                                                                                                                                                                                                                                                                                     But hast done evil above all that were before thee: for thou hast gone and made thee other gods, and molten images, to provoke me to anger, and hast cast me behind thy back:
9229                                                                                                                                                                                                                                                           Therefore, behold, I will bring evil upon the house of Jeroboam, and will cut off from Jeroboam him that pisseth against the wall, and him that is shut up and left in Israel, and will take away the remnant of the house of Jeroboam, as a man taketh away dung, till it be all gone.
9230                                                                                                                                                                                                                                                                                                                                                                                           Him that dieth of Jeroboam in the city shall the dogs eat; and him that dieth in the field shall the fowls of the air eat: for the LORD hath spoken it.
9231                                                                                                                                                                                                                                                                                                                                                                                                                                    Arise thou therefore, get thee to thine own house: and when thy feet enter into the city, the child shall die.
9232                                                                                                                                                                                                                                                                                                                                          And all Israel shall mourn for him, and bury him: for he only of Jeroboam shall come to the grave, because in him there is found some good thing toward the LORD God of Israel in the house of Jeroboam.
9233                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover the LORD shall raise him up a king over Israel, who shall cut off the house of Jeroboam that day: but what? even now.
9234                                                                                                                                                                                                                                                                                  For the LORD shall smite Israel, as a reed is shaken in the water, and he shall root up Israel out of this good land, which he gave to their fathers, and shall scatter them beyond the river, because they have made their groves, provoking the LORD to anger.
9235                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall give Israel up because of the sins of Jeroboam, who did sin, and who made Israel to sin.
9236                                                                                                                                                                                                                                                                                                                                                                                                                      And Jeroboam's wife arose, and departed, and came to Tirzah: and when she came to the threshold of the door, the child died;
9237                                                                                                                                                                                                                                                                                                                                                                                             And they buried him; and all Israel mourned for him, according to the word of the LORD, which he spake by the hand of his servant Ahijah the prophet.
9238                                                                                                                                                                                                                                                                                                                                                                                           And the rest of the acts of Jeroboam, how he warred, and how he reigned, behold, they are written in the book of the chronicles of the kings of Israel.
9239                                                                                                                                                                                                                                                                                                                                                                                                             And the days which Jeroboam reigned were two and twenty years: and he slept with his fathers, and Nadab his son reigned in his stead.
9240                                                                                                                                                                                                                                            And Rehoboam the son of Solomon reigned in Judah. Rehoboam was forty and one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which the LORD did choose out of all the tribes of Israel, to put his name there. And his mother's name was Naamah an Ammonitess.
9241                                                                                                                                                                                                                                                                                                                                                                                   And Judah did evil in the sight of the LORD, and they provoked him to jealousy with their sins which they had committed, above all that their fathers had done.
9242                                                                                                                                                                                                                                                                                                                                                                                                                                     For they also built them high places, and images, and groves, on every high hill, and under every green tree.
9243                                                                                                                                                                                                                                                                                                                                                                                   And there were also sodomites in the land: and they did according to all the abominations of the nations which the LORD cast out before the children of Israel.
9244                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass in the fifth year of king Rehoboam, that Shishak king of Egypt came up against Jerusalem:
9245                                                                                                                                                                                                                                                                                                                                                           And he took away the treasures of the house of the LORD, and the treasures of the king's house; he even took away all: and he took away all the shields of gold which Solomon had made.
9246                                                                                                                                                                                                                                                                                                                                                                                       And king Rehoboam made in their stead brazen shields, and committed them unto the hands of the chief of the guard, which kept the door of the king's house.
9247                                                                                                                                                                                                                                                                                                                                                                                                             And it was so, when the king went into the house of the LORD, that the guard bare them, and brought them back into the guard chamber.
9248                                                                                                                                                                                                                                                                                                                                                                                                              Now the rest of the acts of Rehoboam, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
9249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there was war between Rehoboam and Jeroboam all their days.
9250                                                                                                                                                                                                                                                                                                                                                               And Rehoboam slept with his fathers, and was buried with his fathers in the city of David. And his mother's name was Naamah an Ammonitess. And Abijam his son reigned in his stead.
9251                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now in the eighteenth year of king Jeroboam the son of Nebat reigned Abijam over Judah.
9252                                                                                                                                                                                                                                                                                                                                                                                                                                                Three years reigned he in Jerusalem. and his mother's name was Maachah, the daughter of Abishalom.
9253                                                                                                                                                                                                                                                                                                                                                                                 And he walked in all the sins of his father, which he had done before him: and his heart was not perfect with the LORD his God, as the heart of David his father.
9254                                                                                                                                                                                                                                                                                                                                                                                                         Nevertheless for David's sake did the LORD his God give him a lamp in Jerusalem, to set up his son after him, and to establish Jerusalem:
9255                                                                                                                                                                                                                                                                                                                                                 Because David did that which was right in the eyes of the LORD, and turned not aside from any thing that he commanded him all the days of his life, save only in the matter of Uriah the Hittite.
9256                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And there was war between Rehoboam and Jeroboam all the days of his life.
9257                                                                                                                                                                                                                                                                                                                                                                 Now the rest of the acts of Abijam, and all that he did, are they not written in the book of the chronicles of the kings of Judah? And there was war between Abijam and Jeroboam.
9258                                                                                                                                                                                                                                                                                                                                                                                                                                And Abijam slept with his fathers; and they buried him in the city of David: and Asa his son reigned in his stead.
9259                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And in the twentieth year of Jeroboam king of Israel reigned Asa over Judah.
9260                                                                                                                                                                                                                                                                                                                                                                                                                                    And forty and one years reigned he in Jerusalem. And his mother's name was Maachah, the daughter of Abishalom.
9261                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Asa did that which was right in the eyes of the LORD, as did David his father.
9262                                                                                                                                                                                                                                                                                                                                                                                                                                              And he took away the sodomites out of the land, and removed all the idols that his fathers had made.
9263                                                                                                                                                                                                                                                                                                                                                                         And also Maachah his mother, even her he removed from being queen, because she had made an idol in a grove; and Asa destroyed her idol, and burnt it by the brook Kidron.
9264                                                                                                                                                                                                                                                                                                                                                                                                                                            But the high places were not removed: nevertheless Asa's heart was perfect with the LORD all his days.
9265                                                                                                                                                                                                                                                                                                                                                                               And he brought in the things which his father had dedicated, and the things which himself had dedicated, into the house of the LORD, silver, and gold, and vessels.
9266                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there was war between Asa and Baasha king of Israel all their days.
9267                                                                                                                                                                                                                                                                                                                                                                                                         And Baasha king of Israel went up against Judah, and built Ramah, that he might not suffer any to go out or come in to Asa king of Judah.
9268                                                                                                                                                                                                                           Then Asa took all the silver and the gold that were left in the treasures of the house of the LORD, and the treasures of the king's house, and delivered them into the hand of his servants: and king Asa sent them to Benhadad, the son of Tabrimon, the son of Hezion, king of Syria, that dwelt at Damascus, saying,
9269                                                                                                                                                                                                                                                                                                                        There is a league between me and thee, and between my father and thy father: behold, I have sent unto thee a present of silver and gold; come and break thy league with Baasha king of Israel, that he may depart from me.
9270                                                                                                                                                                                                                                                                                                                                So Benhadad hearkened unto king Asa, and sent the captains of the hosts which he had against the cities of Israel, and smote Ijon, and Dan, and Abelbethmaachah, and all Cinneroth, with all the land of Naphtali.
9271                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, when Baasha heard thereof, that he left off building of Ramah, and dwelt in Tirzah.
9272                                                                                                                                                                                                                                                                                                               Then king Asa made a proclamation throughout all Judah; none was exempted: and they took away the stones of Ramah, and the timber thereof, wherewith Baasha had builded; and king Asa built with them Geba of Benjamin, and Mizpah.
9273                                                                                                                                                                                                                                                                                            The rest of all the acts of Asa, and all his might, and all that he did, and the cities which he built, are they not written in the book of the chronicles of the kings of Judah? Nevertheless in the time of his old age he was diseased in his feet.
9274                                                                                                                                                                                                                                                                                                                                                                                                    And Asa slept with his fathers, and was buried with his fathers in the city of David his father: and Jehoshaphat his son reigned in his stead.
9275                                                                                                                                                                                                                                                                                                                                                                                                              And Nadab the son of Jeroboam began to reign over Israel in the second year of Asa king of Judah, and reigned over Israel two years.
9276                                                                                                                                                                                                                                                                                                                                                                                                                    And he did evil in the sight of the LORD, and walked in the way of his father, and in his sin wherewith he made Israel to sin.
9277                                                                                                                                                                                                                                                                                                                                            And Baasha the son of Ahijah, of the house of Issachar, conspired against him; and Baasha smote him at Gibbethon, which belonged to the Philistines; for Nadab and all Israel laid siege to Gibbethon.
9278                                                                                                                                                                                                                                                                                                                                                                                                                                                        Even in the third year of Asa king of Judah did Baasha slay him, and reigned in his stead.
9279                                                                                                                                                                                                                                                                                                  And it came to pass, when he reigned, that he smote all the house of Jeroboam; he left not to Jeroboam any that breathed, until he had destroyed him, according unto the saying of the LORD, which he spake by his servant Ahijah the Shilonite:
9280                                                                                                                                                                                                                                                                                                                                                                                          Because of the sins of Jeroboam which he sinned, and which he made Israel sin, by his provocation wherewith he provoked the LORD God of Israel to anger.
9281                                                                                                                                                                                                                                                                                                                                                                                                                Now the rest of the acts of Nadab, and all that he did, are they not written in the book of the chronicles of the kings of Israel?
9282                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there was war between Asa and Baasha king of Israel all their days.
9283                                                                                                                                                                                                                                                                                                                                                                                                                  In the third year of Asa king of Judah began Baasha the son of Ahijah to reign over all Israel in Tirzah, twenty and four years.
9284                                                                                                                                                                                                                                                                                                                                                                                                                      And he did evil in the sight of the LORD, and walked in the way of Jeroboam, and in his sin wherewith he made Israel to sin.
9285                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the word of the LORD came to Jehu the son of Hanani against Baasha, saying,
9286                                                                                                                                                                                                                                                                                                                              Forasmuch as I exalted thee out of the dust, and made thee prince over my people Israel; and thou hast walked in the way of Jeroboam, and hast made my people Israel to sin, to provoke me to anger with their sins;
9287                                                                                                                                                                                                                                                                                                                                                                                            Behold, I will take away the posterity of Baasha, and the posterity of his house; and will make thy house like the house of Jeroboam the son of Nebat.
9288                                                                                                                                                                                                                                                                                                                                                                                                                  Him that dieth of Baasha in the city shall the dogs eat; and him that dieth of his in the fields shall the fowls of the air eat.
9289                                                                                                                                                                                                                                                                                                                                                                                                    Now the rest of the acts of Baasha, and what he did, and his might, are they not written in the book of the chronicles of the kings of Israel?
9290                                                                                                                                                                                                                                                                                                                                                                                                                                                So Baasha slept with his fathers, and was buried in Tirzah: and Elah his son reigned in his stead.
9291                                                                                                                                                                                                                                     And also by the hand of the prophet Jehu the son of Hanani came the word of the LORD against Baasha, and against his house, even for all the evil that he did in the sight of the LORD, in provoking him to anger with the work of his hands, in being like the house of Jeroboam; and because he killed him.
9292                                                                                                                                                                                                                                                                                                                                                                                                                         In the twenty and sixth year of Asa king of Judah began Elah the son of Baasha to reign over Israel in Tirzah, two years.
9293                                                                                                                                                                                                                                                                                                                                                                      And his servant Zimri, captain of half his chariots, conspired against him, as he was in Tirzah, drinking himself drunk in the house of Arza steward of his house in Tirzah.
9294                                                                                                                                                                                                                                                                                                                                                                                                                   And Zimri went in and smote him, and killed him, in the twenty and seventh year of Asa king of Judah, and reigned in his stead.
9295                                                                                                                                                                                                                                                                                                                                 And it came to pass, when he began to reign, as soon as he sat on his throne, that he slew all the house of Baasha: he left him not one that pisseth against a wall, neither of his kinsfolk, nor of his friends.
9296                                                                                                                                                                                                                                                                                                                                                                                                             Thus did Zimri destroy all the house of Baasha, according to the word of the LORD, which he spake against Baasha by Jehu the prophet.
9297                                                                                                                                                                                                                                                                                                                                                           For all the sins of Baasha, and the sins of Elah his son, by which they sinned, and by which they made Israel to sin, in provoking the LORD God of Israel to anger with their vanities.
9298                                                                                                                                                                                                                                                                                                                                                                                                                 Now the rest of the acts of Elah, and all that he did, are they not written in the book of the chronicles of the kings of Israel?
9299                                                                                                                                                                                                                                                                                                                                                                      In the twenty and seventh year of Asa king of Judah did Zimri reign seven days in Tirzah. And the people were encamped against Gibbethon, which belonged to the Philistines.
9300                                                                                                                                                                                                                                                                                                                                                  And the people that were encamped heard say, Zimri hath conspired, and hath also slain the king: wherefore all Israel made Omri, the captain of the host, king over Israel that day in the camp.
9301                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah.
9302                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Zimri saw that the city was taken, that he went into the palace of the king's house, and burnt the king's house over him with fire, and died.
9303                                                                                                                                                                                                                                                                                                                                                                                       For his sins which he sinned in doing evil in the sight of the LORD, in walking in the way of Jeroboam, and in his sin which he did, to make Israel to sin.
9304                                                                                                                                                                                                                                                                                                                                                                                                    Now the rest of the acts of Zimri, and his treason that he wrought, are they not written in the book of the chronicles of the kings of Israel?
9305                                                                                                                                                                                                                                                                                                                                                                                             Then were the people of Israel divided into two parts: half of the people followed Tibni the son of Ginath, to make him king; and half followed Omri.
9306                                                                                                                                                                                                                                                                                                                                                                                                            But the people that followed Omri prevailed against the people that followed Tibni the son of Ginath: so Tibni died, and Omri reigned.
9307                                                                                                                                                                                                                                                                                                                                                                                                                  In the thirty and first year of Asa king of Judah began Omri to reign over Israel, twelve years: six years reigned he in Tirzah.
9308                                                                                                                                                                                                                                                                                                                                                  And he bought the hill Samaria of Shemer for two talents of silver, and built on the hill, and called the name of the city which he built, after the name of Shemer, owner of the hill, Samaria.
9309                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Omri wrought evil in the eyes of the LORD, and did worse than all that were before him.
9310                                                                                                                                                                                                                                                                                                                                                                        For he walked in all the way of Jeroboam the son of Nebat, and in his sin wherewith he made Israel to sin, to provoke the LORD God of Israel to anger with their vanities.
9311                                                                                                                                                                                                                                                                                                                                                                                           Now the rest of the acts of Omri which he did, and his might that he showed, are they not written in the book of the chronicles of the kings of Israel?
9312                                                                                                                                                                                                                                                                                                                                                                                                                                                 So Omri slept with his fathers, and was buried in Samaria: and Ahab his son reigned in his stead.
9313                                                                                                                                                                                                                                                                                                                                                             And in the thirty and eighth year of Asa king of Judah began Ahab the son of Omri to reign over Israel: and Ahab the son of Omri reigned over Israel in Samaria twenty and two years.
9314                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ahab the son of Omri did evil in the sight of the LORD above all that were before him.
9315                                                                                                                                                                                                                                                                                                          And it came to pass, as if it had been a light thing for him to walk in the sins of Jeroboam the son of Nebat, that he took to wife Jezebel the daughter of Ethbaal king of the Zidonians, and went and served Baal, and worshipped him.
9316                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he reared up an altar for Baal in the house of Baal, which he had built in Samaria.
9317                                                                                                                                                                                                                                                                                                                                                                                                            And Ahab made a grove; and Ahab did more to provoke the LORD God of Israel to anger than all the kings of Israel that were before him.
9318                                                                                                                                                                                                                                                                                                     In his days did Hiel the Bethelite build Jericho: he laid the foundation thereof in Abiram his firstborn, and set up the gates thereof in his youngest son Segub, according to the word of the LORD, which he spake by Joshua the son of Nun.
9319                                                                                                                                                                                                                                                                                                                                      And Elijah the Tishbite, who was of the inhabitants of Gilead, said unto Ahab, As the LORD God of Israel liveth, before whom I stand, there shall not be dew nor rain these years, but according to my word.
9320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the word of the LORD came unto him, saying,
9321                                                                                                                                                                                                                                                                                                                                                                                                                                             Get thee hence, and turn thee eastward, and hide thyself by the brook Cherith, that is before Jordan.
9322                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall be, that thou shalt drink of the brook; and I have commanded the ravens to feed thee there.
9323                                                                                                                                                                                                                                                                                                                                                                                                                        So he went and did according unto the word of the LORD: for he went and dwelt by the brook Cherith, that is before Jordan.
9324                                                                                                                                                                                                                                                                                                                                                                                                                         And the ravens brought him bread and flesh in the morning, and bread and flesh in the evening; and he drank of the brook.
9325                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass after a while, that the brook dried up, because there had been no rain in the land.
9326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the word of the LORD came unto him, saying,
9327                                                                                                                                                                                                                                                                                                                                                                                                            Arise, get thee to Zarephath, which belongeth to Zidon, and dwell there: behold, I have commanded a widow woman there to sustain thee.
9328                                                                                                                                                                                                                                                                                                          So he arose and went to Zarephath. And when he came to the gate of the city, behold, the widow woman was there gathering of sticks: and he called to her, and said, Fetch me, I pray thee, a little water in a vessel, that I may drink.
9329                                                                                                                                                                                                                                                                                                                                                                                                                             And as she was going to fetch it, he called to her, and said, Bring me, I pray thee, a morsel of bread in thine hand.
9330                                                                                                                                                                                                                                                                                               And she said, As the LORD thy God liveth, I have not a cake, but an handful of meal in a barrel, and a little oil in a cruse: and, behold, I am gathering two sticks, that I may go in and dress it for me and my son, that we may eat it, and die.
9331                                                                                                                                                                                                                                                                                                                                                                          And Elijah said unto her, Fear not; go and do as thou hast said: but make me thereof a little cake first, and bring it unto me, and after make for thee and for thy son.
9332                                                                                                                                                                                                                                                                                                                                                                          For thus saith the LORD God of Israel, The barrel of meal shall not waste, neither shall the cruse of oil fail, until the day that the LORD sendeth rain upon the earth.
9333                                                                                                                                                                                                                                                                                                                                                                                                                                        And she went and did according to the saying of Elijah: and she, and he, and her house, did eat many days.
9334                                                                                                                                                                                                                                                                                                                                                                                                                And the barrel of meal wasted not, neither did the cruse of oil fail, according to the word of the LORD, which he spake by Elijah.
9335                                                                                                                                                                                                                                                                                                                                                                      And it came to pass after these things, that the son of the woman, the mistress of the house, fell sick; and his sickness was so sore, that there was no breath left in him.
9336                                                                                                                                                                                                                                                                                                                                                                                                And she said unto Elijah, What have I to do with thee, O thou man of God? art thou come unto me to call my sin to remembrance, and to slay my son?
9337                                                                                                                                                                                                                                                                                                                                                                                           And he said unto her, Give me thy son. And he took him out of her bosom, and carried him up into a loft, where he abode, and laid him upon his own bed.
9338                                                                                                                                                                                                                                                                                                                                                                                                          And he cried unto the LORD, and said, O LORD my God, hast thou also brought evil upon the widow with whom I sojourn, by slaying her son?
9339                                                                                                                                                                                                                                                                                                                                                                                    And he stretched himself upon the child three times, and cried unto the LORD, and said, O LORD my God, I pray thee, let this child's soul come into him again.
9340                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD heard the voice of Elijah; and the soul of the child came into him again, and he revived.
9341                                                                                                                                                                                                                                                                                                                                                                                       And Elijah took the child, and brought him down out of the chamber into the house, and delivered him unto his mother: and Elijah said, See, thy son liveth.
9342                                                                                                                                                                                                                                                                                                                                                                                                                 And the woman said to Elijah, Now by this I know that thou art a man of God, and that the word of the LORD in thy mouth is truth.
9343                                                                                                                                                                                                                                                                                                                                                                         And it came to pass after many days, that the word of the LORD came to Elijah in the third year, saying, Go, show thyself unto Ahab; and I will send rain upon the earth.
9344                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Elijah went to show himself unto Ahab. And there was a sore famine in Samaria.
9345                                                                                                                                                                                                                                                                                                                                                                                                                                               And Ahab called Obadiah, which was the governor of his house. (Now Obadiah feared the LORD greatly:
9346                                                                                                                                                                                                                                                                                                                                                                         For it was so, when Jezebel cut off the prophets of the LORD, that Obadiah took an hundred prophets, and hid them by fifty in a cave, and fed them with bread and water.)
9347                                                                                                                                                                                                                                                                                                                                               And Ahab said unto Obadiah, Go into the land, unto all fountains of water, and unto all brooks: peradventure we may find grass to save the horses and mules alive, that we lose not all the beasts.
9348                                                                                                                                                                                                                                                                                                                                                                                                               So they divided the land between them to pass throughout it: Ahab went one way by himself, and Obadiah went another way by himself.
9349                                                                                                                                                                                                                                                                                                                                                                                                             And as Obadiah was in the way, behold, Elijah met him: and he knew him, and fell on his face, and said, Art thou that my lord Elijah?
9350                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he answered him, I am: go, tell thy lord, Behold, Elijah is here.
9351                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said, What have I sinned, that thou wouldest deliver thy servant into the hand of Ahab, to slay me?
9352                                                                                                                                                                                                                                                                                                                                  As the LORD thy God liveth, there is no nation or kingdom, whither my lord hath not sent to seek thee: and when they said, He is not there; he took an oath of the kingdom and nation, that they found thee not.
9353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And now thou sayest, Go, tell thy lord, Behold, Elijah is here.
9354                                                                                                                                                                                                                                                                                           And it shall come to pass, as soon as I am gone from thee, that the Spirit of the LORD shall carry thee whither I know not; and so when I come and tell Ahab, and he cannot find thee, he shall slay me: but I thy servant fear the LORD from my youth.
9355                                                                                                                                                                                                                                                                                                                                                             Was it not told my lord what I did when Jezebel slew the prophets of the LORD, how I hid an hundred men of the LORD's prophets by fifty in a cave, and fed them with bread and water?
9356                                                                                                                                                                                                                                                                                                                                                                                                                                                             And now thou sayest, Go, tell thy lord, Behold, Elijah is here: and he shall slay me.
9357                                                                                                                                                                                                                                                                                                                                                                                                                                     And Elijah said, As the LORD of hosts liveth, before whom I stand, I will surely show myself unto him to day.
9358                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Obadiah went to meet Ahab, and told him: and Ahab went to meet Elijah.
9359                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when Ahab saw Elijah, that Ahab said unto him, Art thou he that troubleth Israel?
9360                                                                                                                                                                                                                                                                                                                                                                              And he answered, I have not troubled Israel; but thou, and thy father's house, in that ye have forsaken the commandments of the LORD, and thou hast followed Baalim.
9361                                                                                                                                                                                                                                                                                                                                                    Now therefore send, and gather to me all Israel unto mount Carmel, and the prophets of Baal four hundred and fifty, and the prophets of the groves four hundred, which eat at Jezebel's table.
9362                                                                                                                                                                                                                                                                                                                                                                                                                                               So Ahab sent unto all the children of Israel, and gathered the prophets together unto mount Carmel.
9363                                                                                                                                                                                                                                                                                                                                                       And Elijah came unto all the people, and said, How long halt ye between two opinions? if the LORD be God, follow him: but if Baal, then follow him. And the people answered him not a word.
9364                                                                                                                                                                                                                                                                                                                                                                                                               Then said Elijah unto the people, I, even I only, remain a prophet of the LORD; but Baal's prophets are four hundred and fifty men.
9365                                                                                                                                                                                                                                                                                                          Let them therefore give us two bullocks; and let them choose one bullock for themselves, and cut it in pieces, and lay it on wood, and put no fire under: and I will dress the other bullock, and lay it on wood, and put no fire under:
9366                                                                                                                                                                                                                                                                                                                                                       And call ye on the name of your gods, and I will call on the name of the LORD: and the God that answereth by fire, let him be God. And all the people answered and said, It is well spoken.
9367                                                                                                                                                                                                                                                                                                                                                                  And Elijah said unto the prophets of Baal, Choose you one bullock for yourselves, and dress it first; for ye are many; and call on the name of your gods, but put no fire under.
9368                                                                                                                                                                                                                                                                                          And they took the bullock which was given them, and they dressed it, and called on the name of Baal from morning even until noon, saying, O Baal, hear us. But there was no voice, nor any that answered. And they leaped upon the altar which was made.
9369                                                                                                                                                                                                                                                                                                                                      And it came to pass at noon, that Elijah mocked them, and said, Cry aloud: for he is a god; either he is talking, or he is pursuing, or he is in a journey, or peradventure he sleepeth, and must be awaked.
9370                                                                                                                                                                                                                                                                                                                                                                                                                         And they cried aloud, and cut themselves after their manner with knives and lancets, till the blood gushed out upon them.
9371                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when midday was past, and they prophesied until the time of the offering of the evening sacrifice, that there was neither voice, nor any to answer, nor any that regarded.
9372                                                                                                                                                                                                                                                                                                                                                                                        And Elijah said unto all the people, Come near unto me. And all the people came near unto him. And he repaired the altar of the LORD that was broken down.
9373                                                                                                                                                                                                                                                                                                                                                                                 And Elijah took twelve stones, according to the number of the tribes of the sons of Jacob, unto whom the word of the LORD came, saying, Israel shall be thy name:
9374                                                                                                                                                                                                                                                                                                                                                                                              And with the stones he built an altar in the name of the LORD: and he made a trench about the altar, as great as would contain two measures of seed.
9375                                                                                                                                                                                                                                                                                                                                                               And he put the wood in order, and cut the bullock in pieces, and laid him on the wood, and said, Fill four barrels with water, and pour it on the burnt sacrifice, and on the wood.
9376                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Do it the second time. And they did it the second time. And he said, Do it the third time. And they did it the third time.
9377                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the water ran round about the altar; and he filled the trench also with water.
9378                                                                                                                                                                                                                                             And it came to pass at the time of the offering of the evening sacrifice, that Elijah the prophet came near, and said, LORD God of Abraham, Isaac, and of Israel, let it be known this day that thou art God in Israel, and that I am thy servant, and that I have done all these things at thy word.
9379                                                                                                                                                                                                                                                                                                                                                                                                                 Hear me, O LORD, hear me, that this people may know that thou art the LORD God, and that thou hast turned their heart back again.
9380                                                                                                                                                                                                                                                                                                                                                                                     Then the fire of the LORD fell, and consumed the burnt sacrifice, and the wood, and the stones, and the dust, and licked up the water that was in the trench.
9381                                                                                                                                                                                                                                                                                                                                                                                                                        And when all the people saw it, they fell on their faces: and they said, The LORD, he is the God; the LORD, he is the God.
9382                                                                                                                                                                                                                                                                                                                                                                      And Elijah said unto them, Take the prophets of Baal; let not one of them escape. And they took them: and Elijah brought them down to the brook Kishon, and slew them there.
9383                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Elijah said unto Ahab, Get thee up, eat and drink; for there is a sound of abundance of rain.
9384                                                                                                                                                                                                                                                                                                                                                                                        So Ahab went up to eat and to drink. And Elijah went up to the top of Carmel; and he cast himself down upon the earth, and put his face between his knees,
9385                                                                                                                                                                                                                                                                                                                                                                                               And said to his servant, Go up now, look toward the sea. And he went up, and looked, and said, There is nothing. And he said, Go again seven times.
9386                                                                                                                                                                                                                                                                                                             And it came to pass at the seventh time, that he said, Behold, there ariseth a little cloud out of the sea, like a man's hand. And he said, Go up, say unto Ahab, Prepare thy chariot, and get thee down that the rain stop thee not.
9387                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass in the mean while, that the heaven was black with clouds and wind, and there was a great rain. And Ahab rode, and went to Jezreel.
9388                                                                                                                                                                                                                                                                                                                                                                                                                               And the hand of the LORD was on Elijah; and he girded up his loins, and ran before Ahab to the entrance of Jezreel.
9389                                                                                                                                                                                                                                                                                                                                                                                                                                      And Ahab told Jezebel all that Elijah had done, and withal how he had slain all the prophets with the sword.
9390                                                                                                                                                                                                                                                                                                                                                                       Then Jezebel sent a messenger unto Elijah, saying, So let the gods do to me, and more also, if I make not thy life as the life of one of them by to morrow about this time.
9391                                                                                                                                                                                                                                                                                                                                                                                                               And when he saw that, he arose, and went for his life, and came to Beersheba, which belongeth to Judah, and left his servant there.
9392                                                                                                                                                                                                                                                                                                 But he himself went a day's journey into the wilderness, and came and sat down under a juniper tree: and he requested for himself that he might die; and said, It is enough; now, O LORD, take away my life; for I am not better than my fathers.
9393                                                                                                                                                                                                                                                                                                                                                                                                                                And as he lay and slept under a juniper tree, behold, then an angel touched him, and said unto him, Arise and eat.
9394                                                                                                                                                                                                                                                                                                                                                                                             And he looked, and, behold, there was a cake baken on the coals, and a cruse of water at his head. And he did eat and drink, and laid him down again.
9395                                                                                                                                                                                                                                                                                                                                                                                                        And the angel of the LORD came again the second time, and touched him, and said, Arise and eat; because the journey is too great for thee.
9396                                                                                                                                                                                                                                                                                                                                                                                                               And he arose, and did eat and drink, and went in the strength of that meat forty days and forty nights unto Horeb the mount of God.
9397                                                                                                                                                                                                                                                                                                                                                                                             And he came thither unto a cave, and lodged there; and, behold, the word of the LORD came to him, and he said unto him, What doest thou here, Elijah?
9398                                                                                                                                                                                                                                                                                     And he said, I have been very jealous for the LORD God of hosts: for the children of Israel have forsaken thy covenant, thrown down thine altars, and slain thy prophets with the sword; and I, even I only, am left; and they seek my life, to take it away.
9399                                                                                                                                                                                                                                      And he said, Go forth, and stand upon the mount before the LORD. And, behold, the LORD passed by, and a great and strong wind rent the mountains, and brake in pieces the rocks before the LORD; but the LORD was not in the wind: and after the wind an earthquake; but the LORD was not in the earthquake:
9400                                                                                                                                                                                                                                                                                                                                                                                                                                        And after the earthquake a fire; but the LORD was not in the fire: and after the fire a still small voice.
9401                                                                                                                                                                                                                                                                                                                            And it was so, when Elijah heard it, that he wrapped his face in his mantle, and went out, and stood in the entering in of the cave. And, behold, there came a voice unto him, and said, What doest thou here, Elijah?
9402                                                                                                                                                                                                                                                                                 And he said, I have been very jealous for the LORD God of hosts: because the children of Israel have forsaken thy covenant, thrown down thine altars, and slain thy prophets with the sword; and I, even I only, am left; and they seek my life, to take it away.
9403                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto him, Go, return on thy way to the wilderness of Damascus: and when thou comest, anoint Hazael to be king over Syria:
9404                                                                                                                                                                                                                                                                                                                                                                                    And Jehu the son of Nimshi shalt thou anoint to be king over Israel: and Elisha the son of Shaphat of Abelmeholah shalt thou anoint to be prophet in thy room.
9405                                                                                                                                                                                                                                                                                                                                                                                            And it shall come to pass, that him that escapeth the sword of Hazael shall Jehu slay: and him that escapeth from the sword of Jehu shall Elisha slay.
9406                                                                                                                                                                                                                                                                                                                                                                                                             Yet I have left me seven thousand in Israel, all the knees which have not bowed unto Baal, and every mouth which hath not kissed him.
9407                                                                                                                                                                                                                                                                                                                                                 So he departed thence, and found Elisha the son of Shaphat, who was plowing with twelve yoke of oxen before him, and he with the twelfth: and Elijah passed by him, and cast his mantle upon him.
9408                                                                                                                                                                                                                                                                                                                                          And he left the oxen, and ran after Elijah, and said, Let me, I pray thee, kiss my father and my mother, and then I will follow thee. And he said unto him, Go back again: for what have I done to thee?
9409                                                                                                                                                                                                                                                                                                        And he returned back from him, and took a yoke of oxen, and slew them, and boiled their flesh with the instruments of the oxen, and gave unto the people, and they did eat. Then he arose, and went after Elijah, and ministered unto him.
9410                                                                                                                                                                                                                                                                                                                                                And Benhadad the king of Syria gathered all his host together: and there were thirty and two kings with him, and horses, and chariots; and he went up and besieged Samaria, and warred against it.
9411                                                                                                                                                                                                                                                                                                                                                                                                                                              And he sent messengers to Ahab king of Israel into the city, and said unto him, Thus saith Benhadad,
9412                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thy silver and thy gold is mine; thy wives also and thy children, even the goodliest, are mine.
9413                                                                                                                                                                                                                                                                                                                                                                                                                              And the king of Israel answered and said, My lord, O king, according to thy saying, I am thine, and all that I have.
9414                                                                                                                                                                                                                                                                                                                                                 And the messengers came again, and said, Thus speaketh Benhadad, saying, Although I have sent unto thee, saying, Thou shalt deliver me thy silver, and thy gold, and thy wives, and thy children;
9415                                                                                                                                                                                                                                                                                                Yet I will send my servants unto thee to morrow about this time, and they shall search thine house, and the houses of thy servants; and it shall be, that whatsoever is pleasant in thine eyes, they shall put it in their hand, and take it away.
9416                                                                                                                                                                                                                                                                                                    Then the king of Israel called all the elders of the land, and said, Mark, I pray you, and see how this man seeketh mischief: for he sent unto me for my wives, and for my children, and for my silver, and for my gold; and I denied him not.
9417                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the elders and all the people said unto him, Hearken not unto him, nor consent.
9418                                                                                                                                                                                                                                                                                                               Wherefore he said unto the messengers of Benhadad, Tell my lord the king, All that thou didst send for to thy servant at the first I will do: but this thing I may not do. And the messengers departed, and brought him word again.
9419                                                                                                                                                                                                                                                                                                                                                                                 And Benhadad sent unto him, and said, The gods do so unto me, and more also, if the dust of Samaria shall suffice for handfuls for all the people that follow me.
9420                                                                                                                                                                                                                                                                                                                                                                                                              And the king of Israel answered and said, Tell him, Let not him that girdeth on his harness boast himself as he that putteth it off.
9421                                                                                                                                                                                                                                                                                                                        And it came to pass, when Ben-hadad heard this message, as he was drinking, he and the kings in the pavilions, that he said unto his servants, Set yourselves in array. And they set themselves in array against the city.
9422                                                                                                                                                                                                                                                                                                                     And, behold, there came a prophet unto Ahab king of Israel, saying, Thus saith the LORD, Hast thou seen all this great multitude? behold, I will deliver it into thine hand this day; and thou shalt know that I am the LORD.
9423                                                                                                                                                                                                                                                                                                                                                                 And Ahab said, By whom? And he said, Thus saith the LORD, Even by the young men of the princes of the provinces. Then he said, Who shall order the battle? And he answered, Thou.
9424                                                                                                                                                                                                                                                                                                                                       Then he numbered the young men of the princes of the provinces, and they were two hundred and thirty two: and after them he numbered all the people, even all the children of Israel, being seven thousand.
9425                                                                                                                                                                                                                                                                                                                                                                                                  And they went out at noon. But Benhadad was drinking himself drunk in the pavilions, he and the kings, the thirty and two kings that helped him.
9426                                                                                                                                                                                                                                                                                                                                                                                            And the young men of the princes of the provinces went out first; and Benhadad sent out, and they told him, saying, There are men come out of Samaria.
9427                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Whether they be come out for peace, take them alive; or whether they be come out for war, take them alive.
9428                                                                                                                                                                                                                                                                                                                                                                                                                                        So these young men of the princes of the provinces came out of the city, and the army which followed them.
9429                                                                                                                                                                                                                                                                                                                                                                                             And they slew every one his man: and the Syrians fled; and Israel pursued them: and Benhadad the king of Syria escaped on an horse with the horsemen.
9430                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king of Israel went out, and smote the horses and chariots, and slew the Syrians with a great slaughter.
9431                                                                                                                                                                                                                                                                                                                                              And the prophet came to the king of Israel, and said unto him, Go, strengthen thyself, and mark, and see what thou doest: for at the return of the year the king of Syria will come up against thee.
9432                                                                                                                                                                                                                                                                                                                               And the servants of the king of Syria said unto him, Their gods are gods of the hills; therefore they were stronger than we; but let us fight against them in the plain, and surely we shall be stronger than they.
9433                                                                                                                                                                                                                                                                                                                                                                                                                                              And do this thing, Take the kings away, every man out of his place, and put captains in their rooms:
9434                                                                                                                                                                                                                                                                                                      And number thee an army, like the army that thou hast lost, horse for horse, and chariot for chariot: and we will fight against them in the plain, and surely we shall be stronger than they. And he hearkened unto their voice, and did so.
9435                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass at the return of the year, that Benhadad numbered the Syrians, and went up to Aphek, to fight against Israel.
9436                                                                                                                                                                                                                                                                                                                                         And the children of Israel were numbered, and were all present, and went against them: and the children of Israel pitched before them like two little flocks of kids; but the Syrians filled the country.
9437                                                                                                                                                                                                                                            And there came a man of God, and spake unto the king of Israel, and said, Thus saith the LORD, Because the Syrians have said, The LORD is God of the hills, but he is not God of the valleys, therefore will I deliver all this great multitude into thine hand, and ye shall know that I am the LORD.
9438                                                                                                                                                                                                                                                                                                                                      And they pitched one over against the other seven days. And so it was, that in the seventh day the battle was joined: and the children of Israel slew of the Syrians an hundred thousand footmen in one day.
9439                                                                                                                                                                                                                                                                                                                                                      But the rest fled to Aphek, into the city; and there a wall fell upon twenty and seven thousand of the men that were left. And Benhadad fled, and came into the city, into an inner chamber.
9440                                                                                                                                                                                                                                                                              And his servants said unto him, Behold now, we have heard that the kings of the house of Israel are merciful kings: let us, I pray thee, put sackcloth on our loins, and ropes upon our heads, and go out to the king of Israel: peradventure he will save thy life.
9441                                                                                                                                                                                                                                                                                                                            So they girded sackcloth on their loins, and put ropes on their heads, and came to the king of Israel, and said, Thy servant Benhadad saith, I pray thee, let me live. And he said, Is he yet alive? he is my brother.
9442                                                                                                                                                                                                                                                                                          Now the men did diligently observe whether any thing would come from him, and did hastily catch it: and they said, Thy brother Benhadad. Then he said, Go ye, bring him. Then Benhadad came forth to him; and he caused him to come up into the chariot.
9443                                                                                                                                                                                                                                                       And Ben-hadad said unto him, The cities, which my father took from thy father, I will restore; and thou shalt make streets for thee in Damascus, as my father made in Samaria. Then said Ahab, I will send thee away with this covenant. So he made a covenant with him, and sent him away.
9444                                                                                                                                                                                                                                                                                                                                                                                            And a certain man of the sons of the prophets said unto his neighbor in the word of the LORD, Smite me, I pray thee. And the man refused to smite him.
9445                                                                                                                                                                                                                                                                                                                         Then said he unto him, Because thou hast not obeyed the voice of the LORD, behold, as soon as thou art departed from me, a lion shall slay thee. And as soon as he was departed from him, a lion found him, and slew him.
9446                                                                                                                                                                                                                                                                                                                                                                                                                             Then he found another man, and said, Smite me, I pray thee. And the man smote him, so that in smiting he wounded him.
9447                                                                                                                                                                                                                                                                                                                                                                                                                                      So the prophet departed, and waited for the king by the way, and disguised himself with ashes upon his face.
9448                                                                                                                                                                                                                            And as the king passed by, he cried unto the king: and he said, Thy servant went out into the midst of the battle; and, behold, a man turned aside, and brought a man unto me, and said, Keep this man: if by any means he be missing, then shall thy life be for his life, or else thou shalt pay a talent of silver.
9449                                                                                                                                                                                                                                                                                                                                                                                                 And as thy servant was busy here and there, he was gone. And the king of Israel said unto him, So shall thy judgment be; thyself hast decided it.
9450                                                                                                                                                                                                                                                                                                                                                                                                                           And he hasted, and took the ashes away from his face; and the king of Israel discerned him that he was of the prophets.
9451                                                                                                                                                                                                                                                                                                                                         And he said unto him, Thus saith the LORD, Because thou hast let go out of thy hand a man whom I appointed to utter destruction, therefore thy life shall go for his life, and thy people for his people.
9452                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Israel went to his house heavy and displeased, and came to Samaria.
9453                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass after these things, that Naboth the Jezreelite had a vineyard, which was in Jezreel, hard by the palace of Ahab king of Samaria.
9454                                                                                                                                                                                                                                                                              And Ahab spake unto Naboth, saying, Give me thy vineyard, that I may have it for a garden of herbs, because it is near unto my house: and I will give thee for it a better vineyard than it; or, if it seem good to thee, I will give thee the worth of it in money.
9455                                                                                                                                                                                                                                                                                                                                                                                                                                       And Naboth said to Ahab, The LORD forbid it me, that I should give the inheritance of my fathers unto thee.
9456                                                                                                                                                                                                                                                                    And Ahab came into his house heavy and displeased because of the word which Naboth the Jezreelite had spoken to him: for he had said, I will not give thee the inheritance of my fathers. And he laid him down upon his bed, and turned away his face, and would eat no bread.
9457                                                                                                                                                                                                                                                                                                                                                                                                                                         But Jezebel his wife came to him, and said unto him, Why is thy spirit so sad, that thou eatest no bread?
9458                                                                                                                                                                                                                                                                                                     And he said unto her, Because I spake unto Naboth the Jezreelite, and said unto him, Give me thy vineyard for money; or else, if it please thee, I will give thee another vineyard for it: and he answered, I will not give thee my vineyard.
9459                                                                                                                                                                                                                                                                                                                                                       And Jezebel his wife said unto him, Dost thou now govern the kingdom of Israel? arise, and eat bread, and let thine heart be merry: I will give thee the vineyard of Naboth the Jezreelite.
9460                                                                                                                                                                                                                                                                                                                                                                           So she wrote letters in Ahab's name, and sealed them with his seal, and sent the letters unto the elders and to the nobles that were in his city, dwelling with Naboth.
9461                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she wrote in the letters, saying, Proclaim a fast, and set Naboth on high among the people:
9462                                                                                                                                                                                                                                                                                                                                                                  And set two men, sons of Belial, before him, to bear witness against him, saying, Thou didst blaspheme God and the king. And then carry him out, and stone him, that he may die.
9463                                                                                                                                                                                                                                                                                                                                               And the men of his city, even the elders and the nobles who were the inhabitants in his city, did as Jezebel had sent unto them, and as it was written in the letters which she had sent unto them.
9464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They proclaimed a fast, and set Naboth on high among the people.
9465                                                                                                                                                                                                                                         And there came in two men, children of Belial, and sat before him: and the men of Belial witnessed against him, even against Naboth, in the presence of the people, saying, Naboth did blaspheme God and the king. Then they carried him forth out of the city, and stoned him with stones, that he died.
9466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then they sent to Jezebel, saying, Naboth is stoned, and is dead.
9467                                                                                                                                                                                                                                                                                             And it came to pass, when Jezebel heard that Naboth was stoned, and was dead, that Jezebel said to Ahab, Arise, take possession of the vineyard of Naboth the Jezreelite, which he refused to give thee for money: for Naboth is not alive, but dead.
9468                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when Ahab heard that Naboth was dead, that Ahab rose up to go down to the vineyard of Naboth the Jezreelite, to take possession of it.
9469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the word of the LORD came to Elijah the Tishbite, saying,
9470                                                                                                                                                                                                                                                                                                                                                                                                  Arise, go down to meet Ahab king of Israel, which is in Samaria: behold, he is in the vineyard of Naboth, whither he is gone down to possess it.
9471                                                                                                                                                                                                                                                                                    And thou shalt speak unto him, saying, Thus saith the LORD, Hast thou killed, and also taken possession? And thou shalt speak unto him, saying, Thus saith the LORD, In the place where dogs licked the blood of Naboth shall dogs lick thy blood, even thine.
9472                                                                                                                                                                                                                                                                                                                                                                              And Ahab said to Elijah, Hast thou found me, O mine enemy? And he answered, I have found thee: because thou hast sold thyself to work evil in the sight of the LORD.
9473                                                                                                                                                                                                                                                                                                                                                                  Behold, I will bring evil upon thee, and will take away thy posterity, and will cut off from Ahab him that pisseth against the wall, and him that is shut up and left in Israel,
9474                                                                                                                                                                                                                                                                                                                                      And will make thine house like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah, for the provocation wherewith thou hast provoked me to anger, and made Israel to sin.
9475                                                                                                                                                                                                                                                                                                                                                                                                                                                    And of Jezebel also spake the LORD, saying, The dogs shall eat Jezebel by the wall of Jezreel.
9476                                                                                                                                                                                                                                                                                                                                                                                                                            Him that dieth of Ahab in the city the dogs shall eat; and him that dieth in the field shall the fowls of the air eat.
9477                                                                                                                                                                                                                                                                                                                                                                                                          But there was none like unto Ahab, which did sell himself to work wickedness in the sight of the LORD, whom Jezebel his wife stirred up.
9478                                                                                                                                                                                                                                                                                                                                                                                                 And he did very abominably in following idols, according to all things as did the Amorites, whom the LORD cast out before the children of Israel.
9479                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when Ahab heard those words, that he rent his clothes, and put sackcloth upon his flesh, and fasted, and lay in sackcloth, and went softly.
9480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the word of the LORD came to Elijah the Tishbite, saying,
9481                                                                                                                                                                                                                                                                                                                                                         Seest thou how Ahab humbleth himself before me? because he humbleth himself before me, I will not bring the evil in his days: but in his son's days will I bring the evil upon his house.
9482                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they continued three years without war between Syria and Israel.
9483                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass in the third year, that Jehoshaphat the king of Judah came down to the king of Israel.
9484                                                                                                                                                                                                                                                                                                                                                                                      And the king of Israel said unto his servants, Know ye that Ramoth in Gilead is ours, and we be still, and take it not out of the hand of the king of Syria?
9485                                                                                                                                                                                                                                                                                                                                                     And he said unto Jehoshaphat, Wilt thou go with me to battle to Ramothgilead? And Jehoshaphat said to the king of Israel, I am as thou art, my people as thy people, my horses as thy horses.
9486                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day.
9487                                                                                                                                                                                                                                                                                                 Then the king of Israel gathered the prophets together, about four hundred men, and said unto them, Shall I go against Ramothgilead to battle, or shall I forbear? And they said, Go up; for the LORD shall deliver it into the hand of the king.
9488                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him?
9489                                                                                                                                                                                                                                                                                           And the king of Israel said unto Jehoshaphat, There is yet one man, Micaiah the son of Imlah, by whom we may enquire of the LORD: but I hate him; for he doth not prophesy good concerning me, but evil. And Jehoshaphat said, Let not the king say so.
9490                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then the king of Israel called an officer, and said, Hasten hither Micaiah the son of Imlah.
9491                                                                                                                                                                                                                                                                                                                                  And the king of Israel and Jehoshaphat the king of Judah sat each on his throne, having put on their robes, in a void place in the entrance of the gate of Samaria; and all the prophets prophesied before them.
9492                                                                                                                                                                                                                                                                                                                                                                                And Zedekiah the son of Chenaanah made him horns of iron: and he said, Thus saith the LORD, With these shalt thou push the Syrians, until thou have consumed them.
9493                                                                                                                                                                                                                                                                                                                                                                                                               And all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the king's hand.
9494                                                                                                                                                                                                                                                                                                And the messenger that was gone to call Micaiah spake unto him, saying, Behold now, the words of the prophets declare good unto the king with one mouth: let thy word, I pray thee, be like the word of one of them, and speak that which is good.
9495                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Micaiah said, As the LORD liveth, what the LORD saith unto me, that will I speak.
9496                                                                                                                                                                                                                                                                                                                      So he came to the king. And the king said unto him, Micaiah, shall we go against Ramothgilead to battle, or shall we forbear? And he answered him, Go, and prosper: for the LORD shall deliver it into the hand of the king.
9497                                                                                                                                                                                                                                                                                                                                                                                                          And the king said unto him, How many times shall I adjure thee that thou tell me nothing but that which is true in the name of the LORD?
9498                                                                                                                                                                                                                                                                                                                                                              And he said, I saw all Israel scattered upon the hills, as sheep that have not a shepherd: and the LORD said, These have no master: let them return every man to his house in peace.
9499                                                                                                                                                                                                                                                                                                                                                                                                                         And the king of Israel said unto Jehoshaphat, Did I not tell thee that he would prophesy no good concerning me, but evil?
9500                                                                                                                                                                                                                                                                                                                                                                        And he said, Hear thou therefore the word of the LORD: I saw the LORD sitting on his throne, and all the host of heaven standing by him on his right hand and on his left.
9501                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said, Who shall persuade Ahab, that he may go up and fall at Ramothgilead? And one said on this manner, and another said on that manner.
9502                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there came forth a spirit, and stood before the LORD, and said, I will persuade him.
9503                                                                                                                                                                                                                                                                                                                                  And the LORD said unto him, Wherewith? And he said, I will go forth, and I will be a lying spirit in the mouth of all his prophets. And he said, Thou shalt persuade him, and prevail also: go forth, and do so.
9504                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore, behold, the LORD hath put a lying spirit in the mouth of all these thy prophets, and the LORD hath spoken evil concerning thee.
9505                                                                                                                                                                                                                                                                                                                                                                                          But Zedekiah the son of Chenaanah went near, and smote Micaiah on the cheek, and said, Which way went the Spirit of the LORD from me to speak unto thee?
9506                                                                                                                                                                                                                                                                                                                                                                                                                                   And Micaiah said, Behold, thou shalt see in that day, when thou shalt go into an inner chamber to hide thyself.
9507                                                                                                                                                                                                                                                                                                                                                                                                                    And the king of Israel said, Take Micaiah, and carry him back unto Amon the governor of the city, and to Joash the king's son;
9508                                                                                                                                                                                                                                                                                                                                                                                           And say, Thus saith the king, Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I come in peace.
9509                                                                                                                                                                                                                                                                                                                                                                                                               And Micaiah said, If thou return at all in peace, the LORD hath not spoken by me. And he said, Hearken, O people, every one of you.
9510                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead.
9511                                                                                                                                                                                                                                                                                                                                                   And the king of Israel said unto Jehoshaphat, I will disguise myself, and enter into the battle; but put thou on thy robes. And the king of Israel disguised himself, and went into the battle.
9512                                                                                                                                                                                                                                                                                                                                                                       But the king of Syria commanded his thirty and two captains that had rule over his chariots, saying, Fight neither with small nor great, save only with the king of Israel.
9513                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when the captains of the chariots saw Jehoshaphat, that they said, Surely it is the king of Israel. And they turned aside to fight against him: and Jehoshaphat cried out.
9514                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when the captains of the chariots perceived that it was not the king of Israel, that they turned back from pursuing him.
9515                                                                                                                                                                                                                                                                                                                     And a certain man drew a bow at a venture, and smote the king of Israel between the joints of the harness: wherefore he said unto the driver of his chariot, Turn thine hand, and carry me out of the host; for I am wounded.
9516                                                                                                                                                                                                                                                                                                                                                             And the battle increased that day: and the king was stayed up in his chariot against the Syrians, and died at even: and the blood ran out of the wound into the midst of the chariot.
9517                                                                                                                                                                                                                                                                                                                                                                                               And there went a proclamation throughout the host about the going down of the sun, saying, Every man to his city, and every man to his own country.
9518                                                                                                                                                                                                                                                                                                                                                                                                                                                                So the king died, and was brought to Samaria; and they buried the king in Samaria.
9519                                                                                                                                                                                                                                                                                                                                                                               And one washed the chariot in the pool of Samaria; and the dogs licked up his blood; and they washed his armor; according unto the word of the LORD which he spake.
9520                                                                                                                                                                                                                                                                                                                                            Now the rest of the acts of Ahab, and all that he did, and the ivory house which he made, and all the cities that he built, are they not written in the book of the chronicles of the kings of Israel?
9521                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Ahab slept with his fathers; and Ahaziah his son reigned in his stead.
9522                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jehoshaphat the son of Asa began to reign over Judah in the fourth year of Ahab king of Israel.
9523                                                                                                                                                                                                                                                                                                                                                                     Jehoshaphat was thirty and five years old when he began to reign; and he reigned twenty and five years in Jerusalem. And his mother's name was Azubah the daughter of Shilhi.
9524                                                                                                                                                                                                                                                                                              And he walked in all the ways of Asa his father; he turned not aside from it, doing that which was right in the eyes of the LORD: nevertheless the high places were not taken away; for the people offered and burnt incense yet in the high places.
9525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jehoshaphat made peace with the king of Israel.
9526                                                                                                                                                                                                                                                                                                                                                                               Now the rest of the acts of Jehoshaphat, and his might that he showed, and how he warred, are they not written in the book of the chronicles of the kings of Judah?
9527                                                                                                                                                                                                                                                                                                                                                                                                                                          And the remnant of the sodomites, which remained in the days of his father Asa, he took out of the land.
9528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There was then no king in Edom: a deputy was king.
9529                                                                                                                                                                                                                                                                                                                                                                                                                          Jehoshaphat made ships of Tharshish to go to Ophir for gold: but they went not; for the ships were broken at Eziongeber.
9530                                                                                                                                                                                                                                                                                                                                                                                                                 Then said Ahaziah the son of Ahab unto Jehoshaphat, Let my servants go with thy servants in the ships. But Jehoshaphat would not.
9531                                                                                                                                                                                                                                                                                                                                                                                                And Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David his father: and Jehoram his son reigned in his stead.
9532                                                                                                                                                                                                                                                                                                                                                                                               Ahaziah the son of Ahab began to reign over Israel in Samaria the seventeenth year of Jehoshaphat king of Judah, and reigned two years over Israel.
9533                                                                                                                                                                                                                                                                                                                                                                 And he did evil in the sight of the LORD, and walked in the way of his father, and in the way of his mother, and in the way of Jeroboam the son of Nebat, who made Israel to sin:
9534                                                                                                                                                                                                                                                                                                                                                                                                                  For he served Baal, and worshipped him, and provoked to anger the LORD God of Israel, according to all that his father had done.
9535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then Moab rebelled against Israel after the death of Ahab.
9536                                                                                                                                                                                                                                                                                                                    And Ahaziah fell down through a lattice in his upper chamber that was in Samaria, and was sick: and he sent messengers, and said unto them, Go, enquire of Baalzebub the god of Ekron whether I shall recover of this disease.
9537                                                                                                                                                                                                                                                                                                        But the angel of the LORD said to Elijah the Tishbite, Arise, go up to meet the messengers of the king of Samaria, and say unto them, Is it not because there is not a God in Israel, that ye go to enquire of Baalzebub the god of Ekron?
9538                                                                                                                                                                                                                                                                                                                                                                                                   Now therefore thus saith the LORD, Thou shalt not come down from that bed on which thou art gone up, but shalt surely die. And Elijah departed.
9539                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when the messengers turned back unto him, he said unto them, Why are ye now turned back?
9540                                                                                                                                                                        And they said unto him, There came a man up to meet us, and said unto us, Go, turn again unto the king that sent you, and say unto him, Thus saith the LORD, Is it not because there is not a God in Israel, that thou sendest to enquire of Baalzebub the god of Ekron? therefore thou shalt not come down from that bed on which thou art gone up, but shalt surely die.
9541                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said unto them, What manner of man was he which came up to meet you, and told you these words?
9542                                                                                                                                                                                                                                                                                                                                                                                                            And they answered him, He was an hairy man, and girt with a girdle of leather about his loins. And he said, It is Elijah the Tishbite.
9543                                                                                                                                                                                                                                                                                                                                           Then the king sent unto him a captain of fifty with his fifty. And he went up to him: and, behold, he sat on the top of an hill. And he spake unto him, Thou man of God, the king hath said, Come down.
9544                                                                                                                                                                                                                                                                                                                            And Elijah answered and said to the captain of fifty, If I be a man of God, then let fire come down from heaven, and consume thee and thy fifty. And there came down fire from heaven, and consumed him and his fifty.
9545                                                                                                                                                                                                                                                                                                                                                                                 Again also he sent unto him another captain of fifty with his fifty. And he answered and said unto him, O man of God, thus hath the king said, Come down quickly.
9546                                                                                                                                                                                                                                                                                                                                          And Elijah answered and said unto them, If I be a man of God, let fire come down from heaven, and consume thee and thy fifty. And the fire of God came down from heaven, and consumed him and his fifty.
9547                                                                                                                                                                                                                                             And he sent again a captain of the third fifty with his fifty. And the third captain of fifty went up, and came and fell on his knees before Elijah, and besought him, and said unto him, O man of God, I pray thee, let my life, and the life of these fifty thy servants, be precious in thy sight.
9548                                                                                                                                                                                                                                                                                                                                                                             Behold, there came fire down from heaven, and burnt up the two captains of the former fifties with their fifties: therefore let my life now be precious in thy sight.
9549                                                                                                                                                                                                                                                                                                                                                                                                           And the angel of the LORD said unto Elijah, Go down with him: be not afraid of him. And he arose, and went down with him unto the king.
9550                                                                                                                                                                                                                                                  And he said unto him, Thus saith the LORD, Forasmuch as thou hast sent messengers to enquire of Baalzebub the god of Ekron, is it not because there is no God in Israel to enquire of his word? therefore thou shalt not come down off that bed on which thou art gone up, but shalt surely die.
9551                                                                                                                                                                                                                                                                                                                                                 So he died according to the word of the LORD which Elijah had spoken. And Jehoram reigned in his stead in the second year of Jehoram the son of Jehoshaphat king of Judah; because he had no son.
9552                                                                                                                                                                                                                                                                                                                                                                                                                      Now the rest of the acts of Ahaziah which he did, are they not written in the book of the chronicles of the kings of Israel?
9553                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when the LORD would take up Elijah into heaven by a whirlwind, that Elijah went with Elisha from Gilgal.
9554                                                                                                                                                                                                                                                                                                                              And Elijah said unto Elisha, Tarry here, I pray thee; for the LORD hath sent me to Bethel. And Elisha said unto him, As the LORD liveth, and as thy soul liveth, I will not leave thee. So they went down to Bethel.
9555                                                                                                                                                                                                                                                                                                                             And the sons of the prophets that were at Bethel came forth to Elisha, and said unto him, Knowest thou that the LORD will take away thy master from thy head to day? And he said, Yea, I know it; hold ye your peace.
9556                                                                                                                                                                                                                                                                                                                                         And Elijah said unto him, Elisha, tarry here, I pray thee; for the LORD hath sent me to Jericho. And he said, As the LORD liveth, and as thy soul liveth, I will not leave thee. So they came to Jericho.
9557                                                                                                                                                                                                                                                                                                                              And the sons of the prophets that were at Jericho came to Elisha, and said unto him, Knowest thou that the LORD will take away thy master from thy head to day? And he answered, Yea, I know it; hold ye your peace.
9558                                                                                                                                                                                                                                                                                                                                                    And Elijah said unto him, Tarry, I pray thee, here; for the LORD hath sent me to Jordan. And he said, As the LORD liveth, and as thy soul liveth, I will not leave thee. And they two went on.
9559                                                                                                                                                                                                                                                                                                                                                                                                                                         And fifty men of the sons of the prophets went, and stood to view afar off: and they two stood by Jordan.
9560                                                                                                                                                                                                                                                                                                                                                                                    And Elijah took his mantle, and wrapped it together, and smote the waters, and they were divided hither and thither, so that they two went over on dry ground.
9561                                                                                                                                                                                                                                                                                                                         And it came to pass, when they were gone over, that Elijah said unto Elisha, Ask what I shall do for thee, before I be taken away from thee. And Elisha said, I pray thee, let a double portion of thy spirit be upon me.
9562                                                                                                                                                                                                                                                                                                                                                                                      And he said, Thou hast asked a hard thing: nevertheless, if thou see me when I am taken from thee, it shall be so unto thee; but if not, it shall not be so.
9563                                                                                                                                                                                                                                                                                                                                          And it came to pass, as they still went on, and talked, that, behold, there appeared a chariot of fire, and horses of fire, and parted them both asunder; and Elijah went up by a whirlwind into heaven.
9564                                                                                                                                                                                                                                                                                                                                                 And Elisha saw it, and he cried, My father, my father, the chariot of Israel, and the horsemen thereof. And he saw him no more: and he took hold of his own clothes, and rent them in two pieces.
9565                                                                                                                                                                                                                                                                                                                                                                                                                                          He took up also the mantle of Elijah that fell from him, and went back, and stood by the bank of Jordan;
9566                                                                                                                                                                                                                                                                                                                              And he took the mantle of Elijah that fell from him, and smote the waters, and said, Where is the LORD God of Elijah? and when he also had smitten the waters, they parted hither and thither: and Elisha went over.
9567                                                                                                                                                                                                                                                                                                                                           And when the sons of the prophets which were to view at Jericho saw him, they said, The spirit of Elijah doth rest on Elisha. And they came to meet him, and bowed themselves to the ground before him.
9568                                                                                                                                                                                                                                                                And they said unto him, Behold now, there be with thy servants fifty strong men; let them go, we pray thee, and seek thy master: lest peradventure the Spirit of the LORD hath taken him up, and cast him upon some mountain, or into some valley. And he said, Ye shall not send.
9569                                                                                                                                                                                                                                                                                                                                                                                                         And when they urged him till he was ashamed, he said, Send. They sent therefore fifty men; and they sought three days, but found him not.
9570                                                                                                                                                                                                                                                                                                                                                                                                                                  And when they came again to him, (for he tarried at Jericho,) he said unto them, Did I not say unto you, Go not?
9571                                                                                                                                                                                                                                                                                                                                                                          And the men of the city said unto Elisha, Behold, I pray thee, the situation of this city is pleasant, as my lord seeth: but the water is naught, and the ground barren.
9572                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, Bring me a new cruse, and put salt therein. And they brought it to him.
9573                                                                                                                                                                                                                                                                                                                                             And he went forth unto the spring of the waters, and cast the salt in there, and said, Thus saith the LORD, I have healed these waters; there shall not be from thence any more death or barren land.
9574                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the waters were healed unto this day, according to the saying of Elisha which he spake.
9575                                                                                                                                                                                                                                                                                                                                     And he went up from thence unto Bethel: and as he was going up by the way, there came forth little children out of the city, and mocked him, and said unto him, Go up, thou bald head; go up, thou bald head.
9576                                                                                                                                                                                                                                                                                                                                                                     And he turned back, and looked on them, and cursed them in the name of the LORD. And there came forth two she bears out of the wood, and tare forty and two children of them.
9577                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he went from thence to mount Carmel, and from thence he returned to Samaria.
9578                                                                                                                                                                                                                                                                                                                                                                                                     Now Jehoram the son of Ahab began to reign over Israel in Samaria the eighteenth year of Jehoshaphat king of Judah, and reigned twelve years.
9579                                                                                                                                                                                                                                                                                                                                                                                           And he wrought evil in the sight of the LORD; but not like his father, and like his mother: for he put away the image of Baal that his father had made.
9580                                                                                                                                                                                                                                                                                                                                                                                                                          Nevertheless he cleaved unto the sins of Jeroboam the son of Nebat, which made Israel to sin; he departed not therefrom.
9581                                                                                                                                                                                                                                                                                                                                                                                            And Mesha king of Moab was a sheepmaster, and rendered unto the king of Israel an hundred thousand lambs, and an hundred thousand rams, with the wool.
9582                                                                                                                                                                                                                                                                                                                                                                                                                                               But it came to pass, when Ahab was dead, that the king of Moab rebelled against the king of Israel.
9583                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And king Jehoram went out of Samaria the same time, and numbered all Israel.
9584                                                                                                                                                                                                                                                                                         And he went and sent to Jehoshaphat the king of Judah, saying, The king of Moab hath rebelled against me: wilt thou go with me against Moab to battle? And he said, I will go up: I am as thou art, my people as thy people, and my horses as thy horses.
9585                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said, Which way shall we go up? And he answered, The way through the wilderness of Edom.
9586                                                                                                                                                                                                                                                                                                                                           So the king of Israel went, and the king of Judah, and the king of Edom: and they fetched a compass of seven days' journey: and there was no water for the host, and for the cattle that followed them.
9587                                                                                                                                                                                                                                                                                                                                                                                                                   And the king of Israel said, Alas! that the LORD hath called these three kings together, to deliver them into the hand of Moab!
9588                                                                                                                                                                                                                                                                                                  But Jehoshaphat said, Is there not here a prophet of the LORD, that we may enquire of the LORD by him? And one of the king of Israel's servants answered and said, Here is Elisha the son of Shaphat, which poured water on the hands of Elijah.
9589                                                                                                                                                                                                                                                                                                                                                                                                              And Jehoshaphat said, The word of the LORD is with him. So the king of Israel and Jehoshaphat and the king of Edom went down to him.
9590                                                                                                                                                                                                                                                           And Elisha said unto the king of Israel, What have I to do with thee? get thee to the prophets of thy father, and to the prophets of thy mother. And the king of Israel said unto him, Nay: for the LORD hath called these three kings together, to deliver them into the hand of Moab.
9591                                                                                                                                                                                                                                                                                                                                                   And Elisha said, As the LORD of hosts liveth, before whom I stand, surely, were it not that I regard the presence of Jehoshaphat the king of Judah, I would not look toward thee, nor see thee.
9592                                                                                                                                                                                                                                                                                                                                                                                                                              But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the LORD came upon him.
9593                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Thus saith the LORD, Make this valley full of ditches.
9594                                                                                                                                                                                                                                                                                                                                                              For thus saith the LORD, Ye shall not see wind, neither shall ye see rain; yet that valley shall be filled with water, that ye may drink, both ye, and your cattle, and your beasts.
9595                                                                                                                                                                                                                                                                                                                                                                                                                                         And this is but a light thing in the sight of the LORD: he will deliver the Moabites also into your hand.
9596                                                                                                                                                                                                                                                                                                                                                                           And ye shall smite every fenced city, and every choice city, and shall fell every good tree, and stop all wells of water, and mar every good piece of land with stones.
9597                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass in the morning, when the meat offering was offered, that, behold, there came water by the way of Edom, and the country was filled with water.
9598                                                                                                                                                                                                                                                                                                                                                                         And when all the Moabites heard that the kings were come up to fight against them, they gathered all that were able to put on armor, and upward, and stood in the border.
9599                                                                                                                                                                                                                                                                                                                                                                                                        And they rose up early in the morning, and the sun shone upon the water, and the Moabites saw the water on the other side as red as blood:
9600                                                                                                                                                                                                                                                                                                                                                                                                                   And they said, This is blood: the kings are surely slain, and they have smitten one another: now therefore, Moab, to the spoil.
9601                                                                                                                                                                                                                                                                                                                                                        And when they came to the camp of Israel, the Israelites rose up and smote the Moabites, so that they fled before them: but they went forward smiting the Moabites, even in their country.
9602                                                                                                                                                                                                                                                               And they beat down the cities, and on every good piece of land cast every man his stone, and filled it; and they stopped all the wells of water, and felled all the good trees: only in Kirharaseth left they the stones thereof; howbeit the slingers went about it, and smote it.
9603                                                                                                                                                                                                                                                                                                                                                         And when the king of Moab saw that the battle was too sore for him, he took with him seven hundred men that drew swords, to break through even unto the king of Edom: but they could not.
9604                                                                                                                                                                                                                                                                                                                Then he took his eldest son that should have reigned in his stead, and offered him for a burnt offering upon the wall. And there was great indignation against Israel: and they departed from him, and returned to their own land.
9605                                                                                                                                                                                                                                                                                           Now there cried a certain woman of the wives of the sons of the prophets unto Elisha, saying, Thy servant my husband is dead; and thou knowest that thy servant did fear the LORD: and the creditor is come to take unto him my two sons to be bondmen.
9606                                                                                                                                                                                                                                                                                                                                                                        And Elisha said unto her, What shall I do for thee? tell me, what hast thou in the house? And she said, Thine handmaid hath not any thing in the house, save a pot of oil.
9607                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he said, Go, borrow thee vessels abroad of all thy neighbors, even empty vessels; borrow not a few.
9608                                                                                                                                                                                                                                                                                                                                                                          And when thou art come in, thou shalt shut the door upon thee and upon thy sons, and shalt pour out into all those vessels, and thou shalt set aside that which is full.
9609                                                                                                                                                                                                                                                                                                                                                                                                                           So she went from him, and shut the door upon her and upon her sons, who brought the vessels to her; and she poured out.
9610                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when the vessels were full, that she said unto her son, Bring me yet a vessel. And he said unto her, There is not a vessel more. And the oil stayed.
9611                                                                                                                                                                                                                                                                                                                                                                                                               Then she came and told the man of God. And he said, Go, sell the oil, and pay thy debt, and live thou and thy children of the rest.
9612                                                                                                                                                                                                                                                                                                                                                 And it fell on a day, that Elisha passed to Shunem, where was a great woman; and she constrained him to eat bread. And so it was, that as oft as he passed by, he turned in thither to eat bread.
9613                                                                                                                                                                                                                                                                                                                                                                                                                           And she said unto her husband, Behold now, I perceive that this is an holy man of God, which passeth by us continually.
9614                                                                                                                                                                                                                                                                                                                                    Let us make a little chamber, I pray thee, on the wall; and let us set for him there a bed, and a table, and a stool, and a candlestick: and it shall be, when he cometh to us, that he shall turn in thither.
9615                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it fell on a day, that he came thither, and he turned into the chamber, and lay there.
9616                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said to Gehazi his servant, Call this Shunammite. And when he had called her, she stood before him.
9617                                                                                                                                                                                                                                                                                           And he said unto him, Say now unto her, Behold, thou hast been careful for us with all this care; what is to be done for thee? wouldest thou be spoken for to the king, or to the captain of the host? And she answered, I dwell among mine own people.
9618                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, What then is to be done for her? And Gehazi answered, Verily she hath no child, and her husband is old.
9619                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Call her. And when he had called her, she stood in the door.
9620                                                                                                                                                                                                                                                                                                                                                                             And he said, About this season, according to the time of life, thou shalt embrace a son. And she said, Nay, my lord, thou man of God, do not lie unto thine handmaid.
9621                                                                                                                                                                                                                                                                                                                                                                                                                              And the woman conceived, and bare a son at that season that Elisha had said unto her, according to the time of life.
9622                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the child was grown, it fell on a day, that he went out to his father to the reapers.
9623                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto his father, My head, my head. And he said to a lad, Carry him to his mother.
9624                                                                                                                                                                                                                                                                                                                                                                                                                                           And when he had taken him, and brought him to his mother, he sat on her knees till noon, and then died.
9625                                                                                                                                                                                                                                                                                                                                                                                                                                             And she went up, and laid him on the bed of the man of God, and shut the door upon him, and went out.
9626                                                                                                                                                                                                                                                                                                                                                                                    And she called unto her husband, and said, Send me, I pray thee, one of the young men, and one of the asses, that I may run to the man of God, and come again.
9627                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Wherefore wilt thou go to him to day? it is neither new moon, nor sabbath. And she said, It shall be well.
9628                                                                                                                                                                                                                                                                                                                                                                                                                          Then she saddled an ass, and said to her servant, Drive, and go forward; slack not thy riding for me, except I bid thee.
9629                                                                                                                                                                                                                                                                                                                                                       So she went and came unto the man of God to mount Carmel. And it came to pass, when the man of God saw her afar off, that he said to Gehazi his servant, Behold, yonder is that Shunammite:
9630                                                                                                                                                                                                                                                                                                                                                                                  Run now, I pray thee, to meet her, and say unto her, Is it well with thee? is it well with thy husband? is it well with the child? And she answered, It is well:
9631                                                                                                                                                                                                                                                                                           And when she came to the man of God to the hill, she caught him by the feet: but Gehazi came near to thrust her away. And the man of God said, Let her alone; for her soul is vexed within her: and the LORD hath hid it from me, and hath not told me.
9632                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then she said, Did I desire a son of my lord? did I not say, Do not deceive me?
9633                                                                                                                                                                                                                                                                                                                      Then he said to Gehazi, Gird up thy loins, and take my staff in thine hand, and go thy way: if thou meet any man, salute him not; and if any salute thee, answer him not again: and lay my staff upon the face of the child.
9634                                                                                                                                                                                                                                                                                                                                                                                                              And the mother of the child said, As the LORD liveth, and as thy soul liveth, I will not leave thee. And he arose, and followed her.
9635                                                                                                                                                                                                                                                                                                                                    And Gehazi passed on before them, and laid the staff upon the face of the child; but there was neither voice, nor hearing. Wherefore he went again to meet him, and told him, saying, The child is not awaked.
9636                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Elisha was come into the house, behold, the child was dead, and laid upon his bed.
9637                                                                                                                                                                                                                                                                                                                                                                                                                                                                He went in therefore, and shut the door upon them twain, and prayed unto the LORD.
9638                                                                                                                                                                                                                                                                                                                                  And he went up, and lay upon the child, and put his mouth upon his mouth, and his eyes upon his eyes, and his hands upon his hands: and stretched himself upon the child; and the flesh of the child waxed warm.
9639                                                                                                                                                                                                                                                                                                                                                                              Then he returned, and walked in the house to and fro; and went up, and stretched himself upon him: and the child sneezed seven times, and the child opened his eyes.
9640                                                                                                                                                                                                                                                                                                                                                                                                              And he called Gehazi, and said, Call this Shunammite. So he called her. And when she was come in unto him, he said, Take up thy son.
9641                                                                                                                                                                                                                                                                                                                                                                                                                                       Then she went in, and fell at his feet, and bowed herself to the ground, and took up her son, and went out.
9642                                                                                                                                                                                                                                                                                                                   And Elisha came again to Gilgal: and there was a dearth in the land; and the sons of the prophets were sitting before him: and he said unto his servant, Set on the great pot, and seethe pottage for the sons of the prophets.
9643                                                                                                                                                                                                                                                                                                                                                   And one went out into the field to gather herbs, and found a wild vine, and gathered thereof wild gourds his lap full, and came and shred them into the pot of pottage: for they knew them not.
9644                                                                                                                                                                                                                                                                                                                                      So they poured out for the men to eat. And it came to pass, as they were eating of the pottage, that they cried out, and said, O thou man of God, there is death in the pot. And they could not eat thereof.
9645                                                                                                                                                                                                                                                                                                                                                                                             But he said, Then bring meal. And he cast it into the pot; and he said, Pour out for the people, that they may eat. And there was no harm in the pot.
9646                                                                                                                                                                                                                                                                                                                            And there came a man from Baalshalisha, and brought the man of God bread of the firstfruits, twenty loaves of barley, and full ears of corn in the husk thereof. And he said, Give unto the people, that they may eat.
9647                                                                                                                                                                                                                                                                                                                                                        And his servitor said, What, should I set this before an hundred men? He said again, Give the people, that they may eat: for thus saith the LORD, They shall eat, and shall leave thereof.
9648                                                                                                                                                                                                                                                                                                                                                                                                                                                  So he set it before them, and they did eat, and left thereof, according to the word of the LORD.
9649                                                                                                                                                                                                                                                                                                                            Now Naaman, captain of the host of the king of Syria, was a great man with his master, and honorable, because by him the LORD had given deliverance unto Syria: he was also a mighty man in valor, but he was a leper.
9650                                                                                                                                                                                                                                                                                                                                                                                                 And the Syrians had gone out by companies, and had brought away captive out of the land of Israel a little maid; and she waited on Naaman's wife.
9651                                                                                                                                                                                                                                                                                                                                                                                                              And she said unto her mistress, Would God my lord were with the prophet that is in Samaria! for he would recover him of his leprosy.
9652                                                                                                                                                                                                                                                                                                                                                                                                                                            And one went in, and told his lord, saying, Thus and thus said the maid that is of the land of Israel.
9653                                                                                                                                                                                                                                                                                                                                   And the king of Syria said, Go to, go, and I will send a letter unto the king of Israel. And he departed, and took with him ten talents of silver, and six thousand pieces of gold, and ten changes of raiment.
9654                                                                                                                                                                                                                                                                                                                                            And he brought the letter to the king of Israel, saying, Now when this letter is come unto thee, behold, I have therewith sent Naaman my servant to thee, that thou mayest recover him of his leprosy.
9655                                                                                                                                                                                                                                                          And it came to pass, when the king of Israel had read the letter, that he rent his clothes, and said, Am I God, to kill and to make alive, that this man doth send unto me to recover a man of his leprosy? wherefore consider, I pray you, and see how he seeketh a quarrel against me.
9656                                                                                                                                                                                                                                                                                            And it was so, when Elisha the man of God had heard that the king of Israel had rent his clothes, that he sent to the king, saying, Wherefore hast thou rent thy clothes? let him come now to me, and he shall know that there is a prophet in Israel.
9657                                                                                                                                                                                                                                                                                                                                                                                                                                                So Naaman came with his horses and with his chariot, and stood at the door of the house of Elisha.
9658                                                                                                                                                                                                                                                                                                                                                                                                 And Elisha sent a messenger unto him, saying, Go and wash in Jordan seven times, and thy flesh shall come again to thee, and thou shalt be clean.
9659                                                                                                                                                                                                                                                                                                                                  But Naaman was wroth, and went away, and said, Behold, I thought, He will surely come out to me, and stand, and call on the name of the LORD his God, and strike his hand over the place, and recover the leper.
9660                                                                                                                                                                                                                                                                                                                                                                                  Are not Abana and Pharpar, rivers of Damascus, better than all the waters of Israel? may I not wash in them, and be clean? So he turned and went away in a rage.
9661                                                                                                                                                                                                                                                                                                                            And his servants came near, and spake unto him, and said, My father, if the prophet had bid thee do some great thing, wouldest thou not have done it? how much rather then, when he saith to thee, Wash, and be clean?
9662                                                                                                                                                                                                                                                                                                                                                         Then went he down, and dipped himself seven times in Jordan, according to the saying of the man of God: and his flesh came again like unto the flesh of a little child, and he was clean.
9663                                                                                                                                                                                                                                                                                                      And he returned to the man of God, he and all his company, and came, and stood before him: and he said, Behold, now I know that there is no God in all the earth, but in Israel: now therefore, I pray thee, take a blessing of thy servant.
9664                                                                                                                                                                                                                                                                                                                                                                                                                           But he said, As the LORD liveth, before whom I stand, I will receive none. And he urged him to take it; but he refused.
9665                                                                                                                                                                                                                                                                                                                            And Naaman said, Shall there not then, I pray thee, be given to thy servant two mules' burden of earth? for thy servant will henceforth offer neither burnt offering nor sacrifice unto other gods, but unto the LORD.
9666                                                                                                                                                                                                                                                                     In this thing the LORD pardon thy servant, that when my master goeth into the house of Rimmon to worship there, and he leaneth on my hand, and I bow myself in the house of Rimmon: when I bow down myself in the house of Rimmon, the LORD pardon thy servant in this thing.
9667                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said unto him, Go in peace. So he departed from him a little way.
9668                                                                                                                                                                                                                                                                                                           But Gehazi, the servant of Elisha the man of God, said, Behold, my master hath spared Naaman this Syrian, in not receiving at his hands that which he brought: but, as the LORD liveth, I will run after him, and take somewhat of him.
9669                                                                                                                                                                                                                                                                                                                                                                                                  So Gehazi followed after Naaman. And when Naaman saw him running after him, he lighted down from the chariot to meet him, and said, Is all well?
9670                                                                                                                                                                                                                                                                                                             And he said, All is well. My master hath sent me, saying, Behold, even now there be come to me from mount Ephraim two young men of the sons of the prophets: give them, I pray thee, a talent of silver, and two changes of garments.
9671                                                                                                                                                                                                                                                                                                                                And Naaman said, Be content, take two talents. And he urged him, and bound two talents of silver in two bags, with two changes of garments, and laid them upon two of his servants; and they bare them before him.
9672                                                                                                                                                                                                                                                                                                                                                                                                            And when he came to the tower, he took them from their hand, and bestowed them in the house: and he let the men go, and they departed.
9673                                                                                                                                                                                                                                                                                                                                                                                                      But he went in, and stood before his master. And Elisha said unto him, Whence comest thou, Gehazi? And he said, Thy servant went no whither.
9674                                                                                                                                                                                                                                                                                      And he said unto him, Went not mine heart with thee, when the man turned again from his chariot to meet thee? Is it a time to receive money, and to receive garments, and oliveyards, and vineyards, and sheep, and oxen, and menservants, and maidservants?
9675                                                                                                                                                                                                                                                                                                                                                                                                   The leprosy therefore of Naaman shall cleave unto thee, and unto thy seed for ever. And he went out from his presence a leper as white as snow.
9676                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of the prophets said unto Elisha, Behold now, the place where we dwell with thee is too strait for us.
9677                                                                                                                                                                                                                                                                                                                                                                                             Let us go, we pray thee, unto Jordan, and take thence every man a beam, and let us make us a place there, where we may dwell. And he answered, Go ye.
9678                                                                                                                                                                                                                                                                                                                                                                                                                                                      And one said, Be content, I pray thee, and go with thy servants. And he answered, I will go.
9679                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So he went with them. And when they came to Jordan, they cut down wood.
9680                                                                                                                                                                                                                                                                                                                                                                                                                       But as one was felling a beam, the axe head fell into the water: and he cried, and said, Alas, master! for it was borrowed.
9681                                                                                                                                                                                                                                                                                                                                                                                                      And the man of God said, Where fell it? And he showed him the place. And he cut down a stick, and cast it in thither; and the iron did swim.
9682                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Therefore said he, Take it up to thee. And he put out his hand, and took it.
9683                                                                                                                                                                                                                                                                                                                                                                                                              Then the king of Syria warred against Israel, and took counsel with his servants, saying, In such and such a place shall be my camp.
9684                                                                                                                                                                                                                                                                                                                                                                                                           And the man of God sent unto the king of Israel, saying, Beware that thou pass not such a place; for thither the Syrians are come down.
9685                                                                                                                                                                                                                                                                                                                                                                                                            And the king of Israel sent to the place which the man of God told him and warned him of, and saved himself there, not once nor twice.
9686                                                                                                                                                                                                                                                                                                                                                             Therefore the heart of the king of Syria was sore troubled for this thing; and he called his servants, and said unto them, Will ye not show me which of us is for the king of Israel?
9687                                                                                                                                                                                                                                                                                                                                                                        And one of his servants said, None, my lord, O king: but Elisha, the prophet that is in Israel, telleth the king of Israel the words that thou speakest in thy bedchamber.
9688                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Go and spy where he is, that I may send and fetch him. And it was told him, saying, Behold, he is in Dothan.
9689                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore sent he thither horses, and chariots, and a great host: and they came by night, and compassed the city about.
9690                                                                                                                                                                                                                                                                                                                                        And when the servant of the man of God was risen early, and gone forth, behold, an host compassed the city both with horses and chariots. And his servant said unto him, Alas, my master! how shall we do?
9691                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he answered, Fear not: for they that be with us are more than they that be with them.
9692                                                                                                                                                                                                                                                                                                                  And Elisha prayed, and said, LORD, I pray thee, open his eyes, that he may see. And the LORD opened the eyes of the young man; and he saw: and, behold, the mountain was full of horses and chariots of fire round about Elisha.
9693                                                                                                                                                                                                                                                                                                                                                          And when they came down to him, Elisha prayed unto the LORD, and said, Smite this people, I pray thee, with blindness. And he smote them with blindness according to the word of Elisha.
9694                                                                                                                                                                                                                                                                                                                                                                                    And Elisha said unto them, This is not the way, neither is this the city: follow me, and I will bring you to the man whom ye seek. But he led them to Samaria.
9695                                                                                                                                                                                                                                                                                                                       And it came to pass, when they were come into Samaria, that Elisha said, LORD, open the eyes of these men, that they may see. And the LORD opened their eyes, and they saw; and, behold, they were in the midst of Samaria.
9696                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king of Israel said unto Elisha, when he saw them, My father, shall I smite them? shall I smite them?
9697                                                                                                                                                                                                                                                                                                                         And he answered, Thou shalt not smite them: wouldest thou smite those whom thou hast taken captive with thy sword and with thy bow? set bread and water before them, that they may eat and drink, and go to their master.
9698                                                                                                                                                                                                                                                                                                                                                        And he prepared great provision for them: and when they had eaten and drunk, he sent them away, and they went to their master. So the bands of Syria came no more into the land of Israel.
9699                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass after this, that Benhadad king of Syria gathered all his host, and went up, and besieged Samaria.
9700                                                                                                                                                                                                                                                                                                                                       And there was a great famine in Samaria: and, behold, they besieged it, until an ass's head was sold for fourscore pieces of silver, and the fourth part of a cab of dove's dung for five pieces of silver.
9701                                                                                                                                                                                                                                                                                                                                                                                                                              And as the king of Israel was passing by upon the wall, there cried a woman unto him, saying, Help, my lord, O king.
9702                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, If the LORD do not help thee, whence shall I help thee? out of the barnfloor, or out of the winepress?
9703                                                                                                                                                                                                                                                                                                                                                                              And the king said unto her, What aileth thee? And she answered, This woman said unto me, Give thy son, that we may eat him to day, and we will eat my son to morrow.
9704                                                                                                                                                                                                                                                                                                                                                                                                           So we boiled my son, and did eat him: and I said unto her on the next day, Give thy son, that we may eat him: and she hath hid her son.
9705                                                                                                                                                                                                                                                                                                                                            And it came to pass, when the king heard the words of the woman, that he rent his clothes; and he passed by upon the wall, and the people looked, and, behold, he had sackcloth within upon his flesh.
9706                                                                                                                                                                                                                                                                                                                                                                                                                                Then he said, God do so and more also to me, if the head of Elisha the son of Shaphat shall stand on him this day.
9707                                                                                                                                                                                 But Elisha sat in his house, and the elders sat with him; and the king sent a man from before him: but ere the messenger came to him, he said to the elders, See ye how this son of a murderer hath sent to take away mine head? look, when the messenger cometh, shut the door, and hold him fast at the door: is not the sound of his master's feet behind him?
9708                                                                                                                                                                                                                                                                                                                                                                           And while he yet talked with them, behold, the messenger came down unto him: and he said, Behold, this evil is of the LORD; what should I wait for the LORD any longer?
9709                                                                                                                                                                                                                                                                                                                               Then Elisha said, Hear ye the word of the LORD; Thus saith the LORD, To morrow about this time shall a measure of fine flour be sold for a shekel, and two measures of barley for a shekel, in the gate of Samaria.
9710                                                                                                                                                                                                                                                                                                            Then a lord on whose hand the king leaned answered the man of God, and said, Behold, if the LORD would make windows in heaven, might this thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.
9711                                                                                                                                                                                                                                                                                                                                                                                                                       And there were four leprous men at the entering in of the gate: and they said one to another, Why sit we here until we die?
9712                                                                                                                                                                                                                                                             If we say, We will enter into the city, then the famine is in the city, and we shall die there: and if we sit still here, we die also. Now therefore come, and let us fall unto the host of the Syrians: if they save us alive, we shall live; and if they kill us, we shall but die.
9713                                                                                                                                                                                                                                                                                                                                                                         And they rose up in the twilight, to go unto the camp of the Syrians: and when they were come to the uttermost part of the camp of Syria, behold, there was no man there.
9714                                                                                                                                                                                                                                                          For the LORD had made the host of the Syrians to hear a noise of chariots, and a noise of horses, even the noise of a great host: and they said one to another, Lo, the king of Israel hath hired against us the kings of the Hittites, and the kings of the Egyptians, to come upon us.
9715                                                                                                                                                                                                                                                                                                                                                                                         Wherefore they arose and fled in the twilight, and left their tents, and their horses, and their asses, even the camp as it was, and fled for their life.
9716                                                                                                                                                                                                                                                                 And when these lepers came to the uttermost part of the camp, they went into one tent, and did eat and drink, and carried thence silver, and gold, and raiment, and went and hid it; and came again, and entered into another tent, and carried thence also, and went and hid it.
9717                                                                                                                                                                                                                                                                                                   Then they said one to another, We do not well: this day is a day of good tidings, and we hold our peace: if we tarry till the morning light, some mischief will come upon us: now therefore come, that we may go and tell the king's household.
9718                                                                                                                                                                                                                                                                                                      So they came and called unto the porter of the city: and they told them, saying, We came to the camp of the Syrians, and, behold, there was no man there, neither voice of man, but horses tied, and asses tied, and the tents as they were.
9719                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he called the porters; and they told it to the king's house within.
9720                                                                                                                                                                                                                                And the king arose in the night, and said unto his servants, I will now show you what the Syrians have done to us. They know that we be hungry; therefore are they gone out of the camp to hide themselves in the field, saying, When they come out of the city, we shall catch them alive, and get into the city.
9721                                                                                                                                                                                                                         And one of his servants answered and said, Let some take, I pray thee, five of the horses that remain, which are left in the city, (behold, they are as all the multitude of Israel that are left in it: behold, I say, they are even as all the multitude of the Israelites that are consumed:) and let us send and see.
9722                                                                                                                                                                                                                                                                                                                                                                                                                                      They took therefore two chariot horses; and the king sent after the host of the Syrians, saying, Go and see.
9723                                                                                                                                                                                                                                                                                                                                                      And they went after them unto Jordan: and, lo, all the way was full of garments and vessels, which the Syrians had cast away in their haste. And the messengers returned, and told the king.
9724                                                                                                                                                                                                                                                                                                                                                      And the people went out, and spoiled the tents of the Syrians. So a measure of fine flour was sold for a shekel, and two measures of barley for a shekel, according to the word of the LORD.
9725                                                                                                                                                                                                                                                                                                                             And the king appointed the lord on whose hand he leaned to have the charge of the gate: and the people trode upon him in the gate, and he died, as the man of God had said, who spake when the king came down to him.
9726                                                                                                                                                                                                                                                                                                                                   And it came to pass as the man of God had spoken to the king, saying, Two measures of barley for a shekel, and a measure of fine flour for a shekel, shall be to morrow about this time in the gate of Samaria:
9727                                                                                                                                                                                                                                                                                                                                And that lord answered the man of God, and said, Now, behold, if the LORD should make windows in heaven, might such a thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.
9728                                                                                                                                                                                                                                                                                                                                                                                                                                                              And so it fell out unto him: for the people trode upon him in the gate, and he died.
9729                                                                                                                                                                                                                                                                                         Then spake Elisha unto the woman, whose son he had restored to life, saying, Arise, and go thou and thine household, and sojourn wheresoever thou canst sojourn: for the LORD hath called for a famine; and it shall also come upon the land seven years.
9730                                                                                                                                                                                                                                                                                                                                                                                       And the woman arose, and did after the saying of the man of God: and she went with her household, and sojourned in the land of the Philistines seven years.
9731                                                                                                                                                                                                                                                                                                                                                                  And it came to pass at the seven years' end, that the woman returned out of the land of the Philistines: and she went forth to cry unto the king for her house and for her land.
9732                                                                                                                                                                                                                                                                                                                                                                                                          And the king talked with Gehazi the servant of the man of God, saying, Tell me, I pray thee, all the great things that Elisha hath done.
9733                                                                                                                                                                                                                                    And it came to pass, as he was telling the king how he had restored a dead body to life, that, behold, the woman, whose son he had restored to life, cried to the king for her house and for her land. And Gehazi said, My lord, O king, this is the woman, and this is her son, whom Elisha restored to life.
9734                                                                                                                                                                                                                                                                                                                       And when the king asked the woman, she told him. So the king appointed unto her a certain officer, saying, Restore all that was hers, and all the fruits of the field since the day that she left the land, even until now.
9735                                                                                                                                                                                                                                                                                                                                                                                                                 And Elisha came to Damascus; and Benhadad the king of Syria was sick; and it was told him, saying, The man of God is come hither.
9736                                                                                                                                                                                                                                                                                                                                                                                And the king said unto Hazael, Take a present in thine hand, and go, meet the man of God, and enquire of the LORD by him, saying, Shall I recover of this disease?
9737                                                                                                                                                                                                                                                                                       So Hazael went to meet him, and took a present with him, even of every good thing of Damascus, forty camels' burden, and came and stood before him, and said, Thy son Benhadad king of Syria hath sent me to thee, saying, Shall I recover of this disease?
9738                                                                                                                                                                                                                                                                                                                                                                                                              And Elisha said unto him, Go, say unto him, Thou mayest certainly recover: howbeit the LORD hath showed me that he shall surely die.
9739                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he settled his countenance stedfastly, until he was ashamed: and the man of God wept.
9740                                                                                                                                                                                                                                                       And Hazael said, Why weepeth my lord? And he answered, Because I know the evil that thou wilt do unto the children of Israel: their strong holds wilt thou set on fire, and their young men wilt thou slay with the sword, and wilt dash their children, and rip up their women with child.
9741                                                                                                                                                                                                                                                                                                                                                                             And Hazael said, But what, is thy servant a dog, that he should do this great thing? And Elisha answered, The LORD hath showed me that thou shalt be king over Syria.
9742                                                                                                                                                                                                                                                                                                                                                                                    So he departed from Elisha, and came to his master; who said to him, What said Elisha to thee? And he answered, He told me that thou shouldest surely recover.
9743                                                                                                                                                                                                                                                                                                                                                                               And it came to pass on the morrow, that he took a thick cloth, and dipped it in water, and spread it on his face, so that he died: and Hazael reigned in his stead.
9744                                                                                                                                                                                                                                                                                                                                                                                 And in the fifth year of Joram the son of Ahab king of Israel, Jehoshaphat being then king of Judah, Jehoram the son of Jehoshaphat king of Judah began to reign.
9745                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thirty and two years old was he when he began to reign; and he reigned eight years in Jerusalem.
9746                                                                                                                                                                                                                                                                                                                                                                                       And he walked in the way of the kings of Israel, as did the house of Ahab: for the daughter of Ahab was his wife: and he did evil in the sight of the LORD.
9747                                                                                                                                                                                                                                                                                                                                                                                                             Yet the LORD would not destroy Judah for David his servant's sake, as he promised him to give him alway a light, and to his children.
9748                                                                                                                                                                                                                                                                                                                                                                                                                                                          In his days Edom revolted from under the hand of Judah, and made a king over themselves.
9749                                                                                                                                                                                                                                                                                                                                        So Joram went over to Zair, and all the chariots with him: and he rose by night, and smote the Edomites which compassed him about, and the captains of the chariots: and the people fled into their tents.
9750                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet Edom revolted from under the hand of Judah unto this day. Then Libnah revolted at the same time.
9751                                                                                                                                                                                                                                                                                                                                                                                                                 And the rest of the acts of Joram, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
9752                                                                                                                                                                                                                                                                                                                                                                                                                 And Joram slept with his fathers, and was buried with his fathers in the city of David: and Ahaziah his son reigned in his stead.
9753                                                                                                                                                                                                                                                                                                                                                                                                                          In the twelfth year of Joram the son of Ahab king of Israel did Ahaziah the son of Jehoram king of Judah begin to reign.
9754                                                                                                                                                                                                                                                                                                                                                                       Two and twenty years old was Ahaziah when he began to reign; and he reigned one year in Jerusalem. And his mother's name was Athaliah, the daughter of Omri king of Israel.
9755                                                                                                                                                                                                                                                                                                                                                                                   And he walked in the way of the house of Ahab, and did evil in the sight of the LORD, as did the house of Ahab: for he was the son in law of the house of Ahab.
9756                                                                                                                                                                                                                                                                                                                                                                                                                    And he went with Joram the son of Ahab to the war against Hazael king of Syria in Ramothgilead; and the Syrians wounded Joram.
9757                                                                                                                                                                                                                                                                        And king Joram went back to be healed in Jezreel of the wounds which the Syrians had given him at Ramah, when he fought against Hazael king of Syria. And Ahaziah the son of Jehoram king of Judah went down to see Joram the son of Ahab in Jezreel, because he was sick.
9758                                                                                                                                                                                                                                                                                                                                                                          And Elisha the prophet called one of the children of the prophets, and said unto him, Gird up thy loins, and take this box of oil in thine hand, and go to Ramothgilead:
9759                                                                                                                                                                                                                                                                                                                                                          And when thou comest thither, look out there Jehu the son of Jehoshaphat the son of Nimshi, and go in, and make him arise up from among his brethren, and carry him to an inner chamber;
9760                                                                                                                                                                                                                                                                                                                                                                              Then take the box of oil, and pour it on his head, and say, Thus saith the LORD, I have anointed thee king over Israel. Then open the door, and flee, and tarry not.
9761                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So the young man, even the young man the prophet, went to Ramothgilead.
9762                                                                                                                                                                                                                                                                                                                                                          And when he came, behold, the captains of the host were sitting; and he said, I have an errand to thee, O captain. And Jehu said, Unto which of all us? And he said, To thee, O captain.
9763                                                                                                                                                                                                                                                                                                                                          And he arose, and went into the house; and he poured the oil on his head, and said unto him, Thus saith the LORD God of Israel, I have anointed thee king over the people of the LORD, even over Israel.
9764                                                                                                                                                                                                                                                                                                                                                                And thou shalt smite the house of Ahab thy master, that I may avenge the blood of my servants the prophets, and the blood of all the servants of the LORD, at the hand of Jezebel.
9765                                                                                                                                                                                                                                                                                                                                                                                             For the whole house of Ahab shall perish: and I will cut off from Ahab him that pisseth against the wall, and him that is shut up and left in Israel:
9766                                                                                                                                                                                                                                                                                                                                                                                                                    And I will make the house of Ahab like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah:
9767                                                                                                                                                                                                                                                                                                                                                                                                                  And the dogs shall eat Jezebel in the portion of Jezreel, and there shall be none to bury her. And he opened the door, and fled.
9768                                                                                                                                                                                                                                                                                                                                                      Then Jehu came forth to the servants of his lord: and one said unto him, Is all well? wherefore came this mad fellow to thee? And he said unto them, Ye know the man, and his communication.
9769                                                                                                                                                                                                                                                                                                                                                                                           And they said, It is false; tell us now. And he said, Thus and thus spake he to me, saying, Thus saith the LORD, I have anointed thee king over Israel.
9770                                                                                                                                                                                                                                                                                                                                                                                                    Then they hasted, and took every man his garment, and put it under him on the top of the stairs, and blew with trumpets, saying, Jehu is king.
9771                                                                                                                                                                                                                                                                                                                                                                                   So Jehu the son of Jehoshaphat the son of Nimshi conspired against Joram. (Now Joram had kept Ramothgilead, he and all Israel, because of Hazael king of Syria.
9772                                                                                                                                                                                                                                                                                  But king Joram was returned to be healed in Jezreel of the wounds which the Syrians had given him, when he fought with Hazael king of Syria.) And Jehu said, If it be your minds, then let none go forth nor escape out of the city to go to tell it in Jezreel.
9773                                                                                                                                                                                                                                                                                                                                                                                                                        So Jehu rode in a chariot, and went to Jezreel; for Joram lay there. And Ahaziah king of Judah was come down to see Joram.
9774                                                                                                                                                                                                                                                                                                                                And there stood a watchman on the tower in Jezreel, and he spied the company of Jehu as he came, and said, I see a company. And Joram said, Take an horseman, and send to meet them, and let him say, Is it peace?
9775                                                                                                                                                                                                                                                                                                  So there went one on horseback to meet him, and said, Thus saith the king, Is it peace? And Jehu said, What hast thou to do with peace? turn thee behind me. And the watchman told, saying, The messenger came to them, but he cometh not again.
9776                                                                                                                                                                                                                                                                                                                                                                  Then he sent out a second on horseback, which came to them, and said, Thus saith the king, Is it peace? And Jehu answered, What hast thou to do with peace? turn thee behind me.
9777                                                                                                                                                                                                                                                                                                                                                                             And the watchman told, saying, He came even unto them, and cometh not again: and the driving is like the driving of Jehu the son of Nimshi; for he driveth furiously.
9778                                                                                                                                                                                                                                                                                                                And Joram said, Make ready. And his chariot was made ready. And Joram king of Israel and Ahaziah king of Judah went out, each in his chariot, and they went out against Jehu, and met him in the portion of Naboth the Jezreelite.
9779                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Joram saw Jehu, that he said, Is it peace, Jehu? And he answered, What peace, so long as the whoredoms of thy mother Jezebel and her witchcrafts are so many?
9780                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joram turned his hands, and fled, and said to Ahaziah, There is treachery, O Ahaziah.
9781                                                                                                                                                                                                                                                                                                                                                                                             And Jehu drew a bow with his full strength, and smote Jehoram between his arms, and the arrow went out at his heart, and he sunk down in his chariot.
9782                                                                                                                                                                                                                                                                                                                 Then said Jehu to Bidkar his captain, Take up, and cast him in the portion of the field of Naboth the Jezreelite: for remember how that, when I and thou rode together after Ahab his father, the LORD laid this burden upon him;
9783                                                                                                                                                                                                                                                                                                    Surely I have seen yesterday the blood of Naboth, and the blood of his sons, saith the LORD; and I will requite thee in this plat, saith the LORD. Now therefore take and cast him into the plat of ground, according to the word of the LORD.
9784                                                                                                                                                                                                                                                                                    But when Ahaziah the king of Judah saw this, he fled by the way of the garden house. And Jehu followed after him, and said, Smite him also in the chariot. And they did so at the going up to Gur, which is by Ibleam. And he fled to Megiddo, and died there.
9785                                                                                                                                                                                                                                                                                                                                                                                                                    And his servants carried him in a chariot to Jerusalem, and buried him in his sepulchre with his fathers in the city of David.
9786                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in the eleventh year of Joram the son of Ahab began Ahaziah to reign over Judah.
9787                                                                                                                                                                                                                                                                                                                                                                                                                 And when Jehu was come to Jezreel, Jezebel heard of it; and she painted her face, and tired her head, and looked out at a window.
9788                                                                                                                                                                                                                                                                                                                                                                                                                                                               And as Jehu entered in at the gate, she said, Had Zimri peace, who slew his master?
9789                                                                                                                                                                                                                                                                                                                                                                                                                      And he lifted up his face to the window, and said, Who is on my side? who? And there looked out to him two or three eunuchs.
9790                                                                                                                                                                                                                                                                                                                                                                                             And he said, Throw her down. So they threw her down: and some of her blood was sprinkled on the wall, and on the horses: and he trode her under foot.
9791                                                                                                                                                                                                                                                                                                                                                                                                               And when he was come in, he did eat and drink, and said, Go, see now this cursed woman, and bury her: for she is a king's daughter.
9792                                                                                                                                                                                                                                                                                                                                                                                                                                And they went to bury her: but they found no more of her than the skull, and the feet, and the palms of her hands.
9793                                                                                                                                                                                                                                                                                                                                     Wherefore they came again, and told him. And he said, This is the word of the LORD, which he spake by his servant Elijah the Tishbite, saying, In the portion of Jezreel shall dogs eat the flesh of Jezebel:
9794                                                                                                                                                                                                                                                                                                                                                                                                    And the carcass of Jezebel shall be as dung upon the face of the field in the portion of Jezreel; so that they shall not say, This is Jezebel.
9795                                                                                                                                                                                                                                                                                                                                                                And Ahab had seventy sons in Samaria. And Jehu wrote letters, and sent to Samaria, unto the rulers of Jezreel, to the elders, and to them that brought up Ahab's children, saying,
9796                                                                                                                                                                                                                                                                                                                                                                                      Now as soon as this letter cometh to you, seeing your master's sons are with you, and there are with you chariots and horses, a fenced city also, and armor;
9797                                                                                                                                                                                                                                                                                                                                                                                                                  Look even out the best and meetest of your master's sons, and set him on his father's throne, and fight for your master's house.
9798                                                                                                                                                                                                                                                                                                                                                                                                                                      But they were exceedingly afraid, and said, Behold, two kings stood not before him: how then shall we stand?
9799                                                                                                                                                                                                                                                                      And he that was over the house, and he that was over the city, the elders also, and the bringers up of the children, sent to Jehu, saying, We are thy servants, and will do all that thou shalt bid us; we will not make any king: do thou that which is good in thine eyes.
9800                                                                                                                                                                                                                           Then he wrote a letter the second time to them, saying, If ye be mine, and if ye will hearken unto my voice, take ye the heads of the men your master's sons, and come to me to Jezreel by to morrow this time. Now the king's sons, being seventy persons, were with the great men of the city, which brought them up.
9801                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when the letter came to them, that they took the king's sons, and slew seventy persons, and put their heads in baskets, and sent him them to Jezreel.
9802                                                                                                                                                                                                                                                                                                                                                         And there came a messenger, and told him, saying, They have brought the heads of the king's sons. And he said, Lay ye them in two heaps at the entering in of the gate until the morning.
9803                                                                                                                                                                                                                                                                                                                                                        And it came to pass in the morning, that he went out, and stood, and said to all the people, Ye be righteous: behold, I conspired against my master, and slew him: but who slew all these?
9804                                                                                                                                                                                                                                                                                                                                               Know now that there shall fall unto the earth nothing of the word of the LORD, which the LORD spake concerning the house of Ahab: for the LORD hath done that which he spake by his servant Elijah.
9805                                                                                                                                                                                                                                                                                                                                                                                       So Jehu slew all that remained of the house of Ahab in Jezreel, and all his great men, and his kinsfolk, and his priests, until he left him none remaining.
9806                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he arose and departed, and came to Samaria. And as he was at the shearing house in the way,
9807                                                                                                                                                                                                                                                                                                                                    Jehu met with the brethren of Ahaziah king of Judah, and said, Who are ye? And they answered, We are the brethren of Ahaziah; and we go down to salute the children of the king and the children of the queen.
9808                                                                                                                                                                                                                                                                                                                                                                                      And he said, Take them alive. And they took them alive, and slew them at the pit of the shearing house, even two and forty men; neither left he any of them.
9809                                                                                                                                                                                                                       And when he was departed thence, he lighted on Jehonadab the son of Rechab coming to meet him: and he saluted him, and said to him, Is thine heart right, as my heart is with thy heart? And Jehonadab answered, It is. If it be, give me thine hand. And he gave him his hand; and he took him up to him into the chariot.
9810                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Come with me, and see my zeal for the LORD. So they made him ride in his chariot.
9811                                                                                                                                                                                                                                                                                                                                                                            And when he came to Samaria, he slew all that remained unto Ahab in Samaria, till he had destroyed him, according to the saying of the LORD, which he spake to Elijah.
9812                                                                                                                                                                                                                                                                                                                                                                                                                          And Jehu gathered all the people together, and said unto them, Ahab served Baal a little; but Jehu shall serve him much.
9813                                                                                                                                                                                                                                             Now therefore call unto me all the prophets of Baal, all his servants, and all his priests; let none be wanting: for I have a great sacrifice to do to Baal; whosoever shall be wanting, he shall not live. But Jehu did it in subtilty, to the intent that he might destroy the worshippers of Baal.
9814                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jehu said, Proclaim a solemn assembly for Baal. And they proclaimed it.
9815                                                                                                                                                                                                                                                                                                                             And Jehu sent through all Israel: and all the worshippers of Baal came, so that there was not a man left that came not. And they came into the house of Baal; and the house of Baal was full from one end to another.
9816                                                                                                                                                                                                                                                                                                                                                                                                        And he said unto him that was over the vestry, Bring forth vestments for all the worshippers of Baal. And he brought them forth vestments.
9817                                                                                                                                                                                                                                                                                                                   And Jehu went, and Jehonadab the son of Rechab, into the house of Baal, and said unto the worshippers of Baal, Search, and look that there be here with you none of the servants of the LORD, but the worshippers of Baal only.
9818                                                                                                                                                                                                                                                                                                       And when they went in to offer sacrifices and burnt offerings, Jehu appointed fourscore men without, and said, If any of the men whom I have brought into your hands escape, he that letteth him go, his life shall be for the life of him.
9819                                                                                                                                                                                                                           And it came to pass, as soon as he had made an end of offering the burnt offering, that Jehu said to the guard and to the captains, Go in, and slay them; let none come forth. And they smote them with the edge of the sword; and the guard and the captains cast them out, and went to the city of the house of Baal.
9820                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they brought forth the images out of the house of Baal, and burned them.
9821                                                                                                                                                                                                                                                                                                                                                                                                                               And they brake down the image of Baal, and brake down the house of Baal, and made it a draught house unto this day.
9822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thus Jehu destroyed Baal out of Israel.
9823                                                                                                                                                                                                                                                                                                                                                               Howbeit from the sins of Jeroboam the son of Nebat, who made Israel to sin, Jehu departed not from after them, to wit, the golden calves that were in Bethel, and that were in Dan.
9824                                                                                                                                                                                                                                                                                    And the LORD said unto Jehu, Because thou hast done well in executing that which is right in mine eyes, and hast done unto the house of Ahab according to all that was in mine heart, thy children of the fourth generation shall sit on the throne of Israel.
9825                                                                                                                                                                                                                                                                                                                                                                                   But Jehu took no heed to walk in the law of the LORD God of Israel with all his heart: for he departed not from the sins of Jeroboam, which made Israel to sin.
9826                                                                                                                                                                                                                                                                                                                                                                                                                                              In those days the LORD began to cut Israel short: and Hazael smote them in all the coasts of Israel;
9827                                                                                                                                                                                                                                                                                                                                                                               From Jordan eastward, all the land of Gilead, the Gadites, and the Reubenites, and the Manassites, from Aroer, which is by the river Arnon, even Gilead and Bashan.
9828                                                                                                                                                                                                                                                                                                                                                                                              Now the rest of the acts of Jehu, and all that he did, and all his might, are they not written in the book of the chronicles of the kings of Israel?
9829                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jehu slept with his fathers: and they buried him in Samaria. And Jehoahaz his son reigned in his stead.
9830                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the time that Jehu reigned over Israel in Samaria was twenty and eight years.
9831                                                                                                                                                                                                                                                                                                                                                                                                                                    And when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the seed royal.
9832                                                                                                                                                                                                                                                                                      But Jehosheba, the daughter of king Joram, sister of Ahaziah, took Joash the son of Ahaziah, and stole him from among the king's sons which were slain; and they hid him, even him and his nurse, in the bedchamber from Athaliah, so that he was not slain.
9833                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he was with her hid in the house of the LORD six years. And Athaliah did reign over the land.
9834                                                                                                                                                                                                                                                                   And the seventh year Jehoiada sent and fetched the rulers over hundreds, with the captains and the guard, and brought them to him into the house of the LORD, and made a covenant with them, and took an oath of them in the house of the LORD, and showed them the king's son.
9835                                                                                                                                                                                                                                                                                                                                                                       And he commanded them, saying, This is the thing that ye shall do; A third part of you that enter in on the sabbath shall even be keepers of the watch of the king's house;
9836                                                                                                                                                                                                                                                                                                                                                                                 And a third part shall be at the gate of Sur; and a third part at the gate behind the guard: so shall ye keep the watch of the house, that it be not broken down.
9837                                                                                                                                                                                                                                                                                                                                                                                                                    And two parts of all you that go forth on the sabbath, even they shall keep the watch of the house of the LORD about the king.
9838                                                                                                                                                                                                                                                                                                                                           And ye shall compass the king round about, every man with his weapons in his hand: and he that cometh within the ranges, let him be slain: and be ye with the king as he goeth out and as he cometh in.
9839                                                                                                                                                                                                                                                                                             And the captains over the hundreds did according to all things that Jehoiada the priest commanded: and they took every man his men that were to come in on the sabbath, with them that should go out on the sabbath, and came to Jehoiada the priest.
9840                                                                                                                                                                                                                                                                                                                                                                                                                       And to the captains over hundreds did the priest give king David's spears and shields, that were in the temple of the LORD.
9841                                                                                                                                                                                                                                                                                                                                                       And the guard stood, every man with his weapons in his hand, round about the king, from the right corner of the temple to the left corner of the temple, along by the altar and the temple.
9842                                                                                                                                                                                                                                                                                                                                                 And he brought forth the king's son, and put the crown upon him, and gave him the testimony; and they made him king, and anointed him; and they clapped their hands, and said, God save the king.
9843                                                                                                                                                                                                                                                                                                                                                                                                                             And when Athaliah heard the noise of the guard and of the people, she came to the people into the temple of the LORD.
9844                                                                                                                                                                                                                                                                                          And when she looked, behold, the king stood by a pillar, as the manner was, and the princes and the trumpeters by the king, and all the people of the land rejoiced, and blew with trumpets: and Athaliah rent her clothes, and cried, Treason, Treason.
9845                                                                                                                                                                                                                                                                          But Jehoiada the priest commanded the captains of the hundreds, the officers of the host, and said unto them, Have her forth without the ranges: and him that followeth her kill with the sword. For the priest had said, Let her not be slain in the house of the LORD.
9846                                                                                                                                                                                                                                                                                                                                                                                                                  And they laid hands on her; and she went by the way by the which the horses came into the king's house: and there was she slain.
9847                                                                                                                                                                                                                                                                                                                                                                                           And Jehoiada made a covenant between the LORD and the king and the people, that they should be the LORD's people; between the king also and the people.
9848                                                                                                                                                                                                                                                                                     And all the people of the land went into the house of Baal, and brake it down; his altars and his images brake they in pieces thoroughly, and slew Mattan the priest of Baal before the altars. And the priest appointed officers over the house of the LORD.
9849                                                                                                                                                                                                                                                                        And he took the rulers over hundreds, and the captains, and the guard, and all the people of the land; and they brought down the king from the house of the LORD, and came by the way of the gate of the guard to the king's house. And he sat on the throne of the kings.
9850                                                                                                                                                                                                                                                                                                                                                                                                                And all the people of the land rejoiced, and the city was in quiet: and they slew Athaliah with the sword beside the king's house.
9851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Seven years old was Jehoash when he began to reign.
9852                                                                                                                                                                                                                                                                                                                                                                                                       In the seventh year of Jehu Jehoash began to reign; and forty years reigned he in Jerusalem. And his mother's name was Zibiah of Beersheba.
9853                                                                                                                                                                                                                                                                                                                                                                                                                            And Jehoash did that which was right in the sight of the LORD all his days wherein Jehoiada the priest instructed him.
9854                                                                                                                                                                                                                                                                                                                                                                                                                                        But the high places were not taken away: the people still sacrificed and burnt incense in the high places.
9855                                                                                                                                                                                                                                              And Jehoash said to the priests, All the money of the dedicated things that is brought into the house of the LORD, even the money of every one that passeth the account, the money that every man is set at, and all the money that cometh into any man's heart to bring into the house of the LORD,
9856                                                                                                                                                                                                                                                                                                                                                                                             Let the priests take it to them, every man of his acquaintance: and let them repair the breaches of the house, wheresoever any breach shall be found.
9857                                                                                                                                                                                                                                                                                                                                                                                                                       But it was so, that in the three and twentieth year of king Jehoash the priests had not repaired the breaches of the house.
9858                                                                                                                                                                                                                                                                                                 Then king Jehoash called for Jehoiada the priest, and the other priests, and said unto them, Why repair ye not the breaches of the house? now therefore receive no more money of your acquaintance, but deliver it for the breaches of the house.
9859                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priests consented to receive no more money of the people, neither to repair the breaches of the house.
9860                                                                                                                                                                                                                                                                       But Jehoiada the priest took a chest, and bored a hole in the lid of it, and set it beside the altar, on the right side as one cometh into the house of the LORD: and the priests that kept the door put therein all the money that was brought into the house of the LORD.
9861                                                                                                                                                                                                                                                                                                                                     And it was so, when they saw that there was much money in the chest, that the king's scribe and the high priest came up, and they put up in bags, and told the money that was found in the house of the LORD.
9862                                                                                                                                                                                                                                                                                                                     And they gave the money, being told, into the hands of them that did the work, that had the oversight of the house of the LORD: and they laid it out to the carpenters and builders, that wrought upon the house of the LORD,
9863                                                                                                                                                                                                                                                                                                                                                                  And to masons, and hewers of stone, and to buy timber and hewed stone to repair the breaches of the house of the LORD, and for all that was laid out for the house to repair it.
9864                                                                                                                                                                                                                                                                                                                                           Howbeit there were not made for the house of the LORD bowls of silver, snuffers, basins, trumpets, any vessels of gold, or vessels of silver, of the money that was brought into the house of the LORD:
9865                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But they gave that to the workmen, and repaired therewith the house of the LORD.
9866                                                                                                                                                                                                                                                                                                                                                                                                           Moreover they reckoned not with the men, into whose hand they delivered the money to be bestowed on workmen: for they dealt faithfully.
9867                                                                                                                                                                                                                                                                                                                                                                                                                                                 The trespass money and sin money was not brought into the house of the LORD: it was the priests'.
9868                                                                                                                                                                                                                                                                                                                                                                                                                           Then Hazael king of Syria went up, and fought against Gath, and took it: and Hazael set his face to go up to Jerusalem.
9869                                                                                                                                                                                             And Jehoash king of Judah took all the hallowed things that Jehoshaphat, and Jehoram, and Ahaziah, his fathers, kings of Judah, had dedicated, and his own hallowed things, and all the gold that was found in the treasures of the house of the LORD, and in the king's house, and sent it to Hazael king of Syria: and he went away from Jerusalem.
9870                                                                                                                                                                                                                                                                                                                                                                                                                 And the rest of the acts of Joash, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
9871                                                                                                                                                                                                                                                                                                                                                                                                                                   And his servants arose, and made a conspiracy, and slew Joash in the house of Millo, which goeth down to Silla.
9872                                                                                                                                                                                                                                                                                                                                     For Jozachar the son of Shimeath, and Jehozabad the son of Shomer, his servants, smote him, and he died; and they buried him with his fathers in the city of David: and Amaziah his son reigned in his stead.
9873                                                                                                                                                                                                                                                                                                                                                                            In the three and twentieth year of Joash the son of Ahaziah king of Judah Jehoahaz the son of Jehu began to reign over Israel in Samaria, and reigned seventeen years.
9874                                                                                                                                                                                                                                                                                                                                                                                 And he did that which was evil in the sight of the LORD, and followed the sins of Jeroboam the son of Nebat, which made Israel to sin; he departed not therefrom.
9875                                                                                                                                                                                                                                                                                                                                                               And the anger of the LORD was kindled against Israel, and he delivered them into the hand of Hazael king of Syria, and into the hand of Benhadad the son of Hazael, all their days.
9876                                                                                                                                                                                                                                                                                                                                                                                                   And Jehoahaz besought the LORD, and the LORD hearkened unto him: for he saw the oppression of Israel, because the king of Syria oppressed them.
9877                                                                                                                                                                                                                                                                                                                                                                                    (And the LORD gave Israel a saviour, so that they went out from under the hand of the Syrians: and the children of Israel dwelt in their tents, as beforetime.
9878                                                                                                                                                                                                                                                                                                                                                                                    Nevertheless they departed not from the sins of the house of Jeroboam, who made Israel sin, but walked therein: and there remained the grove also in Samaria.)
9879                                                                                                                                                                                                                                                                                                                                            Neither did he leave of the people to Jehoahaz but fifty horsemen, and ten chariots, and ten thousand footmen; for the king of Syria had destroyed them, and had made them like the dust by threshing.
9880                                                                                                                                                                                                                                                                                                                                                                                              Now the rest of the acts of Jehoahaz, and all that he did, and his might, are they not written in the book of the chronicles of the kings of Israel?
9881                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jehoahaz slept with his fathers; and they buried him in Samaria: and Joash his son reigned in his stead.
9882                                                                                                                                                                                                                                                                                                                                                                                               In the thirty and seventh year of Joash king of Judah began Jehoash the son of Jehoahaz to reign over Israel in Samaria, and reigned sixteen years.
9883                                                                                                                                                                                                                                                                                                                                                                              And he did that which was evil in the sight of the LORD; he departed not from all the sins of Jeroboam the son of Nebat, who made Israel sin: but he walked therein.
9884                                                                                                                                                                                                                                                                                                                                               And the rest of the acts of Joash, and all that he did, and his might wherewith he fought against Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?
9885                                                                                                                                                                                                                                                                                                                                                                                                                     And Joash slept with his fathers; and Jeroboam sat upon his throne: and Joash was buried in Samaria with the kings of Israel.
9886                                                                                                                                                                                                                                                                                                                           Now Elisha was fallen sick of his sickness whereof he died. And Joash the king of Israel came down unto him, and wept over his face, and said, O my father, my father, the chariot of Israel, and the horsemen thereof.
9887                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Elisha said unto him, Take bow and arrows. And he took unto him bow and arrows.
9888                                                                                                                                                                                                                                                                                                                                                                                                      And he said to the king of Israel, Put thine hand upon the bow. And he put his hand upon it: and Elisha put his hands upon the king's hands.
9889                                                                                                                                                                                                                                                                                And he said, Open the window eastward. And he opened it. Then Elisha said, Shoot. And he shot. And he said, The arrow of the LORD's deliverance, and the arrow of deliverance from Syria: for thou shalt smite the Syrians in Aphek, till thou have consumed them.
9890                                                                                                                                                                                                                                                                                                                                                                                                      And he said, Take the arrows. And he took them. And he said unto the king of Israel, Smite upon the ground. And he smote thrice, and stayed.
9891                                                                                                                                                                                                                                                                                                                                         And the man of God was wroth with him, and said, Thou shouldest have smitten five or six times; then hadst thou smitten Syria till thou hadst consumed it: whereas now thou shalt smite Syria but thrice.
9892                                                                                                                                                                                                                                                                                                                                                                                                                                And Elisha died, and they buried him. And the bands of the Moabites invaded the land at the coming in of the year.
9893                                                                                                                                                                                                                                                                                                And it came to pass, as they were burying a man, that, behold, they spied a band of men; and they cast the man into the sepulchre of Elisha: and when the man was let down, and touched the bones of Elisha, he revived, and stood up on his feet.
9894                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But Hazael king of Syria oppressed Israel all the days of Jehoahaz.
9895                                                                                                                                                                                                                                                                                                                    And the LORD was gracious unto them, and had compassion on them, and had respect unto them, because of his covenant with Abraham, Isaac, and Jacob, and would not destroy them, neither cast he them from his presence as yet.
9896                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Hazael king of Syria died; and Benhadad his son reigned in his stead.
9897                                                                                                                                                                                                                                                                                                        And Jehoash the son of Jehoahaz took again out of the hand of Benhadad the son of Hazael the cities, which he had taken out of the hand of Jehoahaz his father by war. Three times did Joash beat him, and recovered the cities of Israel.
9898                                                                                                                                                                                                                                                                                                                                                                                                                                        In the second year of Joash son of Jehoahaz king of Israel reigned Amaziah the son of Joash king of Judah.
9899                                                                                                                                                                                                                                                                                                                                                                                        He was twenty and five years old when he began to reign, and reigned twenty and nine years in Jerusalem. And his mother's name was Jehoaddan of Jerusalem.
9900                                                                                                                                                                                                                                                                                                                                                                                                  And he did that which was right in the sight of the LORD, yet not like David his father: he did according to all things as Joash his father did.
9901                                                                                                                                                                                                                                                                                                                                                                                                                                Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places.
9902                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, as soon as the kingdom was confirmed in his hand, that he slew his servants which had slain the king his father.
9903                                                                                                                                                                                                                           But the children of the murderers he slew not: according unto that which is written in the book of the law of Moses, wherein the LORD commanded, saying, The fathers shall not be put to death for the children, nor the children be put to death for the fathers; but every man shall be put to death for his own sin.
9904                                                                                                                                                                                                                                                                                                                                                                                                                      He slew of Edom in the valley of salt ten thousand, and took Selah by war, and called the name of it Joktheel unto this day.
9905                                                                                                                                                                                                                                                                                                                                                                                                      Then Amaziah sent messengers to Jehoash, the son of Jehoahaz son of Jehu, king of Israel, saying, Come, let us look one another in the face.
9906                                                                                                                                                                                                                                                                       And Jehoash the king of Israel sent to Amaziah king of Judah, saying, The thistle that was in Lebanon sent to the cedar that was in Lebanon, saying, Give thy daughter to my son to wife: and there passed by a wild beast that was in Lebanon, and trode down the thistle.
9907                                                                                                                                                                                                                                                                                                                                        Thou hast indeed smitten Edom, and thine heart hath lifted thee up: glory of this, and tarry at home: for why shouldest thou meddle to thy hurt, that thou shouldest fall, even thou, and Judah with thee?
9908                                                                                                                                                                                                                                                                                                                                                                   But Amaziah would not hear. Therefore Jehoash king of Israel went up; and he and Amaziah king of Judah looked one another in the face at Bethshemesh, which belongeth to Judah.
9909                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Judah was put to the worse before Israel; and they fled every man to their tents.
9910                                                                                                                                                                                                                                                                                                     And Jehoash king of Israel took Amaziah king of Judah, the son of Jehoash the son of Ahaziah, at Bethshemesh, and came to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim unto the corner gate, four hundred cubits.
9911                                                                                                                                                                                                                                                                                                                                                               And he took all the gold and silver, and all the vessels that were found in the house of the LORD, and in the treasures of the king's house, and hostages, and returned to Samaria.
9912                                                                                                                                                                                                                                                                                                                                                         Now the rest of the acts of Jehoash which he did, and his might, and how he fought with Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?
9913                                                                                                                                                                                                                                                                                                                                                                                                                And Jehoash slept with his fathers, and was buried in Samaria with the kings of Israel; and Jeroboam his son reigned in his stead.
9914                                                                                                                                                                                                                                                                                                                                                                                                                         And Amaziah the son of Joash king of Judah lived after the death of Jehoash son of Jehoahaz king of Israel fifteen years.
9915                                                                                                                                                                                                                                                                                                                                                                                                                                    And the rest of the acts of Amaziah, are they not written in the book of the chronicles of the kings of Judah?
9916                                                                                                                                                                                                                                                                                                                                                                                                              Now they made a conspiracy against him in Jerusalem: and he fled to Lachish; but they sent after him to Lachish, and slew him there.
9917                                                                                                                                                                                                                                                                                                                                                                                                                                             And they brought him on horses: and he was buried at Jerusalem with his fathers in the city of David.
9918                                                                                                                                                                                                                                                                                                                                                                                                                           And all the people of Judah took Azariah, which was sixteen years old, and made him king instead of his father Amaziah.
9919                                                                                                                                                                                                                                                                                                                                                                                                                                                             He built Elath, and restored it to Judah, after that the king slept with his fathers.
9920                                                                                                                                                                                                                                                                                                                                                                              In the fifteenth year of Amaziah the son of Joash king of Judah Jeroboam the son of Joash king of Israel began to reign in Samaria, and reigned forty and one years.
9921                                                                                                                                                                                                                                                                                                                                                                                                  And he did that which was evil in the sight of the LORD: he departed not from all the sins of Jeroboam the son of Nebat, who made Israel to sin.
9922                                                                                                                                                                                                                                                                                                He restored the coast of Israel from the entering of Hamath unto the sea of the plain, according to the word of the LORD God of Israel, which he spake by the hand of his servant Jonah, the son of Amittai, the prophet, which was of Gathhepher.
9923                                                                                                                                                                                                                                                                                                                                                                                                       For the LORD saw the affliction of Israel, that it was very bitter: for there was not any shut up, nor any left, nor any helper for Israel.
9924                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said not that he would blot out the name of Israel from under heaven: but he saved them by the hand of Jeroboam the son of Joash.
9925                                                                                                                                                                                                                                                                                               Now the rest of the acts of Jeroboam, and all that he did, and his might, how he warred, and how he recovered Damascus, and Hamath, which belonged to Judah, for Israel, are they not written in the book of the chronicles of the kings of Israel?
9926                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jeroboam slept with his fathers, even with the kings of Israel; and Zachariah his son reigned in his stead.
9927                                                                                                                                                                                                                                                                                                                                                                                                                                    In the twenty and seventh year of Jeroboam king of Israel began Azariah son of Amaziah king of Judah to reign.
9928                                                                                                                                                                                                                                                                                                                                                                                               Sixteen years old was he when he began to reign, and he reigned two and fifty years in Jerusalem. And his mother's name was Jecholiah of Jerusalem.
9929                                                                                                                                                                                                                                                                                                                                                                                                                                      And he did that which was right in the sight of the LORD, according to all that his father Amaziah had done;
9930                                                                                                                                                                                                                                                                                                                                                                                                                                     Save that the high places were not removed: the people sacrificed and burnt incense still on the high places.
9931                                                                                                                                                                                                                                                                                                                                                        And the LORD smote the king, so that he was a leper unto the day of his death, and dwelt in a several house. And Jotham the king's son was over the house, judging the people of the land.
9932                                                                                                                                                                                                                                                                                                                                                                                                               And the rest of the acts of Azariah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
9933                                                                                                                                                                                                                                                                                                                                                                                                            So Azariah slept with his fathers; and they buried him with his fathers in the city of David: and Jotham his son reigned in his stead.
9934                                                                                                                                                                                                                                                                                                                                                                                                                 In the thirty and eighth year of Azariah king of Judah did Zachariah the son of Jeroboam reign over Israel in Samaria six months.
9935                                                                                                                                                                                                                                                                                                                                                                             And he did that which was evil in the sight of the LORD, as his fathers had done: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.
9936                                                                                                                                                                                                                                                                                                                                                                                                                     And Shallum the son of Jabesh conspired against him, and smote him before the people, and slew him, and reigned in his stead.
9937                                                                                                                                                                                                                                                                                                                                                                                                                             And the rest of the acts of Zachariah, behold, they are written in the book of the chronicles of the kings of Israel.
9938                                                                                                                                                                                                                                                                                                                                                                                    This was the word of the LORD which he spake unto Jehu, saying, Thy sons shall sit on the throne of Israel unto the fourth generation. And so it came to pass.
9939                                                                                                                                                                                                                                                                                                                                                                                                          Shallum the son of Jabesh began to reign in the nine and thirtieth year of Uzziah king of Judah; and he reigned a full month in Samaria.
9940                                                                                                                                                                                                                                                                                                                                                                                     For Menahem the son of Gadi went up from Tirzah, and came to Samaria, and smote Shallum the son of Jabesh in Samaria, and slew him, and reigned in his stead.
9941                                                                                                                                                                                                                                                                                                                                                                                             And the rest of the acts of Shallum, and his conspiracy which he made, behold, they are written in the book of the chronicles of the kings of Israel.
9942                                                                                                                                                                                                                                                                                                                                    Then Menahem smote Tiphsah, and all that were therein, and the coasts thereof from Tirzah: because they opened not to him, therefore he smote it; and all the women therein that were with child he ripped up.
9943                                                                                                                                                                                                                                                                                                                                                                                                     In the nine and thirtieth year of Azariah king of Judah began Menahem the son of Gadi to reign over Israel, and reigned ten years in Samaria.
9944                                                                                                                                                                                                                                                                                                                                                                                         And he did that which was evil in the sight of the LORD: he departed not all his days from the sins of Jeroboam the son of Nebat, who made Israel to sin.
9945                                                                                                                                                                                                                                                                                                                                                                         And Pul the king of Assyria came against the land: and Menahem gave Pul a thousand talents of silver, that his hand might be with him to confirm the kingdom in his hand.
9946                                                                                                                                                                                                                                                                                                                         And Menahem exacted the money of Israel, even of all the mighty men of wealth, of each man fifty shekels of silver, to give to the king of Assyria. So the king of Assyria turned back, and stayed not there in the land.
9947                                                                                                                                                                                                                                                                                                                                                                                                              And the rest of the acts of Menahem, and all that he did, are they not written in the book of the chronicles of the kings of Israel?
9948                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Menahem slept with his fathers; and Pekahiah his son reigned in his stead.
9949                                                                                                                                                                                                                                                                                                                                                                                                           In the fiftieth year of Azariah king of Judah Pekahiah the son of Menahem began to reign over Israel in Samaria, and reigned two years.
9950                                                                                                                                                                                                                                                                                                                                                                                                      And he did that which was evil in the sight of the LORD: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.
9951                                                                                                                                                                                                                                                                                                  But Pekah the son of Remaliah, a captain of his, conspired against him, and smote him in Samaria, in the palace of the king's house, with Argob and Arieh, and with him fifty men of the Gileadites: and he killed him, and reigned in his room.
9952                                                                                                                                                                                                                                                                                                                                                                                                         And the rest of the acts of Pekahiah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.
9953                                                                                                                                                                                                                                                                                                                                                                                                  In the two and fiftieth year of Azariah king of Judah Pekah the son of Remaliah began to reign over Israel in Samaria, and reigned twenty years.
9954                                                                                                                                                                                                                                                                                                                                                                                                      And he did that which was evil in the sight of the LORD: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.
9955                                                                                                                                                                                                                                                                                                           In the days of Pekah king of Israel came Tiglathpileser king of Assyria, and took Ijon, and Abelbethmaachah, and Janoah, and Kedesh, and Hazor, and Gilead, and Galilee, all the land of Naphtali, and carried them captive to Assyria.
9956                                                                                                                                                                                                                                                                                                                                                         And Hoshea the son of Elah made a conspiracy against Pekah the son of Remaliah, and smote him, and slew him, and reigned in his stead, in the twentieth year of Jotham the son of Uzziah.
9957                                                                                                                                                                                                                                                                                                                                                                                                            And the rest of the acts of Pekah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.
9958                                                                                                                                                                                                                                                                                                                                                                                                                             In the second year of Pekah the son of Remaliah king of Israel began Jotham the son of Uzziah king of Judah to reign.
9959                                                                                                                                                                                                                                                                                                                                                                                     Five and twenty years old was he when he began to reign, and he reigned sixteen years in Jerusalem. And his mother's name was Jerusha, the daughter of Zadok.
9960                                                                                                                                                                                                                                                                                                                                                                                                                                And he did that which was right in the sight of the LORD: he did according to all that his father Uzziah had done.
9961                                                                                                                                                                                                                                                                                                                                                                                   Howbeit the high places were not removed: the people sacrificed and burned incense still in the high places. He built the higher gate of the house of the LORD.
9962                                                                                                                                                                                                                                                                                                                                                                                                                Now the rest of the acts of Jotham, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
9963                                                                                                                                                                                                                                                                                                                                                                                                                                        In those days the LORD began to send against Judah Rezin the king of Syria, and Pekah the son of Remaliah.
9964                                                                                                                                                                                                                                                                                                                                                                                                        And Jotham slept with his fathers, and was buried with his fathers in the city of David his father: and Ahaz his son reigned in his stead.
9965                                                                                                                                                                                                                                                                                                                                                                                                                                         In the seventeenth year of Pekah the son of Remaliah Ahaz the son of Jotham king of Judah began to reign.
9966                                                                                                                                                                                                                                                                                                                                                               Twenty years old was Ahaz when he began to reign, and reigned sixteen years in Jerusalem, and did not that which was right in the sight of the LORD his God, like David his father.
9967                                                                                                                                                                                                                                                                                                                                         But he walked in the way of the kings of Israel, yea, and made his son to pass through the fire, according to the abominations of the heathen, whom the LORD cast out from before the children of Israel.
9968                                                                                                                                                                                                                                                                                                                                                                                                                                             And he sacrificed and burnt incense in the high places, and on the hills, and under every green tree.
9969                                                                                                                                                                                                                                                                                                                                                                                                Then Rezin king of Syria and Pekah son of Remaliah king of Israel came up to Jerusalem to war: and they besieged Ahaz, but could not overcome him.
9970                                                                                                                                                                                                                                                                                                                                                                                           At that time Rezin king of Syria recovered Elath to Syria, and drave the Jews from Elath: and the Syrians came to Elath, and dwelt there unto this day.
9971                                                                                                                                                                                                                                                                                                                  So Ahaz sent messengers to Tiglathpileser king of Assyria, saying, I am thy servant and thy son: come up, and save me out of the hand of the king of Syria, and out of the hand of the king of Israel, which rise up against me.
9972                                                                                                                                                                                                                                                                                                                                                                            And Ahaz took the silver and gold that was found in the house of the LORD, and in the treasures of the king's house, and sent it for a present to the king of Assyria.
9973                                                                                                                                                                                                                                                                                                                                                                           And the king of Assyria hearkened unto him: for the king of Assyria went up against Damascus, and took it, and carried the people of it captive to Kir, and slew Rezin.
9974                                                                                                                                                                                                                                                                                                  And king Ahaz went to Damascus to meet Tiglathpileser king of Assyria, and saw an altar that was at Damascus: and king Ahaz sent to Urijah the priest the fashion of the altar, and the pattern of it, according to all the workmanship thereof.
9975                                                                                                                                                                                                                                                                                                                                                                                   And Urijah the priest built an altar according to all that king Ahaz had sent from Damascus: so Urijah the priest made it against king Ahaz came from Damascus.
9976                                                                                                                                                                                                                                                                                                                                                                                                                      And when the king was come from Damascus, the king saw the altar: and the king approached to the altar, and offered thereon.
9977                                                                                                                                                                                                                                                                                                                                                                                             And he burnt his burnt offering and his meat offering, and poured his drink offering, and sprinkled the blood of his peace offerings, upon the altar.
9978                                                                                                                                                                                                                                                                                                                                                    And he brought also the brazen altar, which was before the LORD, from the forefront of the house, from between the altar and the house of the LORD, and put it on the north side of the altar.
9979                                                                                       And king Ahaz commanded Urijah the priest, saying, Upon the great altar burn the morning burnt offering, and the evening meat offering, and the king's burnt sacrifice, and his meat offering, with the burnt offering of all the people of the land, and their meat offering, and their drink offerings; and sprinkle upon it all the blood of the burnt offering, and all the blood of the sacrifice: and the brazen altar shall be for me to enquire by.
9980                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thus did Urijah the priest, according to all that king Ahaz commanded.
9981                                                                                                                                                                                                                                                                                                                                                   And king Ahaz cut off the borders of the bases, and removed the laver from off them; and took down the sea from off the brazen oxen that were under it, and put it upon the pavement of stones.
9982                                                                                                                                                                                                                                                                                                                                                                                      And the covert for the sabbath that they had built in the house, and the king's entry without, turned he from the house of the LORD for the king of Assyria.
9983                                                                                                                                                                                                                                                                                                                                                                                                                          Now the rest of the acts of Ahaz which he did, are they not written in the book of the chronicles of the kings of Judah?
9984                                                                                                                                                                                                                                                                                                                                                                                                                 And Ahaz slept with his fathers, and was buried with his fathers in the city of David: and Hezekiah his son reigned in his stead.
9985                                                                                                                                                                                                                                                                                                                                                                                                                                In the twelfth year of Ahaz king of Judah began Hoshea the son of Elah to reign in Samaria over Israel nine years.
9986                                                                                                                                                                                                                                                                                                                                                                                                                                     And he did that which was evil in the sight of the LORD, but not as the kings of Israel that were before him.
9987                                                                                                                                                                                                                                                                                                                                                                                                                                            Against him came up Shalmaneser king of Assyria; and Hoshea became his servant, and gave him presents.
9988                                                                                                                                                                                                                                                                                               And the king of Assyria found conspiracy in Hoshea: for he had sent messengers to So king of Egypt, and brought no present to the king of Assyria, as he had done year by year: therefore the king of Assyria shut him up, and bound him in prison.
9989                                                                                                                                                                                                                                                                                                                                                                                                                                    Then the king of Assyria came up throughout all the land, and went up to Samaria, and besieged it three years.
9990                                                                                                                                                                                                                                                                                                                                                  In the ninth year of Hoshea the king of Assyria took Samaria, and carried Israel away into Assyria, and placed them in Halah and in Habor by the river of Gozan, and in the cities of the Medes.
9991                                                                                                                                                                                                                                                                                                                                    For so it was, that the children of Israel had sinned against the LORD their God, which had brought them up out of the land of Egypt, from under the hand of Pharaoh king of Egypt, and had feared other gods,
9992                                                                                                                                                                                                                                                                                                                                                                                            And walked in the statutes of the heathen, whom the LORD cast out from before the children of Israel, and of the kings of Israel, which they had made.
9993                                                                                                                                                                                                                                                                                                                                      And the children of Israel did secretly those things that were not right against the LORD their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city.
9994                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they set them up images and groves in every high hill, and under every green tree:
9995                                                                                                                                                                                                                                                                                                                                                                           And there they burnt incense in all the high places, as did the heathen whom the LORD carried away before them; and wrought wicked things to provoke the LORD to anger:
9996                                                                                                                                                                                                                                                                                                                                                                                                                                                           For they served idols, whereof the LORD had said unto them, Ye shall not do this thing.
9997                                                                                                                                                                                                                                                 Yet the LORD testified against Israel, and against Judah, by all the prophets, and by all the seers, saying, Turn ye from your evil ways, and keep my commandments and my statutes, according to all the law which I commanded your fathers, and which I sent to you by my servants the prophets.
9998                                                                                                                                                                                                                                                                                                                                                                                                     Notwithstanding they would not hear, but hardened their necks, like to the neck of their fathers, that did not believe in the LORD their God.
9999                                                                                                                                                                                                                            And they rejected his statutes, and his covenant that he made with their fathers, and his testimonies which he testified against them; and they followed vanity, and became vain, and went after the heathen that were round about them, concerning whom the LORD had charged them, that they should not do like them.
10000                                                                                                                                                                                                                                                                                                                                                                And they left all the commandments of the LORD their God, and made them molten images, even two calves, and made a grove, and worshipped all the host of heaven, and served Baal.
10001                                                                                                                                                                                                                                                                                                                                                 And they caused their sons and their daughters to pass through the fire, and used divination and enchantments, and sold themselves to do evil in the sight of the LORD, to provoke him to anger.
10002                                                                                                                                                                                                                                                                                                                                                                                                               Therefore the LORD was very angry with Israel, and removed them out of his sight: there was none left but the tribe of Judah only.
10003                                                                                                                                                                                                                                                                                                                                                                                                                                Also Judah kept not the commandments of the LORD their God, but walked in the statutes of Israel which they made.
10004                                                                                                                                                                                                                                                                                                                                                                                         And the LORD rejected all the seed of Israel, and afflicted them, and delivered them into the hand of spoilers, until he had cast them out of his sight.
10005                                                                                                                                                                                                                                                                                                                                                                      For he rent Israel from the house of David; and they made Jeroboam the son of Nebat king: and Jeroboam drave Israel from following the LORD, and made them sin a great sin.
10006                                                                                                                                                                                                                                                                                                                                                                                                                                         For the children of Israel walked in all the sins of Jeroboam which he did; they departed not from them;
10007                                                                                                                                                                                                                                                                                                                                                                      Until the LORD removed Israel out of his sight, as he had said by all his servants the prophets. So was Israel carried away out of their own land to Assyria unto this day.
10008                                                                                                                                                                                                                                                                                  And the king of Assyria brought men from Babylon, and from Cuthah, and from Ava, and from Hamath, and from Sepharvaim, and placed them in the cities of Samaria instead of the children of Israel: and they possessed Samaria, and dwelt in the cities thereof.
10009                                                                                                                                                                                                                                                                                                                                                                                        And so it was at the beginning of their dwelling there, that they feared not the LORD: therefore the LORD sent lions among them, which slew some of them.
10010                                                                                                                                                                                                                                        Wherefore they spake to the king of Assyria, saying, The nations which thou hast removed, and placed in the cities of Samaria, know not the manner of the God of the land: therefore he hath sent lions among them, and, behold, they slay them, because they know not the manner of the God of the land.
10011                                                                                                                                                                                                                                                                                                                                             Then the king of Assyria commanded, saying, Carry thither one of the priests whom ye brought from thence; and let them go and dwell there, and let him teach them the manner of the God of the land.
10012                                                                                                                                                                                                                                                                                                                                                                                                         Then one of the priests whom they had carried away from Samaria came and dwelt in Bethel, and taught them how they should fear the LORD.
10013                                                                                                                                                                                                                                                                                                                                                                       Howbeit every nation made gods of their own, and put them in the houses of the high places which the Samaritans had made, every nation in their cities wherein they dwelt.
10014                                                                                                                                                                                                                                                                                                                                                                                                                                   And the men of Babylon made Succothbenoth, and the men of Cuth made Nergal, and the men of Hamath made Ashima,
10015                                                                                                                                                                                                                                                                                                                                                                                                   And the Avites made Nibhaz and Tartak, and the Sepharvites burnt their children in fire to Adrammelech and Anammelech, the gods of Sepharvaim.
10016                                                                                                                                                                                                                                                                                                                                                                                  So they feared the LORD, and made unto themselves of the lowest of them priests of the high places, which sacrificed for them in the houses of the high places.
10017                                                                                                                                                                                                                                                                                                                                                                                                                             They feared the LORD, and served their own gods, after the manner of the nations whom they carried away from thence.
10018                                                                                                                                                                                                                                                                                                  Unto this day they do after the former manners: they fear not the LORD, neither do they after their statutes, or after their ordinances, or after the law and commandment which the LORD commanded the children of Jacob, whom he named Israel;
10019                                                                                                                                                                                                                                                                                                                                                                               With whom the LORD had made a covenant, and charged them, saying, Ye shall not fear other gods, nor bow yourselves to them, nor serve them, nor sacrifice to them:
10020                                                                                                                                                                                                                                                                                                                                                               But the LORD, who brought you up out of the land of Egypt with great power and a stretched out arm, him shall ye fear, and him shall ye worship, and to him shall ye do sacrifice.
10021                                                                                                                                                                                                                                                                                                                                                                           And the statutes, and the ordinances, and the law, and the commandment, which he wrote for you, ye shall observe to do for evermore; and ye shall not fear other gods.
10022                                                                                                                                                                                                                                                                                                                                                                                                                                                And the covenant that I have made with you ye shall not forget; neither shall ye fear other gods.
10023                                                                                                                                                                                                                                                                                                                                                                                                                                               But the LORD your God ye shall fear; and he shall deliver you out of the hand of all your enemies.
10024                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Howbeit they did not hearken, but they did after their former manner.
10025                                                                                                                                                                                                                                                                                                                                                                            So these nations feared the LORD, and served their graven images, both their children, and their children's children: as did their fathers, so do they unto this day.
10026                                                                                                                                                                                                                                                                                                                                                                                                          Now it came to pass in the third year of Hoshea son of Elah king of Israel, that Hezekiah the son of Ahaz king of Judah began to reign.
10027                                                                                                                                                                                                                                                                                                                                                                           Twenty and five years old was he when he began to reign; and he reigned twenty and nine years in Jerusalem. His mother's name also was Abi, the daughter of Zachariah.
10028                                                                                                                                                                                                                                                                                                                                                                                                                                            And he did that which was right in the sight of the LORD, according to all that David his father did.
10029                                                                                                                                                                                                                                                                                                            He removed the high places, and brake the images, and cut down the groves, and brake in pieces the brazen serpent that Moses had made: for unto those days the children of Israel did burn incense to it: and he called it Nehushtan.
10030                                                                                                                                                                                                                                                                                                                                                                                                            He trusted in the LORD God of Israel; so that after him was none like him among all the kings of Judah, nor any that were before him.
10031                                                                                                                                                                                                                                                                                                                                                                                                                        For he clave to the LORD, and departed not from following him, but kept his commandments, which the LORD commanded Moses.
10032                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD was with him; and he prospered whithersoever he went forth: and he rebelled against the king of Assyria, and served him not.
10033                                                                                                                                                                                                                                                                                                                                                                                                                            He smote the Philistines, even unto Gaza, and the borders thereof, from the tower of the watchmen to the fenced city.
10034                                                                                                                                                                                                                                                                                                                                             And it came to pass in the fourth year of king Hezekiah, which was the seventh year of Hoshea son of Elah king of Israel, that Shalmaneser king of Assyria came up against Samaria, and besieged it.
10035                                                                                                                                                                                                                                                                                                                                                                                           And at the end of three years they took it: even in the sixth year of Hezekiah, that is in the ninth year of Hoshea king of Israel, Samaria was taken.
10036                                                                                                                                                                                                                                                                                                                                                                                            And the king of Assyria did carry away Israel unto Assyria, and put them in Halah and in Habor by the river of Gozan, and in the cities of the Medes:
10037                                                                                                                                                                                                                                                                                                                                                              Because they obeyed not the voice of the LORD their God, but transgressed his covenant, and all that Moses the servant of the LORD commanded, and would not hear them, nor do them.
10038                                                                                                                                                                                                                                                                                                                                                                                                       Now in the fourteenth year of king Hezekiah did Sennacherib king of Assyria come up against all the fenced cities of Judah, and took them.
10039                                                                                                                                                                                                                                                                 And Hezekiah king of Judah sent to the king of Assyria to Lachish, saying, I have offended; return from me: that which thou puttest on me will I bear. And the king of Assyria appointed unto Hezekiah king of Judah three hundred talents of silver and thirty talents of gold.
10040                                                                                                                                                                                                                                                                                                                                                                                                                          And Hezekiah gave him all the silver that was found in the house of the LORD, and in the treasures of the king's house.
10041                                                                                                                                                                                                                                                                                                                                                         At that time did Hezekiah cut off the gold from the doors of the temple of the LORD, and from the pillars which Hezekiah king of Judah had overlaid, and gave it to the king of Assyria.
10042                                                                                                                                                                                                                                       And the king of Assyria sent Tartan and Rabsaris and Rabshakeh from Lachish to king Hezekiah with a great host against Jerusalem. And they went up and came to Jerusalem. And when they were come up, they came and stood by the conduit of the upper pool, which is in the highway of the fuller's field.
10043                                                                                                                                                                                                                                                                                                                                                            And when they had called to the king, there came out to them Eliakim the son of Hilkiah, which was over the household, and Shebna the scribe, and Joah the son of Asaph the recorder.
10044                                                                                                                                                                                                                                                                                                                                                                                           And Rabshakeh said unto them, Speak ye now to Hezekiah, Thus saith the great king, the king of Assyria, What confidence is this wherein thou trustest?
10045                                                                                                                                                                                                                                                                                                                                                                                                Thou sayest, (but they are but vain words,) I have counsel and strength for the war. Now on whom dost thou trust, that thou rebellest against me?
10046                                                                                                                                                                                                                                                                                                                                        Now, behold, thou trustest upon the staff of this bruised reed, even upon Egypt, on which if a man lean, it will go into his hand, and pierce it: so is Pharaoh king of Egypt unto all that trust on him.
10047                                                                                                                                                                                                                                                                                                                         But if ye say unto me, We trust in the LORD our God: is not that he, whose high places and whose altars Hezekiah hath taken away, and hath said to Judah and Jerusalem, Ye shall worship before this altar in Jerusalem?
10048                                                                                                                                                                                                                                                                                                                                                                       Now therefore, I pray thee, give pledges to my lord the king of Assyria, and I will deliver thee two thousand horses, if thou be able on thy part to set riders upon them.
10049                                                                                                                                                                                                                                                                                                                                                                                             How then wilt thou turn away the face of one captain of the least of my master's servants, and put thy trust on Egypt for chariots and for horsemen?
10050                                                                                                                                                                                                                                                                                                                                                                                                                Am I now come up without the LORD against this place to destroy it? The LORD said to me, Go up against this land, and destroy it.
10051                                                                                                                                                                                                                                                                                         Then said Eliakim the son of Hilkiah, and Shebna, and Joah, unto Rabshakeh, Speak, I pray thee, to thy servants in the Syrian language; for we understand it: and talk not with us in the Jews' language in the ears of the people that are on the wall.
10052                                                                                                                                                                                                                                                                                                                But Rabshakeh said unto them, Hath my master sent me to thy master, and to thee, to speak these words? hath he not sent me to the men which sit on the wall, that they may eat their own dung, and drink their own piss with you?
10053                                                                                                                                                                                                                                                                                                                                                                                                 Then Rabshakeh stood and cried with a loud voice in the Jews' language, and spake, saying, Hear the word of the great king, the king of Assyria:
10054                                                                                                                                                                                                                                                                                                                                                                                                                                      Thus saith the king, Let not Hezekiah deceive you: for he shall not be able to deliver you out of his hand:
10055                                                                                                                                                                                                                                                                                                                                                                             Neither let Hezekiah make you trust in the LORD, saying, The LORD will surely deliver us, and this city shall not be delivered into the hand of the king of Assyria.
10056                                                                                                                                                                                                                                                                                             Hearken not to Hezekiah: for thus saith the king of Assyria, Make an agreement with me by a present, and come out to me, and then eat ye every man of his own vine, and every one of his fig tree, and drink ye every one the waters of his cistern:
10057                                                                                                                                                                                                                                                                   Until I come and take you away to a land like your own land, a land of corn and wine, a land of bread and vineyards, a land of oil olive and of honey, that ye may live, and not die: and hearken not unto Hezekiah, when he persuadeth you, saying, The LORD will deliver us.
10058                                                                                                                                                                                                                                                                                                                                                                                                                                            Hath any of the gods of the nations delivered at all his land out of the hand of the king of Assyria?
10059                                                                                                                                                                                                                                                                                                                                                                                                      Where are the gods of Hamath, and of Arpad? where are the gods of Sepharvaim, Hena, and Ivah? have they delivered Samaria out of mine hand?
10060                                                                                                                                                                                                                                                                                                                                                                                   Who are they among all the gods of the countries, that have delivered their country out of mine hand, that the LORD should deliver Jerusalem out of mine hand?
10061                                                                                                                                                                                                                                                                                                                                                                                                                            But the people held their peace, and answered him not a word: for the king's commandment was, saying, Answer him not.
10062                                                                                                                                                                                                                                                                                                                                     Then came Eliakim the son of Hilkiah, which was over the household, and Shebna the scribe, and Joah the son of Asaph the recorder, to Hezekiah with their clothes rent, and told him the words of Rabshakeh.
10063                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when king Hezekiah heard it, that he rent his clothes, and covered himself with sackcloth, and went into the house of the LORD.
10064                                                                                                                                                                                                                                                                                                                                                                          And he sent Eliakim, which was over the household, and Shebna the scribe, and the elders of the priests, covered with sackcloth, to Isaiah the prophet the son of Amoz.
10065                                                                                                                                                                                                                                                                                                                                                       And they said unto him, Thus saith Hezekiah, This day is a day of trouble, and of rebuke, and blasphemy; for the children are come to the birth, and there is not strength to bring forth.
10066                                                                                                                                                                                                                                                                             It may be the LORD thy God will hear all the words of Rabshakeh, whom the king of Assyria his master hath sent to reproach the living God; and will reprove the words which the LORD thy God hath heard: wherefore lift up thy prayer for the remnant that are left.
10067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So the servants of king Hezekiah came to Isaiah.
10068                                                                                                                                                                                                                                                                                                                                           And Isaiah said unto them, Thus shall ye say to your master, Thus saith the LORD, Be not afraid of the words which thou hast heard, with which the servants of the king of Assyria have blasphemed me.
10069                                                                                                                                                                                                                                                                                                                                                                                    Behold, I will send a blast upon him, and he shall hear a rumor, and shall return to his own land; and I will cause him to fall by the sword in his own land.
10070                                                                                                                                                                                                                                                                                                                                                                                                                 So Rabshakeh returned, and found the king of Assyria warring against Libnah: for he had heard that he was departed from Lachish.
10071                                                                                                                                                                                                                                                                                                                                                                                                And when he heard say of Tirhakah king of Ethiopia, Behold, he is come out to fight against thee: he sent messengers again unto Hezekiah, saying,
10072                                                                                                                                                                                                                                                                                                                                                        Thus shall ye speak to Hezekiah king of Judah, saying, Let not thy God in whom thou trustest deceive thee, saying, Jerusalem shall not be delivered into the hand of the king of Assyria.
10073                                                                                                                                                                                                                                                                                                                                                                                                               Behold, thou hast heard what the kings of Assyria have done to all lands, by destroying them utterly: and shalt thou be delivered?
10074                                                                                                                                                                                                                                                                                                                                                                                   Have the gods of the nations delivered them which my fathers have destroyed; as Gozan, and Haran, and Rezeph, and the children of Eden which were in Thelasar?
10075                                                                                                                                                                                                                                                                                                                                                                                                                                   Where is the king of Hamath, and the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivah?
10076                                                                                                                                                                                                                                                                                                                                                                                     And Hezekiah received the letter of the hand of the messengers, and read it: and Hezekiah went up into the house of the LORD, and spread it before the LORD.
10077                                                                                                                                                                                                                                                                                                                                  And Hezekiah prayed before the LORD, and said, O LORD God of Israel, which dwellest between the cherubim, thou art the God, even thou alone, of all the kingdoms of the earth; thou hast made heaven and earth.
10078                                                                                                                                                                                                                                                                                                                                                                                          LORD, bow down thine ear, and hear: open, LORD, thine eyes, and see: and hear the words of Sennacherib, which hath sent him to reproach the living God.
10079                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of a truth, LORD, the kings of Assyria have destroyed the nations and their lands,
10080                                                                                                                                                                                                                                                                                                                                                                                                  And have cast their gods into the fire: for they were no gods, but the work of men's hands, wood and stone: therefore they have destroyed them.
10081                                                                                                                                                                                                                                                                                                                                                                             Now therefore, O LORD our God, I beseech thee, save thou us out of his hand, that all the kingdoms of the earth may know that thou art the LORD God, even thou only.
10082                                                                                                                                                                                                                                                                                                                                                                     Then Isaiah the son of Amoz sent to Hezekiah, saying, Thus saith the LORD God of Israel, That which thou hast prayed to me against Sennacherib king of Assyria I have heard.
10083                                                                                                                                                                                                                                                                                                                                                This is the word that the LORD hath spoken concerning him; The virgin the daughter of Zion hath despised thee, and laughed thee to scorn; the daughter of Jerusalem hath shaken her head at thee.
10084                                                                                                                                                                                                                                                                                                                                                                                   Whom hast thou reproached and blasphemed? and against whom hast thou exalted thy voice, and lifted up thine eyes on high? even against the Holy One of Israel.
10085                                                                                                                                                                                                  By thy messengers thou hast reproached the LORD, and hast said, With the multitude of my chariots I am come up to the height of the mountains, to the sides of Lebanon, and will cut down the tall cedar trees thereof, and the choice fir trees thereof: and I will enter into the lodgings of his borders, and into the forest of his Carmel.
10086                                                                                                                                                                                                                                                                                                                                                                                                                          I have digged and drunk strange waters, and with the sole of my feet have I dried up all the rivers of besieged places.
10087                                                                                                                                                                                                                                                                                                                                                Hast thou not heard long ago how I have done it, and of ancient times that I have formed it? now have I brought it to pass, that thou shouldest be to lay waste fenced cities into ruinous heaps.
10088                                                                                                                                                                                                                                                                                                                       Therefore their inhabitants were of small power, they were dismayed and confounded; they were as the grass of the field, and as the green herb, as the grass on the house tops, and as corn blasted before it be grown up.
10089                                                                                                                                                                                                                                                                                                                                                                                                                                                             But I know thy abode, and thy going out, and thy coming in, and thy rage against me.
10090                                                                                                                                                                                                                                                                                                                                            Because thy rage against me and thy tumult is come up into mine ears, therefore I will put my hook in thy nose, and my bridle in thy lips, and I will turn thee back by the way by which thou camest.
10091                                                                                                                                                                                                                                                                                                  And this shall be a sign unto thee, Ye shall eat this year such things as grow of themselves, and in the second year that which springeth of the same; and in the third year sow ye, and reap, and plant vineyards, and eat the fruits thereof.
10092                                                                                                                                                                                                                                                                                                                                                                                                                                 And the remnant that is escaped of the house of Judah shall yet again take root downward, and bear fruit upward.
10093                                                                                                                                                                                                                                                                                                                                                                                                              For out of Jerusalem shall go forth a remnant, and they that escape out of mount Zion: the zeal of the LORD of hosts shall do this.
10094                                                                                                                                                                                                                                                                                                                                                            Therefore thus saith the LORD concerning the king of Assyria, He shall not come into this city, nor shoot an arrow there, nor come before it with shield, nor cast a bank against it.
10095                                                                                                                                                                                                                                                                                                                                                                                                                                         By the way that he came, by the same shall he return, and shall not come into this city, saith the LORD.
10096                                                                                                                                                                                                                                                                                                                                                                                                                                                     For I will defend this city, to save it, for mine own sake, and for my servant David's sake.
10097                                                                                                                                                                                                                                                                                                                And it came to pass that night, that the angel of the LORD went out, and smote in the camp of the Assyrians an hundred fourscore and five thousand: and when they arose early in the morning, behold, they were all dead corpses.
10098                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh.
10099                                                                                                                                                                                                                                                                                                             And it came to pass, as he was worshipping in the house of Nisroch his god, that Adrammelech and Sharezer his sons smote him with the sword: and they escaped into the land of Armenia. And Esarhaddon his son reigned in his stead.
10100                                                                                                                                                                                                                                                                                                                                              In those days was Hezekiah sick unto death. And the prophet Isaiah the son of Amoz came to him, and said unto him, Thus saith the LORD, Set thine house in order; for thou shalt die, and not live.
10101                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then he turned his face to the wall, and prayed unto the LORD, saying,
10102                                                                                                                                                                                                                                                                                                                                                                     I beseech thee, O LORD, remember now how I have walked before thee in truth and with a perfect heart, and have done that which is good in thy sight. And Hezekiah wept sore.
10103                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, afore Isaiah was gone out into the middle court, that the word of the LORD came to him, saying,
10104                                                                                                                                                                                                                                                                                                Turn again, and tell Hezekiah the captain of my people, Thus saith the LORD, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the LORD.
10105                                                                                                                                                                                                                                                                                                                                        And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David's sake.
10106                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Isaiah said, Take a lump of figs. And they took and laid it on the boil, and he recovered.
10107                                                                                                                                                                                                                                                                                                                                                                                               And Hezekiah said unto Isaiah, What shall be the sign that the LORD will heal me, and that I shall go up into the house of the LORD the third day?
10108                                                                                                                                                                                                                                                                                                                                                                    And Isaiah said, This sign shalt thou have of the LORD, that the LORD will do the thing that he hath spoken: shall the shadow go forward ten degrees, or go back ten degrees?
10109                                                                                                                                                                                                                                                                                                                                                                                                           And Hezekiah answered, It is a light thing for the shadow to go down ten degrees: nay, but let the shadow return backward ten degrees.
10110                                                                                                                                                                                                                                                                                                                                                                                                       And Isaiah the prophet cried unto the LORD: and he brought the shadow ten degrees backward, by which it had gone down in the dial of Ahaz.
10111                                                                                                                                                                                                                                                                                                                                                                                       At that time Berodachbaladan, the son of Baladan, king of Babylon, sent letters and a present unto Hezekiah: for he had heard that Hezekiah had been sick.
10112                                                                                                                                                                                                                    And Hezekiah hearkened unto them, and showed them all the house of his precious things, the silver, and the gold, and the spices, and the precious ointment, and all the house of his armor, and all that was found in his treasures: there was nothing in his house, nor in all his dominion, that Hezekiah showed them not.
10113                                                                                                                                                                                                                                                                                                                                            Then came Isaiah the prophet unto king Hezekiah, and said unto him, What said these men? and from whence came they unto thee? And Hezekiah said, They are come from a far country, even from Babylon.
10114                                                                                                                                                                                                                                                                                                                                                   And he said, What have they seen in thine house? And Hezekiah answered, All the things that are in mine house have they seen: there is nothing among my treasures that I have not showed them.
10115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Isaiah said unto Hezekiah, Hear the word of the LORD.
10116                                                                                                                                                                                                                                                                                                                                                    Behold, the days come, that all that is in thine house, and that which thy fathers have laid up in store unto this day, shall be carried into Babylon: nothing shall be left, saith the LORD.
10117                                                                                                                                                                                                                                                                                                                                                                                        And of thy sons that shall issue from thee, which thou shalt beget, shall they take away; and they shall be eunuchs in the palace of the king of Babylon.
10118                                                                                                                                                                                                                                                                                                                                                                                              Then said Hezekiah unto Isaiah, Good is the word of the LORD which thou hast spoken. And he said, Is it not good, if peace and truth be in my days?
10119                                                                                                                                                                                                                                                                                                                                       And the rest of the acts of Hezekiah, and all his might, and how he made a pool, and a conduit, and brought water into the city, are they not written in the book of the chronicles of the kings of Judah?
10120                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Hezekiah slept with his fathers: and Manasseh his son reigned in his stead.
10121                                                                                                                                                                                                                                                                                                                                                                                                        Manasseh was twelve years old when he began to reign, and reigned fifty and five years in Jerusalem. And his mother's name was Hephzibah.
10122                                                                                                                                                                                                                                                                                                                                                                                            And he did that which was evil in the sight of the LORD, after the abominations of the heathen, whom the LORD cast out before the children of Israel.
10123                                                                                                                                                                                                                                                                                                                           For he built up again the high places which Hezekiah his father had destroyed; and he reared up altars for Baal, and made a grove, as did Ahab king of Israel; and worshipped all the host of heaven, and served them.
10124                                                                                                                                                                                                                                                                                                                                                                                                                                           And he built altars in the house of the LORD, of which the LORD said, In Jerusalem will I put my name.
10125                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he built altars for all the host of heaven in the two courts of the house of the LORD.
10126                                                                                                                                                                                                                                                                                                                                 And he made his son pass through the fire, and observed times, and used enchantments, and dealt with familiar spirits and wizards: he wrought much wickedness in the sight of the LORD, to provoke him to anger.
10127                                                                                                                                                                                                                                                                                                    And he set a graven image of the grove that he had made in the house, of which the LORD said to David, and to Solomon his son, In this house, and in Jerusalem, which I have chosen out of all tribes of Israel, will I put my name for ever:
10128                                                                                                                                                                                                                                                                                                 Neither will I make the feet of Israel move any more out of the land which I gave their fathers; only if they will observe to do according to all that I have commanded them, and according to all the law that my servant Moses commanded them.
10129                                                                                                                                                                                                                                                                                                                                                                                                    But they hearkened not: and Manasseh seduced them to do more evil than did the nations whom the LORD destroyed before the children of Israel.
10130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake by his servants the prophets, saying,
10131                                                                                                                                                                                                                                                                                                                                                      Because Manasseh king of Judah hath done these abominations, and hath done wickedly above all that the Amorites did, which were before him, and hath made Judah also to sin with his idols:
10132                                                                                                                                                                                                                                                                                                                                                                                 Therefore thus saith the LORD God of Israel, Behold, I am bringing such evil upon Jerusalem and Judah, that whosoever heareth of it, both his ears shall tingle.
10133                                                                                                                                                                                                                                                                                                                                                            And I will stretch over Jerusalem the line of Samaria, and the plummet of the house of Ahab: and I will wipe Jerusalem as a man wipeth a dish, wiping it, and turning it upside down.
10134                                                                                                                                                                                                                                                                                                                                                                              And I will forsake the remnant of mine inheritance, and deliver them into the hand of their enemies; and they shall become a prey and a spoil to all their enemies;
10135                                                                                                                                                                                                                                                                                                                                                                                  Because they have done that which was evil in my sight, and have provoked me to anger, since the day their fathers came forth out of Egypt, even unto this day.
10136                                                                                                                                                                                                                                                                                                                                     Moreover Manasseh shed innocent blood very much, till he had filled Jerusalem from one end to another; beside his sin wherewith he made Judah to sin, in doing that which was evil in the sight of the LORD.
10137                                                                                                                                                                                                                                                                                                                                                                                 Now the rest of the acts of Manasseh, and all that he did, and his sin that he sinned, are they not written in the book of the chronicles of the kings of Judah?
10138                                                                                                                                                                                                                                                                                                                                                                                                And Manasseh slept with his fathers, and was buried in the garden of his own house, in the garden of Uzza: and Amon his son reigned in his stead.
10139                                                                                                                                                                                                                                                                                                                                                                        Amon was twenty and two years old when he began to reign, and he reigned two years in Jerusalem. And his mother's name was Meshullemeth, the daughter of Haruz of Jotbah.
10140                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did that which was evil in the sight of the LORD, as his father Manasseh did.
10141                                                                                                                                                                                                                                                                                                                                                                                                                        And he walked in all the way that his father walked in, and served the idols that his father served, and worshipped them:
10142                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he forsook the LORD God of his fathers, and walked not in the way of the LORD.
10143                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the servants of Amon conspired against him, and slew the king in his own house.
10144                                                                                                                                                                                                                                                                                                                                                                                                 And the people of the land slew all them that had conspired against king Amon; and the people of the land made Josiah his son king in his stead.
10145                                                                                                                                                                                                                                                                                                                                                                                                                         Now the rest of the acts of Amon which he did, are they not written in the book of the chronicles of the kings of Judah?
10146                                                                                                                                                                                                                                                                                                                                                                                                                                               And he was buried in his sepulchre in the garden of Uzza: and Josiah his son reigned in his stead.
10147                                                                                                                                                                                                                                                                                                                                                                       Josiah was eight years old when he began to reign, and he reigned thirty and one years in Jerusalem. And his mother's name was Jedidah, the daughter of Adaiah of Boscath.
10148                                                                                                                                                                                                                                                                                                                                                                                  And he did that which was right in the sight of the LORD, and walked in all the way of David his father, and turned not aside to the right hand or to the left.
10149                                                                                                                                                                                                                                                                                                                                                                    And it came to pass in the eighteenth year of king Josiah, that the king sent Shaphan the son of Azaliah, the son of Meshullam, the scribe, to the house of the LORD, saying,
10150                                                                                                                                                                                                                                                                                                                                                                             Go up to Hilkiah the high priest, that he may sum the silver which is brought into the house of the LORD, which the keepers of the door have gathered of the people:
10151                                                                                                                                                                                                                                                                                                          And let them deliver it into the hand of the doers of the work, that have the oversight of the house of the LORD: and let them give it to the doers of the work which is in the house of the LORD, to repair the breaches of the house,
10152                                                                                                                                                                                                                                                                                                                                                                                                                                                 Unto carpenters, and builders, and masons, and to buy timber and hewn stone to repair the house.
10153                                                                                                                                                                                                                                                                                                                                                                                                                    Howbeit there was no reckoning made with them of the money that was delivered into their hand, because they dealt faithfully.
10154                                                                                                                                                                                                                                                                                                                                                                       And Hilkiah the high priest said unto Shaphan the scribe, I have found the book of the law in the house of the LORD. And Hilkiah gave the book to Shaphan, and he read it.
10155                                                                                                                                                                                                                                                                            And Shaphan the scribe came to the king, and brought the king word again, and said, Thy servants have gathered the money that was found in the house, and have delivered it into the hand of them that do the work, that have the oversight of the house of the LORD.
10156                                                                                                                                                                                                                                                                                                                                                                                                                And Shaphan the scribe showed the king, saying, Hilkiah the priest hath delivered me a book. And Shaphan read it before the king.
10157                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when the king had heard the words of the book of the law, that he rent his clothes.
10158                                                                                                                                                                                                                                                                                                                                                                   And the king commanded Hilkiah the priest, and Ahikam the son of Shaphan, and Achbor the son of Michaiah, and Shaphan the scribe, and Asahiah a servant of the king's, saying,
10159                                                                                                                                                                                                                      Go ye, enquire of the LORD for me, and for the people, and for all Judah, concerning the words of this book that is found: for great is the wrath of the LORD that is kindled against us, because our fathers have not hearkened unto the words of this book, to do according unto all that which is written concerning us.
10160                                                                                                                                                                                                                                                                             So Hilkiah the priest, and Ahikam, and Achbor, and Shaphan, and Asahiah, went unto Huldah the prophetess, the wife of Shallum the son of Tikvah, the son of Harhas, keeper of the wardrobe; (now she dwelt in Jerusalem in the college;) and they communed with her.
10161                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she said unto them, Thus saith the LORD God of Israel, Tell the man that sent you to me,
10162                                                                                                                                                                                                                                                                                                                                                                              Thus saith the LORD, Behold, I will bring evil upon this place, and upon the inhabitants thereof, even all the words of the book which the king of Judah hath read:
10163                                                                                                                                                                                                                                                                                                                Because they have forsaken me, and have burned incense unto other gods, that they might provoke me to anger with all the works of their hands; therefore my wrath shall be kindled against this place, and shall not be quenched.
10164                                                                                                                                                                                                                                                                                                                                                                        But to the king of Judah which sent you to enquire of the LORD, thus shall ye say to him, Thus saith the LORD God of Israel, As touching the words which thou hast heard;
10165                                                                                                                                                                                                                                 Because thine heart was tender, and thou hast humbled thyself before the LORD, when thou heardest what I spake against this place, and against the inhabitants thereof, that they should become a desolation and a curse, and hast rent thy clothes, and wept before me; I also have heard thee, saith the LORD.
10166                                                                                                                                                                                                                                                                                                                   Behold therefore, I will gather thee unto thy fathers, and thou shalt be gathered into thy grave in peace; and thine eyes shall not see all the evil which I will bring upon this place. And they brought the king word again.
10167                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king sent, and they gathered unto him all the elders of Judah and of Jerusalem.
10168                                                                                                                                                                                                                              And the king went up into the house of the LORD, and all the men of Judah and all the inhabitants of Jerusalem with him, and the priests, and the prophets, and all the people, both small and great: and he read in their ears all the words of the book of the covenant which was found in the house of the LORD.
10169                                                                                                                                                                                                                          And the king stood by a pillar, and made a covenant before the LORD, to walk after the LORD, and to keep his commandments and his testimonies and his statutes with all their heart and all their soul, to perform the words of this covenant that were written in this book. And all the people stood to the covenant.
10170                                                                                                                                                                              And the king commanded Hilkiah the high priest, and the priests of the second order, and the keepers of the door, to bring forth out of the temple of the LORD all the vessels that were made for Baal, and for the grove, and for all the host of heaven: and he burned them without Jerusalem in the fields of Kidron, and carried the ashes of them unto Bethel.
10171                                                                                                                                                                                                                                        And he put down the idolatrous priests, whom the kings of Judah had ordained to burn incense in the high places in the cities of Judah, and in the places round about Jerusalem; them also that burned incense unto Baal, to the sun, and to the moon, and to the planets, and to all the host of heaven.
10172                                                                                                                                                                                                                                                                                                 And he brought out the grove from the house of the LORD, without Jerusalem, unto the brook Kidron, and burned it at the brook Kidron, and stamped it small to powder, and cast the powder thereof upon the graves of the children of the people.
10173                                                                                                                                                                                                                                                                                                                                                                                                                  And he brake down the houses of the sodomites, that were by the house of the LORD, where the women wove hangings for the grove.
10174                                                                                                                                                                                                           And he brought all the priests out of the cities of Judah, and defiled the high places where the priests had burned incense, from Geba to Beersheba, and brake down the high places of the gates that were in the entering in of the gate of Joshua the governor of the city, which were on a man's left hand at the gate of the city.
10175                                                                                                                                                                                                                                                                                                                                                                                    Nevertheless the priests of the high places came not up to the altar of the LORD in Jerusalem, but they did eat of the unleavened bread among their brethren.
10176                                                                                                                                                                                                                                                                                                                                                                                     And he defiled Topheth, which is in the valley of the children of Hinnom, that no man might make his son or his daughter to pass through the fire to Molech.
10177                                                                                                                                                                                                                                                                                                   And he took away the horses that the kings of Judah had given to the sun, at the entering in of the house of the LORD, by the chamber of Nathanmelech the chamberlain, which was in the suburbs, and burned the chariots of the sun with fire.
10178                                                                                                                                                                                                                                                And the altars that were on the top of the upper chamber of Ahaz, which the kings of Judah had made, and the altars which Manasseh had made in the two courts of the house of the LORD, did the king beat down, and brake them down from thence, and cast the dust of them into the brook Kidron.
10179                                                                                                                                                                                                             And the high places that were before Jerusalem, which were on the right hand of the mount of corruption, which Solomon the king of Israel had builded for Ashtoreth the abomination of the Zidonians, and for Chemosh the abomination of the Moabites, and for Milcom the abomination of the children of Ammon, did the king defile.
10180                                                                                                                                                                                                                                                                                                                                                                                                                                       And he brake in pieces the images, and cut down the groves, and filled their places with the bones of men.
10181                                                                                                                                                                                                                                                                                  Moreover the altar that was at Bethel, and the high place which Jeroboam the son of Nebat, who made Israel to sin, had made, both that altar and the high place he brake down, and burned the high place, and stamped it small to powder, and burned the grove.
10182                                                                                                                                                                                                                                                          And as Josiah turned himself, he spied the sepulchres that were there in the mount, and sent, and took the bones out of the sepulchres, and burned them upon the altar, and polluted it, according to the word of the LORD which the man of God proclaimed, who proclaimed these words.
10183                                                                                                                                                                                                                                                                                                                        Then he said, What title is that that I see? And the men of the city told him, It is the sepulchre of the man of God, which came from Judah, and proclaimed these things that thou hast done against the altar of Bethel.
10184                                                                                                                                                                                                                                                                                                                                                                                                      And he said, Let him alone; let no man move his bones. So they let his bones alone, with the bones of the prophet that came out of Samaria.
10185                                                                                                                                                                                                                                                                                                          And all the houses also of the high places that were in the cities of Samaria, which the kings of Israel had made to provoke the Lord to anger, Josiah took away, and did to them according to all the acts that he had done in Bethel.
10186                                                                                                                                                                                                                                                                                                                                                                                                     And he slew all the priests of the high places that were there upon the altars, and burned men's bones upon them, and returned to Jerusalem.
10187                                                                                                                                                                                                                                                                                                                                                                                                          And the king commanded all the people, saying, Keep the passover unto the LORD your God, as it is written in the book of this covenant.
10188                                                                                                                                                                                                                                                                                                                                                                               Surely there was not holden such a passover from the days of the judges that judged Israel, nor in all the days of the kings of Israel, nor of the kings of Judah;
10189                                                                                                                                                                                                                                                                                                                                                                                                                                            But in the eighteenth year of king Josiah, wherein this passover was holden to the LORD in Jerusalem.
10190                                                                                                                                                                                                               Moreover the workers with familiar spirits, and the wizards, and the images, and the idols, and all the abominations that were spied in the land of Judah and in Jerusalem, did Josiah put away, that he might perform the words of the law which were written in the book that Hilkiah the priest found in the house of the LORD.
10191                                                                                                                                                                                                                                                                                                                        And like unto him was there no king before him, that turned to the LORD with all his heart, and with all his soul, and with all his might, according to all the law of Moses; neither after him arose there any like him.
10192                                                                                                                                                                                                                                                                                                                                                Notwithstanding the LORD turned not from the fierceness of his great wrath, wherewith his anger was kindled against Judah, because of all the provocations that Manasseh had provoked him withal.
10193                                                                                                                                                                                                                                                                                                                                         And the LORD said, I will remove Judah also out of my sight, as I have removed Israel, and will cast off this city Jerusalem which I have chosen, and the house of which I said, My name shall be there.
10194                                                                                                                                                                                                                                                                                                                                                                                                               Now the rest of the acts of Josiah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
10195                                                                                                                                                                                                                                                                                                                                                          In his days Pharaohnechoh king of Egypt went up against the king of Assyria to the river Euphrates: and king Josiah went against him; and he slew him at Megiddo, when he had seen him.
10196                                                                                                                                                                                                                                                                                           And his servants carried him in a chariot dead from Megiddo, and brought him to Jerusalem, and buried him in his own sepulchre. And the people of the land took Jehoahaz the son of Josiah, and anointed him, and made him king in his father's stead.
10197                                                                                                                                                                                                                                                                                                                                                                 Jehoahaz was twenty and three years old when he began to reign; and he reigned three months in Jerusalem. And his mother's name was Hamutal, the daughter of Jeremiah of Libnah.
10198                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did that which was evil in the sight of the LORD, according to all that his fathers had done.
10199                                                                                                                                                                                                                                                                                                                                                   And Pharaohnechoh put him in bands at Riblah in the land of Hamath, that he might not reign in Jerusalem; and put the land to a tribute of an hundred talents of silver, and a talent of gold.
10200                                                                                                                                                                                                                                                                                                                                                          And Pharaohnechoh made Eliakim the son of Josiah king in the room of Josiah his father, and turned his name to Jehoiakim, and took Jehoahaz away: and he came to Egypt, and died there.
10201                                                                                                                                                                                                                                                                     And Jehoiakim gave the silver and the gold to Pharaoh; but he taxed the land to give the money according to the commandment of Pharaoh: he exacted the silver and the gold of the people of the land, of every one according to his taxation, to give it unto Pharaohnechoh.
10202                                                                                                                                                                                                                                                                                                                                                                   Jehoiakim was twenty and five years old when he began to reign; and he reigned eleven years in Jerusalem. And his mother's name was Zebudah, the daughter of Pedaiah of Rumah.
10203                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did that which was evil in the sight of the LORD, according to all that his fathers had done.
10204                                                                                                                                                                                                                                                                                                                                                                                                       In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim became his servant three years: then he turned and rebelled against him.
10205                                                                                                                                                                                                                                                                         And the LORD sent against him bands of the Chaldees, and bands of the Syrians, and bands of the Moabites, and bands of the children of Ammon, and sent them against Judah to destroy it, according to the word of the LORD, which he spake by his servants the prophets.
10206                                                                                                                                                                                                                                                                                                                                                                                             Surely at the commandment of the LORD came this upon Judah, to remove them out of his sight, for the sins of Manasseh, according to all that he did;
10207                                                                                                                                                                                                                                                                                                                                                                                                                      And also for the innocent blood that he shed: for he filled Jerusalem with innocent blood; which the LORD would not pardon.
10208                                                                                                                                                                                                                                                                                                                                                                                                            Now the rest of the acts of Jehoiakim, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
10209                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Jehoiakim slept with his fathers: and Jehoiachin his son reigned in his stead.
10210                                                                                                                                                                                                                                                                                                                                                       And the king of Egypt came not again any more out of his land: for the king of Babylon had taken from the river of Egypt unto the river Euphrates all that pertained to the king of Egypt.
10211                                                                                                                                                                                                                                                                                                                                                                   Jehoiachin was eighteen years old when he began to reign, and he reigned in Jerusalem three months. And his mother's name was Nehushta, the daughter of Elnathan of Jerusalem.
10212                                                                                                                                                                                                                                                                                                                                                                                                                                              And he did that which was evil in the sight of the LORD, according to all that his father had done.
10213                                                                                                                                                                                                                                                                                                                                                                                                                                At that time the servants of Nebuchadnezzar king of Babylon came up against Jerusalem, and the city was besieged.
10214                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Nebuchadnezzar king of Babylon came against the city, and his servants did besiege it.
10215                                                                                                                                                                                                                                                                                                                                     And Jehoiachin the king of Judah went out to the king of Babylon, he, and his mother, and his servants, and his princes, and his officers: and the king of Babylon took him in the eighth year of his reign.
10216                                                                                                                                                                                                                                                                                                    And he carried out thence all the treasures of the house of the LORD, and the treasures of the king's house, and cut in pieces all the vessels of gold which Solomon king of Israel had made in the temple of the LORD, as the LORD had said.
10217                                                                                                                                                                                                                                                                                                                           And he carried away all Jerusalem, and all the princes, and all the mighty men of valor, even ten thousand captives, and all the craftsmen and smiths: none remained, save the poorest sort of the people of the land.
10218                                                                                                                                                                                                                                                                                                                                                 And he carried away Jehoiachin to Babylon, and the king's mother, and the king's wives, and his officers, and the mighty of the land, those carried he into captivity from Jerusalem to Babylon.
10219                                                                                                                                                                                                                                                                                                                                                              And all the men of might, even seven thousand, and craftsmen and smiths a thousand, all that were strong and apt for war, even them the king of Babylon brought captive to Babylon.
10220                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king of Babylon made Mattaniah his father's brother king in his stead, and changed his name to Zedekiah.
10221                                                                                                                                                                                                                                                                                                                                                                   Zedekiah was twenty and one years old when he began to reign, and he reigned eleven years in Jerusalem. And his mother's name was Hamutal, the daughter of Jeremiah of Libnah.
10222                                                                                                                                                                                                                                                                                                                                                                                                                                               And he did that which was evil in the sight of the LORD, according to all that Jehoiakim had done.
10223                                                                                                                                                                                                                                                                                                                                                                      For through the anger of the LORD it came to pass in Jerusalem and Judah, until he had cast them out from his presence, that Zedekiah rebelled against the king of Babylon.
10224                                                                                                                                                                                                                                                                                   And it came to pass in the ninth year of his reign, in the tenth month, in the tenth day of the month, that Nebuchadnezzar king of Babylon came, he, and all his host, against Jerusalem, and pitched against it; and they built forts against it round about.
10225                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the city was besieged unto the eleventh year of king Zedekiah.
10226                                                                                                                                                                                                                                                                                                                                                                                                                    And on the ninth day of the fourth month the famine prevailed in the city, and there was no bread for the people of the land.
10227                                                                                                                                                                                                                                                                                                      And the city was broken up, and all the men of war fled by night by the way of the gate between two walls, which is by the king's garden: (now the Chaldees were against the city round about:) and the king went the way toward the plain.
10228                                                                                                                                                                                                                                                                                                                                                                                                        And the army of the Chaldees pursued after the king, and overtook him in the plains of Jericho: and all his army were scattered from him.
10229                                                                                                                                                                                                                                                                                                                                                                                                                                     So they took the king, and brought him up to the king of Babylon to Riblah; and they gave judgment upon him.
10230                                                                                                                                                                                                                                                                                                                                                                                           And they slew the sons of Zedekiah before his eyes, and put out the eyes of Zedekiah, and bound him with fetters of brass, and carried him to Babylon.
10231                                                                                                                                                                                                                                                                                                                          And in the fifth month, on the seventh day of the month, which is the nineteenth year of king Nebuchadnezzar king of Babylon, came Nebuzaradan, captain of the guard, a servant of the king of Babylon, unto Jerusalem:
10232                                                                                                                                                                                                                                                                                                                                                                                                       And he burnt the house of the LORD, and the king's house, and all the houses of Jerusalem, and every great man's house burnt he with fire.
10233                                                                                                                                                                                                                                                                                                                                                                                                                        And all the army of the Chaldees, that were with the captain of the guard, brake down the walls of Jerusalem round about.
10234                                                                                                                                                                                                                                                                                                                                          Now the rest of the people that were left in the city, and the fugitives that fell away to the king of Babylon, with the remnant of the multitude, did Nebuzaradan the captain of the guard carry away.
10235                                                                                                                                                                                                                                                                                                                                                                                                                                         But the captain of the guard left of the door of the poor of the land to be vinedressers and husbandmen.
10236                                                                                                                                                                                                                                                                                                                                    And the pillars of brass that were in the house of the LORD, and the bases, and the brazen sea that was in the house of the LORD, did the Chaldees break in pieces, and carried the brass of them to Babylon.
10237                                                                                                                                                                                                                                                                                                                                                                                                         And the pots, and the shovels, and the snuffers, and the spoons, and all the vessels of brass wherewith they ministered, took they away.
10238                                                                                                                                                                                                                                                                                                                                                                                                         And the firepans, and the bowls, and such things as were of gold, in gold, and of silver, in silver, the captain of the guard took away.
10239                                                                                                                                                                                                                                                                                                                                                                                                     The two pillars, one sea, and the bases which Solomon had made for the house of the LORD; the brass of all these vessels was without weight.
10240                                                                                                                                                                                                                                                            The height of the one pillar was eighteen cubits, and the chapiter upon it was brass: and the height of the chapiter three cubits; and the wreathed work, and pomegranates upon the chapiter round about, all of brass: and like unto these had the second pillar with wreathed work.
10241                                                                                                                                                                                                                                                                                                                                                                                                                  And the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the door:
10242                                                                                                                                                                                                                             And out of the city he took an officer that was set over the men of war, and five men of them that were in the king's presence, which were found in the city, and the principal scribe of the host, which mustered the people of the land, and threescore men of the people of the land that were found in the city:
10243                                                                                                                                                                                                                                                                                                                                                                                                                                              And Nebuzaradan captain of the guard took these, and brought them to the king of Babylon to Riblah:
10244                                                                                                                                                                                                                                                                                                                                                                                                                  And the king of Babylon smote them, and slew them at Riblah in the land of Hamath. So Judah was carried away out of their land.
10245                                                                                                                                                                                                                                                                                                                                                            And as for the people that remained in the land of Judah, whom Nebuchadnezzar king of Babylon had left, even over them he made Gedaliah the son of Ahikam, the son of Shaphan, ruler.
10246                                                                                                                                                                                                       And when all the captains of the armies, they and their men, heard that the king of Babylon had made Gedaliah governor, there came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and Johanan the son of Careah, and Seraiah the son of Tanhumeth the Netophathite, and Jaazaniah the son of a Maachathite, they and their men.
10247                                                                                                                                                                                                                                                                                                                                                  And Gedaliah sware to them, and to their men, and said unto them, Fear not to be the servants of the Chaldees: dwell in the land, and serve the king of Babylon; and it shall be well with you.
10248                                                                                                                                                                                                                                                                                                   But it came to pass in the seventh month, that Ishmael the son of Nethaniah, the son of Elishama, of the seed royal, came, and ten men with him, and smote Gedaliah, that he died, and the Jews and the Chaldees that were with him at Mizpah.
10249                                                                                                                                                                                                                                                                                                                                                                                                        And all the people, both small and great, and the captains of the armies, arose, and came to Egypt: for they were afraid of the Chaldees.
10250                                                                                                                                                                                                                                        And it came to pass in the seven and thirtieth year of the captivity of Jehoiachin king of Judah, in the twelfth month, on the seven and twentieth day of the month, that Evilmerodach king of Babylon in the year that he began to reign did lift up the head of Jehoiachin king of Judah out of prison;
10251                                                                                                                                                                                                                                                                                                                                                                                                                                      And he spake kindly to him, and set his throne above the throne of the kings that were with him in Babylon;
10252                                                                                                                                                                                                                                                                                                                                                                                                                                           And changed his prison garments: and he did eat bread continually before him all the days of his life.
10253                                                                                                                                                                                                                                                                                                                                                                                                                         And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life.
10254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adam, Sheth, Enosh,
10255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Kenan, Mahalaleel, Jered,
10256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Henoch, Methuselah, Lamech,
10257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Noah, Shem, Ham, and Japheth.
10258                                                                                                                                                                                                                                                                                                                                                                                                                                                  The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.
10259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Gomer; Ashchenaz, and Riphath, and Togarmah.
10260                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.
10261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Ham; Cush, and Mizraim, Put, and Canaan.
10262                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Cush; Seba, and Havilah, and Sabta, and Raamah, and Sabtecha. And the sons of Raamah; Sheba, and Dedan.
10263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Cush begat Nimrod: he began to be mighty upon the earth.
10264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,
10265                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Pathrusim, and Casluhim, (of whom came the Philistines,) and Caphthorim.
10266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Canaan begat Zidon his firstborn, and Heth,
10267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Jebusite also, and the Amorite, and the Girgashite,
10268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the Hivite, and the Arkite, and the Sinite,
10269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Arvadite, and the Zemarite, and the Hamathite.
10270                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram, and Uz, and Hul, and Gether, and Meshech.
10271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Arphaxad begat Shelah, and Shelah begat Eber.
10272                                                                                                                                                                                                                                                                                                                                                                                                   And unto Eber were born two sons: the name of the one was Peleg; because in his days the earth was divided: and his brother's name was Joktan.
10273                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,
10274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hadoram also, and Uzal, and Diklah,
10275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ebal, and Abimael, and Sheba,
10276                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Ophir, and Havilah, and Jobab. All these were the sons of Joktan.
10277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shem, Arphaxad, Shelah,
10278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Eber, Peleg, Reu,
10279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Serug, Nahor, Terah,
10280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Abram; the same is Abraham.
10281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Abraham; Isaac, and Ishmael.
10282                                                                                                                                                                                                                                                                                                                                                                                                                                             These are their generations: The firstborn of Ishmael, Nebaioth; then Kedar, and Adbeel, and Mibsam,
10283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mishma, and Dumah, Massa, Hadad, and Tema,
10284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jetur, Naphish, and Kedemah. These are the sons of Ishmael.
10285                                                                                                                                                                                                                                                                                                                                                                             Now the sons of Keturah, Abraham's concubine: she bare Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah. And the sons of Jokshan; Sheba, and Dedan.
10286                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Midian; Ephah, and Epher, and Henoch, and Abida, and Eldaah. All these are the sons of Keturah.
10287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Abraham begat Isaac. The sons of Isaac; Esau and Israel.
10288                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The sons of Esau; Eliphaz, Reuel, and Jeush, and Jaalam, and Korah.
10289                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sons of Eliphaz; Teman, and Omar, Zephi, and Gatam, Kenaz, and Timna, and Amalek.
10290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sons of Reuel; Nahath, Zerah, Shammah, and Mizzah.
10291                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Seir; Lotan, and Shobal, and Zibeon, and Anah, and Dishon, and Ezar, and Dishan.
10292                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Lotan; Hori, and Homam: and Timna was Lotan's sister.
10293                                                                                                                                                                                                                                                                                                                                                                                                                                     The sons of Shobal; Alian, and Manahath, and Ebal, Shephi, and Onam. and the sons of Zibeon; Aiah, and Anah.
10294                                                                                                                                                                                                                                                                                                                                                                                                                                                     The sons of Anah; Dishon. And the sons of Dishon; Amram, and Eshban, and Ithran, and Cheran.
10295                                                                                                                                                                                                                                                                                                                                                                                                                                                                The sons of Ezer; Bilhan, and Zavan, and Jakan. The sons of Dishan; Uz, and Aran.
10296                                                                                                                                                                                                                                                                                                                                                                       Now these are the kings that reigned in the land of Edom before any king reigned over the children of Israel; Bela the son of Beor: and the name of his city was Dinhabah.
10297                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when Bela was dead, Jobab the son of Zerah of Bozrah reigned in his stead.
10298                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Jobab was dead, Husham of the land of the Temanites reigned in his stead.
10299                                                                                                                                                                                                                                                                                                                                                                                             And when Husham was dead, Hadad the son of Bedad, which smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith.
10300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Hadad was dead, Samlah of Masrekah reigned in his stead.
10301                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when Samlah was dead, Shaul of Rehoboth by the river reigned in his stead.
10302                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Shaul was dead, Baalhanan the son of Achbor reigned in his stead.
10303                                                                                                                                                                                                                                                                                                                                                                   And when Baalhanan was dead, Hadad reigned in his stead: and the name of his city was Pai; and his wife's name was Mehetabel, the daughter of Matred, the daughter of Mezahab.
10304                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hadad died also. And the dukes of Edom were; duke Timnah, duke Aliah, duke Jetheth,
10305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Duke Aholibamah, duke Elah, duke Pinon,
10306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Duke Kenaz, duke Teman, duke Mibzar,
10307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Duke Magdiel, duke Iram. These are the dukes of Edom.
10308                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the sons of Israel; Reuben, Simeon, Levi, and Judah, Issachar, and Zebulun,
10309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dan, Joseph, and Benjamin, Naphtali, Gad, and Asher.
10310                                                                                                                                                                                                                                                                                                                                         The sons of Judah; Er, and Onan, and Shelah: which three were born unto him of the daughter of Shua the Canaanitess. And Er, the firstborn of Judah, was evil in the sight of the LORD; and he slew him.
10311                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Tamar his daughter in law bore him Pharez and Zerah. All the sons of Judah were five.
10312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sons of Pharez; Hezron, and Hamul.
10313                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Zerah; Zimri, and Ethan, and Heman, and Calcol, and Dara: five of them in all.
10314                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sons of Carmi; Achar, the troubler of Israel, who transgressed in the thing accursed.
10315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Ethan; Azariah.
10316                                                                                                                                                                                                                                                                                                                                                                                                                                                              The sons also of Hezron, that were born unto him; Jerahmeel, and Ram, and Chelubai.
10317                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Ram begat Amminadab; and Amminadab begat Nahshon, prince of the children of Judah;
10318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Nahshon begat Salma, and Salma begat Boaz,
10319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Boaz begat Obed, and Obed begat Jesse,
10320                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jesse begat his firstborn Eliab, and Abinadab the second, and Shimma the third,
10321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nethaneel the fourth, Raddai the fifth,
10322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ozem the sixth, David the seventh:
10323                                                                                                                                                                                                                                                                                                                                                                                                                                          Whose sisters were Zeruiah, and Abigail. And the sons of Zeruiah; Abishai, and Joab, and Asahel, three.
10324                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abigail bare Amasa: and the father of Amasa was Jether the Ishmeelite.
10325                                                                                                                                                                                                                                                                                                                                                                                                                And Caleb the son of Hezron begat children of Azubah his wife, and of Jerioth: her sons are these; Jesher, and Shobab, and Ardon.
10326                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Azubah was dead, Caleb took unto him Ephrath, which bare him Hur.
10327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Hur begat Uri, and Uri begat Bezaleel.
10328                                                                                                                                                                                                                                                                                                                                                                                           And afterward Hezron went in to the daughter of Machir the father of Gilead, whom he married when he was threescore years old; and she bare him Segub.
10329                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Segub begat Jair, who had three and twenty cities in the land of Gilead.
10330                                                                                                                                                                                                                                                                                                                                                      And he took Geshur, and Aram, with the towns of Jair, from them, with Kenath, and the towns thereof, even threescore cities. All these belonged to the sons of Machir the father of Gilead.
10331                                                                                                                                                                                                                                                                                                                                                                                                                                    And after that Hezron was dead in Calebephratah, then Abiah Hezron's wife bare him Ashur the father of Tekoa.
10332                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Jerahmeel the firstborn of Hezron were, Ram the firstborn, and Bunah, and Oren, and Ozem, and Ahijah.
10333                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jerahmeel had also another wife, whose name was Atarah; she was the mother of Onam.
10334                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Ram the firstborn of Jerahmeel were, Maaz, and Jamin, and Eker.
10335                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Onam were, Shammai, and Jada. And the sons of Shammai; Nadab and Abishur.
10336                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the name of the wife of Abishur was Abihail, and she bare him Ahban, and Molid.
10337                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Nadab; Seled, and Appaim: but Seled died without children.
10338                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Appaim; Ishi. And the sons of Ishi; Sheshan. And the children of Sheshan; Ahlai.
10339                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Jada the brother of Shammai; Jether, and Jonathan: and Jether died without children.
10340                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sons of Jonathan; Peleth, and Zaza. These were the sons of Jerahmeel.
10341                                                                                                                                                                                                                                                                                                                                                                                                                                            Now Sheshan had no sons, but daughters. And Sheshan had a servant, an Egyptian, whose name was Jarha.
10342                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Sheshan gave his daughter to Jarha his servant to wife; and she bare him Attai.
10343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Attai begat Nathan, and Nathan begat Zabad,
10344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Zabad begat Ephlal, and Ephlal begat Obed,
10345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Obed begat Jehu, and Jehu begat Azariah,
10346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Azariah begat Helez, and Helez begat Eleasah,
10347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Eleasah begat Sisamai, and Sisamai begat Shallum,
10348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Shallum begat Jekamiah, and Jekamiah begat Elishama.
10349                                                                                                                                                                                                                                                                                                                                                                                           Now the sons of Caleb the brother of Jerahmeel were, Mesha his firstborn, which was the father of Ziph; and the sons of Mareshah the father of Hebron.
10350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Hebron; Korah, and Tappuah, and Rekem, and Shema.
10351                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Shema begat Raham, the father of Jorkoam: and Rekem begat Shammai.
10352                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the son of Shammai was Maon: and Maon was the father of Bethzur.
10353                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Ephah, Caleb's concubine, bare Haran, and Moza, and Gazez: and Haran begat Gazez.
10354                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Jahdai; Regem, and Jotham, and Gesham, and Pelet, and Ephah, and Shaaph.
10355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Maachah, Caleb's concubine, bare Sheber, and Tirhanah.
10356                                                                                                                                                                                                                                                                                                                                                                                                       She bare also Shaaph the father of Madmannah, Sheva the father of Machbenah, and the father of Gibea: and the daughter of Caleb was Achsa.
10357                                                                                                                                                                                                                                                                                                                                                                                                                                      These were the sons of Caleb the son of Hur, the firstborn of Ephratah; Shobal the father of Kirjathjearim.
10358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Salma the father of Bethlehem, Hareph the father of Bethgader.
10359                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Shobal the father of Kirjathjearim had sons; Haroeh, and half of the Manahethites.
10360                                                                                                                                                                                                                                                                                                                                                                                    And the families of Kirjathjearim; the Ithrites, and the Puhites, and the Shumathites, and the Mishraites; of them came the Zareathites, and the Eshtaulites,
10361                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Salma; Bethlehem, and the Netophathites, Ataroth, the house of Joab, and half of the Manahethites, the Zorites.
10362                                                                                                                                                                                                                                                                                                                                                           And the families of the scribes which dwelt at Jabez; the Tirathites, the Shimeathites, and Suchathites. These are the Kenites that came of Hemath, the father of the house of Rechab.
10363                                                                                                                                                                                                                                                                                                                                                                           Now these were the sons of David, which were born unto him in Hebron; the firstborn Amnon, of Ahinoam the Jezreelitess; the second Daniel, of Abigail the Carmelitess:
10364                                                                                                                                                                                                                                                                                                                                                                                                                            The third, Absalom the son of Maachah the daughter of Talmai king of Geshur: the fourth, Adonijah the son of Haggith:
10365                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The fifth, Shephatiah of Abital: the sixth, Ithream by Eglah his wife.
10366                                                                                                                                                                                                                                                                                                                                                                                                     These six were born unto him in Hebron; and there he reigned seven years and six months: and in Jerusalem he reigned thirty and three years.
10367                                                                                                                                                                                                                                                                                                                                                                                                                And these were born unto him in Jerusalem; Shimea, and Shobab, and Nathan, and Solomon, four, of Bathshua the daughter of Ammiel:
10368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ibhar also, and Elishama, and Eliphelet,
10369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Nogah, and Nepheg, and Japhia,
10370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Elishama, and Eliada, and Eliphelet, nine.
10371                                                                                                                                                                                                                                                                                                                                                                                                                                                     These were all the sons of David, beside the sons of the concubines, and Tamar their sister.
10372                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Solomon's son was Rehoboam, Abia his son, Asa his son, Jehoshaphat his son,
10373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Joram his son, Ahaziah his son, Joash his son,
10374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amaziah his son, Azariah his son, Jotham his son,
10375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ahaz his son, Hezekiah his son, Manasseh his son,
10376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Amon his son, Josiah his son.
10377                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Josiah were, the firstborn Johanan, the second Jehoiakim, the third Zedekiah, the fourth Shallum.
10378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Jehoiakim: Jeconiah his son, Zedekiah his son.
10379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Jeconiah; Assir, Salathiel his son,
10380                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Malchiram also, and Pedaiah, and Shenazar, Jecamiah, Hoshama, and Nedabiah.
10381                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Pedaiah were, Zerubbabel, and Shimei: and the sons of Zerubbabel; Meshullam, and Hananiah, and Shelomith their sister:
10382                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hashubah, and Ohel, and Berechiah, and Hasadiah, Jushabhesed, five.
10383                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Hananiah; Pelatiah, and Jesaiah: the sons of Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of Shechaniah.
10384                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Shechaniah; Shemaiah: and the sons of Shemaiah; Hattush, and Igeal, and Bariah, and Neariah, and Shaphat, six.
10385                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Neariah; Elioenai, and Hezekiah, and Azrikam, three.
10386                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Elioenai were, Hodaiah, and Eliashib, and Pelaiah, and Akkub, and Johanan, and Dalaiah, and Anani, seven.
10387                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sons of Judah; Pharez, Hezron, and Carmi, and Hur, and Shobal.
10388                                                                                                                                                                                                                                                                                                                                                                                                                         And Reaiah the son of Shobal begat Jahath; and Jahath begat Ahumai, and Lahad. These are the families of the Zorathites.
10389                                                                                                                                                                                                                                                                                                                                                                                                                              And these were of the father of Etam; Jezreel, and Ishma, and Idbash: and the name of their sister was Hazelelponi:
10390                                                                                                                                                                                                                                                                                                                                                                                                    And Penuel the father of Gedor, and Ezer the father of Hushah. These are the sons of Hur, the firstborn of Ephratah, the father of Bethlehem.
10391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Ashur the father of Tekoa had two wives, Helah and Naarah.
10392                                                                                                                                                                                                                                                                                                                                                                                                                                              And Naarah bare him Ahuzam, and Hepher, and Temeni, and Haahashtari. These were the sons of Naarah.
10393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Helah were, Zereth, and Jezoar, and Ethnan.
10394                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Coz begat Anub, and Zobebah, and the families of Aharhel the son of Harum.
10395                                                                                                                                                                                                                                                                                                                                                                                                                    And Jabez was more honorable than his brethren: and his mother called his name Jabez, saying, Because I bare him with sorrow.
10396                                                                                                                                                                                                                                                                              And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested.
10397                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Chelub the brother of Shuah begat Mehir, which was the father of Eshton.
10398                                                                                                                                                                                                                                                                                                                                                                                                                                        And Eshton begat Bethrapha, and Paseah, and Tehinnah the father of Irnahash. These are the men of Rechah.
10399                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Kenaz; Othniel, and Seraiah: and the sons of Othniel; Hathath.
10400                                                                                                                                                                                                                                                                                                                                                                                                                              And Meonothai begat Ophrah: and Seraiah begat Joab, the father of the valley of Charashim; for they were craftsmen.
10401                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Caleb the son of Jephunneh; Iru, Elah, and Naam: and the sons of Elah, even Kenaz.
10402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Jehaleleel; Ziph, and Ziphah, Tiria, and Asareel.
10403                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Ezra were, Jether, and Mered, and Epher, and Jalon: and she bare Miriam, and Shammai, and Ishbah the father of Eshtemoa.
10404                                                                                                                                                                                                                                                                                                                                           And his wife Jehudijah bare Jered the father of Gedor, and Heber the father of Socho, and Jekuthiel the father of Zanoah. And these are the sons of Bithiah the daughter of Pharaoh, which Mered took.
10405                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of his wife Hodiah the sister of Naham, the father of Keilah the Garmite, and Eshtemoa the Maachathite.
10406                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Shimon were, Amnon, and Rinnah, Benhanan, and Tilon. And the sons of Ishi were, Zoheth, and Benzoheth.
10407                                                                                                                                                                                                                                                                                                                                                      The sons of Shelah the son of Judah were, Er the father of Lecah, and Laadah the father of Mareshah, and the families of the house of them that wrought fine linen, of the house of Ashbea,
10408                                                                                                                                                                                                                                                                                                                                                                                                          And Jokim, and the men of Chozeba, and Joash, and Saraph, who had the dominion in Moab, and Jashubilehem. And these are ancient things.
10409                                                                                                                                                                                                                                                                                                                                                                                                                               These were the potters, and those that dwelt among plants and hedges: there they dwelt with the king for his work.
10410                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Simeon were, Nemuel, and Jamin, Jarib, Zerah, and Shaul:
10411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shallum his son, Mibsam his son, Mishma his son.
10412                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Mishma; Hamuel his son, Zacchur his son, Shimei his son.
10413                                                                                                                                                                                                                                                                                                                                                                                     And Shimei had sixteen sons and six daughters: but his brethren had not many children, neither did all their family multiply, like to the children of Judah.
10414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they dwelt at Beersheba, and Moladah, and Hazarshual,
10415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And at Bilhah, and at Ezem, and at Tolad,
10416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And at Bethuel, and at Hormah, and at Ziklag,
10417                                                                                                                                                                                                                                                                                                                                                                                                                        And at Bethmarcaboth, and Hazarsusim, and at Bethbirei, and at Shaaraim. These were their cities unto the reign of David.
10418                                                                                                                                                                                                                                                                                                                                                                                                                                                              And their villages were, Etam, and Ain, Rimmon, and Tochen, and Ashan, five cities:
10419                                                                                                                                                                                                                                                                                                                                                                                                                      And all their villages that were round about the same cities, unto Baal. These were their habitations, and their genealogy.
10420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Meshobab, and Jamlech, and Joshah, the son of Amaziah,
10421                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joel, and Jehu the son of Josibiah, the son of Seraiah, the son of Asiel,
10422                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Elioenai, and Jaakobah, and Jeshohaiah, and Asaiah, and Adiel, and Jesimiel, and Benaiah,
10423                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ziza the son of Shiphi, the son of Allon, the son of Jedaiah, the son of Shimri, the son of Shemaiah;
10424                                                                                                                                                                                                                                                                                                                                                                                                                                 These mentioned by their names were princes in their families: and the house of their fathers increased greatly.
10425                                                                                                                                                                                                                                                                                                                                                                                                                                 And they went to the entrance of Gedor, even unto the east side of the valley, to seek pasture for their flocks.
10426                                                                                                                                                                                                                                                                                                                                                                                                                    And they found fat pasture and good, and the land was wide, and quiet, and peaceable; for they of Ham had dwelt there of old.
10427                                                                                                                                                                                                                                                                                    And these written by name came in the days of Hezekiah king of Judah, and smote their tents, and the habitations that were found there, and destroyed them utterly unto this day, and dwelt in their rooms: because there was pasture there for their flocks.
10428                                                                                                                                                                                                                                                                                                                                                                 And some of them, even of the sons of Simeon, five hundred men, went to mount Seir, having for their captains Pelatiah, and Neariah, and Rephaiah, and Uzziel, the sons of Ishi.
10429                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they smote the rest of the Amalekites that were escaped, and dwelt there unto this day.
10430                                                                                                                                                                                                                                                                                       Now the sons of Reuben the firstborn of Israel, (for he was the firstborn; but forasmuch as he defiled his father's bed, his birthright was given unto the sons of Joseph the son of Israel: and the genealogy is not to be reckoned after the birthright.
10431                                                                                                                                                                                                                                                                                                                                                                                                                                       For Judah prevailed above his brethren, and of him came the chief ruler; but the birthright was Joseph's:)
10432                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons, I say, of Reuben the firstborn of Israel were, Hanoch, and Pallu, Hezron, and Carmi.
10433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The sons of Joel; Shemaiah his son, Gog his son, Shimei his son,
10434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Micah his son, Reaia his son, Baal his son,
10435                                                                                                                                                                                                                                                                                                                                                                                                                                      Beerah his son, whom Tilgathpilneser king of Assyria carried away captive: he was prince of the Reubenites.
10436                                                                                                                                                                                                                                                                                                                                                                                                                  And his brethren by their families, when the genealogy of their generations was reckoned, were the chief, Jeiel, and Zechariah,
10437                                                                                                                                                                                                                                                                                                                                                                                                                                    And Bela the son of Azaz, the son of Shema, the son of Joel, who dwelt in Aroer, even unto Nebo and Baalmeon:
10438                                                                                                                                                                                                                                                                                                                                                                                           And eastward he inhabited unto the entering in of the wilderness from the river Euphrates: because their cattle were multiplied in the land of Gilead.
10439                                                                                                                                                                                                                                                                                                                                                                                          And in the days of Saul they made war with the Hagarites, who fell by their hand: and they dwelt in their tents throughout all the east land of Gilead.
10440                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the children of Gad dwelt over against them, in the land of Bashan unto Salcah:
10441                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joel the chief, and Shapham the next, and Jaanai, and Shaphat in Bashan.
10442                                                                                                                                                                                                                                                                                                                                                                                                      And their brethren of the house of their fathers were, Michael, and Meshullam, and Sheba, and Jorai, and Jachan, and Zia, and Heber, seven.
10443                                                                                                                                                                                                                                                                                                                                                                             These are the children of Abihail the son of Huri, the son of Jaroah, the son of Gilead, the son of Michael, the son of Jeshishai, the son of Jahdo, the son of Buz;
10444                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ahi the son of Abdiel, the son of Guni, chief of the house of their fathers.
10445                                                                                                                                                                                                                                                                                                                                                                                                                                      And they dwelt in Gilead in Bashan, and in her towns, and in all the suburbs of Sharon, upon their borders.
10446                                                                                                                                                                                                                                                                                                                                                                                                                          All these were reckoned by genealogies in the days of Jotham king of Judah, and in the days of Jeroboam king of Israel.
10447                                                                                                                                                                                                                                                                                        The sons of Reuben, and the Gadites, and half the tribe of Manasseh, of valiant men, men able to bear buckler and sword, and to shoot with bow, and skillful in war, were four and forty thousand seven hundred and threescore, that went out to the war.
10448                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they made war with the Hagarites, with Jetur, and Nephish, and Nodab.
10449                                                                                                                                                                                                                                                                                                                        And they were helped against them, and the Hagarites were delivered into their hand, and all that were with them: for they cried to God in the battle, and he was intreated of them; because they put their trust in him.
10450                                                                                                                                                                                                                                                                                                                                                                         And they took away their cattle; of their camels fifty thousand, and of sheep two hundred and fifty thousand, and of asses two thousand, and of men an hundred thousand.
10451                                                                                                                                                                                                                                                                                                                                                                                                                                  For there fell down many slain, because the war was of God. And they dwelt in their steads until the captivity.
10452                                                                                                                                                                                                                                                                                                                                                                                                   And the children of the half tribe of Manasseh dwelt in the land: they increased from Bashan unto Baalhermon and Senir, and unto mount Hermon.
10453                                                                                                                                                                                                                                                                                                                          And these were the heads of the house of their fathers, even Epher, and Ishi, and Eliel, and Azriel, and Jeremiah, and Hodaviah, and Jahdiel, mighty men of valor, famous men, and heads of the house of their fathers.
10454                                                                                                                                                                                                                                                                                                                                                                                             And they transgressed against the God of their fathers, and went a whoring after the gods of the people of the land, whom God destroyed before them.
10455                                                                                                                                                                                                                                  And the God of Israel stirred up the spirit of Pul king of Assyria, and the spirit of Tilgathpilneser king of Assyria, and he carried them away, even the Reubenites, and the Gadites, and the half tribe of Manasseh, and brought them unto Halah, and Habor, and Hara, and to the river Gozan, unto this day.
10456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons of Levi; Gershon, Kohath, and Merari.
10457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sons of Kohath; Amram, Izhar, and Hebron, and Uzziel.
10458                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Amram; Aaron, and Moses, and Miriam. The sons also of Aaron; Nadab, and Abihu, Eleazar, and Ithamar.
10459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Eleazar begat Phinehas, Phinehas begat Abishua,
10460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abishua begat Bukki, and Bukki begat Uzzi,
10461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Uzzi begat Zerahiah, and Zerahiah begat Meraioth,
10462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Meraioth begat Amariah, and Amariah begat Ahitub,
10463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Ahitub begat Zadok, and Zadok begat Ahimaaz,
10464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Ahimaaz begat Azariah, and Azariah begat Johanan,
10465                                                                                                                                                                                                                                                                                                                                                                                                                           And Johanan begat Azariah, (he it is that executed the priest's office in the temple that Solomon built in Jerusalem:)
10466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Azariah begat Amariah, and Amariah begat Ahitub,
10467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Ahitub begat Zadok, and Zadok begat Shallum,
10468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Shallum begat Hilkiah, and Hilkiah begat Azariah,
10469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Azariah begat Seraiah, and Seraiah begat Jehozadak,
10470                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jehozadak went into captivity, when the LORD carried away Judah and Jerusalem by the hand of Nebuchadnezzar.
10471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons of Levi; Gershom, Kohath, and Merari.
10472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And these be the names of the sons of Gershom; Libni, and Shimei.
10473                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Kohath were, Amram, and Izhar, and Hebron, and Uzziel.
10474                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Merari; Mahli, and Mushi. And these are the families of the Levites according to their fathers.
10475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of Gershom; Libni his son, Jahath his son, Zimmah his son,
10476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joah his son, Iddo his son, Zerah his son, Jeaterai his son.
10477                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Kohath; Amminadab his son, Korah his son, Assir his son,
10478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Elkanah his son, and Ebiasaph his son, and Assir his son,
10479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tahath his son, Uriel his son, Uzziah his son, and Shaul his son.
10480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sons of Elkanah; Amasai, and Ahimoth.
10481                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for Elkanah: the sons of Elkanah; Zophai his son, and Nahath his son,
10482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Eliab his son, Jeroham his son, Elkanah his son.
10483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Samuel; the firstborn Vashni, and Abiah.
10484                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sons of Merari; Mahli, Libni his son, Shimei his son, Uzza his son,
10485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shimea his son, Haggiah his son, Asaiah his son.
10486                                                                                                                                                                                                                                                                                                                                                                                                                                And these are they whom David set over the service of song in the house of the LORD, after that the ark had rest.
10487                                                                                                                                                                                                                                                                                                                     And they ministered before the dwelling place of the tabernacle of the congregation with singing, until Solomon had built the house of the LORD in Jerusalem: and then they waited on their office according to their order.
10488                                                                                                                                                                                                                                                                                                                                                                                                          And these are they that waited with their children. Of the sons of the Kohathites: Heman a singer, the son of Joel, the son of Shemuel,
10489                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The son of Elkanah, the son of Jeroham, the son of Eliel, the son of Toah,
10490                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The son of Zuph, the son of Elkanah, the son of Mahath, the son of Amasai,
10491                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The son of Elkanah, the son of Joel, the son of Azariah, the son of Zephaniah,
10492                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah,
10493                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The son of Izhar, the son of Kohath, the son of Levi, the son of Israel.
10494                                                                                                                                                                                                                                                                                                                                                                                                                                          And his brother Asaph, who stood on his right hand, even Asaph the son of Berachiah, the son of Shimea,
10495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The son of Michael, the son of Baaseiah, the son of Malchiah,
10496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The son of Ethni, the son of Zerah, the son of Adaiah,
10497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The son of Ethan, the son of Zimmah, the son of Shimei,
10498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The son of Jahath, the son of Gershom, the son of Levi.
10499                                                                                                                                                                                                                                                                                                                                                                                                                       And their brethren the sons of Merari stood on the left hand: Ethan the son of Kishi, the son of Abdi, the son of Malluch,
10500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The son of Hashabiah, the son of Amaziah, the son of Hilkiah,
10501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The son of Amzi, the son of Bani, the son of Shamer,
10502                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The son of Mahli, the son of Mushi, the son of Merari, the son of Levi.
10503                                                                                                                                                                                                                                                                                                                                                                                                                                 Their brethren also the Levites were appointed unto all manner of service of the tabernacle of the house of God.
10504                                                                                                                                                                                                                                                                                 But Aaron and his sons offered upon the altar of the burnt offering, and on the altar of incense, and were appointed for all the work of the place most holy, and to make an atonement for Israel, according to all that Moses the servant of God had commanded.
10505                                                                                                                                                                                                                                                                                                                                                                                                                                                             And these are the sons of Aaron; Eleazar his son, Phinehas his son, Abishua his son,
10506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bukki his son, Uzzi his son, Zerahiah his son,
10507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Meraioth his son, Amariah his son, Ahitub his son,
10508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Zadok his son, Ahimaaz his son.
10509                                                                                                                                                                                                                                                                                                                                                                                   Now these are their dwelling places throughout their castles in their coasts, of the sons of Aaron, of the families of the Kohathites: for theirs was the lot.
10510                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they gave them Hebron in the land of Judah, and the suburbs thereof round about it.
10511                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the fields of the city, and the villages thereof, they gave to Caleb the son of Jephunneh.
10512                                                                                                                                                                                                                                                                                                                                                                           And to the sons of Aaron they gave the cities of Judah, namely, Hebron, the city of refuge, and Libnah with her suburbs, and Jattir, and Eshtemoa, with their suburbs,
10513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Hilen with her suburbs, Debir with her suburbs,
10514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Ashan with her suburbs, and Bethshemesh with her suburbs:
10515                                                                                                                                                                                                                                                                                                                                                           And out of the tribe of Benjamin; Geba with her suburbs, and Alemeth with her suburbs, and Anathoth with her suburbs. All their cities throughout their families were thirteen cities.
10516                                                                                                                                                                                                                                                                                                                                                                And unto the sons of Kohath, which were left of the family of that tribe, were cities given out of the half tribe, namely, out of the half tribe of Manasseh, by lot, ten cities.
10517                                                                                                                                                                                                                                                                                                                                 And to the sons of Gershom throughout their families out of the tribe of Issachar, and out of the tribe of Asher, and out of the tribe of Naphtali, and out of the tribe of Manasseh in Bashan, thirteen cities.
10518                                                                                                                                                                                                                                                                                                                                                                   Unto the sons of Merari were given by lot, throughout their families, out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities.
10519                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Israel gave to the Levites these cities with their suburbs.
10520                                                                                                                                                                                                                                                                                                                                 And they gave by lot out of the tribe of the children of Judah, and out of the tribe of the children of Simeon, and out of the tribe of the children of Benjamin, these cities, which are called by their names.
10521                                                                                                                                                                                                                                                                                                                                                                                                                                    And the residue of the families of the sons of Kohath had cities of their coasts out of the tribe of Ephraim.
10522                                                                                                                                                                                                                                                                                                                                                                                                              And they gave unto them, of the cities of refuge, Shechem in mount Ephraim with her suburbs; they gave also Gezer with her suburbs,
10523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jokmeam with her suburbs, and Bethhoron with her suburbs,
10524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Aijalon with her suburbs, and Gathrimmon with her suburbs:
10525                                                                                                                                                                                                                                                                                                                                                                                                  And out of the half tribe of Manasseh; Aner with her suburbs, and Bileam with her suburbs, for the family of the remnant of the sons of Kohath.
10526                                                                                                                                                                                                                                                                                                                                                                                           Unto the sons of Gershom were given out of the family of the half tribe of Manasseh, Golan in Bashan with her suburbs, and Ashtaroth with her suburbs:
10527                                                                                                                                                                                                                                                                                                                                                                                                                                                            And out of the tribe of Issachar; Kedesh with her suburbs, Daberath with her suburbs,
10528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Ramoth with her suburbs, and Anem with her suburbs:
10529                                                                                                                                                                                                                                                                                                                                                                                                                                                              And out of the tribe of Asher; Mashal with her suburbs, and Abdon with her suburbs,
10530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hukok with her suburbs, and Rehob with her suburbs:
10531                                                                                                                                                                                                                                                                                                                                                                                                              And out of the tribe of Naphtali; Kedesh in Galilee with her suburbs, and Hammon with her suburbs, and Kirjathaim with her suburbs.
10532                                                                                                                                                                                                                                                                                                                                                                                                                 Unto the rest of the children of Merari were given out of the tribe of Zebulun, Rimmon with her suburbs, Tabor with her suburbs:
10533                                                                                                                                                                                                                                                                                                                                                          And on the other side Jordan by Jericho, on the east side of Jordan, were given them out of the tribe of Reuben, Bezer in the wilderness with her suburbs, and Jahzah with her suburbs,
10534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Kedemoth also with her suburbs, and Mephaath with her suburbs:
10535                                                                                                                                                                                                                                                                                                                                                                                                                                                   And out of the tribe of Gad; Ramoth in Gilead with her suburbs, and Mahanaim with her suburbs,
10536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Heshbon with her suburbs, and Jazer with her suburbs.
10537                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now the sons of Issachar were, Tola, and Puah, Jashub, and Shimrom, four.
10538                                                                                                                                                                                                                                                                   And the sons of Tola; Uzzi, and Rephaiah, and Jeriel, and Jahmai, and Jibsam, and Shemuel, heads of their father's house, to wit, of Tola: they were valiant men of might in their generations; whose number was in the days of David two and twenty thousand and six hundred.
10539                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Uzzi; Izrahiah: and the sons of Izrahiah; Michael, and Obadiah, and Joel, Ishiah, five: all of them chief men.
10540                                                                                                                                                                                                                                                                                                                                                                            And with them, by their generations, after the house of their fathers, were bands of soldiers for war, six and thirty thousand men: for they had many wives and sons.
10541                                                                                                                                                                                                                                                                                                                                                                                              And their brethren among all the families of Issachar were valiant men of might, reckoned in all by their genealogies fourscore and seven thousand.
10542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Benjamin; Bela, and Becher, and Jediael, three.
10543                                                                                                                                                                                                                                                                                                                    And the sons of Bela; Ezbon, and Uzzi, and Uzziel, and Jerimoth, and Iri, five; heads of the house of their fathers, mighty men of valor; and were reckoned by their genealogies twenty and two thousand and thirty and four.
10544                                                                                                                                                                                                                                                                                                                                                                            And the sons of Becher; Zemira, and Joash, and Eliezer, and Elioenai, and Omri, and Jerimoth, and Abiah, and Anathoth, and Alameth. All these are the sons of Becher.
10545                                                                                                                                                                                                                                                                                                                                                                               And the number of them, after their genealogy by their generations, heads of the house of their fathers, mighty men of valor, was twenty thousand and two hundred.
10546                                                                                                                                                                                                                                                                                                                                                                                                The sons also of Jediael; Bilhan: and the sons of Bilhan; Jeush, and Benjamin, and Ehud, and Chenaanah, and Zethan, and Tharshish, and Ahishahar.
10547                                                                                                                                                                                                                                                                                                                                                                           All these the sons of Jediael, by the heads of their fathers, mighty men of valor, were seventeen thousand and two hundred soldiers, fit to go out for war and battle.
10548                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shuppim also, and Huppim, the children of Ir, and Hushim, the sons of Aher.
10549                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Naphtali; Jahziel, and Guni, and Jezer, and Shallum, the sons of Bilhah.
10550                                                                                                                                                                                                                                                                                                                                                                                                                                 The sons of Manasseh; Ashriel, whom she bare: (but his concubine the Aramitess bare Machir the father of Gilead:
10551                                                                                                                                                                                                                                                                                                                                                                             And Machir took to wife the sister of Huppim and Shuppim, whose sister's name was Maachah;) and the name of the second was Zelophehad: and Zelophehad had daughters.
10552                                                                                                                                                                                                                                                                                                                                                                                            And Maachah the wife of Machir bare a son, and she called his name Peresh; and the name of his brother was Sheresh; and his sons were Ulam and Rakem.
10553                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Ulam; Bedan. These were the sons of Gilead, the son of Machir, the son of Manasseh.
10554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his sister Hammoleketh bare Ishod, and Abiezer, and Mahalah.
10555                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Shemidah were, Ahian, and Shechem, and Likhi, and Aniam.
10556                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Ephraim; Shuthelah, and Bered his son, and Tahath his son, and Eladah his son, and Tahath his son,
10557                                                                                                                                                                                                                                                                                                                                                                          And Zabad his son, and Shuthelah his son, and Ezer, and Elead, whom the men of Gath that were born in that land slew, because they came down to take away their cattle.
10558                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ephraim their father mourned many days, and his brethren came to comfort him.
10559                                                                                                                                                                                                                                                                                                                                                                                                              And when he went in to his wife, she conceived, and bare a son, and he called his name Beriah, because it went evil with his house.
10560                                                                                                                                                                                                                                                                                                                                                                                                                                                   (And his daughter was Sherah, who built Bethhoron the nether, and the upper, and Uzzensherah.)
10561                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Rephah was his son, also Resheph, and Telah his son, and Tahan his son.
10562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Laadan his son, Ammihud his son, Elishama his son.
10563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Non his son, Jehoshuah his son.
10564                                                                                                                                                                                                                                                                                                                                  And their possessions and habitations were, Bethel and the towns thereof, and eastward Naaran, and westward Gezer, with the towns thereof; Shechem also and the towns thereof, unto Gaza and the towns thereof:
10565                                                                                                                                                                                                                                                                                                                                               And by the borders of the children of Manasseh, Bethshean and her towns, Taanach and her towns, Megiddo and her towns, Dor and her towns. In these dwelt the children of Joseph the son of Israel.
10566                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Asher; Imnah, and Isuah, and Ishuai, and Beriah, and Serah their sister.
10567                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Beriah; Heber, and Malchiel, who is the father of Birzavith.
10568                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Heber begat Japhlet, and Shomer, and Hotham, and Shua their sister.
10569                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Japhlet; Pasach, and Bimhal, and Ashvath. These are the children of Japhlet.
10570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Shamer; Ahi, and Rohgah, Jehubbah, and Aram.
10571                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of his brother Helem; Zophah, and Imna, and Shelesh, and Amal.
10572                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Zophah; Suah, and Harnepher, and Shual, and Beri, and Imrah,
10573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Bezer, and Hod, and Shamma, and Shilshah, and Ithran, and Beera.
10574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Jether; Jephunneh, and Pispah, and Ara.
10575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Ulla; Arah, and Haniel, and Rezia.
10576                                                                                                                                                                                                                                                                                               All these were the children of Asher, heads of their father's house, choice and mighty men of valor, chief of the princes. And the number throughout the genealogy of them that were apt to the war and to battle was twenty and six thousand men.
10577                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now Benjamin begat Bela his firstborn, Ashbel the second, and Aharah the third,
10578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Nohah the fourth, and Rapha the fifth.
10579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Bela were, Addar, and Gera, and Abihud,
10580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abishua, and Naaman, and Ahoah,
10581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Gera, and Shephuphan, and Huram.
10582                                                                                                                                                                                                                                                                                                                                                                                                                And these are the sons of Ehud: these are the heads of the fathers of the inhabitants of Geba, and they removed them to Manahath:
10583                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Naaman, and Ahiah, and Gera, he removed them, and begat Uzza, and Ahihud.
10584                                                                                                                                                                                                                                                                                                                                                                                                                               And Shaharaim begat children in the country of Moab, after he had sent them away; Hushim and Baara were his wives.
10585                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he begat of Hodesh his wife, Jobab, and Zibia, and Mesha, and Malcham,
10586                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jeuz, and Shachia, and Mirma. These were his sons, heads of the fathers.
10587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of Hushim he begat Abitub, and Elpaal.
10588                                                                                                                                                                                                                                                                                                                                                                                                                                                The sons of Elpaal; Eber, and Misham, and Shamed, who built Ono, and Lod, with the towns thereof:
10589                                                                                                                                                                                                                                                                                                                                                                                                                     Beriah also, and Shema, who were heads of the fathers of the inhabitants of Aijalon, who drove away the inhabitants of Gath:
10590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Ahio, Shashak, and Jeremoth,
10591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Zebadiah, and Arad, and Ader,
10592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Michael, and Ispah, and Joha, the sons of Beriah;
10593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Zebadiah, and Meshullam, and Hezeki, and Heber,
10594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ishmerai also, and Jezliah, and Jobab, the sons of Elpaal;
10595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jakim, and Zichri, and Zabdi,
10596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Elienai, and Zilthai, and Eliel,
10597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Adaiah, and Beraiah, and Shimrath, the sons of Shimhi;
10598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ishpan, and Heber, and Eliel,
10599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Abdon, and Zichri, and Hanan,
10600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hananiah, and Elam, and Antothijah,
10601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Iphedeiah, and Penuel, the sons of Shashak;
10602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Shamsherai, and Shehariah, and Athaliah,
10603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jaresiah, and Eliah, and Zichri, the sons of Jeroham.
10604                                                                                                                                                                                                                                                                                                                                                                                                                                                      These were heads of the fathers, by their generations, chief men. These dwelt in Jerusalem.
10605                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And at Gibeon dwelt the father of Gibeon; whose wife's name was Maachah:
10606                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And his firstborn son Abdon, and Zur, and Kish, and Baal, and Nadab,
10607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Gedor, and Ahio, and Zacher.
10608                                                                                                                                                                                                                                                                                                                                                                                                                                             And Mikloth begat Shimeah. And these also dwelt with their brethren in Jerusalem, over against them.
10609                                                                                                                                                                                                                                                                                                                                                                                                                                     And Ner begat Kish, and Kish begat Saul, and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal.
10610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the son of Jonathan was Meribbaal; and Meribbaal begat Micah.
10611                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Micah were, Pithon, and Melech, and Tarea, and Ahaz.
10612                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ahaz begat Jehoadah; and Jehoadah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza,
10613                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moza begat Binea: Rapha was his son, Eleasah his son, Azel his son:
10614                                                                                                                                                                                                                                                                                                                                                                                              And Azel had six sons, whose names are these, Azrikam, Bocheru, and Ishmael, and Sheariah, and Obadiah, and Hanan. All these were the sons of Azel.
10615                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Eshek his brother were, Ulam his firstborn, Jehush the second, and Eliphelet the third.
10616                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Ulam were mighty men of valor, archers, and had many sons, and sons' sons, an hundred and fifty. All these are of the sons of Benjamin.
10617                                                                                                                                                                                                                                                                                                                                                               So all Israel were reckoned by genealogies; and, behold, they were written in the book of the kings of Israel and Judah, who were carried away to Babylon for their transgression.
10618                                                                                                                                                                                                                                                                                                                                                                                                         Now the first inhabitants that dwelt in their possessions in their cities were, the Israelites, the priests, Levites, and the Nethinims.
10619                                                                                                                                                                                                                                                                                                                                                                                                                  And in Jerusalem dwelt of the children of Judah, and of the children of Benjamin, and of the children of Ephraim, and Manasseh;
10620                                                                                                                                                                                                                                                                                                                                                                                                                         Uthai the son of Ammihud, the son of Omri, the son of Imri, the son of Bani, of the children of Pharez the son of Judah.
10621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of the Shilonites; Asaiah the firstborn, and his sons.
10622                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of the sons of Zerah; Jeuel, and their brethren, six hundred and ninety.
10623                                                                                                                                                                                                                                                                                                                                                                                                                                               And of the sons of Benjamin; Sallu the son of Meshullam, the son of Hodaviah, the son of Hasenuah,
10624                                                                                                                                                                                                                                                                                                                                                                                         And Ibneiah the son of Jeroham, and Elah the son of Uzzi, the son of Michri, and Meshullam the son of Shephathiah, the son of Reuel, the son of Ibnijah;
10625                                                                                                                                                                                                                                                                                                                                                                                       And their brethren, according to their generations, nine hundred and fifty and six. All these men were chief of the fathers in the house of their fathers.
10626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And of the priests; Jedaiah, and Jehoiarib, and Jachin,
10627                                                                                                                                                                                                                                                                                                                                                                                                   And Azariah the son of Hilkiah, the son of Meshullam, the son of Zadok, the son of Meraioth, the son of Ahitub, the ruler of the house of God;
10628                                                                                                                                                                                                                                                                                                                                                      And Adaiah the son of Jeroham, the son of Pashur, the son of Malchijah, and Maasiai the son of Adiel, the son of Jahzerah, the son of Meshullam, the son of Meshillemith, the son of Immer;
10629                                                                                                                                                                                                                                                                                                                                                                             And their brethren, heads of the house of their fathers, a thousand and seven hundred and threescore; very able men for the work of the service of the house of God.
10630                                                                                                                                                                                                                                                                                                                                                                                                                                And of the Levites; Shemaiah the son of Hasshub, the son of Azrikam, the son of Hashabiah, of the sons of Merari;
10631                                                                                                                                                                                                                                                                                                                                                                                                                                           And Bakbakkar, Heresh, and Galal, and Mattaniah the son of Micah, the son of Zichri, the son of Asaph;
10632                                                                                                                                                                                                                                                                                                                                                                       And Obadiah the son of Shemaiah, the son of Galal, the son of Jeduthun, and Berechiah the son of Asa, the son of Elkanah, that dwelt in the villages of the Netophathites.
10633                                                                                                                                                                                                                                                                                                                                                                                                                                     And the porters were, Shallum, and Akkub, and Talmon, and Ahiman, and their brethren: Shallum was the chief;
10634                                                                                                                                                                                                                                                                                                                                                                                                                                     Who hitherto waited in the king's gate eastward: they were porters in the companies of the children of Levi.
10635                                                                                                                                                                                                                                                       And Shallum the son of Kore, the son of Ebiasaph, the son of Korah, and his brethren, of the house of his father, the Korahites, were over the work of the service, keepers of the gates of the tabernacle: and their fathers, being over the host of the LORD, were keepers of the entry.
10636                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Phinehas the son of Eleazar was the ruler over them in time past, and the LORD was with him.
10637                                                                                                                                                                                                                                                                                                                                                                                                                                               And Zechariah the son of Meshelemiah was porter of the door of the tabernacle of the congregation.
10638                                                                                                                                                                                                                                                                                                                                     All these which were chosen to be porters in the gates were two hundred and twelve. These were reckoned by their genealogy in their villages, whom David and Samuel the seer did ordain in their set office.
10639                                                                                                                                                                                                                                                                                                                                                                                                               So they and their children had the oversight of the gates of the house of the LORD, namely, the house of the tabernacle, by wards.
10640                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In four quarters were the porters, toward the east, west, north, and south.
10641                                                                                                                                                                                                                                                                                                                                                                                                                                     And their brethren, which were in their villages, were to come after seven days from time to time with them.
10642                                                                                                                                                                                                                                                                                                                                                                                                              For these Levites, the four chief porters, were in their set office, and were over the chambers and treasuries of the house of God.
10643                                                                                                                                                                                                                                                                                                                                                                                                         And they lodged round about the house of God, because the charge was upon them, and the opening thereof every morning pertained to them.
10644                                                                                                                                                                                                                                                                                                                                                                                                                                   And certain of them had the charge of the ministering vessels, that they should bring them in and out by tale.
10645                                                                                                                                                                                                                                                                                                                                                          Some of them also were appointed to oversee the vessels, and all the instruments of the sanctuary, and the fine flour, and the wine, and the oil, and the frankincense, and the spices.
10646                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And some of the sons of the priests made the ointment of the spices.
10647                                                                                                                                                                                                                                                                                                                                                                                                And Mattithiah, one of the Levites, who was the firstborn of Shallum the Korahite, had the set office over the things that were made in the pans.
10648                                                                                                                                                                                                                                                                                                                                                                                                                                And other of their brethren, of the sons of the Kohathites, were over the shewbread, to prepare it every sabbath.
10649                                                                                                                                                                                                                                                                                                                                                                                      And these are the singers, chief of the fathers of the Levites, who remaining in the chambers were free: for they were employed in that work day and night.
10650                                                                                                                                                                                                                                                                                                                                                                                                                                            These chief fathers of the Levites were chief throughout their generations; these dwelt at Jerusalem.
10651                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And in Gibeon dwelt the father of Gibeon, Jehiel, whose wife's name was Maachah:
10652                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And his firstborn son Abdon, then Zur, and Kish, and Baal, and Ner, and Nadab.
10653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Gedor, and Ahio, and Zechariah, and Mikloth.
10654                                                                                                                                                                                                                                                                                                                                                                                                                                    And Mikloth begat Shimeam. And they also dwelt with their brethren at Jerusalem, over against their brethren.
10655                                                                                                                                                                                                                                                                                                                                                                                                                                     And Ner begat Kish; and Kish begat Saul; and Saul begat Jonathan, and Malchishua, and Abinadab, and Eshbaal.
10656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the son of Jonathan was Meribbaal: and Meribbaal begat Micah.
10657                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Micah were, Pithon, and Melech, and Tahrea, and Ahaz.
10658                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Ahaz begat Jarah; and Jarah begat Alemeth, and Azmaveth, and Zimri; and Zimri begat Moza;
10659                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moza begat Binea; and Rephaiah his son, Eleasah his son, Azel his son.
10660                                                                                                                                                                                                                                                                                                                                                                                                  And Azel had six sons, whose names are these, Azrikam, Bocheru, and Ishmael, and Sheariah, and Obadiah, and Hanan: these were the sons of Azel.
10661                                                                                                                                                                                                                                                                                                                                                                                                          Now the Philistines fought against Israel; and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.
10662                                                                                                                                                                                                                                                                                                                                                                                             And the Philistines followed hard after Saul, and after his sons; and the Philistines slew Jonathan, and Abinadab, and Malchishua, the sons of Saul.
10663                                                                                                                                                                                                                                                                                                                                                                                                                                               And the battle went sore against Saul, and the archers hit him, and he was wounded of the archers.
10664                                                                                                                                                                                                                                                                                                                 Then said Saul to his armourbearer, Draw thy sword, and thrust me through therewith; lest these uncircumcised come and abuse me. But his armourbearer would not; for he was sore afraid. So Saul took a sword, and fell upon it.
10665                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when his armourbearer saw that Saul was dead, he fell likewise on the sword, and died.
10666                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Saul died, and his three sons, and all his house died together.
10667                                                                                                                                                                                                                                                                                                                                           And when all the men of Israel that were in the valley saw that they fled, and that Saul and his sons were dead, then they forsook their cities, and fled: and the Philistines came and dwelt in them.
10668                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass on the morrow, when the Philistines came to strip the slain, that they found Saul and his sons fallen in mount Gilboa.
10669                                                                                                                                                                                                                                                                                                                                                                  And when they had stripped him, they took his head, and his armor, and sent into the land of the Philistines round about, to carry tidings unto their idols, and to the people.
10670                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they put his armor in the house of their gods, and fastened his head in the temple of Dagon.
10671                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when all Jabeshgilead heard all that the Philistines had done to Saul,
10672                                                                                                                                                                                                                                                                                                                                                  They arose, all the valiant men, and took away the body of Saul, and the bodies of his sons, and brought them to Jabesh, and buried their bones under the oak in Jabesh, and fasted seven days.
10673                                                                                                                                                                                                                                                                                                                                   So Saul died for his transgression which he committed against the LORD, even against the word of the LORD, which he kept not, and also for asking counsel of one that had a familiar spirit, to enquire of it;
10674                                                                                                                                                                                                                                                                                                                                                                                                                                         And inquired not of the LORD: therefore he slew him, and turned the kingdom unto David the son of Jesse.
10675                                                                                                                                                                                                                                                                                                                                                                                                                                         Then all Israel gathered themselves to David unto Hebron, saying, Behold, we are thy bone and thy flesh.
10676                                                                                                                                                                                                                                                                                                                And moreover in time past, even when Saul was king, thou wast he that leddest out and broughtest in Israel: and the LORD thy God said unto thee, Thou shalt feed my people Israel, and thou shalt be ruler over my people Israel.
10677                                                                                                                                                                                                                                                                                                                             Therefore came all the elders of Israel to the king to Hebron; and David made a covenant with them in Hebron before the LORD; and they anointed David king over Israel, according to the word of the LORD by Samuel.
10678                                                                                                                                                                                                                                                                                                                                                                                                                               And David and all Israel went to Jerusalem, which is Jebus; where the Jebusites were, the inhabitants of the land.
10679                                                                                                                                                                                                                                                                                                                                                                                                  And the inhabitants of Jebus said to David, Thou shalt not come hither. Nevertheless David took the castle of Zion, which is the city of David.
10680                                                                                                                                                                                                                                                                                                                                                                                                       And David said, Whosoever smiteth the Jebusites first shall be chief and captain. So Joab the son of Zeruiah went first up, and was chief.
10681                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David dwelt in the castle; therefore they called it the city of David.
10682                                                                                                                                                                                                                                                                                                                                                                                                                                          And he built the city round about, even from Millo round about: and Joab repaired the rest of the city.
10683                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So David waxed greater and greater: for the LORD of hosts was with him.
10684                                                                                                                                                                                                                                                                                                                                      These also are the chief of the mighty men whom David had, who strengthened themselves with him in his kingdom, and with all Israel, to make him king, according to the word of the LORD concerning Israel.
10685                                                                                                                                                                                                                                                                                                                                                             And this is the number of the mighty men whom David had; Jashobeam, an Hachmonite, the chief of the captains: he lifted up his spear against three hundred slain by him at one time.
10686                                                                                                                                                                                                                                                                                                                                                                                                                                                       And after him was Eleazar the son of Dodo, the Ahohite, who was one of the three mighties.
10687                                                                                                                                                                                                                                                                                                                                                        He was with David at Pasdammim, and there the Philistines were gathered together to battle, where was a parcel of ground full of barley; and the people fled from before the Philistines.
10688                                                                                                                                                                                                                                                                                                                                                                                                 And they set themselves in the midst of that parcel, and delivered it, and slew the Philistines; and the LORD saved them by a great deliverance.
10689                                                                                                                                                                                                                                                                                                                                                                                    Now three of the thirty captains went down to the rock to David, into the cave of Adullam; and the host of the Philistines encamped in the valley of Rephaim.
10690                                                                                                                                                                                                                                                                                                                                                                                                                                                             And David was then in the hold, and the Philistines' garrison was then at Bethlehem.
10691                                                                                                                                                                                                                                                                                                                                                                                                                          And David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, that is at the gate!
10692                                                                                                                                                                                                                                                                                                                And the three brake through the host of the Philistines, and drew water out of the well of Bethlehem, that was by the gate, and took it, and brought it to David: but David would not drink of it, but poured it out to the LORD.
10693                                                                                                                                                                                                                                                                           And said, My God forbid it me, that I should do this thing: shall I drink the blood of these men that have put their lives in jeopardy? for with the jeopardy of their lives they brought it. Therefore he would not drink it. These things did these three mightiest.
10694                                                                                                                                                                                                                                                                                                                                                                                        And Abishai the brother of Joab, he was chief of the three: for lifting up his spear against three hundred, he slew them, and had a name among the three.
10695                                                                                                                                                                                                                                                                                                                                                                                                                          Of the three, he was more honorable than the two; for he was their captain: howbeit he attained not to the first three.
10696                                                                                                                                                                                                                                                                                                                                                           Benaiah the son of Jehoiada, the son of a valiant man of Kabzeel, who had done many acts; he slew two lionlike men of Moab: also he went down and slew a lion in a pit in a snowy day.
10697                                                                                                                                                                                                                                                                                         And he slew an Egyptian, a man of great stature, five cubits high; and in the Egyptian's hand was a spear like a weaver's beam; and he went down to him with a staff, and plucked the spear out of the Egyptian's hand, and slew him with his own spear.
10698                                                                                                                                                                                                                                                                                                                                                                                                                                                         These things did Benaiah the son of Jehoiada, and had the name among the three mighties.
10699                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, he was honorable among the thirty, but attained not to the first three: and David set him over his guard.
10700                                                                                                                                                                                                                                                                                                                                                                                                                                       Also the valiant men of the armies were, Asahel the brother of Joab, Elhanan the son of Dodo of Bethlehem,
10701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shammoth the Harorite, Helez the Pelonite,
10702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ira the son of Ikkesh the Tekoite, Abiezer the Antothite,
10703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sibbecai the Hushathite, Ilai the Ahohite,
10704                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Maharai the Netophathite, Heled the son of Baanah the Netophathite,
10705                                                                                                                                                                                                                                                                                                                                                                                                                                           Ithai the son of Ribai of Gibeah, that pertained to the children of Benjamin, Benaiah the Pirathonite,
10706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hurai of the brooks of Gaash, Abiel the Arbathite,
10707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Azmaveth the Baharumite, Eliahba the Shaalbonite,
10708                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Hashem the Gizonite, Jonathan the son of Shage the Hararite,
10709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ahiam the son of Sacar the Hararite, Eliphal the son of Ur,
10710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hepher the Mecherathite, Ahijah the Pelonite,
10711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hezro the Carmelite, Naarai the son of Ezbai,
10712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Joel the brother of Nathan, Mibhar the son of Haggeri,
10713                                                                                                                                                                                                                                                                                                                                                                                                                                                          Zelek the Ammonite, Naharai the Berothite, the armourbearer of Joab the son of Zeruiah,
10714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ira the Ithrite, Gareb the Ithrite,
10715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Uriah the Hittite, Zabad the son of Ahlai,
10716                                                                                                                                                                                                                                                                                                                                                                                                                                                          Adina the son of Shiza the Reubenite, a captain of the Reubenites, and thirty with him,
10717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hanan the son of Maachah, and Joshaphat the Mithnite,
10718                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Uzzia the Ashterathite, Shama and Jehiel the sons of Hothan the Aroerite,
10719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Jediael the son of Shimri, and Joha his brother, the Tizite,
10720                                                                                                                                                                                                                                                                                                                                                                                                                                                      Eliel the Mahavite, and Jeribai, and Joshaviah, the sons of Elnaam, and Ithmah the Moabite,
10721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Eliel, and Obed, and Jasiel the Mesobaite.
10722                                                                                                                                                                                                                                                                                                                                                                        Now these are they that came to David to Ziklag, while he yet kept himself close because of Saul the son of Kish: and they were among the mighty men, helpers of the war.
10723                                                                                                                                                                                                                                                                                                                                                                               They were armed with bows, and could use both the right hand and the left in hurling stones and shooting arrows out of a bow, even of Saul's brethren of Benjamin.
10724                                                                                                                                                                                                                                                                                                                                                                                        The chief was Ahiezer, then Joash, the sons of Shemaah the Gibeathite; and Jeziel, and Pelet, the sons of Azmaveth; and Berachah, and Jehu the Antothite.
10725                                                                                                                                                                                                                                                                                                                                                                                             And Ismaiah the Gibeonite, a mighty man among the thirty, and over the thirty; and Jeremiah, and Jahaziel, and Johanan, and Josabad the Gederathite,
10726                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Eluzai, and Jerimoth, and Bealiah, and Shemariah, and Shephatiah the Haruphite,
10727                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elkanah, and Jesiah, and Azareel, and Joezer, and Jashobeam, the Korhites,
10728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joelah, and Zebadiah, the sons of Jeroham of Gedor.
10729                                                                                                                                                                                                                                                                      And of the Gadites there separated themselves unto David into the hold to the wilderness men of might, and men of war fit for the battle, that could handle shield and buckler, whose faces were like the faces of lions, and were as swift as the roes upon the mountains;
10730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ezer the first, Obadiah the second, Eliab the third,
10731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mishmannah the fourth, Jeremiah the fifth,
10732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attai the sixth, Eliel the seventh,
10733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Johanan the eighth, Elzabad the ninth,
10734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jeremiah the tenth, Machbanai the eleventh.
10735                                                                                                                                                                                                                                                                                                                                                                                                                     These were of the sons of Gad, captains of the host: one of the least was over an hundred, and the greatest over a thousand.
10736                                                                                                                                                                                                                                                                                                                                                         These are they that went over Jordan in the first month, when it had overflown all his banks; and they put to flight all them of the valleys, both toward the east, and toward the west.
10737                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there came of the children of Benjamin and Judah to the hold unto David.
10738                                                                                                                                                                                                                                                     And David went out to meet them, and answered and said unto them, If ye be come peaceably unto me to help me, mine heart shall be knit unto you: but if ye be come to betray me to mine enemies, seeing there is no wrong in mine hands, the God of our fathers look thereon, and rebuke it.
10739                                                                                                                                                                                                                                                         Then the spirit came upon Amasai, who was chief of the captains, and he said, Thine are we, David, and on thy side, thou son of Jesse: peace, peace be unto thee, and peace be to thine helpers; for thy God helpeth thee. Then David received them, and made them captains of the band.
10740                                                                                                                                                                                                                                                                              And there fell some of Manasseh to David, when he came with the Philistines against Saul to battle: but they helped them not: for the lords of the Philistines upon advisement sent him away, saying, He will fall to his master Saul to the jeopardy of our heads.
10741                                                                                                                                                                                                                                                                                                                                                         As he went to Ziklag, there fell to him of Manasseh, Adnah, and Jozabad, and Jediael, and Michael, and Jozabad, and Elihu, and Zilthai, captains of the thousands that were of Manasseh.
10742                                                                                                                                                                                                                                                                                                                                                                                                                      And they helped David against the band of the rovers: for they were all mighty men of valor, and were captains in the host.
10743                                                                                                                                                                                                                                                                                                                                                                                                                                    For at that time day by day there came to David to help him, until it was a great host, like the host of God.
10744                                                                                                                                                                                                                                                                                                                                                                     And these are the numbers of the bands that were ready armed to the war, and came to David to Hebron, to turn the kingdom of Saul to him, according to the word of the LORD.
10745                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of Judah that bare shield and spear were six thousand and eight hundred, ready armed to the war.
10746                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of the children of Simeon, mighty men of valor for the war, seven thousand and one hundred.
10747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of the children of Levi four thousand and six hundred.
10748                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jehoiada was the leader of the Aaronites, and with him were three thousand and seven hundred;
10749                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Zadok, a young man mighty of valor, and of his father's house twenty and two captains.
10750                                                                                                                                                                                                                                                                                                                                                                                             And of the children of Benjamin, the kindred of Saul, three thousand: for hitherto the greatest part of them had kept the ward of the house of Saul.
10751                                                                                                                                                                                                                                                                                                                                                                                                             And of the children of Ephraim twenty thousand and eight hundred, mighty men of valor, famous throughout the house of their fathers.
10752                                                                                                                                                                                                                                                                                                                                                                                                                                  And of the half tribe of Manasseh eighteen thousand, which were expressed by name, to come and make David king.
10753                                                                                                                                                                                                                                                                                                                                      And of the children of Issachar, which were men that had understanding of the times, to know what Israel ought to do; the heads of them were two hundred; and all their brethren were at their commandment.
10754                                                                                                                                                                                                                                                                                                                                                                                      Of Zebulun, such as went forth to battle, expert in war, with all instruments of war, fifty thousand, which could keep rank: they were not of double heart.
10755                                                                                                                                                                                                                                                                                                                                                                                                                                              And of Naphtali a thousand captains, and with them with shield and spear thirty and seven thousand.
10756                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And of the Danites expert in war twenty and eight thousand and six hundred.
10757                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of Asher, such as went forth to battle, expert in war, forty thousand.
10758                                                                                                                                                                                                                                                                                                                                                    And on the other side of Jordan, of the Reubenites, and the Gadites, and of the half tribe of Manasseh, with all manner of instruments of war for the battle, an hundred and twenty thousand.
10759                                                                                                                                                                                                                                                                                                                                                       All these men of war, that could keep rank, came with a perfect heart to Hebron, to make David king over all Israel: and all the rest also of Israel were of one heart to make David king.
10760                                                                                                                                                                                                                                                                                                                                                                                                                                        And there they were with David three days, eating and drinking: for their brethren had prepared for them.
10761                                                                                                                                                                                                                                                         Moreover they that were nigh them, even unto Issachar and Zebulun and Naphtali, brought bread on asses, and on camels, and on mules, and on oxen, and meat, meal, cakes of figs, and bunches of raisins, and wine, and oil, and oxen, and sheep abundantly: for there was joy in Israel.
10762                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David consulted with the captains of thousands and hundreds, and with every leader.
10763                                                                                                                                                                                                       And David said unto all the congregation of Israel, If it seem good unto you, and that it be of the LORD our God, let us send abroad unto our brethren every where, that are left in all the land of Israel, and with them also to the priests and Levites which are in their cities and suburbs, that they may gather themselves unto us:
10764                                                                                                                                                                                                                                                                                                                                                                                                                                                  And let us bring again the ark of our God to us: for we inquired not at it in the days of Saul.
10765                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the congregation said that they would do so: for the thing was right in the eyes of all the people.
10766                                                                                                                                                                                                                                                                                                                                                                                                        So David gathered all Israel together, from Shihor of Egypt even unto the entering of Hemath, to bring the ark of God from Kirjathjearim.
10767                                                                                                                                                                                                                                                                                                                                    And David went up, and all Israel, to Baalah, that is, to Kirjathjearim, which belonged to Judah, to bring up thence the ark of God the LORD, that dwelleth between the cherubim, whose name is called on it.
10768                                                                                                                                                                                                                                                                                                                                                                                                                                    And they carried the ark of God in a new cart out of the house of Abinadab: and Uzza and Ahio drave the cart.
10769                                                                                                                                                                                                                                                                                                                                                                  And David and all Israel played before God with all their might, and with singing, and with harps, and with psalteries, and with timbrels, and with cymbals, and with trumpets.
10770                                                                                                                                                                                                                                                                                                                                                                                                                            And when they came unto the threshingfloor of Chidon, Uzza put forth his hand to hold the ark; for the oxen stumbled.
10771                                                                                                                                                                                                                                                                                                                                                                                                          And the anger of the LORD was kindled against Uzza, and he smote him, because he put his hand to the ark: and there he died before God.
10772                                                                                                                                                                                                                                                                                                                                                                                                                    And David was displeased, because the LORD had made a breach upon Uzza: wherefore that place is called Perezuzza to this day.
10773                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David was afraid of God that day, saying, How shall I bring the ark of God home to me?
10774                                                                                                                                                                                                                                                                                                                                                                                                                  So David brought not the ark home to himself to the city of David, but carried it aside into the house of Obededom the Gittite.
10775                                                                                                                                                                                                                                                                                                                                                                                              And the ark of God remained with the family of Obededom in his house three months. And the LORD blessed the house of Obededom, and all that he had.
10776                                                                                                                                                                                                                                                                                                                                                                                                                        Now Hiram king of Tyre sent messengers to David, and timber of cedars, with masons and carpenters, to build him an house.
10777                                                                                                                                                                                                                                                                                                                                                                                                       And David perceived that the LORD had confirmed him king over Israel, for his kingdom was lifted up on high, because of his people Israel.
10778                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David took more wives at Jerusalem: and David begat more sons and daughters.
10779                                                                                                                                                                                                                                                                                                                                                                                                                                     Now these are the names of his children which he had in Jerusalem; Shammua, and Shobab, Nathan, and Solomon,
10780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Ibhar, and Elishua, and Elpalet,
10781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Nogah, and Nepheg, and Japhia,
10782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Elishama, and Beeliada, and Eliphalet.
10783                                                                                                                                                                                                                                                                                                                                                                        And when the Philistines heard that David was anointed king over all Israel, all the Philistines went up to seek David. And David heard of it, and went out against them.
10784                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the Philistines came and spread themselves in the valley of Rephaim.
10785                                                                                                                                                                                                                                                                                                                                                 And David inquired of God, saying, Shall I go up against the Philistines? And wilt thou deliver them into mine hand? And the LORD said unto him, Go up; for I will deliver them into thine hand.
10786                                                                                                                                                                                                                                                                                                                      So they came up to Baalperazim; and David smote them there. Then David said, God hath broken in upon mine enemies by mine hand like the breaking forth of waters: therefore they called the name of that place Baalperazim.
10787                                                                                                                                                                                                                                                                                                                                                                                                                                               And when they had left their gods there, David gave a commandment, and they were burned with fire.
10788                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Philistines yet again spread themselves abroad in the valley.
10789                                                                                                                                                                                                                                                                                                                                                                                     Therefore David inquired again of God; and God said unto him, Go not up after them; turn away from them, and come upon them over against the mulberry trees.
10790                                                                                                                                                                                                                                                                                                                                         And it shall be, when thou shalt hear a sound of going in the tops of the mulberry trees, that then thou shalt go out to battle: for God is gone forth before thee to smite the host of the Philistines.
10791                                                                                                                                                                                                                                                                                                                                                                                                                                  David therefore did as God commanded him: and they smote the host of the Philistines from Gibeon even to Gazer.
10792                                                                                                                                                                                                                                                                                                                                                                                                                                            And the fame of David went out into all lands; and the LORD brought the fear of him upon all nations.
10793                                                                                                                                                                                                                                                                                                                                                                                                                              And David made him houses in the city of David, and prepared a place for the ark of God, and pitched for it a tent.
10794                                                                                                                                                                                                                                                                                                                                                                                   Then David said, None ought to carry the ark of God but the Levites: for them hath the LORD chosen to carry the ark of God, and to minister unto him for ever.
10795                                                                                                                                                                                                                                                                                                                                                                                                               And David gathered all Israel together to Jerusalem, to bring up the ark of the LORD unto his place, which he had prepared for it.
10796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David assembled the children of Aaron, and the Levites:
10797                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of the sons of Kohath; Uriel the chief, and his brethren an hundred and twenty:
10798                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of the sons of Merari; Asaiah the chief, and his brethren two hundred and twenty:
10799                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Of the sons of Gershom; Joel the chief and his brethren an hundred and thirty:
10800                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of the sons of Elizaphan; Shemaiah the chief, and his brethren two hundred:
10801                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the sons of Hebron; Eliel the chief, and his brethren fourscore:
10802                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the sons of Uzziel; Amminadab the chief, and his brethren an hundred and twelve.
10803                                                                                                                                                                                                                                                                                                                                                                                                       And David called for Zadok and Abiathar the priests, and for the Levites, for Uriel, Asaiah, and Joel, Shemaiah, and Eliel, and Amminadab,
10804                                                                                                                                                                                                                                                                                                                           And said unto them, Ye are the chief of the fathers of the Levites: sanctify yourselves, both ye and your brethren, that ye may bring up the ark of the LORD God of Israel unto the place that I have prepared for it.
10805                                                                                                                                                                                                                                                                                                                                                                                                                  For because ye did it not at the first, the LORD our God made a breach upon us, for that we sought him not after the due order.
10806                                                                                                                                                                                                                                                                                                                                                                                                                                              So the priests and the Levites sanctified themselves to bring up the ark of the LORD God of Israel.
10807                                                                                                                                                                                                                                                                                                                                                                                          And the children of the Levites bare the ark of God upon their shoulders with the staves thereon, as Moses commanded according to the word of the LORD.
10808                                                                                                                                                                                                                                                                                                                                                 And David spake to the chief of the Levites to appoint their brethren to be the singers with instruments of music, psalteries and harps and cymbals, sounding, by lifting up the voice with joy.
10809                                                                                                                                                                                                                                                                                                                                                                            So the Levites appointed Heman the son of Joel; and of his brethren, Asaph the son of Berechiah; and of the sons of Merari their brethren, Ethan the son of Kushaiah;
10810                                                                                                                                                                                                                                                                                                      And with them their brethren of the second degree, Zechariah, Ben, and Jaaziel, and Shemiramoth, and Jehiel, and Unni, Eliab, and Benaiah, and Maaseiah, and Mattithiah, and Elipheleh, and Mikneiah, and Obededom, and Jeiel, the porters.
10811                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the singers, Heman, Asaph, and Ethan, were appointed to sound with cymbals of brass;
10812                                                                                                                                                                                                                                                                                                                                                                                                               And Zechariah, and Aziel, and Shemiramoth, and Jehiel, and Unni, and Eliab, and Maaseiah, and Benaiah, with psalteries on Alamoth;
10813                                                                                                                                                                                                                                                                                                                                                                                                                         And Mattithiah, and Elipheleh, and Mikneiah, and Obededom, and Jeiel, and Azaziah, with harps on the Sheminith to excel.
10814                                                                                                                                                                                                                                                                                                                                                                                                                                        And Chenaniah, chief of the Levites, was for song: he instructed about the song, because he was skillful.
10815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Berechiah and Elkanah were doorkeepers for the ark.
10816                                                                                                                                                                                                                                                                                                                         And Shebaniah, and Jehoshaphat, and Nethaneel, and Amasai, and Zechariah, and Benaiah, and Eliezer, the priests, did blow with the trumpets before the ark of God: and Obededom and Jehiah were doorkeepers for the ark.
10817                                                                                                                                                                                                                                                                                                                                                                                 So David, and the elders of Israel, and the captains over thousands, went to bring up the ark of the covenant of the LORD out of the house of Obededom with joy.
10818                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass, when God helped the Levites that bare the ark of the covenant of the LORD, that they offered seven bullocks and seven rams.
10819                                                                                                                                                                                                                                                                                                                                       And David was clothed with a robe of fine linen, and all the Levites that bare the ark, and the singers, and Chenaniah the master of the song with the singers: David also had upon him an ephod of linen.
10820                                                                                                                                                                                                                                                                                                                                                       Thus all Israel brought up the ark of the covenant of the LORD with shouting, and with sound of the cornet, and with trumpets, and with cymbals, making a noise with psalteries and harps.
10821                                                                                                                                                                                                                                                                                                                          And it came to pass, as the ark of the covenant of the LORD came to the city of David, that Michal, the daughter of Saul looking out at a window saw king David dancing and playing: and she despised him in her heart.
10822                                                                                                                                                                                                                                                                                                                                                                             So they brought the ark of God, and set it in the midst of the tent that David had pitched for it: and they offered burnt sacrifices and peace offerings before God.
10823                                                                                                                                                                                                                                                                                                                                                                                                           And when David had made an end of offering the burnt offerings and the peace offerings, he blessed the people in the name of the LORD.
10824                                                                                                                                                                                                                                                                                                                                                                                                          And he dealt to every one of Israel, both man and woman, to every one a loaf of bread, and a good piece of flesh, and a flagon of wine.
10825                                                                                                                                                                                                                                                                                                                                                                                                   And he appointed certain of the Levites to minister before the ark of the LORD, and to record, and to thank and praise the LORD God of Israel:
10826                                                                                                                                                                                                                                                                                                                             Asaph the chief, and next to him Zechariah, Jeiel, and Shemiramoth, and Jehiel, and Mattithiah, and Eliab, and Benaiah, and Obededom: and Jeiel with psalteries and with harps; but Asaph made a sound with cymbals;
10827                                                                                                                                                                                                                                                                                                                                                                                                                                           Benaiah also and Jahaziel the priests with trumpets continually before the ark of the covenant of God.
10828                                                                                                                                                                                                                                                                                                                                                                                                                                     Then on that day David delivered first this psalm to thank the LORD into the hand of Asaph and his brethren.
10829                                                                                                                                                                                                                                                                                                                                                                                                                                                            Give thanks unto the LORD, call upon his name, make known his deeds among the people.
10830                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sing unto him, sing psalms unto him, talk ye of all his wondrous works.
10831                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Glory ye in his holy name: let the heart of them rejoice that seek the LORD.
10832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Seek the LORD and his strength, seek his face continually.
10833                                                                                                                                                                                                                                                                                                                                                                                                                                                     Remember his marvelous works that he hath done, his wonders, and the judgments of his mouth;
10834                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O ye seed of Israel his servant, ye children of Jacob, his chosen ones.
10835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is the LORD our God; his judgments are in all the earth.
10836                                                                                                                                                                                                                                                                                                                                                                                                                                                     Be ye mindful always of his covenant; the word which he commanded to a thousand generations;
10837                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Even of the covenant which he made with Abraham, and of his oath unto Isaac;
10838                                                                                                                                                                                                                                                                                                                                                                                                                                                       And hath confirmed the same to Jacob for a law, and to Israel for an everlasting covenant,
10839                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Saying, Unto thee will I give the land of Canaan, the lot of your inheritance;
10840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When ye were but few, even a few, and strangers in it.
10841                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when they went from nation to nation, and from one kingdom to another people;
10842                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He suffered no man to do them wrong: yea, he reproved kings for their sakes,
10843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Saying, Touch not mine anointed, and do my prophets no harm.
10844                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sing unto the LORD, all the earth; show forth from day to day his salvation.
10845                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Declare his glory among the heathen; his marvelous works among all nations.
10846                                                                                                                                                                                                                                                                                                                                                                                                                                                        For great is the LORD, and greatly to be praised: he also is to be feared above all gods.
10847                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For all the gods of the people are idols: but the LORD made the heavens.
10848                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Glory and honor are in his presence; strength and gladness are in his place.
10849                                                                                                                                                                                                                                                                                                                                                                                                                                                             Give unto the LORD, ye kindred of the people, give unto the LORD glory and strength.
10850                                                                                                                                                                                                                                                                                                                                                                                                              Give unto the LORD the glory due unto his name: bring an offering, and come before him: worship the LORD in the beauty of holiness.
10851                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fear before him, all the earth: the world also shall be stable, that it be not moved.
10852                                                                                                                                                                                                                                                                                                                                                                                                                                        Let the heavens be glad, and let the earth rejoice: and let men say among the nations, The LORD reigneth.
10853                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let the sea roar, and the fulness thereof: let the fields rejoice, and all that is therein.
10854                                                                                                                                                                                                                                                                                                                                                                                                                                     Then shall the trees of the wood sing out at the presence of the LORD, because he cometh to judge the earth.
10855                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O give thanks unto the LORD; for he is good; for his mercy endureth for ever.
10856                                                                                                                                                                                                                                                                                                                                                                         And say ye, Save us, O God of our salvation, and gather us together, and deliver us from the heathen, that we may give thanks to thy holy name, and glory in thy praise.
10857                                                                                                                                                                                                                                                                                                                                                                                                                                        Blessed be the LORD God of Israel for ever and ever. And all the people said, Amen, and praised the LORD.
10858                                                                                                                                                                                                                                                                                                                                                                                        So he left there before the ark of the covenant of the LORD Asaph and his brethren, to minister before the ark continually, as every day's work required:
10859                                                                                                                                                                                                                                                                                                                                                                                                                               And Obededom with their brethren, threescore and eight; Obededom also the son of Jeduthun and Hosah to be porters:
10860                                                                                                                                                                                                                                                                                                                                                                                                                      And Zadok the priest, and his brethren the priests, before the tabernacle of the LORD in the high place that was at Gibeon,
10861                                                                                                                                                                                                                                                                                                                                       To offer burnt offerings unto the LORD upon the altar of the burnt offering continually morning and evening, and to do according to all that is written in the law of the LORD, which he commanded Israel;
10862                                                                                                                                                                                                                                                                                                                                                                                    And with them Heman and Jeduthun, and the rest that were chosen, who were expressed by name, to give thanks to the LORD, because his mercy endureth for ever;
10863                                                                                                                                                                                                                                                                                                                                                                       And with them Heman and Jeduthun with trumpets and cymbals for those that should make a sound, and with musical instruments of God. And the sons of Jeduthun were porters.
10864                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the people departed every man to his house: and David returned to bless his house.
10865                                                                                                                                                                                                                                                                                                                                                      Now it came to pass, as David sat in his house, that David said to Nathan the prophet, Lo, I dwell in an house of cedars, but the ark of the covenant of the LORD remaineth under curtains.
10866                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Nathan said unto David, Do all that is in thine heart; for God is with thee.
10867                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass the same night, that the word of God came to Nathan, saying,
10868                                                                                                                                                                                                                                                                                                                                                                                                                                                 Go and tell David my servant, Thus saith the LORD, Thou shalt not build me an house to dwell in:
10869                                                                                                                                                                                                                                                                                                                                                                                      For I have not dwelt in an house since the day that I brought up Israel unto this day; but have gone from tent to tent, and from one tabernacle to another.
10870                                                                                                                                                                                                                                                                                                                                                               Wheresoever I have walked with all Israel, spake I a word to any of the judges of Israel, whom I commanded to feed my people, saying, Why have ye not built me an house of cedars?
10871                                                                                                                                                                                                                                                                                                                                        Now therefore thus shalt thou say unto my servant David, Thus saith the LORD of hosts, I took thee from the sheepcote, even from following the sheep, that thou shouldest be ruler over my people Israel:
10872                                                                                                                                                                                                                                                                                                                                                   And I have been with thee whithersoever thou hast walked, and have cut off all thine enemies from before thee, and have made thee a name like the name of the great men that are in the earth.
10873                                                                                                                                                                                                                                                                                                                        Also I will ordain a place for my people Israel, and will plant them, and they shall dwell in their place, and shall be moved no more; neither shall the children of wickedness waste them any more, as at the beginning,
10874                                                                                                                                                                                                                                                                                                                                                                And since the time that I commanded judges to be over my people Israel. Moreover I will subdue all thine enemies. Furthermore I tell thee that the LORD will build thee an house.
10875                                                                                                                                                                                                                                                                                                                                            And it shall come to pass, when thy days be expired that thou must go to be with thy fathers, that I will raise up thy seed after thee, which shall be of thy sons; and I will establish his kingdom.
10876                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He shall build me an house, and I will stablish his throne for ever.
10877                                                                                                                                                                                                                                                                                                                                                                                                            I will be his father, and he shall be my son: and I will not take my mercy away from him, as I took it from him that was before thee:
10878                                                                                                                                                                                                                                                                                                                                                                                                                                But I will settle him in mine house and in my kingdom for ever: and his throne shall be established for evermore.
10879                                                                                                                                                                                                                                                                                                                                                                                                                                                  According to all these words, and according to all this vision, so did Nathan speak unto David.
10880                                                                                                                                                                                                                                                                                                                                                                                                     And David the king came and sat before the LORD, and said, Who am I, O LORD God, and what is mine house, that thou hast brought me hitherto?
10881                                                                                                                                                                                                                                                                                                                               And yet this was a small thing in thine eyes, O God; for thou hast also spoken of thy servant's house for a great while to come, and hast regarded me according to the estate of a man of high degree, O LORD God.
10882                                                                                                                                                                                                                                                                                                                                                                                                                                                    What can David speak more to thee for the honor of thy servant? for thou knowest thy servant.
10883                                                                                                                                                                                                                                                                                                                                                                                                     O LORD, for thy servant's sake, and according to thine own heart, hast thou done all this greatness, in making known all these great things.
10884                                                                                                                                                                                                                                                                                                                                                                                                                        O LORD, there is none like thee, neither is there any God beside thee, according to all that we have heard with our ears.
10885                                                                                                                                                                                                                                                                                                 And what one nation in the earth is like thy people Israel, whom God went to redeem to be his own people, to make thee a name of greatness and terribleness, by driving out nations from before thy people whom thou hast redeemed out of Egypt?
10886                                                                                                                                                                                                                                                                                                                                                                                                                                             For thy people Israel didst thou make thine own people for ever; and thou, LORD, becamest their God.
10887                                                                                                                                                                                                                                                                                                                                                                                      Therefore now, LORD, let the thing that thou hast spoken concerning thy servant and concerning his house be established for ever, and do as thou hast said.
10888                                                                                                                                                                                                                                                                                                                                    Let it even be established, that thy name may be magnified for ever, saying, The LORD of hosts is the God of Israel, even a God to Israel: and let the house of David thy servant be established before thee.
10889                                                                                                                                                                                                                                                                                                                                                                                                  For thou, O my God, hast told thy servant that thou wilt build him an house: therefore thy servant hath found in his heart to pray before thee.
10890                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And now, LORD, thou art God, and hast promised this goodness unto thy servant:
10891                                                                                                                                                                                                                                                                                                                                                                            Now therefore let it please thee to bless the house of thy servant, that it may be before thee for ever: for thou blessest, O LORD, and it shall be blessed for ever.
10892                                                                                                                                                                                                                                                                                                                                                                                              Now after this it came to pass, that David smote the Philistines, and subdued them, and took Gath and her towns out of the hand of the Philistines.
10893                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he smote Moab; and the Moabites became David's servants, and brought gifts.
10894                                                                                                                                                                                                                                                                                                                                                                                                                                 And David smote Hadarezer king of Zobah unto Hamath, as he went to stablish his dominion by the river Euphrates.
10895                                                                                                                                                                                                                                                                                                                                                      And David took from him a thousand chariots, and seven thousand horsemen, and twenty thousand footmen: David also houghed all the chariot horses, but reserved of them an hundred chariots.
10896                                                                                                                                                                                                                                                                                                                                                                                                                    And when the Syrians of Damascus came to help Hadarezer king of Zobah, David slew of the Syrians two and twenty thousand men.
10897                                                                                                                                                                                                                                                                                                                                                                                      Then David put garrisons in Syriadamascus; and the Syrians became David's servants, and brought gifts. Thus the LORD preserved David whithersoever he went.
10898                                                                                                                                                                                                                                                                                                                                                                                                                                        And David took the shields of gold that were on the servants of Hadarezer, and brought them to Jerusalem.
10899                                                                                                                                                                                                                                                                                                                                                                      Likewise from Tibhath, and from Chun, cities of Hadarezer, brought David very much brass, wherewith Solomon made the brazen sea, and the pillars, and the vessels of brass.
10900                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now when Tou king of Hamath heard how David had smitten all the host of Hadarezer king of Zobah;
10901                                                                                                                                                                                                                                                                                          He sent Hadoram his son to king David, to enquire of his welfare, and to congratulate him, because he had fought against Hadarezer, and smitten him; (for Hadarezer had war with Tou;) and with him all manner of vessels of gold and silver and brass.
10902                                                                                                                                                                                                                                                                                                                          Them also king David dedicated unto the LORD, with the silver and the gold that he brought from all these nations; from Edom, and from Moab, and from the children of Ammon, and from the Philistines, and from Amalek.
10903                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover Abishai the son of Zeruiah slew of the Edomites in the valley of salt eighteen thousand.
10904                                                                                                                                                                                                                                                                                                                                                                                                                 And he put garrisons in Edom; and all the Edomites became David's servants. Thus the LORD preserved David whithersoever he went.
10905                                                                                                                                                                                                                                                                                                                                                                                                                                                        So David reigned over all Israel, and executed judgment and justice among all his people.
10906                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud, recorder.
10907                                                                                                                                                                                                                                                                                                                                                                                                                                        And Zadok the son of Ahitub, and Abimelech the son of Abiathar, were the priests; and Shavsha was scribe;
10908                                                                                                                                                                                                                                                                                                                                                                                                                    And Benaiah the son of Jehoiada was over the Cherethites and the Pelethites; and the sons of David were chief about the king.
10909                                                                                                                                                                                                                                                                                                                                                                                                                            Now it came to pass after this, that Nahash the king of the children of Ammon died, and his son reigned in his stead.
10910                                                                                                                                                                                                                                                                      And David said, I will show kindness unto Hanun the son of Nahash, because his father showed kindness to me. And David sent messengers to comfort him concerning his father. So the servants of David came into the land of the children of Ammon to Hanun, to comfort him.
10911                                                                                                                                                                                                                                                                                                    But the princes of the children of Ammon said to Hanun, Thinkest thou that David doth honor thy father, that he hath sent comforters unto thee? are not his servants come unto thee for to search, and to overthrow, and to spy out the land?
10912                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore Hanun took David's servants, and shaved them, and cut off their garments in the midst hard by their buttocks, and sent them away.
10913                                                                                                                                                                                                                                                                                                                                    Then there went certain, and told David how the men were served. And he sent to meet them: for the men were greatly ashamed. And the king said, Tarry at Jericho until your beards be grown, and then return.
10914                                                                                                                                                                                                                                                                                            And when the children of Ammon saw that they had made themselves odious to David, Hanun and the children of Ammon sent a thousand talents of silver to hire them chariots and horsemen out of Mesopotamia, and out of Syriamaachah, and out of Zobah.
10915                                                                                                                                                                                                                                                                                                                        So they hired thirty and two thousand chariots, and the king of Maachah and his people; who came and pitched before Medeba. And the children of Ammon gathered themselves together from their cities, and came to battle.
10916                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when David heard of it, he sent Joab, and all the host of the mighty men.
10917                                                                                                                                                                                                                                                                                                                                                                                       And the children of Ammon came out, and put the battle in array before the gate of the city: and the kings that were come were by themselves in the field.
10918                                                                                                                                                                                                                                                                                                                                                                                    Now when Joab saw that the battle was set against him before and behind, he chose out of all the choice of Israel, and put them in array against the Syrians.
10919                                                                                                                                                                                                                                                                                                                                                                                                    And the rest of the people he delivered unto the hand of Abishai his brother, and they set themselves in array against the children of Ammon.
10920                                                                                                                                                                                                                                                                                                                                                                                           And he said, If the Syrians be too strong for me, then thou shalt help me: but if the children of Ammon be too strong for thee, then I will help thee.
10921                                                                                                                                                                                                                                                                                                                                                                                    Be of good courage, and let us behave ourselves valiantly for our people, and for the cities of our God: and let the LORD do that which is good in his sight.
10922                                                                                                                                                                                                                                                                                                                                                                                                                                So Joab and the people that were with him drew nigh before the Syrians unto the battle; and they fled before him.
10923                                                                                                                                                                                                                                                                                                                                                                            And when the children of Ammon saw that the Syrians were fled, they likewise fled before Abishai his brother, and entered into the city. Then Joab came to Jerusalem.
10924                                                                                                                                                                                                                                                                                                                         And when the Syrians saw that they were put to the worse before Israel, they sent messengers, and drew forth the Syrians that were beyond the river: and Shophach the captain of the host of Hadarezer went before them.
10925                                                                                                                                                                                                                                                                                                                    And it was told David; and he gathered all Israel, and passed over Jordan, and came upon them, and set the battle in array against them. So when David had put the battle in array against the Syrians, they fought with him.
10926                                                                                                                                                                                                                                                                                                                                                          But the Syrians fled before Israel; and David slew of the Syrians seven thousand men which fought in chariots, and forty thousand footmen, and killed Shophach the captain of the host.
10927                                                                                                                                                                                                                                                                                                                                        And when the servants of Hadarezer saw that they were put to the worse before Israel, they made peace with David, and became his servants: neither would the Syrians help the children of Ammon any more.
10928                                                                                                                                                                                                                                                     And it came to pass, that after the year was expired, at the time that kings go out to battle, Joab led forth the power of the army, and wasted the country of the children of Ammon, and came and besieged Rabbah. But David tarried at Jerusalem. And Joab smote Rabbah, and destroyed it.
10929                                                                                                                                                                                                                                                                                                              And David took the crown of their king from off his head, and found it to weigh a talent of gold, and there were precious stones in it; and it was set upon David's head: and he brought also exceeding much spoil out of the city.
10930                                                                                                                                                                                                                                                                                                            And he brought out the people that were in it, and cut them with saws, and with harrows of iron, and with axes. Even so dealt David with all the cities of the children of Ammon. And David and all the people returned to Jerusalem.
10931                                                                                                                                                                                                                                                                                                                                            And it came to pass after this, that there arose war at Gezer with the Philistines; at which time Sibbechai the Hushathite slew Sippai, that was of the children of the giant: and they were subdued.
10932                                                                                                                                                                                                                                                                                                                                                                             And there was war again with the Philistines; and Elhanan the son of Jair slew Lahmi the brother of Goliath the Gittite, whose spear staff was like a weaver's beam.
10933                                                                                                                                                                                                                                                                                                                                                 And yet again there was war at Gath, where was a man of great stature, whose fingers and toes were four and twenty, six on each hand, and six on each foot and he also was the son of the giant.
10934                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But when he defied Israel, Jonathan the son of Shimea David's brother slew him.
10935                                                                                                                                                                                                                                                                                                                                                                                                                                     These were born unto the giant in Gath; and they fell by the hand of David, and by the hand of his servants.
10936                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Satan stood up against Israel, and provoked David to number Israel.
10937                                                                                                                                                                                                                                                                                                                                                                                    And David said to Joab and to the rulers of the people, Go, number Israel from Beersheba even to Dan; and bring the number of them to me, that I may know it.
10938                                                                                                                                                                                                                                                                                                        And Joab answered, The LORD make his people an hundred times so many more as they be: but, my lord the king, are they not all my lord's servants? why then doth my lord require this thing? why will he be a cause of trespass to Israel?
10939                                                                                                                                                                                                                                                                                                                                                                                                             Nevertheless the king's word prevailed against Joab. Wherefore Joab departed, and went throughout all Israel, and came to Jerusalem.
10940                                                                                                                                                                                                                                                                                                           And Joab gave the sum of the number of the people unto David. And all they of Israel were a thousand thousand and an hundred thousand men that drew sword: and Judah was four hundred threescore and ten thousand men that drew sword.
10941                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Levi and Benjamin counted he not among them: for the king's word was abominable to Joab.
10942                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And God was displeased with this thing; therefore he smote Israel.
10943                                                                                                                                                                                                                                                                                                                                                                    And David said unto God, I have sinned greatly, because I have done this thing: but now, I beseech thee, do away the iniquity of thy servant; for I have done very foolishly.
10944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Gad, David's seer, saying,
10945                                                                                                                                                                                                                                                                                                                                                                                                                  Go and tell David, saying, Thus saith the LORD, I offer thee three things: choose thee one of them, that I may do it unto thee.
10946                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Gad came to David, and said unto him, Thus saith the LORD, Choose thee
10947                                                                                                                                                                        Either three years' famine; or three months to be destroyed before thy foes, while that the sword of thine enemies overtaketh thee; or else three days the sword of the LORD, even the pestilence, in the land, and the angel of the LORD destroying throughout all the coasts of Israel. Now therefore advise thyself what word I shall bring again to him that sent me.
10948                                                                                                                                                                                                                                                                                                                                                                            And David said unto Gad, I am in a great strait: let me fall now into the hand of the LORD; for very great are his mercies: but let me not fall into the hand of man.
10949                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the LORD sent pestilence upon Israel: and there fell of Israel seventy thousand men.
10950                                                                                                                                                                                                                                                            And God sent an angel unto Jerusalem to destroy it: and as he was destroying, the LORD beheld, and he repented him of the evil, and said to the angel that destroyed, It is enough, stay now thine hand. And the angel of the LORD stood by the threshingfloor of Ornan the Jebusite.
10951                                                                                                                                                                                                                                                                                    And David lifted up his eyes, and saw the angel of the LORD stand between the earth and the heaven, having a drawn sword in his hand stretched out over Jerusalem. Then David and the elders of Israel, who were clothed in sackcloth, fell upon their faces.
10952                                                                                                                                                                                                                              And David said unto God, Is it not I that commanded the people to be numbered? even I it is that have sinned and done evil indeed; but as for these sheep, what have they done? let thine hand, I pray thee, O LORD my God, be on me, and on my father's house; but not on thy people, that they should be plagued.
10953                                                                                                                                                                                                                                                                                                                                                                                Then the angel of the LORD commanded Gad to say to David, that David should go up, and set up an altar unto the LORD in the threshingfloor of Ornan the Jebusite.
10954                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David went up at the saying of Gad, which he spake in the name of the LORD.
10955                                                                                                                                                                                                                                                                                                                                                                                                                              And Ornan turned back, and saw the angel; and his four sons with him hid themselves. Now Ornan was threshing wheat.
10956                                                                                                                                                                                                                                                                                                                                                                                              And as David came to Ornan, Ornan looked and saw David, and went out of the threshingfloor, and bowed himself to David with his face to the ground.
10957                                                                                                                                                                                                                                                                                                                                  Then David said to Ornan, Grant me the place of this threshingfloor, that I may build an altar therein unto the LORD: thou shalt grant it me for the full price: that the plague may be stayed from the people.
10958                                                                                                                                                                                                                                                                                           And Ornan said unto David, Take it to thee, and let my lord the king do that which is good in his eyes: lo, I give thee the oxen also for burnt offerings, and the threshing instruments for wood, and the wheat for the meat offering; I give it all.
10959                                                                                                                                                                                                                                                                                                                                                                    And king David said to Ornan, Nay; but I will verily buy it for the full price: for I will not take that which is thine for the LORD, nor offer burnt offerings without cost.
10960                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So David gave to Ornan for the place six hundred shekels of gold by weight.
10961                                                                                                                                                                                                                                                                                                                                               And David built there an altar unto the LORD, and offered burnt offerings and peace offerings, and called upon the LORD; and he answered him from heaven by fire upon the altar of burnt offering.
10962                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD commanded the angel; and he put up his sword again into the sheath thereof.
10963                                                                                                                                                                                                                                                                                                                                                                                                                At that time when David saw that the LORD had answered him in the threshingfloor of Ornan the Jebusite, then he sacrificed there.
10964                                                                                                                                                                                                                                                                                                                                                                                        For the tabernacle of the LORD, which Moses made in the wilderness, and the altar of the burnt offering, were at that season in the high place at Gibeon.
10965                                                                                                                                                                                                                                                                                                                                                                                                                             But David could not go before it to enquire of God: for he was afraid because of the sword of the angel of the LORD.
10966                                                                                                                                                                                                                                                                                                                                                                                                                                      Then David said, This is the house of the LORD God, and this is the altar of the burnt offering for Israel.
10967                                                                                                                                                                                                                                                                                                                                                                                         And David commanded to gather together the strangers that were in the land of Israel; and he set masons to hew wrought stones to build the house of God.
10968                                                                                                                                                                                                                                                                                                                                                                                                      And David prepared iron in abundance for the nails for the doors of the gates, and for the joinings; and brass in abundance without weight;
10969                                                                                                                                                                                                                                                                                                                                                                                                                                              Also cedar trees in abundance: for the Zidonians and they of Tyre brought much cedar wood to David.
10970                                                                                                                                                                                                                                                                  And David said, Solomon my son is young and tender, and the house that is to be builded for the LORD must be exceeding magnificent, of fame and of glory throughout all countries: I will therefore now make preparation for it. So David prepared abundantly before his death.
10971                                                                                                                                                                                                                                                                                                                                                                                                                                                Then he called for Solomon his son, and charged him to build an house for the LORD God of Israel.
10972                                                                                                                                                                                                                                                                                                                                                                                                                              And David said to Solomon, My son, as for me, it was in my mind to build an house unto the name of the LORD my God:
10973                                                                                                                                                                                                                                                                                                                                But the word of the LORD came to me, saying, Thou hast shed blood abundantly, and hast made great wars: thou shalt not build an house unto my name, because thou hast shed much blood upon the earth in my sight.
10974                                                                                                                                                                                                                                                                                                                          Behold, a son shall be born to thee, who shall be a man of rest; and I will give him rest from all his enemies round about: for his name shall be Solomon, and I will give peace and quietness unto Israel in his days.
10975                                                                                                                                                                                                                                                                                                                                                                                      He shall build an house for my name; and he shall be my son, and I will be his father; and I will establish the throne of his kingdom over Israel for ever.
10976                                                                                                                                                                                                                                                                                                                                                                                                                          Now, my son, the LORD be with thee; and prosper thou, and build the house of the LORD thy God, as he hath said of thee.
10977                                                                                                                                                                                                                                                                                                                                                                                                     Only the LORD give thee wisdom and understanding, and give thee charge concerning Israel, that thou mayest keep the law of the LORD thy God.
10978                                                                                                                                                                                                                                                                                                                                               Then shalt thou prosper, if thou takest heed to fulfil the statutes and judgments which the LORD charged Moses with concerning Israel: be strong, and of good courage; dread not, nor be dismayed.
10979                                                                                                                                                                                                                                                           Now, behold, in my trouble I have prepared for the house of the LORD an hundred thousand talents of gold, and a thousand thousand talents of silver; and of brass and iron without weight; for it is in abundance: timber also and stone have I prepared; and thou mayest add thereto.
10980                                                                                                                                                                                                                                                                                                                                                                                               Moreover there are workmen with thee in abundance, hewers and workers of stone and timber, and all manner of cunning men for every manner of work.
10981                                                                                                                                                                                                                                                                                                                                                                                                              Of the gold, the silver, and the brass, and the iron, there is no number. Arise therefore, and be doing, and the LORD be with thee.
10982                                                                                                                                                                                                                                                                                                                                                                                                                                                                  David also commanded all the princes of Israel to help Solomon his son, saying,
10983                                                                                                                                                                                                                                                                                                                                   Is not the LORD your God with you? and hath he not given you rest on every side? for he hath given the inhabitants of the land into mine hand; and the land is subdued before the LORD, and before his people.
10984                                                                                                                                                                                                                                                                                  Now set your heart and your soul to seek the LORD your God; arise therefore, and build ye the sanctuary of the LORD God, to bring the ark of the covenant of the LORD, and the holy vessels of God, into the house that is to be built to the name of the LORD.
10985                                                                                                                                                                                                                                                                                                                                                                                                                                                                So when David was old and full of days, he made Solomon his son king over Israel.
10986                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he gathered together all the princes of Israel, with the priests and the Levites.
10987                                                                                                                                                                                                                                                                                                                                                                                               Now the Levites were numbered from the age of thirty years and upward: and their number by their polls, man by man, was thirty and eight thousand.
10988                                                                                                                                                                                                                                                                                                                                                                                                             Of which, twenty and four thousand were to set forward the work of the house of the LORD; and six thousand were officers and judges:
10989                                                                                                                                                                                                                                                                                                                                                                                                      Moreover four thousand were porters; and four thousand praised the LORD with the instruments which I made, said David, to praise therewith.
10990                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David divided them into courses among the sons of Levi, namely, Gershon, Kohath, and Merari.
10991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the Gershonites were, Laadan, and Shimei.
10992                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sons of Laadan; the chief was Jehiel, and Zetham, and Joel, three.
10993                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Shimei; Shelomith, and Haziel, and Haran, three. These were the chief of the fathers of Laadan.
10994                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Shimei were, Jahath, Zina, and Jeush, and Beriah. These four were the sons of Shimei.
10995                                                                                                                                                                                                                                                                                                                                                                                 And Jahath was the chief, and Zizah the second: but Jeush and Beriah had not many sons; therefore they were in one reckoning, according to their father's house.
10996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Kohath; Amram, Izhar, Hebron, and Uzziel, four.
10997                                                                                                                                                                                                                                                                                                                   The sons of Amram; Aaron and Moses: and Aaron was separated, that he should sanctify the most holy things, he and his sons for ever, to burn incense before the LORD, to minister unto him, and to bless in his name for ever.
10998                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now concerning Moses the man of God, his sons were named of the tribe of Levi.
10999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The sons of Moses were, Gershom, and Eliezer.
11000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Of the sons of Gershom, Shebuel was the chief.
11001                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Eliezer were, Rehabiah the chief. And Eliezer had none other sons; but the sons of Rehabiah were very many.
11002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of the sons of Izhar; Shelomith the chief.
11003                                                                                                                                                                                                                                                                                                                                                                                                                                        Of the sons of Hebron; Jeriah the first, Amariah the second, Jahaziel the third, and Jekameam the fourth.
11004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of the sons of Uzziel; Micah the first and Jesiah the second.
11005                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Merari; Mahli, and Mushi. The sons of Mahli; Eleazar, and Kish.
11006                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Eleazar died, and had no sons, but daughters: and their brethren the sons of Kish took them.
11007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Mushi; Mahli, and Eder, and Jeremoth, three.
11008                                                                                                                                                                                                                                                                                        These were the sons of Levi after the house of their fathers; even the chief of the fathers, as they were counted by number of names by their polls, that did the work for the service of the house of the LORD, from the age of twenty years and upward.
11009                                                                                                                                                                                                                                                                                                                                                                                                                               For David said, The LORD God of Israel hath given rest unto his people, that they may dwell in Jerusalem for ever:
11010                                                                                                                                                                                                                                                                                                                                                                                                                               And also unto the Levites; they shall no more carry the tabernacle, nor any vessels of it for the service thereof.
11011                                                                                                                                                                                                                                                                                                                                                                                                                                                        For by the last words of David the Levites were numbered from twenty years old and above:
11012                                                                                                                                                                                                                                                                                                                    Because their office was to wait on the sons of Aaron for the service of the house of the LORD, in the courts, and in the chambers, and in the purifying of all holy things, and the work of the service of the house of God;
11013                                                                                                                                                                                                                                                                                                                                     Both for the shewbread, and for the fine flour for meat offering, and for the unleavened cakes, and for that which is baked in the pan, and for that which is fried, and for all manner of measure and size;
11014                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And to stand every morning to thank and praise the LORD, and likewise at even:
11015                                                                                                                                                                                                                                                                                                                                                    And to offer all burnt sacrifices unto the LORD in the sabbaths, in the new moons, and on the set feasts, by number, according to the order commanded unto them, continually before the LORD:
11016                                                                                                                                                                                                                                                                                                                                       And that they should keep the charge of the tabernacle of the congregation, and the charge of the holy place, and the charge of the sons of Aaron their brethren, in the service of the house of the LORD.
11017                                                                                                                                                                                                                                                                                                                                                                                                                                     Now these are the divisions of the sons of Aaron. The sons of Aaron; Nadab, and Abihu, Eleazar, and Ithamar.
11018                                                                                                                                                                                                                                                                                                                                                                                                                   But Nadab and Abihu died before their father, and had no children: therefore Eleazar and Ithamar executed the priest's office.
11019                                                                                                                                                                                                                                                                                                                                                                                                And David distributed them, both Zadok of the sons of Eleazar, and Ahimelech of the sons of Ithamar, according to their offices in their service.
11020                                                                                                                                                                                                                                                           And there were more chief men found of the sons of Eleazar than of the sons of Ithamar, and thus were they divided. Among the sons of Eleazar there were sixteen chief men of the house of their fathers, and eight among the sons of Ithamar according to the house of their fathers.
11021                                                                                                                                                                                                                                                                                                                                                            Thus were they divided by lot, one sort with another; for the governors of the sanctuary, and governors of the house of God, were of the sons of Eleazar, and of the sons of Ithamar.
11022                                                                                                                                                                                                                              And Shemaiah the son of Nethaneel the scribe, one of the Levites, wrote them before the king, and the princes, and Zadok the priest, and Ahimelech the son of Abiathar, and before the chief of the fathers of the priests and Levites: one principal household being taken for Eleazar, and one taken for Ithamar.
11023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now the first lot came forth to Jehoiarib, the second to Jedaiah,
11024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The third to Harim, the fourth to Seorim,
11025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The fifth to Malchijah, the sixth to Mijamin,
11026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The seventh to Hakkoz, the eighth to Abijah,
11027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The ninth to Jeshuah, the tenth to Shecaniah,
11028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The eleventh to Eliashib, the twelfth to Jakim,
11029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The thirteenth to Huppah, the fourteenth to Jeshebeab,
11030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The fifteenth to Bilgah, the sixteenth to Immer,
11031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The seventeenth to Hezir, the eighteenth to Aphses,
11032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The nineteenth to Pethahiah, the twentieth to Jehezekel,
11033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The one and twentieth to Jachin, the two and twentieth to Gamul,
11034                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The three and twentieth to Delaiah, the four and twentieth to Maaziah.
11035                                                                                                                                                                                                                                                                                                                                                          These were the orderings of them in their service to come into the house of the LORD, according to their manner, under Aaron their father, as the LORD God of Israel had commanded him.
11036                                                                                                                                                                                                                                                                                                                                                                                                                                    And the rest of the sons of Levi were these: Of the sons of Amram; Shubael: of the sons of Shubael; Jehdeiah.
11037                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Concerning Rehabiah: of the sons of Rehabiah, the first was Isshiah.
11038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Of the Izharites; Shelomoth: of the sons of Shelomoth; Jahath.
11039                                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Hebron; Jeriah the first, Amariah the second, Jahaziel the third, Jekameam the fourth.
11040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of the sons of Uzziel; Michah: of the sons of Michah; Shamir.
11041                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The brother of Michah was Isshiah: of the sons of Isshiah; Zechariah.
11042                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The sons of Merari were Mahli and Mushi: the sons of Jaaziah; Beno.
11043                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sons of Merari by Jaaziah; Beno, and Shoham, and Zaccur, and Ibri.
11044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Of Mahli came Eleazar, who had no sons.
11045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Concerning Kish: the son of Kish was Jerahmeel.
11046                                                                                                                                                                                                                                                                                                                                                                                                                      The sons also of Mushi; Mahli, and Eder, and Jerimoth. These were the sons of the Levites after the house of their fathers.
11047                                                                                                                                                                                                                                                                                     These likewise cast lots over against their brethren the sons of Aaron in the presence of David the king, and Zadok, and Ahimelech, and the chief of the fathers of the priests and Levites, even the principal fathers over against their younger brethren.
11048                                                                                                                                                                                                                                                                                       Moreover David and the captains of the host separated to the service of the sons of Asaph, and of Heman, and of Jeduthun, who should prophesy with harps, with psalteries, and with cymbals: and the number of the workmen according to their service was:
11049                                                                                                                                                                                                                                                                                                                                                                          Of the sons of Asaph; Zaccur, and Joseph, and Nethaniah, and Asarelah, the sons of Asaph under the hands of Asaph, which prophesied according to the order of the king.
11050                                                                                                                                                                                                                                                                                                                                Of Jeduthun: the sons of Jeduthun; Gedaliah, and Zeri, and Jeshaiah, Hashabiah, and Mattithiah, six, under the hands of their father Jeduthun, who prophesied with a harp, to give thanks and to praise the LORD.
11051                                                                                                                                                                                                                                                                                                                                                            Of Heman: the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel, and Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, and Romamtiezer, Joshbekashah, Mallothi, Hothir, and Mahazioth:
11052                                                                                                                                                                                                                                                                                                                                                                                              All these were the sons of Heman the king's seer in the words of God, to lift up the horn. And God gave to Heman fourteen sons and three daughters.
11053                                                                                                                                                                                                                                                                                                                         All these were under the hands of their father for song in the house of the LORD, with cymbals, psalteries, and harps, for the service of the house of God, according to the king's order to Asaph, Jeduthun, and Heman.
11054                                                                                                                                                                                                                                                                                                                                                                                       So the number of them, with their brethren that were instructed in the songs of the LORD, even all that were cunning, was two hundred fourscore and eight.
11055                                                                                                                                                                                                                                                                                                                                                                                                                                               And they cast lots, ward against ward, as well the small as the great, the teacher as the scholar.
11056                                                                                                                                                                                                                                                                                                                                                                                                                            Now the first lot came forth for Asaph to Joseph: the second to Gedaliah, who with his brethren and sons were twelve:
11057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The third to Zaccur, he, his sons, and his brethren, were twelve:
11058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The fourth to Izri, he, his sons, and his brethren, were twelve:
11059                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The fifth to Nethaniah, he, his sons, and his brethren, were twelve:
11060                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sixth to Bukkiah, he, his sons, and his brethren, were twelve:
11061                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The seventh to Jesharelah, he, his sons, and his brethren, were twelve:
11062                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The eighth to Jeshaiah, he, his sons, and his brethren, were twelve:
11063                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The ninth to Mattaniah, he, his sons, and his brethren, were twelve:
11064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The tenth to Shimei, he, his sons, and his brethren, were twelve:
11065                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The eleventh to Azareel, he, his sons, and his brethren, were twelve:
11066                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The twelfth to Hashabiah, he, his sons, and his brethren, were twelve:
11067                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The thirteenth to Shubael, he, his sons, and his brethren, were twelve:
11068                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The fourteenth to Mattithiah, he, his sons, and his brethren, were twelve:
11069                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The fifteenth to Jeremoth, he, his sons, and his brethren, were twelve:
11070                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sixteenth to Hananiah, he, his sons, and his brethren, were twelve:
11071                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The seventeenth to Joshbekashah, he, his sons, and his brethren, were twelve:
11072                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The eighteenth to Hanani, he, his sons, and his brethren, were twelve:
11073                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The nineteenth to Mallothi, he, his sons, and his brethren, were twelve:
11074                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The twentieth to Eliathah, he, his sons, and his brethren, were twelve:
11075                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The one and twentieth to Hothir, he, his sons, and his brethren, were twelve:
11076                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The two and twentieth to Giddalti, he, his sons, and his brethren, were twelve:
11077                                                                                                                                                                                                                                                                                                                                                                                                                                                               The three and twentieth to Mahazioth, he, his sons, and his brethren, were twelve:
11078                                                                                                                                                                                                                                                                                                                                                                                                                                                              The four and twentieth to Romamtiezer, he, his sons, and his brethren, were twelve.
11079                                                                                                                                                                                                                                                                                                                                                                                                                                  Concerning the divisions of the porters: Of the Korhites was Meshelemiah the son of Kore, of the sons of Asaph.
11080                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Meshelemiah were, Zechariah the firstborn, Jediael the second, Zebadiah the third, Jathniel the fourth,
11081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Elam the fifth, Jehohanan the sixth, Elioenai the seventh.
11082                                                                                                                                                                                                                                                                                                                                                                                                 Moreover the sons of Obededom were, Shemaiah the firstborn, Jehozabad the second, Joah the third, and Sacar the fourth, and Nethaneel the fifth.
11083                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ammiel the sixth, Issachar the seventh, Peulthai the eighth: for God blessed him.
11084                                                                                                                                                                                                                                                                                                                                                                                                                   Also unto Shemaiah his son were sons born, that ruled throughout the house of their father: for they were mighty men of valor.
11085                                                                                                                                                                                                                                                                                                                                                                                                                               The sons of Shemaiah; Othni, and Rephael, and Obed, Elzabad, whose brethren were strong men, Elihu, and Semachiah.
11086                                                                                                                                                                                                                                                                                                                                                                                           All these of the sons of Obededom: they and their sons and their brethren, able men for strength for the service, were threescore and two of Obededom.
11087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Meshelemiah had sons and brethren, strong men, eighteen.
11088                                                                                                                                                                                                                                                                                                                                                                                                      Also Hosah, of the children of Merari, had sons; Simri the chief, (for though he was not the firstborn, yet his father made him the chief;)
11089                                                                                                                                                                                                                                                                                                                                                                                                                                  Hilkiah the second, Tebaliah the third, Zechariah the fourth: all the sons and brethren of Hosah were thirteen.
11090                                                                                                                                                                                                                                                                                                                                                                                                 Among these were the divisions of the porters, even among the chief men, having wards one against another, to minister in the house of the LORD.
11091                                                                                                                                                                                                                                                                                                                                                                                                                                     And they cast lots, as well the small as the great, according to the house of their fathers, for every gate.
11092                                                                                                                                                                                                                                                                                                                                                                                                            And the lot eastward fell to Shelemiah. Then for Zechariah his son, a wise counselor, they cast lots; and his lot came out northward.
11093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To Obededom southward; and to his sons the house of Asuppim.
11094                                                                                                                                                                                                                                                                                                                                                                                                                 To Shuppim and Hosah the lot came forth westward, with the gate Shallecheth, by the causeway of the going up, ward against ward.
11095                                                                                                                                                                                                                                                                                                                                                                                                                                           Eastward were six Levites, northward four a day, southward four a day, and toward Asuppim two and two.
11096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     At Parbar westward, four at the causeway, and two at Parbar.
11097                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the divisions of the porters among the sons of Kore, and among the sons of Merari.
11098                                                                                                                                                                                                                                                                                                                                                                                                                           And of the Levites, Ahijah was over the treasures of the house of God, and over the treasures of the dedicated things.
11099                                                                                                                                                                                                                                                                                                                                                                                                                 As concerning the sons of Laadan; the sons of the Gershonite Laadan, chief fathers, even of Laadan the Gershonite, were Jehieli.
11100                                                                                                                                                                                                                                                                                                                                                                                                                                       The sons of Jehieli; Zetham, and Joel his brother, which were over the treasures of the house of the LORD.
11101                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of the Amramites, and the Izharites, the Hebronites, and the Uzzielites:
11102                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Shebuel the son of Gershom, the son of Moses, was ruler of the treasures.
11103                                                                                                                                                                                                                                                                                                                                                                                                               And his brethren by Eliezer; Rehabiah his son, and Jeshaiah his son, and Joram his son, and Zichri his son, and Shelomith his son.
11104                                                                                                                                                                                                                                                                                                                        Which Shelomith and his brethren were over all the treasures of the dedicated things, which David the king, and the chief fathers, the captains over thousands and hundreds, and the captains of the host, had dedicated.
11105                                                                                                                                                                                                                                                                                                                                                                                                                                                            Out of the spoils won in battles did they dedicate to maintain the house of the LORD.
11106                                                                                                                                                                                                                                                                                                                    And all that Samuel the seer, and Saul the son of Kish, and Abner the son of Ner, and Joab the son of Zeruiah, had dedicated; and whosoever had dedicated any thing, it was under the hand of Shelomith, and of his brethren.
11107                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the Izharites, Chenaniah and his sons were for the outward business over Israel, for officers and judges.
11108                                                                                                                                                                                                                                                                                                                  And of the Hebronites, Hashabiah and his brethren, men of valor, a thousand and seven hundred, were officers among them of Israel on this side Jordan westward in all the business of the LORD, and in the service of the king.
11109                                                                                                                                                                                                                                                                                     Among the Hebronites was Jerijah the chief, even among the Hebronites, according to the generations of his fathers. In the fortieth year of the reign of David they were sought for, and there were found among them mighty men of valor at Jazer of Gilead.
11110                                                                                                                                                                                                                                                                                                    And his brethren, men of valor, were two thousand and seven hundred chief fathers, whom king David made rulers over the Reubenites, the Gadites, and the half tribe of Manasseh, for every matter pertaining to God, and affairs of the king.
11111                                                                                                                                                                                                                           Now the children of Israel after their number, to wit, the chief fathers and captains of thousands and hundreds, and their officers that served the king in any matter of the courses, which came in and went out month by month throughout all the months of the year, of every course were twenty and four thousand.
11112                                                                                                                                                                                                                                                                                                                                                                                                                     Over the first course for the first month was Jashobeam the son of Zabdiel: and in his course were twenty and four thousand.
11113                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of the children of Perez was the chief of all the captains of the host for the first month.
11114                                                                                                                                                                                                                                                                                                                                                                                And over the course of the second month was Dodai an Ahohite, and of his course was Mikloth also the ruler: in his course likewise were twenty and four thousand.
11115                                                                                                                                                                                                                                                                                                                                                                                              The third captain of the host for the third month was Benaiah the son of Jehoiada, a chief priest: and in his course were twenty and four thousand.
11116                                                                                                                                                                                                                                                                                                                                                                                                                            This is that Benaiah, who was mighty among the thirty, and above the thirty: and in his course was Ammizabad his son.
11117                                                                                                                                                                                                                                                                                                                                                                                         The fourth captain for the fourth month was Asahel the brother of Joab, and Zebadiah his son after him: and in his course were twenty and four thousand.
11118                                                                                                                                                                                                                                                                                                                                                                                                                                The fifth captain for the fifth month was Shamhuth the Izrahite: and in his course were twenty and four thousand.
11119                                                                                                                                                                                                                                                                                                                                                                                                                    The sixth captain for the sixth month was Ira the son of Ikkesh the Tekoite: and in his course were twenty and four thousand.
11120                                                                                                                                                                                                                                                                                                                                                                                                   The seventh captain for the seventh month was Helez the Pelonite, of the children of Ephraim: and in his course were twenty and four thousand.
11121                                                                                                                                                                                                                                                                                                                                                                                                           The eighth captain for the eighth month was Sibbecai the Hushathite, of the Zarhites: and in his course were twenty and four thousand.
11122                                                                                                                                                                                                                                                                                                                                                                                                            The ninth captain for the ninth month was Abiezer the Anetothite, of the Benjamites: and in his course were twenty and four thousand.
11123                                                                                                                                                                                                                                                                                                                                                                                                            The tenth captain for the tenth month was Maharai the Netophathite, of the Zarhites: and in his course were twenty and four thousand.
11124                                                                                                                                                                                                                                                                                                                                                                                            The eleventh captain for the eleventh month was Benaiah the Pirathonite, of the children of Ephraim: and in his course were twenty and four thousand.
11125                                                                                                                                                                                                                                                                                                                                                                                                              The twelfth captain for the twelfth month was Heldai the Netophathite, of Othniel: and in his course were twenty and four thousand.
11126                                                                                                                                                                                                                                                                                                                                                                                              Furthermore over the tribes of Israel: the ruler of the Reubenites was Eliezer the son of Zichri: of the Simeonites, Shephatiah the son of Maachah:
11127                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of the Levites, Hashabiah the son of Kemuel: of the Aaronites, Zadok:
11128                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of Judah, Elihu, one of the brethren of David: of Issachar, Omri the son of Michael:
11129                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Zebulun, Ishmaiah the son of Obadiah: of Naphtali, Jerimoth the son of Azriel:
11130                                                                                                                                                                                                                                                                                                                                                                                                                                   Of the children of Ephraim, Hoshea the son of Azaziah: of the half tribe of Manasseh, Joel the son of Pedaiah:
11131                                                                                                                                                                                                                                                                                                                                                                                                                                       Of the half tribe of Manasseh in Gilead, Iddo the son of Zechariah: of Benjamin, Jaasiel the son of Abner:
11132                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of Dan, Azareel the son of Jeroham. These were the princes of the tribes of Israel.
11133                                                                                                                                                                                                                                                                                                                                                                                      But David took not the number of them from twenty years old and under: because the LORD had said he would increase Israel like to the stars of the heavens.
11134                                                                                                                                                                                                                                                                                                                                                         Joab the son of Zeruiah began to number, but he finished not, because there fell wrath for it against Israel; neither was the number put in the account of the chronicles of king David.
11135                                                                                                                                                                                                                                                                                                                                                   And over the king's treasures was Azmaveth the son of Adiel: and over the storehouses in the fields, in the cities, and in the villages, and in the castles, was Jehonathan the son of Uzziah:
11136                                                                                                                                                                                                                                                                                                                                                                                                                                               And over them that did the work of the field for tillage of the ground was Ezri the son of Chelub:
11137                                                                                                                                                                                                                                                                                                                                                                                                                And over the vineyards was Shimei the Ramathite: over the increase of the vineyards for the wine cellars was Zabdi the Shiphmite:
11138                                                                                                                                                                                                                                                                                                                                                                                                   And over the olive trees and the sycamore trees that were in the low plains was Baalhanan the Gederite: and over the cellars of oil was Joash:
11139                                                                                                                                                                                                                                                                                                                                                                                                       And over the herds that fed in Sharon was Shitrai the Sharonite: and over the herds that were in the valleys was Shaphat the son of Adlai:
11140                                                                                                                                                                                                                                                                                                                                                                                                                                                   Over the camels also was Obil the Ishmaelite: and over the asses was Jehdeiah the Meronothite:
11141                                                                                                                                                                                                                                                                                                                                                                                                                                   And over the flocks was Jaziz the Hagerite. All these were the rulers of the substance which was king David's.
11142                                                                                                                                                                                                                                                                                                                                                                                                                  Also Jonathan David's uncle was a counselor, a wise man, and a scribe: and Jehiel the son of Hachmoni was with the king's sons:
11143                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ahithophel was the king's counselor: and Hushai the Archite was the king's companion:
11144                                                                                                                                                                                                                                                                                                                                                                                                                                 And after Ahithophel was Jehoiada the son of Benaiah, and Abiathar: and the general of the king's army was Joab.
11145                                                                                                                                           And David assembled all the princes of Israel, the princes of the tribes, and the captains of the companies that ministered to the king by course, and the captains over the thousands, and captains over the hundreds, and the stewards over all the substance and possession of the king, and of his sons, with the officers, and with the mighty men, and with all the valiant men, unto Jerusalem.
11146                                                                                                                                                                                                                                                                              Then David the king stood up upon his feet, and said, Hear me, my brethren, and my people: As for me, I had in mine heart to build an house of rest for the ark of the covenant of the LORD, and for the footstool of our God, and had made ready for the building:
11147                                                                                                                                                                                                                                                                                                                                                                                                                       But God said unto me, Thou shalt not build an house for my name, because thou hast been a man of war, and hast shed blood.
11148                                                                                                                                                                                                                                                             Howbeit the LORD God of Israel chose me before all the house of my father to be king over Israel for ever: for he hath chosen Judah to be the ruler; and of the house of Judah, the house of my father; and among the sons of my father he liked me to make me king over all Israel:
11149                                                                                                                                                                                                                                                                                                                                                                                         And of all my sons, (for the LORD hath given me many sons,) he hath chosen Solomon my son to sit upon the throne of the kingdom of the LORD over Israel.
11150                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto me, Solomon thy son, he shall build my house and my courts: for I have chosen him to be my son, and I will be his father.
11151                                                                                                                                                                                                                                                                                                                                                                                                                        Moreover I will establish his kingdom for ever, if he be constant to do my commandments and my judgments, as at this day.
11152                                                                                                                                                                                                                                                                    Now therefore in the sight of all Israel the congregation of the LORD, and in the audience of our God, keep and seek for all the commandments of the LORD your God: that ye may possess this good land, and leave it for an inheritance for your children after you for ever.
11153                                                                                                                                                                                                                           And thou, Solomon my son, know thou the God of thy father, and serve him with a perfect heart and with a willing mind: for the LORD searcheth all hearts, and understandeth all the imaginations of the thoughts: if thou seek him, he will be found of thee; but if thou forsake him, he will cast thee off for ever.
11154                                                                                                                                                                                                                                                                                                                                                                                                                                          Take heed now; for the LORD hath chosen thee to build an house for the sanctuary: be strong, and do it.
11155                                                                                                                                                                                                                                                                                                                  Then David gave to Solomon his son the pattern of the porch, and of the houses thereof, and of the treasuries thereof, and of the upper chambers thereof, and of the inner parlors thereof, and of the place of the mercy seat,
11156                                                                                                                                                                                                                                                                                                                             And the pattern of all that he had by the spirit, of the courts of the house of the LORD, and of all the chambers round about, of the treasuries of the house of God, and of the treasuries of the dedicated things:
11157                                                                                                                                                                                                                                                                                                                                                                  Also for the courses of the priests and the Levites, and for all the work of the service of the house of the LORD, and for all the vessels of service in the house of the LORD.
11158                                                                                                                                                                                                                                                                                                                                                   He gave of gold by weight for things of gold, for all instruments of all manner of service; silver also for all instruments of silver by weight, for all instruments of every kind of service:
11159                                                                                                                                                                                                                                                        Even the weight for the candlesticks of gold, and for their lamps of gold, by weight for every candlestick, and for the lamps thereof: and for the candlesticks of silver by weight, both for the candlestick, and also for the lamps thereof, according to the use of every candlestick.
11160                                                                                                                                                                                                                                                                                                                                                                                                                           And by weight he gave gold for the tables of shewbread, for every table; and likewise silver for the tables of silver:
11161                                                                                                                                                                                                                                                                                                                                                       Also pure gold for the fleshhooks, and the bowls, and the cups: and for the golden basins he gave gold by weight for every basin; and likewise silver by weight for every basin of silver:
11162                                                                                                                                                                                                                                                                                                                                                      And for the altar of incense refined gold by weight; and gold for the pattern of the chariot of the cherubim, that spread out their wings, and covered the ark of the covenant of the LORD.
11163                                                                                                                                                                                                                                                                                                                                                                                                                            All this, said David, the LORD made me understand in writing by his hand upon me, even all the works of this pattern.
11164                                                                                                                                                                                                                                                               And David said to Solomon his son, Be strong and of good courage, and do it: fear not, nor be dismayed: for the LORD God, even my God, will be with thee; he will not fail thee, nor forsake thee, until thou hast finished all the work for the service of the house of the LORD.
11165                                                                                                                                                                                                                          And, behold, the courses of the priests and the Levites, even they shall be with thee for all the service of the house of God: and there shall be with thee for all manner of workmanship every willing skillful man, for any manner of service: also the princes and all the people will be wholly at thy commandment.
11166                                                                                                                                                                                                                                                                                                                                      Furthermore David the king said unto all the congregation, Solomon my son, whom alone God hath chosen, is yet young and tender, and the work is great: for the palace is not for man, but for the LORD God.
11167                                                                                                                                                           Now I have prepared with all my might for the house of my God the gold for things to be made of gold, and the silver for things of silver, and the brass for things of brass, the iron for things of iron, and wood for things of wood; onyx stones, and stones to be set, glistering stones, and of divers colors, and all manner of precious stones, and marble stones in abundance.
11168                                                                                                                                                                                                                                                                                                                     Moreover, because I have set my affection to the house of my God, I have of mine own proper good, of gold and silver, which I have given to the house of my God, over and above all that I have prepared for the holy house.
11169                                                                                                                                                                                                                                                                                                                                                                                              Even three thousand talents of gold, of the gold of Ophir, and seven thousand talents of refined silver, to overlay the walls of the houses withal:
11170                                                                                                                                                                                                                                                                                                                                    The gold for things of gold, and the silver for things of silver, and for all manner of work to be made by the hands of artificers. And who then is willing to consecrate his service this day unto the LORD?
11171                                                                                                                                                                                                                                                                                                                                                                          Then the chief of the fathers and princes of the tribes of Israel and the captains of thousands and of hundreds, with the rulers of the king's work, offered willingly,
11172                                                                                                                                                                                                                                                                                                                         And gave for the service of the house of God of gold five thousand talents and ten thousand drams, and of silver ten thousand talents, and of brass eighteen thousand talents, and one hundred thousand talents of iron.
11173                                                                                                                                                                                                                                                                                                                                                                                                          And they with whom precious stones were found gave them to the treasure of the house of the LORD, by the hand of Jehiel the Gershonite.
11174                                                                                                                                                                                                                                                                                                                                                                       Then the people rejoiced, for that they offered willingly, because with perfect heart they offered willingly to the LORD: and David the king also rejoiced with great joy.
11175                                                                                                                                                                                                                                                                                                                                                                                                 Wherefore David blessed the LORD before all the congregation: and David said, Blessed be thou, LORD God of Israel our father, for ever and ever.
11176                                                                                                                                                                                                                                                                                                                   Thine, O LORD is the greatness, and the power, and the glory, and the victory, and the majesty: for all that is in the heaven and in the earth is thine; thine is the kingdom, O LORD, and thou art exalted as head above all.
11177                                                                                                                                                                                                                                                                                                                                                                      Both riches and honor come of thee, and thou reignest over all; and in thine hand is power and might; and in thine hand it is to make great, and to give strength unto all.
11178                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now therefore, our God, we thank thee, and praise thy glorious name.
11179                                                                                                                                                                                                                                                                                                                                                                             But who am I, and what is my people, that we should be able to offer so willingly after this sort? for all things come of thee, and of thine own have we given thee.
11180                                                                                                                                                                                                                                                                                                                                                                                                     For we are strangers before thee, and sojourners, as were all our fathers: our days on the earth are as a shadow, and there is none abiding.
11181                                                                                                                                                                                                                                                                                                                                                                                                      O LORD our God, all this store that we have prepared to build thee an house for thine holy name cometh of thine hand, and is all thine own.
11182                                                                                                                                                                                                                                                                         I know also, my God, that thou triest the heart, and hast pleasure in uprightness. As for me, in the uprightness of mine heart I have willingly offered all these things: and now have I seen with joy thy people, which are present here, to offer willingly unto thee.
11183                                                                                                                                                                                                                                                                                                                                                                   O LORD God of Abraham, Isaac, and of Israel, our fathers, keep this for ever in the imagination of the thoughts of the heart of thy people, and prepare their heart unto thee:
11184                                                                                                                                                                                                                                                                                                                                             And give unto Solomon my son a perfect heart, to keep thy commandments, thy testimonies, and thy statutes, and to do all these things, and to build the palace, for the which I have made provision.
11185                                                                                                                                                                                                                                                                                                                                          And David said to all the congregation, Now bless the LORD your God. And all the congregation blessed the LORD God of their fathers, and bowed down their heads, and worshipped the LORD, and the king.
11186                                                                                                                                                                                                                                                                                  And they sacrificed sacrifices unto the LORD, and offered burnt offerings unto the LORD, on the morrow after that day, even a thousand bullocks, a thousand rams, and a thousand lambs, with their drink offerings, and sacrifices in abundance for all Israel:
11187                                                                                                                                                                                                                                                                                                                             And did eat and drink before the LORD on that day with great gladness. And they made Solomon the son of David king the second time, and anointed him unto the LORD to be the chief governor, and Zadok to be priest.
11188                                                                                                                                                                                                                                                                                                                                                                                                                        Then Solomon sat on the throne of the LORD as king instead of David his father, and prospered; and all Israel obeyed him.
11189                                                                                                                                                                                                                                                                                                                                                                                                                    And all the princes, and the mighty men, and all the sons likewise of king David, submitted themselves unto Solomon the king.
11190                                                                                                                                                                                                                                                                                                                                                                                And the LORD magnified Solomon exceedingly in the sight of all Israel, and bestowed upon him such royal majesty as had not been on any king before him in Israel.
11191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thus David the son of Jesse reigned over all Israel.
11192                                                                                                                                                                                                                                                                                                                                                                                                  And the time that he reigned over Israel was forty years; seven years reigned he in Hebron, and thirty and three years reigned he in Jerusalem.
11193                                                                                                                                                                                                                                                                                                                                                                                                                                        And he died in a good old age, full of days, riches, and honor: and Solomon his son reigned in his stead.
11194                                                                                                                                                                                                                                                                                                                                                                 Now the acts of David the king, first and last, behold, they are written in the book of Samuel the seer, and in the book of Nathan the prophet, and in the book of Gad the seer,
11195                                                                                                                                                                                                                                                                                                                                                                                                                 With all his reign and his might, and the times that went over him, and over Israel, and over all the kingdoms of the countries.
11196                                                                                                                                                                                                                                                                                                                                                                                                                  And Solomon the son of David was strengthened in his kingdom, and the LORD his God was with him, and magnified him exceedingly.
11197                                                                                                                                                                                                                                                                                                                                                                              Then Solomon spake unto all Israel, to the captains of thousands and of hundreds, and to the judges, and to every governor in all Israel, the chief of the fathers.
11198                                                                                                                                                                                                                                                                                                                               So Solomon, and all the congregation with him, went to the high place that was at Gibeon; for there was the tabernacle of the congregation of God, which Moses the servant of the LORD had made in the wilderness.
11199                                                                                                                                                                                                                                                                                                                                                                                          But the ark of God had David brought up from Kirjathjearim to the place which David had prepared for it: for he had pitched a tent for it at Jerusalem.
11200                                                                                                                                                                                                                                                                                                                                                                    Moreover the brazen altar, that Bezaleel the son of Uri, the son of Hur, had made, he put before the tabernacle of the LORD: and Solomon and the congregation sought unto it.
11201                                                                                                                                                                                                                                                                                                                                                                                And Solomon went up thither to the brazen altar before the LORD, which was at the tabernacle of the congregation, and offered a thousand burnt offerings upon it.
11202                                                                                                                                                                                                                                                                                                                                                                                                                                                        In that night did God appear unto Solomon, and said unto him, Ask what I shall give thee.
11203                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon said unto God, Thou hast showed great mercy unto David my father, and hast made me to reign in his stead.
11204                                                                                                                                                                                                                                                                                                                                                                                          Now, O LORD God, let thy promise unto David my father be established: for thou hast made me king over a people like the dust of the earth in multitude.
11205                                                                                                                                                                                                                                                                                                                                                                                                         Give me now wisdom and knowledge, that I may go out and come in before this people: for who can judge this thy people, that is so great?
11206                                                                                                                                                                                                                                                 And God said to Solomon, Because this was in thine heart, and thou hast not asked riches, wealth, or honor, nor the life of thine enemies, neither yet hast asked long life; but hast asked wisdom and knowledge for thyself, that thou mayest judge my people, over whom I have made thee king:
11207                                                                                                                                                                                                                                                                                                                                  Wisdom and knowledge is granted unto thee; and I will give thee riches, and wealth, and honor, such as none of the kings have had that have been before thee, neither shall there any after thee have the like.
11208                                                                                                                                                                                                                                                                                                                                                                                   Then Solomon came from his journey to the high place that was at Gibeon to Jerusalem, from before the tabernacle of the congregation, and reigned over Israel.
11209                                                                                                                                                                                                                                                                                                                                                And Solomon gathered chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, which he placed in the chariot cities, and with the king at Jerusalem.
11210                                                                                                                                                                                                                                                                                                                                                                                         And the king made silver and gold at Jerusalem as plenteous as stones, and cedar trees made he as the sycamore trees that are in the vale for abundance.
11211                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price.
11212                                                                                                                                                                                                                                                                                            And they fetched up, and brought forth out of Egypt a chariot for six hundred shekels of silver, and an horse for an hundred and fifty: and so brought they out horses for all the kings of the Hittites, and for the kings of Syria, by their means.
11213                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Solomon determined to build an house for the name of the LORD, and an house for his kingdom.
11214                                                                                                                                                                                                                                                                                                                                                                         And Solomon told out threescore and ten thousand men to bear burdens, and fourscore thousand to hew in the mountain, and three thousand and six hundred to oversee them.
11215                                                                                                                                                                                                                                                                                                                                                             And Solomon sent to Huram the king of Tyre, saying, As thou didst deal with David my father, and didst send him cedars to build him an house to dwell therein, even so deal with me.
11216                                                                                                                                                                                                            Behold, I build an house to the name of the LORD my God, to dedicate it to him, and to burn before him sweet incense, and for the continual shewbread, and for the burnt offerings morning and evening, on the sabbaths, and on the new moons, and on the solemn feasts of the LORD our God. This is an ordinance for ever to Israel.
11217                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the house which I build is great: for great is our God above all gods.
11218                                                                                                                                                                                                                                                                                                                                                      But who is able to build him an house, seeing the heaven and heaven of heavens cannot contain him? who am I then, that I should build him an house, save only to burn sacrifice before him?
11219                                                                                                                                                                                                                                                                              Send me now therefore a man cunning to work in gold, and in silver, and in brass, and in iron, and in purple, and crimson, and blue, and that can skill to grave with the cunning men that are with me in Judah and in Jerusalem, whom David my father did provide.
11220                                                                                                                                                                                                                                                                                                                                                      Send me also cedar trees, fir trees, and algum trees, out of Lebanon: for I know that thy servants can skill to cut timber in Lebanon; and, behold, my servants shall be with thy servants,
11221                                                                                                                                                                                                                                                                                                                                                                                                                                        Even to prepare me timber in abundance: for the house which I am about to build shall be wonderful great.
11222                                                                                                                                                                                                                                                                                                                     And, behold, I will give to thy servants, the hewers that cut timber, twenty thousand measures of beaten wheat, and twenty thousand measures of barley, and twenty thousand baths of wine, and twenty thousand baths of oil.
11223                                                                                                                                                                                                                                                                                                                                                                                             Then Huram the king of Tyre answered in writing, which he sent to Solomon, Because the LORD hath loved his people, he hath made thee king over them.
11224                                                                                                                                                                                                                                                                                                   Huram said moreover, Blessed be the LORD God of Israel, that made heaven and earth, who hath given to David the king a wise son, endued with prudence and understanding, that might build an house for the LORD, and an house for his kingdom.
11225                                                                                                                                                                                                                                                                                                                                                                                                                                                              And now I have sent a cunning man, endued with understanding, of Huram my father's,
11226                                                                                                                                               The son of a woman of the daughters of Dan, and his father was a man of Tyre, skillful to work in gold, and in silver, in brass, in iron, in stone, and in timber, in purple, in blue, and in fine linen, and in crimson; also to grave any manner of graving, and to find out every device which shall be put to him, with thy cunning men, and with the cunning men of my lord David thy father.
11227                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore the wheat, and the barley, the oil, and the wine, which my lord hath spoken of, let him send unto his servants:
11228                                                                                                                                                                                                                                                                                                                                                                                And we will cut wood out of Lebanon, as much as thou shalt need: and we will bring it to thee in floats by sea to Joppa; and thou shalt carry it up to Jerusalem.
11229                                                                                                                                                                                                                                                                                                                  And Solomon numbered all the strangers that were in the land of Israel, after the numbering wherewith David his father had numbered them; and they were found an hundred and fifty thousand and three thousand and six hundred.
11230                                                                                                                                                                                                                                                                                                                                             And he set threescore and ten thousand of them to be bearers of burdens, and fourscore thousand to be hewers in the mountain, and three thousand and six hundred overseers to set the people a work.
11231                                                                                                                                                                                                                                                                                                                                 Then Solomon began to build the house of the LORD at Jerusalem in mount Moriah, where the Lord appeared unto David his father, in the place that David had prepared in the threshingfloor of Ornan the Jebusite.
11232                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he began to build in the second day of the second month, in the fourth year of his reign.
11233                                                                                                                                                                                                                                                                                                                                                 Now these are the things wherein Solomon was instructed for the building of the house of God. The length by cubits after the first measure was threescore cubits, and the breadth twenty cubits.
11234                                                                                                                                                                                                                                                                                                                                 And the porch that was in the front of the house, the length of it was according to the breadth of the house, twenty cubits, and the height was an hundred and twenty: and he overlaid it within with pure gold.
11235                                                                                                                                                                                                                                                                                                                                                                                                                          And the greater house he cieled with fir tree, which he overlaid with fine gold, and set thereon palm trees and chains.
11236                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he garnished the house with precious stones for beauty: and the gold was gold of Parvaim.
11237                                                                                                                                                                                                                                                                                                                                                                                                     He overlaid also the house, the beams, the posts, and the walls thereof, and the doors thereof, with gold; and graved cherubim on the walls.
11238                                                                                                                                                                                                                                                                                                                        And he made the most holy house, the length whereof was according to the breadth of the house, twenty cubits, and the breadth thereof twenty cubits: and he overlaid it with fine gold, amounting to six hundred talents.
11239                                                                                                                                                                                                                                                                                                                                                                                                                                             And the weight of the nails was fifty shekels of gold. And he overlaid the upper chambers with gold.
11240                                                                                                                                                                                                                                                                                                                                                                                                                                                      And in the most holy house he made two cherubim of image work, and overlaid them with gold.
11241                                                                                                                                                                                                                                                                                                                     And the wings of the cherubim were twenty cubits long: one wing of the one cherub was five cubits, reaching to the wall of the house: and the other wing was likewise five cubits, reaching to the wing of the other cherub.
11242                                                                                                                                                                                                                                                                                                                                                                           And one wing of the other cherub was five cubits, reaching to the wall of the house: and the other wing was five cubits also, joining to the wing of the other cherub.
11243                                                                                                                                                                                                                                                                                                                                                                                                                    The wings of these cherubim spread themselves forth twenty cubits: and they stood on their feet, and their faces were inward.
11244                                                                                                                                                                                                                                                                                                                                                                                                                                             And he made the vail of blue, and purple, and crimson, and fine linen, and wrought cherubim thereon.
11245                                                                                                                                                                                                                                                                                                                                                                                                  Also he made before the house two pillars of thirty and five cubits high, and the chapiter that was on the top of each of them was five cubits.
11246                                                                                                                                                                                                                                                                                                                                                                                                    And he made chains, as in the oracle, and put them on the heads of the pillars; and made an hundred pomegranates, and put them on the chains.
11247                                                                                                                                                                                                                                                                                                                                                   And he reared up the pillars before the temple, one on the right hand, and the other on the left; and called the name of that on the right hand Jachin, and the name of that on the left Boaz.
11248                                                                                                                                                                                                                                                                                                                                                                                                  Moreover he made an altar of brass, twenty cubits the length thereof, and twenty cubits the breadth thereof, and ten cubits the height thereof.
11249                                                                                                                                                                                                                                                                                                                                                                         Also he made a molten sea of ten cubits from brim to brim, round in compass, and five cubits the height thereof; and a line of thirty cubits did compass it round about.
11250                                                                                                                                                                                                                                                                                                                                                                         And under it was the similitude of oxen, which did compass it round about: ten in a cubit, compassing the sea round about. Two rows of oxen were cast, when it was cast.
11251                                                                                                                                                                                                                                                                                                It stood upon twelve oxen, three looking toward the north, and three looking toward the west, and three looking toward the south, and three looking toward the east: and the sea was set above upon them, and all their hinder parts were inward.
11252                                                                                                                                                                                                                                                                                                                                                                        And the thickness of it was an handbreadth, and the brim of it like the work of the brim of a cup, with flowers of lilies; and it received and held three thousand baths.
11253                                                                                                                                                                                                                                                                                                                              He made also ten lavers, and put five on the right hand, and five on the left, to wash in them: such things as they offered for the burnt offering they washed in them; but the sea was for the priests to wash in.
11254                                                                                                                                                                                                                                                                                                                                                                                                          And he made ten candlesticks of gold according to their form, and set them in the temple, five on the right hand, and five on the left.
11255                                                                                                                                                                                                                                                                                                                                                                                                     He made also ten tables, and placed them in the temple, five on the right side, and five on the left. And he made an hundred basins of gold.
11256                                                                                                                                                                                                                                                                                                                                                                                                           Furthermore he made the court of the priests, and the great court, and doors for the court, and overlaid the doors of them with brass.
11257                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he set the sea on the right side of the east end, over against the south.
11258                                                                                                                                                                                                                                                                                                                                                                                                 And Huram made the pots, and the shovels, and the basins. And Huram finished the work that he was to make for king Solomon for the house of God;
11259                                                                                                                                                                                                                                                                                                                                        To wit, the two pillars, and the pommels, and the chapiters which were on the top of the two pillars, and the two wreaths to cover the two pommels of the chapiters which were on the top of the pillars;
11260                                                                                                                                                                                                                                                                                                                                                                                And four hundred pomegranates on the two wreaths; two rows of pomegranates on each wreath, to cover the two pommels of the chapiters which were upon the pillars.
11261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He made also bases, and lavers made he upon the bases;
11262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               One sea, and twelve oxen under it.
11263                                                                                                                                                                                                                                                                                                                                                                              The pots also, and the shovels, and the fleshhooks, and all their instruments, did Huram his father make to king Solomon for the house of the LORD of bright brass.
11264                                                                                                                                                                                                                                                                                                                                                                                                                                                In the plain of Jordan did the king cast them, in the clay ground between Succoth and Zeredathah.
11265                                                                                                                                                                                                                                                                                                                                                                                                                                      Thus Solomon made all these vessels in great abundance: for the weight of the brass could not be found out.
11266                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon made all the vessels that were for the house of God, the golden altar also, and the tables whereon the shewbread was set;
11267                                                                                                                                                                                                                                                                                                                                                                                                                              Moreover the candlesticks with their lamps, that they should burn after the manner before the oracle, of pure gold;
11268                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the flowers, and the lamps, and the tongs, made he of gold, and that perfect gold;
11269                                                                                                                                                                                                                                                                                                                            And the snuffers, and the basins, and the spoons, and the censers, of pure gold: and the entry of the house, the inner doors thereof for the most holy place, and the doors of the house of the temple, were of gold.
11270                                                                                                                                                                                                                                                                                    Thus all the work that Solomon made for the house of the LORD was finished: and Solomon brought in all the things that David his father had dedicated; and the silver, and the gold, and all the instruments, put he among the treasures of the house of God.
11271                                                                                                                                                                                                                                                                                                       Then Solomon assembled the elders of Israel, and all the heads of the tribes, the chief of the fathers of the children of Israel, unto Jerusalem, to bring up the ark of the covenant of the LORD out of the city of David, which is Zion.
11272                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore all the men of Israel assembled themselves unto the king in the feast which was in the seventh month.
11273                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the elders of Israel came; and the Levites took up the ark.
11274                                                                                                                                                                                                                                                                                                                                                                       And they brought up the ark, and the tabernacle of the congregation, and all the holy vessels that were in the tabernacle, these did the priests and the Levites bring up.
11275                                                                                                                                                                                                                                                                                                                                                                Also king Solomon, and all the congregation of Israel that were assembled unto him before the ark, sacrificed sheep and oxen, which could not be told nor numbered for multitude.
11276                                                                                                                                                                                                                                                                                                                                                                       And the priests brought in the ark of the covenant of the LORD unto his place, to the oracle of the house, into the most holy place, even under the wings of the cherubim:
11277                                                                                                                                                                                                                                                                                                                                                                                                              For the cherubim spread forth their wings over the place of the ark, and the cherubim covered the ark and the staves thereof above.
11278                                                                                                                                                                                                                                                                                                                                                                    And they drew out the staves of the ark, that the ends of the staves were seen from the ark before the oracle; but they were not seen without. And there it is unto this day.
11279                                                                                                                                                                                                                                                                                                                                                                       There was nothing in the ark save the two tables which Moses put therein at Horeb, when the LORD made a covenant with the children of Israel, when they came out of Egypt.
11280                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when the priests were come out of the holy place: (for all the priests that were present were sanctified, and did not then wait by course:
11281                                                                                                                                                                                                                                        Also the Levites which were the singers, all of them of Asaph, of Heman, of Jeduthun, with their sons and their brethren, being arrayed in white linen, having cymbals and psalteries and harps, stood at the east end of the altar, and with them an hundred and twenty priests sounding with trumpets:)
11282                                                                                                                                                            It came even to pass, as the trumpeters and singers were as one, to make one sound to be heard in praising and thanking the LORD; and when they lifted up their voice with the trumpets and cymbals and instruments of music, and praised the LORD, saying, For he is good; for his mercy endureth for ever: that then the house was filled with a cloud, even the house of the LORD;
11283                                                                                                                                                                                                                                                                                                                                                                                                                   So that the priests could not stand to minister by reason of the cloud: for the glory of the LORD had filled the house of God.
11284                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said Solomon, The LORD hath said that he would dwell in the thick darkness.
11285                                                                                                                                                                                                                                                                                                                                                                                                                                                         But I have built an house of habitation for thee, and a place for thy dwelling for ever.
11286                                                                                                                                                                                                                                                                                                                                                                                                                            And the king turned his face, and blessed the whole congregation of Israel: and all the congregation of Israel stood.
11287                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Blessed be the LORD God of Israel, who hath with his hands fulfilled that which he spake with his mouth to my father David, saying,
11288                                                                                                                                                                                                                                                                                                             Since the day that I brought forth my people out of the land of Egypt I chose no city among all the tribes of Israel to build an house in, that my name might be there; neither chose I any man to be a ruler over my people Israel:
11289                                                                                                                                                                                                                                                                                                                                                                                                                                     But I have chosen Jerusalem, that my name might be there; and have chosen David to be over my people Israel.
11290                                                                                                                                                                                                                                                                                                                                                                                                                                             Now it was in the heart of David my father to build an house for the name of the LORD God of Israel.
11291                                                                                                                                                                                                                                                                                                                                                                                           But the LORD said to David my father, Forasmuch as it was in thine heart to build an house for my name, thou didst well in that it was in thine heart:
11292                                                                                                                                                                                                                                                                                                                                                                                                       Notwithstanding thou shalt not build the house; but thy son which shall come forth out of thy loins, he shall build the house for my name.
11293                                                                                                                                                                                                                                                                                                     The LORD therefore hath performed his word that he hath spoken: for I am risen up in the room of David my father, and am set on the throne of Israel, as the LORD promised, and have built the house for the name of the LORD God of Israel.
11294                                                                                                                                                                                                                                                                                                                                                                                                                                     And in it have I put the ark, wherein is the covenant of the LORD, that he made with the children of Israel.
11295                                                                                                                                                                                                                                                                                                                                                                                                                         And he stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands:
11296                                                                                                                                                                                                                                                       For Solomon had made a brazen scaffold of five cubits long, and five cubits broad, and three cubits high, and had set it in the midst of the court: and upon it he stood, and kneeled down upon his knees before all the congregation of Israel, and spread forth his hands toward heaven.
11297                                                                                                                                                                                                                                                                                                                                             And said, O LORD God of Israel, there is no God like thee in the heaven, nor in the earth; which keepest covenant, and showest mercy unto thy servants, that walk before thee with all their hearts:
11298                                                                                                                                                                                                                                                                                                                                                                   Thou which hast kept with thy servant David my father that which thou hast promised him; and spakest with thy mouth, and hast fulfilled it with thine hand, as it is this day.
11299                                                                                                                                                                                                                                            Now therefore, O LORD God of Israel, keep with thy servant David my father that which thou hast promised him, saying, There shall not fail thee a man in my sight to sit upon the throne of Israel; yet so that thy children take heed to their way to walk in my law, as thou hast walked before me.
11300                                                                                                                                                                                                                                                                                                                                                                                                                                         Now then, O LORD God of Israel, let thy word be verified, which thou hast spoken unto thy servant David.
11301                                                                                                                                                                                                                                                                                                                                                                                But will God in very deed dwell with men on the earth? behold, heaven and the heaven of heavens cannot contain thee; how much less this house which I have built!
11302                                                                                                                                                                                                                                                                                                                                                                       Have respect therefore to the prayer of thy servant, and to his supplication, O LORD my God, to hearken unto the cry and the prayer which thy servant prayeth before thee:
11303                                                                                                                                                                                                                                                                                                                                  That thine eyes may be open upon this house day and night, upon the place whereof thou hast said that thou wouldest put thy name there; to hearken unto the prayer which thy servant prayeth toward this place.
11304                                                                                                                                                                                                                                                                                                                                 Hearken therefore unto the supplications of thy servant, and of thy people Israel, which they shall make toward this place: hear thou from thy dwelling place, even from heaven; and when thou hearest, forgive.
11305                                                                                                                                                                                                                                                                                                                                                                                                           If a man sin against his neighbor, and an oath be laid upon him to make him swear, and the oath come before thine altar in this house;
11306                                                                                                                                                                                                                                                                                                                                   Then hear thou from heaven, and do, and judge thy servants, by requiting the wicked, by recompensing his way upon his own head; and by justifying the righteous, by giving him according to his righteousness.
11307                                                                                                                                                                                                                                                                                                                                           And if thy people Israel be put to the worse before the enemy, because they have sinned against thee; and shall return and confess thy name, and pray and make supplication before thee in this house;
11308                                                                                                                                                                                                                                                                                                                                                                                    Then hear thou from the heavens, and forgive the sin of thy people Israel, and bring them again unto the land which thou gavest to them and to their fathers.
11309                                                                                                                                                                                                                                                                                                                                         When the heaven is shut up, and there is no rain, because they have sinned against thee; yet if they pray toward this place, and confess thy name, and turn from their sin, when thou dost afflict them;
11310                                                                                                                                                                                                                                                                                             Then hear thou from heaven, and forgive the sin of thy servants, and of thy people Israel, when thou hast taught them the good way, wherein they should walk; and send rain upon thy land, which thou hast given unto thy people for an inheritance.
11311                                                                                                                                                                                                                                                                                                                   If there be dearth in the land, if there be pestilence, if there be blasting, or mildew, locusts, or caterpillars; if their enemies besiege them in the cities of their land; whatsoever sore or whatsoever sickness there be:
11312                                                                                                                                                                                                                                                                                                                                    Then what prayer or what supplication soever shall be made of any man, or of all thy people Israel, when every one shall know his own sore and his own grief, and shall spread forth his hands in this house:
11313                                                                                                                                                                                                                                                                                                                                          Then hear thou from heaven thy dwelling place, and forgive, and render unto every man according unto all his ways, whose heart thou knowest; (for thou only knowest the hearts of the children of men:)
11314                                                                                                                                                                                                                                                                                                                                                                                                                               That they may fear thee, to walk in thy ways, so long as they live in the land which thou gavest unto our fathers.
11315                                                                                                                                                                                                                                                                                                                              Moreover concerning the stranger, which is not of thy people Israel, but is come from a far country for thy great name's sake, and thy mighty hand, and thy stretched out arm; if they come and pray in this house;
11316                                                                                                                                                                                                                                                   Then hear thou from the heavens, even from thy dwelling place, and do according to all that the stranger calleth to thee for; that all people of the earth may know thy name, and fear thee, as doth thy people Israel, and may know that this house which I have built is called by thy name.
11317                                                                                                                                                                                                                                                                                                                                          If thy people go out to war against their enemies by the way that thou shalt send them, and they pray unto thee toward this city which thou hast chosen, and the house which I have built for thy name;
11318                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then hear thou from the heavens their prayer and their supplication, and maintain their cause.
11319                                                                                                                                                                                                                                                                                                                                       If they sin against thee, (for there is no man which sinneth not,) and thou be angry with them, and deliver them over before their enemies, and they carry them away captives unto a land far off or near;
11320                                                                                                                                                                                                                                                                                                                                    Yet if they bethink themselves in the land whither they are carried captive, and turn and pray unto thee in the land of their captivity, saying, We have sinned, we have done amiss, and have dealt wickedly;
11321                                                                                                                                                                                                                                 If they return to thee with all their heart and with all their soul in the land of their captivity, whither they have carried them captives, and pray toward their land, which thou gavest unto their fathers, and toward the city which thou hast chosen, and toward the house which I have built for thy name:
11322                                                                                                                                                                                                                                                                                                                                                            Then hear thou from the heavens, even from thy dwelling place, their prayer and their supplications, and maintain their cause, and forgive thy people which have sinned against thee.
11323                                                                                                                                                                                                                                                                                                                                                                                                                   Now, my God, let, I beseech thee, thine eyes be open, and let thine ears be attent unto the prayer that is made in this place.
11324                                                                                                                                                                                                                                                                                                                                                      Now therefore arise, O LORD God, into thy resting place, thou, and the ark of thy strength: let thy priests, O LORD God, be clothed with salvation, and let thy saints rejoice in goodness.
11325                                                                                                                                                                                                                                                                                                                                                                                                                                                 O LORD God, turn not away the face of thine anointed: remember the mercies of David thy servant.
11326                                                                                                                                                                                                                                                                                                                                                                     Now when Solomon had made an end of praying, the fire came down from heaven, and consumed the burnt offering and the sacrifices; and the glory of the LORD filled the house.
11327                                                                                                                                                                                                                                                                                                                                                                                                                           And the priests could not enter into the house of the LORD, because the glory of the LORD had filled the LORD's house.
11328                                                                                                                                                                                                                                                                 And when all the children of Israel saw how the fire came down, and the glory of the LORD upon the house, they bowed themselves with their faces to the ground upon the pavement, and worshipped, and praised the LORD, saying, For he is good; for his mercy endureth for ever.
11329                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the king and all the people offered sacrifices before the LORD.
11330                                                                                                                                                                                                                                                                                                                                                                       And king Solomon offered a sacrifice of twenty and two thousand oxen, and an hundred and twenty thousand sheep: so the king and all the people dedicated the house of God.
11331                                                                                                                                                                                                                                                And the priests waited on their offices: the Levites also with instruments of music of the LORD, which David the king had made to praise the LORD, because his mercy endureth for ever, when David praised by their ministry; and the priests sounded trumpets before them, and all Israel stood.
11332                                                                                                                                                                                                                                             Moreover Solomon hallowed the middle of the court that was before the house of the LORD: for there he offered burnt offerings, and the fat of the peace offerings, because the brazen altar which Solomon had made was not able to receive the burnt offerings, and the meat offerings, and the fat.
11333                                                                                                                                                                                                                                                                                                                                                                             Also at the same time Solomon kept the feast seven days, and all Israel with him, a very great congregation, from the entering in of Hamath unto the river of Egypt.
11334                                                                                                                                                                                                                                                                                                                                                                                                               And in the eighth day they made a solemn assembly: for they kept the dedication of the altar seven days, and the feast seven days.
11335                                                                                                                                                                                                                                                                                                                        And on the three and twentieth day of the seventh month he sent the people away into their tents, glad and merry in heart for the goodness that the LORD had showed unto David, and to Solomon, and to Israel his people.
11336                                                                                                                                                                                                                                                                                                                                                      Thus Solomon finished the house of the LORD, and the king's house: and all that came into Solomon's heart to make in the house of the LORD, and in his own house, he prosperously effected.
11337                                                                                                                                                                                                                                                                                                                                                                                           And the LORD appeared to Solomon by night, and said unto him, I have heard thy prayer, and have chosen this place to myself for an house of sacrifice.
11338                                                                                                                                                                                                                                                                                                                                                                                                              If I shut up heaven that there be no rain, or if I command the locusts to devour the land, or if I send pestilence among my people;
11339                                                                                                                                                                                                                                                                                                                             If my people, which are called by my name, shall humble themselves, and pray, and seek my face, and turn from their wicked ways; then will I hear from heaven, and will forgive their sin, and will heal their land.
11340                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now mine eyes shall be open, and mine ears attent unto the prayer that is made in this place.
11341                                                                                                                                                                                                                                                                                                                                                                                                    For now have I chosen and sanctified this house, that my name may be there for ever: and mine eyes and mine heart shall be there perpetually.
11342                                                                                                                                                                                                                                                                                                                                                                    And as for thee, if thou wilt walk before me, as David thy father walked, and do according to all that I have commanded thee, and shalt observe my statutes and my judgments;
11343                                                                                                                                                                                                                                                                                                                                                                             Then will I stablish the throne of thy kingdom, according as I have covenanted with David thy father, saying, There shall not fail thee a man to be ruler in Israel.
11344                                                                                                                                                                                                                                                                                                                                                                                              But if ye turn away, and forsake my statutes and my commandments, which I have set before you, and shall go and serve other gods, and worship them;
11345                                                                                                                                                                                                                                                                                                                Then will I pluck them up by the roots out of my land which I have given them; and this house, which I have sanctified for my name, will I cast out of my sight, and will make it to be a proverb and a byword among all nations.
11346                                                                                                                                                                                                                                                                                                                                                                  And this house, which is high, shall be an astonishment to every one that passeth by it; so that he shall say, Why hath the LORD done thus unto this land, and unto this house?
11347                                                                                                                                                                                                                                                                                           And it shall be answered, Because they forsook the LORD God of their fathers, which brought them forth out of the land of Egypt, and laid hold on other gods, and worshipped them, and served them: therefore hath he brought all this evil upon them.
11348                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass at the end of twenty years, wherein Solomon had built the house of the LORD, and his own house,
11349                                                                                                                                                                                                                                                                                                                                                                                                                       That the cities which Huram had restored to Solomon, Solomon built them, and caused the children of Israel to dwell there.
11350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Solomon went to Hamathzobah, and prevailed against it.
11351                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he built Tadmor in the wilderness, and all the store cities, which he built in Hamath.
11352                                                                                                                                                                                                                                                                                                                                                                                                                                         Also he built Bethhoron the upper, and Bethhoron the nether, fenced cities, with walls, gates, and bars;
11353                                                                                                                                                                                                                                                                                                             And Baalath, and all the store cities that Solomon had, and all the chariot cities, and the cities of the horsemen, and all that Solomon desired to build in Jerusalem, and in Lebanon, and throughout all the land of his dominion.
11354                                                                                                                                                                                                                                                                                                                                                                                        As for all the people that were left of the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, which were not of Israel,
11355                                                                                                                                                                                                                                                                                                                                                                                      But of their children, who were left after them in the land, whom the children of Israel consumed not, them did Solomon make to pay tribute until this day.
11356                                                                                                                                                                                                                                                                                                                                                                         But of the children of Israel did Solomon make no servants for his work; but they were men of war, and chief of his captains, and captains of his chariots and horsemen.
11357                                                                                                                                                                                                                                                                                                                                                                                                                                 And these were the chief of king Solomon's officers, even two hundred and fifty, that bare rule over the people.
11358                                                                                                                                                                                                                                                                               And Solomon brought up the daughter of Pharaoh out of the city of David unto the house that he had built for her: for he said, My wife shall not dwell in the house of David king of Israel, because the places are holy, whereunto the ark of the LORD hath come.
11359                                                                                                                                                                                                                                                                                                                                                                                                                                Then Solomon offered burnt offerings unto the LORD on the altar of the LORD, which he had built before the porch,
11360                                                                                                                                                                                                                                                                Even after a certain rate every day, offering according to the commandment of Moses, on the sabbaths, and on the new moons, and on the solemn feasts, three times in the year, even in the feast of unleavened bread, and in the feast of weeks, and in the feast of tabernacles.
11361                                                                                                                                                                                                                           And he appointed, according to the order of David his father, the courses of the priests to their service, and the Levites to their charges, to praise and minister before the priests, as the duty of every day required: the porters also by their courses at every gate: for so had David the man of God commanded.
11362                                                                                                                                                                                                                                                                                                                                                                                                          And they departed not from the commandment of the king unto the priests and Levites concerning any matter, or concerning the treasures.
11363                                                                                                                                                                                                                                                                                                                                                                             Now all the work of Solomon was prepared unto the day of the foundation of the house of the LORD, and until it was finished. So the house of the LORD was perfected.
11364                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then went Solomon to Eziongeber, and to Eloth, at the sea side in the land of Edom.
11365                                                                                                                                                                                                                                                                                                And Huram sent him by the hands of his servants ships, and servants that had knowledge of the sea; and they went with the servants of Solomon to Ophir, and took thence four hundred and fifty talents of gold, and brought them to king Solomon.
11366                                                                                                                                                                                                                                  And when the queen of Sheba heard of the fame of Solomon, she came to prove Solomon with hard questions at Jerusalem, with a very great company, and camels that bare spices, and gold in abundance, and precious stones: and when she was come to Solomon, she communed with him of all that was in her heart.
11367                                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon told her all her questions: and there was nothing hid from Solomon which he told her not.
11368                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when the queen of Sheba had seen the wisdom of Solomon, and the house that he had built,
11369                                                                                                                                                                                                                                                                                      And the meat of his table, and the sitting of his servants, and the attendance of his ministers, and their apparel; his cupbearers also, and their apparel; and his ascent by which he went up into the house of the LORD; there was no more spirit in her.
11370                                                                                                                                                                                                                                                                                                                                                                                                                                  And she said to the king, It was a true report which I heard in mine own land of thine acts, and of thy wisdom:
11371                                                                                                                                                                                                                                                                                                                                                 Howbeit I believed not their words, until I came, and mine eyes had seen it: and, behold, the one half of the greatness of thy wisdom was not told me: for thou exceedest the fame that I heard.
11372                                                                                                                                                                                                                                                                                                                                                                                                                                   Happy are thy men, and happy are these thy servants, which stand continually before thee, and hear thy wisdom.
11373                                                                                                                                                                                                                                                                                                    Blessed be the LORD thy God, which delighted in thee to set thee on his throne, to be king for the LORD thy God: because thy God loved Israel, to establish them for ever, therefore made he thee king over them, to do judgment and justice.
11374                                                                                                                                                                                                                                                                                                                                                       And she gave the king an hundred and twenty talents of gold, and of spices great abundance, and precious stones: neither was there any such spice as the queen of Sheba gave king Solomon.
11375                                                                                                                                                                                                                                                                                                                                                                                                             And the servants also of Huram, and the servants of Solomon, which brought gold from Ophir, brought algum trees and precious stones.
11376                                                                                                                                                                                                                                                                                                                                               And the king made of the algum trees terraces to the house of the LORD, and to the king's palace, and harps and psalteries for singers: and there were none such seen before in the land of Judah.
11377                                                                                                                                                                                                                                                                                                                                           And king Solomon gave to the queen of Sheba all her desire, whatsoever she asked, beside that which she had brought unto the king. So she turned, and went away to her own land, she and her servants.
11378                                                                                                                                                                                                                                                                                                                                                                                                                                  Now the weight of gold that came to Solomon in one year was six hundred and threescore and six talents of gold;
11379                                                                                                                                                                                                                                                                                                                                                                                                    Beside that which chapmen and merchants brought. And all the kings of Arabia and governors of the country brought gold and silver to Solomon.
11380                                                                                                                                                                                                                                                                                                                                                                                                                                 And king Solomon made two hundred targets of beaten gold: six hundred shekels of beaten gold went to one target.
11381                                                                                                                                                                                                                                                                                                                                                                                 And three hundred shields made he of beaten gold: three hundred shekels of gold went to one shield. And the king put them in the house of the forest of Lebanon.
11382                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moreover the king made a great throne of ivory, and overlaid it with pure gold.
11383                                                                                                                                                                                                                                                                                                                                                           And there were six steps to the throne, with a footstool of gold, which were fastened to the throne, and stays on each side of the sitting place, and two lions standing by the stays:
11384                                                                                                                                                                                                                                                                                                                                                                                                                    And twelve lions stood there on the one side and on the other upon the six steps. There was not the like made in any kingdom.
11385                                                                                                                                                                                                                                                                                                                           And all the drinking vessels of king Solomon were of gold, and all the vessels of the house of the forest of Lebanon were of pure gold: none were of silver; it was not any thing accounted of in the days of Solomon.
11386                                                                                                                                                                                                                                                                                                                                                                    For the king's ships went to Tarshish with the servants of Huram: every three years once came the ships of Tarshish bringing gold, and silver, ivory, and apes, and peacocks.
11387                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And king Solomon passed all the kings of the earth in riches and wisdom.
11388                                                                                                                                                                                                                                                                                                                                                                                                                                And all the kings of the earth sought the presence of Solomon, to hear his wisdom, that God had put in his heart.
11389                                                                                                                                                                                                                                                                                                                                                                                        And they brought every man his present, vessels of silver, and vessels of gold, and raiment, harness, and spices, horses, and mules, a rate year by year.
11390                                                                                                                                                                                                                                                                                                                                                                              And Solomon had four thousand stalls for horses and chariots, and twelve thousand horsemen; whom he bestowed in the chariot cities, and with the king at Jerusalem.
11391                                                                                                                                                                                                                                                                                                                                                                                                                              And he reigned over all the kings from the river even unto the land of the Philistines, and to the border of Egypt.
11392                                                                                                                                                                                                                                                                                                                                                                                                          And the king made silver in Jerusalem as stones, and cedar trees made he as the sycamore trees that are in the low plains in abundance.
11393                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they brought unto Solomon horses out of Egypt, and out of all lands.
11394                                                                                                                                                                                                                                                                                                                 Now the rest of the acts of Solomon, first and last, are they not written in the book of Nathan the prophet, and in the prophecy of Ahijah the Shilonite, and in the visions of Iddo the seer against Jeroboam the son of Nebat?
11395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Solomon reigned in Jerusalem over all Israel forty years.
11396                                                                                                                                                                                                                                                                                                                                                                                                                And Solomon slept with his fathers, and he was buried in the city of David his father: and Rehoboam his son reigned in his stead.
11397                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Rehoboam went to Shechem: for to Shechem were all Israel come to make him king.
11398                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when Jeroboam the son of Nebat, who was in Egypt, whither he fled from the presence of Solomon the king, heard it, that Jeroboam returned out of Egypt.
11399                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they sent and called him. So Jeroboam and all Israel came and spake to Rehoboam, saying,
11400                                                                                                                                                                                                                                                                                                                                                                        Thy father made our yoke grievous: now therefore ease thou somewhat the grievous servitude of thy father, and his heavy yoke that he put upon us, and we will serve thee.
11401                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said unto them, Come again unto me after three days. And the people departed.
11402                                                                                                                                                                                                                                                                                                                                                                    And king Rehoboam took counsel with the old men that had stood before Solomon his father while he yet lived, saying, What counsel give ye me to return answer to this people?
11403                                                                                                                                                                                                                                                                                                                                                                                              And they spake unto him, saying, If thou be kind to this people, and please them, and speak good words to them, they will be thy servants for ever.
11404                                                                                                                                                                                                                                                                                                                                                                                                 But he forsook the counsel which the old men gave him, and took counsel with the young men that were brought up with him, that stood before him.
11405                                                                                                                                                                                                                                                                                                                                                                    And he said unto them, What advice give ye that we may return answer to this people, which have spoken to me, saying, Ease somewhat the yoke that thy father did put upon us?
11406                                                                                                                                                                                                                                       And the young men that were brought up with him spake unto him, saying, Thus shalt thou answer the people that spake unto thee, saying, Thy father made our yoke heavy, but make thou it somewhat lighter for us; thus shalt thou say unto them, My little finger shall be thicker than my father's loins.
11407                                                                                                                                                                                                                                                                                                                                                                                       For whereas my father put a heavy yoke upon you, I will put more to your yoke: my father chastised you with whips, but I will chastise you with scorpions.
11408                                                                                                                                                                                                                                                                                                                                                                                                                   So Jeroboam and all the people came to Rehoboam on the third day, as the king bade, saying, Come again to me on the third day.
11409                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the king answered them roughly; and king Rehoboam forsook the counsel of the old men,
11410                                                                                                                                                                                                                                                                                                                                                 And answered them after the advice of the young men, saying, My father made your yoke heavy, but I will add thereto: my father chastised you with whips, but I will chastise you with scorpions.
11411                                                                                                                                                                                                                                                                                                                                                      So the king hearkened not unto the people: for the cause was of God, that the LORD might perform his word, which he spake by the hand of Ahijah the Shilonite to Jeroboam the son of Nebat.
11412                                                                                                                                                                                                                                          And when all Israel saw that the king would not hearken unto them, the people answered the king, saying, What portion have we in David? and we have none inheritance in the son of Jesse: every man to your tents, O Israel: and now, David, see to thine own house. So all Israel went to their tents.
11413                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as for the children of Israel that dwelt in the cities of Judah, Rehoboam reigned over them.
11414                                                                                                                                                                                                                                                                                                                                     Then king Rehoboam sent Hadoram that was over the tribute; and the children of Israel stoned him with stones, that he died. But king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem.
11415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Israel rebelled against the house of David unto this day.
11416                                                                                                                                                                                                                                                                                                           And when Rehoboam was come to Jerusalem, he gathered of the house of Judah and Benjamin an hundred and fourscore thousand chosen men, which were warriors, to fight against Israel, that he might bring the kingdom again to Rehoboam.
11417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But the word of the LORD came to Shemaiah the man of God, saying,
11418                                                                                                                                                                                                                                                                                                                                                                                                                                          Speak unto Rehoboam the son of Solomon, king of Judah, and to all Israel in Judah and Benjamin, saying,
11419                                                                                                                                                                                                                                                                                                                          Thus saith the LORD, Ye shall not go up, nor fight against your brethren: return every man to his house: for this thing is done of me. And they obeyed the words of the LORD, and returned from going against Jeroboam.
11420                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Rehoboam dwelt in Jerusalem, and built cities for defense in Judah.
11421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He built even Bethlehem, and Etam, and Tekoa,
11422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Bethzur, and Shoco, and Adullam,
11423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Gath, and Mareshah, and Ziph,
11424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Adoraim, and Lachish, and Azekah,
11425                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Zorah, and Aijalon, and Hebron, which are in Judah and in Benjamin fenced cities.
11426                                                                                                                                                                                                                                                                                                                                                                                                                                          And he fortified the strong holds, and put captains in them, and store of victual, and of oil and wine.
11427                                                                                                                                                                                                                                                                                                                                                                                                                      And in every several city he put shields and spears, and made them exceeding strong, having Judah and Benjamin on his side.
11428                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priests and the Levites that were in all Israel resorted to him out of all their coasts.
11429                                                                                                                                                                                                                                                                                                                                                          For the Levites left their suburbs and their possession, and came to Judah and Jerusalem: for Jeroboam and his sons had cast them off from executing the priest's office unto the LORD:
11430                                                                                                                                                                                                                                                                                                                                                                                                                                       And he ordained him priests for the high places, and for the devils, and for the calves which he had made.
11431                                                                                                                                                                                                                                                                                                                                                                       And after them out of all the tribes of Israel such as set their hearts to seek the LORD God of Israel came to Jerusalem, to sacrifice unto the LORD God of their fathers.
11432                                                                                                                                                                                                                                                                                                                                                                                So they strengthened the kingdom of Judah, and made Rehoboam the son of Solomon strong, three years: for three years they walked in the way of David and Solomon.
11433                                                                                                                                                                                                                                                                                                                                                                                                            And Rehoboam took him Mahalath the daughter of Jerimoth the son of David to wife, and Abihail the daughter of Eliab the son of Jesse;
11434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Which bare him children; Jeush, and Shamariah, and Zaham.
11435                                                                                                                                                                                                                                                                                                                                                                                                                                And after her he took Maachah the daughter of Absalom; which bare him Abijah, and Attai, and Ziza, and Shelomith.
11436                                                                                                                                                                                                                                                                                                                                   And Rehoboam loved Maachah the daughter of Absalom above all his wives and his concubines: (for he took eighteen wives, and threescore concubines; and begat twenty and eight sons, and threescore daughters.)
11437                                                                                                                                                                                                                                                                                                                                                                                                                          And Rehoboam made Abijah the son of Maachah the chief, to be ruler among his brethren: for he thought to make him king.
11438                                                                                                                                                                                                                                                                                                                                             And he dealt wisely, and dispersed of all his children throughout all the countries of Judah and Benjamin, unto every fenced city: and he gave them victual in abundance. And he desired many wives.
11439                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Rehoboam had established the kingdom, and had strengthened himself, he forsook the law of the LORD, and all Israel with him.
11440                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, that in the fifth year of king Rehoboam Shishak king of Egypt came up against Jerusalem, because they had transgressed against the LORD,
11441                                                                                                                                                                                                                                                                                                                                                                With twelve hundred chariots, and threescore thousand horsemen: and the people were without number that came with him out of Egypt; the Lubims, the Sukkiims, and the Ethiopians.
11442                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he took the fenced cities which pertained to Judah, and came to Jerusalem.
11443                                                                                                                                                                                                                                                                                   Then came Shemaiah the prophet to Rehoboam, and to the princes of Judah, that were gathered together to Jerusalem because of Shishak, and said unto them, Thus saith the LORD, Ye have forsaken me, and therefore have I also left you in the hand of Shishak.
11444                                                                                                                                                                                                                                                                                                                                                                                                                                           Whereupon the princes of Israel and the king humbled themselves; and they said, The LORD is righteous.
11445                                                                                                                                                                                                                                                          And when the LORD saw that they humbled themselves, the word of the LORD came to Shemaiah, saying, They have humbled themselves; therefore I will not destroy them, but I will grant them some deliverance; and my wrath shall not be poured out upon Jerusalem by the hand of Shishak.
11446                                                                                                                                                                                                                                                                                                                                                                                                                        Nevertheless they shall be his servants; that they may know my service, and the service of the kingdoms of the countries.
11447                                                                                                                                                                                                                                                                                                                   So Shishak king of Egypt came up against Jerusalem, and took away the treasures of the house of the LORD, and the treasures of the king's house; he took all: he carried away also the shields of gold which Solomon had made.
11448                                                                                                                                                                                                                                                                                                                                                                                     Instead of which king Rehoboam made shields of brass, and committed them to the hands of the chief of the guard, that kept the entrance of the king's house.
11449                                                                                                                                                                                                                                                                                                                                                                                                            And when the king entered into the house of the LORD, the guard came and fetched them, and brought them again into the guard chamber.
11450                                                                                                                                                                                                                                                                                                                                                                                                And when he humbled himself, the wrath of the LORD turned from him, that he would not destroy him altogether: and also in Judah things went well.
11451                                                                                                                                                                                                                        So king Rehoboam strengthened himself in Jerusalem, and reigned: for Rehoboam was one and forty years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which the LORD had chosen out of all the tribes of Israel, to put his name there. And his mother's name was Naamah an Ammonitess.
11452                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did evil, because he prepared not his heart to seek the LORD.
11453                                                                                                                                                                                                                                                                                                                                  Now the acts of Rehoboam, first and last, are they not written in the book of Shemaiah the prophet, and of Iddo the seer concerning genealogies? And there were wars between Rehoboam and Jeroboam continually.
11454                                                                                                                                                                                                                                                                                                                                                                                                                               And Rehoboam slept with his fathers, and was buried in the city of David: and Abijah his son reigned in his stead.
11455                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now in the eighteenth year of king Jeroboam began Abijah to reign over Judah.
11456                                                                                                                                                                                                                                                                                                                                                                                         He reigned three years in Jerusalem. His mother's name also was Michaiah the daughter of Uriel of Gibeah. And there was war between Abijah and Jeroboam.
11457                                                                                                                                                                                                                                                                                                               And Abijah set the battle in array with an army of valiant men of war, even four hundred thousand chosen men: Jeroboam also set the battle in array against him with eight hundred thousand chosen men, being mighty men of valor.
11458                                                                                                                                                                                                                                                                                                                                                                                                                            And Abijah stood up upon mount Zemaraim, which is in mount Ephraim, and said, Hear me, thou Jeroboam, and all Israel;
11459                                                                                                                                                                                                                                                                                                                                                                                              Ought ye not to know that the LORD God of Israel gave the kingdom over Israel to David for ever, even to him and to his sons by a covenant of salt?
11460                                                                                                                                                                                                                                                                                                                                                                                                                         Yet Jeroboam the son of Nebat, the servant of Solomon the son of David, is risen up, and hath rebelled against his lord.
11461                                                                                                                                                                                                                                                                                                                                 And there are gathered unto him vain men, the children of Belial, and have strengthened themselves against Rehoboam the son of Solomon, when Rehoboam was young and tenderhearted, and could not withstand them.
11462                                                                                                                                                                                                                                                                                                                                                    And now ye think to withstand the kingdom of the LORD in the hand of the sons of David; and ye be a great multitude, and there are with your golden calves, which Jeroboam made you for gods.
11463                                                                                                                                                                                                                                               Have ye not cast out the priests of the LORD, the sons of Aaron, and the Levites, and have made you priests after the manner of the nations of other lands? so that whosoever cometh to consecrate himself with a young bullock and seven rams, the same may be a priest of them that are no gods.
11464                                                                                                                                                                                                                                                                                                                                                                But as for us, the LORD is our God, and we have not forsaken him; and the priests, which minister unto the LORD, are the sons of Aaron, and the Levites wait upon their business:
11465                                                                                                                                                                                                                                       And they burn unto the LORD every morning and every evening burnt sacrifices and sweet incense: the shewbread also set they in order upon the pure table; and the candlestick of gold with the lamps thereof, to burn every evening: for we keep the charge of the LORD our God; but ye have forsaken him.
11466                                                                                                                                                                                                                                                                                                                         And, behold, God himself is with us for our captain, and his priests with sounding trumpets to cry alarm against you. O children of Israel, fight ye not against the LORD God of your fathers; for ye shall not prosper.
11467                                                                                                                                                                                                                                                                                                                                                                                                                      But Jeroboam caused an ambushment to come about behind them: so they were before Judah, and the ambushment was behind them.
11468                                                                                                                                                                                                                                                                                                                                                                                                   And when Judah looked back, behold, the battle was before and behind: and they cried unto the LORD, and the priests sounded with the trumpets.
11469                                                                                                                                                                                                                                                                                                                                                                                            Then the men of Judah gave a shout: and as the men of Judah shouted, it came to pass, that God smote Jeroboam and all Israel before Abijah and Judah.
11470                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel fled before Judah: and God delivered them into their hand.
11471                                                                                                                                                                                                                                                                                                                                                                                                                 And Abijah and his people slew them with a great slaughter: so there fell down slain of Israel five hundred thousand chosen men.
11472                                                                                                                                                                                                                                                                                                                                                                                        Thus the children of Israel were brought under at that time, and the children of Judah prevailed, because they relied upon the LORD God of their fathers.
11473                                                                                                                                                                                                                                                                                                                                                                             And Abijah pursued after Jeroboam, and took cities from him, Bethel with the towns thereof, and Jeshanah with the towns thereof, and Ephraim with the towns thereof.
11474                                                                                                                                                                                                                                                                                                                                                                                                                                         Neither did Jeroboam recover strength again in the days of Abijah: and the LORD struck him, and he died.
11475                                                                                                                                                                                                                                                                                                                                                                                                                                       But Abijah waxed mighty, and married fourteen wives, and begat twenty and two sons, and sixteen daughters.
11476                                                                                                                                                                                                                                                                                                                                                                                                                                 And the rest of the acts of Abijah, and his ways, and his sayings, are written in the story of the prophet Iddo.
11477                                                                                                                                                                                                                                                                                                                                                                                      So Abijah slept with his fathers, and they buried him in the city of David: and Asa his son reigned in his stead. In his days the land was quiet ten years.
11478                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Asa did that which was good and right in the eyes of the LORD his God:
11479                                                                                                                                                                                                                                                                                                                                                                                                                        For he took away the altars of the strange gods, and the high places, and brake down the images, and cut down the groves:
11480                                                                                                                                                                                                                                                                                                                                                                                                                                                And commanded Judah to seek the LORD God of their fathers, and to do the law and the commandment.
11481                                                                                                                                                                                                                                                                                                                                                                                                                           Also he took away out of all the cities of Judah the high places and the images: and the kingdom was quiet before him.
11482                                                                                                                                                                                                                                                                                                                                                                                                               And he built fenced cities in Judah: for the land had rest, and he had no war in those years; because the LORD had given him rest.
11483                                                                                                                                                                                                                                                             Therefore he said unto Judah, Let us build these cities, and make about them walls, and towers, gates, and bars, while the land is yet before us; because we have sought the LORD our God, we have sought him, and he hath given us rest on every side. So they built and prospered.
11484                                                                                                                                                                                                                                                                                                                      And Asa had an army of men that bare targets and spears, out of Judah three hundred thousand; and out of Benjamin, that bare shields and drew bows, two hundred and fourscore thousand: all these were mighty men of valor.
11485                                                                                                                                                                                                                                                                                                                                                                                                     And there came out against them Zerah the Ethiopian with an host of a thousand thousand, and three hundred chariots; and came unto Mareshah.
11486                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Asa went out against him, and they set the battle in array in the valley of Zephathah at Mareshah.
11487                                                                                                                                                                                                                                                 And Asa cried unto the LORD his God, and said, LORD, it is nothing with thee to help, whether with many, or with them that have no power: help us, O LORD our God; for we rest on thee, and in thy name we go against this multitude. O LORD, thou art our God; let no man prevail against thee.
11488                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the LORD smote the Ethiopians before Asa, and before Judah; and the Ethiopians fled.
11489                                                                                                                                                                                                                                                                                              And Asa and the people that were with him pursued them unto Gerar: and the Ethiopians were overthrown, that they could not recover themselves; for they were destroyed before the LORD, and before his host; and they carried away very much spoil.
11490                                                                                                                                                                                                                                                                                                                                                                           And they smote all the cities round about Gerar; for the fear of the LORD came upon them: and they spoiled all the cities; for there was exceeding much spoil in them.
11491                                                                                                                                                                                                                                                                                                                                                                                                                                  They smote also the tents of cattle, and carried away sheep and camels in abundance, and returned to Jerusalem.
11492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the Spirit of God came upon Azariah the son of Oded:
11493                                                                                                                                                                                                                                                                                                                And he went out to meet Asa, and said unto him, Hear ye me, Asa, and all Judah and Benjamin; The LORD is with you, while ye be with him; and if ye seek him, he will be found of you; but if ye forsake him, he will forsake you.
11494                                                                                                                                                                                                                                                                                                                                                                                                                                     Now for a long season Israel hath been without the true God, and without a teaching priest, and without law.
11495                                                                                                                                                                                                                                                                                                                                                                                                                                       But when they in their trouble did turn unto the LORD God of Israel, and sought him, he was found of them.
11496                                                                                                                                                                                                                                                                                                                                                                                         And in those times there was no peace to him that went out, nor to him that came in, but great vexations were upon all the inhabitants of the countries.
11497                                                                                                                                                                                                                                                                                                                                                                                                                                                   And nation was destroyed of nation, and city of city: for God did vex them with all adversity.
11498                                                                                                                                                                                                                                                                                                                                                                                                                                                         Be ye strong therefore, and let not your hands be weak: for your work shall be rewarded.
11499                                                                                                                                                                                                                                       And when Asa heard these words, and the prophecy of Oded the prophet, he took courage, and put away the abominable idols out of all the land of Judah and Benjamin, and out of the cities which he had taken from mount Ephraim, and renewed the altar of the LORD, that was before the porch of the LORD.
11500                                                                                                                                                                                                                                                                                                                           And he gathered all Judah and Benjamin, and the strangers with them out of Ephraim and Manasseh, and out of Simeon: for they fell to him out of Israel in abundance, when they saw that the LORD his God was with him.
11501                                                                                                                                                                                                                                                                                                                                                                                                                                 So they gathered themselves together at Jerusalem in the third month, in the fifteenth year of the reign of Asa.
11502                                                                                                                                                                                                                                                                                                                                                                                                                  And they offered unto the LORD the same time, of the spoil which they had brought, seven hundred oxen and seven thousand sheep.
11503                                                                                                                                                                                                                                                                                                                                                                                                                             And they entered into a covenant to seek the LORD God of their fathers with all their heart and with all their soul;
11504                                                                                                                                                                                                                                                                                                                                                                                                                       That whosoever would not seek the LORD God of Israel should be put to death, whether small or great, whether man or woman.
11505                                                                                                                                                                                                                                                                                                                                                                                                                                          And they sware unto the LORD with a loud voice, and with shouting, and with trumpets, and with cornets.
11506                                                                                                                                                                                                                                                                                                                                                          And all Judah rejoiced at the oath: for they had sworn with all their heart, and sought him with their whole desire; and he was found of them: and the LORD gave them rest round about.
11507                                                                                                                                                                                                                                                                                                                                   And also concerning Maachah the mother of Asa the king, he removed her from being queen, because she had made an idol in a grove: and Asa cut down her idol, and stamped it, and burnt it at the brook Kidron.
11508                                                                                                                                                                                                                                                                                                                                                                                                                                   But the high places were not taken away out of Israel: nevertheless the heart of Asa was perfect all his days.
11509                                                                                                                                                                                                                                                                                                                                                                                                 And he brought into the house of God the things that his father had dedicated, and that he himself had dedicated, silver, and gold, and vessels.
11510                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there was no more war unto the five and thirtieth year of the reign of Asa.
11511                                                                                                                                                                                                                                                                                                                                                     In the six and thirtieth year of the reign of Asa Baasha king of Israel came up against Judah, and built Ramah, to the intent that he might let none go out or come in to Asa king of Judah.
11512                                                                                                                                                                                                                                                                                                                                                                  Then Asa brought out silver and gold out of the treasures of the house of the LORD and of the king's house, and sent to Benhadad king of Syria, that dwelt at Damascus, saying,
11513                                                                                                                                                                                                                                                                                                                                     There is a league between me and thee, as there was between my father and thy father: behold, I have sent thee silver and gold; go, break thy league with Baasha king of Israel, that he may depart from me.
11514                                                                                                                                                                                                                                                                                                                                                        And Benhadad hearkened unto king Asa, and sent the captains of his armies against the cities of Israel; and they smote Ijon, and Dan, and Abelmaim, and all the store cities of Naphtali.
11515                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Baasha heard it, that he left off building of Ramah, and let his work cease.
11516                                                                                                                                                                                                                                                                                                                                                                      Then Asa the king took all Judah; and they carried away the stones of Ramah, and the timber thereof, wherewith Baasha was building; and he built therewith Geba and Mizpah.
11517                                                                                                                                                                                                                                                                                                          And at that time Hanani the seer came to Asa king of Judah, and said unto him, Because thou hast relied on the king of Syria, and not relied on the LORD thy God, therefore is the host of the king of Syria escaped out of thine hand.
11518                                                                                                                                                                                                                                                                                                                                                                           Were not the Ethiopians and the Lubims a huge host, with very many chariots and horsemen? yet, because thou didst rely on the LORD, he delivered them into thine hand.
11519                                                                                                                                                                                                                                                                                                             For the eyes of the LORD run to and fro throughout the whole earth, to show himself strong in the behalf of them whose heart is perfect toward him. Herein thou hast done foolishly: therefore from henceforth thou shalt have wars.
11520                                                                                                                                                                                                                                                                                                                                                                        Then Asa was wroth with the seer, and put him in a prison house; for he was in a rage with him because of this thing. And Asa oppressed some of the people the same time.
11521                                                                                                                                                                                                                                                                                                                                                                                                                                 And, behold, the acts of Asa, first and last, lo, they are written in the book of the kings of Judah and Israel.
11522                                                                                                                                                                                                                                                                                                                                                          And Asa in the thirty and ninth year of his reign was diseased in his feet, until his disease was exceeding great: yet in his disease he sought not to the LORD, but to the physicians.
11523                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Asa slept with his fathers, and died in the one and fortieth year of his reign.
11524                                                                                                                                                                                                                                                                             And they buried him in his own sepulchres, which he had made for himself in the city of David, and laid him in the bed which was filled with sweet odorous and divers kinds of spices prepared by the apothecaries' art: and they made a very great burning for him.
11525                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jehoshaphat his son reigned in his stead, and strengthened himself against Israel.
11526                                                                                                                                                                                                                                                                                                                                                                                    And he placed forces in all the fenced cities of Judah, and set garrisons in the land of Judah, and in the cities of Ephraim, which Asa his father had taken.
11527                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD was with Jehoshaphat, because he walked in the first ways of his father David, and sought not unto Baalim;
11528                                                                                                                                                                                                                                                                                                                                                                                                                                    But sought to the Lord God of his father, and walked in his commandments, and not after the doings of Israel.
11529                                                                                                                                                                                                                                                                                                                                                                                                  Therefore the LORD stablished the kingdom in his hand; and all Judah brought to Jehoshaphat presents; and he had riches and honor in abundance.
11530                                                                                                                                                                                                                                                                                                                                                                                                                              And his heart was lifted up in the ways of the LORD: moreover he took away the high places and groves out of Judah.
11531                                                                                                                                                                                                                                                                                                                                                               Also in the third year of his reign he sent to his princes, even to Benhail, and to Obadiah, and to Zechariah, and to Nethaneel, and to Michaiah, to teach in the cities of Judah.
11532                                                                                                                                                                                                                                                                                                                        And with them he sent Levites, even Shemaiah, and Nethaniah, and Zebadiah, and Asahel, and Shemiramoth, and Jehonathan, and Adonijah, and Tobijah, and Tobadonijah, Levites; and with them Elishama and Jehoram, priests.
11533                                                                                                                                                                                                                                                                                                                                                                                           And they taught in Judah, and had the book of the law of the LORD with them, and went about throughout all the cities of Judah, and taught the people.
11534                                                                                                                                                                                                                                                                                                                                                                                                      And the fear of the LORD fell upon all the kingdoms of the lands that were round about Judah, so that they made no war against Jehoshaphat.
11535                                                                                                                                                                                                                                                                                                                                        Also some of the Philistines brought Jehoshaphat presents, and tribute silver; and the Arabians brought him flocks, seven thousand and seven hundred rams, and seven thousand and seven hundred he goats.
11536                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jehoshaphat waxed great exceedingly; and he built in Judah castles, and cities of store.
11537                                                                                                                                                                                                                                                                                                                                                                                                                                     And he had much business in the cities of Judah: and the men of war, mighty men of valor, were in Jerusalem.
11538                                                                                                                                                                                                                                                                                                                                                        And these are the numbers of them according to the house of their fathers: Of Judah, the captains of thousands; Adnah the chief, and with him mighty men of valor three hundred thousand.
11539                                                                                                                                                                                                                                                                                                                                                                                                                                                      And next to him was Jehohanan the captain, and with him two hundred and fourscore thousand.
11540                                                                                                                                                                                                                                                                                                                                                                                                  And next him was Amasiah the son of Zichri, who willingly offered himself unto the LORD; and with him two hundred thousand mighty men of valor.
11541                                                                                                                                                                                                                                                                                                                                                                                                                                  And of Benjamin; Eliada a mighty man of valor, and with him armed men with bow and shield two hundred thousand.
11542                                                                                                                                                                                                                                                                                                                                                                                                                                           And next him was Jehozabad, and with him an hundred and fourscore thousand ready prepared for the war.
11543                                                                                                                                                                                                                                                                                                                                                                                                                                              These waited on the king, beside those whom the king put in the fenced cities throughout all Judah.
11544                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now Jehoshaphat had riches and honor in abundance, and joined affinity with Ahab.
11545                                                                                                                                                                                                                                                                                                                                      And after certain years he went down to Ahab to Samaria. And Ahab killed sheep and oxen for him in abundance, and for the people that he had with him, and persuaded him to go up with him to Ramothgilead.
11546                                                                                                                                                                                                                                                                                                                                      And Ahab king of Israel said unto Jehoshaphat king of Judah, Wilt thou go with me to Ramothgilead? And he answered him, I am as thou art, and my people as thy people; and we will be with thee in the war.
11547                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day.
11548                                                                                                                                                                                                                                                                                                                  Therefore the king of Israel gathered together of prophets four hundred men, and said unto them, Shall we go to Ramothgilead to battle, or shall I forbear? And they said, Go up; for God will deliver it into the king's hand.
11549                                                                                                                                                                                                                                                                                                                                                                                                                                             But Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him?
11550                                                                                                                                                                                                                                                                               And the king of Israel said unto Jehoshaphat, There is yet one man, by whom we may enquire of the LORD: but I hate him; for he never prophesied good unto me, but always evil: the same is Micaiah the son of Imla. And Jehoshaphat said, Let not the king say so.
11551                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king of Israel called for one of his officers, and said, Fetch quickly Micaiah the son of Imla.
11552                                                                                                                                                                                                                                                                                                              And the king of Israel and Jehoshaphat king of Judah sat either of them on his throne, clothed in their robes, and they sat in a void place at the entering in of the gate of Samaria; and all the prophets prophesied before them.
11553                                                                                                                                                                                                                                                                                                                                                                                            And Zedekiah the son of Chenaanah had made him horns of iron, and said, Thus saith the LORD, With these thou shalt push Syria until they be consumed.
11554                                                                                                                                                                                                                                                                                                                                                                                                         And all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the hand of the king.
11555                                                                                                                                                                                                                                                                                                                   And the messenger that went to call Micaiah spake to him, saying, Behold, the words of the prophets declare good to the king with one assent; let thy word therefore, I pray thee, be like one of theirs, and speak thou good.
11556                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Micaiah said, As the LORD liveth, even what my God saith, that will I speak.
11557                                                                                                                                                                                                                                                                                                                                    And when he was come to the king, the king said unto him, Micaiah, shall we go to Ramothgilead to battle, or shall I forbear? And he said, Go ye up, and prosper, and they shall be delivered into your hand.
11558                                                                                                                                                                                                                                                                                                                                                                                                                  And the king said to him, How many times shall I adjure thee that thou say nothing but the truth to me in the name of the LORD?
11559                                                                                                                                                                                                                                                                                                                                             Then he said, I did see all Israel scattered upon the mountains, as sheep that have no shepherd: and the LORD said, These have no master; let them return therefore every man to his house in peace.
11560                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Israel said to Jehoshaphat, Did I not tell thee that he would not prophesy good unto me, but evil?
11561                                                                                                                                                                                                                                                                                                                                                                               Again he said, Therefore hear the word of the LORD; I saw the LORD sitting upon his throne, and all the host of heaven standing on his right hand and on his left.
11562                                                                                                                                                                                                                                                                                                                                                               And the LORD said, Who shall entice Ahab king of Israel, that he may go up and fall at Ramothgilead? And one spake saying after this manner, and another saying after that manner.
11563                                                                                                                                                                                                                                                                                                                                                                                                                     Then there came out a spirit, and stood before the LORD, and said, I will entice him. And the LORD said unto him, Wherewith?
11564                                                                                                                                                                                                                                                                                                                                                               And he said, I will go out, and be a lying spirit in the mouth of all his prophets. And the Lord said, Thou shalt entice him, and thou shalt also prevail: go out, and do even so.
11565                                                                                                                                                                                                                                                                                                                                                                                                          Now therefore, behold, the LORD hath put a lying spirit in the mouth of these thy prophets, and the LORD hath spoken evil against thee.
11566                                                                                                                                                                                                                                                                                                                                                                                      Then Zedekiah the son of Chenaanah came near, and smote Micaiah upon the cheek, and said, Which way went the Spirit of the LORD from me to speak unto thee?
11567                                                                                                                                                                                                                                                                                                                                                                                                                                   And Micaiah said, Behold, thou shalt see on that day when thou shalt go into an inner chamber to hide thyself.
11568                                                                                                                                                                                                                                                                                                                                                                                                                 Then the king of Israel said, Take ye Micaiah, and carry him back to Amon the governor of the city, and to Joash the king's son;
11569                                                                                                                                                                                                                                                                                                                                                                                        And say, Thus saith the king, Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I return in peace.
11570                                                                                                                                                                                                                                                                                                                                                                                                                   And Micaiah said, If thou certainly return in peace, then hath not the LORD spoken by me. And he said, Hearken, all ye people.
11571                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead.
11572                                                                                                                                                                                                                                                                                                                                              And the king of Israel said unto Jehoshaphat, I will disguise myself, and I will go to the battle; but put thou on thy robes. So the king of Israel disguised himself; and they went to the battle.
11573                                                                                                                                                                                                                                                                                                                                                                                Now the king of Syria had commanded the captains of the chariots that were with him, saying, Fight ye not with small or great, save only with the king of Israel.
11574                                                                                                                                                                                                                                                                                        And it came to pass, when the captains of the chariots saw Jehoshaphat, that they said, It is the king of Israel. Therefore they compassed about him to fight: but Jehoshaphat cried out, and the LORD helped him; and God moved them to depart from him.
11575                                                                                                                                                                                                                                                                                                                                                                                             For it came to pass, that, when the captains of the chariots perceived that it was not the king of Israel, they turned back again from pursuing him.
11576                                                                                                                                                                                                                                                                                                                   And a certain man drew a bow at a venture, and smote the king of Israel between the joints of the harness: therefore he said to his chariot man, Turn thine hand, that thou mayest carry me out of the host; for I am wounded.
11577                                                                                                                                                                                                                                                                                                                                                             And the battle increased that day: howbeit the king of Israel stayed himself up in his chariot against the Syrians until the even: and about the time of the sun going down he died.
11578                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jehoshaphat the king of Judah returned to his house in peace to Jerusalem.
11579                                                                                                                                                                                                                                                                                                                                    And Jehu the son of Hanani the seer went out to meet him, and said to king Jehoshaphat, Shouldest thou help the ungodly, and love them that hate the LORD? therefore is wrath upon thee from before the LORD.
11580                                                                                                                                                                                                                                                                                                                                                                                            Nevertheless there are good things found in thee, in that thou hast taken away the groves out of the land, and hast prepared thine heart to seek God.
11581                                                                                                                                                                                                                                                                                                                                                                          And Jehoshaphat dwelt at Jerusalem: and he went out again through the people from Beersheba to mount Ephraim, and brought them back unto the LORD God of their fathers.
11582                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he set judges in the land throughout all the fenced cities of Judah, city by city,
11583                                                                                                                                                                                                                                                                                                                                                                                                                       And said to the judges, Take heed what ye do: for ye judge not for man, but for the LORD, who is with you in the judgment.
11584                                                                                                                                                                                                                                                                                                                                                                            Wherefore now let the fear of the LORD be upon you; take heed and do it: for there is no iniquity with the LORD our God, nor respect of persons, nor taking of gifts.
11585                                                                                                                                                                                                                                                                                                                                   Moreover in Jerusalem did Jehoshaphat set of the Levites, and of the priests, and of the chief of the fathers of Israel, for the judgment of the LORD, and for controversies, when they returned to Jerusalem.
11586                                                                                                                                                                                                                                                                                                                                                                                                                                     And he charged them, saying, Thus shall ye do in the fear of the LORD, faithfully, and with a perfect heart.
11587                                                                                                                                                                                                                       And what cause soever shall come to you of your brethren that dwell in your cities, between blood and blood, between law and commandment, statutes and judgments, ye shall even warn them that they trespass not against the LORD, and so wrath come upon you, and upon your brethren: this do, and ye shall not trespass.
11588                                                                                                                                                                                                                                                               And, behold, Amariah the chief priest is over you in all matters of the LORD; and Zebadiah the son of Ishmael, the ruler of the house of Judah, for all the king's matters: also the Levites shall be officers before you. Deal courageously, and the LORD shall be with the good.
11589                                                                                                                                                                                                                                                                                                                                                                             It came to pass after this also, that the children of Moab, and the children of Ammon, and with them other beside the Ammonites, came against Jehoshaphat to battle.
11590                                                                                                                                                                                                                                                                                                                                                   Then there came some that told Jehoshaphat, saying, There cometh a great multitude against thee from beyond the sea on this side Syria; and, behold, they be in Hazazontamar, which is Engedi.
11591                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jehoshaphat feared, and set himself to seek the LORD, and proclaimed a fast throughout all Judah.
11592                                                                                                                                                                                                                                                                                                                                                                                                                 And Judah gathered themselves together, to ask help of the LORD: even out of all the cities of Judah they came to seek the LORD.
11593                                                                                                                                                                                                                                                                                                                                                                                                                                And Jehoshaphat stood in the congregation of Judah and Jerusalem, in the house of the LORD, before the new court,
11594                                                                                                                                                                                                                                                                                                                               And said, O LORD God of our fathers, art not thou God in heaven? and rulest not thou over all the kingdoms of the heathen? and in thine hand is there not power and might, so that none is able to withstand thee?
11595                                                                                                                                                                                                                                                                                                                                                                                       Art not thou our God, who didst drive out the inhabitants of this land before thy people Israel, and gavest it to the seed of Abraham thy friend for ever?
11596                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they dwelt therein, and have built thee a sanctuary therein for thy name, saying,
11597                                                                                                                                                                                                                                                                                                             If, when evil cometh upon us, as the sword, judgment, or pestilence, or famine, we stand before this house, and in thy presence, (for thy name is in this house,) and cry unto thee in our affliction, then thou wilt hear and help.
11598                                                                                                                                                                                                                                                                                                                                            And now, behold, the children of Ammon and Moab and mount Seir, whom thou wouldest not let Israel invade, when they came out of the land of Egypt, but they turned from them, and destroyed them not;
11599                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, I say, how they reward us, to come to cast us out of thy possession, which thou hast given us to inherit.
11600                                                                                                                                                                                                                                                                                                                                                                             O our God, wilt thou not judge them? for we have no might against this great company that cometh against us; neither know we what to do: but our eyes are upon thee.
11601                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all Judah stood before the LORD, with their little ones, their wives, and their children.
11602                                                                                                                                                                                                                                                                                                                                                Then upon Jahaziel the son of Zechariah, the son of Benaiah, the son of Jeiel, the son of Mattaniah, a Levite of the sons of Asaph, came the Spirit of the LORD in the midst of the congregation;
11603                                                                                                                                                                                                                                                                                                              And he said, Hearken ye, all Judah, and ye inhabitants of Jerusalem, and thou king Jehoshaphat, Thus saith the LORD unto you, Be not afraid nor dismayed by reason of this great multitude; for the battle is not yours, but God's.
11604                                                                                                                                                                                                                                                                                                                                                                                    To morrow go ye down against them: behold, they come up by the cliff of Ziz; and ye shall find them at the end of the brook, before the wilderness of Jeruel.
11605                                                                                                                                                                                                                                                                                                           Ye shall not need to fight in this battle: set yourselves, stand ye still, and see the salvation of the LORD with you, O Judah and Jerusalem: fear not, nor be dismayed; to morrow go out against them: for the LORD will be with you.
11606                                                                                                                                                                                                                                                                                                                                                                                           And Jehoshaphat bowed his head with his face to the ground: and all Judah and the inhabitants of Jerusalem fell before the LORD, worshipping the LORD.
11607                                                                                                                                                                                                                                                                                                                                                                                    And the Levites, of the children of the Kohathites, and of the children of the Korhites, stood up to praise the LORD God of Israel with a loud voice on high.
11608                                                                                                                                                                                                                                                     And they rose early in the morning, and went forth into the wilderness of Tekoa: and as they went forth, Jehoshaphat stood and said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in the LORD your God, so shall ye be established; believe his prophets, so shall ye prosper.
11609                                                                                                                                                                                                                                                                                                                    And when he had consulted with the people, he appointed singers unto the LORD, and that should praise the beauty of holiness, as they went out before the army, and to say, Praise the LORD; for his mercy endureth for ever.
11610                                                                                                                                                                                                                                                                                                                                                                   And when they began to sing and to praise, the LORD set ambushments against the children of Ammon, Moab, and mount Seir, which were come against Judah; and they were smitten.
11611                                                                                                                                                                                                                                                                                                                              For the children of Ammon and Moab stood up against the inhabitants of mount Seir, utterly to slay and destroy them: and when they had made an end of the inhabitants of Seir, every one helped to destroy another.
11612                                                                                                                                                                                                                                                                                                                                                                          And when Judah came toward the watch tower in the wilderness, they looked unto the multitude, and, behold, they were dead bodies fallen to the earth, and none escaped.
11613                                                                                                                                                                                                                                  And when Jehoshaphat and his people came to take away the spoil of them, they found among them in abundance both riches with the dead bodies, and precious jewels, which they stripped off for themselves, more than they could carry away: and they were three days in gathering of the spoil, it was so much.
11614                                                                                                                                                                                                                                                                                                                                              And on the fourth day they assembled themselves in the valley of Berachah; for there they blessed the LORD: therefore the name of the same place was called, The valley of Berachah, unto this day.
11615                                                                                                                                                                                                                                                                                                                                                     Then they returned, every man of Judah and Jerusalem, and Jehoshaphat in the forefront of them, to go again to Jerusalem with joy; for the LORD had made them to rejoice over their enemies.
11616                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they came to Jerusalem with psalteries and harps and trumpets unto the house of the LORD.
11617                                                                                                                                                                                                                                                                                                                                                                                                          And the fear of God was on all the kingdoms of those countries, when they had heard that the LORD fought against the enemies of Israel.
11618                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So the realm of Jehoshaphat was quiet: for his God gave him rest round about.
11619                                                                                                                                                                                                                                                                                                                                         And Jehoshaphat reigned over Judah: he was thirty and five years old when he began to reign, and he reigned twenty and five years in Jerusalem. And his mother's name was Azubah the daughter of Shilhi.
11620                                                                                                                                                                                                                                                                                                                                                                                                                       And he walked in the way of Asa his father, and departed not from it, doing that which was right in the sight of the LORD.
11621                                                                                                                                                                                                                                                                                                                                                                                                                  Howbeit the high places were not taken away: for as yet the people had not prepared their hearts unto the God of their fathers.
11622                                                                                                                                                                                                                                                                                                                                                                    Now the rest of the acts of Jehoshaphat, first and last, behold, they are written in the book of Jehu the son of Hanani, who is mentioned in the book of the kings of Israel.
11623                                                                                                                                                                                                                                                                                                                                                                                                                                    And after this did Jehoshaphat king of Judah join himself with Ahaziah king of Israel, who did very wickedly:
11624                                                                                                                                                                                                                                                                                                                                                                                                                                           And he joined himself with him to make ships to go to Tarshish: and they made the ships in Eziongaber.
11625                                                                                                                                                                                                                                                                                                         Then Eliezer the son of Dodavah of Mareshah prophesied against Jehoshaphat, saying, Because thou hast joined thyself with Ahaziah, the LORD hath broken thy works. And the ships were broken, that they were not able to go to Tarshish.
11626                                                                                                                                                                                                                                                                                                                                                                                                          Now Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David. And Jehoram his son reigned in his stead.
11627                                                                                                                                                                                                                                                                                                                                                                And he had brethren the sons of Jehoshaphat, Azariah, and Jehiel, and Zechariah, and Azariah, and Michael, and Shephatiah: all these were the sons of Jehoshaphat king of Israel.
11628                                                                                                                                                                                                                                                                                                                                                            And their father gave them great gifts of silver, and of gold, and of precious things, with fenced cities in Judah: but the kingdom gave he to Jehoram; because he was the firstborn.
11629                                                                                                                                                                                                                                                                                                                                                                         Now when Jehoram was risen up to the kingdom of his father, he strengthened himself, and slew all his brethren with the sword, and divers also of the princes of Israel.
11630                                                                                                                                                                                                                                                                                                                                                                                                                                            Jehoram was thirty and two years old when he began to reign, and he reigned eight years in Jerusalem.
11631                                                                                                                                                                                                                                                                                                                                                             And he walked in the way of the kings of Israel, like as did the house of Ahab: for he had the daughter of Ahab to wife: and he wrought that which was evil in the eyes of the LORD.
11632                                                                                                                                                                                                                                                                                                                                                                  Howbeit the LORD would not destroy the house of David, because of the covenant that he had made with David, and as he promised to give a light to him and to his sons for ever.
11633                                                                                                                                                                                                                                                                                                                                                                                                                                                  In his days the Edomites revolted from under the dominion of Judah, and made themselves a king.
11634                                                                                                                                                                                                                                                                                                                                                               Then Jehoram went forth with his princes, and all his chariots with him: and he rose up by night, and smote the Edomites which compassed him in, and the captains of the chariots.
11635                                                                                                                                                                                                                                                                                                                                                              So the Edomites revolted from under the hand of Judah unto this day. The same time also did Libnah revolt from under his hand; because he had forsaken the LORD God of his fathers.
11636                                                                                                                                                                                                                                                                                                                                                                                               Moreover he made high places in the mountains of Judah and caused the inhabitants of Jerusalem to commit fornication, and compelled Judah thereto.
11637                                                                                                                                                                                                                                                                                                                          And there came a writing to him from Elijah the prophet, saying, Thus saith the LORD God of David thy father, Because thou hast not walked in the ways of Jehoshaphat thy father, nor in the ways of Asa king of Judah,
11638                                                                                                                                                                                                                                                                                     But hast walked in the way of the kings of Israel, and hast made Judah and the inhabitants of Jerusalem to go a whoring, like to the whoredoms of the house of Ahab, and also hast slain thy brethren of thy father's house, which were better than thyself:
11639                                                                                                                                                                                                                                                                                                                                                                                                                                  Behold, with a great plague will the LORD smite thy people, and thy children, and thy wives, and all thy goods:
11640                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt have great sickness by disease of thy bowels, until thy bowels fall out by reason of the sickness day by day.
11641                                                                                                                                                                                                                                                                                                                                                                                                                  Moreover the LORD stirred up against Jehoram the spirit of the Philistines, and of the Arabians, that were near the Ethiopians:
11642                                                                                                                                                                                                                                                                                                        And they came up into Judah, and brake into it, and carried away all the substance that was found in the king's house, and his sons also, and his wives; so that there was never a son left him, save Jehoahaz, the youngest of his sons.
11643                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And after all this the LORD smote him in his bowels with an incurable disease.
11644                                                                                                                                                                                                                                                                                                                   And it came to pass, that in process of time, after the end of two years, his bowels fell out by reason of his sickness: so he died of sore diseases. And his people made no burning for him, like the burning of his fathers.
11645                                                                                                                                                                                                                                                                                                                       Thirty and two years old was he when he began to reign, and he reigned in Jerusalem eight years, and departed without being desired. Howbeit they buried him in the city of David, but not in the sepulchres of the kings.
11646                                                                                                                                                                                                                                                                                                                     And the inhabitants of Jerusalem made Ahaziah his youngest son king in his stead: for the band of men that came with the Arabians to the camp had slain all the eldest. So Ahaziah the son of Jehoram king of Judah reigned.
11647                                                                                                                                                                                                                                                                                                                                                                                      Forty and two years old was Ahaziah when he began to reign, and he reigned one year in Jerusalem. His mother's name also was Athaliah the daughter of Omri.
11648                                                                                                                                                                                                                                                                                                                                                                                                                                                He also walked in the ways of the house of Ahab: for his mother was his counselor to do wickedly.
11649                                                                                                                                                                                                                                                                                                                                                                                            Wherefore he did evil in the sight of the LORD like the house of Ahab: for they were his counselors after the death of his father to his destruction.
11650                                                                                                                                                                                                                                                                                                                                                                       He walked also after their counsel, and went with Jehoram the son of Ahab king of Israel to war against Hazael king of Syria at Ramothgilead: and the Syrians smote Joram.
11651                                                                                                                                                                                                                                                                                    And he returned to be healed in Jezreel because of the wounds which were given him at Ramah, when he fought with Hazael king of Syria. And Azariah the son of Jehoram king of Judah went down to see Jehoram the son of Ahab at Jezreel, because he was sick.
11652                                                                                                                                                                                                                                                                                                                                            And the destruction of Ahaziah was of God by coming to Joram: for when he was come, he went out with Jehoram against Jehu the son of Nimshi, whom the LORD had anointed to cut off the house of Ahab.
11653                                                                                                                                                                                                                                                                                                                                           And it came to pass, that, when Jehu was executing judgment upon the house of Ahab, and found the princes of Judah, and the sons of the brethren of Ahaziah, that ministered to Ahaziah, he slew them.
11654                                                                                                                                                                                                                                        And he sought Ahaziah: and they caught him, (for he was hid in Samaria,) and brought him to Jehu: and when they had slain him, they buried him: Because, said they, he is the son of Jehoshaphat, who sought the LORD with all his heart. So the house of Ahaziah had no power to keep still the kingdom.
11655                                                                                                                                                                                                                                                                                                                                                                                                             But when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the seed royal of the house of Judah.
11656                                                                                                                                                                                            But Jehoshabeath, the daughter of the king, took Joash the son of Ahaziah, and stole him from among the king's sons that were slain, and put him and his nurse in a bedchamber. So Jehoshabeath, the daughter of king Jehoram, the wife of Jehoiada the priest, (for she was the sister of Ahaziah,) hid him from Athaliah, so that she slew him not.
11657                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he was with them hid in the house of God six years: and Athaliah reigned over the land.
11658                                                                                                                                                                                                                                                                   And in the seventh year Jehoiada strengthened himself, and took the captains of hundreds, Azariah the son of Jeroham, and Ishmael the son of Jehohanan, and Azariah the son of Obed, and Maaseiah the son of Adaiah, and Elishaphat the son of Zichri, into covenant with him.
11659                                                                                                                                                                                                                                                                                                                                                                                       And they went about in Judah, and gathered the Levites out of all the cities of Judah, and the chief of the fathers of Israel, and they came to Jerusalem.
11660                                                                                                                                                                                                                                                                                                                                                               And all the congregation made a covenant with the king in the house of God. And he said unto them, Behold, the king's son shall reign, as the LORD hath said of the sons of David.
11661                                                                                                                                                                                                                                                                                                                                                                                               This is the thing that ye shall do; A third part of you entering on the sabbath, of the priests and of the Levites, shall be porters of the doors;
11662                                                                                                                                                                                                                                                                                                                                                                               And a third part shall be at the king's house; and a third part at the gate of the foundation: and all the people shall be in the courts of the house of the LORD.
11663                                                                                                                                                                                                                                                                                                                                                 But let none come into the house of the LORD, save the priests, and they that minister of the Levites; they shall go in, for they are holy: but all the people shall keep the watch of the LORD.
11664                                                                                                                                                                                                                                                                                                                And the Levites shall compass the king round about, every man with his weapons in his hand; and whosoever else cometh into the house, he shall be put to death: but be ye with the king when he cometh in, and when he goeth out.
11665                                                                                                                                                                                                                                                                                So the Levites and all Judah did according to all things that Jehoiada the priest had commanded, and took every man his men that were to come in on the sabbath, with them that were to go out on the sabbath: for Jehoiada the priest dismissed not the courses.
11666                                                                                                                                                                                                                                                                                                                                                                                Moreover Jehoiada the priest delivered to the captains of hundreds spears, and bucklers, and shields, that had been king David's, which were in the house of God.
11667                                                                                                                                                                                                                                                                                                                                                And he set all the people, every man having his weapon in his hand, from the right side of the temple to the left side of the temple, along by the altar and the temple, by the king round about.
11668                                                                                                                                                                                                                                                                                                                                                            Then they brought out the king's son, and put upon him the crown, and gave him the testimony, and made him king. And Jehoiada and his sons anointed him, and said, God save the king.
11669                                                                                                                                                                                                                                                                                                                                                                                                                Now when Athaliah heard the noise of the people running and praising the king, she came to the people into the house of the LORD:
11670                                                                                                                                                                                                       And she looked, and, behold, the king stood at his pillar at the entering in, and the princes and the trumpets by the king: and all the people of the land rejoiced, and sounded with trumpets, also the singers with instruments of music, and such as taught to sing praise. Then Athaliah rent her clothes, and said, Treason, Treason.
11671                                                                                                                                                                                                                                                                               Then Jehoiada the priest brought out the captains of hundreds that were set over the host, and said unto them, Have her forth of the ranges: and whoso followeth her, let him be slain with the sword. For the priest said, Slay her not in the house of the LORD.
11672                                                                                                                                                                                                                                                                                                                                                                                                                     So they laid hands on her; and when she was come to the entering of the horse gate by the king's house, they slew her there.
11673                                                                                                                                                                                                                                                                                                                                                                                                               And Jehoiada made a covenant between him, and between all the people, and between the king, that they should be the LORD's people.
11674                                                                                                                                                                                                                                                                                                                                                                           Then all the people went to the house of Baal, and brake it down, and brake his altars and his images in pieces, and slew Mattan the priest of Baal before the altars.
11675                                                                                                                                                                                                                                          Also Jehoiada appointed the offices of the house of the LORD by the hand of the priests the Levites, whom David had distributed in the house of the LORD, to offer the burnt offerings of the LORD, as it is written in the law of Moses, with rejoicing and with singing, as it was ordained by David.
11676                                                                                                                                                                                                                                                                                                                                                                                                                          And he set the porters at the gates of the house of the LORD, that none which was unclean in any thing should enter in.
11677                                                                                                                                                                                                                                                         And he took the captains of hundreds, and the nobles, and the governors of the people, and all the people of the land, and brought down the king from the house of the LORD: and they came through the high gate into the king's house, and set the king upon the throne of the kingdom.
11678                                                                                                                                                                                                                                                                                                                                                                                                                              And all the people of the land rejoiced: and the city was quiet, after that they had slain Athaliah with the sword.
11679                                                                                                                                                                                                                                                                                                                                                                                                       Joash was seven years old when he began to reign, and he reigned forty years in Jerusalem. His mother's name also was Zibiah of Beersheba.
11680                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joash did that which was right in the sight of the LORD all the days of Jehoiada the priest.
11681                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jehoiada took for him two wives; and he begat sons and daughters.
11682                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass after this, that Joash was minded to repair the house of the LORD.
11683                                                                                                                                                                                                                                                                               And he gathered together the priests and the Levites, and said to them, Go out unto the cities of Judah, and gather of all Israel money to repair the house of your God from year to year, and see that ye hasten the matter. Howbeit the Levites hastened it not.
11684                                                                                                                                                                                                                                          And the king called for Jehoiada the chief, and said unto him, Why hast thou not required of the Levites to bring in out of Judah and out of Jerusalem the collection, according to the commandment of Moses the servant of the LORD, and of the congregation of Israel, for the tabernacle of witness?
11685                                                                                                                                                                                                                                                                                                                                                                             For the sons of Athaliah, that wicked woman, had broken up the house of God; and also all the dedicated things of the house of the LORD did they bestow upon Baalim.
11686                                                                                                                                                                                                                                                                                                                                                                                                                                        And at the king's commandment they made a chest, and set it without at the gate of the house of the LORD.
11687                                                                                                                                                                                                                                                                                                                                                                               And they made a proclamation through Judah and Jerusalem, to bring in to the LORD the collection that Moses the servant of God laid upon Israel in the wilderness.
11688                                                                                                                                                                                                                                                                                                                                                                                                                            And all the princes and all the people rejoiced, and brought in, and cast into the chest, until they had made an end.
11689                                                                                                                                                                                              Now it came to pass, that at what time the chest was brought unto the king's office by the hand of the Levites, and when they saw that there was much money, the king's scribe and the high priest's officer came and emptied the chest, and took it, and carried it to his place again. Thus they did day by day, and gathered money in abundance.
11690                                                                                                                                                                                                                                                                                                       And the king and Jehoiada gave it to such as did the work of the service of the house of the LORD, and hired masons and carpenters to repair the house of the LORD, and also such as wrought iron and brass to mend the house of the LORD.
11691                                                                                                                                                                                                                                                                                                                                                                                                                     So the workmen wrought, and the work was perfected by them, and they set the house of God in his state, and strengthened it.
11692                                                                                                                                                                                                  And when they had finished it, they brought the rest of the money before the king and Jehoiada, whereof were made vessels for the house of the LORD, even vessels to minister, and to offer withal, and spoons, and vessels of gold and silver. And they offered burnt offerings in the house of the LORD continually all the days of Jehoiada.
11693                                                                                                                                                                                                                                                                                                                                                                                                                                  But Jehoiada waxed old, and was full of days when he died; an hundred and thirty years old was he when he died.
11694                                                                                                                                                                                                                                                                                                                                                                                                             And they buried him in the city of David among the kings, because he had done good in Israel, both toward God, and toward his house.
11695                                                                                                                                                                                                                                                                                                                                                                                                                    Now after the death of Jehoiada came the princes of Judah, and made obeisance to the king. Then the king hearkened unto them.
11696                                                                                                                                                                                                                                                                                                                                                                                          And they left the house of the LORD God of their fathers, and served groves and idols: and wrath came upon Judah and Jerusalem for this their trespass.
11697                                                                                                                                                                                                                                                                                                                                                                                                                   Yet he sent prophets to them, to bring them again unto the LORD; and they testified against them: but they would not give ear.
11698                                                                                                                                                                                                                                                                And the Spirit of God came upon Zechariah the son of Jehoiada the priest, which stood above the people, and said unto them, Thus saith God, Why transgress ye the commandments of the LORD, that ye cannot prosper? because ye have forsaken the LORD, he hath also forsaken you.
11699                                                                                                                                                                                                                                                                                                                                                                                                                 And they conspired against him, and stoned him with stones at the commandment of the king in the court of the house of the LORD.
11700                                                                                                                                                                                                                                                                                                                                                                   Thus Joash the king remembered not the kindness which Jehoiada his father had done to him, but slew his son. And when he died, he said, The LORD look upon it, and require it.
11701                                                                                                                                                                                                                                                                                       And it came to pass at the end of the year, that the host of Syria came up against him: and they came to Judah and Jerusalem, and destroyed all the princes of the people from among the people, and sent all the spoil of them unto the king of Damascus.
11702                                                                                                                                                                                                                                                                                                                        For the army of the Syrians came with a small company of men, and the LORD delivered a very great host into their hand, because they had forsaken the LORD God of their fathers. So they executed judgment against Joash.
11703                                                                                                                                                                                                                                    And when they were departed from him, (for they left him in great diseases,) his own servants conspired against him for the blood of the sons of Jehoiada the priest, and slew him on his bed, and he died: and they buried him in the city of David, but they buried him not in the sepulchres of the kings.
11704                                                                                                                                                                                                                                                                                                                                                                                                           And these are they that conspired against him; Zabad the son of Shimeath an Ammonitess, and Jehozabad the son of Shimrith a Moabitess.
11705                                                                                                                                                                                                                                                                                                                        Now concerning his sons, and the greatness of the burdens laid upon him, and the repairing of the house of God, behold, they are written in the story of the book of the kings. And Amaziah his son reigned in his stead.
11706                                                                                                                                                                                                                                                                                                                                                                               Amaziah was twenty and five years old when he began to reign, and he reigned twenty and nine years in Jerusalem. And his mother's name was Jehoaddan of Jerusalem.
11707                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he did that which was right in the sight of the LORD, but not with a perfect heart.
11708                                                                                                                                                                                                                                                                                                                                                                                                                     Now it came to pass, when the kingdom was established to him, that he slew his servants that had killed the king his father.
11709                                                                                                                                                                                                                                                                                 But he slew not their children, but did as it is written in the law in the book of Moses, where the LORD commanded, saying, The fathers shall not die for the children, neither shall the children die for the fathers, but every man shall die for his own sin.
11710                                                                                                                                                                                   Moreover Amaziah gathered Judah together, and made them captains over thousands, and captains over hundreds, according to the houses of their fathers, throughout all Judah and Benjamin: and he numbered them from twenty years old and above, and found them three hundred thousand choice men, able to go forth to war, that could handle spear and shield.
11711                                                                                                                                                                                                                                                                                                                                                                                                                                            He hired also an hundred thousand mighty men of valor out of Israel for an hundred talents of silver.
11712                                                                                                                                                                                                                                                                                                                                                                          But there came a man of God to him, saying, O king, let not the army of Israel go with thee; for the LORD is not with Israel, to wit, with all the children of Ephraim.
11713                                                                                                                                                                                                                                                                                                                                                                                                   But if thou wilt go, do it; be strong for the battle: God shall make thee fall before the enemy: for God hath power to help, and to cast down.
11714                                                                                                                                                                                                                                                                                                                                       And Amaziah said to the man of God, But what shall we do for the hundred talents which I have given to the army of Israel? And the man of God answered, The LORD is able to give thee much more than this.
11715                                                                                                                                                                                                                                                                                                                                             Then Amaziah separated them, to wit, the army that was come to him out of Ephraim, to go home again: wherefore their anger was greatly kindled against Judah, and they returned home in great anger.
11716                                                                                                                                                                                                                                                                                                                                                                                                      And Amaziah strengthened himself, and led forth his people, and went to the valley of salt, and smote of the children of Seir ten thousand.
11717                                                                                                                                                                                                                                                                                                                                     And other ten thousand left alive did the children of Judah carry away captive, and brought them unto the top of the rock, and cast them down from the top of the rock, that they all were broken in pieces.
11718                                                                                                                                                                                                                                                                                                                        But the soldiers of the army which Amaziah sent back, that they should not go with him to battle, fell upon the cities of Judah, from Samaria even unto Bethhoron, and smote three thousand of them, and took much spoil.
11719                                                                                                                                                                                                                                                                                                         Now it came to pass, after that Amaziah was come from the slaughter of the Edomites, that he brought the gods of the children of Seir, and set them up to be his gods, and bowed down himself before them, and burned incense unto them.
11720                                                                                                                                                                                                                                                                                                                 Wherefore the anger of the LORD was kindled against Amaziah, and he sent unto him a prophet, which said unto him, Why hast thou sought after the gods of the people, which could not deliver their own people out of thine hand?
11721                                                                                                                                                                                                                                  And it came to pass, as he talked with him, that the king said unto him, Art thou made of the king's counsel? forbear; why shouldest thou be smitten? Then the prophet forbare, and said, I know that God hath determined to destroy thee, because thou hast done this, and hast not hearkened unto my counsel.
11722                                                                                                                                                                                                                                                                                                                                                                               Then Amaziah king of Judah took advice, and sent to Joash, the son of Jehoahaz, the son of Jehu, king of Israel, saying, Come, let us see one another in the face.
11723                                                                                                                                                                                                                                                                            And Joash king of Israel sent to Amaziah king of Judah, saying, The thistle that was in Lebanon sent to the cedar that was in Lebanon, saying, Give thy daughter to my son to wife: and there passed by a wild beast that was in Lebanon, and trode down the thistle.
11724                                                                                                                                                                                                                                                                                                                                 Thou sayest, Lo, thou hast smitten the Edomites; and thine heart lifteth thee up to boast: abide now at home; why shouldest thou meddle to thine hurt, that thou shouldest fall, even thou, and Judah with thee?
11725                                                                                                                                                                                                                                                                                                                                                                                           But Amaziah would not hear; for it came of God, that he might deliver them into the hand of their enemies, because they sought after the gods of Edom.
11726                                                                                                                                                                                                                                                                                                                                                                                          So Joash the king of Israel went up; and they saw one another in the face, both he and Amaziah king of Judah, at Bethshemesh, which belongeth to Judah.
11727                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Judah was put to the worse before Israel, and they fled every man to his tent.
11728                                                                                                                                                                                                                                                                                             And Joash the king of Israel took Amaziah king of Judah, the son of Joash, the son of Jehoahaz, at Bethshemesh, and brought him to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim to the corner gate, four hundred cubits.
11729                                                                                                                                                                                                                                                                                                                                               And he took all the gold and the silver, and all the vessels that were found in the house of God with Obededom, and the treasures of the king's house, the hostages also, and returned to Samaria.
11730                                                                                                                                                                                                                                                                                                                                                                                                                          And Amaziah the son of Joash king of Judah lived after the death of Joash son of Jehoahaz king of Israel fifteen years.
11731                                                                                                                                                                                                                                                                                                                                                                                                                  Now the rest of the acts of Amaziah, first and last, behold, are they not written in the book of the kings of Judah and Israel?
11732                                                                                                                                                                                                                                                                                                                                           Now after the time that Amaziah did turn away from following the LORD they made a conspiracy against him in Jerusalem; and he fled to Lachish: but they sent to Lachish after him, and slew him there.
11733                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they brought him upon horses, and buried him with his fathers in the city of Judah.
11734                                                                                                                                                                                                                                                                                                                                                                                                                        Then all the people of Judah took Uzziah, who was sixteen years old, and made him king in the room of his father Amaziah.
11735                                                                                                                                                                                                                                                                                                                                                                                                                                                            He built Eloth, and restored it to Judah, after that the king slept with his fathers.
11736                                                                                                                                                                                                                                                                                                                                                                                          Sixteen years old was Uzziah when he began to reign, and he reigned fifty and two years in Jerusalem. His mother's name also was Jecoliah of Jerusalem.
11737                                                                                                                                                                                                                                                                                                                                                                                                                                          And he did that which was right in the sight of the LORD, according to all that his father Amaziah did.
11738                                                                                                                                                                                                                                                                                                                                                                                             And he sought God in the days of Zechariah, who had understanding in the visions of God: and as long as he sought the LORD, God made him to prosper.
11739                                                                                                                                                                                                                                                                                                                                                 And he went forth and warred against the Philistines, and brake down the wall of Gath, and the wall of Jabneh, and the wall of Ashdod, and built cities about Ashdod, and among the Philistines.
11740                                                                                                                                                                                                                                                                                                                                                                                                                                    And God helped him against the Philistines, and against the Arabians that dwelt in Gurbaal, and the Mehunims.
11741                                                                                                                                                                                                                                                                                                                                                                                                    And the Ammonites gave gifts to Uzziah: and his name spread abroad even to the entering in of Egypt; for he strengthened himself exceedingly.
11742                                                                                                                                                                                                                                                                                                                                                                                                        Moreover Uzziah built towers in Jerusalem at the corner gate, and at the valley gate, and at the turning of the wall, and fortified them.
11743                                                                                                                                                                                                                                                                                                                       Also he built towers in the desert, and digged many wells: for he had much cattle, both in the low country, and in the plains: husbandmen also, and vine dressers in the mountains, and in Carmel: for he loved husbandry.
11744                                                                                                                                                                                                                                                                                                             Moreover Uzziah had an host of fighting men, that went out to war by bands, according to the number of their account by the hand of Jeiel the scribe and Maaseiah the ruler, under the hand of Hananiah, one of the king's captains.
11745                                                                                                                                                                                                                                                                                                                                                                                                                                       The whole number of the chief of the fathers of the mighty men of valor were two thousand and six hundred.
11746                                                                                                                                                                                                                                                                                                                                                                               And under their hand was an army, three hundred thousand and seven thousand and five hundred, that made war with mighty power, to help the king against the enemy.
11747                                                                                                                                                                                                                                                                                                                                                                                                      And Uzziah prepared for them throughout all the host shields, and spears, and helmets, and habergeons, and bows, and slings to cast stones.
11748                                                                                                                                                                                                                                                                                                                And he made in Jerusalem engines, invented by cunning men, to be on the towers and upon the bulwarks, to shoot arrows and great stones withal. And his name spread far abroad; for he was marvelously helped, till he was strong.
11749                                                                                                                                                                                                                                                                                                                                                But when he was strong, his heart was lifted up to his destruction: for he transgressed against the LORD his God, and went into the temple of the LORD to burn incense upon the altar of incense.
11750                                                                                                                                                                                                                                                                                                                                                                                                                                     And Azariah the priest went in after him, and with him fourscore priests of the LORD, that were valiant men:
11751                                                                                                                                                                                                                               And they withstood Uzziah the king, and said unto him, It appertaineth not unto thee, Uzziah, to burn incense unto the LORD, but to the priests the sons of Aaron, that are consecrated to burn incense: go out of the sanctuary; for thou hast trespassed; neither shall it be for thine honor from the LORD God.
11752                                                                                                                                                                                                                                                                                                               Then Uzziah was wroth, and had a censer in his hand to burn incense: and while he was wroth with the priests, the leprosy even rose up in his forehead before the priests in the house of the LORD, from beside the incense altar.
11753                                                                                                                                                                                                                                                                                                                      And Azariah the chief priest, and all the priests, looked upon him, and, behold, he was leprous in his forehead, and they thrust him out from thence; yea, himself hasted also to go out, because the LORD had smitten him.
11754                                                                                                                                                                                                                                                                                                             And Uzziah the king was a leper unto the day of his death, and dwelt in a several house, being a leper; for he was cut off from the house of the LORD: and Jotham his son was over the king's house, judging the people of the land.
11755                                                                                                                                                                                                                                                                                                                                                                                                                                              Now the rest of the acts of Uzziah, first and last, did Isaiah the prophet, the son of Amoz, write.
11756                                                                                                                                                                                                                                                                                                                                            So Uzziah slept with his fathers, and they buried him with his fathers in the field of the burial which belonged to the kings; for they said, He is a leper: and Jotham his son reigned in his stead.
11757                                                                                                                                                                                                                                                                                                                                                                              Jotham was twenty and five years old when he began to reign, and he reigned sixteen years in Jerusalem. His mother's name also was Jerushah, the daughter of Zadok.
11758                                                                                                                                                                                                                                                                                                                                                     And he did that which was right in the sight of the LORD, according to all that his father Uzziah did: howbeit he entered not into the temple of the LORD. And the people did yet corruptly.
11759                                                                                                                                                                                                                                                                                                                                                                                                                                                         He built the high gate of the house of the LORD, and on the wall of Ophel he built much.
11760                                                                                                                                                                                                                                                                                                                                                                                                                                              Moreover he built cities in the mountains of Judah, and in the forests he built castles and towers.
11761                                                                                                                                                                                                                                   He fought also with the king of the Ammonites, and prevailed against them. And the children of Ammon gave him the same year an hundred talents of silver, and ten thousand measures of wheat, and ten thousand of barley. So much did the children of Ammon pay unto him, both the second year, and the third.
11762                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So Jotham became mighty, because he prepared his ways before the LORD his God.
11763                                                                                                                                                                                                                                                                                                                                                                                                           Now the rest of the acts of Jotham, and all his wars, and his ways, lo, they are written in the book of the kings of Israel and Judah.
11764                                                                                                                                                                                                                                                                                                                                                                                                                                                 He was five and twenty years old when he began to reign, and reigned sixteen years in Jerusalem.
11765                                                                                                                                                                                                                                                                                                                                                                                                                              And Jotham slept with his fathers, and they buried him in the city of David: and Ahaz his son reigned in his stead.
11766                                                                                                                                                                                                                                                                                                                                                                Ahaz was twenty years old when he began to reign, and he reigned sixteen years in Jerusalem: but he did not that which was right in the sight of the LORD, like David his father:
11767                                                                                                                                                                                                                                                                                                                                                                                                                                                        For he walked in the ways of the kings of Israel, and made also molten images for Baalim.
11768                                                                                                                                                                                                                                                                                                                                                Moreover he burnt incense in the valley of the son of Hinnom, and burnt his children in the fire, after the abominations of the heathen whom the LORD had cast out before the children of Israel.
11769                                                                                                                                                                                                                                                                                                                                                                                                                                           He sacrificed also and burnt incense in the high places, and on the hills, and under every green tree.
11770                                                                                                                                                                                                                                                         Wherefore the LORD his God delivered him into the hand of the king of Syria; and they smote him, and carried away a great multitude of them captives, and brought them to Damascus. And he was also delivered into the hand of the king of Israel, who smote him with a great slaughter.
11771                                                                                                                                                                                                                                                                                                                                                                      For Pekah the son of Remaliah slew in Judah an hundred and twenty thousand in one day, which were all valiant men; because they had forsaken the LORD God of their fathers.
11772                                                                                                                                                                                                                                                                                                                                                                                                 And Zichri, a mighty man of Ephraim, slew Maaseiah the king's son, and Azrikam the governor of the house, and Elkanah that was next to the king.
11773                                                                                                                                                                                                                                                                                                                                                   And the children of Israel carried away captive of their brethren two hundred thousand, women, sons, and daughters, and took also away much spoil from them, and brought the spoil to Samaria.
11774                                                                                                                                                                                                                                     But a prophet of the LORD was there, whose name was Oded: and he went out before the host that came to Samaria, and said unto them, Behold, because the LORD God of your fathers was wroth with Judah, he hath delivered them into your hand, and ye have slain them in a rage that reacheth up unto heaven.
11775                                                                                                                                                                                                                                                                                                                                                              And now ye purpose to keep under the children of Judah and Jerusalem for bondmen and bondwomen unto you: but are there not with you, even with you, sins against the LORD your God?
11776                                                                                                                                                                                                                                                                                                                                                                                               Now hear me therefore, and deliver the captives again, which ye have taken captive of your brethren: for the fierce wrath of the LORD is upon you.
11777                                                                                                                                                                                                                                                                                                                Then certain of the heads of the children of Ephraim, Azariah the son of Johanan, Berechiah the son of Meshillemoth, and Jehizkiah the son of Shallum, and Amasa the son of Hadlai, stood up against them that came from the war,
11778                                                                                                                                                                                                                                                                                                And said unto them, Ye shall not bring in the captives hither: for whereas we have offended against the LORD already, ye intend to add more to our sins and to our trespass: for our trespass is great, and there is fierce wrath against Israel.
11779                                                                                                                                                                                                                                                                                                                                                                                                                                                    So the armed men left the captives and the spoil before the princes and all the congregation.
11780                                                                                                                                                                 And the men which were expressed by name rose up, and took the captives, and with the spoil clothed all that were naked among them, and arrayed them, and shod them, and gave them to eat and to drink, and anointed them, and carried all the feeble of them upon asses, and brought them to Jericho, the city of palm trees, to their brethren: then they returned to Samaria.
11781                                                                                                                                                                                                                                                                                                                                                                                                                                                                           At that time did king Ahaz send unto the kings of Assyria to help him.
11782                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For again the Edomites had come and smitten Judah, and carried away captives.
11783                                                                                                                                                                                                                                                           The Philistines also had invaded the cities of the low country, and of the south of Judah, and had taken Bethshemesh, and Ajalon, and Gederoth, and Shocho with the villages thereof, and Timnah with the villages thereof, Gimzo also and the villages thereof: and they dwelt there.
11784                                                                                                                                                                                                                                                                                                                                                                                                                  For the LORD brought Judah low because of Ahaz king of Israel; for he made Judah naked, and transgressed sore against the LORD.
11785                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Tilgathpilneser king of Assyria came unto him, and distressed him, but strengthened him not.
11786                                                                                                                                                                                                                                                                                                                                                                    For Ahaz took away a portion out of the house of the LORD, and out of the house of the king, and of the princes, and gave it unto the king of Assyria: but he helped him not.
11787                                                                                                                                                                                                                                                                                                                                                                                                                                               And in the time of his distress did he trespass yet more against the LORD: this is that king Ahaz.
11788                                                                                                                                                                                                                                                                                                        For he sacrificed unto the gods of Damascus, which smote him: and he said, Because the gods of the kings of Syria help them, therefore will I sacrifice to them, that they may help me. But they were the ruin of him, and of all Israel.
11789                                                                                                                                                                                                                                                                                                                              And Ahaz gathered together the vessels of the house of God, and cut in pieces the vessels of the house of God, and shut up the doors of the house of the LORD, and he made him altars in every corner of Jerusalem.
11790                                                                                                                                                                                                                                                                                                                                                                                                       And in every several city of Judah he made high places to burn incense unto other gods, and provoked to anger the LORD God of his fathers.
11791                                                                                                                                                                                                                                                                                                                                                                                                             Now the rest of his acts and of all his ways, first and last, behold, they are written in the book of the kings of Judah and Israel.
11792                                                                                                                                                                                                                                                                                                                                             And Ahaz slept with his fathers, and they buried him in the city, even in Jerusalem: but they brought him not into the sepulchres of the kings of Israel: and Hezekiah his son reigned in his stead.
11793                                                                                                                                                                                                                                                                                                                                                                   Hezekiah began to reign when he was five and twenty years old, and he reigned nine and twenty years in Jerusalem. And his mother's name was Abijah, the daughter of Zechariah.
11794                                                                                                                                                                                                                                                                                                                                                                                                                                       And he did that which was right in the sight of the LORD, according to all that David his father had done.
11795                                                                                                                                                                                                                                                                                                                                                                                                                             He in the first year of his reign, in the first month, opened the doors of the house of the LORD, and repaired them.
11796                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he brought in the priests and the Levites, and gathered them together into the east street,
11797                                                                                                                                                                                                                                                                                                                                                                  And said unto them, Hear me, ye Levites, sanctify now yourselves, and sanctify the house of the LORD God of your fathers, and carry forth the filthiness out of the holy place.
11798                                                                                                                                                                                                                                                                                                                                  For our fathers have trespassed, and done that which was evil in the eyes of the LORD our God, and have forsaken him, and have turned away their faces from the habitation of the LORD, and turned their backs.
11799                                                                                                                                                                                                                                                                                                                                                                          Also they have shut up the doors of the porch, and put out the lamps, and have not burned incense nor offered burnt offerings in the holy place unto the God of Israel.
11800                                                                                                                                                                                                                                                                                                                                                                                  Wherefore the wrath of the LORD was upon Judah and Jerusalem, and he hath delivered them to trouble, to astonishment, and to hissing, as ye see with your eyes.
11801                                                                                                                                                                                                                                                                                                                                                                                                                           For, lo, our fathers have fallen by the sword, and our sons and our daughters and our wives are in captivity for this.
11802                                                                                                                                                                                                                                                                                                                                                                                                                             Now it is in mine heart to make a covenant with the LORD God of Israel, that his fierce wrath may turn away from us.
11803                                                                                                                                                                                                                                                                                                                                                                                           My sons, be not now negligent: for the LORD hath chosen you to stand before him, to serve him, and that ye should minister unto him, and burn incense.
11804                                                                                                                                                                                                                                                                       Then the Levites arose, Mahath the son of Amasai, and Joel the son of Azariah, of the sons of the Kohathites: and of the sons of Merari, Kish the son of Abdi, and Azariah the son of Jehalelel: and of the Gershonites; Joah the son of Zimmah, and Eden the son of Joah:
11805                                                                                                                                                                                                                                                                                                                                                                                                                                             And of the sons of Elizaphan; Shimri, and Jeiel: and of the sons of Asaph; Zechariah, and Mattaniah:
11806                                                                                                                                                                                                                                                                                                                                                                                                                                                 And of the sons of Heman; Jehiel, and Shimei: and of the sons of Jeduthun; Shemaiah, and Uzziel.
11807                                                                                                                                                                                                                                                                                                                                                                     And they gathered their brethren, and sanctified themselves, and came, according to the commandment of the king, by the words of the LORD, to cleanse the house of the LORD.
11808                                                                                                                                                                                                                                                                  And the priests went into the inner part of the house of the LORD, to cleanse it, and brought out all the uncleanness that they found in the temple of the LORD into the court of the house of the LORD. And the Levites took it, to carry it out abroad into the brook Kidron.
11809                                                                                                                                                                                                                                                                                     Now they began on the first day of the first month to sanctify, and on the eighth day of the month came they to the porch of the LORD: so they sanctified the house of the LORD in eight days; and in the sixteenth day of the first month they made an end.
11810                                                                                                                                                                                                                                                                                                                              Then they went in to Hezekiah the king, and said, We have cleansed all the house of the LORD, and the altar of burnt offering, with all the vessels thereof, and the shewbread table, with all the vessels thereof.
11811                                                                                                                                                                                                                                                                                                                                                                  Moreover all the vessels, which king Ahaz in his reign did cast away in his transgression, have we prepared and sanctified, and, behold, they are before the altar of the LORD.
11812                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Hezekiah the king rose early, and gathered the rulers of the city, and went up to the house of the LORD.
11813                                                                                                                                                                                                                                                                                           And they brought seven bullocks, and seven rams, and seven lambs, and seven he goats, for a sin offering for the kingdom, and for the sanctuary, and for Judah. And he commanded the priests the sons of Aaron to offer them on the altar of the LORD.
11814                                                                                                                                                                                                                                                                                       So they killed the bullocks, and the priests received the blood, and sprinkled it on the altar: likewise, when they had killed the rams, they sprinkled the blood upon the altar: they killed also the lambs, and they sprinkled the blood upon the altar.
11815                                                                                                                                                                                                                                                                                                                                                                                                              And they brought forth the he goats for the sin offering before the king and the congregation; and they laid their hands upon them:
11816                                                                                                                                                                                                                                                                                                               And the priests killed them, and they made reconciliation with their blood upon the altar, to make an atonement for all Israel: for the king commanded that the burnt offering and the sin offering should be made for all Israel.
11817                                                                                                                                                                                                                                                                                                And he set the Levites in the house of the LORD with cymbals, with psalteries, and with harps, according to the commandment of David, and of Gad the king's seer, and Nathan the prophet: for so was the commandment of the LORD by his prophets.
11818                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Levites stood with the instruments of David, and the priests with the trumpets.
11819                                                                                                                                                                                                                                                                                                                              And Hezekiah commanded to offer the burnt offering upon the altar. And when the burnt offering began, the song of the LORD began also with the trumpets, and with the instruments ordained by David king of Israel.
11820                                                                                                                                                                                                                                                                                                                                                                                             And all the congregation worshipped, and the singers sang, and the trumpeters sounded: and all this continued until the burnt offering was finished.
11821                                                                                                                                                                                                                                                                                                                                                                                                                         And when they had made an end of offering, the king and all that were present with him bowed themselves, and worshipped.
11822                                                                                                                                                                                                                                                                                                                    Moreover Hezekiah the king and the princes commanded the Levites to sing praise unto the LORD with the words of David, and of Asaph the seer. And they sang praises with gladness, and they bowed their heads and worshipped.
11823                                                                                                                                                                                                                                                           Then Hezekiah answered and said, Now ye have consecrated yourselves unto the LORD, come near and bring sacrifices and thank offerings into the house of the LORD. And the congregation brought in sacrifices and thank offerings; and as many as were of a free heart burnt offerings.
11824                                                                                                                                                                                                                                                                                                                                                 And the number of the burnt offerings, which the congregation brought, was threescore and ten bullocks, an hundred rams, and two hundred lambs: all these were for a burnt offering to the LORD.
11825                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the consecrated things were six hundred oxen and three thousand sheep.
11826                                                                                                                                                                                                                                       But the priests were too few, so that they could not flay all the burnt offerings: wherefore their brethren the Levites did help them, till the work was ended, and until the other priests had sanctified themselves: for the Levites were more upright in heart to sanctify themselves than the priests.
11827                                                                                                                                                                                                                                                                                                                                                 And also the burnt offerings were in abundance, with the fat of the peace offerings, and the drink offerings for every burnt offering. So the service of the house of the LORD was set in order.
11828                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hezekiah rejoiced, and all the people, that God had prepared the people: for the thing was done suddenly.
11829                                                                                                                                                                                                                                                                                                                                        And Hezekiah sent to all Israel and Judah, and wrote letters also to Ephraim and Manasseh, that they should come to the house of the LORD at Jerusalem, to keep the passover unto the LORD God of Israel.
11830                                                                                                                                                                                                                                                                                                                                                                                                                For the king had taken counsel, and his princes, and all the congregation in Jerusalem, to keep the passover in the second month.
11831                                                                                                                                                                                                                                                                                                                                                                       For they could not keep it at that time, because the priests had not sanctified themselves sufficiently, neither had the people gathered themselves together to Jerusalem.
11832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the thing pleased the king and all the congregation.
11833                                                                                                                                                                                                                                                                                So they established a decree to make proclamation throughout all Israel, from Beersheba even to Dan, that they should come to keep the passover unto the LORD God of Israel at Jerusalem: for they had not done it of a long time in such sort as it was written.
11834                                                                                                                                                                                                   So the posts went with the letters from the king and his princes throughout all Israel and Judah, and according to the commandment of the king, saying, Ye children of Israel, turn again unto the LORD God of Abraham, Isaac, and Israel, and he will return to the remnant of you, that are escaped out of the hand of the kings of Assyria.
11835                                                                                                                                                                                                                                                                                                                                                                            And be not ye like your fathers, and like your brethren, which trespassed against the LORD God of their fathers, who therefore gave them up to desolation, as ye see.
11836                                                                                                                                                                                                                                                                                                      Now be ye not stiffnecked, as your fathers were, but yield yourselves unto the LORD, and enter into his sanctuary, which he hath sanctified for ever: and serve the LORD your God, that the fierceness of his wrath may turn away from you.
11837                                                                                                                                                                                                                                                     For if ye turn again unto the LORD, your brethren and your children shall find compassion before them that lead them captive, so that they shall come again into this land: for the LORD your God is gracious and merciful, and will not turn away his face from you, if ye return unto him.
11838                                                                                                                                                                                                                                                                                                                                                                                            So the posts passed from city to city through the country of Ephraim and Manasseh even unto Zebulun: but they laughed them to scorn, and mocked them.
11839                                                                                                                                                                                                                                                                                                                                                                                                                                              Nevertheless divers of Asher and Manasseh and of Zebulun humbled themselves, and came to Jerusalem.
11840                                                                                                                                                                                                                                                                                                                                                                                                          Also in Judah the hand of God was to give them one heart to do the commandment of the king and of the princes, by the word of the LORD.
11841                                                                                                                                                                                                                                                                                                                                                                                                               And there assembled at Jerusalem much people to keep the feast of unleavened bread in the second month, a very great congregation.
11842                                                                                                                                                                                                                                                                                                                                                                                              And they arose and took away the altars that were in Jerusalem, and all the altars for incense took they away, and cast them into the brook Kidron.
11843                                                                                                                                                                                                                                                                                                                                 Then they killed the passover on the fourteenth day of the second month: and the priests and the Levites were ashamed, and sanctified themselves, and brought in the burnt offerings into the house of the LORD.
11844                                                                                                                                                                                                                                                                                                                                                                 And they stood in their place after their manner, according to the law of Moses the man of God: the priests sprinkled the blood, which they received of the hand of the Levites.
11845                                                                                                                                                                                                                                                                                                                                         For there were many in the congregation that were not sanctified: therefore the Levites had the charge of the killing of the passovers for every one that was not clean, to sanctify them unto the LORD.
11846                                                                                                                                                                                                                                                                                         For a multitude of the people, even many of Ephraim, and Manasseh, Issachar, and Zebulun, had not cleansed themselves, yet did they eat the passover otherwise than it was written. But Hezekiah prayed for them, saying, The good LORD pardon every one
11847                                                                                                                                                                                                                                                                                                                                                                                                     That prepareth his heart to seek God, the LORD God of his fathers, though he be not cleansed according to the purification of the sanctuary.
11848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD hearkened to Hezekiah, and healed the people.
11849                                                                                                                                                                                                                                                                                                           And the children of Israel that were present at Jerusalem kept the feast of unleavened bread seven days with great gladness: and the Levites and the priests praised the LORD day by day, singing with loud instruments unto the LORD.
11850                                                                                                                                                                                                                                                                                                              And Hezekiah spake comfortably unto all the Levites that taught the good knowledge of the LORD: and they did eat throughout the feast seven days, offering peace offerings, and making confession to the LORD God of their fathers.
11851                                                                                                                                                                                                                                                                                                                                                                                                                                      And the whole assembly took counsel to keep other seven days: and they kept other seven days with gladness.
11852                                                                                                                                                                                                                                                                                                  For Hezekiah king of Judah did give to the congregation a thousand bullocks and seven thousand sheep; and the princes gave to the congregation a thousand bullocks and ten thousand sheep: and a great number of priests sanctified themselves.
11853                                                                                                                                                                                                                                                                                                                                 And all the congregation of Judah, with the priests and the Levites, and all the congregation that came out of Israel, and the strangers that came out of the land of Israel, and that dwelt in Judah, rejoiced.
11854                                                                                                                                                                                                                                                                                                                                                                                                          So there was great joy in Jerusalem: for since the time of Solomon the son of David king of Israel there was not the like in Jerusalem.
11855                                                                                                                                                                                                                                                                                                                                                                                     Then the priests the Levites arose and blessed the people: and their voice was heard, and their prayer came up to his holy dwelling place, even unto heaven.
11856                                                                                                                                       Now when all this was finished, all Israel that were present went out to the cities of Judah, and brake the images in pieces, and cut down the groves, and threw down the high places and the altars out of all Judah and Benjamin, in Ephraim also and Manasseh, until they had utterly destroyed them all. Then all the children of Israel returned, every man to his possession, into their own cities.
11857                                                                                                                                                                                                                                                            And Hezekiah appointed the courses of the priests and the Levites after their courses, every man according to his service, the priests and Levites for burnt offerings and for peace offerings, to minister, and to give thanks, and to praise in the gates of the tents of the LORD.
11858                                                                                                                                                                                                                                                                            He appointed also the king's portion of his substance for the burnt offerings, to wit, for the morning and evening burnt offerings, and the burnt offerings for the sabbaths, and for the new moons, and for the set feasts, as it is written in the law of the LORD.
11859                                                                                                                                                                                                                                                                                                                                                                               Moreover he commanded the people that dwelt in Jerusalem to give the portion of the priests and the Levites, that they might be encouraged in the law of the LORD.
11860                                                                                                                                                                                                                                                                                                         And as soon as the commandment came abroad, the children of Israel brought in abundance the firstfruits of corn, wine, and oil, and honey, and of all the increase of the field; and the tithe of all things brought they in abundantly.
11861                                                                                                                                                                                                                                                                                                       And concerning the children of Israel and Judah, that dwelt in the cities of Judah, they also brought in the tithe of oxen and sheep, and the tithe of holy things which were consecrated unto the LORD their God, and laid them by heaps.
11862                                                                                                                                                                                                                                                                                                                                                                                                                                        In the third month they began to lay the foundation of the heaps, and finished them in the seventh month.
11863                                                                                                                                                                                                                                                                                                                                                                                                                                          And when Hezekiah and the princes came and saw the heaps, they blessed the LORD, and his people Israel.
11864                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Hezekiah questioned with the priests and the Levites concerning the heaps.
11865                                                                                                                                                                                                                                                          And Azariah the chief priest of the house of Zadok answered him, and said, Since the people began to bring the offerings into the house of the LORD, we have had enough to eat, and have left plenty: for the LORD hath blessed his people; and that which is left is this great store.
11866                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Hezekiah commanded to prepare chambers in the house of the LORD; and they prepared them,
11867                                                                                                                                                                                                                                                                                                                                                                                  And brought in the offerings and the tithes and the dedicated things faithfully: over which Cononiah the Levite was ruler, and Shimei his brother was the next.
11868                                                                                                                                                                                                                                                             And Jehiel, and Azaziah, and Nahath, and Asahel, and Jerimoth, and Jozabad, and Eliel, and Ismachiah, and Mahath, and Benaiah, were overseers under the hand of Cononiah and Shimei his brother, at the commandment of Hezekiah the king, and Azariah the ruler of the house of God.
11869                                                                                                                                                                                                                                                                                                                                                                     And Kore the son of Imnah the Levite, the porter toward the east, was over the freewill offerings of God, to distribute the oblations of the LORD, and the most holy things.
11870                                                                                                                                                                                                                                                                                                                           And next him were Eden, and Miniamin, and Jeshua, and Shemaiah, Amariah, and Shecaniah, in the cities of the priests, in their set office, to give to their brethren by courses, as well to the great as to the small:
11871                                                                                                                                                                                                                                                                                                                                 Beside their genealogy of males, from three years old and upward, even unto every one that entereth into the house of the LORD, his daily portion for their service in their charges according to their courses;
11872                                                                                                                                                                                                                                                                                                                                                                                         Both to the genealogy of the priests by the house of their fathers, and the Levites from twenty years old and upward, in their charges by their courses;
11873                                                                                                                                                                                                                                                                                                                                                   And to the genealogy of all their little ones, their wives, and their sons, and their daughters, through all the congregation: for in their set office they sanctified themselves in holiness:
11874                                                                                                                                                                                                                                                                 Also of the sons of Aaron the priests, which were in the fields of the suburbs of their cities, in every several city, the men that were expressed by name, to give portions to all the males among the priests, and to all that were reckoned by genealogies among the Levites.
11875                                                                                                                                                                                                                                                                                                                                                                                                                         And thus did Hezekiah throughout all Judah, and wrought that which was good and right and truth before the LORD his God.
11876                                                                                                                                                                                                                                                                                                                                                                       And in every work that he began in the service of the house of God, and in the law, and in the commandments, to seek his God, he did it with all his heart, and prospered.
11877                                                                                                                                                                                                                                                                                                                                                        After these things, and the establishment thereof, Sennacherib king of Assyria came, and entered into Judah, and encamped against the fenced cities, and thought to win them for himself.
11878                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Hezekiah saw that Sennacherib was come, and that he was purposed to fight against Jerusalem,
11879                                                                                                                                                                                                                                                                                                                                                                                                      He took counsel with his princes and his mighty men to stop the waters of the fountains which were without the city: and they did help him.
11880                                                                                                                                                                                                                                                                                                                                              So there was gathered much people together, who stopped all the fountains, and the brook that ran through the midst of the land, saying, Why should the kings of Assyria come, and find much water?
11881                                                                                                                                                                                                                                                                                                                             Also he strengthened himself, and built up all the wall that was broken, and raised it up to the towers, and another wall without, and repaired Millo in the city of David, and made darts and shields in abundance.
11882                                                                                                                                                                                                                                                                                                                                                                                      And he set captains of war over the people, and gathered them together to him in the street of the gate of the city, and spake comfortably to them, saying,
11883                                                                                                                                                                                                                                                                                                                                                                               Be strong and courageous, be not afraid nor dismayed for the king of Assyria, nor for all the multitude that is with him: for there be more with us than with him:
11884                                                                                                                                                                                                                                                                                                                                                                    With him is an arm of flesh; but with us is the LORD our God to help us, and to fight our battles. And the people rested themselves upon the words of Hezekiah king of Judah.
11885                                                                                                                                                                                                                                                                                                              After this did Sennacherib king of Assyria send his servants to Jerusalem, (but he himself laid siege against Lachish, and all his power with him,) unto Hezekiah king of Judah, and unto all Judah that were at Jerusalem, saying,
11886                                                                                                                                                                                                                                                                                                                                                                                                                                            Thus saith Sennacherib king of Assyria, Whereon do ye trust, that ye abide in the siege in Jerusalem?
11887                                                                                                                                                                                                                                                                                                                                                                         Doth not Hezekiah persuade you to give over yourselves to die by famine and by thirst, saying, The LORD our God shall deliver us out of the hand of the king of Assyria?
11888                                                                                                                                                                                                                                                                                                                                                                    Hath not the same Hezekiah taken away his high places and his altars, and commanded Judah and Jerusalem, saying, Ye shall worship before one altar, and burn incense upon it?
11889                                                                                                                                                                                                                                                                                                                                                               Know ye not what I and my fathers have done unto all the people of other lands? were the gods of the nations of those lands any ways able to deliver their lands out of mine hand?
11890                                                                                                                                                                                                                                                                                                                                               Who was there among all the gods of those nations that my fathers utterly destroyed, that could deliver his people out of mine hand, that your God should be able to deliver you out of mine hand?
11891                                                                                                                                                                                                                                                         Now therefore let not Hezekiah deceive you, nor persuade you on this manner, neither yet believe him: for no god of any nation or kingdom was able to deliver his people out of mine hand, and out of the hand of my fathers: how much less shall your God deliver you out of mine hand?
11892                                                                                                                                                                                                                                                                                                                                                                                                                                                          And his servants spake yet more against the LORD God, and against his servant Hezekiah.
11893                                                                                                                                                                                                                                                                                     He wrote also letters to rail on the LORD God of Israel, and to speak against him, saying, As the gods of the nations of other lands have not delivered their people out of mine hand, so shall not the God of Hezekiah deliver his people out of mine hand.
11894                                                                                                                                                                                                                                                                                                                                                                  Then they cried with a loud voice in the Jews' speech unto the people of Jerusalem that were on the wall, to affright them, and to trouble them; that they might take the city.
11895                                                                                                                                                                                                                                                                                                                                                                                                            And they spake against the God of Jerusalem, as against the gods of the people of the earth, which were the work of the hands of man.
11896                                                                                                                                                                                                                                                                                                                                                                                                                                        And for this cause Hezekiah the king, and the prophet Isaiah the son of Amoz, prayed and cried to heaven.
11897                                                                                                                                                                                                                                 And the LORD sent an angel, which cut off all the mighty men of valor, and the leaders and captains in the camp of the king of Assyria. So he returned with shame of face to his own land. And when he was come into the house of his god, they that came forth of his own bowels slew him there with the sword.
11898                                                                                                                                                                                                                                                                                                                                                                   Thus the LORD saved Hezekiah and the inhabitants of Jerusalem from the hand of Sennacherib the king of Assyria, and from the hand of all other, and guided them on every side.
11899                                                                                                                                                                                                                                                                                                                                                                                And many brought gifts unto the LORD to Jerusalem, and presents to Hezekiah king of Judah: so that he was magnified in the sight of all nations from thenceforth.
11900                                                                                                                                                                                                                                                                                                                                                                                                                           In those days Hezekiah was sick to the death, and prayed unto the LORD: and he spake unto him, and he gave him a sign.
11901                                                                                                                                                                                                                                                                                                                                                                           But Hezekiah rendered not again according to the benefit done unto him; for his heart was lifted up: therefore there was wrath upon him, and upon Judah and Jerusalem.
11902                                                                                                                                                                                                                                                                                                                                                         Notwithstanding Hezekiah humbled himself for the pride of his heart, both he and the inhabitants of Jerusalem, so that the wrath of the LORD came not upon them in the days of Hezekiah.
11903                                                                                                                                                                                                                                                                                                                                      And Hezekiah had exceeding much riches and honor: and he made himself treasuries for silver, and for gold, and for precious stones, and for spices, and for shields, and for all manner of pleasant jewels;
11904                                                                                                                                                                                                                                                                                                                                                                                                                         Storehouses also for the increase of corn, and wine, and oil; and stalls for all manner of beasts, and cotes for flocks.
11905                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover he provided him cities, and possessions of flocks and herds in abundance: for God had given him substance very much.
11906                                                                                                                                                                                                                                                                                                                                                                     This same Hezekiah also stopped the upper watercourse of Gihon, and brought it straight down to the west side of the city of David. And Hezekiah prospered in all his works.
11907                                                                                                                                                                                                                                                                                                                              Howbeit in the business of the ambassadors of the princes of Babylon, who sent unto him to enquire of the wonder that was done in the land, God left him, to try him, that he might know all that was in his heart.
11908                                                                                                                                                                                                                                                                                                                                                         Now the rest of the acts of Hezekiah, and his goodness, behold, they are written in the vision of Isaiah the prophet, the son of Amoz, and in the book of the kings of Judah and Israel.
11909                                                                                                                                                                                                                                                                                                           And Hezekiah slept with his fathers, and they buried him in the chiefest of the sepulchres of the sons of David: and all Judah and the inhabitants of Jerusalem did him honor at his death. And Manasseh his son reigned in his stead.
11910                                                                                                                                                                                                                                                                                                                                                                                                                                          Manasseh was twelve years old when he began to reign, and he reigned fifty and five years in Jerusalem:
11911                                                                                                                                                                                                                                                                                                                                                                                       But did that which was evil in the sight of the LORD, like unto the abominations of the heathen, whom the LORD had cast out before the children of Israel.
11912                                                                                                                                                                                                                                                                                                                                                       For he built again the high places which Hezekiah his father had broken down, and he reared up altars for Baalim, and made groves, and worshipped all the host of heaven, and served them.
11913                                                                                                                                                                                                                                                                                                                                                                                                                                Also he built altars in the house of the LORD, whereof the LORD had said, In Jerusalem shall my name be for ever.
11914                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he built altars for all the host of heaven in the two courts of the house of the LORD.
11915                                                                                                                                                                                                                                                          And he caused his children to pass through the fire in the valley of the son of Hinnom: also he observed times, and used enchantments, and used witchcraft, and dealt with a familiar spirit, and with wizards: he wrought much evil in the sight of the LORD, to provoke him to anger.
11916                                                                                                                                                                                                                                                                                            And he set a carved image, the idol which he had made, in the house of God, of which God had said to David and to Solomon his son, In this house, and in Jerusalem, which I have chosen before all the tribes of Israel, will I put my name for ever:
11917                                                                                                                                                                                                                                                                           Neither will I any more remove the foot of Israel from out of the land which I have appointed for your fathers; so that they will take heed to do all that I have commanded them, according to the whole law and the statutes and the ordinances by the hand of Moses.
11918                                                                                                                                                                                                                                                                                                                                                                                     So Manasseh made Judah and the inhabitants of Jerusalem to err, and to do worse than the heathen, whom the LORD had destroyed before the children of Israel.
11919                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD spake to Manasseh, and to his people: but they would not hearken.
11920                                                                                                                                                                                                                                                                                                                                                              Wherefore the LORD brought upon them the captains of the host of the king of Assyria, which took Manasseh among the thorns, and bound him with fetters, and carried him to Babylon.
11921                                                                                                                                                                                                                                                                                                                                                                                                                          And when he was in affliction, he besought the LORD his God, and humbled himself greatly before the God of his fathers,
11922                                                                                                                                                                                                                                                                                                                                                                  And prayed unto him: and he was intreated of him, and heard his supplication, and brought him again to Jerusalem into his kingdom. Then Manasseh knew that the LORD he was God.
11923                                                                                                                                                                                                                                                                        Now after this he built a wall without the city of David, on the west side of Gihon, in the valley, even to the entering in at the fish gate, and compassed about Ophel, and raised it up a very great height, and put captains of war in all the fenced cities of Judah.
11924                                                                                                                                                                                                                                                                                                                                       And he took away the strange gods, and the idol out of the house of the LORD, and all the altars that he had built in the mount of the house of the LORD, and in Jerusalem, and cast them out of the city.
11925                                                                                                                                                                                                                                                                                                                                                                                          And he repaired the altar of the LORD, and sacrificed thereon peace offerings and thank offerings, and commanded Judah to serve the LORD God of Israel.
11926                                                                                                                                                                                                                                                                                                                                                                                                                                                Nevertheless the people did sacrifice still in the high places, yet unto the LORD their God only.
11927                                                                                                                                                                                                                                                                                                                              Now the rest of the acts of Manasseh, and his prayer unto his God, and the words of the seers that spake to him in the name of the LORD God of Israel, behold, they are written in the book of the kings of Israel.
11928                                                                                                                                                                                                                                                                                         His prayer also, and how God was intreated of him, and all his sins, and his trespass, and the places wherein he built high places, and set up groves and graven images, before he was humbled: behold, they are written among the sayings of the seers.
11929                                                                                                                                                                                                                                                                                                                                                                                                                                 So Manasseh slept with his fathers, and they buried him in his own house: and Amon his son reigned in his stead.
11930                                                                                                                                                                                                                                                                                                                                                                                                                                                    Amon was two and twenty years old when he began to reign, and reigned two years in Jerusalem.
11931                                                                                                                                                                                                                                                                                                                                                         But he did that which was evil in the sight of the LORD, as did Manasseh his father: for Amon sacrificed unto all the carved images which Manasseh his father had made, and served them;
11932                                                                                                                                                                                                                                                                                                                                                                                                                          And humbled not himself before the LORD, as Manasseh his father had humbled himself; but Amon trespassed more and more.
11933                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And his servants conspired against him, and slew him in his own house.
11934                                                                                                                                                                                                                                                                                                                                                                                                 But the people of the land slew all them that had conspired against king Amon; and the people of the land made Josiah his son king in his stead.
11935                                                                                                                                                                                                                                                                                                                                                                                                                                             Josiah was eight years old when he began to reign, and he reigned in Jerusalem one and thirty years.
11936                                                                                                                                                                                                                                                                                                                                                                                   And he did that which was right in the sight of the LORD, and walked in the ways of David his father, and declined neither to the right hand, nor to the left.
11937                                                                                                                                                                                                                                                                               For in the eighth year of his reign, while he was yet young, he began to seek after the God of David his father: and in the twelfth year he began to purge Judah and Jerusalem from the high places, and the groves, and the carved images, and the molten images.
11938                                                                                                                                                                                                                                              And they brake down the altars of Baalim in his presence; and the images, that were on high above them, he cut down; and the groves, and the carved images, and the molten images, he brake in pieces, and made dust of them, and strewed it upon the graves of them that had sacrificed unto them.
11939                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he burnt the bones of the priests upon their altars, and cleansed Judah and Jerusalem.
11940                                                                                                                                                                                                                                                                                                                                                                                                                           And so did he in the cities of Manasseh, and Ephraim, and Simeon, even unto Naphtali, with their mattocks round about.
11941                                                                                                                                                                                                                                                                                                                                                     And when he had broken down the altars and the groves, and had beaten the graven images into powder, and cut down all the idols throughout all the land of Israel, he returned to Jerusalem.
11942                                                                                                                                                                                                                                                                                                Now in the eighteenth year of his reign, when he had purged the land, and the house, he sent Shaphan the son of Azaliah, and Maaseiah the governor of the city, and Joah the son of Joahaz the recorder, to repair the house of the LORD his God.
11943                                                                                                                                                                                                                                         And when they came to Hilkiah the high priest, they delivered the money that was brought into the house of God, which the Levites that kept the doors had gathered of the hand of Manasseh and Ephraim, and of all the remnant of Israel, and of all Judah and Benjamin; and they returned to Jerusalem.
11944                                                                                                                                                                                                                                                                                                                                                And they put it in the hand of the workmen that had the oversight of the house of the LORD, and they gave it to the workmen that wrought in the house of the LORD, to repair and amend the house:
11945                                                                                                                                                                                                                                                                                                                                                                                   Even to the artificers and builders gave they it, to buy hewn stone, and timber for couplings, and to floor the houses which the kings of Judah had destroyed.
11946                                                                                                                                                                                                                                                               And the men did the work faithfully: and the overseers of them were Jahath and Obadiah, the Levites, of the sons of Merari; and Zechariah and Meshullam, of the sons of the Kohathites, to set it forward; and other of the Levites, all that could skill of instruments of music.
11947                                                                                                                                                                                                                                                                                                                                                          Also they were over the bearers of burdens, and were overseers of all that wrought the work in any manner of service: and of the Levites there were scribes, and officers, and porters.
11948                                                                                                                                                                                                                                                                                                                                                                                          And when they brought out the money that was brought into the house of the LORD, Hilkiah the priest found a book of the law of the LORD given by Moses.
11949                                                                                                                                                                                                                                                                                                                                                                                       And Hilkiah answered and said to Shaphan the scribe, I have found the book of the law in the house of the LORD. And Hilkiah delivered the book to Shaphan.
11950                                                                                                                                                                                                                                                                                                                                                                                                      And Shaphan carried the book to the king, and brought the king word back again, saying, All that was committed to thy servants, they do it.
11951                                                                                                                                                                                                                                                                                                                                                                         And they have gathered together the money that was found in the house of the LORD, and have delivered it into the hand of the overseers, and to the hand of the workmen.
11952                                                                                                                                                                                                                                                                                                                                                                                                                     Then Shaphan the scribe told the king, saying, Hilkiah the priest hath given me a book. And Shaphan read it before the king.
11953                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when the king had heard the words of the law, that he rent his clothes.
11954                                                                                                                                                                                                                                                                                                                                                                                   And the king commanded Hilkiah, and Ahikam the son of Shaphan, and Abdon the son of Micah, and Shaphan the scribe, and Asaiah a servant of the king's, saying,
11955                                                                                                                                                                                                                                          Go, enquire of the LORD for me, and for them that are left in Israel and in Judah, concerning the words of the book that is found: for great is the wrath of the LORD that is poured out upon us, because our fathers have not kept the word of the LORD, to do after all that is written in this book.
11956                                                                                                                                                                                                                                                                                          And Hilkiah, and they that the king had appointed, went to Huldah the prophetess, the wife of Shallum the son of Tikvath, the son of Hasrah, keeper of the wardrobe; (now she dwelt in Jerusalem in the college:) and they spake to her to that effect.
11957                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she answered them, Thus saith the LORD God of Israel, Tell ye the man that sent you to me,
11958                                                                                                                                                                                                                                                                                                                                                Thus saith the LORD, Behold, I will bring evil upon this place, and upon the inhabitants thereof, even all the curses that are written in the book which they have read before the king of Judah:
11959                                                                                                                                                                                                                                                                                                                Because they have forsaken me, and have burned incense unto other gods, that they might provoke me to anger with all the works of their hands; therefore my wrath shall be poured out upon this place, and shall not be quenched.
11960                                                                                                                                                                                                                                                                                                                                                                       And as for the king of Judah, who sent you to enquire of the LORD, so shall ye say unto him, Thus saith the LORD God of Israel concerning the words which thou hast heard;
11961                                                                                                                                                                                                                                                    Because thine heart was tender, and thou didst humble thyself before God, when thou heardest his words against this place, and against the inhabitants thereof, and humbledst thyself before me, and didst rend thy clothes, and weep before me; I have even heard thee also, saith the LORD.
11962                                                                                                                                                                                                                                                                                             Behold, I will gather thee to thy fathers, and thou shalt be gathered to thy grave in peace, neither shall thine eyes see all the evil that I will bring upon this place, and upon the inhabitants of the same. So they brought the king word again.
11963                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the king sent and gathered together all the elders of Judah and Jerusalem.
11964                                                                                                                                                                                                                                                 And the king went up into the house of the LORD, and all the men of Judah, and the inhabitants of Jerusalem, and the priests, and the Levites, and all the people, great and small: and he read in their ears all the words of the book of the covenant that was found in the house of the LORD.
11965                                                                                                                                                                                                                                                               And the king stood in his place, and made a covenant before the LORD, to walk after the LORD, and to keep his commandments, and his testimonies, and his statutes, with all his heart, and with all his soul, to perform the words of the covenant which are written in this book.
11966                                                                                                                                                                                                                                                                                                                                                                   And he caused all that were present in Jerusalem and Benjamin to stand to it. And the inhabitants of Jerusalem did according to the covenant of God, the God of their fathers.
11967                                                                                                                                                                                                                                                          And Josiah took away all the abominations out of all the countries that pertained to the children of Israel, and made all that were present in Israel to serve, even to serve the LORD their God. And all his days they departed not from following the LORD, the God of their fathers.
11968                                                                                                                                                                                                                                                                                                                                                                                                               Moreover Josiah kept a passover unto the LORD in Jerusalem: and they killed the passover on the fourteenth day of the first month.
11969                                                                                                                                                                                                                                                                                                                                                                                                                                            And he set the priests in their charges, and encouraged them to the service of the house of the LORD,
11970                                                                                                                                                                                                                                                                        And said unto the Levites that taught all Israel, which were holy unto the LORD, Put the holy ark in the house which Solomon the son of David king of Israel did build; it shall not be a burden upon your shoulders: serve now the LORD your God, and his people Israel,
11971                                                                                                                                                                                                                                                                                                                                                                     And prepare yourselves by the houses of your fathers, after your courses, according to the writing of David king of Israel, and according to the writing of Solomon his son.
11972                                                                                                                                                                                                                                                                                                                                                                        And stand in the holy place according to the divisions of the families of the fathers of your brethren the people, and after the division of the families of the Levites.
11973                                                                                                                                                                                                                                                                                                                                                                                               So kill the passover, and sanctify yourselves, and prepare your brethren, that they may do according to the word of the LORD by the hand of Moses.
11974                                                                                                                                                                                                                                                                                                                       And Josiah gave to the people, of the flock, lambs and kids, all for the passover offerings, for all that were present, to the number of thirty thousand, and three thousand bullocks: these were of the king's substance.
11975                                                                                                                                                                                                                                                                             And his princes gave willingly unto the people, to the priests, and to the Levites: Hilkiah and Zechariah and Jehiel, rulers of the house of God, gave unto the priests for the passover offerings two thousand and six hundred small cattle and three hundred oxen.
11976                                                                                                                                                                                                                                                                                                                              Conaniah also, and Shemaiah and Nethaneel, his brethren, and Hashabiah and Jeiel and Jozabad, chief of the Levites, gave unto the Levites for passover offerings five thousand small cattle, and five hundred oxen.
11977                                                                                                                                                                                                                                                                                                                                                                                                        So the service was prepared, and the priests stood in their place, and the Levites in their courses, according to the king's commandment.
11978                                                                                                                                                                                                                                                                                                                                                                                                                                 And they killed the passover, and the priests sprinkled the blood from their hands, and the Levites flayed them.
11979                                                                                                                                                                                                                                                                                                                               And they removed the burnt offerings, that they might give according to the divisions of the families of the people, to offer unto the LORD, as it is written in the book of Moses. And so did they with the oxen.
11980                                                                                                                                                                                                                                                                                                                                                 And they roasted the passover with fire according to the ordinance: but the other holy offerings sod they in pots, and in caldrons, and in pans, and divided them speedily among all the people.
11981                                                                                                                                                                                                                                                                               And afterward they made ready for themselves, and for the priests: because the priests the sons of Aaron were busied in offering of burnt offerings and the fat until night; therefore the Levites prepared for themselves, and for the priests the sons of Aaron.
11982                                                                                                                                                                                                                                                              And the singers the sons of Asaph were in their place, according to the commandment of David, and Asaph, and Heman, and Jeduthun the king's seer; and the porters waited at every gate; they might not depart from their service; for their brethren the Levites prepared for them.
11983                                                                                                                                                                                                                                                                                                                                                            So all the service of the LORD was prepared the same day, to keep the passover, and to offer burnt offerings upon the altar of the LORD, according to the commandment of king Josiah.
11984                                                                                                                                                                                                                                                                                                                                                                                                                       And the children of Israel that were present kept the passover at that time, and the feast of unleavened bread seven days.
11985                                                                                                                                                                                                                                                              And there was no passover like to that kept in Israel from the days of Samuel the prophet; neither did all the kings of Israel keep such a passover as Josiah kept, and the priests, and the Levites, and all Judah and Israel that were present, and the inhabitants of Jerusalem.
11986                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In the eighteenth year of the reign of Josiah was this passover kept.
11987                                                                                                                                                                                                                                                                                                                                                                                     After all this, when Josiah had prepared the temple, Necho king of Egypt came up to fight against Charchemish by Euphrates: and Josiah went out against him.
11988                                                                                                                                                                                                                                                        But he sent ambassadors to him, saying, What have I to do with thee, thou king of Judah? I come not against thee this day, but against the house wherewith I have war: for God commanded me to make haste: forbear thee from meddling with God, who is with me, that he destroy thee not.
11989                                                                                                                                                                                                                                                                                                                          Nevertheless Josiah would not turn his face from him, but disguised himself, that he might fight with him, and hearkened not unto the words of Necho from the mouth of God, and came to fight in the valley of Megiddo.
11990                                                                                                                                                                                                                                                                                                                                                                                                                                     And the archers shot at king Josiah; and the king said to his servants, Have me away; for I am sore wounded.
11991                                                                                                                                                                                                                                                                                      His servants therefore took him out of that chariot, and put him in the second chariot that he had; and they brought him to Jerusalem, and he died, and was buried in one of the sepulchres of his fathers. And all Judah and Jerusalem mourned for Josiah.
11992                                                                                                                                                                                                                                                                                                                      And Jeremiah lamented for Josiah: and all the singing men and the singing women spake of Josiah in their lamentations to this day, and made them an ordinance in Israel: and, behold, they are written in the lamentations.
11993                                                                                                                                                                                                                                                                                                                                                                                                                                Now the rest of the acts of Josiah, and his goodness, according to that which was written in the law of the LORD,
11994                                                                                                                                                                                                                                                                                                                                                                                                                                            And his deeds, first and last, behold, they are written in the book of the kings of Israel and Judah.
11995                                                                                                                                                                                                                                                                                                                                                                                                                               Then the people of the land took Jehoahaz the son of Josiah, and made him king in his father's stead in Jerusalem.
11996                                                                                                                                                                                                                                                                                                                                                                                                                                        Jehoahaz was twenty and three years old when he began to reign, and he reigned three months in Jerusalem.
11997                                                                                                                                                                                                                                                                                                                                                                                                                    And the king of Egypt put him down at Jerusalem, and condemned the land in an hundred talents of silver and a talent of gold.
11998                                                                                                                                                                                                                                                                                                                                                                   And the king of Egypt made Eliakim his brother king over Judah and Jerusalem, and turned his name to Jehoiakim. And Necho took Jehoahaz his brother, and carried him to Egypt.
11999                                                                                                                                                                                                                                                                                                                                                                       Jehoiakim was twenty and five years old when he began to reign, and he reigned eleven years in Jerusalem: and he did that which was evil in the sight of the LORD his God.
12000                                                                                                                                                                                                                                                                                                                                                                                                                                           Against him came up Nebuchadnezzar king of Babylon, and bound him in fetters, to carry him to Babylon.
12001                                                                                                                                                                                                                                                                                                                                                                                                                           Nebuchadnezzar also carried of the vessels of the house of the LORD to Babylon, and put them in his temple at Babylon.
12002                                                                                                                                                                                                                                                                                                                   Now the rest of the acts of Jehoiakim, and his abominations which he did, and that which was found in him, behold, they are written in the book of the kings of Israel and Judah: and Jehoiachin his son reigned in his stead.
12003                                                                                                                                                                                                                                                                                                                                                                           Jehoiachin was eight years old when he began to reign, and he reigned three months and ten days in Jerusalem: and he did that which was evil in the sight of the LORD.
12004                                                                                                                                                                                                                                                                                                                                              And when the year was expired, king Nebuchadnezzar sent, and brought him to Babylon, with the goodly vessels of the house of the LORD, and made Zedekiah his brother king over Judah and Jerusalem.
12005                                                                                                                                                                                                                                                                                                                                                                                                                                             Zedekiah was one and twenty years old when he began to reign, and reigned eleven years in Jerusalem.
12006                                                                                                                                                                                                                                                                                                                                                                                        And he did that which was evil in the sight of the LORD his God, and humbled not himself before Jeremiah the prophet speaking from the mouth of the LORD.
12007                                                                                                                                                                                                                                                                                                                                                                     And he also rebelled against king Nebuchadnezzar, who had made him swear by God: but he stiffened his neck, and hardened his heart from turning unto the LORD God of Israel.
12008                                                                                                                                                                                                                                                                                                                                                  Moreover all the chief of the priests, and the people, transgressed very much after all the abominations of the heathen; and polluted the house of the LORD which he had hallowed in Jerusalem.
12009                                                                                                                                                                                                                                                                                                                                                                            And the LORD God of their fathers sent to them by his messengers, rising up betimes, and sending; because he had compassion on his people, and on his dwelling place:
12010                                                                                                                                                                                                                                                                                                                                                                         But they mocked the messengers of God, and despised his words, and misused his prophets, until the wrath of the LORD arose against his people, till there was no remedy.
12011                                                                                                                                                                                                                                                                                          Therefore he brought upon them the king of the Chaldees, who slew their young men with the sword in the house of their sanctuary, and had no compassion upon young man or maiden, old man, or him that stooped for age: he gave them all into his hand.
12012                                                                                                                                                                                                                                                                                                                                                        And all the vessels of the house of God, great and small, and the treasures of the house of the LORD, and the treasures of the king, and of his princes; all these he brought to Babylon.
12013                                                                                                                                                                                                                                                                                                                                                                                And they burnt the house of God, and brake down the wall of Jerusalem, and burnt all the palaces thereof with fire, and destroyed all the goodly vessels thereof.
12014                                                                                                                                                                                                                                                                                                                                                                                      And them that had escaped from the sword carried he away to Babylon; where they were servants to him and his sons until the reign of the kingdom of Persia:
12015                                                                                                                                                                                                                                                                                                                                                          To fulfil the word of the LORD by the mouth of Jeremiah, until the land had enjoyed her sabbaths: for as long as she lay desolate she kept sabbath, to fulfil threescore and ten years.
12016                                                                                                                                                                                                                                                              Now in the first year of Cyrus king of Persia, that the word of the LORD spoken by the mouth of Jeremiah might be accomplished, the LORD stirred up the spirit of Cyrus king of Persia, that he made a proclamation throughout all his kingdom, and put it also in writing, saying,
12017                                                                                                                                                                                                                                                                    Thus saith Cyrus king of Persia, All the kingdoms of the earth hath the LORD God of heaven given me; and he hath charged me to build him an house in Jerusalem, which is in Judah. Who is there among you of all his people? The LORD his God be with him, and let him go up.
12018                                                                                                                                                                                                                                                                        Now in the first year of Cyrus king of Persia, that the word of the LORD by the mouth of Jeremiah might be fulfilled, the LORD stirred up the spirit of Cyrus king of Persia, that he made a proclamation throughout all his kingdom, and put it also in writing, saying,
12019                                                                                                                                                                                                                                                                                                                                                               Thus saith Cyrus king of Persia, The LORD God of heaven hath given me all the kingdoms of the earth; and he hath charged me to build him an house at Jerusalem, which is in Judah.
12020                                                                                                                                                                                                                                                                                                                                         Who is there among you of all his people? his God be with him, and let him go up to Jerusalem, which is in Judah, and build the house of the LORD God of Israel, (he is the God,) which is in Jerusalem.
12021                                                                                                                                                                                                                                                                                                                 And whosoever remaineth in any place where he sojourneth, let the men of his place help him with silver, and with gold, and with goods, and with beasts, beside the freewill offering for the house of God that is in Jerusalem.
12022                                                                                                                                                                                                                                                                                                                                         Then rose up the chief of the fathers of Judah and Benjamin, and the priests, and the Levites, with all them whose spirit God had raised, to go up to build the house of the LORD which is in Jerusalem.
12023                                                                                                                                                                                                                                                                                                                                                      And all they that were about them strengthened their hands with vessels of silver, with gold, with goods, and with beasts, and with precious things, beside all that was willingly offered.
12024                                                                                                                                                                                                                                                                                                                                                                      Also Cyrus the king brought forth the vessels of the house of the LORD, which Nebuchadnezzar had brought forth out of Jerusalem, and had put them in the house of his gods;
12025                                                                                                                                                                                                                                                                                                                                                                                                Even those did Cyrus king of Persia bring forth by the hand of Mithredath the treasurer, and numbered them unto Sheshbazzar, the prince of Judah.
12026                                                                                                                                                                                                                                                                                                                                                                                                                                  And this is the number of them: thirty chargers of gold, a thousand chargers of silver, nine and twenty knives,
12027                                                                                                                                                                                                                                                                                                                                                                                                                                        Thirty basins of gold, silver basins of a second sort four hundred and ten, and other vessels a thousand.
12028                                                                                                                                                                                                                                                                                                                                                       All the vessels of gold and of silver were five thousand and four hundred. All these did Sheshbazzar bring up with them of the captivity that were brought up from Babylon unto Jerusalem.
12029                                                                                                                                                                                                                                                                                     Now these are the children of the province that went up out of the captivity, of those which had been carried away, whom Nebuchadnezzar the king of Babylon had carried away unto Babylon, and came again unto Jerusalem and Judah, every one unto his city;
12030                                                                                                                                                                                                                                                                                                                                                                                Which came with Zerubbabel: Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan, Mizpar, Bigvai, Rehum, Baanah. The number of the men of the people of Israel:
12031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Parosh, two thousand an hundred seventy and two.
12032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The children of Shephatiah, three hundred seventy and two.
12033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The children of Arah, seven hundred seventy and five.
12034                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Pahathmoab, of the children of Jeshua and Joab, two thousand eight hundred and twelve.
12035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The children of Elam, a thousand two hundred fifty and four.
12036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Zattu, nine hundred forty and five.
12037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The children of Zaccai, seven hundred and threescore.
12038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Bani, six hundred forty and two.
12039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Bebai, six hundred twenty and three.
12040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of Azgad, a thousand two hundred twenty and two.
12041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Adonikam, six hundred sixty and six.
12042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Bigvai, two thousand fifty and six.
12043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The children of Adin, four hundred fifty and four.
12044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Ater of Hezekiah, ninety and eight.
12045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Bezai, three hundred twenty and three.
12046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of Jorah, an hundred and twelve.
12047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The children of Hashum, two hundred twenty and three.
12048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Gibbar, ninety and five.
12049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The children of Bethlehem, an hundred twenty and three.
12050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The men of Netophah, fifty and six.
12051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The men of Anathoth, an hundred twenty and eight.
12052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Azmaveth, forty and two.
12053                                                                                                                                                                                                                                                                                                                                                                                                                                                          The children of Kirjatharim, Chephirah, and Beeroth, seven hundred and forty and three.
12054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The children of Ramah and Gaba, six hundred twenty and one.
12055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The men of Michmas, an hundred twenty and two.
12056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The men of Bethel and Ai, two hundred twenty and three.
12057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Nebo, fifty and two.
12058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The children of Magbish, an hundred fifty and six.
12059                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of the other Elam, a thousand two hundred fifty and four.
12060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Harim, three hundred and twenty.
12061                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Lod, Hadid, and Ono, seven hundred twenty and five.
12062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Jericho, three hundred forty and five.
12063                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The children of Senaah, three thousand and six hundred and thirty.
12064                                                                                                                                                                                                                                                                                                                                                                                                                                                    The priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three.
12065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Immer, a thousand fifty and two.
12066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The children of Pashur, a thousand two hundred forty and seven.
12067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Harim, a thousand and seventeen.
12068                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Levites: the children of Jeshua and Kadmiel, of the children of Hodaviah, seventy and four.
12069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The singers: the children of Asaph, an hundred twenty and eight.
12070                                                                                                                                                                                                                                                                                                                                    The children of the porters: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai, in all an hundred thirty and nine.
12071                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Nethinims: the children of Ziha, the children of Hasupha, the children of Tabbaoth,
12072                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Keros, the children of Siaha, the children of Padon,
12073                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Lebanah, the children of Hagabah, the children of Akkub,
12074                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Hagab, the children of Shalmai, the children of Hanan,
12075                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Giddel, the children of Gahar, the children of Reaiah,
12076                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Rezin, the children of Nekoda, the children of Gazzam,
12077                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Uzza, the children of Paseah, the children of Besai,
12078                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The children of Asnah, the children of Mehunim, the children of Nephusim,
12079                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Bakbuk, the children of Hakupha, the children of Harhur,
12080                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Bazluth, the children of Mehida, the children of Harsha,
12081                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The children of Barkos, the children of Sisera, the children of Thamah,
12082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Neziah, the children of Hatipha.
12083                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of Solomon's servants: the children of Sotai, the children of Sophereth, the children of Peruda,
12084                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The children of Jaalah, the children of Darkon, the children of Giddel,
12085                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of Shephatiah, the children of Hattil, the children of Pochereth of Zebaim, the children of Ami.
12086                                                                                                                                                                                                                                                                                                                                                                                                                                                    All the Nethinims, and the children of Solomon's servants, were three hundred ninety and two.
12087                                                                                                                                                                                                                                                                                                                                                                  And these were they which went up from Telmelah, Telharsa, Cherub, Addan, and Immer: but they could not shew their father's house, and their seed, whether they were of Israel:
12088                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred fifty and two.
12089                                                                                                                                                                                                                                                                                                                                     And of the children of the priests: the children of Habaiah, the children of Koz, the children of Barzillai; which took a wife of the daughters of Barzillai the Gileadite, and was called after their name:
12090                                                                                                                                                                                                                                                                                                                                                                                     These sought their register among those that were reckoned by genealogy, but they were not found: therefore were they, as polluted, put from the priesthood.
12091                                                                                                                                                                                                                                                                                                                                                                                                     And the Tirshatha said unto them, that they should not eat of the most holy things, till there stood up a priest with Urim and with Thummim.
12092                                                                                                                                                                                                                                                                                                                                                                                                                                                         The whole congregation together was forty and two thousand three hundred and threescore,
12093                                                                                                                                                                                                                                                                                                                                                                    Beside their servants and their maids, of whom there were seven thousand three hundred thirty and seven: and there were among them two hundred singing men and singing women.
12094                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their horses were seven hundred thirty and six; their mules, two hundred forty and five;
12095                                                                                                                                                                                                                                                                                                                                                                                                                                                  Their camels, four hundred thirty and five; their asses, six thousand seven hundred and twenty.
12096                                                                                                                                                                                                                                                                                                                                                                              And some of the chief of the fathers, when they came to the house of the LORD which is at Jerusalem, offered freely for the house of God to set it up in his place:
12097                                                                                                                                                                                                                                                                                                                                                                     They gave after their ability unto the treasure of the work threescore and one thousand drams of gold, and five thousand pound of silver, and one hundred priests' garments.
12098                                                                                                                                                                                                                                                                                                                                                                             So the priests, and the Levites, and some of the people, and the singers, and the porters, and the Nethinims, dwelt in their cities, and all Israel in their cities.
12099                                                                                                                                                                                                                                                                                                                                                                                             And when the seventh month was come, and the children of Israel were in the cities, the people gathered themselves together as one man to Jerusalem.
12100                                                                                                                                                                                                                                                                                 Then stood up Jeshua the son of Jozadak, and his brethren the priests, and Zerubbabel the son of Shealtiel, and his brethren, and builded the altar of the God of Israel, to offer burnt offerings thereon, as it is written in the law of Moses the man of God.
12101                                                                                                                                                                                                                                                                                                                                        And they set the altar upon his bases; for fear was upon them because of the people of those countries: and they offered burnt offerings thereon unto the LORD, even burnt offerings morning and evening.
12102                                                                                                                                                                                                                                                                                                                                                                          They kept also the feast of tabernacles, as it is written, and offered the daily burnt offerings by number, according to the custom, as the duty of every day required;
12103                                                                                                                                                                                                                                                                                                                               And afterward offered the continual burnt offering, both of the new moons, and of all the set feasts of the LORD that were consecrated, and of every one that willingly offered a freewill offering unto the LORD.
12104                                                                                                                                                                                                                                                                                                                                                                                        From the first day of the seventh month began they to offer burnt offerings unto the LORD. But the foundation of the temple of the LORD was not yet laid.
12105                                                                                                                                                                                                                                                                                         They gave money also unto the masons, and to the carpenters; and meat, and drink, and oil, unto them of Zidon, and to them of Tyre, to bring cedar trees from Lebanon to the sea of Joppa, according to the grant that they had of Cyrus king of Persia.
12106                                                                                                                             Now in the second year of their coming unto the house of God at Jerusalem, in the second month, began Zerubbabel the son of Shealtiel, and Jeshua the son of Jozadak, and the remnant of their brethren the priests and the Levites, and all they that were come out of the captivity unto Jerusalem; and appointed the Levites, from twenty years old and upward, to set forward the work of the house of the LORD.
12107                                                                                                                                                                                                                                                                                                                        Then stood Jeshua with his sons and his brethren, Kadmiel and his sons, the sons of Judah, together, to set forward the workmen in the house of God: the sons of Henadad, with their sons and their brethren the Levites.
12108                                                                                                                                                                                                                                                                                                       And when the builders laid the foundation of the temple of the LORD, they set the priests in their apparel with trumpets, and the Levites the sons of Asaph with cymbals, to praise the LORD, after the ordinance of David king of Israel.
12109                                                                                                                                                                                                                                                            And they sang together by course in praising and giving thanks unto the LORD; because he is good, for his mercy endureth for ever toward Israel. And all the people shouted with a great shout, when they praised the LORD, because the foundation of the house of the LORD was laid.
12110                                                                                                                                                                                                                                                                                                         But many of the priests and Levites and chief of the fathers, who were ancient men, that had seen the first house, when the foundation of this house was laid before their eyes, wept with a loud voice; and many shouted aloud for joy:
12111                                                                                                                                                                                                                                                                                                                                                      So that the people could not discern the noise of the shout of joy from the noise of the weeping of the people: for the people shouted with a loud shout, and the noise was heard afar off.
12112                                                                                                                                                                                                                                                                                                                                                                                                          Now when the adversaries of Judah and Benjamin heard that the children of the captivity builded the temple unto the LORD God of Israel;
12113                                                                                                                                                                                                                                                                                                   Then they came to Zerubbabel, and to the chief of the fathers, and said unto them, Let us build with you: for we seek your God, as ye do; and we do sacrifice unto him since the days of Esarhaddon king of Assur, which brought us up hither.
12114                                                                                                                                                                                                                                                              But Zerubbabel, and Jeshua, and the rest of the chief of the fathers of Israel, said unto them, Ye have nothing to do with us to build an house unto our God; but we ourselves together will build unto the LORD God of Israel, as king Cyrus the king of Persia hath commanded us.
12115                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the people of the land weakened the hands of the people of Judah, and troubled them in building,
12116                                                                                                                                                                                                                                                                                                                                                                                             And hired counsellors against them, to frustrate their purpose, all the days of Cyrus king of Persia, even until the reign of Darius king of Persia.
12117                                                                                                                                                                                                                                                                                                                                                                                                  And in the reign of Ahasuerus, in the beginning of his reign, wrote they unto him an accusation against the inhabitants of Judah and Jerusalem.
12118                                                                                                                                                                                                                                                                                                         And in the days of Artaxerxes wrote Bishlam, Mithredath, Tabeel, and the rest of their companions, unto Artaxerxes king of Persia; and the writing of the letter was written in the Syrian tongue, and interpreted in the Syrian tongue.
12119                                                                                                                                                                                                                                                                                                                                                                                                                               Rehum the chancellor and Shimshai the scribe wrote a letter against Jerusalem to Artaxerxes the king in this sort:
12120                                                                                                                                                                                                                                                                                                Then wrote Rehum the chancellor, and Shimshai the scribe, and the rest of their companions; the Dinaites, the Apharsathchites, the Tarpelites, the Apharsites, the Archevites, the Babylonians, the Susanchites, the Dehavites, and the Elamites,
12121                                                                                                                                                                                                                                                                                                                                                                  And the rest of the nations whom the great and noble Asnapper brought over, and set in the cities of Samaria, and the rest that are on this side the river, and at such a time.
12122                                                                                                                                                                                                                                                                                                                                                                                          This is the copy of the letter that they sent unto him, even unto Artaxerxes the king; Thy servants the men on this side the river, and at such a time.
12123                                                                                                                                                                                                                                                                                                                                         Be it known unto the king, that the Jews which came up from thee to us are come unto Jerusalem, building the rebellious and the bad city, and have set up the walls thereof, and joined the foundations.
12124                                                                                                                                                                                                                                                                                                                                                 Be it known now unto the king, that, if this city be builded, and the walls set up again, then will they not pay toll, tribute, and custom, and so thou shalt endamage the revenue of the kings.
12125                                                                                                                                                                                                                                                                                                                                                                                   Now because we have maintenance from the king's palace, and it was not meet for us to see the king's dishonour, therefore have we sent and certified the king;
12126                                                                                                                                                                                                                                    That search may be made in the book of the records of thy fathers: so shalt thou find in the book of the records, and know that this city is a rebellious city, and hurtful unto kings and provinces, and that they have moved sedition within the same of old time: for which cause was this city destroyed.
12127                                                                                                                                                                                                                                                                                                                                                                                          We certify the king that, if this city be builded again, and the walls thereof set up, by this means thou shalt have no portion on this side the river.
12128                                                                                                                                                                                                                                                                                                                                    Then sent the king an answer unto Rehum the chancellor, and to Shimshai the scribe, and to the rest of their companions that dwell in Samaria, and unto the rest beyond the river, Peace, and at such a time.
12129                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The letter which ye sent unto us hath been plainly read before me.
12130                                                                                                                                                                                                                                                                                                                                                             And I commanded, and search hath been made, and it is found that this city of old time hath made insurrection against kings, and that rebellion and sedition have been made therein.
12131                                                                                                                                                                                                                                                                                                                                                                                       There have been mighty kings also over Jerusalem, which have ruled over all countries beyond the river; and toll, tribute, and custom, was paid unto them.
12132                                                                                                                                                                                                                                                                                                                                                                                                        Give ye now commandment to cause these men to cease, and that this city be not builded, until another commandment shall be given from me.
12133                                                                                                                                                                                                                                                                                                                                                                                                                                                      Take heed now that ye fail not to do this: why should damage grow to the hurt of the kings?
12134                                                                                                                                                                                                                                                                                                                                  Now when the copy of king Artaxerxes' letter was read before Rehum, and Shimshai the scribe, and their companions, they went up in haste to Jerusalem unto the Jews, and made them to cease by force and power.
12135                                                                                                                                                                                                                                                                                                                                                                                                         Then ceased the work of the house of God which is at Jerusalem. So it ceased unto the second year of the reign of Darius king of Persia.
12136                                                                                                                                                                                                                                                                                                                                                                Then the prophets, Haggai the prophet, and Zechariah the son of Iddo, prophesied unto the Jews that were in Judah and Jerusalem in the name of the God of Israel, even unto them.
12137                                                                                                                                                                                                                                                                                                                                                     Then rose up Zerubbabel the son of Shealtiel, and Jeshua the son of Jozadak, and began to build the house of God which is at Jerusalem: and with them were the prophets of God helping them.
12138                                                                                                                                                                                                                                                                                                                                    At the same time came to them Tatnai, governor on this side the river, and Shetharboznai and their companions, and said thus unto them, Who hath commanded you to build this house, and to make up this wall?
12139                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said we unto them after this manner, What are the names of the men that make this building?
12140                                                                                                                                                                                                                                                                                                                                               But the eye of their God was upon the elders of the Jews, that they could not cause them to cease, till the matter came to Darius: and then they returned answer by letter concerning this matter.
12141                                                                                                                                                                                                                                                                                                                                                       The copy of the letter that Tatnai, governor on this side the river, and Shetharboznai and his companions the Apharsachites, which were on this side the river, sent unto Darius the king:
12142                                                                                                                                                                                                                                                                                                                                                                                                                                                          They sent a letter unto him, wherein was written thus; Unto Darius the king, all peace.
12143                                                                                                                                                                                                                                                                                                              Be it known unto the king, that we went into the province of Judea, to the house of the great God, which is builded with great stones, and timber is laid in the walls, and this work goeth fast on, and prospereth in their hands.
12144                                                                                                                                                                                                                                                                                                                                                                                                                          Then asked we those elders, and said unto them thus, Who commanded you to build this house, and to make up these walls?
12145                                                                                                                                                                                                                                                                                                                                                                                                                                We asked their names also, to certify thee, that we might write the names of the men that were the chief of them.
12146                                                                                                                                                                                                                                                                                                                                        And thus they returned us answer, saying, We are the servants of the God of heaven and earth, and build the house that was builded these many years ago, which a great king of Israel builded and set up.
12147                                                                                                                                                                                                                                                                                                                        But after that our fathers had provoked the God of heaven unto wrath, he gave them into the hand of Nebuchadnezzar the king of Babylon, the Chaldean, who destroyed this house, and carried the people away into Babylon.
12148                                                                                                                                                                                                                                                                                                                                                                                                                                 But in the first year of Cyrus the king of Babylon the same king Cyrus made a decree to build this house of God.
12149                                                                                                                                                                                                                And the vessels also of gold and silver of the house of God, which Nebuchadnezzar took out of the temple that was in Jerusalem, and brought them into the temple of Babylon, those did Cyrus the king take out of the temple of Babylon, and they were delivered unto one, whose name was Sheshbazzar, whom he had made governor;
12150                                                                                                                                                                                                                                                                                                                                                                                                    And said unto him, Take these vessels, go, carry them into the temple that is in Jerusalem, and let the house of God be builded in his place.
12151                                                                                                                                                                                                                                                                                                                                                      Then came the same Sheshbazzar, and laid the foundation of the house of God which is in Jerusalem: and since that time even until now hath it been in building, and yet it is not finished.
12152                                                                                                                                                                                                                                               Now therefore, if it seem good to the king, let there be search made in the king's treasure house, which is there at Babylon, whether it be so, that a decree was made of Cyrus the king to build this house of God at Jerusalem, and let the king send his pleasure to us concerning this matter.
12153                                                                                                                                                                                                                                                                                                                                                                                                                  Then Darius the king made a decree, and search was made in the house of the rolls, where the treasures were laid up in Babylon.
12154                                                                                                                                                                                                                                                                                                                                                                                                              And there was found at Achmetha, in the palace that is in the province of the Medes, a roll, and therein was a record thus written:
12155                                                                                                                                                                                                                        In the first year of Cyrus the king the same Cyrus the king made a decree concerning the house of God at Jerusalem, Let the house be builded, the place where they offered sacrifices, and let the foundations thereof be strongly laid; the height thereof threescore cubits, and the breadth thereof threescore cubits;
12156                                                                                                                                                                                                                                                                                                                                                                                                                                 With three rows of great stones, and a row of new timber: and let the expenses be given out of the king's house:
12157                                                                                                                                                                                                                                             And also let the golden and silver vessels of the house of God, which Nebuchadnezzar took forth out of the temple which is at Jerusalem, and brought unto Babylon, be restored, and brought again unto the temple which is at Jerusalem, every one to his place, and place them in the house of God.
12158                                                                                                                                                                                                                                                                                                                                                                                       Now therefore, Tatnai, governor beyond the river, Shetharboznai, and your companions the Apharsachites, which are beyond the river, be ye far from thence:
12159                                                                                                                                                                                                                                                                                                                                                                                                           Let the work of this house of God alone; let the governor of the Jews and the elders of the Jews build this house of God in his place.
12160                                                                                                                                                                                                                                                                                              Moreover I make a decree what ye shall do to the elders of these Jews for the building of this house of God: that of the king's goods, even of the tribute beyond the river, forthwith expenses be given unto these men, that they be not hindered.
12161                                                                                                                                                                                                                                                                          And that which they have need of, both young bullocks, and rams, and lambs, for the burnt offerings of the God of heaven, wheat, salt, wine, and oil, according to the appointment of the priests which are at Jerusalem, let it be given them day by day without fail:
12162                                                                                                                                                                                                                                                                                                                                                                                                                      That they may offer sacrifices of sweet savours unto the God of heaven, and pray for the life of the king, and of his sons.
12163                                                                                                                                                                                                                                                                                                                                           Also I have made a decree, that whosoever shall alter this word, let timber be pulled down from his house, and being set up, let him be hanged thereon; and let his house be made a dunghill for this.
12164                                                                                                                                                                                                                                                                                                         And the God that hath caused his name to dwell there destroy all kings and people, that shall put to their hand to alter and to destroy this house of God which is at Jerusalem. I Darius have made a decree; let it be done with speed.
12165                                                                                                                                                                                                                                                                                                                                                                                       Then Tatnai, governor on this side the river, Shetharboznai, and their companions, according to that which Darius the king had sent, so they did speedily.
12166                                                                                                                                                                                                                                  And the elders of the Jews builded, and they prospered through the prophesying of Haggai the prophet and Zechariah the son of Iddo. And they builded, and finished it, according to the commandment of the God of Israel, and according to the commandment of Cyrus, and Darius, and Artaxerxes king of Persia.
12167                                                                                                                                                                                                                                                                                                                                                                                                                     And this house was finished on the third day of the month Adar, which was in the sixth year of the reign of Darius the king.
12168                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel, the priests, and the Levites, and the rest of the children of the captivity, kept the dedication of this house of God with joy.
12169                                                                                                                                                                                                                                                                                                                           And offered at the dedication of this house of God an hundred bullocks, two hundred rams, four hundred lambs; and for a sin offering for all Israel, twelve he goats, according to the number of the tribes of Israel.
12170                                                                                                                                                                                                                                                                                                                                                                             And they set the priests in their divisions, and the Levites in their courses, for the service of God, which is at Jerusalem; as it is written in the book of Moses.
12171                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of the captivity kept the passover upon the fourteenth day of the first month.
12172                                                                                                                                                                                                                                                                                                                                            For the priests and the Levites were purified together, all of them were pure, and killed the passover for all the children of the captivity, and for their brethren the priests, and for themselves.
12173                                                                                                                                                                                                                                                                                                                                  And the children of Israel, which were come again out of captivity, and all such as had separated themselves unto them from the filthiness of the heathen of the land, to seek the LORD God of Israel, did eat,
12174                                                                                                                                                                                                                                                                                                              And kept the feast of unleavened bread seven days with joy: for the LORD had made them joyful, and turned the heart of the king of Assyria unto them, to strengthen their hands in the work of the house of God, the God of Israel.
12175                                                                                                                                                                                                                                                                                                                                                                                                              Now after these things, in the reign of Artaxerxes king of Persia, Ezra the son of Seraiah, the son of Azariah, the son of Hilkiah,
12176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The son of Shallum, the son of Zadok, the son of Ahitub,
12177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The son of Amariah, the son of Azariah, the son of Meraioth,
12178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The son of Zerahiah, the son of Uzzi, the son of Bukki,
12179                                                                                                                                                                                                                                                                                                                                                                                                                                                  The son of Abishua, the son of Phinehas, the son of Eleazar, the son of Aaron the chief priest:
12180                                                                                                                                                                                                                                                                                                                             This Ezra went up from Babylon; and he was a ready scribe in the law of Moses, which the LORD God of Israel had given: and the king granted him all his request, according to the hand of the LORD his God upon him.
12181                                                                                                                                                                                                                                                                                                                                          And there went up some of the children of Israel, and of the priests, and the Levites, and the singers, and the porters, and the Nethinims, unto Jerusalem, in the seventh year of Artaxerxes the king.
12182                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he came to Jerusalem in the fifth month, which was in the seventh year of the king.
12183                                                                                                                                                                                                                                                                                                                                                          For upon the first day of the first month began he to go up from Babylon, and on the first day of the fifth month came he to Jerusalem, according to the good hand of his God upon him.
12184                                                                                                                                                                                                                                                                                                                                                                                                                        For Ezra had prepared his heart to seek the law of the LORD, and to do it, and to teach in Israel statutes and judgments.
12185                                                                                                                                                                                                                                                                                                                                                    Now this is the copy of the letter that the king Artaxerxes gave unto Ezra the priest, the scribe, even a scribe of the words of the commandments of the LORD, and of his statutes to Israel.
12186                                                                                                                                                                                                                                                                                                                                                                                                                    Artaxerxes, king of kings, unto Ezra the priest, a scribe of the law of the God of heaven, perfect peace, and at such a time.
12187                                                                                                                                                                                                                                                                                                                                                                 I make a decree, that all they of the people of Israel, and of his priests and Levites, in my realm, which are minded of their own freewill to go up to Jerusalem, go with thee.
12188                                                                                                                                                                                                                                                                                                                                                                         Forasmuch as thou art sent of the king, and of his seven counsellors, to enquire concerning Judah and Jerusalem, according to the law of thy God which is in thine hand;
12189                                                                                                                                                                                                                                                                                                                                                                                               And to carry the silver and gold, which the king and his counsellors have freely offered unto the God of Israel, whose habitation is in Jerusalem,
12190                                                                                                                                                                                                                                                                                                                              And all the silver and gold that thou canst find in all the province of Babylon, with the freewill offering of the people, and of the priests, offering willingly for the house of their God which is in Jerusalem:
12191                                                                                                                                                                                                                                                                                                                                          That thou mayest buy speedily with this money bullocks, rams, lambs, with their meat offerings and their drink offerings, and offer them upon the altar of the house of your God which is in Jerusalem.
12192                                                                                                                                                                                                                                                                                                                                                                                                 And whatsoever shall seem good to thee, and to thy brethren, to do with the rest of the silver and the gold, that do after the will of your God.
12193                                                                                                                                                                                                                                                                                                                                                                                                                    The vessels also that are given thee for the service of the house of thy God, those deliver thou before the God of Jerusalem.
12194                                                                                                                                                                                                                                                                                                                                                                                             And whatsoever more shall be needful for the house of thy God, which thou shalt have occasion to bestow, bestow it out of the king's treasure house.
12195                                                                                                                                                                                                                                                                                                                    And I, even I Artaxerxes the king, do make a decree to all the treasurers which are beyond the river, that whatsoever Ezra the priest, the scribe of the law of the God of heaven, shall require of you, it be done speedily,
12196                                                                                                                                                                                                                                                                                                                                                                  Unto an hundred talents of silver, and to an hundred measures of wheat, and to an hundred baths of wine, and to an hundred baths of oil, and salt without prescribing how much.
12197                                                                                                                                                                                                                                                                                                                                                            Whatsoever is commanded by the God of heaven, let it be diligently done for the house of the God of heaven: for why should there be wrath against the realm of the king and his sons?
12198                                                                                                                                                                                                                                                                                                                                         Also we certify you, that touching any of the priests and Levites, singers, porters, Nethinims, or ministers of this house of God, it shall not be lawful to impose toll, tribute, or custom, upon them.
12199                                                                                                                                                                                                                                                                                                            And thou, Ezra, after the wisdom of thy God, that is in thine hand, set magistrates and judges, which may judge all the people that are beyond the river, all such as know the laws of thy God; and teach ye them that know them not.
12200                                                                                                                                                                                                                                                                                                                                  And whosoever will not do the law of thy God, and the law of the king, let judgment be executed speedily upon him, whether it be unto death, or to banishment, or to confiscation of goods, or to imprisonment.
12201                                                                                                                                                                                                                                                                                                                                                                                        Blessed be the LORD God of our fathers, which hath put such a thing as this in the king's heart, to beautify the house of the LORD which is in Jerusalem:
12202                                                                                                                                                                                                                                                                                             And hath extended mercy unto me before the king, and his counsellors, and before all the king's mighty princes. And I was strengthened as the hand of the LORD my God was upon me, and I gathered together out of Israel chief men to go up with me.
12203                                                                                                                                                                                                                                                                                                                                                                                              These are now the chief of their fathers, and this is the genealogy of them that went up with me from Babylon, in the reign of Artaxerxes the king.
12204                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the sons of Phinehas; Gershom: of the sons of Ithamar; Daniel: of the sons of David; Hattush.
12205                                                                                                                                                                                                                                                                                                                                                                                                         Of the sons of Shechaniah, of the sons of Pharosh; Zechariah: and with him were reckoned by genealogy of the males an hundred and fifty.
12206                                                                                                                                                                                                                                                                                                                                                                                                                                                        Of the sons of Pahathmoab; Elihoenai the son of Zerahiah, and with him two hundred males.
12207                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of the sons of Shechaniah; the son of Jahaziel, and with him three hundred males.
12208                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of the sons also of Adin; Ebed the son of Jonathan, and with him fifty males.
12209                                                                                                                                                                                                                                                                                                                                                                                                                                                               And of the sons of Elam; Jeshaiah the son of Athaliah, and with him seventy males.
12210                                                                                                                                                                                                                                                                                                                                                                                                                                                        And of the sons of Shephatiah; Zebadiah the son of Michael, and with him fourscore males.
12211                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the sons of Joab; Obadiah the son of Jehiel, and with him two hundred and eighteen males.
12212                                                                                                                                                                                                                                                                                                                                                                                                                                                And of the sons of Shelomith; the son of Josiphiah, and with him an hundred and threescore males.
12213                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of the sons of Bebai; Zechariah the son of Bebai, and with him twenty and eight males.
12214                                                                                                                                                                                                                                                                                                                                                                                                                                                    And of the sons of Azgad; Johanan the son of Hakkatan, and with him an hundred and ten males.
12215                                                                                                                                                                                                                                                                                                                                                                                                                         And of the last sons of Adonikam, whose names are these, Eliphelet, Jeiel, and Shemaiah, and with them threescore males.
12216                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of the sons also of Bigvai; Uthai, and Zabbud, and with them seventy males.
12217                                                                                                                                                                                                                                                                                                                                                     And I gathered them together to the river that runneth to Ahava; and there abode we in tents three days: and I viewed the people, and the priests, and found there none of the sons of Levi.
12218                                                                                                                                                                                                                                                                                                                  Then sent I for Eliezer, for Ariel, for Shemaiah, and for Elnathan, and for Jarib, and for Elnathan, and for Nathan, and for Zechariah, and for Meshullam, chief men; also for Joiarib, and for Elnathan, men of understanding.
12219                                                                                                                                                                                                                                                                                         And I sent them with commandment unto Iddo the chief at the place Casiphia, and I told them what they should say unto Iddo, and to his brethren the Nethinims, at the place Casiphia, that they should bring unto us ministers for the house of our God.
12220                                                                                                                                                                                                                                                                                                                                               And by the good hand of our God upon us they brought us a man of understanding, of the sons of Mahli, the son of Levi, the son of Israel; and Sherebiah, with his sons and his brethren, eighteen;
12221                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Hashabiah, and with him Jeshaiah of the sons of Merari, his brethren and their sons, twenty;
12222                                                                                                                                                                                                                                                                                                                                                                            Also of the Nethinims, whom David and the princes had appointed for the service of the Levites, two hundred and twenty Nethinims: all of them were expressed by name.
12223                                                                                                                                                                                                                                                                                                                                                    Then I proclaimed a fast there, at the river of Ahava, that we might afflict ourselves before our God, to seek of him a right way for us, and for our little ones, and for all our substance.
12224                                                                                                                                                                                                                                                    For I was ashamed to require of the king a band of soldiers and horsemen to help us against the enemy in the way: because we had spoken unto the king, saying, The hand of our God is upon all them for good that seek him; but his power and his wrath is against all them that forsake him.
12225                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So we fasted and besought our God for this: and he was intreated of us.
12226                                                                                                                                                                                                                                                                                                                                                                                                                                  Then I separated twelve of the chief of the priests, Sherebiah, Hashabiah, and ten of their brethren with them,
12227                                                                                                                                                                                                                                                                                                                                       And weighed unto them the silver, and the gold, and the vessels, even the offering of the house of our God, which the king, and his counsellors, and his lords, and all Israel there present, had offered:
12228                                                                                                                                                                                                                                                                                                                                                                                                   I even weighed unto their hand six hundred and fifty talents of silver, and silver vessels an hundred talents, and of gold an hundred talents;
12229                                                                                                                                                                                                                                                                                                                                                                                                                                               Also twenty basons of gold, of a thousand drams; and two vessels of fine copper, precious as gold.
12230                                                                                                                                                                                                                                                                                                                                                                               And I said unto them, Ye are holy unto the LORD; the vessels are holy also; and the silver and the gold are a freewill offering unto the LORD God of your fathers.
12231                                                                                                                                                                                                                                                                                                                                                        Watch ye, and keep them, until ye weigh them before the chief of the priests and the Levites, and chief of the fathers of Israel, at Jerusalem, in the chambers of the house of the LORD.
12232                                                                                                                                                                                                                                                                                                                                                                                               So took the priests and the Levites the weight of the silver, and the gold, and the vessels, to bring them to Jerusalem unto the house of our God.
12233                                                                                                                                                                                                                                                                                                                Then we departed from the river of Ahava on the twelfth day of the first month, to go unto Jerusalem: and the hand of our God was upon us, and he delivered us from the hand of the enemy, and of such as lay in wait by the way.
12234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And we came to Jerusalem, and abode there three days.
12235                                                                                                                                                                                                                                                        Now on the fourth day was the silver and the gold and the vessels weighed in the house of our God by the hand of Meremoth the son of Uriah the priest; and with him was Eleazar the son of Phinehas; and with them was Jozabad the son of Jeshua, and Noadiah the son of Binnui, Levites;
12236                                                                                                                                                                                                                                                                                                                                                                                                                                                               By number and by weight of every one: and all the weight was written at that time.
12237                                                                                                                                                                                                                                      Also the children of those that had been carried away, which were come out of the captivity, offered burnt offerings unto the God of Israel, twelve bullocks for all Israel, ninety and six rams, seventy and seven lambs, twelve he goats for a sin offering: all this was a burnt offering unto the LORD.
12238                                                                                                                                                                                                                                                                                                                                                                         And they delivered the king's commissions unto the king's lieutenants, and to the governors on this side the river: and they furthered the people, and the house of God.
12239                                                                                                                                                                                   Now when these things were done, the princes came to me, saying, The people of Israel, and the priests, and the Levites, have not separated themselves from the people of the lands, doing according to their abominations, even of the Canaanites, the Hittites, the Perizzites, the Jebusites, the Ammonites, the Moabites, the Egyptians, and the Amorites.
12240                                                                                                                                                                                                                                                                                                               For they have taken of their daughters for themselves, and for their sons: so that the holy seed have mingled themselves with the people of those lands: yea, the hand of the princes and rulers hath been chief in this trespass.
12241                                                                                                                                                                                                                                                                                                                                                                                                        And when I heard this thing, I rent my garment and my mantle, and plucked off the hair of my head and of my beard, and sat down astonied.
12242                                                                                                                                                                                                                                                                                                                                         Then were assembled unto me every one that trembled at the words of the God of Israel, because of the transgression of those that had been carried away; and I sat astonied until the evening sacrifice.
12243                                                                                                                                                                                                                                                                                                                                                                         And at the evening sacrifice I arose up from my heaviness; and having rent my garment and my mantle, I fell upon my knees, and spread out my hands unto the LORD my God,
12244                                                                                                                                                                                                                                                                                                                                                                    And said, O my God, I am ashamed and blush to lift up my face to thee, my God: for our iniquities are increased over our head, and our trespass is grown up unto the heavens.
12245                                                                                                                                                                                                                                                       Since the days of our fathers have we been in a great trespass unto this day; and for our iniquities have we, our kings, and our priests, been delivered into the hand of the kings of the lands, to the sword, to captivity, and to a spoil, and to confusion of face, as it is this day.
12246                                                                                                                                                                                                                                                                                                              And now for a little space grace hath been shewed from the LORD our God, to leave us a remnant to escape, and to give us a nail in his holy place, that our God may lighten our eyes, and give us a little reviving in our bondage.
12247                                                                                                                                                                                                                                                        For we were bondmen; yet our God hath not forsaken us in our bondage, but hath extended mercy unto us in the sight of the kings of Persia, to give us a reviving, to set up the house of our God, and to repair the desolations thereof, and to give us a wall in Judah and in Jerusalem.
12248                                                                                                                                                                                                                                                                                                                                                                                                                                                         And now, O our God, what shall we say after this? for we have forsaken thy commandments,
12249                                                                                                                                                                                                                                                                       Which thou hast commanded by thy servants the prophets, saying, The land, unto which ye go to possess it, is an unclean land with the filthiness of the people of the lands, with their abominations, which have filled it from one end to another with their uncleanness.
12250                                                                                                                                                                                                                                                                               Now therefore give not your daughters unto their sons, neither take their daughters unto your sons, nor seek their peace or their wealth for ever: that ye may be strong, and eat the good of the land, and leave it for an inheritance to your children for ever.
12251                                                                                                                                                                                                                                                                                                                                       And after all that is come upon us for our evil deeds, and for our great trespass, seeing that thou our God hast punished us less than our iniquities deserve, and hast given us such deliverance as this;
12252                                                                                                                                                                                                                                                                                                                             Should we again break thy commandments, and join in affinity with the people of these abominations? wouldest not thou be angry with us till thou hadst consumed us, so that there should be no remnant nor escaping?
12253                                                                                                                                                                                                                                                                                                                                                           O LORD God of Israel, thou art righteous: for we remain yet escaped, as it is this day: behold, we are before thee in our trespasses: for we cannot stand before thee because of this.
12254                                                                                                                                                                                                                                                                                                    Now when Ezra had prayed, and when he had confessed, weeping and casting himself down before the house of God, there assembled unto him out of Israel a very great congregation of men and women and children: for the people wept very sore.
12255                                                                                                                                                                                                                                                                                                       And Shechaniah the son of Jehiel, one of the sons of Elam, answered and said unto Ezra, We have trespassed against our God, and have taken strange wives of the people of the land: yet now there is hope in Israel concerning this thing.
12256                                                                                                                                                                                                                                                                                                Now therefore let us make a covenant with our God to put away all the wives, and such as are born of them, according to the counsel of my lord, and of those that tremble at the commandment of our God; and let it be done according to the law.
12257                                                                                                                                                                                                                                                                                                                                                                                                                                            Arise; for this matter belongeth unto thee: we also will be with thee: be of good courage, and do it.
12258                                                                                                                                                                                                                                                                                                                                                                                                   Then arose Ezra, and made the chief priests, the Levites, and all Israel, to swear that they should do according to this word. And they sware.
12259                                                                                                                                                                                                                                                                                        Then Ezra rose up from before the house of God, and went into the chamber of Johanan the son of Eliashib: and when he came thither, he did eat no bread, nor drink water: for he mourned because of the transgression of them that had been carried away.
12260                                                                                                                                                                                                                                                                                                                                                                                    And they made proclamation throughout Judah and Jerusalem unto all the children of the captivity, that they should gather themselves together unto Jerusalem;
12261                                                                                                                                                                                                                                                                                                             And that whosoever would not come within three days, according to the counsel of the princes and the elders, all his substance should be forfeited, and himself separated from the congregation of those that had been carried away.
12262                                                                                                                                                                                                                                                             Then all the men of Judah and Benjamin gathered themselves together unto Jerusalem within three days. It was the ninth month, on the twentieth day of the month; and all the people sat in the street of the house of God, trembling because of this matter, and for the great rain.
12263                                                                                                                                                                                                                                                                                                                                                                                                        And Ezra the priest stood up, and said unto them, Ye have transgressed, and have taken strange wives, to increase the trespass of Israel.
12264                                                                                                                                                                                                                                                                                                                                                                           Now therefore make confession unto the LORD God of your fathers, and do his pleasure: and separate yourselves from the people of the land, and from the strange wives.
12265                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then all the congregation answered and said with a loud voice, As thou hast said, so must we do.
12266                                                                                                                                                                                                                                                                                                                                                    But the people are many, and it is a time of much rain, and we are not able to stand without, neither is this a work of one day or two: for we are many that have transgressed in this thing.
12267                                                                                                                                                                                                                                                                    Let now our rulers of all the congregation stand, and let all them which have taken strange wives in our cities come at appointed times, and with them the elders of every city, and the judges thereof, until the fierce wrath of our God for this matter be turned from us.
12268                                                                                                                                                                                                                                                                                                                                                                                             Only Jonathan the son of Asahel and Jahaziah the son of Tikvah were employed about this matter: and Meshullam and Shabbethai the Levite helped them.
12269                                                                                                                                                                                                                                                                                      And the children of the captivity did so. And Ezra the priest, with certain chief of the fathers, after the house of their fathers, and all of them by their names, were separated, and sat down in the first day of the tenth month to examine the matter.
12270                                                                                                                                                                                                                                                                                                                                                                                                                                          And they made an end with all the men that had taken strange wives by the first day of the first month.
12271                                                                                                                                                                                                                                                                                                                                             And among the sons of the priests there were found that had taken strange wives: namely, of the sons of Jeshua the son of Jozadak, and his brethren; Maaseiah, and Eliezer, and Jarib, and Gedaliah.
12272                                                                                                                                                                                                                                                                                                                                                                                                            And they gave their hands that they would put away their wives; and being guilty, they offered a ram of the flock for their trespass.
12273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And of the sons of Immer; Hanani, and Zebadiah.
12274                                                                                                                                                                                                                                                                                                                                                                                                                                                            And of the sons of Harim; Maaseiah, and Elijah, and Shemaiah, and Jehiel, and Uzziah.
12275                                                                                                                                                                                                                                                                                                                                                                                                                                                          And of the sons of Pashur; Elioenai, Maaseiah, Ishmael, Nethaneel, Jozabad, and Elasah.
12276                                                                                                                                                                                                                                                                                                                                                                                                                                      Also of the Levites; Jozabad, and Shimei, and Kelaiah, (the same is Kelita,) Pethahiah, Judah, and Eliezer.
12277                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of the singers also; Eliashib: and of the porters; Shallum, and Telem, and Uri.
12278                                                                                                                                                                                                                                                                                                                                                                                                                Moreover of Israel: of the sons of Parosh; Ramiah, and Jeziah, and Malchiah, and Miamin, and Eleazar, and Malchijah, and Benaiah.
12279                                                                                                                                                                                                                                                                                                                                                                                                                                                    And of the sons of Elam; Mattaniah, Zechariah, and Jehiel, and Abdi, and Jeremoth, and Eliah.
12280                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of the sons of Zattu; Elioenai, Eliashib, Mattaniah, and Jeremoth, and Zabad, and Aziza.
12281                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the sons also of Bebai; Jehohanan, Hananiah, Zabbai, and Athlai.
12282                                                                                                                                                                                                                                                                                                                                                                                                                                                          And of the sons of Bani; Meshullam, Malluch, and Adaiah, Jashub, and Sheal, and Ramoth.
12283                                                                                                                                                                                                                                                                                                                                                                                                                               And of the sons of Pahathmoab; Adna, and Chelal, Benaiah, Maaseiah, Mattaniah, Bezaleel, and Binnui, and Manasseh.
12284                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And of the sons of Harim; Eliezer, Ishijah, Malchiah, Shemaiah, Shimeon,
12285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Benjamin, Malluch, and Shemariah.
12286                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the sons of Hashum; Mattenai, Mattathah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei.
12287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the sons of Bani; Maadai, Amram, and Uel,
12288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Benaiah, Bedeiah, Chelluh,
12289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Vaniah, Meremoth, Eliashib,
12290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mattaniah, Mattenai, and Jaasau,
12291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Bani, and Binnui, Shimei,
12292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Shelemiah, and Nathan, and Adaiah,
12293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Machnadebai, Shashai, Sharai,
12294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Azareel, and Shelemiah, Shemariah,
12295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shallum, Amariah, and Joseph.
12296                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the sons of Nebo; Jeiel, Mattithiah, Zabad, Zebina, Jadau, and Joel, Benaiah.
12297                                                                                                                                                                                                                                                                                                                                                                                                                                                         All these had taken strange wives: and some of them had wives by whom they had children.
12298                                                                                                                                                                                                                                                                                                                                                                                                     The words of Nehemiah the son of Hachaliah. And it came to pass in the month Chisleu, in the twentieth year, as I was in Shushan the palace,
12299                                                                                                                                                                                                                                                                                                                                                           That Hanani, one of my brethren, came, he and certain men of Judah; and I asked them concerning the Jews that had escaped, which were left of the captivity, and concerning Jerusalem.
12300                                                                                                                                                                                                                                                                                                                             And they said unto me, The remnant that are left of the captivity there in the province are in great affliction and reproach: the wall of Jerusalem also is broken down, and the gates thereof are burned with fire.
12301                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when I heard these words, that I sat down and wept, and mourned certain days, and fasted, and prayed before the God of heaven,
12302                                                                                                                                                                                                                                                                                                                                                                                 And said, I beseech thee, O LORD God of heaven, the great and terrible God, that keepeth covenant and mercy for them that love him and observe his commandments:
12303                                                                                                                                                                                                                         Let thine ear now be attentive, and thine eyes open, that thou mayest hear the prayer of thy servant, which I pray before thee now, day and night, for the children of Israel thy servants, and confess the sins of the children of Israel, which we have sinned against thee: both I and my father's house have sinned.
12304                                                                                                                                                                                                                                                                                                                                                                                    We have dealt very corruptly against thee, and have not kept the commandments, nor the statutes, nor the judgments, which thou commandedst thy servant Moses.
12305                                                                                                                                                                                                                                                                                                                                                                                               Remember, I beseech thee, the word that thou commandedst thy servant Moses, saying, If ye transgress, I will scatter you abroad among the nations:
12306                                                                                                                                                                                                                                                                                          But if ye turn unto me, and keep my commandments, and do them; though there were of you cast out unto the uttermost part of the heaven, yet will I gather them from thence, and will bring them unto the place that I have chosen to set my name there.
12307                                                                                                                                                                                                                                                                                                                                                                                                                                   Now these are thy servants and thy people, whom thou hast redeemed by thy great power, and by thy strong hand.
12308                                                                                                                                                                                                                                                               O LORD, I beseech thee, let now thine ear be attentive to the prayer of thy servant, and to the prayer of thy servants, who desire to fear thy name: and prosper, I pray thee, thy servant this day, and grant him mercy in the sight of this man. For I was the king's cupbearer.
12309                                                                                                                                                                                                                                                                                                                            And it came to pass in the month Nisan, in the twentieth year of Artaxerxes the king, that wine was before him: and I took up the wine, and gave it unto the king. Now I had not been beforetime sad in his presence.
12310                                                                                                                                                                                                                                                                                                                                                                                    Wherefore the king said unto me, Why is thy countenance sad, seeing thou art not sick? this is nothing else but sorrow of heart. Then I was very sore afraid,
12311                                                                                                                                                                                                                                                                                                                                         And said unto the king, Let the king live for ever: why should not my countenance be sad, when the city, the place of my fathers' sepulchres, lieth waste, and the gates thereof are consumed with fire?
12312                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then the king said unto me, For what dost thou make request? So I prayed to the God of heaven.
12313                                                                                                                                                                                                                                                                                                                                         And I said unto the king, If it please the king, and if thy servant have found favour in thy sight, that thou wouldest send me unto Judah, unto the city of my fathers' sepulchres, that I may build it.
12314                                                                                                                                                                                                                                                                                                                                                               And the king said unto me, (the queen also sitting by him,) For how long shall thy journey be? and when wilt thou return? So it pleased the king to send me; and I set him a time.
12315                                                                                                                                                                                                                                                                                                                                                                            Moreover I said unto the king, If it please the king, let letters be given me to the governors beyond the river, that they may convey me over till I come into Judah;
12316                                                                                                                                                                                                                                    And a letter unto Asaph the keeper of the king's forest, that he may give me timber to make beams for the gates of the palace which appertained to the house, and for the wall of the city, and for the house that I shall enter into. And the king granted me, according to the good hand of my God upon me.
12317                                                                                                                                                                                                                                                                                                                                                                                                Then I came to the governors beyond the river, and gave them the king's letters. Now the king had sent captains of the army and horsemen with me.
12318                                                                                                                                                                                                                                                                                                                                                             When Sanballat the Horonite, and Tobiah the servant, the Ammonite, heard of it, it grieved them exceedingly that there was come a man to seek the welfare of the children of Israel.
12319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So I came to Jerusalem, and was there three days.
12320                                                                                                                                                                                                                                                                                                                                           And I arose in the night, I and some few men with me; neither told I any man what my God had put in my heart to do at Jerusalem: neither was there any beast with me, save the beast that I rode upon.
12321                                                                                                                                                                                                                                                                                                                                  And I went out by night by the gate of the valley, even before the dragon well, and to the dung port, and viewed the walls of Jerusalem, which were broken down, and the gates thereof were consumed with fire.
12322                                                                                                                                                                                                                                                                                                                                                                                                              Then I went on to the gate of the fountain, and to the king's pool: but there was no place for the beast that was under me to pass.
12323                                                                                                                                                                                                                                                                                                                                                                                                          Then went I up in the night by the brook, and viewed the wall, and turned back, and entered by the gate of the valley, and so returned.
12324                                                                                                                                                                                                                                                                                                                                                    And the rulers knew not whither I went, or what I did; neither had I as yet told it to the Jews, nor to the priests, nor to the nobles, nor to the rulers, nor to the rest that did the work.
12325                                                                                                                                                                                                                                                                                                                                Then said I unto them, Ye see the distress that we are in, how Jerusalem lieth waste, and the gates thereof are burned with fire: come, and let us build up the wall of Jerusalem, that we be no more a reproach.
12326                                                                                                                                                                                                                                                                                                                                Then I told them of the hand of my God which was good upon me; as also the king's words that he had spoken unto me. And they said, Let us rise up and build. So they strengthened their hands for this good work.
12327                                                                                                                                                                                                                                                                                                                     But when Sanballat the Horonite, and Tobiah the servant, the Ammonite, and Geshem the Arabian, heard it, they laughed us to scorn, and despised us, and said, What is this thing that ye do? will ye rebel against the king?
12328                                                                                                                                                                                                                                                                                                                                                  Then answered I them, and said unto them, The God of heaven, he will prosper us; therefore we his servants will arise and build: but ye have no portion, nor right, nor memorial, in Jerusalem.
12329                                                                                                                                                                                                                                                                                                                Then Eliashib the high priest rose up with his brethren the priests, and they builded the sheep gate; they sanctified it, and set up the doors of it; even unto the tower of Meah they sanctified it, unto the tower of Hananeel.
12330                                                                                                                                                                                                                                                                                                                                                                                                                                                   And next unto him builded the men of Jericho. And next to them builded Zaccur the son of Imri.
12331                                                                                                                                                                                                                                                                                                                                                                                       But the fish gate did the sons of Hassenaah build, who also laid the beams thereof, and set up the doors thereof, the locks thereof, and the bars thereof.
12332                                                                                                                                                                                                                                                                                                                                  And next unto them repaired Meremoth the son of Urijah, the son of Koz. And next unto them repaired Meshullam the son of Berechiah, the son of Meshezabeel. And next unto them repaired Zadok the son of Baana.
12333                                                                                                                                                                                                                                                                                                                                                                                                                                        And next unto them the Tekoites repaired; but their nobles put not their necks to the work of their LORD.
12334                                                                                                                                                                                                                                                                                                                                           Moreover the old gate repaired Jehoiada the son of Paseah, and Meshullam the son of Besodeiah; they laid the beams thereof, and set up the doors thereof, and the locks thereof, and the bars thereof.
12335                                                                                                                                                                                                                                                                                                                                                                         And next unto them repaired Melatiah the Gibeonite, and Jadon the Meronothite, the men of Gibeon, and of Mizpah, unto the throne of the governor on this side the river.
12336                                                                                                                                                                                                                                                                                                                                                 Next unto him repaired Uzziel the son of Harhaiah, of the goldsmiths. Next unto him also repaired Hananiah the son of one of the apothecaries, and they fortified Jerusalem unto the broad wall.
12337                                                                                                                                                                                                                                                                                                                                                                                                                                                    And next unto them repaired Rephaiah the son of Hur, the ruler of the half part of Jerusalem.
12338                                                                                                                                                                                                                                                                                                                                                                                                  And next unto them repaired Jedaiah the son of Harumaph, even over against his house. And next unto him repaired Hattush the son of Hashabniah.
12339                                                                                                                                                                                                                                                                                                                                                                                                                           Malchijah the son of Harim, and Hashub the son of Pahathmoab, repaired the other piece, and the tower of the furnaces.
12340                                                                                                                                                                                                                                                                                                                                                                                                                           And next unto him repaired Shallum the son of Halohesh, the ruler of the half part of Jerusalem, he and his daughters.
12341                                                                                                                                                                                                                                                                                                                                       The valley gate repaired Hanun, and the inhabitants of Zanoah; they built it, and set up the doors thereof, the locks thereof, and the bars thereof, and a thousand cubits on the wall unto the dung gate.
12342                                                                                                                                                                                                                                                                                                                                                                    But the dung gate repaired Malchiah the son of Rechab, the ruler of part of Bethhaccerem; he built it, and set up the doors thereof, the locks thereof, and the bars thereof.
12343                                                                                                                                                                                                                            But the gate of the fountain repaired Shallun the son of Colhozeh, the ruler of part of Mizpah; he built it, and covered it, and set up the doors thereof, the locks thereof, and the bars thereof, and the wall of the pool of Siloah by the king's garden, and unto the stairs that go down from the city of David.
12344                                                                                                                                                                                                                                                                                                                                       After him repaired Nehemiah the son of Azbuk, the ruler of the half part of Bethzur, unto the place over against the sepulchres of David, and to the pool that was made, and unto the house of the mighty.
12345                                                                                                                                                                                                                                                                                                                                                                                                      After him repaired the Levites, Rehum the son of Bani. Next unto him repaired Hashabiah, the ruler of the half part of Keilah, in his part.
12346                                                                                                                                                                                                                                                                                                                                                                                                                                               After him repaired their brethren, Bavai the son of Henadad, the ruler of the half part of Keilah.
12347                                                                                                                                                                                                                                                                                                                                                                                         And next to him repaired Ezer the son of Jeshua, the ruler of Mizpah, another piece over against the going up to the armoury at the turning of the wall.
12348                                                                                                                                                                                                                                                                                                                                                                                      After him Baruch the son of Zabbai earnestly repaired the other piece, from the turning of the wall unto the door of the house of Eliashib the high priest.
12349                                                                                                                                                                                                                                                                                                                                                                                     After him repaired Meremoth the son of Urijah the son of Koz another piece, from the door of the house of Eliashib even to the end of the house of Eliashib.
12350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And after him repaired the priests, the men of the plain.
12351                                                                                                                                                                                                                                                                                                                                                                                                 After him repaired Benjamin and Hashub over against their house. After him repaired Azariah the son of Maaseiah the son of Ananiah by his house.
12352                                                                                                                                                                                                                                                                                                                                                                                                        After him repaired Binnui the son of Henadad another piece, from the house of Azariah unto the turning of the wall, even unto the corner.
12353                                                                                                                                                                                                                                                                                                                                                 Palal the son of Uzai, over against the turning of the wall, and the tower which lieth out from the king's high house, that was by the court of the prison. After him Pedaiah the son of Parosh.
12354                                                                                                                                                                                                                                                                                                                                                                                                                 Moreover the Nethinims dwelt in Ophel, unto the place over against the water gate toward the east, and the tower that lieth out.
12355                                                                                                                                                                                                                                                                                                                                                                                                                        After them the Tekoites repaired another piece, over against the great tower that lieth out, even unto the wall of Ophel.
12356                                                                                                                                                                                                                                                                                                                                                                                                                                                                From above the horse gate repaired the priests, every one over against his house.
12357                                                                                                                                                                                                                                                                                                                                                                                          After them repaired Zadok the son of Immer over against his house. After him repaired also Shemaiah the son of Shechaniah, the keeper of the east gate.
12358                                                                                                                                                                                                                                                                                                                                                                  After him repaired Hananiah the son of Shelemiah, and Hanun the sixth son of Zalaph, another piece. After him repaired Meshullam the son of Berechiah over against his chamber.
12359                                                                                                                                                                                                                                                                                                                                                                         After him repaired Malchiah the goldsmith's son unto the place of the Nethinims, and of the merchants, over against the gate Miphkad, and to the going up of the corner.
12360                                                                                                                                                                                                                                                                                                                                                                                                                                            And between the going up of the corner unto the sheep gate repaired the goldsmiths and the merchants.
12361                                                                                                                                                                                                                                                                                                                                                                                                          But it came to pass, that when Sanballat heard that we builded the wall, he was wroth, and took great indignation, and mocked the Jews.
12362                                                                                                                                                                                                                                                                                  And he spake before his brethren and the army of Samaria, and said, What do these feeble Jews? will they fortify themselves? will they sacrifice? will they make an end in a day? will they revive the stones out of the heaps of the rubbish which are burned?
12363                                                                                                                                                                                                                                                                                                                                                                                                          Now Tobiah the Ammonite was by him, and he said, Even that which they build, if a fox go up, he shall even break down their stone wall.
12364                                                                                                                                                                                                                                                                                                                                                                                                            Hear, O our God; for we are despised: and turn their reproach upon their own head, and give them for a prey in the land of captivity:
12365                                                                                                                                                                                                                                                                                                                                                                                                   And cover not their iniquity, and let not their sin be blotted out from before thee: for they have provoked thee to anger before the builders.
12366                                                                                                                                                                                                                                                                                                                                                                                                                             So built we the wall; and all the wall was joined together unto the half thereof: for the people had a mind to work.
12367                                                                                                                                                                                                                                                                                                             But it came to pass, that when Sanballat, and Tobiah, and the Arabians, and the Ammonites, and the Ashdodites, heard that the walls of Jerusalem were made up, and that the breaches began to be stopped, then they were very wroth,
12368                                                                                                                                                                                                                                                                                                                                                                                                                                                     And conspired all of them together to come and to fight against Jerusalem, and to hinder it.
12369                                                                                                                                                                                                                                                                                                                                                                                                                                       Nevertheless we made our prayer unto our God, and set a watch against them day and night, because of them.
12370                                                                                                                                                                                                                                                                                                                                                                                                         And Judah said, The strength of the bearers of burdens is decayed, and there is much rubbish; so that we are not able to build the wall.
12371                                                                                                                                                                                                                                                                                                                                                                                                    And our adversaries said, They shall not know, neither see, till we come in the midst among them, and slay them, and cause the work to cease.
12372                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, that when the Jews which dwelt by them came, they said unto us ten times, From all places whence ye shall return unto us they will be upon you.
12373                                                                                                                                                                                                                                                                                                                                                                       Therefore set I in the lower places behind the wall, and on the higher places, I even set the people after their families with their swords, their spears, and their bows.
12374                                                                                                                                                                                                                                                                        And I looked, and rose up, and said unto the nobles, and to the rulers, and to the rest of the people, Be not ye afraid of them: remember the LORD, which is great and terrible, and fight for your brethren, your sons, and your daughters, your wives, and your houses.
12375                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when our enemies heard that it was known unto us, and God had brought their counsel to nought, that we returned all of us to the wall, every one unto his work.
12376                                                                                                                                                                                                                                                                                                   And it came to pass from that time forth, that the half of my servants wrought in the work, and the other half of them held both the spears, the shields, and the bows, and the habergeons; and the rulers were behind all the house of Judah.
12377                                                                                                                                                                                                                                                                                                                                                                   They which builded on the wall, and they that bare burdens, with those that laded, every one with one of his hands wrought in the work, and with the other hand held a weapon.
12378                                                                                                                                                                                                                                                                                                                                                                                                                         For the builders, every one had his sword girded by his side, and so builded. And he that sounded the trumpet was by me.
12379                                                                                                                                                                                                                                                                                                                                                                             And I said unto the nobles, and to the rulers, and to the rest of the people, The work is great and large, and we are separated upon the wall, one far from another.
12380                                                                                                                                                                                                                                                                                                                                                                                                                                 In what place therefore ye hear the sound of the trumpet, resort ye thither unto us: our God shall fight for us.
12381                                                                                                                                                                                                                                                                                                                                                                                                                             So we laboured in the work: and half of them held the spears from the rising of the morning till the stars appeared.
12382                                                                                                                                                                                                                                                                                                                                                                     Likewise at the same time said I unto the people, Let every one with his servant lodge within Jerusalem, that in the night they may be a guard to us, and labour on the day.
12383                                                                                                                                                                                                                                                                                                                                                                      So neither I, nor my brethren, nor my servants, nor the men of the guard which followed me, none of us put off our clothes, saving that every one put them off for washing.
12384                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there was a great cry of the people and of their wives against their brethren the Jews.
12385                                                                                                                                                                                                                                                                                                                                                                                                              For there were that said, We, our sons, and our daughters, are many: therefore we take up corn for them, that we may eat, and live.
12386                                                                                                                                                                                                                                                                                                                                                                                                               Some also there were that said, We have mortgaged our lands, vineyards, and houses, that we might buy corn, because of the dearth.
12387                                                                                                                                                                                                                                                                                                                                                                                                                                 There were also that said, We have borrowed money for the king's tribute, and that upon our lands and vineyards.
12388                                                                                                                                                                                                                                  Yet now our flesh is as the flesh of our brethren, our children as their children: and, lo, we bring into bondage our sons and our daughters to be servants, and some of our daughters are brought unto bondage already: neither is it in our power to redeem them; for other men have our lands and vineyards.
12389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I was very angry when I heard their cry and these words.
12390                                                                                                                                                                                                                                                                                                                                                                   Then I consulted with myself, and I rebuked the nobles, and the rulers, and said unto them, Ye exact usury, every one of his brother. And I set a great assembly against them.
12391                                                                                                                                                                                                                                                                                                   And I said unto them, We after our ability have redeemed our brethren the Jews, which were sold unto the heathen; and will ye even sell your brethren? or shall they be sold unto us? Then held they their peace, and found nothing to answer.
12392                                                                                                                                                                                                                                                                                                                                                                                                          Also I said, It is not good that ye do: ought ye not to walk in the fear of our God because of the reproach of the heathen our enemies?
12393                                                                                                                                                                                                                                                                                                                                                                                                                       I likewise, and my brethren, and my servants, might exact of them money and corn: I pray you, let us leave off this usury.
12394                                                                                                                                                                                                                                                                                                                              Restore, I pray you, to them, even this day, their lands, their vineyards, their oliveyards, and their houses, also the hundredth part of the money, and of the corn, the wine, and the oil, that ye exact of them.
12395                                                                                                                                                                                                                                                                                                                                        Then said they, We will restore them, and will require nothing of them; so will we do as thou sayest. Then I called the priests, and took an oath of them, that they should do according to this promise.
12396                                                                                                                                                                                                                                                               Also I shook my lap, and said, So God shake out every man from his house, and from his labour, that performeth not this promise, even thus be he shaken out, and emptied. And all the congregation said, Amen, and praised the LORD. And the people did according to this promise.
12397                                                                                                                                                                                                                                                                                   Moreover from the time that I was appointed to be their governor in the land of Judah, from the twentieth year even unto the two and thirtieth year of Artaxerxes the king, that is, twelve years, I and my brethren have not eaten the bread of the governor.
12398                                                                                                                                                                                                                                                                                        But the former governors that had been before me were chargeable unto the people, and had taken of them bread and wine, beside forty shekels of silver; yea, even their servants bare rule over the people: but so did not I, because of the fear of God.
12399                                                                                                                                                                                                                                                                                                                                                                                                             Yea, also I continued in the work of this wall, neither bought we any land: and all my servants were gathered thither unto the work.
12400                                                                                                                                                                                                                                                                                                                                                                                            Moreover there were at my table an hundred and fifty of the Jews and rulers, beside those that came unto us from among the heathen that are about us.
12401                                                                                                                                                                                                                                                                           Now that which was prepared for me daily was one ox and six choice sheep; also fowls were prepared for me, and once in ten days store of all sorts of wine: yet for all this required not I the bread of the governor, because the bondage was heavy upon this people.
12402                                                                                                                                                                                                                                                                                                                                                                                                                                                              Think upon me, my God, for good, according to all that I have done for this people.
12403                                                                                                                                                                                                                                                                                              Now it came to pass when Sanballat, and Tobiah, and Geshem the Arabian, and the rest of our enemies, heard that I had builded the wall, and that there was no breach left therein; (though at that time I had not set up the doors upon the gates;)
12404                                                                                                                                                                                                                                                                                                                                                                                  That Sanballat and Geshem sent unto me, saying, Come, let us meet together in some one of the villages in the plain of Ono. But they thought to do me mischief.
12405                                                                                                                                                                                                                                                                                                                                                                                And I sent messengers unto them, saying, I am doing a great work, so that I cannot come down: why should the work cease, whilst I leave it, and come down to you?
12406                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet they sent unto me four times after this sort; and I answered them after the same manner.
12407                                                                                                                                                                                                                                                                                                                                                                                                                                           Then sent Sanballat his servant unto me in like manner the fifth time with an open letter in his hand;
12408                                                                                                                                                                                                                                                                                                                             Wherein was written, It is reported among the heathen, and Gashmu saith it, that thou and the Jews think to rebel: for which cause thou buildest the wall, that thou mayest be their king, according to these words.
12409                                                                                                                                                                                                                                                                                                                 And thou hast also appointed prophets to preach of thee at Jerusalem, saying, There is a king in Judah: and now shall it be reported to the king according to these words. Come now therefore, and let us take counsel together.
12410                                                                                                                                                                                                                                                                                                                                                                                                                       Then I sent unto him, saying, There are no such things done as thou sayest, but thou feignest them out of thine own heart.
12411                                                                                                                                                                                                                                                                                                                                                                                                For they all made us afraid, saying, Their hands shall be weakened from the work, that it be not done. Now therefore, O God, strengthen my hands.
12412                                                                                                                                                                                                                                        Afterward I came unto the house of Shemaiah the son of Delaiah the son of Mehetabeel, who was shut up; and he said, Let us meet together in the house of God, within the temple, and let us shut the doors of the temple: for they will come to slay thee; yea, in the night will they come to slay thee.
12413                                                                                                                                                                                                                                                                                                                                                                                                     And I said, Should such a man as I flee? and who is there, that, being as I am, would go into the temple to save his life? I will not go in.
12414                                                                                                                                                                                                                                                                                                                                                                                                         And, lo, I perceived that God had not sent him; but that he pronounced this prophecy against me: for Tobiah and Sanballat had hired him.
12415                                                                                                                                                                                                                                                                                                                                                                                            Therefore was he hired, that I should be afraid, and do so, and sin, and that they might have matter for an evil report, that they might reproach me.
12416                                                                                                                                                                                                                                                                                                                                                                        My God, think thou upon Tobiah and Sanballat according to these their works, and on the prophetess Noadiah, and the rest of the prophets, that would have put me in fear.
12417                                                                                                                                                                                                                                                                                                                                                                                                                                                   So the wall was finished in the twenty and fifth day of the month Elul, in fifty and two days.
12418                                                                                                                                                                                                                                                                                                                     And it came to pass, that when all our enemies heard thereof, and all the heathen that were about us saw these things, they were much cast down in their own eyes: for they perceived that this work was wrought of our God.
12419                                                                                                                                                                                                                                                                                                                                                                                                                              Moreover in those days the nobles of Judah sent many letters unto Tobiah, and the letters of Tobiah came unto them.
12420                                                                                                                                                                                                                                                                                                                                                          For there were many in Judah sworn unto him, because he was the son in law of Shechaniah the son of Arah; and his son Johanan had taken the daughter of Meshullam the son of Berechiah.
12421                                                                                                                                                                                                                                                                                                                                                                                                                             Also they reported his good deeds before me, and uttered my words to him. And Tobiah sent letters to put me in fear.
12422                                                                                                                                                                                                                                                                                                                                                                                                        Now it came to pass, when the wall was built, and I had set up the doors, and the porters and the singers and the Levites were appointed,
12423                                                                                                                                                                                                                                                                                                                                                                                                That I gave my brother Hanani, and Hananiah the ruler of the palace, charge over Jerusalem: for he was a faithful man, and feared God above many.
12424                                                                                                                                                                                                                                                                    And I said unto them, Let not the gates of Jerusalem be opened until the sun be hot; and while they stand by, let them shut the doors, and bar them: and appoint watches of the inhabitants of Jerusalem, every one in his watch, and every one to be over against his house.
12425                                                                                                                                                                                                                                                                                                                                                                                                                                              Now the city was large and great: but the people were few therein, and the houses were not builded.
12426                                                                                                                                                                                                                                                                                                   And my God put into mine heart to gather together the nobles, and the rulers, and the people, that they might be reckoned by genealogy. And I found a register of the genealogy of them which came up at the first, and found written therein,
12427                                                                                                                                                                                                                                                                                                     These are the children of the province, that went up out of the captivity, of those that had been carried away, whom Nebuchadnezzar the king of Babylon had carried away, and came again to Jerusalem and to Judah, every one unto his city;
12428                                                                                                                                                                                                                                                                                                                                                     Who came with Zerubbabel, Jeshua, Nehemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, Baanah. The number, I say, of the men of the people of Israel was this;
12429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Parosh, two thousand an hundred seventy and two.
12430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The children of Shephatiah, three hundred seventy and two.
12431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Arah, six hundred fifty and two.
12432                                                                                                                                                                                                                                                                                                                                                                                                                                     The children of Pahathmoab, of the children of Jeshua and Joab, two thousand and eight hundred and eighteen.
12433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The children of Elam, a thousand two hundred fifty and four.
12434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Zattu, eight hundred forty and five.
12435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The children of Zaccai, seven hundred and threescore.
12436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Binnui, six hundred forty and eight.
12437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Bebai, six hundred twenty and eight.
12438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The children of Azgad, two thousand three hundred twenty and two.
12439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The children of Adonikam, six hundred threescore and seven.
12440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The children of Bigvai, two thousand threescore and seven.
12441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The children of Adin, six hundred fifty and five.
12442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Ater of Hezekiah, ninety and eight.
12443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The children of Hashum, three hundred twenty and eight.
12444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The children of Bezai, three hundred twenty and four.
12445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The children of Hariph, an hundred and twelve.
12446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Gibeon, ninety and five.
12447                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The men of Bethlehem and Netophah, an hundred fourscore and eight.
12448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The men of Anathoth, an hundred twenty and eight.
12449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The men of Bethazmaveth, forty and two.
12450                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The men of Kirjathjearim, Chephirah, and Beeroth, seven hundred forty and three.
12451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The men of Ramah and Gaba, six hundred twenty and one.
12452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The men of Michmas, an hundred and twenty and two.
12453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The men of Bethel and Ai, an hundred twenty and three.
12454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The men of the other Nebo, fifty and two.
12455                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of the other Elam, a thousand two hundred fifty and four.
12456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Harim, three hundred and twenty.
12457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Jericho, three hundred forty and five.
12458                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The children of Lod, Hadid, and Ono, seven hundred twenty and one.
12459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The children of Senaah, three thousand nine hundred and thirty.
12460                                                                                                                                                                                                                                                                                                                                                                                                                                                    The priests: the children of Jedaiah, of the house of Jeshua, nine hundred seventy and three.
12461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Immer, a thousand fifty and two.
12462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The children of Pashur, a thousand two hundred forty and seven.
12463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Harim, a thousand and seventeen.
12464                                                                                                                                                                                                                                                                                                                                                                                                                                               The Levites: the children of Jeshua, of Kadmiel, and of the children of Hodevah, seventy and four.
12465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The singers: the children of Asaph, an hundred forty and eight.
12466                                                                                                                                                                                                                                                                                                                                                          The porters: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai, an hundred thirty and eight.
12467                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Nethinims: the children of Ziha, the children of Hashupha, the children of Tabbaoth,
12468                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The children of Keros, the children of Sia, the children of Padon,
12469                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Lebana, the children of Hagaba, the children of Shalmai,
12470                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The children of Hanan, the children of Giddel, the children of Gahar,
12471                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Reaiah, the children of Rezin, the children of Nekoda,
12472                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Gazzam, the children of Uzza, the children of Phaseah,
12473                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The children of Besai, the children of Meunim, the children of Nephishesim,
12474                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Bakbuk, the children of Hakupha, the children of Harhur,
12475                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Bazlith, the children of Mehida, the children of Harsha,
12476                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Barkos, the children of Sisera, the children of Tamah,
12477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The children of Neziah, the children of Hatipha.
12478                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of Solomon's servants: the children of Sotai, the children of Sophereth, the children of Perida,
12479                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The children of Jaala, the children of Darkon, the children of Giddel,
12480                                                                                                                                                                                                                                                                                                                                                                                                                                   The children of Shephatiah, the children of Hattil, the children of Pochereth of Zebaim, the children of Amon.
12481                                                                                                                                                                                                                                                                                                                                                                                                                                                    All the Nethinims, and the children of Solomon's servants, were three hundred ninety and two.
12482                                                                                                                                                                                                                                                                                                                                                           And these were they which went up also from Telmelah, Telharesha, Cherub, Addon, and Immer: but they could not shew their father's house, nor their seed, whether they were of Israel.
12483                                                                                                                                                                                                                                                                                                                                                                                                                                              The children of Delaiah, the children of Tobiah, the children of Nekoda, six hundred forty and two.
12484                                                                                                                                                                                                                                                                                                                                                And of the priests: the children of Habaiah, the children of Koz, the children of Barzillai, which took one of the daughters of Barzillai the Gileadite to wife, and was called after their name.
12485                                                                                                                                                                                                                                                                                                                                                                                        These sought their register among those that were reckoned by genealogy, but it was not found: therefore were they, as polluted, put from the priesthood.
12486                                                                                                                                                                                                                                                                                                                                                                                                          And the Tirshatha said unto them, that they should not eat of the most holy things, till there stood up a priest with Urim and Thummim.
12487                                                                                                                                                                                                                                                                                                                                                                                                                                                         The whole congregation together was forty and two thousand three hundred and threescore,
12488                                                                                                                                                                                                                                                                                                                                                        Beside their manservants and their maidservants, of whom there were seven thousand three hundred thirty and seven: and they had two hundred forty and five singing men and singing women.
12489                                                                                                                                                                                                                                                                                                                                                                                                                                                             Their horses, seven hundred thirty and six: their mules, two hundred forty and five:
12490                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their camels, four hundred thirty and five: six thousand seven hundred and twenty asses.
12491                                                                                                                                                                                                                                                                                                                                                                   And some of the chief of the fathers gave unto the work. The Tirshatha gave to the treasure a thousand drams of gold, fifty basons, five hundred and thirty priests' garments.
12492                                                                                                                                                                                                                                                                                                                                                                                           And some of the chief of the fathers gave to the treasure of the work twenty thousand drams of gold, and two thousand and two hundred pound of silver.
12493                                                                                                                                                                                                                                                                                                                                                                                      And that which the rest of the people gave was twenty thousand drams of gold, and two thousand pound of silver, and threescore and seven priests' garments.
12494                                                                                                                                                                                                                                                                                                               So the priests, and the Levites, and the porters, and the singers, and some of the people, and the Nethinims, and all Israel, dwelt in their cities; and when the seventh month came, the children of Israel were in their cities.
12495                                                                                                                                                                                                                                                                                                                    And all the people gathered themselves together as one man into the street that was before the water gate; and they spake unto Ezra the scribe to bring the book of the law of Moses, which the LORD had commanded to Israel.
12496                                                                                                                                                                                                                                                                                                                                                                          And Ezra the priest brought the law before the congregation both of men and women, and all that could hear with understanding, upon the first day of the seventh month.
12497                                                                                                                                                                                                                                                                                                       And he read therein before the street that was before the water gate from the morning until midday, before the men and the women, and those that could understand; and the ears of all the people were attentive unto the book of the law.
12498                                                                                                                                                                                                                          And Ezra the scribe stood upon a pulpit of wood, which they had made for the purpose; and beside him stood Mattithiah, and Shema, and Anaiah, and Urijah, and Hilkiah, and Maaseiah, on his right hand; and on his left hand, Pedaiah, and Mishael, and Malchiah, and Hashum, and Hashbadana, Zechariah, and Meshullam.
12499                                                                                                                                                                                                                                                                                                                                                                                                      And Ezra opened the book in the sight of all the people; (for he was above all the people;) and when he opened it, all the people stood up:
12500                                                                                                                                                                                                                                                                                                                                              And Ezra blessed the LORD, the great God. And all the people answered, Amen, Amen, with lifting up their hands: and they bowed their heads, and worshipped the LORD with their faces to the ground.
12501                                                                                                                                                                                                                                                                                                                      Also Jeshua, and Bani, and Sherebiah, Jamin, Akkub, Shabbethai, Hodijah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, Pelaiah, and the Levites, caused the people to understand the law: and the people stood in their place.
12502                                                                                                                                                                                                                                                                                                                                                                                                                            So they read in the book in the law of God distinctly, and gave the sense, and caused them to understand the reading.
12503                                                                                                                                                                                                                                                                             And Nehemiah, which is the Tirshatha, and Ezra the priest the scribe, and the Levites that taught the people, said unto all the people, This day is holy unto the LORD your God; mourn not, nor weep. For all the people wept, when they heard the words of the law.
12504                                                                                                                                                                                                                                                                                                              Then he said unto them, Go your way, eat the fat, and drink the sweet, and send portions unto them for whom nothing is prepared: for this day is holy unto our LORD: neither be ye sorry; for the joy of the LORD is your strength.
12505                                                                                                                                                                                                                                                                                                                                                                                                                                      So the Levites stilled all the people, saying, Hold your peace, for the day is holy; neither be ye grieved.
12506                                                                                                                                                                                                                                                                                                                                                                       And all the people went their way to eat, and to drink, and to send portions, and to make great mirth, because they had understood the words that were declared unto them.
12507                                                                                                                                                                                                                                                                                                                                                            And on the second day were gathered together the chief of the fathers of all the people, the priests, and the Levites, unto Ezra the scribe, even to understand the words of the law.
12508                                                                                                                                                                                                                                                                                                                                                                                   And they found written in the law which the LORD had commanded by Moses, that the children of Israel should dwell in booths in the feast of the seventh month:
12509                                                                                                                                                                                                                                                                            And that they should publish and proclaim in all their cities, and in Jerusalem, saying, Go forth unto the mount, and fetch olive branches, and pine branches, and myrtle branches, and palm branches, and branches of thick trees, to make booths, as it is written.
12510                                                                                                                                                                                                                                                                                         So the people went forth, and brought them, and made themselves booths, every one upon the roof of his house, and in their courts, and in the courts of the house of God, and in the street of the water gate, and in the street of the gate of Ephraim.
12511                                                                                                                                                                                                                                                                                           And all the congregation of them that were come again out of the captivity made booths, and sat under the booths: for since the days of Jeshua the son of Nun unto that day had not the children of Israel done so. And there was very great gladness.
12512                                                                                                                                                                                                                                                                                                                                        Also day by day, from the first day unto the last day, he read in the book of the law of God. And they kept the feast seven days; and on the eighth day was a solemn assembly, according unto the manner.
12513                                                                                                                                                                                                                                                                                                                                                                                                    Now in the twenty and fourth day of this month the children of Israel were assembled with fasting, and with sackclothes, and earth upon them.
12514                                                                                                                                                                                                                                                                                                                                                                                                         And the seed of Israel separated themselves from all strangers, and stood and confessed their sins, and the iniquities of their fathers.
12515                                                                                                                                                                                                                                                                                                                                                   And they stood up in their place, and read in the book of the law of the LORD their God one fourth part of the day; and another fourth part they confessed, and worshipped the LORD their God.
12516                                                                                                                                                                                                                                                                                                                                                                   Then stood up upon the stairs, of the Levites, Jeshua, and Bani, Kadmiel, Shebaniah, Bunni, Sherebiah, Bani, and Chenani, and cried with a loud voice unto the LORD their God.
12517                                                                                                                                                                                                                                                                                           Then the Levites, Jeshua, and Kadmiel, Bani, Hashabniah, Sherebiah, Hodijah, Shebaniah, and Pethahiah, said, Stand up and bless the LORD your God for ever and ever: and blessed be thy glorious name, which is exalted above all blessing and praise.
12518                                                                                                                                                                                                                                                                                        Thou, even thou, art LORD alone; thou hast made heaven, the heaven of heavens, with all their host, the earth, and all things that are therein, the seas, and all that is therein, and thou preservest them all; and the host of heaven worshippeth thee.
12519                                                                                                                                                                                                                                                                                                                                                                                                       Thou art the LORD the God, who didst choose Abram, and broughtest him forth out of Ur of the Chaldees, and gavest him the name of Abraham;
12520                                                                                                                                                                                                                                                    And foundest his heart faithful before thee, and madest a covenant with him to give the land of the Canaanites, the Hittites, the Amorites, and the Perizzites, and the Jebusites, and the Girgashites, to give it, I say, to his seed, and hast performed thy words; for thou art righteous:
12521                                                                                                                                                                                                                                                                                                                                                                                                                                                     And didst see the affliction of our fathers in Egypt, and heardest their cry by the Red sea;
12522                                                                                                                                                                                                                                                                                                                                And shewedst signs and wonders upon Pharaoh, and on all his servants, and on all the people of his land: for thou knewest that they dealt proudly against them. So didst thou get thee a name, as it is this day.
12523                                                                                                                                                                                                                                                                                                                                                And thou didst divide the sea before them, so that they went through the midst of the sea on the dry land; and their persecutors thou threwest into the deeps, as a stone into the mighty waters.
12524                                                                                                                                                                                                                                                                                                                                                                                            Moreover thou leddest them in the day by a cloudy pillar; and in the night by a pillar of fire, to give them light in the way wherein they should go.
12525                                                                                                                                                                                                                                                                                                                                                                                       Thou camest down also upon mount Sinai, and spakest with them from heaven, and gavest them right judgments, and true laws, good statutes and commandments:
12526                                                                                                                                                                                                                                                                                                                                                                                                                And madest known unto them thy holy sabbath, and commandedst them precepts, statutes, and laws, by the hand of Moses thy servant:
12527                                                                                                                                                                                                                                                                                                                    And gavest them bread from heaven for their hunger, and broughtest forth water for them out of the rock for their thirst, and promisedst them that they should go in to possess the land which thou hadst sworn to give them.
12528                                                                                                                                                                                                                                                                                                                                                                                                                                         But they and our fathers dealt proudly, and hardened their necks, and hearkened not to thy commandments,
12529                                                                                                                                                                                                                                  And refused to obey, neither were mindful of thy wonders that thou didst among them; but hardened their necks, and in their rebellion appointed a captain to return to their bondage: but thou art a God ready to pardon, gracious and merciful, slow to anger, and of great kindness, and forsookest them not.
12530                                                                                                                                                                                                                                                                                                                                                                                                     Yea, when they had made them a molten calf, and said, This is thy God that brought thee up out of Egypt, and had wrought great provocations;
12531                                                                                                                                                                                                                                                                                             Yet thou in thy manifold mercies forsookest them not in the wilderness: the pillar of the cloud departed not from them by day, to lead them in the way; neither the pillar of fire by night, to shew them light, and the way wherein they should go.
12532                                                                                                                                                                                                                                                                                                                                                                                                       Thou gavest also thy good spirit to instruct them, and withheldest not thy manna from their mouth, and gavest them water for their thirst.
12533                                                                                                                                                                                                                                                                                                                                                                                                Yea, forty years didst thou sustain them in the wilderness, so that they lacked nothing; their clothes waxed not old, and their feet swelled not.
12534                                                                                                                                                                                                                                                                                                                                                 Moreover thou gavest them kingdoms and nations, and didst divide them into corners: so they possessed the land of Sihon, and the land of the king of Heshbon, and the land of Og king of Bashan.
12535                                                                                                                                                                                                                                                                                                                                                    Their children also multipliedst thou as the stars of heaven, and broughtest them into the land, concerning which thou hadst promised to their fathers, that they should go in to possess it.
12536                                                                                                                                                                                                                                                                                          So the children went in and possessed the land, and thou subduedst before them the inhabitants of the land, the Canaanites, and gavest them into their hands, with their kings, and the people of the land, that they might do with them as they would.
12537                                                                                                                                                                                                                                                                                    And they took strong cities, and a fat land, and possessed houses full of all goods, wells digged, vineyards, and oliveyards, and fruit trees in abundance: so they did eat, and were filled, and became fat, and delighted themselves in thy great goodness.
12538                                                                                                                                                                                                                                                                                                                                Nevertheless they were disobedient, and rebelled against thee, and cast thy law behind their backs, and slew thy prophets which testified against them to turn them to thee, and they wrought great provocations.
12539                                                                                                                                                                                                                                                   Therefore thou deliveredst them into the hand of their enemies, who vexed them: and in the time of their trouble, when they cried unto thee, thou heardest them from heaven; and according to thy manifold mercies thou gavest them saviours, who saved them out of the hand of their enemies.
12540                                                                                                                                                                                                                                       But after they had rest, they did evil again before thee: therefore leftest thou them in the land of their enemies, so that they had the dominion over them: yet when they returned, and cried unto thee, thou heardest them from heaven; and many times didst thou deliver them according to thy mercies;
12541                                                                                                                                                                                                                                           And testifiedst against them, that thou mightest bring them again unto thy law: yet they dealt proudly, and hearkened not unto thy commandments, but sinned against thy judgments, (which if a man do, he shall live in them;) and withdrew the shoulder, and hardened their neck, and would not hear.
12542                                                                                                                                                                                                                                                                                                                                            Yet many years didst thou forbear them, and testifiedst against them by thy spirit in thy prophets: yet would they not give ear: therefore gavest thou them into the hand of the people of the lands.
12543                                                                                                                                                                                                                                                                                                                                                                                                        Nevertheless for thy great mercies' sake thou didst not utterly consume them, nor forsake them; for thou art a gracious and merciful God.
12544                                                                                                                                                                                            Now therefore, our God, the great, the mighty, and the terrible God, who keepest covenant and mercy, let not all the trouble seem little before thee, that hath come upon us, on our kings, on our princes, and on our priests, and on our prophets, and on our fathers, and on all thy people, since the time of the kings of Assyria unto this day.
12545                                                                                                                                                                                                                                                                                                                                                                                                                                       Howbeit thou art just in all that is brought upon us; for thou hast done right, but we have done wickedly:
12546                                                                                                                                                                                                                                                                                                                                                             Neither have our kings, our princes, our priests, nor our fathers, kept thy law, nor hearkened unto thy commandments and thy testimonies, wherewith thou didst testify against them.
12547                                                                                                                                                                                                                                                                                                                                       For they have not served thee in their kingdom, and in thy great goodness that thou gavest them, and in the large and fat land which thou gavest before them, neither turned they from their wicked works.
12548                                                                                                                                                                                                                                                                                                                                                                               Behold, we are servants this day, and for the land that thou gavest unto our fathers to eat the fruit thereof and the good thereof, behold, we are servants in it:
12549                                                                                                                                                                                                                                                                                                                                      And it yieldeth much increase unto the kings whom thou hast set over us because of our sins: also they have dominion over our bodies, and over our cattle, at their pleasure, and we are in great distress.
12550                                                                                                                                                                                                                                                                                                                                                                                                                              And because of all this we make a sure covenant, and write it; and our princes, Levites, and priests, seal unto it.
12551                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now those that sealed were, Nehemiah, the Tirshatha, the son of Hachaliah, and Zidkijah,
12552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seraiah, Azariah, Jeremiah,
12553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pashur, Amariah, Malchijah,
12554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hattush, Shebaniah, Malluch,
12555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Harim, Meremoth, Obadiah,
12556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Daniel, Ginnethon, Baruch,
12557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Meshullam, Abijah, Mijamin,
12558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Maaziah, Bilgai, Shemaiah: these were the priests.
12559                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the Levites: both Jeshua the son of Azaniah, Binnui of the sons of Henadad, Kadmiel;
12560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And their brethren, Shebaniah, Hodijah, Kelita, Pelaiah, Hanan,
12561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Micha, Rehob, Hashabiah,
12562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Zaccur, Sherebiah, Shebaniah,
12563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hodijah, Bani, Beninu.
12564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The chief of the people; Parosh, Pahathmoab, Elam, Zatthu, Bani,
12565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bunni, Azgad, Bebai,
12566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Adonijah, Bigvai, Adin,
12567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ater, Hizkijah, Azzur,
12568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hodijah, Hashum, Bezai,
12569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hariph, Anathoth, Nebai,
12570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Magpiash, Meshullam, Hezir,
12571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Meshezabeel, Zadok, Jaddua,
12572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pelatiah, Hanan, Anaiah,
12573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hoshea, Hananiah, Hashub,
12574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hallohesh, Pileha, Shobek,
12575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Rehum, Hashabnah, Maaseiah,
12576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Ahijah, Hanan, Anan,
12577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Malluch, Harim, Baanah.
12578                                                                                                                                                                                                                                                  And the rest of the people, the priests, the Levites, the porters, the singers, the Nethinims, and all they that had separated themselves from the people of the lands unto the law of God, their wives, their sons, and their daughters, every one having knowledge, and having understanding;
12579                                                                                                                                                                                                                                                                                  They clave to their brethren, their nobles, and entered into a curse, and into an oath, to walk in God's law, which was given by Moses the servant of God, and to observe and do all the commandments of the LORD our Lord, and his judgments and his statutes;
12580                                                                                                                                                                                                                                                                                                                                                                                                                                     And that we would not give our daughters unto the people of the land, not take their daughters for our sons:
12581                                                                                                                                                                                                                                                                                                              And if the people of the land bring ware or any victuals on the sabbath day to sell, that we would not buy it of them on the sabbath, or on the holy day: and that we would leave the seventh year, and the exaction of every debt.
12582                                                                                                                                                                                                                                                                                                                                                                                                              Also we made ordinances for us, to charge ourselves yearly with the third part of a shekel for the service of the house of our God;
12583                                                                                                                                                                                                                                                           For the shewbread, and for the continual meat offering, and for the continual burnt offering, of the sabbaths, of the new moons, for the set feasts, and for the holy things, and for the sin offerings to make an atonement for Israel, and for all the work of the house of our God.
12584                                                                                                                                                                                                                                                                    And we cast the lots among the priests, the Levites, and the people, for the wood offering, to bring it into the house of our God, after the houses of our fathers, at times appointed year by year, to burn upon the altar of the LORD our God, as it is written in the law:
12585                                                                                                                                                                                                                                                                                                                                                                                                             And to bring the firstfruits of our ground, and the firstfruits of all fruit of all trees, year by year, unto the house of the LORD:
12586                                                                                                                                                                                                                                                                                                                     Also the firstborn of our sons, and of our cattle, as it is written in the law, and the firstlings of our herds and of our flocks, to bring to the house of our God, unto the priests that minister in the house of our God:
12587                                                                                                                                                                                                                      And that we should bring the firstfruits of our dough, and our offerings, and the fruit of all manner of trees, of wine and of oil, unto the priests, to the chambers of the house of our God; and the tithes of our ground unto the Levites, that the same Levites might have the tithes in all the cities of our tillage.
12588                                                                                                                                                                                                                                                                                                                             And the priest the son of Aaron shall be with the Levites, when the Levites take tithes: and the Levites shall bring up the tithe of the tithes unto the house of our God, to the chambers, into the treasure house.
12589                                                                                                                                                                                                                                                For the children of Israel and the children of Levi shall bring the offering of the corn, of the new wine, and the oil, unto the chambers, where are the vessels of the sanctuary, and the priests that minister, and the porters, and the singers: and we will not forsake the house of our God.
12590                                                                                                                                                                                                                                                                                                                                                        And the rulers of the people dwelt at Jerusalem: the rest of the people also cast lots, to bring one of ten to dwell in Jerusalem the holy city, and nine parts to dwell in other cities.
12591                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the people blessed all the men, that willingly offered themselves to dwell at Jerusalem.
12592                                                                                                                                                                                                                                                                                          Now these are the chief of the province that dwelt in Jerusalem: but in the cities of Judah dwelt every one in his possession in their cities, to wit, Israel, the priests, and the Levites, and the Nethinims, and the children of Solomon's servants.
12593                                                                                                                                                                                                                                                                                 And at Jerusalem dwelt certain of the children of Judah, and of the children of Benjamin. Of the children of Judah; Athaiah the son of Uzziah, the son of Zechariah, the son of Amariah, the son of Shephatiah, the son of Mahalaleel, of the children of Perez;
12594                                                                                                                                                                                                                                                                                                                                                                                        And Maaseiah the son of Baruch, the son of Colhozeh, the son of Hazaiah, the son of Adaiah, the son of Joiarib, the son of Zechariah, the son of Shiloni.
12595                                                                                                                                                                                                                                                                                                                                                                                                                                                All the sons of Perez that dwelt at Jerusalem were four hundred threescore and eight valiant men.
12596                                                                                                                                                                                                                                                                                                                                                             And these are the sons of Benjamin; Sallu the son of Meshullam, the son of Joed, the son of Pedaiah, the son of Kolaiah, the son of Maaseiah, the son of Ithiel, the son of Jesaiah.
12597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And after him Gabbai, Sallai, nine hundred twenty and eight.
12598                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joel the son of Zichri was their overseer: and Judah the son of Senuah was second over the city.
12599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the priests: Jedaiah the son of Joiarib, Jachin.
12600                                                                                                                                                                                                                                                                                                                                                                                                   Seraiah the son of Hilkiah, the son of Meshullam, the son of Zadok, the son of Meraioth, the son of Ahitub, was the ruler of the house of God.
12601                                                                                                                                                                                                                                                                                                                          And their brethren that did the work of the house were eight hundred twenty and two: and Adaiah the son of Jeroham, the son of Pelaliah, the son of Amzi, the son of Zechariah, the son of Pashur, the son of Malchiah.
12602                                                                                                                                                                                                                                                                                                                                                                                 And his brethren, chief of the fathers, two hundred forty and two: and Amashai the son of Azareel, the son of Ahasai, the son of Meshillemoth, the son of Immer,
12603                                                                                                                                                                                                                                                                                                                                                                                                          And their brethren, mighty men of valour, an hundred twenty and eight: and their overseer was Zabdiel, the son of one of the great men.
12604                                                                                                                                                                                                                                                                                                                                                                                                                                     Also of the Levites: Shemaiah the son of Hashub, the son of Azrikam, the son of Hashabiah, the son of Bunni;
12605                                                                                                                                                                                                                                                                                                                                                                                                                          And Shabbethai and Jozabad, of the chief of the Levites, had the oversight of the outward business of the house of God.
12606                                                                                                                                                                                                                                                                                                      And Mattaniah the son of Micha, the son of Zabdi, the son of Asaph, was the principal to begin the thanksgiving in prayer: and Bakbukiah the second among his brethren, and Abda the son of Shammua, the son of Galal, the son of Jeduthun.
12607                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All the Levites in the holy city were two hundred fourscore and four.
12608                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover the porters, Akkub, Talmon, and their brethren that kept the gates, were an hundred seventy and two.
12609                                                                                                                                                                                                                                                                                                                                                                                                                       And the residue of Israel, of the priests, and the Levites, were in all the cities of Judah, every one in his inheritance.
12610                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the Nethinims dwelt in Ophel: and Ziha and Gispa were over the Nethinims.
12611                                                                                                                                                                                                                                                                                                                              The overseer also of the Levites at Jerusalem was Uzzi the son of Bani, the son of Hashabiah, the son of Mattaniah, the son of Micha. Of the sons of Asaph, the singers were over the business of the house of God.
12612                                                                                                                                                                                                                                                                                                                                                                                                                          For it was the king's commandment concerning them, that a certain portion should be for the singers, due for every day.
12613                                                                                                                                                                                                                                                                                                                                                                                                    And Pethahiah the son of Meshezabeel, of the children of Zerah the son of Judah, was at the king's hand in all matters concerning the people.
12614                                                                                                                                                                                                                                                                                                                              And for the villages, with their fields, some of the children of Judah dwelt at Kirjatharba, and in the villages thereof, and at Dibon, and in the villages thereof, and at Jekabzeel, and in the villages thereof,
12615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And at Jeshua, and at Moladah, and at Bethphelet,
12616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And at Hazarshual, and at Beersheba, and in the villages thereof,
12617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And at Ziklag, and at Mekonah, and in the villages thereof,
12618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And at Enrimmon, and at Zareah, and at Jarmuth,
12619                                                                                                                                                                                                                                                                                                                                                                     Zanoah, Adullam, and in their villages, at Lachish, and the fields thereof, at Azekah, and in the villages thereof. And they dwelt from Beersheba unto the valley of Hinnom.
12620                                                                                                                                                                                                                                                                                                                                                                                                                                          The children also of Benjamin from Geba dwelt at Michmash, and Aija, and Bethel, and in their villages.
12621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And at Anathoth, Nob, Ananiah,
12622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hazor, Ramah, Gittaim,
12623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hadid, Zeboim, Neballat,
12624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lod, and Ono, the valley of craftsmen.
12625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of the Levites were divisions in Judah, and in Benjamin.
12626                                                                                                                                                                                                                                                                                                                                                                                                                Now these are the priests and the Levites that went up with Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra,
12627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Amariah, Malluch, Hattush,
12628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shechaniah, Rehum, Meremoth,
12629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Iddo, Ginnetho, Abijah,
12630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Miamin, Maadiah, Bilgah,
12631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shemaiah, and Joiarib, Jedaiah,
12632                                                                                                                                                                                                                                                                                                                                                                                                                                  Sallu, Amok, Hilkiah, Jedaiah. These were the chief of the priests and of their brethren in the days of Jeshua.
12633                                                                                                                                                                                                                                                                                                                                                                                                            Moreover the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah, and Mattaniah, which was over the thanksgiving, he and his brethren.
12634                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also Bakbukiah and Unni, their brethren, were over against them in the watches.
12635                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jeshua begat Joiakim, Joiakim also begat Eliashib, and Eliashib begat Joiada,
12636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joiada begat Jonathan, and Jonathan begat Jaddua.
12637                                                                                                                                                                                                                                                                                                                                                                                                                                   And in the days of Joiakim were priests, the chief of the fathers: of Seraiah, Meraiah; of Jeremiah, Hananiah;
12638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of Ezra, Meshullam; of Amariah, Jehohanan;
12639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of Melicu, Jonathan; of Shebaniah, Joseph;
12640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of Harim, Adna; of Meraioth, Helkai;
12641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of Iddo, Zechariah; of Ginnethon, Meshullam;
12642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of Abijah, Zichri; of Miniamin, of Moadiah, Piltai:
12643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of Bilgah, Shammua; of Shemaiah, Jehonathan;
12644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And of Joiarib, Mattenai; of Jedaiah, Uzzi;
12645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Sallai, Kallai; of Amok, Eber;
12646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of Hilkiah, Hashabiah; of Jedaiah, Nethaneel.
12647                                                                                                                                                                                                                                                                                                                                                                                  The Levites in the days of Eliashib, Joiada, and Johanan, and Jaddua, were recorded chief of the fathers: also the priests, to the reign of Darius the Persian.
12648                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Levi, the chief of the fathers, were written in the book of the chronicles, even until the days of Johanan the son of Eliashib.
12649                                                                                                                                                                                                                                                                                                            And the chief of the Levites: Hashabiah, Sherebiah, and Jeshua the son of Kadmiel, with their brethren over against them, to praise and to give thanks, according to the commandment of David the man of God, ward over against ward.
12650                                                                                                                                                                                                                                                                                                                                                                                                                       Mattaniah, and Bakbukiah, Obadiah, Meshullam, Talmon, Akkub, were porters keeping the ward at the thresholds of the gates.
12651                                                                                                                                                                                                                                                                                                                                                                                           These were in the days of Joiakim the son of Jeshua, the son of Jozadak, and in the days of Nehemiah the governor, and of Ezra the priest, the scribe.
12652                                                                                                                                                                                                                                                                                           And at the dedication of the wall of Jerusalem they sought the Levites out of all their places, to bring them to Jerusalem, to keep the dedication with gladness, both with thanksgivings, and with singing, with cymbals, psalteries, and with harps.
12653                                                                                                                                                                                                                                                                                                                                                                                              And the sons of the singers gathered themselves together, both out of the plain country round about Jerusalem, and from the villages of Netophathi;
12654                                                                                                                                                                                                                                                                                                                                                                                                      Also from the house of Gilgal, and out of the fields of Geba and Azmaveth: for the singers had builded them villages round about Jerusalem.
12655                                                                                                                                                                                                                                                                                                                                                                                                                                       And the priests and the Levites purified themselves, and purified the people, and the gates, and the wall.
12656                                                                                                                                                                                                                                                                                                                                                         Then I brought up the princes of Judah upon the wall, and appointed two great companies of them that gave thanks, whereof one went on the right hand upon the wall toward the dung gate:
12657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And after them went Hoshaiah, and half of the princes of Judah,
12658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Azariah, Ezra, and Meshullam,
12659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Judah, and Benjamin, and Shemaiah, and Jeremiah,
12660                                                                                                                                                                                                                                                                                                                                                      And certain of the priests' sons with trumpets; namely, Zechariah the son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Michaiah, the son of Zaccur, the son of Asaph:
12661                                                                                                                                                                                                                                                                                                                                                            And his brethren, Shemaiah, and Azarael, Milalai, Gilalai, Maai, Nethaneel, and Judah, Hanani, with the musical instruments of David the man of God, and Ezra the scribe before them.
12662                                                                                                                                                                                                                                                                                                                                                And at the fountain gate, which was over against them, they went up by the stairs of the city of David, at the going up of the wall, above the house of David, even unto the water gate eastward.
12663                                                                                                                                                                                                                                                                                                                                               And the other company of them that gave thanks went over against them, and I after them, and the half of the people upon the wall, from beyond the tower of the furnaces even unto the broad wall;
12664                                                                                                                                                                                                                                                                                                                                        And from above the gate of Ephraim, and above the old gate, and above the fish gate, and the tower of Hananeel, and the tower of Meah, even unto the sheep gate: and they stood still in the prison gate.
12665                                                                                                                                                                                                                                                                                                                                                                                                                              So stood the two companies of them that gave thanks in the house of God, and I, and the half of the rulers with me:
12666                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priests; Eliakim, Maaseiah, Miniamin, Michaiah, Elioenai, Zechariah, and Hananiah, with trumpets;
12667                                                                                                                                                                                                                                                                                                                                                                                   And Maaseiah, and Shemaiah, and Eleazar, and Uzzi, and Jehohanan, and Malchijah, and Elam, and Ezer. And the singers sang loud, with Jezrahiah their overseer.
12668                                                                                                                                                                                                                                                                                                                                         Also that day they offered great sacrifices, and rejoiced: for God had made them rejoice with great joy: the wives also and the children rejoiced: so that the joy of Jerusalem was heard even afar off.
12669                                                                                                                                                                                                                               And at that time were some appointed over the chambers for the treasures, for the offerings, for the firstfruits, and for the tithes, to gather into them out of the fields of the cities the portions of the law for the priests and Levites: for Judah rejoiced for the priests and for the Levites that waited.
12670                                                                                                                                                                                                                                                                                                                                                                                And both the singers and the porters kept the ward of their God, and the ward of the purification, according to the commandment of David, and of Solomon his son.
12671                                                                                                                                                                                                                                                                                                                                                                                                                        For in the days of David and Asaph of old there were chief of the singers, and songs of praise and thanksgiving unto God.
12672                                                                                                                                                                                                                                                                                    And all Israel in the days of Zerubbabel, and in the days of Nehemiah, gave the portions of the singers and the porters, every day his portion: and they sanctified holy things unto the Levites; and the Levites sanctified them unto the children of Aaron.
12673                                                                                                                                                                                                                                                                                                                                                On that day they read in the book of Moses in the audience of the people; and therein was found written, that the Ammonite and the Moabite should not come into the congregation of God for ever;
12674                                                                                                                                                                                                                                                                                                                                                               Because they met not the children of Israel with bread and with water, but hired Balaam against them, that he should curse them: howbeit our God turned the curse into a blessing.
12675                                                                                                                                                                                                                                                                                                                                                                                                                                       Now it came to pass, when they had heard the law, that they separated from Israel all the mixed multitude.
12676                                                                                                                                                                                                                                                                                                                                                                                                                       And before this, Eliashib the priest, having the oversight of the chamber of the house of our God, was allied unto Tobiah:
12677                                                                                                                                                                                                                                         And he had prepared for him a great chamber, where aforetime they laid the meat offerings, the frankincense, and the vessels, and the tithes of the corn, the new wine, and the oil, which was commanded to be given to the Levites, and the singers, and the porters; and the offerings of the priests.
12678                                                                                                                                                                                                                                                                                                                                                          But in all this time was not I at Jerusalem: for in the two and thirtieth year of Artaxerxes king of Babylon came I unto the king, and after certain days obtained I leave of the king:
12679                                                                                                                                                                                                                                                                                                                                                                                                  And I came to Jerusalem, and understood of the evil that Eliashib did for Tobiah, in preparing him a chamber in the courts of the house of God.
12680                                                                                                                                                                                                                                                                                                                                                                                                                                             And it grieved me sore: therefore I cast forth all the household stuff to Tobiah out of the chamber.
12681                                                                                                                                                                                                                                                                                                                                                                                      Then I commanded, and they cleansed the chambers: and thither brought I again the vessels of the house of God, with the meat offering and the frankincense.
12682                                                                                                                                                                                                                                                                                                                                                                                  And I perceived that the portions of the Levites had not been given them: for the Levites and the singers, that did the work, were fled every one to his field.
12683                                                                                                                                                                                                                                                                                                                                                                                                         Then contended I with the rulers, and said, Why is the house of God forsaken? And I gathered them together, and set them in their place.
12684                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then brought all Judah the tithe of the corn and the new wine and the oil unto the treasuries.
12685                                                                                                                                                                                                                                                                  And I made treasurers over the treasuries, Shelemiah the priest, and Zadok the scribe, and of the Levites, Pedaiah: and next to them was Hanan the son of Zaccur, the son of Mattaniah: for they were counted faithful, and their office was to distribute unto their brethren.
12686                                                                                                                                                                                                                                                                                                                                                                                                    Remember me, O my God, concerning this, and wipe not out my good deeds that I have done for the house of my God, and for the offices thereof.
12687                                                                                                                                                                                                                                          In those days saw I in Judah some treading wine presses on the sabbath, and bringing in sheaves, and lading asses; as also wine, grapes, and figs, and all manner of burdens, which they brought into Jerusalem on the sabbath day: and I testified against them in the day wherein they sold victuals.
12688                                                                                                                                                                                                                                                                                                                                                                                          There dwelt men of Tyre also therein, which brought fish, and all manner of ware, and sold on the sabbath unto the children of Judah, and in Jerusalem.
12689                                                                                                                                                                                                                                                                                                                                                                                                                  Then I contended with the nobles of Judah, and said unto them, What evil thing is this that ye do, and profane the sabbath day?
12690                                                                                                                                                                                                                                                                                                                                                                                    Did not your fathers thus, and did not our God bring all this evil upon us, and upon this city? yet ye bring more wrath upon Israel by profaning the sabbath.
12691                                                                                                                                                                                                                               And it came to pass, that when the gates of Jerusalem began to be dark before the sabbath, I commanded that the gates should be shut, and charged that they should not be opened till after the sabbath: and some of my servants set I at the gates, that there should no burden be brought in on the sabbath day.
12692                                                                                                                                                                                                                                                                                                                                                                                                                                                         So the merchants and sellers of all kind of ware lodged without Jerusalem once or twice.
12693                                                                                                                                                                                                                                                                                                                                                               Then I testified against them, and said unto them, Why lodge ye about the wall? if ye do so again, I will lay hands on you. From that time forth came they no more on the sabbath.
12694                                                                                                                                                                                                                                                                                                   And I commanded the Levites that they should cleanse themselves, and that they should come and keep the gates, to sanctify the sabbath day. Remember me, O my God, concerning this also, and spare me according to the greatness of thy mercy.
12695                                                                                                                                                                                                                                                                                                                                                                                                                                                           In those days also saw I Jews that had married wives of Ashdod, of Ammon, and of Moab:
12696                                                                                                                                                                                                                                                                                                                                                                                                  And their children spake half in the speech of Ashdod, and could not speak in the Jews' language, but according to the language of each people.
12697                                                                                                                                                                                                                                                                                             And I contended with them, and cursed them, and smote certain of them, and plucked off their hair, and made them swear by God, saying, Ye shall not give your daughters unto their sons, nor take their daughters unto your sons, or for yourselves.
12698                                                                                                                                                                                                                                                                                                               Did not Solomon king of Israel sin by these things? yet among many nations was there no king like him, who was beloved of his God, and God made him king over all Israel: nevertheless even him did outlandish women cause to sin.
12699                                                                                                                                                                                                                                                                                                                                                                                                                               Shall we then hearken unto you to do all this great evil, to transgress against our God in marrying strange wives?
12700                                                                                                                                                                                                                                                                                                                                                                                                    And one of the sons of Joiada, the son of Eliashib the high priest, was son in law to Sanballat the Horonite: therefore I chased him from me.
12701                                                                                                                                                                                                                                                                                                                                                                                                                       Remember them, O my God, because they have defiled the priesthood, and the covenant of the priesthood, and of the Levites.
12702                                                                                                                                                                                                                                                                                                                                                                                                                      Thus cleansed I them from all strangers, and appointed the wards of the priests and the Levites, every one in his business;
12703                                                                                                                                                                                                                                                                                                                                                                                                                                         And for the wood offering, at times appointed, and for the firstfruits. Remember me, O my God, for good.
12704                                                                                                                                                                                                                                                                                                                                                                                  Now it came to pass in the days of Ahasuerus, (this is Ahasuerus which reigned, from India even unto Ethiopia, over an hundred and seven and twenty provinces:)
12705                                                                                                                                                                                                                                                                                                                                                                                                                                   That in those days, when the king Ahasuerus sat on the throne of his kingdom, which was in Shushan the palace,
12706                                                                                                                                                                                                                                                                                                                                                                 In the third year of his reign, he made a feast unto all his princes and his servants; the power of Persia and Media, the nobles and princes of the provinces, being before him:
12707                                                                                                                                                                                                                                                                                                                                                                                                         When he shewed the riches of his glorious kingdom and the honour of his excellent majesty many days, even an hundred and fourscore days.
12708                                                                                                                                                                                                                                                                                                                                     And when these days were expired, the king made a feast unto all the people that were present in Shushan the palace, both unto great and small, seven days, in the court of the garden of the king's palace;
12709                                                                                                                                                                                                                                                                                                               Where were white, green, and blue, hangings, fastened with cords of fine linen and purple to silver rings and pillars of marble: the beds were of gold and silver, upon a pavement of red, and blue, and white, and black, marble.
12710                                                                                                                                                                                                                                                                                                                                                                                      And they gave them drink in vessels of gold, (the vessels being diverse one from another,) and royal wine in abundance, according to the state of the king.
12711                                                                                                                                                                                                                                                                                                                                                               And the drinking was according to the law; none did compel: for so the king had appointed to all the officers of his house, that they should do according to every man's pleasure.
12712                                                                                                                                                                                                                                                                                                                                                                                                                                            Also Vashti the queen made a feast for the women in the royal house which belonged to king Ahasuerus.
12713                                                                                                                                                                                                                                                                                                                    On the seventh day, when the heart of the king was merry with wine, he commanded Mehuman, Biztha, Harbona, Bigtha, and Abagtha, Zethar, and Carcas, the seven chamberlains that served in the presence of Ahasuerus the king,
12714                                                                                                                                                                                                                                                                                                                                                                                                      To bring Vashti the queen before the king with the crown royal, to shew the people and the princes her beauty: for she was fair to look on.
12715                                                                                                                                                                                                                                                                                                                                                                                              But the queen Vashti refused to come at the king's commandment by his chamberlains: therefore was the king very wroth, and his anger burned in him.
12716                                                                                                                                                                                                                                                                                                                                                                                                                   Then the king said to the wise men, which knew the times, (for so was the king's manner toward all that knew law and judgment:
12717                                                                                                                                                                                                                                                                                                                                          And the next unto him was Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven princes of Persia and Media, which saw the king's face, and which sat the first in the kingdom;)
12718                                                                                                                                                                                                                                                                                                                                                                                               What shall we do unto the queen Vashti according to law, because she hath not performed the commandment of the king Ahasuerus by the chamberlains?
12719                                                                                                                                                                                                                                                                                                                             And Memucan answered before the king and the princes, Vashti the queen hath not done wrong to the king only, but also to all the princes, and to all the people that are in all the provinces of the king Ahasuerus.
12720                                                                                                                                                                                                                                                                                                    For this deed of the queen shall come abroad unto all women, so that they shall despise their husbands in their eyes, when it shall be reported, The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not.
12721                                                                                                                                                                                                                                                                                                                                                           Likewise shall the ladies of Persia and Media say this day unto all the king's princes, which have heard of the deed of the queen. Thus shall there arise too much contempt and wrath.
12722                                                                                                                                                                                                                                                       If it please the king, let there go a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, That Vashti come no more before king Ahasuerus; and let the king give her royal estate unto another that is better than she.
12723                                                                                                                                                                                                                                                                                                                                                      And when the king's decree which he shall make shall be published throughout all his empire, (for it is great,) all the wives shall give to their husbands honour, both to great and small.
12724                                                                                                                                                                                                                                                                                                                                                                                                                                              And the saying pleased the king and the princes; and the king did according to the word of Memucan:
12725                                                                                                                                                                                                                                                                  For he sent letters into all the king's provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and that it should be published according to the language of every people.
12726                                                                                                                                                                                                                                                                                                                                                                                                After these things, when the wrath of king Ahasuerus was appeased, he remembered Vashti, and what she had done, and what was decreed against her.
12727                                                                                                                                                                                                                                                                                                                                                                                                                                     Then said the king's servants that ministered unto him, Let there be fair young virgins sought for the king:
12728                                                                                                                                                                                                                                   And let the king appoint officers in all the provinces of his kingdom, that they may gather together all the fair young virgins unto Shushan the palace, to the house of the women, unto the custody of Hege the king's chamberlain, keeper of the women; and let their things for purification be given them:
12729                                                                                                                                                                                                                                                                                                                                                                                                                            And let the maiden which pleaseth the king be queen instead of Vashti. And the thing pleased the king; and he did so.
12730                                                                                                                                                                                                                                                                                                                                                                                                    Now in Shushan the palace there was a certain Jew, whose name was Mordecai, the son of Jair, the son of Shimei, the son of Kish, a Benjamite;
12731                                                                                                                                                                                                                                                                                                                                                                   Who had been carried away from Jerusalem with the captivity which had been carried away with Jeconiah king of Judah, whom Nebuchadnezzar the king of Babylon had carried away.
12732                                                                                                                                                                                                                                                                                                                   And he brought up Hadassah, that is, Esther, his uncle's daughter: for she had neither father nor mother, and the maid was fair and beautiful; whom Mordecai, when her father and mother were dead, took for his own daughter.
12733                                                                                                                                                                                                                                                                       So it came to pass, when the king's commandment and his decree was heard, and when many maidens were gathered together unto Shushan the palace, to the custody of Hegai, that Esther was brought also unto the king's house, to the custody of Hegai, keeper of the women.
12734                                                                                                                                                                                                                          And the maiden pleased him, and she obtained kindness of him; and he speedily gave her her things for purification, with such things as belonged to her, and seven maidens, which were meet to be given her, out of the king's house: and he preferred her and her maids unto the best place of the house of the women.
12735                                                                                                                                                                                                                                                                                                                                                                                                                                      Esther had not shewed her people nor her kindred: for Mordecai had charged her that she should not shew it.
12736                                                                                                                                                                                                                                                                                                                                                                                                                      And Mordecai walked every day before the court of the women's house, to know how Esther did, and what should become of her.
12737                                                                                                                                                                                                           Now when every maid's turn was come to go in to king Ahasuerus, after that she had been twelve months, according to the manner of the women, (for so were the days of their purifications accomplished, to wit, six months with oil of myrrh, and six months with sweet odours, and with other things for the purifying of the women;)
12738                                                                                                                                                                                                                                                                                                                                                                                              Then thus came every maiden unto the king; whatsoever she desired was given her to go with her out of the house of the women unto the king's house.
12739                                                                                                                                                                                                                                                               In the evening she went, and on the morrow she returned into the second house of the women, to the custody of Shaashgaz, the king's chamberlain, which kept the concubines: she came in unto the king no more, except the king delighted in her, and that she were called by name.
12740                                                                                                                                                                                                                       Now when the turn of Esther, the daughter of Abihail the uncle of Mordecai, who had taken her for his daughter, was come to go in unto the king, she required nothing but what Hegai the king's chamberlain, the keeper of the women, appointed. And Esther obtained favour in the sight of all them that looked upon her.
12741                                                                                                                                                                                                                                                                                                                                                                                                    So Esther was taken unto king Ahasuerus into his house royal in the tenth month, which is the month Tebeth, in the seventh year of his reign.
12742                                                                                                                                                                                                                                                                                                                                     And the king loved Esther above all the women, and she obtained grace and favour in his sight more than all the virgins; so that he set the royal crown upon her head, and made her queen instead of Vashti.
12743                                                                                                                                                                                                                                                                                                                                                         Then the king made a great feast unto all his princes and his servants, even Esther's feast; and he made a release to the provinces, and gave gifts, according to the state of the king.
12744                                                                                                                                                                                                                                                                                                                                                                                                                                               And when the virgins were gathered together the second time, then Mordecai sat in the king's gate.
12745                                                                                                                                                                                                                                                                                                                                                                         Esther had not yet shewed her kindred nor her people; as Mordecai had charged her: for Esther did the commandment of Mordecai, like as when she was brought up with him.
12746                                                                                                                                                                                                                                                                                                                                               In those days, while Mordecai sat in the king's gate, two of the king's chamberlains, Bigthan and Teresh, of those which kept the door, were wroth, and sought to lay hands on the king Ahasuerus.
12747                                                                                                                                                                                                                                                                                                                                                                                                                And the thing was known to Mordecai, who told it unto Esther the queen; and Esther certified the king thereof in Mordecai's name.
12748                                                                                                                                                                                                                                                                                                                                                                      And when inquisition was made of the matter, it was found out; therefore they were both hanged on a tree: and it was written in the book of the chronicles before the king.
12749                                                                                                                                                                                                                                                                                                                                                                              After these things did king Ahasuerus promote Haman the son of Hammedatha the Agagite, and advanced him, and set his seat above all the princes that were with him.
12750                                                                                                                                                                                                                                                                                                                                                             And all the king's servants, that were in the king's gate, bowed, and reverenced Haman: for the king had so commanded concerning him. But Mordecai bowed not, nor did him reverence.
12751                                                                                                                                                                                                                                                                                                                                                                                                                      Then the king's servants, which were in the king's gate, said unto Mordecai, Why transgressest thou the king's commandment?
12752                                                                                                                                                                                                                                                                                                                                                Now it came to pass, when they spake daily unto him, and he hearkened not unto them, that they told Haman, to see whether Mordecai's matters would stand: for he had told them that he was a Jew.
12753                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Haman saw that Mordecai bowed not, nor did him reverence, then was Haman full of wrath.
12754                                                                                                                                                                                                                                                                                                            And he thought scorn to lay hands on Mordecai alone; for they had shewed him the people of Mordecai: wherefore Haman sought to destroy all the Jews that were throughout the whole kingdom of Ahasuerus, even the people of Mordecai.
12755                                                                                                                                                                                                                                                                                                                      In the first month, that is, the month Nisan, in the twelfth year of king Ahasuerus, they cast Pur, that is, the lot, before Haman from day to day, and from month to month, to the twelfth month, that is, the month Adar.
12756                                                                                                                                                                                                                                                      And Haman said unto king Ahasuerus, There is a certain people scattered abroad and dispersed among the people in all the provinces of thy kingdom; and their laws are diverse from all people; neither keep they the king's laws: therefore it is not for the king's profit to suffer them.
12757                                                                                                                                                                                                                                                                                                                           If it please the king, let it be written that they may be destroyed: and I will pay ten thousand talents of silver to the hands of those that have the charge of the business, to bring it into the king's treasuries.
12758                                                                                                                                                                                                                                                                                                                                                                                                                             And the king took his ring from his hand, and gave it unto Haman the son of Hammedatha the Agagite, the Jews' enemy.
12759                                                                                                                                                                                                                                                                                                                                                                                                                          And the king said unto Haman, The silver is given to thee, the people also, to do with them as it seemeth good to thee.
12760                                                                                                    Then were the king's scribes called on the thirteenth day of the first month, and there was written according to all that Haman had commanded unto the king's lieutenants, and to the governors that were over every province, and to the rulers of every people of every province according to the writing thereof, and to every people after their language; in the name of king Ahasuerus was it written, and sealed with the king's ring.
12761                                                                                                                                                                                                                                        And the letters were sent by posts into all the king's provinces, to destroy, to kill, and to cause to perish, all Jews, both young and old, little children and women, in one day, even upon the thirteenth day of the twelfth month, which is the month Adar, and to take the spoil of them for a prey.
12762                                                                                                                                                                                                                                                                                                                                                                                               The copy of the writing for a commandment to be given in every province was published unto all people, that they should be ready against that day.
12763                                                                                                                                                                                                                                                                                                                                                      The posts went out, being hastened by the king's commandment, and the decree was given in Shushan the palace. And the king and Haman sat down to drink; but the city Shushan was perplexed.
12764                                                                                                                                                                                                                                                                                                                                                          When Mordecai perceived all that was done, Mordecai rent his clothes, and put on sackcloth with ashes, and went out into the midst of the city, and cried with a loud and a bitter cry;
12765                                                                                                                                                                                                                                                                                                                                                                                                                                          And came even before the king's gate: for none might enter into the king's gate clothed with sackcloth.
12766                                                                                                                                                                                                                                                                                                                                            And in every province, whithersoever the king's commandment and his decree came, there was great mourning among the Jews, and fasting, and weeping, and wailing; and many lay in sackcloth and ashes.
12767                                                                                                                                                                                                                                                                                                                                   So Esther's maids and her chamberlains came and told it her. Then was the queen exceedingly grieved; and she sent raiment to clothe Mordecai, and to take away his sackcloth from him: but he received it not.
12768                                                                                                                                                                                                                                                                                                                                                            Then called Esther for Hatach, one of the king's chamberlains, whom he had appointed to attend upon her, and gave him a commandment to Mordecai, to know what it was, and why it was.
12769                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Hatach went forth to Mordecai unto the street of the city, which was before the king's gate.
12770                                                                                                                                                                                                                                                                                                                                                                      And Mordecai told him of all that had happened unto him, and of the sum of the money that Haman had promised to pay to the king's treasuries for the Jews, to destroy them.
12771                                                                                                                                                                                                                                                       Also he gave him the copy of the writing of the decree that was given at Shushan to destroy them, to shew it unto Esther, and to declare it unto her, and to charge her that she should go in unto the king, to make supplication unto him, and to make request before him for her people.
12772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Hatach came and told Esther the words of Mordecai.
12773                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Again Esther spake unto Hatach, and gave him commandment unto Mordecai;
12774                                                                                                                                                          All the king's servants, and the people of the king's provinces, do know, that whosoever, whether man or women, shall come unto the king into the inner court, who is not called, there is one law of his to put him to death, except such to whom the king shall hold out the golden sceptre, that he may live: but I have not been called to come in unto the king these thirty days.
12775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they told to Mordecai Esther's words.
12776                                                                                                                                                                                                                                                                                                                                                                                                             Then Mordecai commanded to answer Esther, Think not with thyself that thou shalt escape in the king's house, more than all the Jews.
12777                                                                                                                                                                                                                                                                      For if thou altogether holdest thy peace at this time, then shall there enlargement and deliverance arise to the Jews from another place; but thou and thy father's house shall be destroyed: and who knoweth whether thou art come to the kingdom for such a time as this?
12778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Esther bade them return Mordecai this answer,
12779                                                                                                                                                                                                                                                                 Go, gather together all the Jews that are present in Shushan, and fast ye for me, and neither eat nor drink three days, night or day: I also and my maidens will fast likewise; and so will I go in unto the king, which is not according to the law: and if I perish, I perish.
12780                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Mordecai went his way, and did according to all that Esther had commanded him.
12781                                                                                                                                                                                                                                                                                      Now it came to pass on the third day, that Esther put on her royal apparel, and stood in the inner court of the king's house, over against the king's house: and the king sat upon his royal throne in the royal house, over against the gate of the house.
12782                                                                                                                                                                                                                                                                                                And it was so, when the king saw Esther the queen standing in the court, that she obtained favour in his sight: and the king held out to Esther the golden sceptre that was in his hand. So Esther drew near, and touched the top of the sceptre.
12783                                                                                                                                                                                                                                                                                                                                                                                                      Then said the king unto her, What wilt thou, queen Esther? and what is thy request? it shall be even given thee to the half of the kingdom.
12784                                                                                                                                                                                                                                                                                                                                                                                                          And Esther answered, If it seem good unto the king, let the king and Haman come this day unto the banquet that I have prepared for him.
12785                                                                                                                                                                                                                                                                                                                                                                                           Then the king said, Cause Haman to make haste, that he may do as Esther hath said. So the king and Haman came to the banquet that Esther had prepared.
12786                                                                                                                                                                                                                                                                                                                                                        And the king said unto Esther at the banquet of wine, What is thy petition? and it shall be granted thee: and what is thy request? even to the half of the kingdom it shall be performed.
12787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then answered Esther, and said, My petition and my request is;
12788                                                                                                                                                                                                                                                                                             If I have found favour in the sight of the king, and if it please the king to grant my petition, and to perform my request, let the king and Haman come to the banquet that I shall prepare for them, and I will do to morrow as the king hath said.
12789                                                                                                                                                                                                                                                                                                                                               Then went Haman forth that day joyful and with a glad heart: but when Haman saw Mordecai in the king's gate, that he stood not up, nor moved for him, he was full of indignation against Mordecai.
12790                                                                                                                                                                                                                                                                                                                                                                                                                            Nevertheless Haman refrained himself: and when he came home, he sent and called for his friends, and Zeresh his wife.
12791                                                                                                                                                                                                                                                                                                                                 And Haman told them of the glory of his riches, and the multitude of his children, and all the things wherein the king had promoted him, and how he had advanced him above the princes and servants of the king.
12792                                                                                                                                                                                                                                                                                                                                                       Haman said moreover, Yea, Esther the queen did let no man come in with the king unto the banquet that she had prepared but myself; and to morrow am I invited unto her also with the king.
12793                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yet all this availeth me nothing, so long as I see Mordecai the Jew sitting at the king's gate.
12794                                                                                                                                                                                                                                       Then said Zeresh his wife and all his friends unto him, Let a gallows be made of fifty cubits high, and to morrow speak thou unto the king that Mordecai may be hanged thereon: then go thou in merrily with the king unto the banquet. And the thing pleased Haman; and he caused the gallows to be made.
12795                                                                                                                                                                                                                                                                                                                                                                                                     On that night could not the king sleep, and he commanded to bring the book of records of the chronicles; and they were read before the king.
12796                                                                                                                                                                                                                                                                                                                                                                  And it was found written, that Mordecai had told of Bigthana and Teresh, two of the king's chamberlains, the keepers of the door, who sought to lay hand on the king Ahasuerus.
12797                                                                                                                                                                                                                                                                                                                                                                           And the king said, What honour and dignity hath been done to Mordecai for this? Then said the king's servants that ministered unto him, There is nothing done for him.
12798                                                                                                                                                                                                                                                                                                                                                      And the king said, Who is in the court? Now Haman was come into the outward court of the king's house, to speak unto the king to hang Mordecai on the gallows that he had prepared for him.
12799                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king's servants said unto him, Behold, Haman standeth in the court. And the king said, Let him come in.
12800                                                                                                                                                                                                                                                                                                                               So Haman came in. And the king said unto him, What shall be done unto the man whom the king delighteth to honour? Now Haman thought in his heart, To whom would the king delight to do honour more than to myself?
12801                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Haman answered the king, For the man whom the king delighteth to honour,
12802                                                                                                                                                                                                                                                                                                                                                                                          Let the royal apparel be brought which the king useth to wear, and the horse that the king rideth upon, and the crown royal which is set upon his head:
12803                                                                                                                                                                                                                 And let this apparel and horse be delivered to the hand of one of the king's most noble princes, that they may array the man withal whom the king delighteth to honour, and bring him on horseback through the street of the city, and proclaim before him, Thus shall it be done to the man whom the king delighteth to honour.
12804                                                                                                                                                                                                                                                                                                                              Then the king said to Haman, Make haste, and take the apparel and the horse, as thou hast said, and do even so to Mordecai the Jew, that sitteth at the king's gate: let nothing fail of all that thou hast spoken.
12805                                                                                                                                                                                                                                                                                                                  Then took Haman the apparel and the horse, and arrayed Mordecai, and brought him on horseback through the street of the city, and proclaimed before him, Thus shall it be done unto the man whom the king delighteth to honour.
12806                                                                                                                                                                                                                                                                                                                                                                                                                                 And Mordecai came again to the king's gate. But Haman hasted to his house mourning, and having his head covered.
12807                                                                                                                                                                                                                                                    And Haman told Zeresh his wife and all his friends every thing that had befallen him. Then said his wise men and Zeresh his wife unto him, If Mordecai be of the seed of the Jews, before whom thou hast begun to fall, thou shalt not prevail against him, but shalt surely fall before him.
12808                                                                                                                                                                                                                                                                                                                                                                                                     And while they were yet talking with him, came the king's chamberlains, and hasted to bring Haman unto the banquet that Esther had prepared.
12809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So the king and Haman came to banquet with Esther the queen.
12810                                                                                                                                                                                                                                                                                                             And the king said again unto Esther on the second day at the banquet of wine, What is thy petition, queen Esther? and it shall be granted thee: and what is thy request? and it shall be performed, even to the half of the kingdom.
12811                                                                                                                                                                                                                                                                                                                                                            Then Esther the queen answered and said, If I have found favour in thy sight, O king, and if it please the king, let my life be given me at my petition, and my people at my request:
12812                                                                                                                                                                                                                                                                                                                              For we are sold, I and my people, to be destroyed, to be slain, and to perish. But if we had been sold for bondmen and bondwomen, I had held my tongue, although the enemy could not countervail the king's damage.
12813                                                                                                                                                                                                                                                                                                                                                                                                           Then the king Ahasuerus answered and said unto Esther the queen, Who is he, and where is he, that durst presume in his heart to do so?
12814                                                                                                                                                                                                                                                                                                                                                                                                                              And Esther said, The adversary and enemy is this wicked Haman. Then Haman was afraid before the king and the queen.
12815                                                                                                                                                                                                                                                                                                                  And the king arising from the banquet of wine in his wrath went into the palace garden: and Haman stood up to make request for his life to Esther the queen; for he saw that there was evil determined against him by the king.
12816                                                                                                                                                                                                                                                           Then the king returned out of the palace garden into the place of the banquet of wine; and Haman was fallen upon the bed whereon Esther was. Then said the king, Will he force the queen also before me in the house? As the word went out of king's mouth, they covered Haman's face.
12817                                                                                                                                                                                                                                                                                                  And Harbonah, one of the chamberlains, said before the king, Behold also, the gallows fifty cubits high, which Haman had made for Mordecai, who spoken good for the king, standeth in the house of Haman. Then the king said, Hang him thereon.
12818                                                                                                                                                                                                                                                                                                                                                                                                                                       So they hanged Haman on the gallows that he had prepared for Mordecai. Then was the king's wrath pacified.
12819                                                                                                                                                                                                                                                                                                                                                                   On that day did the king Ahasuerus give the house of Haman the Jews' enemy unto Esther the queen. And Mordecai came before the king; for Esther had told what he was unto her.
12820                                                                                                                                                                                                                                                                                                                                                                                                       And the king took off his ring, which he had taken from Haman, and gave it unto Mordecai. And Esther set Mordecai over the house of Haman.
12821                                                                                                                                                                                                                                                                                                                                           And Esther spake yet again before the king, and fell down at his feet, and besought him with tears to put away the mischief of Haman the Agagite, and his device that he had devised against the Jews.
12822                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the king held out the golden sceptre toward Esther. So Esther arose, and stood before the king,
12823                                                                                                                                                                                                                              And said, If it please the king, and if I have favour in his sight, and the thing seem right before the king, and I be pleasing in his eyes, let it be written to reverse the letters devised by Haman the son of Hammedatha the Agagite, which he wrote to destroy the Jews which are in all the king's provinces:
12824                                                                                                                                                                                                                                                                                                                                                                                                                   For how can I endure to see the evil that shall come unto my people? or how can I endure to see the destruction of my kindred?
12825                                                                                                                                                                                                                                                                                                                                   Then the king Ahasuerus said unto Esther the queen and to Mordecai the Jew, Behold, I have given Esther the house of Haman, and him they have hanged upon the gallows, because he laid his hand upon the Jews.
12826                                                                                                                                                                                                                                                                                                                                    Write ye also for the Jews, as it liketh you, in the king's name, and seal it with the king's ring: for the writing which is written in the king's name, and sealed with the king's ring, may no man reverse.
12827 Then were the king's scribes called at that time in the third month, that is, the month Sivan, on the three and twentieth day thereof; and it was written according to all that Mordecai commanded unto the Jews, and to the lieutenants, and the deputies and rulers of the provinces which are from India unto Ethiopia, an hundred twenty and seven provinces, unto every province according to the writing thereof, and unto every people after their language, and to the Jews according to their writing, and according to their language.
12828                                                                                                                                                                                                                                                                                                                                                                        And he wrote in the king Ahasuerus' name, and sealed it with the king's ring, and sent letters by posts on horseback, and riders on mules, camels, and young dromedaries:
12829                                                                                                                                                                                                                                       Wherein the king granted the Jews which were in every city to gather themselves together, and to stand for their life, to destroy, to slay and to cause to perish, all the power of the people and province that would assault them, both little ones and women, and to take the spoil of them for a prey,
12830                                                                                                                                                                                                                                                                                                                                                                                                              Upon one day in all the provinces of king Ahasuerus, namely, upon the thirteenth day of the twelfth month, which is the month Adar.
12831                                                                                                                                                                                                                                                                                                                                                 The copy of the writing for a commandment to be given in every province was published unto all people, and that the Jews should be ready against that day to avenge themselves on their enemies.
12832                                                                                                                                                                                                                                                                                                                                                                                  So the posts that rode upon mules and camels went out, being hastened and pressed on by the king's commandment. And the decree was given at Shushan the palace.
12833                                                                                                                                                                                                                                                                                                                              And Mordecai went out from the presence of the king in royal apparel of blue and white, and with a great crown of gold, and with a garment of fine linen and purple: and the city of Shushan rejoiced and was glad.
12834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Jews had light, and gladness, and joy, and honour.
12835                                                                                                                                                                                                                                                                                              And in every province, and in every city, whithersoever the king's commandment and his decree came, the Jews had joy and gladness, a feast and a good day. And many of the people of the land became Jews; for the fear of the Jews fell upon them.
12836                                                                                                                                                                                                              Now in the twelfth month, that is, the month Adar, on the thirteenth day of the same, when the king's commandment and his decree drew near to be put in execution, in the day that the enemies of the Jews hoped to have power over them, (though it was turned to the contrary, that the Jews had rule over them that hated them;)
12837                                                                                                                                                                                                                                                                                                                  The Jews gathered themselves together in their cities throughout all the provinces of the king Ahasuerus, to lay hand on such as sought their hurt: and no man could withstand them; for the fear of them fell upon all people.
12838                                                                                                                                                                                                                                                                                                                                                                              And all the rulers of the provinces, and the lieutenants, and the deputies, and officers of the king, helped the Jews; because the fear of Mordecai fell upon them.
12839                                                                                                                                                                                                                                                                                                                                                                                                 For Mordecai was great in the king's house, and his fame went out throughout all the provinces: for this man Mordecai waxed greater and greater.
12840                                                                                                                                                                                                                                                                                                                                                                                          Thus the Jews smote all their enemies with the stroke of the sword, and slaughter, and destruction, and did what they would unto those that hated them.
12841                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in Shushan the palace the Jews slew and destroyed five hundred men.
12842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Parshandatha, and Dalphon, and Aspatha,
12843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Poratha, and Adalia, and Aridatha,
12844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Parmashta, and Arisai, and Aridai, and Vajezatha,
12845                                                                                                                                                                                                                                                                                                                                                                                                                        The ten sons of Haman the son of Hammedatha, the enemy of the Jews, slew they; but on the spoil laid they not their hand.
12846                                                                                                                                                                                                                                                                                                                                                                                                                                               On that day the number of those that were slain in Shushan the palace was brought before the king.
12847                                                                                                                                                                                                                             And the king said unto Esther the queen, The Jews have slain and destroyed five hundred men in Shushan the palace, and the ten sons of Haman; what have they done in the rest of the king's provinces? now what is thy petition? and it shall be granted thee: or what is thy request further? and it shall be done.
12848                                                                                                                                                                                                                                                                                                                                          Then said Esther, If it please the king, let it be granted to the Jews which are in Shushan to do to morrow also according unto this day's decree, and let Haman's ten sons be hanged upon the gallows.
12849                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king commanded it so to be done: and the decree was given at Shushan; and they hanged Haman's ten sons.
12850                                                                                                                                                                                                                                                                                                                                                    For the Jews that were in Shushan gathered themselves together on the fourteenth day also of the month Adar, and slew three hundred men at Shushan; but on the prey they laid not their hand.
12851                                                                                                                                                                                                                                                                                                      But the other Jews that were in the king's provinces gathered themselves together, and stood for their lives, and had rest from their enemies, and slew of their foes seventy and five thousand, but they laid not their hands on the prey,
12852                                                                                                                                                                                                                                                                                                                                                                                                          On the thirteenth day of the month Adar; and on the fourteenth day of the same rested they, and made it a day of feasting and gladness.
12853                                                                                                                                                                                                                                                                                                                                 But the Jews that were at Shushan assembled together on the thirteenth day thereof, and on the fourteenth thereof; and on the fifteenth day of the same they rested, and made it a day of feasting and gladness.
12854                                                                                                                                                                                                                                                                                                                                          Therefore the Jews of the villages, that dwelt in the unwalled towns, made the fourteenth day of the month Adar a day of gladness and feasting, and a good day, and of sending portions one to another.
12855                                                                                                                                                                                                                                                                                                                                                                                                     And Mordecai wrote these things, and sent letters unto all the Jews that were in all the provinces of the king Ahasuerus, both nigh and far,
12856                                                                                                                                                                                                                                                                                                                                                                                                              To stablish this among them, that they should keep the fourteenth day of the month Adar, and the fifteenth day of the same, yearly,
12857                                                                                                                                                                                                                                                                      As the days wherein the Jews rested from their enemies, and the month which was turned unto them from sorrow to joy, and from mourning into a good day: that they should make them days of feasting and joy, and of sending portions one to another, and gifts to the poor.
12858                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Jews undertook to do as they had begun, and as Mordecai had written unto them;
12859                                                                                                                                                                                                                                                                                                                                             Because Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had devised against the Jews to destroy them, and had cast Pur, that is, the lot, to consume them, and to destroy them;
12860                                                                                                                                                                                                                                                                                                                              But when Esther came before the king, he commanded by letters that his wicked device, which he devised against the Jews, should return upon his own head, and that he and his sons should be hanged on the gallows.
12861                                                                                                                                                                                                                                                                                                                                                  Wherefore they called these days Purim after the name of Pur. Therefore for all the words of this letter, and of that which they had seen concerning this matter, and which had come unto them,
12862                                                                                                                                                                                                                                                                                        The Jews ordained, and took upon them, and upon their seed, and upon all such as joined themselves unto them, so as it should not fail, that they would keep these two days according to their writing, and according to their appointed time every year;
12863                                                                                                                                                                                                                                                                                                  And that these days should be remembered and kept throughout every generation, every family, every province, and every city; and that these days of Purim should not fail from among the Jews, nor the memorial of them perish from their seed.
12864                                                                                                                                                                                                                                                                                                                                                                                                          Then Esther the queen, the daughter of Abihail, and Mordecai the Jew, wrote with all authority, to confirm this second letter of Purim.
12865                                                                                                                                                                                                                                                                                                                                                                                                 And he sent the letters unto all the Jews, to the hundred twenty and seven provinces of the kingdom of Ahasuerus, with words of peace and truth,
12866                                                                                                                                                                                                                                                                                                             To confirm these days of Purim in their times appointed, according as Mordecai the Jew and Esther the queen had enjoined them, and as they had decreed for themselves and for their seed, the matters of the fastings and their cry.
12867                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the decree of Esther confirmed these matters of Purim; and it was written in the book.
12868                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king Ahasuerus laid a tribute upon the land, and upon the isles of the sea.
12869                                                                                                                                                                                                                                                                                                                          And all the acts of his power and of his might, and the declaration of the greatness of Mordecai, whereunto the king advanced him, are they not written in the book of the chronicles of the kings of Media and Persia?
12870                                                                                                                                                                                                                                                                                                                                                For Mordecai the Jew was next unto king Ahasuerus, and great among the Jews, and accepted of the multitude of his brethren, seeking the wealth of his people, and speaking peace to all his seed.
12871                                                                                                                                                                                                                                                                                                                                                                                                         There was a man in the land of Uz, whose name was Job; and that man was perfect and upright, and one that feared God, and eschewed evil.
12872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there were born unto him seven sons and three daughters.
12873                                                                                                                                                                                                                                                                                                                     His substance also was seven thousand sheep, and three thousand camels, and five hundred yoke of oxen, and five hundred she asses, and a very great household; so that this man was the greatest of all the men of the east.
12874                                                                                                                                                                                                                                                                                                                                                                                                     And his sons went and feasted in their houses, every one his day; and sent and called for their three sisters to eat and to drink with them.
12875                                                                                                                                                                                                                                And it was so, when the days of their feasting were gone about, that Job sent and sanctified them, and rose up early in the morning, and offered burnt offerings according to the number of them all: for Job said, It may be that my sons have sinned, and cursed God in their hearts. Thus did Job continually.
12876                                                                                                                                                                                                                                                                                                                                                                                                                             Now there was a day when the sons of God came to present themselves before the LORD, and Satan came also among them.
12877                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Satan, Whence comest thou? Then Satan answered the LORD, and said, From going to and fro in the earth, and from walking up and down in it.
12878                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto Satan, Hast thou considered my servant Job, that there is none like him in the earth, a perfect and an upright man, one that feareth God, and escheweth evil?
12879                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Satan answered the LORD, and said, Doth Job fear God for nought?
12880                                                                                                                                                                                                                                                                                                                                                       Hast not thou made an hedge about him, and about his house, and about all that he hath on every side? thou hast blessed the work of his hands, and his substance is increased in the land.
12881                                                                                                                                                                                                                                                                                                                                                                                                                                                    But put forth thine hand now, and touch all that he hath, and he will curse thee to thy face.
12882                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Satan, Behold, all that he hath is in thy power; only upon himself put not forth thine hand. So Satan went forth from the presence of the LORD.
12883                                                                                                                                                                                                                                                                                                                                                                                                                               And there was a day when his sons and his daughters were eating and drinking wine in their eldest brother's house:
12884                                                                                                                                                                                                                                                                                                                                                                                                                                         And there came a messenger unto Job, and said, The oxen were plowing, and the asses feeding beside them:
12885                                                                                                                                                                                                                                                                                                                                                                                      And the Sabeans fell upon them, and took them away; yea, they have slain the servants with the edge of the sword; and I only am escaped alone to tell thee.
12886                                                                                                                                                                                                                                                                                                                                While he was yet speaking, there came also another, and said, The fire of God is fallen from heaven, and hath burned up the sheep, and the servants, and consumed them; and I only am escaped alone to tell thee.
12887                                                                                                                                                                                                                                                                                        While he was yet speaking, there came also another, and said, The Chaldeans made out three bands, and fell upon the camels, and have carried them away, yea, and slain the servants with the edge of the sword; and I only am escaped alone to tell thee.
12888                                                                                                                                                                                                                                                                                                                                                                                          While he was yet speaking, there came also another, and said, Thy sons and thy daughters were eating and drinking wine in their eldest brother's house:
12889                                                                                                                                                                                                                                                                                                                                                  And, behold, there came a great wind from the wilderness, and smote the four corners of the house, and it fell upon the young men, and they are dead; and I only am escaped alone to tell thee.
12890                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Job arose, and rent his mantle, and shaved his head, and fell down upon the ground, and worshipped,
12891                                                                                                                                                                                                                                                                                                                                                                                  And said, Naked came I out of my mother's womb, and naked shall I return thither: the LORD gave, and the LORD hath taken away; blessed be the name of the LORD.
12892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In all this Job sinned not, nor charged God foolishly.
12893                                                                                                                                                                                                                                                                                                                                                                                        Again there was a day when the sons of God came to present themselves before the LORD, and Satan came also among them to present himself before the LORD.
12894                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Satan, From whence comest thou? And Satan answered the LORD, and said, From going to and fro in the earth, and from walking up and down in it.
12895                                                                                                                                                                                                                                                And the LORD said unto Satan, Hast thou considered my servant Job, that there is none like him in the earth, a perfect and an upright man, one that feareth God, and escheweth evil? and still he holdeth fast his integrity, although thou movedst me against him, to destroy him without cause.
12896                                                                                                                                                                                                                                                                                                                                                                                                                                        And Satan answered the LORD, and said, Skin for skin, yea, all that a man hath will he give for his life.
12897                                                                                                                                                                                                                                                                                                                                                                                                                                              But put forth thine hand now, and touch his bone and his flesh, and he will curse thee to thy face.
12898                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Satan, Behold, he is in thine hand; but save his life.
12899                                                                                                                                                                                                                                                                                                                                                                                                                       So went Satan forth from the presence of the LORD, and smote Job with sore boils from the sole of his foot unto his crown.
12900                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he took him a potsherd to scrape himself withal; and he sat down among the ashes.
12901                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then said his wife unto him, Dost thou still retain thine integrity? curse God, and die.
12902                                                                                                                                                                                                                                                                                                                                              But he said unto her, Thou speakest as one of the foolish women speaketh. What? shall we receive good at the hand of God, and shall we not receive evil? In all this did not Job sin with his lips.
12903                                                                                                                                                                                                                                                             Now when Job's three friends heard of all this evil that was come upon him, they came every one from his own place; Eliphaz the Temanite, and Bildad the Shuhite, and Zophar the Naamathite: for they had made an appointment together to come to mourn with him and to comfort him.
12904                                                                                                                                                                                                                                                                                                                                                      And when they lifted up their eyes afar off, and knew him not, they lifted up their voice, and wept; and they rent every one his mantle, and sprinkled dust upon their heads toward heaven.
12905                                                                                                                                                                                                                                                                                                                                                                                               So they sat down with him upon the ground seven days and seven nights, and none spake a word unto him: for they saw that his grief was very great.
12906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             After this opened Job his mouth, and cursed his day.
12907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Job spake, and said,
12908                                                                                                                                                                                                                                                                                                                                                                                                                                       Let the day perish wherein I was born, and the night in which it was said, There is a man child conceived.
12909                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let that day be darkness; let not God regard it from above, neither let the light shine upon it.
12910                                                                                                                                                                                                                                                                                                                                                                                                                               Let darkness and the shadow of death stain it; let a cloud dwell upon it; let the blackness of the day terrify it.
12911                                                                                                                                                                                                                                                                                                                                                                                                    As for that night, let darkness seize upon it; let it not be joined unto the days of the year, let it not come into the number of the months.
12912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lo, let that night be solitary, let no joyful voice come therein.
12913                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let them curse it that curse the day, who are ready to raise up their mourning.
12914                                                                                                                                                                                                                                                                                                                                                                                                                  Let the stars of the twilight thereof be dark; let it look for light, but have none; neither let it see the dawning of the day:
12915                                                                                                                                                                                                                                                                                                                                                                                                                                                             Because it shut not up the doors of my mother's womb, nor hid sorrow from mine eyes.
12916                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why died I not from the womb? why did I not give up the ghost when I came out of the belly?
12917                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why did the knees prevent me? or why the breasts that I should suck?
12918                                                                                                                                                                                                                                                                                                                                                                                                                                                   For now should I have lain still and been quiet, I should have slept: then had I been at rest,
12919                                                                                                                                                                                                                                                                                                                                                                                                                                                             With kings and counsellors of the earth, which build desolate places for themselves;
12920                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or with princes that had gold, who filled their houses with silver:
12921                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or as an hidden untimely birth I had not been; as infants which never saw light.
12922                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There the wicked cease from troubling; and there the weary be at rest.
12923                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There the prisoners rest together; they hear not the voice of the oppressor.
12924                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The small and great are there; and the servant is free from his master.
12925                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wherefore is light given to him that is in misery, and life unto the bitter in soul;
12926                                                                                                                                                                                                                                                                                                                                                                                                                                                             Which long for death, but it cometh not; and dig for it more than for hid treasures;
12927                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Which rejoice exceedingly, and are glad, when they can find the grave?
12928                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why is light given to a man whose way is hid, and whom God hath hedged in?
12929                                                                                                                                                                                                                                                                                                                                                                                                                                                              For my sighing cometh before I eat, and my roarings are poured out like the waters.
12930                                                                                                                                                                                                                                                                                                                                                                                                                                            For the thing which I greatly feared is come upon me, and that which I was afraid of is come unto me.
12931                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I was not in safety, neither had I rest, neither was I quiet; yet trouble came.
12932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Eliphaz the Temanite answered and said,
12933                                                                                                                                                                                                                                                                                                                                                                                                                                              If we assay to commune with thee, wilt thou be grieved? but who can withhold himself from speaking?
12934                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behold, thou hast instructed many, and thou hast strengthened the weak hands.
12935                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thy words have upholden him that was falling, and thou hast strengthened the feeble knees.
12936                                                                                                                                                                                                                                                                                                                                                                                                                                                        But now it is come upon thee, and thou faintest; it toucheth thee, and thou art troubled.
12937                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Is not this thy fear, thy confidence, thy hope, and the uprightness of thy ways?
12938                                                                                                                                                                                                                                                                                                                                                                                                                                                   Remember, I pray thee, who ever perished, being innocent? or where were the righteous cut off?
12939                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Even as I have seen, they that plow iniquity, and sow wickedness, reap the same.
12940                                                                                                                                                                                                                                                                                                                                                                                                                                                            By the blast of God they perish, and by the breath of his nostrils are they consumed.
12941                                                                                                                                                                                                                                                                                                                                                                                                                                         The roaring of the lion, and the voice of the fierce lion, and the teeth of the young lions, are broken.
12942                                                                                                                                                                                                                                                                                                                                                                                                                                                       The old lion perisheth for lack of prey, and the stout lion's whelps are scattered abroad.
12943                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now a thing was secretly brought to me, and mine ear received a little thereof.
12944                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In thoughts from the visions of the night, when deep sleep falleth on men,
12945                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fear came upon me, and trembling, which made all my bones to shake.
12946                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then a spirit passed before my face; the hair of my flesh stood up:
12947                                                                                                                                                                                                                                                                                                                                                                                                         It stood still, but I could not discern the form thereof: an image was before mine eyes, there was silence, and I heard a voice, saying,
12948                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shall mortal man be more just than God? shall a man be more pure than his maker?
12949                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Behold, he put no trust in his servants; and his angels he charged with folly:
12950                                                                                                                                                                                                                                                                                                                                                                                                                          How much less in them that dwell in houses of clay, whose foundation is in the dust, which are crushed before the moth?
12951                                                                                                                                                                                                                                                                                                                                                                                                                                                       They are destroyed from morning to evening: they perish for ever without any regarding it.
12952                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doth not their excellency which is in them go away? they die, even without wisdom.
12953                                                                                                                                                                                                                                                                                                                                                                                                                                                      Call now, if there be any that will answer thee; and to which of the saints wilt thou turn?
12954                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For wrath killeth the foolish man, and envy slayeth the silly one.
12955                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I have seen the foolish taking root: but suddenly I cursed his habitation.
12956                                                                                                                                                                                                                                                                                                                                                                                                                                        His children are far from safety, and they are crushed in the gate, neither is there any to deliver them.
12957                                                                                                                                                                                                                                                                                                                                                                                                                          Whose harvest the hungry eateth up, and taketh it even out of the thorns, and the robber swalloweth up their substance.
12958                                                                                                                                                                                                                                                                                                                                                                                                                                                 Although affliction cometh not forth of the dust, neither doth trouble spring out of the ground;
12959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet man is born unto trouble, as the sparks fly upward.
12960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I would seek unto God, and unto God would I commit my cause:
12961                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Which doeth great things and unsearchable; marvellous things without number:
12962                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who giveth rain upon the earth, and sendeth waters upon the fields:
12963                                                                                                                                                                                                                                                                                                                                                                                                                                                            To set up on high those that be low; that those which mourn may be exalted to safety.
12964                                                                                                                                                                                                                                                                                                                                                                                                                                                 He disappointeth the devices of the crafty, so that their hands cannot perform their enterprise.
12965                                                                                                                                                                                                                                                                                                                                                                                                                                                  He taketh the wise in their own craftiness: and the counsel of the froward is carried headlong.
12966                                                                                                                                                                                                                                                                                                                                                                                                                                                               They meet with darkness in the day time, and grope in the noonday as in the night.
12967                                                                                                                                                                                                                                                                                                                                                                                                                                                        But he saveth the poor from the sword, from their mouth, and from the hand of the mighty.
12968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the poor hath hope, and iniquity stoppeth her mouth.
12969                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, happy is the man whom God correcteth: therefore despise not thou the chastening of the Almighty:
12970                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For he maketh sore, and bindeth up: he woundeth, and his hands make whole.
12971                                                                                                                                                                                                                                                                                                                                                                                                                                                             He shall deliver thee in six troubles: yea, in seven there shall no evil touch thee.
12972                                                                                                                                                                                                                                                                                                                                                                                                                                                               In famine he shall redeem thee from death: and in war from the power of the sword.
12973                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt be hid from the scourge of the tongue: neither shalt thou be afraid of destruction when it cometh.
12974                                                                                                                                                                                                                                                                                                                                                                                                                                             At destruction and famine thou shalt laugh: neither shalt thou be afraid of the beasts of the earth.
12975                                                                                                                                                                                                                                                                                                                                                                                                                               For thou shalt be in league with the stones of the field: and the beasts of the field shall be at peace with thee.
12976                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt know that thy tabernacle shall be in peace; and thou shalt visit thy habitation, and shalt not sin.
12977                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt know also that thy seed shall be great, and thine offspring as the grass of the earth.
12978                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt come to thy grave in a full age, like as a shock of corn cometh in in his season.
12979                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lo this, we have searched it, so it is; hear it, and know thou it for thy good.
12980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Job answered and said,
12981                                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that my grief were throughly weighed, and my calamity laid in the balances together!
12982                                                                                                                                                                                                                                                                                                                                                                                                                                                       For now it would be heavier than the sand of the sea: therefore my words are swallowed up.
12983                                                                                                                                                                                                                                                                                                                                                                                                For the arrows of the Almighty are within me, the poison whereof drinketh up my spirit: the terrors of God do set themselves in array against me.
12984                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doth the wild ass bray when he hath grass? or loweth the ox over his fodder?
12985                                                                                                                                                                                                                                                                                                                                                                                                                                                 Can that which is unsavoury be eaten without salt? or is there any taste in the white of an egg?
12986                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The things that my soul refused to touch are as my sorrowful meat.
12987                                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that I might have my request; and that God would grant me the thing that I long for!
12988                                                                                                                                                                                                                                                                                                                                                                                                                                                   Even that it would please God to destroy me; that he would let loose his hand, and cut me off!
12989                                                                                                                                                                                                                                                                                                                                                                                                     Then should I yet have comfort; yea, I would harden myself in sorrow: let him not spare; for I have not concealed the words of the Holy One.
12990                                                                                                                                                                                                                                                                                                                                                                                                                                                    What is my strength, that I should hope? and what is mine end, that I should prolong my life?
12991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Is my strength the strength of stones? or is my flesh of brass?
12992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Is not my help in me? and is wisdom driven quite from me?
12993                                                                                                                                                                                                                                                                                                                                                                                                                                       To him that is afflicted pity should be shewed from his friend; but he forsaketh the fear of the Almighty.
12994                                                                                                                                                                                                                                                                                                                                                                                                                                                       My brethren have dealt deceitfully as a brook, and as the stream of brooks they pass away;
12995                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Which are blackish by reason of the ice, and wherein the snow is hid:
12996                                                                                                                                                                                                                                                                                                                                                                                                                                                      What time they wax warm, they vanish: when it is hot, they are consumed out of their place.
12997                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The paths of their way are turned aside; they go to nothing, and perish.
12998                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The troops of Tema looked, the companies of Sheba waited for them.
12999                                                                                                                                                                                                                                                                                                                                                                                                                                                                They were confounded because they had hoped; they came thither, and were ashamed.
13000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For now ye are nothing; ye see my casting down, and are afraid.
13001                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Did I say, Bring unto me? or, Give a reward for me of your substance?
13002                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or, Deliver me from the enemy's hand? or, Redeem me from the hand of the mighty?
13003                                                                                                                                                                                                                                                                                                                                                                                                                                                            Teach me, and I will hold my tongue: and cause me to understand wherein I have erred.
13004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How forcible are right words! but what doth your arguing reprove?
13005                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do ye imagine to reprove words, and the speeches of one that is desperate, which are as wind?
13006                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yea, ye overwhelm the fatherless, and ye dig a pit for your friend.
13007                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now therefore be content, look upon me; for it is evident unto you if I lie.
13008                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return, I pray you, let it not be iniquity; yea, return again, my righteousness is in it.
13009                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Is there iniquity in my tongue? cannot my taste discern perverse things?
13010                                                                                                                                                                                                                                                                                                                                                                                                                                            Is there not an appointed time to man upon earth? are not his days also like the days of an hireling?
13011                                                                                                                                                                                                                                                                                                                                                                                                                                               As a servant earnestly desireth the shadow, and as an hireling looketh for the reward of his work:
13012                                                                                                                                                                                                                                                                                                                                                                                                                                                              So am I made to possess months of vanity, and wearisome nights are appointed to me.
13013                                                                                                                                                                                                                                                                                                                                                                                                             When I lie down, I say, When shall I arise, and the night be gone? and I am full of tossings to and fro unto the dawning of the day.
13014                                                                                                                                                                                                                                                                                                                                                                                                                                                       My flesh is clothed with worms and clods of dust; my skin is broken, and become loathsome.
13015                                                                                                                                                                                                                                                                                                                                                                                                                                                                         My days are swifter than a weaver's shuttle, and are spent without hope.
13016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O remember that my life is wind: mine eye shall no more see good.
13017                                                                                                                                                                                                                                                                                                                                                                                                                                                     The eye of him that hath seen me shall see me no more: thine eyes are upon me, and I am not.
13018                                                                                                                                                                                                                                                                                                                                                                                                                                           As the cloud is consumed and vanisheth away: so he that goeth down to the grave shall come up no more.
13019                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He shall return no more to his house, neither shall his place know him any more.
13020                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore I will not refrain my mouth; I will speak in the anguish of my spirit; I will complain in the bitterness of my soul.
13021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Am I a sea, or a whale, that thou settest a watch over me?
13022                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When I say, My bed shall comfort me, my couch shall ease my complaints;
13023                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then thou scarest me with dreams, and terrifiest me through visions:
13024                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So that my soul chooseth strangling, and death rather than my life.
13025                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I loathe it; I would not live alway: let me alone; for my days are vanity.
13026                                                                                                                                                                                                                                                                                                                                                                                                                                                  What is man, that thou shouldest magnify him? and that thou shouldest set thine heart upon him?
13027                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And that thou shouldest visit him every morning, and try him every moment?
13028                                                                                                                                                                                                                                                                                                                                                                                                                                                          How long wilt thou not depart from me, nor let me alone till I swallow down my spittle?
13029                                                                                                                                                                                                                                                                                                                                                                                                 I have sinned; what shall I do unto thee, O thou preserver of men? why hast thou set me as a mark against thee, so that I am a burden to myself?
13030                                                                                                                                                                                                                                                                                                                                                                          And why dost thou not pardon my transgression, and take away my iniquity? for now shall I sleep in the dust; and thou shalt seek me in the morning, but I shall not be.
13031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then answered Bildad the Shuhite, and said,
13032                                                                                                                                                                                                                                                                                                                                                                                                                                          How long wilt thou speak these things? and how long shall the words of thy mouth be like a strong wind?
13033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doth God pervert judgment? or doth the Almighty pervert justice?
13034                                                                                                                                                                                                                                                                                                                                                                                                                                                     If thy children have sinned against him, and he have cast them away for their transgression;
13035                                                                                                                                                                                                                                                                                                                                                                                                                                                               If thou wouldest seek unto God betimes, and make thy supplication to the Almighty;
13036                                                                                                                                                                                                                                                                                                                                                                                                                      If thou wert pure and upright; surely now he would awake for thee, and make the habitation of thy righteousness prosperous.
13037                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Though thy beginning was small, yet thy latter end should greatly increase.
13038                                                                                                                                                                                                                                                                                                                                                                                                                                                 For enquire, I pray thee, of the former age, and prepare thyself to the search of their fathers:
13039                                                                                                                                                                                                                                                                                                                                                                                                                                                       (For we are but of yesterday, and know nothing, because our days upon earth are a shadow:)
13040                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shall not they teach thee, and tell thee, and utter words out of their heart?
13041                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Can the rush grow up without mire? can the flag grow without water?
13042                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whilst it is yet in his greenness, and not cut down, it withereth before any other herb.
13043                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So are the paths of all that forget God; and the hypocrite's hope shall perish:
13044                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whose hope shall be cut off, and whose trust shall be a spider's web.
13045                                                                                                                                                                                                                                                                                                                                                                                                                                            He shall lean upon his house, but it shall not stand: he shall hold it fast, but it shall not endure.
13046                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He is green before the sun, and his branch shooteth forth in his garden.
13047                                                                                                                                                                                                                                                                                                                                                                                                                                                                             His roots are wrapped about the heap, and seeth the place of stones.
13048                                                                                                                                                                                                                                                                                                                                                                                                                                                          If he destroy him from his place, then it shall deny him, saying, I have not seen thee.
13049                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Behold, this is the joy of his way, and out of the earth shall others grow.
13050                                                                                                                                                                                                                                                                                                                                                                                                                                                               Behold, God will not cast away a perfect man, neither will he help the evil doers:
13051                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Till he fill thy mouth with laughing, and thy lips with rejoicing.
13052                                                                                                                                                                                                                                                                                                                                                                                                                                      They that hate thee shall be clothed with shame; and the dwelling place of the wicked shall come to nought.
13053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Job answered and said,
13054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I know it is so of a truth: but how should man be just with God?
13055                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If he will contend with him, he cannot answer him one of a thousand.
13056                                                                                                                                                                                                                                                                                                                                                                                                                                          He is wise in heart, and mighty in strength: who hath hardened himself against him, and hath prospered?
13057                                                                                                                                                                                                                                                                                                                                                                                                                                                            Which removeth the mountains, and they know not: which overturneth them in his anger.
13058                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Which shaketh the earth out of her place, and the pillars thereof tremble.
13059                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Which commandeth the sun, and it riseth not; and sealeth up the stars.
13060                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Which alone spreadeth out the heavens, and treadeth upon the waves of the sea.
13061                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Which maketh Arcturus, Orion, and Pleiades, and the chambers of the south.
13062                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Which doeth great things past finding out; yea, and wonders without number.
13063                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lo, he goeth by me, and I see him not: he passeth on also, but I perceive him not.
13064                                                                                                                                                                                                                                                                                                                                                                                                                                                              Behold, he taketh away, who can hinder him? who will say unto him, What doest thou?
13065                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If God will not withdraw his anger, the proud helpers do stoop under him.
13066                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How much less shall I answer him, and choose out my words to reason with him?
13067                                                                                                                                                                                                                                                                                                                                                                                                                                                Whom, though I were righteous, yet would I not answer, but I would make supplication to my judge.
13068                                                                                                                                                                                                                                                                                                                                                                                                                                            If I had called, and he had answered me; yet would I not believe that he had hearkened unto my voice.
13069                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For he breaketh me with a tempest, and multiplieth my wounds without cause.
13070                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He will not suffer me to take my breath, but filleth me with bitterness.
13071                                                                                                                                                                                                                                                                                                                                                                                                                                                  If I speak of strength, lo, he is strong: and if of judgment, who shall set me a time to plead?
13072                                                                                                                                                                                                                                                                                                                                                                                                                                   If I justify myself, mine own mouth shall condemn me: if I say, I am perfect, it shall also prove me perverse.
13073                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Though I were perfect, yet would I not know my soul: I would despise my life.
13074                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is one thing, therefore I said it, He destroyeth the perfect and the wicked.
13075                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If the scourge slay suddenly, he will laugh at the trial of the innocent.
13076                                                                                                                                                                                                                                                                                                                                                                                                                       The earth is given into the hand of the wicked: he covereth the faces of the judges thereof; if not, where, and who is he?
13077                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now my days are swifter than a post: they flee away, they see no good.
13078                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They are passed away as the swift ships: as the eagle that hasteth to the prey.
13079                                                                                                                                                                                                                                                                                                                                                                                                                                                         If I say, I will forget my complaint, I will leave off my heaviness, and comfort myself:
13080                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I am afraid of all my sorrows, I know that thou wilt not hold me innocent.
13081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If I be wicked, why then labour I in vain?
13082                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If I wash myself with snow water, and make my hands never so clean;
13083                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Yet shalt thou plunge me in the ditch, and mine own clothes shall abhor me.
13084                                                                                                                                                                                                                                                                                                                                                                                                                                                 For he is not a man, as I am, that I should answer him, and we should come together in judgment.
13085                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neither is there any daysman betwixt us, that might lay his hand upon us both.
13086                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Let him take his rod away from me, and let not his fear terrify me:
13087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then would I speak, and not fear him; but it is not so with me.
13088                                                                                                                                                                                                                                                                                                                                                                                                                                   My soul is weary of my life; I will leave my complaint upon myself; I will speak in the bitterness of my soul.
13089                                                                                                                                                                                                                                                                                                                                                                                                                                                               I will say unto God, Do not condemn me; shew me wherefore thou contendest with me.
13090                                                                                                                                                                                                                                                                                                                                                                                                 Is it good unto thee that thou shouldest oppress, that thou shouldest despise the work of thine hands, and shine upon the counsel of the wicked?
13091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hast thou eyes of flesh? or seest thou as man seeth?
13092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Are thy days as the days of man? are thy years as man's days,
13093                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That thou enquirest after mine iniquity, and searchest after my sin?
13094                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou knowest that I am not wicked; and there is none that can deliver out of thine hand.
13095                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thine hands have made me and fashioned me together round about; yet thou dost destroy me.
13096                                                                                                                                                                                                                                                                                                                                                                                                                                            Remember, I beseech thee, that thou hast made me as the clay; and wilt thou bring me into dust again?
13097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hast thou not poured me out as milk, and curdled me like cheese?
13098                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou hast clothed me with skin and flesh, and hast fenced me with bones and sinews.
13099                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou hast granted me life and favour, and thy visitation hath preserved my spirit.
13100                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And these things hast thou hid in thine heart: I know that this is with thee.
13101                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If I sin, then thou markest me, and thou wilt not acquit me from mine iniquity.
13102                                                                                                                                                                                                                                                                                                                                                                                                  If I be wicked, woe unto me; and if I be righteous, yet will I not lift up my head. I am full of confusion; therefore see thou mine affliction;
13103                                                                                                                                                                                                                                                                                                                                                                                                                                          For it increaseth. Thou huntest me as a fierce lion: and again thou shewest thyself marvellous upon me.
13104                                                                                                                                                                                                                                                                                                                                                                                                                                Thou renewest thy witnesses against me, and increasest thine indignation upon me; changes and war are against me.
13105                                                                                                                                                                                                                                                                                                                                                                                                                             Wherefore then hast thou brought me forth out of the womb? Oh that I had given up the ghost, and no eye had seen me!
13106                                                                                                                                                                                                                                                                                                                                                                                                                                              I should have been as though I had not been; I should have been carried from the womb to the grave.
13107                                                                                                                                                                                                                                                                                                                                                                                                                                                             Are not my days few? cease then, and let me alone, that I may take comfort a little,
13108                                                                                                                                                                                                                                                                                                                                                                                                                                                     Before I go whence I shall not return, even to the land of darkness and the shadow of death;
13109                                                                                                                                                                                                                                                                                                                                                                                                                       A land of darkness, as darkness itself; and of the shadow of death, without any order, and where the light is as darkness.
13110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then answered Zophar the Naamathite, and said,
13111                                                                                                                                                                                                                                                                                                                                                                                                                                                       Should not the multitude of words be answered? and should a man full of talk be justified?
13112                                                                                                                                                                                                                                                                                                                                                                                                                                                Should thy lies make men hold their peace? and when thou mockest, shall no man make thee ashamed?
13113                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For thou hast said, My doctrine is pure, and I am clean in thine eyes.
13114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But oh that God would speak, and open his lips against thee;
13115                                                                                                                                                                                                                                                                                                                                                                           And that he would shew thee the secrets of wisdom, that they are double to that which is! Know therefore that God exacteth of thee less than thine iniquity deserveth.
13116                                                                                                                                                                                                                                                                                                                                                                                                                                                          Canst thou by searching find out God? canst thou find out the Almighty unto perfection?
13117                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is as high as heaven; what canst thou do? deeper than hell; what canst thou know?
13118                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The measure thereof is longer than the earth, and broader than the sea.
13119                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If he cut off, and shut up, or gather together, then who can hinder him?
13120                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For he knoweth vain men: he seeth wickedness also; will he not then consider it?
13121                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For vain men would be wise, though man be born like a wild ass's colt.
13122                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If thou prepare thine heart, and stretch out thine hands toward him;
13123                                                                                                                                                                                                                                                                                                                                                                                                                                                  If iniquity be in thine hand, put it far away, and let not wickedness dwell in thy tabernacles.
13124                                                                                                                                                                                                                                                                                                                                                                                                                                              For then shalt thou lift up thy face without spot; yea, thou shalt be stedfast, and shalt not fear:
13125                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Because thou shalt forget thy misery, and remember it as waters that pass away:
13126                                                                                                                                                                                                                                                                                                                                                                                                                                           And thine age shall be clearer than the noonday: thou shalt shine forth, thou shalt be as the morning.
13127                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt be secure, because there is hope; yea, thou shalt dig about thee, and thou shalt take thy rest in safety.
13128                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also thou shalt lie down, and none shall make thee afraid; yea, many shall make suit unto thee.
13129                                                                                                                                                                                                                                                                                                                                                                                                                         But the eyes of the wicked shall fail, and they shall not escape, and their hope shall be as the giving up of the ghost.
13130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Job answered and said,
13131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   No doubt but ye are the people, and wisdom shall die with you.
13132                                                                                                                                                                                                                                                                                                                                                                                                                                    But I have understanding as well as you; I am not inferior to you: yea, who knoweth not such things as these?
13133                                                                                                                                                                                                                                                                                                                                                                                                                       I am as one mocked of his neighbour, who calleth upon God, and he answereth him: the just upright man is laughed to scorn.
13134                                                                                                                                                                                                                                                                                                                                                                                                                                              He that is ready to slip with his feet is as a lamp despised in the thought of him that is at ease.
13135                                                                                                                                                                                                                                                                                                                                                                                                                               The tabernacles of robbers prosper, and they that provoke God are secure; into whose hand God bringeth abundantly.
13136                                                                                                                                                                                                                                                                                                                                                                                                                                           But ask now the beasts, and they shall teach thee; and the fowls of the air, and they shall tell thee:
13137                                                                                                                                                                                                                                                                                                                                                                                                                                               Or speak to the earth, and it shall teach thee: and the fishes of the sea shall declare unto thee.
13138                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Who knoweth not in all these that the hand of the LORD hath wrought this?
13139                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In whose hand is the soul of every living thing, and the breath of all mankind.
13140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doth not the ear try words? and the mouth taste his meat?
13141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 With the ancient is wisdom; and in length of days understanding.
13142                                                                                                                                                                                                                                                                                                                                                                                                                                                                              With him is wisdom and strength, he hath counsel and understanding.
13143                                                                                                                                                                                                                                                                                                                                                                                                                                       Behold, he breaketh down, and it cannot be built again: he shutteth up a man, and there can be no opening.
13144                                                                                                                                                                                                                                                                                                                                                                                                                                       Behold, he withholdeth the waters, and they dry up: also he sendeth them out, and they overturn the earth.
13145                                                                                                                                                                                                                                                                                                                                                                                                                                                                          With him is strength and wisdom: the deceived and the deceiver are his.
13146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He leadeth counsellors away spoiled, and maketh the judges fools.
13147                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He looseth the bond of kings, and girdeth their loins with a girdle.
13148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He leadeth princes away spoiled, and overthroweth the mighty.
13149                                                                                                                                                                                                                                                                                                                                                                                                                                                        He removeth away the speech of the trusty, and taketh away the understanding of the aged.
13150                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He poureth contempt upon princes, and weakeneth the strength of the mighty.
13151                                                                                                                                                                                                                                                                                                                                                                                                                                                       He discovereth deep things out of darkness, and bringeth out to light the shadow of death.
13152                                                                                                                                                                                                                                                                                                                                                                                                                                            He increaseth the nations, and destroyeth them: he enlargeth the nations, and straiteneth them again.
13153                                                                                                                                                                                                                                                                                                                                                                                                              He taketh away the heart of the chief of the people of the earth, and causeth them to wander in a wilderness where there is no way.
13154                                                                                                                                                                                                                                                                                                                                                                                                                                                          They grope in the dark without light, and he maketh them to stagger like a drunken man.
13155                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lo, mine eye hath seen all this, mine ear hath heard and understood it.
13156                                                                                                                                                                                                                                                                                                                                                                                                                                                                               What ye know, the same do I know also: I am not inferior unto you.
13157                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely I would speak to the Almighty, and I desire to reason with God.
13158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But ye are forgers of lies, ye are all physicians of no value.
13159                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O that ye would altogether hold your peace! and it should be your wisdom.
13160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hear now my reasoning, and hearken to the pleadings of my lips.
13161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Will ye speak wickedly for God? and talk deceitfully for him?
13162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Will ye accept his person? will ye contend for God?
13163                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is it good that he should search you out? or as one man mocketh another, do ye so mock him?
13164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He will surely reprove you, if ye do secretly accept persons.
13165                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shall not his excellency make you afraid? and his dread fall upon you?
13166                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Your remembrances are like unto ashes, your bodies to bodies of clay.
13167                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hold your peace, let me alone, that I may speak, and let come on me what will.
13168                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wherefore do I take my flesh in my teeth, and put my life in mine hand?
13169                                                                                                                                                                                                                                                                                                                                                                                                                                                        Though he slay me, yet will I trust in him: but I will maintain mine own ways before him.
13170                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He also shall be my salvation: for an hypocrite shall not come before him.
13171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hear diligently my speech, and my declaration with your ears.
13172                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold now, I have ordered my cause; I know that I shall be justified.
13173                                                                                                                                                                                                                                                                                                                                                                                                                                                      Who is he that will plead with me? for now, if I hold my tongue, I shall give up the ghost.
13174                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Only do not two things unto me: then will I not hide myself from thee.
13175                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Withdraw thine hand far from me: and let not thy dread make me afraid.
13176                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then call thou, and I will answer: or let me speak, and answer thou me.
13177                                                                                                                                                                                                                                                                                                                                                                                                                                                              How many are mine iniquities and sins? make me to know my transgression and my sin.
13178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore hidest thou thy face, and holdest me for thine enemy?
13179                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wilt thou break a leaf driven to and fro? and wilt thou pursue the dry stubble?
13180                                                                                                                                                                                                                                                                                                                                                                                                                                                  For thou writest bitter things against me, and makest me to possess the iniquities of my youth.
13181                                                                                                                                                                                                                                                                                                                                                                                                                 Thou puttest my feet also in the stocks, and lookest narrowly unto all my paths; thou settest a print upon the heels of my feet.
13182                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he, as a rotten thing, consumeth, as a garment that is moth eaten.
13183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Man that is born of a woman is of few days and full of trouble.
13184                                                                                                                                                                                                                                                                                                                                                                                                                                                  He cometh forth like a flower, and is cut down: he fleeth also as a shadow, and continueth not.
13185                                                                                                                                                                                                                                                                                                                                                                                                                                                         And doth thou open thine eyes upon such an one, and bringest me into judgment with thee?
13186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Who can bring a clean thing out of an unclean? not one.
13187                                                                                                                                                                                                                                                                                                                                                                                                                      Seeing his days are determined, the number of his months are with thee, thou hast appointed his bounds that he cannot pass;
13188                                                                                                                                                                                                                                                                                                                                                                                                                                                              Turn from him, that he may rest, till he shall accomplish, as an hireling, his day.
13189                                                                                                                                                                                                                                                                                                                                                                                                                    For there is hope of a tree, if it be cut down, that it will sprout again, and that the tender branch thereof will not cease.
13190                                                                                                                                                                                                                                                                                                                                                                                                                                                           Though the root thereof wax old in the earth, and the stock thereof die in the ground;
13191                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Yet through the scent of water it will bud, and bring forth boughs like a plant.
13192                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But man dieth, and wasteth away: yea, man giveth up the ghost, and where is he?
13193                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As the waters fail from the sea, and the flood decayeth and drieth up:
13194                                                                                                                                                                                                                                                                                                                                                                                                                          So man lieth down, and riseth not: till the heavens be no more, they shall not awake, nor be raised out of their sleep.
13195                                                                                                                                                                                                                                                                                                                                                                                O that thou wouldest hide me in the grave, that thou wouldest keep me secret, until thy wrath be past, that thou wouldest appoint me a set time, and remember me!
13196                                                                                                                                                                                                                                                                                                                                                                                                                                           If a man die, shall he live again? all the days of my appointed time will I wait, till my change come.
13197                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt call, and I will answer thee: thou wilt have a desire to the work of thine hands.
13198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For now thou numberest my steps: dost thou not watch over my sin?
13199                                                                                                                                                                                                                                                                                                                                                                                                                                                                        My transgression is sealed up in a bag, and thou sewest up mine iniquity.
13200                                                                                                                                                                                                                                                                                                                                                                                                                                                     And surely the mountains falling cometh to nought, and the rock is removed out of his place.
13201                                                                                                                                                                                                                                                                                                                                                                                                           The waters wear the stones: thou washest away the things which grow out of the dust of the earth; and thou destroyest the hope of man.
13202                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou prevailest for ever against him, and he passeth: thou changest his countenance, and sendest him away.
13203                                                                                                                                                                                                                                                                                                                                                                                                                                      His sons come to honour, and he knoweth it not; and they are brought low, but he perceiveth it not of them.
13204                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But his flesh upon him shall have pain, and his soul within him shall mourn.
13205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then answered Eliphaz the Temanite, and said,
13206                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Should a wise man utter vain knowledge, and fill his belly with the east wind?
13207                                                                                                                                                                                                                                                                                                                                                                                                                                                           Should he reason with unprofitable talk? or with speeches wherewith he can do no good?
13208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Yea, thou castest off fear, and restrainest prayer before God.
13209                                                                                                                                                                                                                                                                                                                                                                                                                                                               For thy mouth uttereth thine iniquity, and thou choosest the tongue of the crafty.
13210                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thine own mouth condemneth thee, and not I: yea, thine own lips testify against thee.
13211                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Art thou the first man that was born? or wast thou made before the hills?
13212                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hast thou heard the secret of God? and dost thou restrain wisdom to thyself?
13213                                                                                                                                                                                                                                                                                                                                                                                                                                                                What knowest thou, that we know not? what understandest thou, which is not in us?
13214                                                                                                                                                                                                                                                                                                                                                                                                                                                                   With us are both the grayheaded and very aged men, much elder than thy father.
13215                                                                                                                                                                                                                                                                                                                                                                                                                                                                Are the consolations of God small with thee? is there any secret thing with thee?
13216                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why doth thine heart carry thee away? and what do thy eyes wink at,
13217                                                                                                                                                                                                                                                                                                                                                                                                                                                            That thou turnest thy spirit against God, and lettest such words go out of thy mouth?
13218                                                                                                                                                                                                                                                                                                                                                                                                                                              What is man, that he should be clean? and he which is born of a woman, that he should be righteous?
13219                                                                                                                                                                                                                                                                                                                                                                                                                                                          Behold, he putteth no trust in his saints; yea, the heavens are not clean in his sight.
13220                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How much more abominable and filthy is man, which drinketh iniquity like water?
13221                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will shew thee, hear me; and that which I have seen I will declare;
13222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which wise men have told from their fathers, and have not hid it:
13223                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Unto whom alone the earth was given, and no stranger passed among them.
13224                                                                                                                                                                                                                                                                                                                                                                                                                                            The wicked man travaileth with pain all his days, and the number of years is hidden to the oppressor.
13225                                                                                                                                                                                                                                                                                                                                                                                                                                                                A dreadful sound is in his ears: in prosperity the destroyer shall come upon him.
13226                                                                                                                                                                                                                                                                                                                                                                                                                                                        He believeth not that he shall return out of darkness, and he is waited for of the sword.
13227                                                                                                                                                                                                                                                                                                                                                                                                                                    He wandereth abroad for bread, saying, Where is it? he knoweth that the day of darkness is ready at his hand.
13228                                                                                                                                                                                                                                                                                                                                                                                                                                        Trouble and anguish shall make him afraid; they shall prevail against him, as a king ready to the battle.
13229                                                                                                                                                                                                                                                                                                                                                                                                                                                      For he stretcheth out his hand against God, and strengtheneth himself against the Almighty.
13230                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He runneth upon him, even on his neck, upon the thick bosses of his bucklers:
13231                                                                                                                                                                                                                                                                                                                                                                                                                                                          Because he covereth his face with his fatness, and maketh collops of fat on his flanks.
13232                                                                                                                                                                                                                                                                                                                                                                                                                                      And he dwelleth in desolate cities, and in houses which no man inhabiteth, which are ready to become heaps.
13233                                                                                                                                                                                                                                                                                                                                                                                                                      He shall not be rich, neither shall his substance continue, neither shall he prolong the perfection thereof upon the earth.
13234                                                                                                                                                                                                                                                                                                                                                                                                                       He shall not depart out of darkness; the flame shall dry up his branches, and by the breath of his mouth shall he go away.
13235                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let not him that is deceived trust in vanity: for vanity shall be his recompence.
13236                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It shall be accomplished before his time, and his branch shall not be green.
13237                                                                                                                                                                                                                                                                                                                                                                                                                                                     He shall shake off his unripe grape as the vine, and shall cast off his flower as the olive.
13238                                                                                                                                                                                                                                                                                                                                                                                                                                         For the congregation of hypocrites shall be desolate, and fire shall consume the tabernacles of bribery.
13239                                                                                                                                                                                                                                                                                                                                                                                                                                                                They conceive mischief, and bring forth vanity, and their belly prepareth deceit.
13240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Job answered and said,
13241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I have heard many such things: miserable comforters are ye all.
13242                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shall vain words have an end? or what emboldeneth thee that thou answerest?
13243                                                                                                                                                                                                                                                                                                                                                                                                                I also could speak as ye do: if your soul were in my soul's stead, I could heap up words against you, and shake mine head at you.
13244                                                                                                                                                                                                                                                                                                                                                                                                                                                   But I would strengthen you with my mouth, and the moving of my lips should asswage your grief.
13245                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Though I speak, my grief is not asswaged: and though I forbear, what am I eased?
13246                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But now he hath made me weary: thou hast made desolate all my company.
13247                                                                                                                                                                                                                                                                                                                                                                                                                And thou hast filled me with wrinkles, which is a witness against me: and my leanness rising up in me beareth witness to my face.
13248                                                                                                                                                                                                                                                                                                                                                                                                                           He teareth me in his wrath, who hateth me: he gnasheth upon me with his teeth; mine enemy sharpeneth his eyes upon me.
13249                                                                                                                                                                                                                                                                                                                                                                                                  They have gaped upon me with their mouth; they have smitten me upon the cheek reproachfully; they have gathered themselves together against me.
13250                                                                                                                                                                                                                                                                                                                                                                                                                                                           God hath delivered me to the ungodly, and turned me over into the hands of the wicked.
13251                                                                                                                                                                                                                                                                                                                                                                                                             I was at ease, but he hath broken me asunder: he hath also taken me by my neck, and shaken me to pieces, and set me up for his mark.
13252                                                                                                                                                                                                                                                                                                                                                                                                                    His archers compass me round about, he cleaveth my reins asunder, and doth not spare; he poureth out my gall upon the ground.
13253                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He breaketh me with breach upon breach, he runneth upon me like a giant.
13254                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I have sewed sackcloth upon my skin, and defiled my horn in the dust.
13255                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My face is foul with weeping, and on my eyelids is the shadow of death;
13256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Not for any injustice in mine hands: also my prayer is pure.
13257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O earth, cover not thou my blood, and let my cry have no place.
13258                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Also now, behold, my witness is in heaven, and my record is on high.
13259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My friends scorn me: but mine eye poureth out tears unto God.
13260                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O that one might plead for a man with God, as a man pleadeth for his neighbour!
13261                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When a few years are come, then I shall go the way whence I shall not return.
13262                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My breath is corrupt, my days are extinct, the graves are ready for me.
13263                                                                                                                                                                                                                                                                                                                                                                                                                                                              Are there not mockers with me? and doth not mine eye continue in their provocation?
13264                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lay down now, put me in a surety with thee; who is he that will strike hands with me?
13265                                                                                                                                                                                                                                                                                                                                                                                                                                                           For thou hast hid their heart from understanding: therefore shalt thou not exalt them.
13266                                                                                                                                                                                                                                                                                                                                                                                                                                                              He that speaketh flattery to his friends, even the eyes of his children shall fail.
13267                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He hath made me also a byword of the people; and aforetime I was as a tabret.
13268                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mine eye also is dim by reason of sorrow, and all my members are as a shadow.
13269                                                                                                                                                                                                                                                                                                                                                                                                                                             Upright men shall be astonied at this, and the innocent shall stir up himself against the hypocrite.
13270                                                                                                                                                                                                                                                                                                                                                                                                                                           The righteous also shall hold on his way, and he that hath clean hands shall be stronger and stronger.
13271                                                                                                                                                                                                                                                                                                                                                                                                                                                        But as for you all, do ye return, and come now: for I cannot find one wise man among you.
13272                                                                                                                                                                                                                                                                                                                                                                                                                                                                     My days are past, my purposes are broken off, even the thoughts of my heart.
13273                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They change the night into day: the light is short because of darkness.
13274                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If I wait, the grave is mine house: I have made my bed in the darkness.
13275                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have said to corruption, Thou art my father: to the worm, Thou art my mother, and my sister.
13276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And where is now my hope? as for my hope, who shall see it?
13277                                                                                                                                                                                                                                                                                                                                                                                                                                                                They shall go down to the bars of the pit, when our rest together is in the dust.
13278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then answered Bildad the Shuhite, and said,
13279                                                                                                                                                                                                                                                                                                                                                                                                                                                             How long will it be ere ye make an end of words? mark, and afterwards we will speak.
13280                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wherefore are we counted as beasts, and reputed vile in your sight?
13281                                                                                                                                                                                                                                                                                                                                                                                                                           He teareth himself in his anger: shall the earth be forsaken for thee? and shall the rock be removed out of his place?
13282                                                                                                                                                                                                                                                                                                                                                                                                                                                        Yea, the light of the wicked shall be put out, and the spark of his fire shall not shine.
13283                                                                                                                                                                                                                                                                                                                                                                                                                                                             The light shall be dark in his tabernacle, and his candle shall be put out with him.
13284                                                                                                                                                                                                                                                                                                                                                                                                                                                          The steps of his strength shall be straitened, and his own counsel shall cast him down.
13285                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For he is cast into a net by his own feet, and he walketh upon a snare.
13286                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The gin shall take him by the heel, and the robber shall prevail against him.
13287                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The snare is laid for him in the ground, and a trap for him in the way.
13288                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Terrors shall make him afraid on every side, and shall drive him to his feet.
13289                                                                                                                                                                                                                                                                                                                                                                                                                                                                  His strength shall be hungerbitten, and destruction shall be ready at his side.
13290                                                                                                                                                                                                                                                                                                                                                                                                                                                 It shall devour the strength of his skin: even the firstborn of death shall devour his strength.
13291                                                                                                                                                                                                                                                                                                                                                                                                                                             His confidence shall be rooted out of his tabernacle, and it shall bring him to the king of terrors.
13292                                                                                                                                                                                                                                                                                                                                                                                                                                   It shall dwell in his tabernacle, because it is none of his: brimstone shall be scattered upon his habitation.
13293                                                                                                                                                                                                                                                                                                                                                                                                                                                                      His roots shall be dried up beneath, and above shall his branch be cut off.
13294                                                                                                                                                                                                                                                                                                                                                                                                                                                            His remembrance shall perish from the earth, and he shall have no name in the street.
13295                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He shall be driven from light into darkness, and chased out of the world.
13296                                                                                                                                                                                                                                                                                                                                                                                                                                                       He shall neither have son nor nephew among his people, nor any remaining in his dwellings.
13297                                                                                                                                                                                                                                                                                                                                                                                                                                                 They that come after him shall be astonied at his day, as they that went before were affrighted.
13298                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely such are the dwellings of the wicked, and this is the place of him that knoweth not God.
13299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Job answered and said,
13300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How long will ye vex my soul, and break me in pieces with words?
13301                                                                                                                                                                                                                                                                                                                                                                                                                                                 These ten times have ye reproached me: ye are not ashamed that ye make yourselves strange to me.
13302                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And be it indeed that I have erred, mine error remaineth with myself.
13303                                                                                                                                                                                                                                                                                                                                                                                                                                                               If indeed ye will magnify yourselves against me, and plead against me my reproach:
13304                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Know now that God hath overthrown me, and hath compassed me with his net.
13305                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, I cry out of wrong, but I am not heard: I cry aloud, but there is no judgment.
13306                                                                                                                                                                                                                                                                                                                                                                                                                                                               He hath fenced up my way that I cannot pass, and he hath set darkness in my paths.
13307                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He hath stripped me of my glory, and taken the crown from my head.
13308                                                                                                                                                                                                                                                                                                                                                                                                                                                    He hath destroyed me on every side, and I am gone: and mine hope hath he removed like a tree.
13309                                                                                                                                                                                                                                                                                                                                                                                                                                                    He hath also kindled his wrath against me, and he counteth me unto him as one of his enemies.
13310                                                                                                                                                                                                                                                                                                                                                                                                                                               His troops come together, and raise up their way against me, and encamp round about my tabernacle.
13311                                                                                                                                                                                                                                                                                                                                                                                                                                                         He hath put my brethren far from me, and mine acquaintance are verily estranged from me.
13312                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My kinsfolk have failed, and my familiar friends have forgotten me.
13313                                                                                                                                                                                                                                                                                                                                                                                                                                              They that dwell in mine house, and my maids, count me for a stranger: I am an alien in their sight.
13314                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I called my servant, and he gave me no answer; I intreated him with my mouth.
13315                                                                                                                                                                                                                                                                                                                                                                                                                                                    My breath is strange to my wife, though I intreated for the children's sake of mine own body.
13316                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yea, young children despised me; I arose, and they spake against me.
13317                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All my inward friends abhorred me: and they whom I loved are turned against me.
13318                                                                                                                                                                                                                                                                                                                                                                                                                                                         My bone cleaveth to my skin and to my flesh, and I am escaped with the skin of my teeth.
13319                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have pity upon me, have pity upon me, O ye my friends; for the hand of God hath touched me.
13320                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why do ye persecute me as God, and are not satisfied with my flesh?
13321                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that my words were now written! oh that they were printed in a book!
13322                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That they were graven with an iron pen and lead in the rock for ever!
13323                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I know that my redeemer liveth, and that he shall stand at the latter day upon the earth:
13324                                                                                                                                                                                                                                                                                                                                                                                                                                                               And though after my skin worms destroy this body, yet in my flesh shall I see God:
13325                                                                                                                                                                                                                                                                                                                                                                                                                                 Whom I shall see for myself, and mine eyes shall behold, and not another; though my reins be consumed within me.
13326                                                                                                                                                                                                                                                                                                                                                                                                                                                           But ye should say, Why persecute we him, seeing the root of the matter is found in me?
13327                                                                                                                                                                                                                                                                                                                                                                                                                                Be ye afraid of the sword: for wrath bringeth the punishments of the sword, that ye may know there is a judgment.
13328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then answered Zophar the Naamathite, and said,
13329                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Therefore do my thoughts cause me to answer, and for this I make haste.
13330                                                                                                                                                                                                                                                                                                                                                                                                                                                  I have heard the check of my reproach, and the spirit of my understanding causeth me to answer.
13331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Knowest thou not this of old, since man was placed upon earth,
13332                                                                                                                                                                                                                                                                                                                                                                                                                                                       That the triumphing of the wicked is short, and the joy of the hypocrite but for a moment?
13333                                                                                                                                                                                                                                                                                                                                                                                                                                                               Though his excellency mount up to the heavens, and his head reach unto the clouds;
13334                                                                                                                                                                                                                                                                                                                                                                                                                                                 Yet he shall perish for ever like his own dung: they which have seen him shall say, Where is he?
13335                                                                                                                                                                                                                                                                                                                                                                                                                                     He shall fly away as a dream, and shall not be found: yea, he shall be chased away as a vision of the night.
13336                                                                                                                                                                                                                                                                                                                                                                                                                                                   The eye also which saw him shall see him no more; neither shall his place any more behold him.
13337                                                                                                                                                                                                                                                                                                                                                                                                                                                             His children shall seek to please the poor, and his hands shall restore their goods.
13338                                                                                                                                                                                                                                                                                                                                                                                                                                                           His bones are full of the sin of his youth, which shall lie down with him in the dust.
13339                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Though wickedness be sweet in his mouth, though he hide it under his tongue;
13340                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Though he spare it, and forsake it not; but keep it still within his mouth:
13341                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet his meat in his bowels is turned, it is the gall of asps within him.
13342                                                                                                                                                                                                                                                                                                                                                                                                                                           He hath swallowed down riches, and he shall vomit them up again: God shall cast them out of his belly.
13343                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He shall suck the poison of asps: the viper's tongue shall slay him.
13344                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He shall not see the rivers, the floods, the brooks of honey and butter.
13345                                                                                                                                                                                                                                                                                                                                                                               That which he laboured for shall he restore, and shall not swallow it down: according to his substance shall the restitution be, and he shall not rejoice therein.
13346                                                                                                                                                                                                                                                                                                                                                                                                                        Because he hath oppressed and hath forsaken the poor; because he hath violently taken away an house which he builded not;
13347                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely he shall not feel quietness in his belly, he shall not save of that which he desired.
13348                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There shall none of his meat be left; therefore shall no man look for his goods.
13349                                                                                                                                                                                                                                                                                                                                                                                                                                          In the fulness of his sufficiency he shall be in straits: every hand of the wicked shall come upon him.
13350                                                                                                                                                                                                                                                                                                                                                                                                                When he is about to fill his belly, God shall cast the fury of his wrath upon him, and shall rain it upon him while he is eating.
13351                                                                                                                                                                                                                                                                                                                                                                                                                                                               He shall flee from the iron weapon, and the bow of steel shall strike him through.
13352                                                                                                                                                                                                                                                                                                                                                                                                                                 It is drawn, and cometh out of the body; yea, the glittering sword cometh out of his gall: terrors are upon him.
13353                                                                                                                                                                                                                                                                                                                                                                                                     All darkness shall be hid in his secret places: a fire not blown shall consume him; it shall go ill with him that is left in his tabernacle.
13354                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The heaven shall reveal his iniquity; and the earth shall rise up against him.
13355                                                                                                                                                                                                                                                                                                                                                                                                                                                   The increase of his house shall depart, and his goods shall flow away in the day of his wrath.
13356                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is the portion of a wicked man from God, and the heritage appointed unto him by God.
13357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Job answered and said,
13358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hear diligently my speech, and let this be your consolations.
13359                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Suffer me that I may speak; and after that I have spoken, mock on.
13360                                                                                                                                                                                                                                                                                                                                                                                                                                                      As for me, is my complaint to man? and if it were so, why should not my spirit be troubled?
13361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mark me, and be astonished, and lay your hand upon your mouth.
13362                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Even when I remember I am afraid, and trembling taketh hold on my flesh.
13363                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wherefore do the wicked live, become old, yea, are mighty in power?
13364                                                                                                                                                                                                                                                                                                                                                                                                                                                       Their seed is established in their sight with them, and their offspring before their eyes.
13365                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Their houses are safe from fear, neither is the rod of God upon them.
13366                                                                                                                                                                                                                                                                                                                                                                                                                                                              Their bull gendereth, and faileth not; their cow calveth, and casteth not her calf.
13367                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They send forth their little ones like a flock, and their children dance.
13368                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They take the timbrel and harp, and rejoice at the sound of the organ.
13369                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They spend their days in wealth, and in a moment go down to the grave.
13370                                                                                                                                                                                                                                                                                                                                                                                                                                                        Therefore they say unto God, Depart from us; for we desire not the knowledge of thy ways.
13371                                                                                                                                                                                                                                                                                                                                                                                                                                             What is the Almighty, that we should serve him? and what profit should we have, if we pray unto him?
13372                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lo, their good is not in their hand: the counsel of the wicked is far from me.
13373                                                                                                                                                                                                                                                                                                                                                                                                              How oft is the candle of the wicked put out! and how oft cometh their destruction upon them! God distributeth sorrows in his anger.
13374                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They are as stubble before the wind, and as chaff that the storm carrieth away.
13375                                                                                                                                                                                                                                                                                                                                                                                                                                                             God layeth up his iniquity for his children: he rewardeth him, and he shall know it.
13376                                                                                                                                                                                                                                                                                                                                                                                                                                                             His eyes shall see his destruction, and he shall drink of the wrath of the Almighty.
13377                                                                                                                                                                                                                                                                                                                                                                                                                                         For what pleasure hath he in his house after him, when the number of his months is cut off in the midst?
13378                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shall any teach God knowledge? seeing he judgeth those that are high.
13379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One dieth in his full strength, being wholly at ease and quiet.
13380                                                                                                                                                                                                                                                                                                                                                                                                                                                                           His breasts are full of milk, and his bones are moistened with marrow.
13381                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And another dieth in the bitterness of his soul, and never eateth with pleasure.
13382                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They shall lie down alike in the dust, and the worms shall cover them.
13383                                                                                                                                                                                                                                                                                                                                                                                                                                                            Behold, I know your thoughts, and the devices which ye wrongfully imagine against me.
13384                                                                                                                                                                                                                                                                                                                                                                                                                                                   For ye say, Where is the house of the prince? and where are the dwelling places of the wicked?
13385                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have ye not asked them that go by the way? and do ye not know their tokens,
13386                                                                                                                                                                                                                                                                                                                                                                                                                                          That the wicked is reserved to the day of destruction? they shall be brought forth to the day of wrath.
13387                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who shall declare his way to his face? and who shall repay him what he hath done?
13388                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet shall he be brought to the grave, and shall remain in the tomb.
13389                                                                                                                                                                                                                                                                                                                                                                                                                        The clods of the valley shall be sweet unto him, and every man shall draw after him, as there are innumerable before him.
13390                                                                                                                                                                                                                                                                                                                                                                                                                                                                How then comfort ye me in vain, seeing in your answers there remaineth falsehood?
13391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Eliphaz the Temanite answered and said,
13392                                                                                                                                                                                                                                                                                                                                                                                                                                                             Can a man be profitable unto God, as he that is wise may be profitable unto himself?
13393                                                                                                                                                                                                                                                                                                                                                                                                                            Is it any pleasure to the Almighty, that thou art righteous? or is it gain to him, that thou makest thy ways perfect?
13394                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Will he reprove thee for fear of thee? will he enter with thee into judgment?
13395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is not thy wickedness great? and thine iniquities infinite?
13396                                                                                                                                                                                                                                                                                                                                                                                                                                              For thou hast taken a pledge from thy brother for nought, and stripped the naked of their clothing.
13397                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou hast not given water to the weary to drink, and thou hast withholden bread from the hungry.
13398                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as for the mighty man, he had the earth; and the honourable man dwelt in it.
13399                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou hast sent widows away empty, and the arms of the fatherless have been broken.
13400                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore snares are round about thee, and sudden fear troubleth thee;
13401                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or darkness, that thou canst not see; and abundance of waters cover thee.
13402                                                                                                                                                                                                                                                                                                                                                                                                                                                       Is not God in the height of heaven? and behold the height of the stars, how high they are!
13403                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou sayest, How doth God know? can he judge through the dark cloud?
13404                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thick clouds are a covering to him, that he seeth not; and he walketh in the circuit of heaven.
13405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hast thou marked the old way which wicked men have trodden?
13406                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which were cut down out of time, whose foundation was overflown with a flood:
13407                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Which said unto God, Depart from us: and what can the Almighty do for them?
13408                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet he filled their houses with good things: but the counsel of the wicked is far from me.
13409                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The righteous see it, and are glad: and the innocent laugh them to scorn.
13410                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whereas our substance is not cut down, but the remnant of them the fire consumeth.
13411                                                                                                                                                                                                                                                                                                                                                                                                                                                               Acquaint now thyself with him, and be at peace: thereby good shall come unto thee.
13412                                                                                                                                                                                                                                                                                                                                                                                                                                                               Receive, I pray thee, the law from his mouth, and lay up his words in thine heart.
13413                                                                                                                                                                                                                                                                                                                                                                                                                                   If thou return to the Almighty, thou shalt be built up, thou shalt put away iniquity far from thy tabernacles.
13414                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then shalt thou lay up gold as dust, and the gold of Ophir as the stones of the brooks.
13415                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yea, the Almighty shall be thy defence, and thou shalt have plenty of silver.
13416                                                                                                                                                                                                                                                                                                                                                                                                                                                       For then shalt thou have thy delight in the Almighty, and shalt lift up thy face unto God.
13417                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt make thy prayer unto him, and he shall hear thee, and thou shalt pay thy vows.
13418                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt also decree a thing, and it shall be established unto thee: and the light shall shine upon thy ways.
13419                                                                                                                                                                                                                                                                                                                                                                                                                                           When men are cast down, then thou shalt say, There is lifting up; and he shall save the humble person.
13420                                                                                                                                                                                                                                                                                                                                                                                                                                                 He shall deliver the island of the innocent: and it is delivered by the pureness of thine hands.
13421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Job answered and said,
13422                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Even to day is my complaint bitter: my stroke is heavier than my groaning.
13423                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Oh that I knew where I might find him! that I might come even to his seat!
13424                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I would order my cause before him, and fill my mouth with arguments.
13425                                                                                                                                                                                                                                                                                                                                                                                                                                                       I would know the words which he would answer me, and understand what he would say unto me.
13426                                                                                                                                                                                                                                                                                                                                                                                                                                                              Will he plead against me with his great power? No; but he would put strength in me.
13427                                                                                                                                                                                                                                                                                                                                                                                                                                                     There the righteous might dispute with him; so should I be delivered for ever from my judge.
13428                                                                                                                                                                                                                                                                                                                                                                                                                                                              Behold, I go forward, but he is not there; and backward, but I cannot perceive him:
13429                                                                                                                                                                                                                                                                                                                                                                                                                       On the left hand, where he doth work, but I cannot behold him: he hideth himself on the right hand, that I cannot see him:
13430                                                                                                                                                                                                                                                                                                                                                                                                                                                           But he knoweth the way that I take: when he hath tried me, I shall come forth as gold.
13431                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My foot hath held his steps, his way have I kept, and not declined.
13432                                                                                                                                                                                                                                                                                                                                                                                                                   Neither have I gone back from the commandment of his lips; I have esteemed the words of his mouth more than my necessary food.
13433                                                                                                                                                                                                                                                                                                                                                                                                                                                     But he is in one mind, and who can turn him? and what his soul desireth, even that he doeth.
13434                                                                                                                                                                                                                                                                                                                                                                                                                                                         For he performeth the thing that is appointed for me: and many such things are with him.
13435                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore am I troubled at his presence: when I consider, I am afraid of him.
13436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For God maketh my heart soft, and the Almighty troubleth me:
13437                                                                                                                                                                                                                                                                                                                                                                                                                                                Because I was not cut off before the darkness, neither hath he covered the darkness from my face.
13438                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why, seeing times are not hidden from the Almighty, do they that know him not see his days?
13439                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Some remove the landmarks; they violently take away flocks, and feed thereof.
13440                                                                                                                                                                                                                                                                                                                                                                                                                                                                They drive away the ass of the fatherless, they take the widow's ox for a pledge.
13441                                                                                                                                                                                                                                                                                                                                                                                                                                                              They turn the needy out of the way: the poor of the earth hide themselves together.
13442                                                                                                                                                                                                                                                                                                                                                                                       Behold, as wild asses in the desert, go they forth to their work; rising betimes for a prey: the wilderness yieldeth food for them and for their children.
13443                                                                                                                                                                                                                                                                                                                                                                                                                                                            They reap every one his corn in the field: and they gather the vintage of the wicked.
13444                                                                                                                                                                                                                                                                                                                                                                                                                                                          They cause the naked to lodge without clothing, that they have no covering in the cold.
13445                                                                                                                                                                                                                                                                                                                                                                                                                                                      They are wet with the showers of the mountains, and embrace the rock for want of a shelter.
13446                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They pluck the fatherless from the breast, and take a pledge of the poor.
13447                                                                                                                                                                                                                                                                                                                                                                                                                                                       They cause him to go naked without clothing, and they take away the sheaf from the hungry;
13448                                                                                                                                                                                                                                                                                                                                                                                                                                                               Which make oil within their walls, and tread their winepresses, and suffer thirst.
13449                                                                                                                                                                                                                                                                                                                                                                                                                                        Men groan from out of the city, and the soul of the wounded crieth out: yet God layeth not folly to them.
13450                                                                                                                                                                                                                                                                                                                                                                                                                                  They are of those that rebel against the light; they know not the ways thereof, nor abide in the paths thereof.
13451                                                                                                                                                                                                                                                                                                                                                                                                                                                   The murderer rising with the light killeth the poor and needy, and in the night is as a thief.
13452                                                                                                                                                                                                                                                                                                                                                                                                                                    The eye also of the adulterer waiteth for the twilight, saying, No eye shall see me: and disguiseth his face.
13453                                                                                                                                                                                                                                                                                                                                                                                                                               In the dark they dig through houses, which they had marked for themselves in the daytime: they know not the light.
13454                                                                                                                                                                                                                                                                                                                                                                                                                        For the morning is to them even as the shadow of death: if one know them, they are in the terrors of the shadow of death.
13455                                                                                                                                                                                                                                                                                                                                                                                                                                      He is swift as the waters; their portion is cursed in the earth: he beholdeth not the way of the vineyards.
13456                                                                                                                                                                                                                                                                                                                                                                                                                                                             Drought and heat consume the snow waters: so doth the grave those which have sinned.
13457                                                                                                                                                                                                                                                                                                                                                                                                         The womb shall forget him; the worm shall feed sweetly on him; he shall be no more remembered; and wickedness shall be broken as a tree.
13458                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He evil entreateth the barren that beareth not: and doeth not good to the widow.
13459                                                                                                                                                                                                                                                                                                                                                                                                                                                             He draweth also the mighty with his power: he riseth up, and no man is sure of life.
13460                                                                                                                                                                                                                                                                                                                                                                                                                                                    Though it be given him to be in safety, whereon he resteth; yet his eyes are upon their ways.
13461                                                                                                                                                                                                                                                                                                                                                                                      They are exalted for a little while, but are gone and brought low; they are taken out of the way as all other, and cut off as the tops of the ears of corn.
13462                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if it be not so now, who will make me a liar, and make my speech nothing worth?
13463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then answered Bildad the Shuhite, and said,
13464                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dominion and fear are with him, he maketh peace in his high places.
13465                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Is there any number of his armies? and upon whom doth not his light arise?
13466                                                                                                                                                                                                                                                                                                                                                                                                                                                          How then can man be justified with God? or how can he be clean that is born of a woman?
13467                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold even to the moon, and it shineth not; yea, the stars are not pure in his sight.
13468                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How much less man, that is a worm? and the son of man, which is a worm?
13469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Job answered and said,
13470                                                                                                                                                                                                                                                                                                                                                                                                                                                   How hast thou helped him that is without power? how savest thou the arm that hath no strength?
13471                                                                                                                                                                                                                                                                                                                                                                                                                                     How hast thou counselled him that hath no wisdom? and how hast thou plentifully declared the thing as it is?
13472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To whom hast thou uttered words? and whose spirit came from thee?
13473                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Dead things are formed from under the waters, and the inhabitants thereof.
13474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hell is naked before him, and destruction hath no covering.
13475                                                                                                                                                                                                                                                                                                                                                                                                                                                            He stretcheth out the north over the empty place, and hangeth the earth upon nothing.
13476                                                                                                                                                                                                                                                                                                                                                                                                                                                              He bindeth up the waters in his thick clouds; and the cloud is not rent under them.
13477                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He holdeth back the face of his throne, and spreadeth his cloud upon it.
13478                                                                                                                                                                                                                                                                                                                                                                                                                                                                He hath compassed the waters with bounds, until the day and night come to an end.
13479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The pillars of heaven tremble and are astonished at his reproof.
13480                                                                                                                                                                                                                                                                                                                                                                                                                                                       He divideth the sea with his power, and by his understanding he smiteth through the proud.
13481                                                                                                                                                                                                                                                                                                                                                                                                                                                           By his spirit he hath garnished the heavens; his hand hath formed the crooked serpent.
13482                                                                                                                                                                                                                                                                                                                                                                                                                      Lo, these are parts of his ways: but how little a portion is heard of him? but the thunder of his power who can understand?
13483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover Job continued his parable, and said,
13484                                                                                                                                                                                                                                                                                                                                                                                                                                                        As God liveth, who hath taken away my judgment; and the Almighty, who hath vexed my soul;
13485                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All the while my breath is in me, and the spirit of God is in my nostrils;
13486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My lips shall not speak wickedness, nor my tongue utter deceit.
13487                                                                                                                                                                                                                                                                                                                                                                                                                                                       God forbid that I should justify you: till I die I will not remove mine integrity from me.
13488                                                                                                                                                                                                                                                                                                                                                                                                                                          My righteousness I hold fast, and will not let it go: my heart shall not reproach me so long as I live.
13489                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let mine enemy be as the wicked, and he that riseth up against me as the unrighteous.
13490                                                                                                                                                                                                                                                                                                                                                                                                                                                     For what is the hope of the hypocrite, though he hath gained, when God taketh away his soul?
13491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Will God hear his cry when trouble cometh upon him?
13492                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Will he delight himself in the Almighty? will he always call upon God?
13493                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will teach you by the hand of God: that which is with the Almighty will I not conceal.
13494                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behold, all ye yourselves have seen it; why then are ye thus altogether vain?
13495                                                                                                                                                                                                                                                                                                                                                                                                                          This is the portion of a wicked man with God, and the heritage of oppressors, which they shall receive of the Almighty.
13496                                                                                                                                                                                                                                                                                                                                                                                                                                         If his children be multiplied, it is for the sword: and his offspring shall not be satisfied with bread.
13497                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those that remain of him shall be buried in death: and his widows shall not weep.
13498                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Though he heap up silver as the dust, and prepare raiment as the clay;
13499                                                                                                                                                                                                                                                                                                                                                                                                                                                       He may prepare it, but the just shall put it on, and the innocent shall divide the silver.
13500                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He buildeth his house as a moth, and as a booth that the keeper maketh.
13501                                                                                                                                                                                                                                                                                                                                                                                                                                                   The rich man shall lie down, but he shall not be gathered: he openeth his eyes, and he is not.
13502                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Terrors take hold on him as waters, a tempest stealeth him away in the night.
13503                                                                                                                                                                                                                                                                                                                                                                                                                                                  The east wind carrieth him away, and he departeth: and as a storm hurleth him out of his place.
13504                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For God shall cast upon him, and not spare: he would fain flee out of his hand.
13505                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Men shall clap their hands at him, and shall hiss him out of his place.
13506                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely there is a vein for the silver, and a place for gold where they fine it.
13507                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Iron is taken out of the earth, and brass is molten out of the stone.
13508                                                                                                                                                                                                                                                                                                                                                                                                                                He setteth an end to darkness, and searcheth out all perfection: the stones of darkness, and the shadow of death.
13509                                                                                                                                                                                                                                                                                                                                                                                                               The flood breaketh out from the inhabitant; even the waters forgotten of the foot: they are dried up, they are gone away from men.
13510                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for the earth, out of it cometh bread: and under it is turned up as it were fire.
13511                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The stones of it are the place of sapphires: and it hath dust of gold.
13512                                                                                                                                                                                                                                                                                                                                                                                                                                                                There is a path which no fowl knoweth, and which the vulture's eye hath not seen:
13513                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The lion's whelps have not trodden it, nor the fierce lion passed by it.
13514                                                                                                                                                                                                                                                                                                                                                                                                                                                              He putteth forth his hand upon the rock; he overturneth the mountains by the roots.
13515                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He cutteth out rivers among the rocks; and his eye seeth every precious thing.
13516                                                                                                                                                                                                                                                                                                                                                                                                                                                    He bindeth the floods from overflowing; and the thing that is hid bringeth he forth to light.
13517                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But where shall wisdom be found? and where is the place of understanding?
13518                                                                                                                                                                                                                                                                                                                                                                                                                                                                Man knoweth not the price thereof; neither is it found in the land of the living.
13519                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The depth saith, It is not in me: and the sea saith, It is not with me.
13520                                                                                                                                                                                                                                                                                                                                                                                                                                                             It cannot be gotten for gold, neither shall silver be weighed for the price thereof.
13521                                                                                                                                                                                                                                                                                                                                                                                                                                                             It cannot be valued with the gold of Ophir, with the precious onyx, or the sapphire.
13522                                                                                                                                                                                                                                                                                                                                                                                                                                           The gold and the crystal cannot equal it: and the exchange of it shall not be for jewels of fine gold.
13523                                                                                                                                                                                                                                                                                                                                                                                                                                                        No mention shall be made of coral, or of pearls: for the price of wisdom is above rubies.
13524                                                                                                                                                                                                                                                                                                                                                                                                                                                             The topaz of Ethiopia shall not equal it, neither shall it be valued with pure gold.
13525                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whence then cometh wisdom? and where is the place of understanding?
13526                                                                                                                                                                                                                                                                                                                                                                                                                                                          Seeing it is hid from the eyes of all living, and kept close from the fowls of the air.
13527                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Destruction and death say, We have heard the fame thereof with our ears.
13528                                                                                                                                                                                                                                                                                                                                                                                                                                                                             God understandeth the way thereof, and he knoweth the place thereof.
13529                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For he looketh to the ends of the earth, and seeth under the whole heaven;
13530                                                                                                                                                                                                                                                                                                                                                                                                                                                                         To make the weight for the winds; and he weigheth the waters by measure.
13531                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When he made a decree for the rain, and a way for the lightning of the thunder:
13532                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then did he see it, and declare it; he prepared it, yea, and searched it out.
13533                                                                                                                                                                                                                                                                                                                                                                                                                                    And unto man he said, Behold, the fear of the LORD, that is wisdom; and to depart from evil is understanding.
13534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover Job continued his parable, and said,
13535                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that I were as in months past, as in the days when God preserved me;
13536                                                                                                                                                                                                                                                                                                                                                                                                                                                            When his candle shined upon my head, and when by his light I walked through darkness;
13537                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As I was in the days of my youth, when the secret of God was upon my tabernacle;
13538                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When the Almighty was yet with me, when my children were about me;
13539                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When I washed my steps with butter, and the rock poured me out rivers of oil;
13540                                                                                                                                                                                                                                                                                                                                                                                                                                                             When I went out to the gate through the city, when I prepared my seat in the street!
13541                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The young men saw me, and hid themselves: and the aged arose, and stood up.
13542                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The princes refrained talking, and laid their hand on their mouth.
13543                                                                                                                                                                                                                                                                                                                                                                                                                                                                The nobles held their peace, and their tongue cleaved to the roof of their mouth.
13544                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the ear heard me, then it blessed me; and when the eye saw me, it gave witness to me:
13545                                                                                                                                                                                                                                                                                                                                                                                                                                                  Because I delivered the poor that cried, and the fatherless, and him that had none to help him.
13546                                                                                                                                                                                                                                                                                                                                                                                                                                       The blessing of him that was ready to perish came upon me: and I caused the widow's heart to sing for joy.
13547                                                                                                                                                                                                                                                                                                                                                                                                                                                               I put on righteousness, and it clothed me: my judgment was as a robe and a diadem.
13548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I was eyes to the blind, and feet was I to the lame.
13549                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I was a father to the poor: and the cause which I knew not I searched out.
13550                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I brake the jaws of the wicked, and plucked the spoil out of his teeth.
13551                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then I said, I shall die in my nest, and I shall multiply my days as the sand.
13552                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My root was spread out by the waters, and the dew lay all night upon my branch.
13553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     My glory was fresh in me, and my bow was renewed in my hand.
13554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Unto me men gave ear, and waited, and kept silence at my counsel.
13555                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After my words they spake not again; and my speech dropped upon them.
13556                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they waited for me as for the rain; and they opened their mouth wide as for the latter rain.
13557                                                                                                                                                                                                                                                                                                                                                                                                                                                  If I laughed on them, they believed it not; and the light of my countenance they cast not down.
13558                                                                                                                                                                                                                                                                                                                                                                                                                                      I chose out their way, and sat chief, and dwelt as a king in the army, as one that comforteth the mourners.
13559                                                                                                                                                                                                                                                                                                                                                                                                            But now they that are younger than I have me in derision, whose fathers I would have disdained to have set with the dogs of my flock.
13560                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yea, whereto might the strength of their hands profit me, in whom old age was perished?
13561                                                                                                                                                                                                                                                                                                                                                                                                                                           For want and famine they were solitary; fleeing into the wilderness in former time desolate and waste.
13562                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who cut up mallows by the bushes, and juniper roots for their meat.
13563                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They were driven forth from among men, (they cried after them as after a thief;)
13564                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To dwell in the cliffs of the valleys, in caves of the earth, and in the rocks.
13565                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Among the bushes they brayed; under the nettles they were gathered together.
13566                                                                                                                                                                                                                                                                                                                                                                                                                                                          They were children of fools, yea, children of base men: they were viler than the earth.
13567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And now am I their song, yea, I am their byword.
13568                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They abhor me, they flee far from me, and spare not to spit in my face.
13569                                                                                                                                                                                                                                                                                                                                                                                                                                                 Because he hath loosed my cord, and afflicted me, they have also let loose the bridle before me.
13570                                                                                                                                                                                                                                                                                                                                                                                                                           Upon my right hand rise the youth; they push away my feet, and they raise up against me the ways of their destruction.
13571                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They mar my path, they set forward my calamity, they have no helper.
13572                                                                                                                                                                                                                                                                                                                                                                                                                                             They came upon me as a wide breaking in of waters: in the desolation they rolled themselves upon me.
13573                                                                                                                                                                                                                                                                                                                                                                                                                                             Terrors are turned upon me: they pursue my soul as the wind: and my welfare passeth away as a cloud.
13574                                                                                                                                                                                                                                                                                                                                                                                                                                                           And now my soul is poured out upon me; the days of affliction have taken hold upon me.
13575                                                                                                                                                                                                                                                                                                                                                                                                                                                                      My bones are pierced in me in the night season: and my sinews take no rest.
13576                                                                                                                                                                                                                                                                                                                                                                                                                                            By the great force of my disease is my garment changed: it bindeth me about as the collar of my coat.
13577                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He hath cast me into the mire, and I am become like dust and ashes.
13578                                                                                                                                                                                                                                                                                                                                                                                                                                                               I cry unto thee, and thou dost not hear me: I stand up, and thou regardest me not.
13579                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou art become cruel to me: with thy strong hand thou opposest thyself against me.
13580                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou liftest me up to the wind; thou causest me to ride upon it, and dissolvest my substance.
13581                                                                                                                                                                                                                                                                                                                                                                                                                                                          For I know that thou wilt bring me to death, and to the house appointed for all living.
13582                                                                                                                                                                                                                                                                                                                                                                                                                                                       Howbeit he will not stretch out his hand to the grave, though they cry in his destruction.
13583                                                                                                                                                                                                                                                                                                                                                                                                                                                                Did not I weep for him that was in trouble? was not my soul grieved for the poor?
13584                                                                                                                                                                                                                                                                                                                                                                                                                                                When I looked for good, then evil came unto me: and when I waited for light, there came darkness.
13585                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My bowels boiled, and rested not: the days of affliction prevented me.
13586                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I went mourning without the sun: I stood up, and I cried in the congregation.
13587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am a brother to dragons, and a companion to owls.
13588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     My skin is black upon me, and my bones are burned with heat.
13589                                                                                                                                                                                                                                                                                                                                                                                                                                                               My harp also is turned to mourning, and my organ into the voice of them that weep.
13590                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I made a covenant with mine eyes; why then should I think upon a maid?
13591                                                                                                                                                                                                                                                                                                                                                                                                                                                  For what portion of God is there from above? and what inheritance of the Almighty from on high?
13592                                                                                                                                                                                                                                                                                                                                                                                                                                                           Is not destruction to the wicked? and a strange punishment to the workers of iniquity?
13593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Doth not he see my ways, and count all my steps?
13594                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If I have walked with vanity, or if my foot hath hasted to deceit;
13595                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let me be weighed in an even balance that God may know mine integrity.
13596                                                                                                                                                                                                                                                                                                                                                                                                                        If my step hath turned out of the way, and mine heart walked after mine eyes, and if any blot hath cleaved to mine hands;
13597                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then let me sow, and let another eat; yea, let my offspring be rooted out.
13598                                                                                                                                                                                                                                                                                                                                                                                                                                                      If mine heart have been deceived by a woman, or if I have laid wait at my neighbour's door;
13599                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then let my wife grind unto another, and let others bow down upon her.
13600                                                                                                                                                                                                                                                                                                                                                                                                                                                               For this is an heinous crime; yea, it is an iniquity to be punished by the judges.
13601                                                                                                                                                                                                                                                                                                                                                                                                                                                            For it is a fire that consumeth to destruction, and would root out all mine increase.
13602                                                                                                                                                                                                                                                                                                                                                                                                                                                   If I did despise the cause of my manservant or of my maidservant, when they contended with me;
13603                                                                                                                                                                                                                                                                                                                                                                                                                                                          What then shall I do when God riseth up? and when he visiteth, what shall I answer him?
13604                                                                                                                                                                                                                                                                                                                                                                                                                                                            Did not he that made me in the womb make him? and did not one fashion us in the womb?
13605                                                                                                                                                                                                                                                                                                                                                                                                                                                     If I have withheld the poor from their desire, or have caused the eyes of the widow to fail;
13606                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or have eaten my morsel myself alone, and the fatherless hath not eaten thereof;
13607                                                                                                                                                                                                                                                                                                                                                                                                                                    (For from my youth he was brought up with me, as with a father, and I have guided her from my mother's womb;)
13608                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If I have seen any perish for want of clothing, or any poor without covering;
13609                                                                                                                                                                                                                                                                                                                                                                                                                                                         If his loins have not blessed me, and if he were not warmed with the fleece of my sheep;
13610                                                                                                                                                                                                                                                                                                                                                                                                                                                              If I have lifted up my hand against the fatherless, when I saw my help in the gate:
13611                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then let mine arm fall from my shoulder blade, and mine arm be broken from the bone.
13612                                                                                                                                                                                                                                                                                                                                                                                                                                                   For destruction from God was a terror to me, and by reason of his highness I could not endure.
13613                                                                                                                                                                                                                                                                                                                                                                                                                                                              If I have made gold my hope, or have said to the fine gold, Thou art my confidence;
13614                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If I rejoice because my wealth was great, and because mine hand had gotten much;
13615                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If I beheld the sun when it shined, or the moon walking in brightness;
13616                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And my heart hath been secretly enticed, or my mouth hath kissed my hand:
13617                                                                                                                                                                                                                                                                                                                                                                                                                                          This also were an iniquity to be punished by the judge: for I should have denied the God that is above.
13618                                                                                                                                                                                                                                                                                                                                                                                                                                                   If I rejoice at the destruction of him that hated me, or lifted up myself when evil found him:
13619                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither have I suffered my mouth to sin by wishing a curse to his soul.
13620                                                                                                                                                                                                                                                                                                                                                                                                                                                       If the men of my tabernacle said not, Oh that we had of his flesh! we cannot be satisfied.
13621                                                                                                                                                                                                                                                                                                                                                                                                                                                                The stranger did not lodge in the street: but I opened my doors to the traveller.
13622                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If I covered my transgressions as Adam, by hiding mine iniquity in my bosom:
13623                                                                                                                                                                                                                                                                                                                                                                                                                     Did I fear a great multitude, or did the contempt of families terrify me, that I kept silence, and went not out of the door?
13624                                                                                                                                                                                                                                                                                                                                                                                                                  Oh that one would hear me! behold, my desire is, that the Almighty would answer me, and that mine adversary had written a book.
13625                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely I would take it upon my shoulder, and bind it as a crown to me.
13626                                                                                                                                                                                                                                                                                                                                                                                                                                                           I would declare unto him the number of my steps; as a prince would I go near unto him.
13627                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If my land cry against me, or that the furrows likewise thereof complain;
13628                                                                                                                                                                                                                                                                                                                                                                                                                                          If I have eaten the fruits thereof without money, or have caused the owners thereof to lose their life:
13629                                                                                                                                                                                                                                                                                                                                                                                                                                                    Let thistles grow instead of wheat, and cockle instead of barley. The words of Job are ended.
13630                                                                                                                                                                                                                                                                                                                                                                                                                                                               So these three men ceased to answer Job, because he was righteous in his own eyes.
13631                                                                                                                                                                                                                                                                                                                                                                      Then was kindled the wrath of Elihu the son of Barachel the Buzite, of the kindred of Ram: against Job was his wrath kindled, because he justified himself rather than God.
13632                                                                                                                                                                                                                                                                                                                                                                                                                               Also against his three friends was his wrath kindled, because they had found no answer, and yet had condemned Job.
13633                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now Elihu had waited till Job had spoken, because they were elder than he.
13634                                                                                                                                                                                                                                                                                                                                                                                                                                             When Elihu saw that there was no answer in the mouth of these three men, then his wrath was kindled.
13635                                                                                                                                                                                                                                                                                                                                                                                        And Elihu the son of Barachel the Buzite answered and said, I am young, and ye are very old; wherefore I was afraid, and durst not shew you mine opinion.
13636                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I said, Days should speak, and multitude of years should teach wisdom.
13637                                                                                                                                                                                                                                                                                                                                                                                                                                                     But there is a spirit in man: and the inspiration of the Almighty giveth them understanding.
13638                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Great men are not always wise: neither do the aged understand judgment.
13639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore I said, Hearken to me; I also will shew mine opinion.
13640                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, I waited for your words; I gave ear to your reasons, whilst ye searched out what to say.
13641                                                                                                                                                                                                                                                                                                                                                                                                                                     Yea, I attended unto you, and, behold, there was none of you that convinced Job, or that answered his words:
13642                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lest ye should say, We have found out wisdom: God thrusteth him down, not man.
13643                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now he hath not directed his words against me: neither will I answer him with your speeches.
13644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They were amazed, they answered no more: they left off speaking.
13645                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When I had waited, (for they spake not, but stood still, and answered no more;)
13646                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I said, I will answer also my part, I also will shew mine opinion.
13647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For I am full of matter, the spirit within me constraineth me.
13648                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, my belly is as wine which hath no vent; it is ready to burst like new bottles.
13649                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will speak, that I may be refreshed: I will open my lips and answer.
13650                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let me not, I pray you, accept any man's person, neither let me give flattering titles unto man.
13651                                                                                                                                                                                                                                                                                                                                                                                                                                                          For I know not to give flattering titles; in so doing my maker would soon take me away.
13652                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore, Job, I pray thee, hear my speeches, and hearken to all my words.
13653                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, now I have opened my mouth, my tongue hath spoken in my mouth.
13654                                                                                                                                                                                                                                                                                                                                                                                                                                                     My words shall be of the uprightness of my heart: and my lips shall utter knowledge clearly.
13655                                                                                                                                                                                                                                                                                                                                                                                                                                                               The spirit of God hath made me, and the breath of the Almighty hath given me life.
13656                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If thou canst answer me, set thy words in order before me, stand up.
13657                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, I am according to thy wish in God's stead: I also am formed out of the clay.
13658                                                                                                                                                                                                                                                                                                                                                                                                                                                          Behold, my terror shall not make thee afraid, neither shall my hand be heavy upon thee.
13659                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely thou hast spoken in mine hearing, and I have heard the voice of thy words, saying,
13660                                                                                                                                                                                                                                                                                                                                                                                                                                                                I am clean without transgression, I am innocent; neither is there iniquity in me.
13661                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, he findeth occasions against me, he counteth me for his enemy,
13662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He putteth my feet in the stocks, he marketh all my paths.
13663                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, in this thou art not just: I will answer thee, that God is greater than man.
13664                                                                                                                                                                                                                                                                                                                                                                                                                                                               Why dost thou strive against him? for he giveth not account of any of his matters.
13665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For God speaketh once, yea twice, yet man perceiveth it not.
13666                                                                                                                                                                                                                                                                                                                                                                                                                                             In a dream, in a vision of the night, when deep sleep falleth upon men, in slumberings upon the bed;
13667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then he openeth the ears of men, and sealeth their instruction,
13668                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That he may withdraw man from his purpose, and hide pride from man.
13669                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He keepeth back his soul from the pit, and his life from perishing by the sword.
13670                                                                                                                                                                                                                                                                                                                                                                                                                                                    He is chastened also with pain upon his bed, and the multitude of his bones with strong pain:
13671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So that his life abhorreth bread, and his soul dainty meat.
13672                                                                                                                                                                                                                                                                                                                                                                                                                                                  His flesh is consumed away, that it cannot be seen; and his bones that were not seen stick out.
13673                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yea, his soul draweth near unto the grave, and his life to the destroyers.
13674                                                                                                                                                                                                                                                                                                                                                                                                                                        If there be a messenger with him, an interpreter, one among a thousand, to shew unto man his uprightness:
13675                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he is gracious unto him, and saith, Deliver him from going down to the pit: I have found a ransom.
13676                                                                                                                                                                                                                                                                                                                                                                                                                                                             His flesh shall be fresher than a child's: he shall return to the days of his youth:
13677                                                                                                                                                                                                                                                                                                                                                                                                   He shall pray unto God, and he will be favourable unto him: and he shall see his face with joy: for he will render unto man his righteousness.
13678                                                                                                                                                                                                                                                                                                                                                                                                                                  He looketh upon men, and if any say, I have sinned, and perverted that which was right, and it profited me not;
13679                                                                                                                                                                                                                                                                                                                                                                                                                                                              He will deliver his soul from going into the pit, and his life shall see the light.
13680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lo, all these things worketh God oftentimes with man,
13681                                                                                                                                                                                                                                                                                                                                                                                                                                                             To bring back his soul from the pit, to be enlightened with the light of the living.
13682                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Mark well, O Job, hearken unto me: hold thy peace, and I will speak.
13683                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If thou hast anything to say, answer me: speak, for I desire to justify thee.
13684                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If not, hearken unto me: hold thy peace, and I shall teach thee wisdom.
13685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Furthermore Elihu answered and said,
13686                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hear my words, O ye wise men; and give ear unto me, ye that have knowledge.
13687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For the ear trieth words, as the mouth tasteth meat.
13688                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let us choose to us judgment: let us know among ourselves what is good.
13689                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For Job hath said, I am righteous: and God hath taken away my judgment.
13690                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Should I lie against my right? my wound is incurable without transgression.
13691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What man is like Job, who drinketh up scorning like water?
13692                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which goeth in company with the workers of iniquity, and walketh with wicked men.
13693                                                                                                                                                                                                                                                                                                                                                                                                                                                            For he hath said, It profiteth a man nothing that he should delight himself with God.
13694                                                                                                                                                                                                                                                                                                                                                                                      Therefore hearken unto me ye men of understanding: far be it from God, that he should do wickedness; and from the Almighty, that he should commit iniquity.
13695                                                                                                                                                                                                                                                                                                                                                                                                                                               For the work of a man shall he render unto him, and cause every man to find according to his ways.
13696                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yea, surely God will not do wickedly, neither will the Almighty pervert judgment.
13697                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who hath given him a charge over the earth? or who hath disposed the whole world?
13698                                                                                                                                                                                                                                                                                                                                                                                                                                                               If he set his heart upon man, if he gather unto himself his spirit and his breath;
13699                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All flesh shall perish together, and man shall turn again unto dust.
13700                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If now thou hast understanding, hear this: hearken to the voice of my words.
13701                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shall even he that hateth right govern? and wilt thou condemn him that is most just?
13702                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Is it fit to say to a king, Thou art wicked? and to princes, Ye are ungodly?
13703                                                                                                                                                                                                                                                                                                                                                                                               How much less to him that accepteth not the persons of princes, nor regardeth the rich more than the poor? for they all are the work of his hands.
13704                                                                                                                                                                                                                                                                                                                                                                                                        In a moment shall they die, and the people shall be troubled at midnight, and pass away: and the mighty shall be taken away without hand.
13705                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For his eyes are upon the ways of man, and he seeth all his goings.
13706                                                                                                                                                                                                                                                                                                                                                                                                                                                    There is no darkness, nor shadow of death, where the workers of iniquity may hide themselves.
13707                                                                                                                                                                                                                                                                                                                                                                                                                                                       For he will not lay upon man more than right; that he should enter into judgment with God.
13708                                                                                                                                                                                                                                                                                                                                                                                                                                                               He shall break in pieces mighty men without number, and set others in their stead.
13709                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore he knoweth their works, and he overturneth them in the night, so that they are destroyed.
13710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He striketh them as wicked men in the open sight of others;
13711                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Because they turned back from him, and would not consider any of his ways:
13712                                                                                                                                                                                                                                                                                                                                                                                                                                                So that they cause the cry of the poor to come unto him, and he heareth the cry of the afflicted.
13713                                                                                                                                                                                                                                                                                                                                                                           When he giveth quietness, who then can make trouble? and when he hideth his face, who then can behold him? whether it be done against a nation, or against a man only:
13714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That the hypocrite reign not, lest the people be ensnared.
13715                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely it is meet to be said unto God, I have borne chastisement, I will not offend any more:
13716                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That which I see not teach thou me: if I have done iniquity, I will do no more.
13717                                                                                                                                                                                                                                                                                                                                                                                            Should it be according to thy mind? he will recompense it, whether thou refuse, or whether thou choose; and not I: therefore speak what thou knowest.
13718                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let men of understanding tell me, and let a wise man hearken unto me.
13719                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Job hath spoken without knowledge, and his words were without wisdom.
13720                                                                                                                                                                                                                                                                                                                                                                                                                                                           My desire is that Job may be tried unto the end because of his answers for wicked men.
13721                                                                                                                                                                                                                                                                                                                                                                                                                                     For he addeth rebellion unto his sin, he clappeth his hands among us, and multiplieth his words against God.
13722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elihu spake moreover, and said,
13723                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thinkest thou this to be right, that thou saidst, My righteousness is more than God's?
13724                                                                                                                                                                                                                                                                                                                                                                                                                               For thou saidst, What advantage will it be unto thee? and, What profit shall I have, if I be cleansed from my sin?
13725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I will answer thee, and thy companions with thee.
13726                                                                                                                                                                                                                                                                                                                                                                                                                                                                Look unto the heavens, and see; and behold the clouds which are higher than thou.
13727                                                                                                                                                                                                                                                                                                                                                                                                                                  If thou sinnest, what doest thou against him? or if thy transgressions be multiplied, what doest thou unto him?
13728                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If thou be righteous, what givest thou him? or what receiveth he of thine hand?
13729                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thy wickedness may hurt a man as thou art; and thy righteousness may profit the son of man.
13730                                                                                                                                                                                                                                                                                                                                                                                                                       By reason of the multitude of oppressions they make the oppressed to cry: they cry out by reason of the arm of the mighty.
13731                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But none saith, Where is God my maker, who giveth songs in the night;
13732                                                                                                                                                                                                                                                                                                                                                                                                                                                 Who teacheth us more than the beasts of the earth, and maketh us wiser than the fowls of heaven?
13733                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There they cry, but none giveth answer, because of the pride of evil men.
13734                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely God will not hear vanity, neither will the Almighty regard it.
13735                                                                                                                                                                                                                                                                                                                                                                                                                                            Although thou sayest thou shalt not see him, yet judgment is before him; therefore trust thou in him.
13736                                                                                                                                                                                                                                                                                                                                                                                                                                           But now, because it is not so, he hath visited in his anger; yet he knoweth it not in great extremity:
13737                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore doth Job open his mouth in vain; he multiplieth words without knowledge.
13738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Elihu also proceeded, and said,
13739                                                                                                                                                                                                                                                                                                                                                                                                                                                               Suffer me a little, and I will shew thee that I have yet to speak on God's behalf.
13740                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I will fetch my knowledge from afar, and will ascribe righteousness to my Maker.
13741                                                                                                                                                                                                                                                                                                                                                                                                                                                             For truly my words shall not be false: he that is perfect in knowledge is with thee.
13742                                                                                                                                                                                                                                                                                                                                                                                                                                                               Behold, God is mighty, and despiseth not any: he is mighty in strength and wisdom.
13743                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He preserveth not the life of the wicked: but giveth right to the poor.
13744                                                                                                                                                                                                                                                                                                                                                                                               He withdraweth not his eyes from the righteous: but with kings are they on the throne; yea, he doth establish them for ever, and they are exalted.
13745                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if they be bound in fetters, and be holden in cords of affliction;
13746                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then he sheweth them their work, and their transgressions that they have exceeded.
13747                                                                                                                                                                                                                                                                                                                                                                                                                                                          He openeth also their ear to discipline, and commandeth that they return from iniquity.
13748                                                                                                                                                                                                                                                                                                                                                                                                                                             If they obey and serve him, they shall spend their days in prosperity, and their years in pleasures.
13749                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if they obey not, they shall perish by the sword, and they shall die without knowledge.
13750                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the hypocrites in heart heap up wrath: they cry not when he bindeth them.
13751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They die in youth, and their life is among the unclean.
13752                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He delivereth the poor in his affliction, and openeth their ears in oppression.
13753                                                                                                                                                                                                                                                                                                                                                                      Even so would he have removed thee out of the strait into a broad place, where there is no straitness; and that which should be set on thy table should be full of fatness.
13754                                                                                                                                                                                                                                                                                                                                                                                                                                                      But thou hast fulfilled the judgment of the wicked: judgment and justice take hold on thee.
13755                                                                                                                                                                                                                                                                                                                                                                                                                                  Because there is wrath, beware lest he take thee away with his stroke: then a great ransom cannot deliver thee.
13756                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Will he esteem thy riches? no, not gold, nor all the forces of strength.
13757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Desire not the night, when people are cut off in their place.
13758                                                                                                                                                                                                                                                                                                                                                                                                                                                                Take heed, regard not iniquity: for this hast thou chosen rather than affliction.
13759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold, God exalteth by his power: who teacheth like him?
13760                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Who hath enjoined him his way? or who can say, Thou hast wrought iniquity?
13761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Remember that thou magnify his work, which men behold.
13762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Every man may see it; man may behold it afar off.
13763                                                                                                                                                                                                                                                                                                                                                                                                                                                  Behold, God is great, and we know him not, neither can the number of his years be searched out.
13764                                                                                                                                                                                                                                                                                                                                                                                                                                                     For he maketh small the drops of water: they pour down rain according to the vapour thereof:
13765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Which the clouds do drop and distil upon man abundantly.
13766                                                                                                                                                                                                                                                                                                                                                                                                                                                            Also can any understand the spreadings of the clouds, or the noise of his tabernacle?
13767                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Behold, he spreadeth his light upon it, and covereth the bottom of the sea.
13768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For by them judgeth he the people; he giveth meat in abundance.
13769                                                                                                                                                                                                                                                                                                                                                                                                                                              With clouds he covereth the light; and commandeth it not to shine by the cloud that cometh betwixt.
13770                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The noise thereof sheweth concerning it, the cattle also concerning the vapour.
13771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  At this also my heart trembleth, and is moved out of his place.
13772                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hear attentively the noise of his voice, and the sound that goeth out of his mouth.
13773                                                                                                                                                                                                                                                                                                                                                                                                                                                            He directeth it under the whole heaven, and his lightning unto the ends of the earth.
13774                                                                                                                                                                                                                                                                                                                                                                                                                     After it a voice roareth: he thundereth with the voice of his excellency; and he will not stay them when his voice is heard.
13775                                                                                                                                                                                                                                                                                                                                                                                                                                                   God thundereth marvellously with his voice; great things doeth he, which we cannot comprehend.
13776                                                                                                                                                                                                                                                                                                                                                                                                                               For he saith to the snow, Be thou on the earth; likewise to the small rain, and to the great rain of his strength.
13777                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He sealeth up the hand of every man; that all men may know his work.
13778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then the beasts go into dens, and remain in their places.
13779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Out of the south cometh the whirlwind: and cold out of the north.
13780                                                                                                                                                                                                                                                                                                                                                                                                                                                                By the breath of God frost is given: and the breadth of the waters is straitened.
13781                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also by watering he wearieth the thick cloud: he scattereth his bright cloud:
13782                                                                                                                                                                                                                                                                                                                                                                                                            And it is turned round about by his counsels: that they may do whatsoever he commandeth them upon the face of the world in the earth.
13783                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He causeth it to come, whether for correction, or for his land, or for mercy.
13784                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hearken unto this, O Job: stand still, and consider the wondrous works of God.
13785                                                                                                                                                                                                                                                                                                                                                                                                                                                               Dost thou know when God disposed them, and caused the light of his cloud to shine?
13786                                                                                                                                                                                                                                                                                                                                                                                                                                            Dost thou know the balancings of the clouds, the wondrous works of him which is perfect in knowledge?
13787                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How thy garments are warm, when he quieteth the earth by the south wind?
13788                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hast thou with him spread out the sky, which is strong, and as a molten looking glass?
13789                                                                                                                                                                                                                                                                                                                                                                                                                                                       Teach us what we shall say unto him; for we cannot order our speech by reason of darkness.
13790                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shall it be told him that I speak? if a man speak, surely he shall be swallowed up.
13791                                                                                                                                                                                                                                                                                                                                                                                                                                           And now men see not the bright light which is in the clouds: but the wind passeth, and cleanseth them.
13792                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fair weather cometh out of the north: with God is terrible majesty.
13793                                                                                                                                                                                                                                                                                                                                                                                                         Touching the Almighty, we cannot find him out: he is excellent in power, and in judgment, and in plenty of justice: he will not afflict.
13794                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Men do therefore fear him: he respecteth not any that are wise of heart.
13795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then the LORD answered Job out of the whirlwind, and said,
13796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who is this that darkeneth counsel by words without knowledge?
13797                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Gird up now thy loins like a man; for I will demand of thee, and answer thou me.
13798                                                                                                                                                                                                                                                                                                                                                                                                                                                   Where wast thou when I laid the foundations of the earth? declare, if thou hast understanding.
13799                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who hath laid the measures thereof, if thou knowest? or who hath stretched the line upon it?
13800                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whereupon are the foundations thereof fastened? or who laid the corner stone thereof;
13801                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When the morning stars sang together, and all the sons of God shouted for joy?
13802                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or who shut up the sea with doors, when it brake forth, as if it had issued out of the womb?
13803                                                                                                                                                                                                                                                                                                                                                                                                                                                            When I made the cloud the garment thereof, and thick darkness a swaddlingband for it,
13804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And brake up for it my decreed place, and set bars and doors,
13805                                                                                                                                                                                                                                                                                                                                                                                                                                                    And said, Hitherto shalt thou come, but no further: and here shall thy proud waves be stayed?
13806                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hast thou commanded the morning since thy days; and caused the dayspring to know his place;
13807                                                                                                                                                                                                                                                                                                                                                                                                                                                     That it might take hold of the ends of the earth, that the wicked might be shaken out of it?
13808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is turned as clay to the seal; and they stand as a garment.
13809                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And from the wicked their light is withholden, and the high arm shall be broken.
13810                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hast thou entered into the springs of the sea? or hast thou walked in the search of the depth?
13811                                                                                                                                                                                                                                                                                                                                                                                                                                               Have the gates of death been opened unto thee? or hast thou seen the doors of the shadow of death?
13812                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hast thou perceived the breadth of the earth? declare if thou knowest it all.
13813                                                                                                                                                                                                                                                                                                                                                                                                                                                          Where is the way where light dwelleth? and as for darkness, where is the place thereof,
13814                                                                                                                                                                                                                                                                                                                                                                                                                                   That thou shouldest take it to the bound thereof, and that thou shouldest know the paths to the house thereof?
13815                                                                                                                                                                                                                                                                                                                                                                                                                                                        Knowest thou it, because thou wast then born? or because the number of thy days is great?
13816                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hast thou entered into the treasures of the snow? or hast thou seen the treasures of the hail,
13817                                                                                                                                                                                                                                                                                                                                                                                                                                                            Which I have reserved against the time of trouble, against the day of battle and war?
13818                                                                                                                                                                                                                                                                                                                                                                                                                                                                  By what way is the light parted, which scattereth the east wind upon the earth?
13819                                                                                                                                                                                                                                                                                                                                                                                                                                             Who hath divided a watercourse for the overflowing of waters, or a way for the lightning of thunder;
13820                                                                                                                                                                                                                                                                                                                                                                                                                                                   To cause it to rain on the earth, where no man is; on the wilderness, wherein there is no man;
13821                                                                                                                                                                                                                                                                                                                                                                                                                                               To satisfy the desolate and waste ground; and to cause the bud of the tender herb to spring forth?
13822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hath the rain a father? or who hath begotten the drops of dew?
13823                                                                                                                                                                                                                                                                                                                                                                                                                                                             Out of whose womb came the ice? and the hoary frost of heaven, who hath gendered it?
13824                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The waters are hid as with a stone, and the face of the deep is frozen.
13825                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Canst thou bind the sweet influences of Pleiades, or loose the bands of Orion?
13826                                                                                                                                                                                                                                                                                                                                                                                                                                                      Canst thou bring forth Mazzaroth in his season? or canst thou guide Arcturus with his sons?
13827                                                                                                                                                                                                                                                                                                                                                                                                                                                         Knowest thou the ordinances of heaven? canst thou set the dominion thereof in the earth?
13828                                                                                                                                                                                                                                                                                                                                                                                                                                                             Canst thou lift up thy voice to the clouds, that abundance of waters may cover thee?
13829                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Canst thou send lightnings, that they may go and say unto thee, Here we are?
13830                                                                                                                                                                                                                                                                                                                                                                                                                                                           Who hath put wisdom in the inward parts? or who hath given understanding to the heart?
13831                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Who can number the clouds in wisdom? or who can stay the bottles of heaven,
13832                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the dust groweth into hardness, and the clods cleave fast together?
13833                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wilt thou hunt the prey for the lion? or fill the appetite of the young lions,
13834                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When they couch in their dens, and abide in the covert to lie in wait?
13835                                                                                                                                                                                                                                                                                                                                                                                                                                            Who provideth for the raven his food? when his young ones cry unto God, they wander for lack of meat.
13836                                                                                                                                                                                                                                                                                                                                                                                                                                   Knowest thou the time when the wild goats of the rock bring forth? or canst thou mark when the hinds do calve?
13837                                                                                                                                                                                                                                                                                                                                                                                                                                                   Canst thou number the months that they fulfil? or knowest thou the time when they bring forth?
13838                                                                                                                                                                                                                                                                                                                                                                                                                                                             They bow themselves, they bring forth their young ones, they cast out their sorrows.
13839                                                                                                                                                                                                                                                                                                                                                                                                                                            Their young ones are in good liking, they grow up with corn; they go forth, and return not unto them.
13840                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who hath sent out the wild ass free? or who hath loosed the bands of the wild ass?
13841                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whose house I have made the wilderness, and the barren land his dwellings.
13842                                                                                                                                                                                                                                                                                                                                                                                                                                                            He scorneth the multitude of the city, neither regardeth he the crying of the driver.
13843                                                                                                                                                                                                                                                                                                                                                                                                                                                             The range of the mountains is his pasture, and he searcheth after every green thing.
13844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Will the unicorn be willing to serve thee, or abide by thy crib?
13845                                                                                                                                                                                                                                                                                                                                                                                                                                               Canst thou bind the unicorn with his band in the furrow? or will he harrow the valleys after thee?
13846                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wilt thou trust him, because his strength is great? or wilt thou leave thy labour to him?
13847                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wilt thou believe him, that he will bring home thy seed, and gather it into thy barn?
13848                                                                                                                                                                                                                                                                                                                                                                                                                                                          Gavest thou the goodly wings unto the peacocks? or wings and feathers unto the ostrich?
13849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Which leaveth her eggs in the earth, and warmeth them in dust,
13850                                                                                                                                                                                                                                                                                                                                                                                                                                                              And forgetteth that the foot may crush them, or that the wild beast may break them.
13851                                                                                                                                                                                                                                                                                                                                                                                                                                       She is hardened against her young ones, as though they were not her's: her labour is in vain without fear;
13852                                                                                                                                                                                                                                                                                                                                                                                                                                                          Because God hath deprived her of wisdom, neither hath he imparted to her understanding.
13853                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What time she lifteth up herself on high, she scorneth the horse and his rider.
13854                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hast thou given the horse strength? hast thou clothed his neck with thunder?
13855                                                                                                                                                                                                                                                                                                                                                                                                                                                              Canst thou make him afraid as a grasshopper? the glory of his nostrils is terrible.
13856                                                                                                                                                                                                                                                                                                                                                                                                                                                       He paweth in the valley, and rejoiceth in his strength: he goeth on to meet the armed men.
13857                                                                                                                                                                                                                                                                                                                                                                                                                                                               He mocketh at fear, and is not affrighted; neither turneth he back from the sword.
13858                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The quiver rattleth against him, the glittering spear and the shield.
13859                                                                                                                                                                                                                                                                                                                                                                                                                                     He swalloweth the ground with fierceness and rage: neither believeth he that it is the sound of the trumpet.
13860                                                                                                                                                                                                                                                                                                                                                                                                                         He saith among the trumpets, Ha, ha; and he smelleth the battle afar off, the thunder of the captains, and the shouting.
13861                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Doth the hawk fly by thy wisdom, and stretch her wings toward the south?
13862                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Doth the eagle mount up at thy command, and make her nest on high?
13863                                                                                                                                                                                                                                                                                                                                                                                                                                                           She dwelleth and abideth on the rock, upon the crag of the rock, and the strong place.
13864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  From thence she seeketh the prey, and her eyes behold afar off.
13865                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Her young ones also suck up blood: and where the slain are, there is she.
13866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Moreover the LORD answered Job, and said,
13867                                                                                                                                                                                                                                                                                                                                                                                                                                               Shall he that contendeth with the Almighty instruct him? he that reproveth God, let him answer it.
13868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Job answered the LORD, and said,
13869                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, I am vile; what shall I answer thee? I will lay mine hand upon my mouth.
13870                                                                                                                                                                                                                                                                                                                                                                                                                                                            Once have I spoken; but I will not answer: yea, twice; but I will proceed no further.
13871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then answered the LORD unto Job out of the whirlwind, and said,
13872                                                                                                                                                                                                                                                                                                                                                                                                                                                               Gird up thy loins now like a man: I will demand of thee, and declare thou unto me.
13873                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wilt thou also disannul my judgment? wilt thou condemn me, that thou mayest be righteous?
13874                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hast thou an arm like God? or canst thou thunder with a voice like him?
13875                                                                                                                                                                                                                                                                                                                                                                                                                                                           Deck thyself now with majesty and excellency; and array thyself with glory and beauty.
13876                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cast abroad the rage of thy wrath: and behold every one that is proud, and abase him.
13877                                                                                                                                                                                                                                                                                                                                                                                                                                                    Look on every one that is proud, and bring him low; and tread down the wicked in their place.
13878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hide them in the dust together; and bind their faces in secret.
13879                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then will I also confess unto thee that thine own right hand can save thee.
13880                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold now behemoth, which I made with thee; he eateth grass as an ox.
13881                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lo now, his strength is in his loins, and his force is in the navel of his belly.
13882                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He moveth his tail like a cedar: the sinews of his stones are wrapped together.
13883                                                                                                                                                                                                                                                                                                                                                                                                                                                                        His bones are as strong pieces of brass; his bones are like bars of iron.
13884                                                                                                                                                                                                                                                                                                                                                                                                                                                    He is the chief of the ways of God: he that made him can make his sword to approach unto him.
13885                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely the mountains bring him forth food, where all the beasts of the field play.
13886                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He lieth under the shady trees, in the covert of the reed, and fens.
13887                                                                                                                                                                                                                                                                                                                                                                                                                                                         The shady trees cover him with their shadow; the willows of the brook compass him about.
13888                                                                                                                                                                                                                                                                                                                                                                                                                                          Behold, he drinketh up a river, and hasteth not: he trusteth that he can draw up Jordan into his mouth.
13889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He taketh it with his eyes: his nose pierceth through snares.
13890                                                                                                                                                                                                                                                                                                                                                                                                                                                   Canst thou draw out leviathan with an hook? or his tongue with a cord which thou lettest down?
13891                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Canst thou put an hook into his nose? or bore his jaw through with a thorn?
13892                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Will he make many supplications unto thee? will he speak soft words unto thee?
13893                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Will he make a covenant with thee? wilt thou take him for a servant for ever?
13894                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wilt thou play with him as with a bird? or wilt thou bind him for thy maidens?
13895                                                                                                                                                                                                                                                                                                                                                                                                                                                             Shall the companions make a banquet of him? shall they part him among the merchants?
13896                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Canst thou fill his skin with barbed irons? or his head with fish spears?
13897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lay thine hand upon him, remember the battle, do no more.
13898                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, the hope of him is in vain: shall not one be cast down even at the sight of him?
13899                                                                                                                                                                                                                                                                                                                                                                                                                                                                    None is so fierce that dare stir him up: who then is able to stand before me?
13900                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who hath prevented me, that I should repay him? whatsoever is under the whole heaven is mine.
13901                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will not conceal his parts, nor his power, nor his comely proportion.
13902                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who can discover the face of his garment? or who can come to him with his double bridle?
13903                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Who can open the doors of his face? his teeth are terrible round about.
13904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 His scales are his pride, shut up together as with a close seal.
13905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    One is so near to another, that no air can come between them.
13906                                                                                                                                                                                                                                                                                                                                                                                                                                                               They are joined one to another, they stick together, that they cannot be sundered.
13907                                                                                                                                                                                                                                                                                                                                                                                                                                                            By his neesings a light doth shine, and his eyes are like the eyelids of the morning.
13908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Out of his mouth go burning lamps, and sparks of fire leap out.
13909                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Out of his nostrils goeth smoke, as out of a seething pot or caldron.
13910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   His breath kindleth coals, and a flame goeth out of his mouth.
13911                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In his neck remaineth strength, and sorrow is turned into joy before him.
13912                                                                                                                                                                                                                                                                                                                                                                                                                                                  The flakes of his flesh are joined together: they are firm in themselves; they cannot be moved.
13913                                                                                                                                                                                                                                                                                                                                                                                                                                                                His heart is as firm as a stone; yea, as hard as a piece of the nether millstone.
13914                                                                                                                                                                                                                                                                                                                                                                                                                                                When he raiseth up himself, the mighty are afraid: by reason of breakings they purify themselves.
13915                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sword of him that layeth at him cannot hold: the spear, the dart, nor the habergeon.
13916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He esteemeth iron as straw, and brass as rotten wood.
13917                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The arrow cannot make him flee: slingstones are turned with him into stubble.
13918                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Darts are counted as stubble: he laugheth at the shaking of a spear.
13919                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sharp stones are under him: he spreadeth sharp pointed things upon the mire.
13920                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He maketh the deep to boil like a pot: he maketh the sea like a pot of ointment.
13921                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He maketh a path to shine after him; one would think the deep to be hoary.
13922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Upon earth there is not his like, who is made without fear.
13923                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He beholdeth all high things: he is a king over all the children of pride.
13924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Job answered the LORD, and said,
13925                                                                                                                                                                                                                                                                                                                                                                                                                                                          I know that thou canst do every thing, and that no thought can be withholden from thee.
13926                                                                                                                                                                                                                                                                                                                                                                                                  Who is he that hideth counsel without knowledge? therefore have I uttered that I understood not; things too wonderful for me, which I knew not.
13927                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hear, I beseech thee, and I will speak: I will demand of thee, and declare thou unto me.
13928                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I have heard of thee by the hearing of the ear: but now mine eye seeth thee.
13929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wherefore I abhor myself, and repent in dust and ashes.
13930                                                                                                                                                                                                                                                                                          And it was so, that after the LORD had spoken these words unto Job, the LORD said to Eliphaz the Temanite, My wrath is kindled against thee, and against thy two friends: for ye have not spoken of me the thing that is right, as my servant Job hath.
13931                                                                                                                                                                                                                          Therefore take unto you now seven bullocks and seven rams, and go to my servant Job, and offer up for yourselves a burnt offering; and my servant Job shall pray for you: for him will I accept: lest I deal with you after your folly, in that ye have not spoken of me the thing which is right, like my servant Job.
13932                                                                                                                                                                                                                                                                                                                                                                                         So Eliphaz the Temanite and Bildad the Shuhite and Zophar the Naamathite went, and did according as the LORD commanded them: the LORD also accepted Job.
13933                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD turned the captivity of Job, when he prayed for his friends: also the LORD gave Job twice as much as he had before.
13934                                                                                                                                                                                                       Then came there unto him all his brethren, and all his sisters, and all they that had been of his acquaintance before, and did eat bread with him in his house: and they bemoaned him, and comforted him over all the evil that the LORD had brought upon him: every man also gave him a piece of money, and every one an earring of gold.
13935                                                                                                                                                                                                                                                                                                                                                           So the LORD blessed the latter end of Job more than his beginning: for he had fourteen thousand sheep, and six thousand camels, and a thousand yoke of oxen, and a thousand she asses.
13936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He had also seven sons and three daughters.
13937                                                                                                                                                                                                                                                                                                                                                                                                                         And he called the name of the first, Jemima; and the name of the second, Kezia; and the name of the third, Kerenhappuch.
13938                                                                                                                                                                                                                                                                                                                                                                                                            And in all the land were no women found so fair as the daughters of Job: and their father gave them inheritance among their brethren.
13939                                                                                                                                                                                                                                                                                                                                                                                                                                    After this lived Job an hundred and forty years, and saw his sons, and his sons' sons, even four generations.
13940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Job died, being old and full of days.
13941                                                                                                                                                                                                                                                                                                                                                                                                  Blessed is the man that walketh not in the counsel of the ungodly, nor standeth in the way of sinners, nor sitteth in the seat of the scornful.
13942                                                                                                                                                                                                                                                                                                                                                                                                                                                        But his delight is in the law of the LORD; and in his law doth he meditate day and night.
13943                                                                                                                                                                                                                                                                                                                                                                  And he shall be like a tree planted by the rivers of water, that bringeth forth his fruit in his season; his leaf also shall not wither; and whatsoever he doeth shall prosper.
13944                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ungodly are not so: but are like the chaff which the wind driveth away.
13945                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore the ungodly shall not stand in the judgment, nor sinners in the congregation of the righteous.
13946                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the LORD knoweth the way of the righteous: but the way of the ungodly shall perish.
13947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Why do the heathen rage, and the people imagine a vain thing?
13948                                                                                                                                                                                                                                                                                                                                                                                                                 The kings of the earth set themselves, and the rulers take counsel together, against the LORD, and against his anointed, saying,
13949                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let us break their bands asunder, and cast away their cords from us.
13950                                                                                                                                                                                                                                                                                                                                                                                                                                                                He that sitteth in the heavens shall laugh: the LORD shall have them in derision.
13951                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then shall he speak unto them in his wrath, and vex them in his sore displeasure.
13952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yet have I set my king upon my holy hill of Zion.
13953                                                                                                                                                                                                                                                                                                                                                                                                                                           I will declare the decree: the LORD hath said unto me, Thou art my Son; this day have I begotten thee.
13954                                                                                                                                                                                                                                                                                                                                                                                                                     Ask of me, and I shall give thee the heathen for thine inheritance, and the uttermost parts of the earth for thy possession.
13955                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt break them with a rod of iron; thou shalt dash them in pieces like a potter's vessel.
13956                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Be wise now therefore, O ye kings: be instructed, ye judges of the earth.
13957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Serve the LORD with fear, and rejoice with trembling.
13958                                                                                                                                                                                                                                                                                                                                                                                            Kiss the Son, lest he be angry, and ye perish from the way, when his wrath is kindled but a little. Blessed are all they that put their trust in him.
13959                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lord, how are they increased that trouble me! many are they that rise up against me.
13960                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Many there be which say of my soul, There is no help for him in God. Selah.
13961                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But thou, O LORD, art a shield for me; my glory, and the lifter up of mine head.
13962                                                                                                                                                                                                                                                                                                                                                                                                                                                                I cried unto the LORD with my voice, and he heard me out of his holy hill. Selah.
13963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I laid me down and slept; I awaked; for the LORD sustained me.
13964                                                                                                                                                                                                                                                                                                                                                                                                                                                I will not be afraid of ten thousands of people, that have set themselves against me round about.
13965                                                                                                                                                                                                                                                                                                                                                                                                         Arise, O LORD; save me, O my God: for thou hast smitten all mine enemies upon the cheek bone; thou hast broken the teeth of the ungodly.
13966                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Salvation belongeth unto the LORD: thy blessing is upon thy people. Selah.
13967                                                                                                                                                                                                                                                                                                                                                                                                            Hear me when I call, O God of my righteousness: thou hast enlarged me when I was in distress; have mercy upon me, and hear my prayer.
13968                                                                                                                                                                                                                                                                                                                                                                                                                        O ye sons of men, how long will ye turn my glory into shame? how long will ye love vanity, and seek after leasing? Selah.
13969                                                                                                                                                                                                                                                                                                                                                                                                                                    But know that the LORD hath set apart him that is godly for himself: the LORD will hear when I call unto him.
13970                                                                                                                                                                                                                                                                                                                                                                                                                                                       Stand in awe, and sin not: commune with your own heart upon your bed, and be still. Selah.
13971                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Offer the sacrifices of righteousness, and put your trust in the LORD.
13972                                                                                                                                                                                                                                                                                                                                                                                                                                      There be many that say, Who will shew us any good? LORD, lift thou up the light of thy countenance upon us.
13973                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou hast put gladness in my heart, more than in the time that their corn and their wine increased.
13974                                                                                                                                                                                                                                                                                                                                                                                                                                                     I will both lay me down in peace, and sleep: for thou, LORD, only makest me dwell in safety.
13975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Give ear to my words, O LORD, consider my meditation.
13976                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hearken unto the voice of my cry, my King, and my God: for unto thee will I pray.
13977                                                                                                                                                                                                                                                                                                                                                                                                                             My voice shalt thou hear in the morning, O LORD; in the morning will I direct my prayer unto thee, and will look up.
13978                                                                                                                                                                                                                                                                                                                                                                                                                                                     For thou art not a God that hath pleasure in wickedness: neither shall evil dwell with thee.
13979                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The foolish shall not stand in thy sight: thou hatest all workers of iniquity.
13980                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt destroy them that speak leasing: the LORD will abhor the bloody and deceitful man.
13981                                                                                                                                                                                                                                                                                                                                                                                                                  But as for me, I will come into thy house in the multitude of thy mercy: and in thy fear will I worship toward thy holy temple.
13982                                                                                                                                                                                                                                                                                                                                                                                                                                             Lead me, O LORD, in thy righteousness because of mine enemies; make thy way straight before my face.
13983                                                                                                                                                                                                                                                                                                                                                                                            For there is no faithfulness in their mouth; their inward part is very wickedness; their throat is an open sepulchre; they flatter with their tongue.
13984                                                                                                                                                                                                                                                                                                                                                                                      Destroy thou them, O God; let them fall by their own counsels; cast them out in the multitude of their transgressions; for they have rebelled against thee.
13985                                                                                                                                                                                                                                                                                                                                                                            But let all those that put their trust in thee rejoice: let them ever shout for joy, because thou defendest them: let them also that love thy name be joyful in thee.
13986                                                                                                                                                                                                                                                                                                                                                                                                                                                    For thou, LORD, wilt bless the righteous; with favour wilt thou compass him as with a shield.
13987                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O LORD, rebuke me not in thine anger, neither chasten me in thy hot displeasure.
13988                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have mercy upon me, O LORD; for I am weak: O LORD, heal me; for my bones are vexed.
13989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My soul is also sore vexed: but thou, O LORD, how long?
13990                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Return, O LORD, deliver my soul: oh save me for thy mercies' sake.
13991                                                                                                                                                                                                                                                                                                                                                                                                                                                           For in death there is no remembrance of thee: in the grave who shall give thee thanks?
13992                                                                                                                                                                                                                                                                                                                                                                                                                                                I am weary with my groaning; all the night make I my bed to swim; I water my couch with my tears.
13993                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mine eye is consumed because of grief; it waxeth old because of all mine enemies.
13994                                                                                                                                                                                                                                                                                                                                                                                                                                                     Depart from me, all ye workers of iniquity; for the LORD hath heard the voice of my weeping.
13995                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD hath heard my supplication; the LORD will receive my prayer.
13996                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let all mine enemies be ashamed and sore vexed: let them return and be ashamed suddenly.
13997                                                                                                                                                                                                                                                                                                                                                                                                                                               O LORD my God, in thee do I put my trust: save me from all them that persecute me, and deliver me:
13998                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lest he tear my soul like a lion, rending it in pieces, while there is none to deliver.
13999                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O LORD my God, If I have done this; if there be iniquity in my hands;
14000                                                                                                                                                                                                                                                                                                                                                                                                                        If I have rewarded evil unto him that was at peace with me; (yea, I have delivered him that without cause is mine enemy:)
14001                                                                                                                                                                                                                                                                                                                                                                                                            Let the enemy persecute my soul, and take it; yea, let him tread down my life upon the earth, and lay mine honour in the dust. Selah.
14002                                                                                                                                                                                                                                                                                                                                                                                                   Arise, O LORD, in thine anger, lift up thyself because of the rage of mine enemies: and awake for me to the judgment that thou hast commanded.
14003                                                                                                                                                                                                                                                                                                                                                                                                                                       So shall the congregation of the people compass thee about: for their sakes therefore return thou on high.
14004                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD shall judge the people: judge me, O LORD, according to my righteousness, and according to mine integrity that is in me.
14005                                                                                                                                                                                                                                                                                                                                                                                                                   Oh let the wickedness of the wicked come to an end; but establish the just: for the righteous God trieth the hearts and reins.
14006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         My defence is of God, which saveth the upright in heart.
14007                                                                                                                                                                                                                                                                                                                                                                                                                                                                           God judgeth the righteous, and God is angry with the wicked every day.
14008                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If he turn not, he will whet his sword; he hath bent his bow, and made it ready.
14009                                                                                                                                                                                                                                                                                                                                                                                                                                         He hath also prepared for him the instruments of death; he ordaineth his arrows against the persecutors.
14010                                                                                                                                                                                                                                                                                                                                                                                                                                                   Behold, he travaileth with iniquity, and hath conceived mischief, and brought forth falsehood.
14011                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He made a pit, and digged it, and is fallen into the ditch which he made.
14012                                                                                                                                                                                                                                                                                                                                                                                                                                          His mischief shall return upon his own head, and his violent dealing shall come down upon his own pate.
14013                                                                                                                                                                                                                                                                                                                                                                                                                                   I will praise the LORD according to his righteousness: and will sing praise to the name of the LORD most high.
14014                                                                                                                                                                                                                                                                                                                                                                                                                                          O LORD, our Lord, how excellent is thy name in all the earth! who hast set thy glory above the heavens.
14015                                                                                                                                                                                                                                                                                                                                                                                                Out of the mouth of babes and sucklings hast thou ordained strength because of thine enemies, that thou mightest still the enemy and the avenger.
14016                                                                                                                                                                                                                                                                                                                                                                                                                                          When I consider thy heavens, the work of thy fingers, the moon and the stars, which thou hast ordained;
14017                                                                                                                                                                                                                                                                                                                                                                                                                                                           What is man, that thou art mindful of him? and the son of man, that thou visitest him?
14018                                                                                                                                                                                                                                                                                                                                                                                                                                               For thou hast made him a little lower than the angels, and hast crowned him with glory and honour.
14019                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou madest him to have dominion over the works of thy hands; thou hast put all things under his feet:
14020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All sheep and oxen, yea, and the beasts of the field;
14021                                                                                                                                                                                                                                                                                                                                                                                                                                              The fowl of the air, and the fish of the sea, and whatsoever passeth through the paths of the seas.
14022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O LORD our Lord, how excellent is thy name in all the earth!
14023                                                                                                                                                                                                                                                                                                                                                                                                                                                     I will praise thee, O LORD, with my whole heart; I will shew forth all thy marvellous works.
14024                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will be glad and rejoice in thee: I will sing praise to thy name, O thou most High.
14025                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When mine enemies are turned back, they shall fall and perish at thy presence.
14026                                                                                                                                                                                                                                                                                                                                                                                                                                                         For thou hast maintained my right and my cause; thou satest in the throne judging right.
14027                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou hast rebuked the heathen, thou hast destroyed the wicked, thou hast put out their name for ever and ever.
14028                                                                                                                                                                                                                                                                                                                                                                                                                    O thou enemy, destructions are come to a perpetual end: and thou hast destroyed cities; their memorial is perished with them.
14029                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the LORD shall endure for ever: he hath prepared his throne for judgment.
14030                                                                                                                                                                                                                                                                                                                                                                                                                                          And he shall judge the world in righteousness, he shall minister judgment to the people in uprightness.
14031                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD also will be a refuge for the oppressed, a refuge in times of trouble.
14032                                                                                                                                                                                                                                                                                                                                                                                                                                 And they that know thy name will put their trust in thee: for thou, LORD, hast not forsaken them that seek thee.
14033                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sing praises to the LORD, which dwelleth in Zion: declare among the people his doings.
14034                                                                                                                                                                                                                                                                                                                                                                                                                                              When he maketh inquisition for blood, he remembereth them: he forgetteth not the cry of the humble.
14035                                                                                                                                                                                                                                                                                                                                                                                                            Have mercy upon me, O LORD; consider my trouble which I suffer of them that hate me, thou that liftest me up from the gates of death:
14036                                                                                                                                                                                                                                                                                                                                                                                                                                      That I may shew forth all thy praise in the gates of the daughter of Zion: I will rejoice in thy salvation.
14037                                                                                                                                                                                                                                                                                                                                                                                                                                          The heathen are sunk down in the pit that they made: in the net which they hid is their own foot taken.
14038                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD is known by the judgment which he executeth: the wicked is snared in the work of his own hands. Higgaion. Selah.
14039                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The wicked shall be turned into hell, and all the nations that forget God.
14040                                                                                                                                                                                                                                                                                                                                                                                                                                               For the needy shall not alway be forgotten: the expectation of the poor shall not perish for ever.
14041                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arise, O LORD; let not man prevail: let the heathen be judged in thy sight.
14042                                                                                                                                                                                                                                                                                                                                                                                                                                                             Put them in fear, O LORD: that the nations may know themselves to be but men. Selah.
14043                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Why standest thou afar off, O LORD? why hidest thou thyself in times of trouble?
14044                                                                                                                                                                                                                                                                                                                                                                                                                                       The wicked in his pride doth persecute the poor: let them be taken in the devices that they have imagined.
14045                                                                                                                                                                                                                                                                                                                                                                                                                                               For the wicked boasteth of his heart's desire, and blesseth the covetous, whom the LORD abhorreth.
14046                                                                                                                                                                                                                                                                                                                                                                                                                                       The wicked, through the pride of his countenance, will not seek after God: God is not in all his thoughts.
14047                                                                                                                                                                                                                                                                                                                                                                                                                          His ways are always grievous; thy judgments are far above out of his sight: as for all his enemies, he puffeth at them.
14048                                                                                                                                                                                                                                                                                                                                                                                                                                                              He hath said in his heart, I shall not be moved: for I shall never be in adversity.
14049                                                                                                                                                                                                                                                                                                                                                                                                                                                      His mouth is full of cursing and deceit and fraud: under his tongue is mischief and vanity.
14050                                                                                                                                                                                                                                                                                                                                                                                                   He sitteth in the lurking places of the villages: in the secret places doth he murder the innocent: his eyes are privily set against the poor.
14051                                                                                                                                                                                                                                                                                                                                                                                                    He lieth in wait secretly as a lion in his den: he lieth in wait to catch the poor: he doth catch the poor, when he draweth him into his net.
14052                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He croucheth, and humbleth himself, that the poor may fall by his strong ones.
14053                                                                                                                                                                                                                                                                                                                                                                                                                                                         He hath said in his heart, God hath forgotten: he hideth his face; he will never see it.
14054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Arise, O LORD; O God, lift up thine hand: forget not the humble.
14055                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore doth the wicked contemn God? he hath said in his heart, Thou wilt not require it.
14056                                                                                                                                                                                                                                                                                                                                                                             Thou hast seen it; for thou beholdest mischief and spite, to requite it with thy hand: the poor committeth himself unto thee; thou art the helper of the fatherless.
14057                                                                                                                                                                                                                                                                                                                                                                                                                                                  Break thou the arm of the wicked and the evil man: seek out his wickedness till thou find none.
14058                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD is King for ever and ever: the heathen are perished out of his land.
14059                                                                                                                                                                                                                                                                                                                                                                                                                                LORD, thou hast heard the desire of the humble: thou wilt prepare their heart, thou wilt cause thine ear to hear:
14060                                                                                                                                                                                                                                                                                                                                                                                                                                                        To judge the fatherless and the oppressed, that the man of the earth may no more oppress.
14061                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the LORD put I my trust: how say ye to my soul, Flee as a bird to your mountain?
14062                                                                                                                                                                                                                                                                                                                                                                                                            For, lo, the wicked bend their bow, they make ready their arrow upon the string, that they may privily shoot at the upright in heart.
14063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If the foundations be destroyed, what can the righteous do?
14064                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD is in his holy temple, the LORD's throne is in heaven: his eyes behold, his eyelids try, the children of men.
14065                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD trieth the righteous: but the wicked and him that loveth violence his soul hateth.
14066                                                                                                                                                                                                                                                                                                                                                                                                                       Upon the wicked he shall rain snares, fire and brimstone, and an horrible tempest: this shall be the portion of their cup.
14067                                                                                                                                                                                                                                                                                                                                                                                                                                                            For the righteous LORD loveth righteousness; his countenance doth behold the upright.
14068                                                                                                                                                                                                                                                                                                                                                                                                                                                     Help, LORD; for the godly man ceaseth; for the faithful fail from among the children of men.
14069                                                                                                                                                                                                                                                                                                                                                                                                                                      They speak vanity every one with his neighbour: with flattering lips and with a double heart do they speak.
14070                                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD shall cut off all flattering lips, and the tongue that speaketh proud things:
14071                                                                                                                                                                                                                                                                                                                                                                                                                                                       Who have said, With our tongue will we prevail; our lips are our own: who is lord over us?
14072                                                                                                                                                                                                                                                                                                                                                                                           For the oppression of the poor, for the sighing of the needy, now will I arise, saith the LORD; I will set him in safety from him that puffeth at him.
14073                                                                                                                                                                                                                                                                                                                                                                                                                                               The words of the LORD are pure words: as silver tried in a furnace of earth, purified seven times.
14074                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt keep them, O LORD, thou shalt preserve them from this generation for ever.
14075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The wicked walk on every side, when the vilest men are exalted.
14076                                                                                                                                                                                                                                                                                                                                                                                                                                                        How long wilt thou forget me, O LORD? for ever? how long wilt thou hide thy face from me?
14077                                                                                                                                                                                                                                                                                                                                                                                                                         How long shall I take counsel in my soul, having sorrow in my heart daily? how long shall mine enemy be exalted over me?
14078                                                                                                                                                                                                                                                                                                                                                                                                                                                         Consider and hear me, O LORD my God: lighten mine eyes, lest I sleep the sleep of death;
14079                                                                                                                                                                                                                                                                                                                                                                                                                                            Lest mine enemy say, I have prevailed against him; and those that trouble me rejoice when I am moved.
14080                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But I have trusted in thy mercy; my heart shall rejoice in thy salvation.
14081                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will sing unto the LORD, because he hath dealt bountifully with me.
14082                                                                                                                                                                                                                                                                                                                                                                                                              The fool hath said in his heart, There is no God. They are corrupt, they have done abominable works, there is none that doeth good.
14083                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD looked down from heaven upon the children of men, to see if there were any that did understand, and seek God.
14084                                                                                                                                                                                                                                                                                                                                                                                                                                        They are all gone aside, they are all together become filthy: there is none that doeth good, no, not one.
14085                                                                                                                                                                                                                                                                                                                                                                                                                               Have all the workers of iniquity no knowledge? who eat up my people as they eat bread, and call not upon the LORD.
14086                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There were they in great fear: for God is in the generation of the righteous.
14087                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye have shamed the counsel of the poor, because the LORD is his refuge.
14088                                                                                                                                                                                                                                                                                                                                                                                   Oh that the salvation of Israel were come out of Zion! when the LORD bringeth back the captivity of his people, Jacob shall rejoice, and Israel shall be glad.
14089                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Lord, who shall abide in thy tabernacle? who shall dwell in thy holy hill?
14090                                                                                                                                                                                                                                                                                                                                                                                                                                                       He that walketh uprightly, and worketh righteousness, and speaketh the truth in his heart.
14091                                                                                                                                                                                                                                                                                                                                                                                                                         He that backbiteth not with his tongue, nor doeth evil to his neighbour, nor taketh up a reproach against his neighbour.
14092                                                                                                                                                                                                                                                                                                                                                                                                          In whose eyes a vile person is contemned; but he honoureth them that fear the LORD. He that sweareth to his own hurt, and changeth not.
14093                                                                                                                                                                                                                                                                                                                                                                                                             He that putteth not out his money to usury, nor taketh reward against the innocent. He that doeth these things shall never be moved.
14094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Preserve me, O God: for in thee do I put my trust.
14095                                                                                                                                                                                                                                                                                                                                                                                                                                                    O my soul, thou hast said unto the LORD, Thou art my Lord: my goodness extendeth not to thee;
14096                                                                                                                                                                                                                                                                                                                                                                                                                                                        But to the saints that are in the earth, and to the excellent, in whom is all my delight.
14097                                                                                                                                                                                                                                                                                                                                                                                          Their sorrows shall be multiplied that hasten after another god: their drink offerings of blood will I not offer, nor take up their names into my lips.
14098                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD is the portion of mine inheritance and of my cup: thou maintainest my lot.
14099                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The lines are fallen unto me in pleasant places; yea, I have a goodly heritage.
14100                                                                                                                                                                                                                                                                                                                                                                                                                                                I will bless the LORD, who hath given me counsel: my reins also instruct me in the night seasons.
14101                                                                                                                                                                                                                                                                                                                                                                                                                                                      I have set the LORD always before me: because he is at my right hand, I shall not be moved.
14102                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore my heart is glad, and my glory rejoiceth: my flesh also shall rest in hope.
14103                                                                                                                                                                                                                                                                                                                                                                                                                                              For thou wilt not leave my soul in hell; neither wilt thou suffer thine Holy One to see corruption.
14104                                                                                                                                                                                                                                                                                                                                                                                                                       Thou wilt shew me the path of life: in thy presence is fulness of joy; at thy right hand there are pleasures for evermore.
14105                                                                                                                                                                                                                                                                                                                                                                                                                                         Hear the right, O LORD, attend unto my cry, give ear unto my prayer, that goeth not out of feigned lips.
14106                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let my sentence come forth from thy presence; let thine eyes behold the things that are equal.
14107                                                                                                                                                                                                                                                                                                                                                                                    Thou hast proved mine heart; thou hast visited me in the night; thou hast tried me, and shalt find nothing; I am purposed that my mouth shall not transgress.
14108                                                                                                                                                                                                                                                                                                                                                                                                                                             Concerning the works of men, by the word of thy lips I have kept me from the paths of the destroyer.
14109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hold up my goings in thy paths, that my footsteps slip not.
14110                                                                                                                                                                                                                                                                                                                                                                                                                                            I have called upon thee, for thou wilt hear me, O God: incline thine ear unto me, and hear my speech.
14111                                                                                                                                                                                                                                                                                                                                                                                                Shew thy marvellous lovingkindness, O thou that savest by thy right hand them which put their trust in thee from those that rise up against them.
14112                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Keep me as the apple of the eye, hide me under the shadow of thy wings,
14113                                                                                                                                                                                                                                                                                                                                                                                                                                                                   From the wicked that oppress me, from my deadly enemies, who compass me about.
14114                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They are inclosed in their own fat: with their mouth they speak proudly.
14115                                                                                                                                                                                                                                                                                                                                                                                                                                                      They have now compassed us in our steps: they have set their eyes bowing down to the earth;
14116                                                                                                                                                                                                                                                                                                                                                                                                                                                 Like as a lion that is greedy of his prey, and as it were a young lion lurking in secret places.
14117                                                                                                                                                                                                                                                                                                                                                                                                                                               Arise, O LORD, disappoint him, cast him down: deliver my soul from the wicked, which is thy sword:
14118                                                                                                                                                                                                                                                                                                          From men which are thy hand, O LORD, from men of the world, which have their portion in this life, and whose belly thou fillest with thy hid treasure: they are full of children, and leave the rest of their substance to their babes.
14119                                                                                                                                                                                                                                                                                                                                                                                                                                       As for me, I will behold thy face in righteousness: I shall be satisfied, when I awake, with thy likeness.
14120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will love thee, O LORD, my strength.
14121                                                                                                                                                                                                                                                                                                                                                                                  The LORD is my rock, and my fortress, and my deliverer; my God, my strength, in whom I will trust; my buckler, and the horn of my salvation, and my high tower.
14122                                                                                                                                                                                                                                                                                                                                                                                                                                                   I will call upon the LORD, who is worthy to be praised: so shall I be saved from mine enemies.
14123                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The sorrows of death compassed me, and the floods of ungodly men made me afraid.
14124                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The sorrows of hell compassed me about: the snares of death prevented me.
14125                                                                                                                                                                                                                                                                                                                                                                                               In my distress I called upon the LORD, and cried unto my God: he heard my voice out of his temple, and my cry came before him, even into his ears.
14126                                                                                                                                                                                                                                                                                                                                                                                                                                Then the earth shook and trembled; the foundations also of the hills moved and were shaken, because he was wroth.
14127                                                                                                                                                                                                                                                                                                                                                                                                                                         There went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it.
14128                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He bowed the heavens also, and came down: and darkness was under his feet.
14129                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he rode upon a cherub, and did fly: yea, he did fly upon the wings of the wind.
14130                                                                                                                                                                                                                                                                                                                                                                                                                                  He made darkness his secret place; his pavilion round about him were dark waters and thick clouds of the skies.
14131                                                                                                                                                                                                                                                                                                                                                                                                                                                    At the brightness that was before him his thick clouds passed, hail stones and coals of fire.
14132                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD also thundered in the heavens, and the Highest gave his voice; hail stones and coals of fire.
14133                                                                                                                                                                                                                                                                                                                                                                                                                                               Yea, he sent out his arrows, and scattered them; and he shot out lightnings, and discomfited them.
14134                                                                                                                                                                                                                                                                                                                                                                                       Then the channels of waters were seen, and the foundations of the world were discovered at thy rebuke, O LORD, at the blast of the breath of thy nostrils.
14135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He sent from above, he took me, he drew me out of many waters.
14136                                                                                                                                                                                                                                                                                                                                                                                                                                             He delivered me from my strong enemy, and from them which hated me: for they were too strong for me.
14137                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They prevented me in the day of my calamity: but the LORD was my stay.
14138                                                                                                                                                                                                                                                                                                                                                                                                                                                        He brought me forth also into a large place; he delivered me, because he delighted in me.
14139                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD rewarded me according to my righteousness; according to the cleanness of my hands hath he recompensed me.
14140                                                                                                                                                                                                                                                                                                                                                                                                                                                                For I have kept the ways of the LORD, and have not wickedly departed from my God.
14141                                                                                                                                                                                                                                                                                                                                                                                                                                                               For all his judgments were before me, and I did not put away his statutes from me.
14142                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I was also upright before him, and I kept myself from mine iniquity.
14143                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore hath the LORD recompensed me according to my righteousness, according to the cleanness of my hands in his eyesight.
14144                                                                                                                                                                                                                                                                                                                                                                                                                                           With the merciful thou wilt shew thyself merciful; with an upright man thou wilt shew thyself upright;
14145                                                                                                                                                                                                                                                                                                                                                                                                                                                  With the pure thou wilt shew thyself pure; and with the froward thou wilt shew thyself froward.
14146                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For thou wilt save the afflicted people; but wilt bring down high looks.
14147                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For thou wilt light my candle: the LORD my God will enlighten my darkness.
14148                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For by thee I have run through a troop; and by my God have I leaped over a wall.
14149                                                                                                                                                                                                                                                                                                                                                                                                                                   As for God, his way is perfect: the word of the LORD is tried: he is a buckler to all those that trust in him.
14150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For who is God save the LORD? or who is a rock save our God?
14151                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is God that girdeth me with strength, and maketh my way perfect.
14152                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He maketh my feet like hinds' feet, and setteth me upon my high places.
14153                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He teacheth my hands to war, so that a bow of steel is broken by mine arms.
14154                                                                                                                                                                                                                                                                                                                                                                                                                Thou hast also given me the shield of thy salvation: and thy right hand hath holden me up, and thy gentleness hath made me great.
14155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou hast enlarged my steps under me, that my feet did not slip.
14156                                                                                                                                                                                                                                                                                                                                                                                                                                               I have pursued mine enemies, and overtaken them: neither did I turn again till they were consumed.
14157                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have wounded them that they were not able to rise: they are fallen under my feet.
14158                                                                                                                                                                                                                                                                                                                                                                                                                                 For thou hast girded me with strength unto the battle: thou hast subdued under me those that rose up against me.
14159                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast also given me the necks of mine enemies; that I might destroy them that hate me.
14160                                                                                                                                                                                                                                                                                                                                                                                                                                                       They cried, but there was none to save them: even unto the LORD, but he answered them not.
14161                                                                                                                                                                                                                                                                                                                                                                                                                                          Then did I beat them small as the dust before the wind: I did cast them out as the dirt in the streets.
14162                                                                                                                                                                                                                                                                                                                                                                                           Thou hast delivered me from the strivings of the people; and thou hast made me the head of the heathen: a people whom I have not known shall serve me.
14163                                                                                                                                                                                                                                                                                                                                                                                                                                                   As soon as they hear of me, they shall obey me: the strangers shall submit themselves unto me.
14164                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The strangers shall fade away, and be afraid out of their close places.
14165                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD liveth; and blessed be my rock; and let the God of my salvation be exalted.
14166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is God that avengeth me, and subdueth the people under me.
14167                                                                                                                                                                                                                                                                                                                                                                                                    He delivereth me from mine enemies: yea, thou liftest me up above those that rise up against me: thou hast delivered me from the violent man.
14168                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore will I give thanks unto thee, O LORD, among the heathen, and sing praises unto thy name.
14169                                                                                                                                                                                                                                                                                                                                                                                                                              Great deliverance giveth he to his king; and sheweth mercy to his anointed, to David, and to his seed for evermore.
14170                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The heavens declare the glory of God; and the firmament sheweth his handywork.
14171                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Day unto day uttereth speech, and night unto night sheweth knowledge.
14172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There is no speech nor language, where their voice is not heard.
14173                                                                                                                                                                                                                                                                                                                                                                                                             Their line is gone out through all the earth, and their words to the end of the world. In them hath he set a tabernacle for the sun,
14174                                                                                                                                                                                                                                                                                                                                                                                                                                                 Which is as a bridegroom coming out of his chamber, and rejoiceth as a strong man to run a race.
14175                                                                                                                                                                                                                                                                                                                                                                                                              His going forth is from the end of the heaven, and his circuit unto the ends of it: and there is nothing hid from the heat thereof.
14176                                                                                                                                                                                                                                                                                                                                                                                                                                  The law of the LORD is perfect, converting the soul: the testimony of the LORD is sure, making wise the simple.
14177                                                                                                                                                                                                                                                                                                                                                                                                                             The statutes of the LORD are right, rejoicing the heart: the commandment of the LORD is pure, enlightening the eyes.
14178                                                                                                                                                                                                                                                                                                                                                                                                                                   The fear of the LORD is clean, enduring for ever: the judgments of the LORD are true and righteous altogether.
14179                                                                                                                                                                                                                                                                                                                                                                                                                                      More to be desired are they than gold, yea, than much fine gold: sweeter also than honey and the honeycomb.
14180                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moreover by them is thy servant warned: and in keeping of them there is great reward.
14181                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who can understand his errors? cleanse thou me from secret faults.
14182                                                                                                                                                                                                                                                                                                                                                                            Keep back thy servant also from presumptuous sins; let them not have dominion over me: then shall I be upright, and I shall be innocent from the great transgression.
14183                                                                                                                                                                                                                                                                                                                                                                                                                     Let the words of my mouth, and the meditation of my heart, be acceptable in thy sight, O LORD, my strength, and my redeemer.
14184                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD hear thee in the day of trouble; the name of the God of Jacob defend thee;
14185                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Send thee help from the sanctuary, and strengthen thee out of Zion;
14186                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Remember all thy offerings, and accept thy burnt sacrifice; Selah.
14187                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Grant thee according to thine own heart, and fulfil all thy counsel.
14188                                                                                                                                                                                                                                                                                                                                                                                                                      We will rejoice in thy salvation, and in the name of our God we will set up our banners: the LORD fulfil all thy petitions.
14189                                                                                                                                                                                                                                                                                                                                                                                                                  Now know I that the LORD saveth his anointed; he will hear him from his holy heaven with the saving strength of his right hand.
14190                                                                                                                                                                                                                                                                                                                                                                                                                                                   Some trust in chariots, and some in horses: but we will remember the name of the LORD our God.
14191                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They are brought down and fallen: but we are risen, and stand upright.
14192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Save, LORD: let the king hear us when we call.
14193                                                                                                                                                                                                                                                                                                                                                                                                                                                   The king shall joy in thy strength, O LORD; and in thy salvation how greatly shall he rejoice!
14194                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou hast given him his heart's desire, and hast not withholden the request of his lips. Selah.
14195                                                                                                                                                                                                                                                                                                                                                                                                                                           For thou preventest him with the blessings of goodness: thou settest a crown of pure gold on his head.
14196                                                                                                                                                                                                                                                                                                                                                                                                                                                            He asked life of thee, and thou gavest it him, even length of days for ever and ever.
14197                                                                                                                                                                                                                                                                                                                                                                                                                                                                 His glory is great in thy salvation: honour and majesty hast thou laid upon him.
14198                                                                                                                                                                                                                                                                                                                                                                                                                                            For thou hast made him most blessed for ever: thou hast made him exceeding glad with thy countenance.
14199                                                                                                                                                                                                                                                                                                                                                                                                                                                 For the king trusteth in the LORD, and through the mercy of the most High he shall not be moved.
14200                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thine hand shall find out all thine enemies: thy right hand shall find out those that hate thee.
14201                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt make them as a fiery oven in the time of thine anger: the LORD shall swallow them up in his wrath, and the fire shall devour them.
14202                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their fruit shalt thou destroy from the earth, and their seed from among the children of men.
14203                                                                                                                                                                                                                                                                                                                                                                                                                                     For they intended evil against thee: they imagined a mischievous device, which they are not able to perform.
14204                                                                                                                                                                                                                                                                                                                                                                                                               Therefore shalt thou make them turn their back, when thou shalt make ready thine arrows upon thy strings against the face of them.
14205                                                                                                                                                                                                                                                                                                                                                                                                                                                              Be thou exalted, LORD, in thine own strength: so will we sing and praise thy power.
14206                                                                                                                                                                                                                                                                                                                                                                                                                                My God, my God, why hast thou forsaken me? why art thou so far from helping me, and from the words of my roaring?
14207                                                                                                                                                                                                                                                                                                                                                                                                                                               O my God, I cry in the day time, but thou hearest not; and in the night season, and am not silent.
14208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But thou art holy, O thou that inhabitest the praises of Israel.
14209                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our fathers trusted in thee: they trusted, and thou didst deliver them.
14210                                                                                                                                                                                                                                                                                                                                                                                                                                                         They cried unto thee, and were delivered: they trusted in thee, and were not confounded.
14211                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But I am a worm, and no man; a reproach of men, and despised of the people.
14212                                                                                                                                                                                                                                                                                                                                                                                                                                                     All they that see me laugh me to scorn: they shoot out the lip, they shake the head, saying,
14213                                                                                                                                                                                                                                                                                                                                                                                                                                               He trusted on the LORD that he would deliver him: let him deliver him, seeing he delighted in him.
14214                                                                                                                                                                                                                                                                                                                                                                                                                                       But thou art he that took me out of the womb: thou didst make me hope when I was upon my mother's breasts.
14215                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I was cast upon thee from the womb: thou art my God from my mother's belly.
14216                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Be not far from me; for trouble is near; for there is none to help.
14217                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Many bulls have compassed me: strong bulls of Bashan have beset me round.
14218                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They gaped upon me with their mouths, as a ravening and a roaring lion.
14219                                                                                                                                                                                                                                                                                                                                                                                                                     I am poured out like water, and all my bones are out of joint: my heart is like wax; it is melted in the midst of my bowels.
14220                                                                                                                                                                                                                                                                                                                                                                                                                     My strength is dried up like a potsherd; and my tongue cleaveth to my jaws; and thou hast brought me into the dust of death.
14221                                                                                                                                                                                                                                                                                                                                                                                                                                      For dogs have compassed me: the assembly of the wicked have inclosed me: they pierced my hands and my feet.
14222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I may tell all my bones: they look and stare upon me.
14223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They part my garments among them, and cast lots upon my vesture.
14224                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But be not thou far from me, O LORD: O my strength, haste thee to help me.
14225                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deliver my soul from the sword; my darling from the power of the dog.
14226                                                                                                                                                                                                                                                                                                                                                                                                                                                            Save me from the lion's mouth: for thou hast heard me from the horns of the unicorns.
14227                                                                                                                                                                                                                                                                                                                                                                                                                                                   I will declare thy name unto my brethren: in the midst of the congregation will I praise thee.
14228                                                                                                                                                                                                                                                                                                                                                                                                                               Ye that fear the LORD, praise him; all ye the seed of Jacob, glorify him; and fear him, all ye the seed of Israel.
14229                                                                                                                                                                                                                                                                                                                                                                                              For he hath not despised nor abhorred the affliction of the afflicted; neither hath he hid his face from him; but when he cried unto him, he heard.
14230                                                                                                                                                                                                                                                                                                                                                                                                                                              My praise shall be of thee in the great congregation: I will pay my vows before them that fear him.
14231                                                                                                                                                                                                                                                                                                                                                                                                                                   The meek shall eat and be satisfied: they shall praise the LORD that seek him: your heart shall live for ever.
14232                                                                                                                                                                                                                                                                                                                                                                                                                  All the ends of the world shall remember and turn unto the LORD: and all the kindreds of the nations shall worship before thee.
14233                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For the kingdom is the LORD's: and he is the governor among the nations.
14234                                                                                                                                                                                                                                                                                                                                                                                             All they that be fat upon earth shall eat and worship: all they that go down to the dust shall bow before him: and none can keep alive his own soul.
14235                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A seed shall serve him; it shall be accounted to the Lord for a generation.
14236                                                                                                                                                                                                                                                                                                                                                                                                                                   They shall come, and shall declare his righteousness unto a people that shall be born, that he hath done this.
14237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD is my shepherd; I shall not want.
14238                                                                                                                                                                                                                                                                                                                                                                                                                                                               He maketh me to lie down in green pastures: he leadeth me beside the still waters.
14239                                                                                                                                                                                                                                                                                                                                                                                                                                                           He restoreth my soul: he leadeth me in the paths of righteousness for his name's sake.
14240                                                                                                                                                                                                                                                                                                                                                                                                  Yea, though I walk through the valley of the shadow of death, I will fear no evil: for thou art with me; thy rod and thy staff they comfort me.
14241                                                                                                                                                                                                                                                                                                                                                                                                                          Thou preparest a table before me in the presence of mine enemies: thou anointest my head with oil; my cup runneth over.
14242                                                                                                                                                                                                                                                                                                                                                                                                                           Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the LORD for ever.
14243                                                                                                                                                                                                                                                                                                                                                                                                                                                        The earth is the LORD's, and the fulness thereof; the world, and they that dwell therein.
14244                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For he hath founded it upon the seas, and established it upon the floods.
14245                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who shall ascend into the hill of the LORD? or who shall stand in his holy place?
14246                                                                                                                                                                                                                                                                                                                                                                                                                                  He that hath clean hands, and a pure heart; who hath not lifted up his soul unto vanity, nor sworn deceitfully.
14247                                                                                                                                                                                                                                                                                                                                                                                                                                                    He shall receive the blessing from the LORD, and righteousness from the God of his salvation.
14248                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is the generation of them that seek him, that seek thy face, O Jacob. Selah.
14249                                                                                                                                                                                                                                                                                                                                                                                                                                    Lift up your heads, O ye gates; and be ye lift up, ye everlasting doors; and the King of glory shall come in.
14250                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who is this King of glory? The LORD strong and mighty, the LORD mighty in battle.
14251                                                                                                                                                                                                                                                                                                                                                                                                                                    Lift up your heads, O ye gates; even lift them up, ye everlasting doors; and the King of glory shall come in.
14252                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who is this King of glory? The LORD of hosts, he is the King of glory. Selah.
14253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Unto thee, O LORD, do I lift up my soul.
14254                                                                                                                                                                                                                                                                                                                                                                                                                                                          O my God, I trust in thee: let me not be ashamed, let not mine enemies triumph over me.
14255                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yea, let none that wait on thee be ashamed: let them be ashamed which transgress without cause.
14256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Shew me thy ways, O LORD; teach me thy paths.
14257                                                                                                                                                                                                                                                                                                                                                                                                                                         Lead me in thy truth, and teach me: for thou art the God of my salvation; on thee do I wait all the day.
14258                                                                                                                                                                                                                                                                                                                                                                                                                                                   Remember, O LORD, thy tender mercies and thy lovingkindnesses; for they have been ever of old.
14259                                                                                                                                                                                                                                                                                                                                                                                                                Remember not the sins of my youth, nor my transgressions: according to thy mercy remember thou me for thy goodness' sake, O LORD.
14260                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Good and upright is the LORD: therefore will he teach sinners in the way.
14261                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The meek will he guide in judgment: and the meek will he teach his way.
14262                                                                                                                                                                                                                                                                                                                                                                                                                                                All the paths of the LORD are mercy and truth unto such as keep his covenant and his testimonies.
14263                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For thy name's sake, O LORD, pardon mine iniquity; for it is great.
14264                                                                                                                                                                                                                                                                                                                                                                                                                                                        What man is he that feareth the LORD? him shall he teach in the way that he shall choose.
14265                                                                                                                                                                                                                                                                                                                                                                                                                                                                              His soul shall dwell at ease; and his seed shall inherit the earth.
14266                                                                                                                                                                                                                                                                                                                                                                                                                                                           The secret of the LORD is with them that fear him; and he will shew them his covenant.
14267                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Mine eyes are ever toward the LORD; for he shall pluck my feet out of the net.
14268                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Turn thee unto me, and have mercy upon me; for I am desolate and afflicted.
14269                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The troubles of my heart are enlarged: O bring thou me out of my distresses.
14270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Look upon mine affliction and my pain; and forgive all my sins.
14271                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Consider mine enemies; for they are many; and they hate me with cruel hatred.
14272                                                                                                                                                                                                                                                                                                                                                                                                                                                               O keep my soul, and deliver me: let me not be ashamed; for I put my trust in thee.
14273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let integrity and uprightness preserve me; for I wait on thee.
14274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Redeem Israel, O God, out of all his troubles.
14275                                                                                                                                                                                                                                                                                                                                                                                                                             Judge me, O LORD; for I have walked in mine integrity: I have trusted also in the LORD; therefore I shall not slide.
14276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Examine me, O LORD, and prove me; try my reins and my heart.
14277                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For thy lovingkindness is before mine eyes: and I have walked in thy truth.
14278                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have not sat with vain persons, neither will I go in with dissemblers.
14279                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have hated the congregation of evil doers; and will not sit with the wicked.
14280                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will wash mine hands in innocency: so will I compass thine altar, O LORD:
14281                                                                                                                                                                                                                                                                                                                                                                                                                                                           That I may publish with the voice of thanksgiving, and tell of all thy wondrous works.
14282                                                                                                                                                                                                                                                                                                                                                                                                                                                       LORD, I have loved the habitation of thy house, and the place where thine honour dwelleth.
14283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gather not my soul with sinners, nor my life with bloody men:
14284                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In whose hands is mischief, and their right hand is full of bribes.
14285                                                                                                                                                                                                                                                                                                                                                                                                                                                                But as for me, I will walk in mine integrity: redeem me, and be merciful unto me.
14286                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My foot standeth in an even place: in the congregations will I bless the LORD.
14287                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD is my light and my salvation; whom shall I fear? the LORD is the strength of my life; of whom shall I be afraid?
14288                                                                                                                                                                                                                                                                                                                                                                                                                                         When the wicked, even mine enemies and my foes, came upon me to eat up my flesh, they stumbled and fell.
14289                                                                                                                                                                                                                                                                                                                                                                                                                Though an host should encamp against me, my heart shall not fear: though war should rise against me, in this will I be confident.
14290                                                                                                                                                                                                                                                                                                                                                 One thing have I desired of the LORD, that will I seek after; that I may dwell in the house of the LORD all the days of my life, to behold the beauty of the LORD, and to enquire in his temple.
14291                                                                                                                                                                                                                                                                                                                                                                                                   For in the time of trouble he shall hide me in his pavilion: in the secret of his tabernacle shall he hide me; he shall set me up upon a rock.
14292                                                                                                                                                                                                                                                                                                                                                         And now shall mine head be lifted up above mine enemies round about me: therefore will I offer in his tabernacle sacrifices of joy; I will sing, yea, I will sing praises unto the LORD.
14293                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hear, O LORD, when I cry with my voice: have mercy also upon me, and answer me.
14294                                                                                                                                                                                                                                                                                                                                                                                                                                                         When thou saidst, Seek ye my face; my heart said unto thee, Thy face, LORD, will I seek.
14295                                                                                                                                                                                                                                                                                                                                                                                               Hide not thy face far from me; put not thy servant away in anger: thou hast been my help; leave me not, neither forsake me, O God of my salvation.
14296                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When my father and my mother forsake me, then the LORD will take me up.
14297                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Teach me thy way, O LORD, and lead me in a plain path, because of mine enemies.
14298                                                                                                                                                                                                                                                                                                                                                                                                                 Deliver me not over unto the will of mine enemies: for false witnesses are risen up against me, and such as breathe out cruelty.
14299                                                                                                                                                                                                                                                                                                                                                                                                                                                  I had fainted, unless I had believed to see the goodness of the LORD in the land of the living.
14300                                                                                                                                                                                                                                                                                                                                                                                                                                             Wait on the LORD: be of good courage, and he shall strengthen thine heart: wait, I say, on the LORD.
14301                                                                                                                                                                                                                                                                                                                                                                                                          Unto thee will I cry, O LORD my rock; be not silent to me: lest, if thou be silent to me, I become like them that go down into the pit.
14302                                                                                                                                                                                                                                                                                                                                                                                                                                        Hear the voice of my supplications, when I cry unto thee, when I lift up my hands toward thy holy oracle.
14303                                                                                                                                                                                                                                                                                                                                                                                                      Draw me not away with the wicked, and with the workers of iniquity, which speak peace to their neighbours, but mischief is in their hearts.
14304                                                                                                                                                                                                                                                                                                                                                                                   Give them according to their deeds, and according to the wickedness of their endeavours: give them after the work of their hands; render to them their desert.
14305                                                                                                                                                                                                                                                                                                                                                                                                                     Because they regard not the works of the LORD, nor the operation of his hands, he shall destroy them, and not build them up.
14306                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Blessed be the LORD, because he hath heard the voice of my supplications.
14307                                                                                                                                                                                                                                                                                                                                                                                       The LORD is my strength and my shield; my heart trusted in him, and I am helped: therefore my heart greatly rejoiceth; and with my song will I praise him.
14308                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD is their strength, and he is the saving strength of his anointed.
14309                                                                                                                                                                                                                                                                                                                                                                                                                                                         Save thy people, and bless thine inheritance: feed them also, and lift them up for ever.
14310                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give unto the LORD, O ye mighty, give unto the LORD glory and strength.
14311                                                                                                                                                                                                                                                                                                                                                                                                                                                      Give unto the LORD the glory due unto his name; worship the LORD in the beauty of holiness.
14312                                                                                                                                                                                                                                                                                                                                                                                                                                             The voice of the LORD is upon the waters: the God of glory thundereth: the LORD is upon many waters.
14313                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The voice of the LORD is powerful; the voice of the LORD is full of majesty.
14314                                                                                                                                                                                                                                                                                                                                                                                                                                                         The voice of the LORD breaketh the cedars; yea, the LORD breaketh the cedars of Lebanon.
14315                                                                                                                                                                                                                                                                                                                                                                                                                                                                He maketh them also to skip like a calf; Lebanon and Sirion like a young unicorn.
14316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The voice of the LORD divideth the flames of fire.
14317                                                                                                                                                                                                                                                                                                                                                                                                                                                         The voice of the LORD shaketh the wilderness; the LORD shaketh the wilderness of Kadesh.
14318                                                                                                                                                                                                                                                                                                                                                                                                               The voice of the LORD maketh the hinds to calve, and discovereth the forests: and in his temple doth every one speak of his glory.
14319                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD sitteth upon the flood; yea, the LORD sitteth King for ever.
14320                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD will give strength unto his people; the LORD will bless his people with peace.
14321                                                                                                                                                                                                                                                                                                                                                                                                                                             I will extol thee, O LORD; for thou hast lifted me up, and hast not made my foes to rejoice over me.
14322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O LORD my God, I cried unto thee, and thou hast healed me.
14323                                                                                                                                                                                                                                                                                                                                                                                                                              O LORD, thou hast brought up my soul from the grave: thou hast kept me alive, that I should not go down to the pit.
14324                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sing unto the LORD, O ye saints of his, and give thanks at the remembrance of his holiness.
14325                                                                                                                                                                                                                                                                                                                                                                                                                       For his anger endureth but a moment; in his favour is life: weeping may endure for a night, but joy cometh in the morning.
14326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And in my prosperity I said, I shall never be moved.
14327                                                                                                                                                                                                                                                                                                                                                                                                                                    LORD, by thy favour thou hast made my mountain to stand strong: thou didst hide thy face, and I was troubled.
14328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I cried to thee, O LORD; and unto the LORD I made supplication.
14329                                                                                                                                                                                                                                                                                                                                                                                                                             What profit is there in my blood, when I go down to the pit? Shall the dust praise thee? shall it declare thy truth?
14330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hear, O LORD, and have mercy upon me: LORD, be thou my helper.
14331                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou hast turned for me my mourning into dancing: thou hast put off my sackcloth, and girded me with gladness;
14332                                                                                                                                                                                                                                                                                                                                                                                                                       To the end that my glory may sing praise to thee, and not be silent. O LORD my God, I will give thanks unto thee for ever.
14333                                                                                                                                                                                                                                                                                                                                                                                                                                                    In thee, O LORD, do I put my trust; let me never be ashamed: deliver me in thy righteousness.
14334                                                                                                                                                                                                                                                                                                                                                                                                                                       Bow down thine ear to me; deliver me speedily: be thou my strong rock, for an house of defence to save me.
14335                                                                                                                                                                                                                                                                                                                                                                                                                                                       For thou art my rock and my fortress; therefore for thy name's sake lead me, and guide me.
14336                                                                                                                                                                                                                                                                                                                                                                                                                                                             Pull me out of the net that they have laid privily for me: for thou art my strength.
14337                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Into thine hand I commit my spirit: thou hast redeemed me, O LORD God of truth.
14338                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I have hated them that regard lying vanities: but I trust in the LORD.
14339                                                                                                                                                                                                                                                                                                                                                                                                                            I will be glad and rejoice in thy mercy: for thou hast considered my trouble; thou hast known my soul in adversities;
14340                                                                                                                                                                                                                                                                                                                                                                                                                                                       And hast not shut me up into the hand of the enemy: thou hast set my feet in a large room.
14341                                                                                                                                                                                                                                                                                                                                                                                                                                     Have mercy upon me, O LORD, for I am in trouble: mine eye is consumed with grief, yea, my soul and my belly.
14342                                                                                                                                                                                                                                                                                                                                                                                                             For my life is spent with grief, and my years with sighing: my strength faileth because of mine iniquity, and my bones are consumed.
14343                                                                                                                                                                                                                                                                                                                                                                                         I was a reproach among all mine enemies, but especially among my neighbours, and a fear to mine acquaintance: they that did see me without fled from me.
14344                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am forgotten as a dead man out of mind: I am like a broken vessel.
14345                                                                                                                                                                                                                                                                                                                                                                                                    For I have heard the slander of many: fear was on every side: while they took counsel together against me, they devised to take away my life.
14346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But I trusted in thee, O LORD: I said, Thou art my God.
14347                                                                                                                                                                                                                                                                                                                                                                                                                                             My times are in thy hand: deliver me from the hand of mine enemies, and from them that persecute me.
14348                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make thy face to shine upon thy servant: save me for thy mercies' sake.
14349                                                                                                                                                                                                                                                                                                                                                                                                                      Let me not be ashamed, O LORD; for I have called upon thee: let the wicked be ashamed, and let them be silent in the grave.
14350                                                                                                                                                                                                                                                                                                                                                                                                                              Let the lying lips be put to silence; which speak grievous things proudly and contemptuously against the righteous.
14351                                                                                                                                                                                                                                                                                                                                                                                       Oh how great is thy goodness, which thou hast laid up for them that fear thee; which thou hast wrought for them that trust in thee before the sons of men!
14352                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt hide them in the secret of thy presence from the pride of man: thou shalt keep them secretly in a pavilion from the strife of tongues.
14353                                                                                                                                                                                                                                                                                                                                                                                                                                                             Blessed be the LORD: for he hath shewed me his marvellous kindness in a strong city.
14354                                                                                                                                                                                                                                                                                                                                                                                                    For I said in my haste, I am cut off from before thine eyes: nevertheless thou heardest the voice of my supplications when I cried unto thee.
14355                                                                                                                                                                                                                                                                                                                                                                                                                              O love the LORD, all ye his saints: for the LORD preserveth the faithful, and plentifully rewardeth the proud doer.
14356                                                                                                                                                                                                                                                                                                                                                                                                                                                            Be of good courage, and he shall strengthen your heart, all ye that hope in the LORD.
14357                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Blessed is he whose transgression is forgiven, whose sin is covered.
14358                                                                                                                                                                                                                                                                                                                                                                                                                                              Blessed is the man unto whom the LORD imputeth not iniquity, and in whose spirit there is no guile.
14359                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When I kept silence, my bones waxed old through my roaring all the day long.
14360                                                                                                                                                                                                                                                                                                                                                                                                                                           For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah.
14361                                                                                                                                                                                                                                                                                                                                                                      I acknowledge my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the LORD; and thou forgavest the iniquity of my sin. Selah.
14362                                                                                                                                                                                                                                                                                                                                                                               For this shall every one that is godly pray unto thee in a time when thou mayest be found: surely in the floods of great waters they shall not come nigh unto him.
14363                                                                                                                                                                                                                                                                                                                                                                                                                     Thou art my hiding place; thou shalt preserve me from trouble; thou shalt compass me about with songs of deliverance. Selah.
14364                                                                                                                                                                                                                                                                                                                                                                                                                                             I will instruct thee and teach thee in the way which thou shalt go: I will guide thee with mine eye.
14365                                                                                                                                                                                                                                                                                                                                                                                             Be ye not as the horse, or as the mule, which have no understanding: whose mouth must be held in with bit and bridle, lest they come near unto thee.
14366                                                                                                                                                                                                                                                                                                                                                                                                                                            Many sorrows shall be to the wicked: but he that trusteth in the LORD, mercy shall compass him about.
14367                                                                                                                                                                                                                                                                                                                                                                                                                                             Be glad in the LORD, and rejoice, ye righteous: and shout for joy, all ye that are upright in heart.
14368                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Rejoice in the LORD, O ye righteous: for praise is comely for the upright.
14369                                                                                                                                                                                                                                                                                                                                                                                                                                                     Praise the LORD with harp: sing unto him with the psaltery and an instrument of ten strings.
14370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sing unto him a new song; play skilfully with a loud noise.
14371                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the word of the LORD is right; and all his works are done in truth.
14372                                                                                                                                                                                                                                                                                                                                                                                                                                                             He loveth righteousness and judgment: the earth is full of the goodness of the LORD.
14373                                                                                                                                                                                                                                                                                                                                                                                                                                              By the word of the LORD were the heavens made; and all the host of them by the breath of his mouth.
14374                                                                                                                                                                                                                                                                                                                                                                                                                                                   He gathereth the waters of the sea together as an heap: he layeth up the depth in storehouses.
14375                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let all the earth fear the LORD: let all the inhabitants of the world stand in awe of him.
14376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For he spake, and it was done; he commanded, and it stood fast.
14377                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD bringeth the counsel of the heathen to nought: he maketh the devices of the people of none effect.
14378                                                                                                                                                                                                                                                                                                                                                                                                                                                         The counsel of the LORD standeth for ever, the thoughts of his heart to all generations.
14379                                                                                                                                                                                                                                                                                                                                                                                                                                         Blessed is the nation whose God is the LORD; and the people whom he hath chosen for his own inheritance.
14380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD looketh from heaven; he beholdeth all the sons of men.
14381                                                                                                                                                                                                                                                                                                                                                                                                                                                               From the place of his habitation he looketh upon all the inhabitants of the earth.
14382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He fashioneth their hearts alike; he considereth all their works.
14383                                                                                                                                                                                                                                                                                                                                                                                                                                              There is no king saved by the multitude of an host: a mighty man is not delivered by much strength.
14384                                                                                                                                                                                                                                                                                                                                                                                                                                                         An horse is a vain thing for safety: neither shall he deliver any by his great strength.
14385                                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold, the eye of the LORD is upon them that fear him, upon them that hope in his mercy;
14386                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To deliver their soul from death, and to keep them alive in famine.
14387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Our soul waiteth for the LORD: he is our help and our shield.
14388                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For our heart shall rejoice in him, because we have trusted in his holy name.
14389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let thy mercy, O LORD, be upon us, according as we hope in thee.
14390                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I will bless the LORD at all times: his praise shall continually be in my mouth.
14391                                                                                                                                                                                                                                                                                                                                                                                                                                                            My soul shall make her boast in the LORD: the humble shall hear thereof, and be glad.
14392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O magnify the LORD with me, and let us exalt his name together.
14393                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I sought the LORD, and he heard me, and delivered me from all my fears.
14394                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They looked unto him, and were lightened: and their faces were not ashamed.
14395                                                                                                                                                                                                                                                                                                                                                                                                                                                              This poor man cried, and the LORD heard him, and saved him out of all his troubles.
14396                                                                                                                                                                                                                                                                                                                                                                                                                                                             The angel of the LORD encampeth round about them that fear him, and delivereth them.
14397                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O taste and see that the LORD is good: blessed is the man that trusteth in him.
14398                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O fear the LORD, ye his saints: for there is no want to them that fear him.
14399                                                                                                                                                                                                                                                                                                                                                                                                                                           The young lions do lack, and suffer hunger: but they that seek the LORD shall not want any good thing.
14400                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Come, ye children, hearken unto me: I will teach you the fear of the LORD.
14401                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What man is he that desireth life, and loveth many days, that he may see good?
14402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Keep thy tongue from evil, and thy lips from speaking guile.
14403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Depart from evil, and do good; seek peace, and pursue it.
14404                                                                                                                                                                                                                                                                                                                                                                                                                                                               The eyes of the LORD are upon the righteous, and his ears are open unto their cry.
14405                                                                                                                                                                                                                                                                                                                                                                                                                                            The face of the LORD is against them that do evil, to cut off the remembrance of them from the earth.
14406                                                                                                                                                                                                                                                                                                                                                                                                                                                          The righteous cry, and the LORD heareth, and delivereth them out of all their troubles.
14407                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD is nigh unto them that are of a broken heart; and saveth such as be of a contrite spirit.
14408                                                                                                                                                                                                                                                                                                                                                                                                                                                          Many are the afflictions of the righteous: but the LORD delivereth him out of them all.
14409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He keepeth all his bones: not one of them is broken.
14410                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Evil shall slay the wicked: and they that hate the righteous shall be desolate.
14411                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD redeemeth the soul of his servants: and none of them that trust in him shall be desolate.
14412                                                                                                                                                                                                                                                                                                                                                                                                                                                 Plead my cause, O LORD, with them that strive with me: fight against them that fight against me.
14413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Take hold of shield and buckler, and stand up for mine help.
14414                                                                                                                                                                                                                                                                                                                                                                                                                                  Draw out also the spear, and stop the way against them that persecute me: say unto my soul, I am thy salvation.
14415                                                                                                                                                                                                                                                                                                                                                                                                           Let them be confounded and put to shame that seek after my soul: let them be turned back and brought to confusion that devise my hurt.
14416                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let them be as chaff before the wind: and let the angel of the LORD chase them.
14417                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let their way be dark and slippery: and let the angel of the LORD persecute them.
14418                                                                                                                                                                                                                                                                                                                                                                                                                                     For without cause have they hid for me their net in a pit, which without cause they have digged for my soul.
14419                                                                                                                                                                                                                                                                                                                                                                                                              Let destruction come upon him at unawares; and let his net that he hath hid catch himself: into that very destruction let him fall.
14420                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And my soul shall be joyful in the LORD: it shall rejoice in his salvation.
14421                                                                                                                                                                                                                                                                                                                                                                      All my bones shall say, LORD, who is like unto thee, which deliverest the poor from him that is too strong for him, yea, the poor and the needy from him that spoileth him?
14422                                                                                                                                                                                                                                                                                                                                                                                                                                                                      False witnesses did rise up; they laid to my charge things that I knew not.
14423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They rewarded me evil for good to the spoiling of my soul.
14424                                                                                                                                                                                                                                                                                                                                                                                                       But as for me, when they were sick, my clothing was sackcloth: I humbled my soul with fasting; and my prayer returned into mine own bosom.
14425                                                                                                                                                                                                                                                                                                                                                                                                                          I behaved myself as though he had been my friend or brother: I bowed down heavily, as one that mourneth for his mother.
14426                                                                                                                                                                                                                                                                                                                                                            But in mine adversity they rejoiced, and gathered themselves together: yea, the abjects gathered themselves together against me, and I knew it not; they did tear me, and ceased not:
14427                                                                                                                                                                                                                                                                                                                                                                                                                                                                      With hypocritical mockers in feasts, they gnashed upon me with their teeth.
14428                                                                                                                                                                                                                                                                                                                                                                                                                                             Lord, how long wilt thou look on? rescue my soul from their destructions, my darling from the lions.
14429                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will give thee thanks in the great congregation: I will praise thee among much people.
14430                                                                                                                                                                                                                                                                                                                                                                                                                  Let not them that are mine enemies wrongfully rejoice over me: neither let them wink with the eye that hate me without a cause.
14431                                                                                                                                                                                                                                                                                                                                                                                                                                             For they speak not peace: but they devise deceitful matters against them that are quiet in the land.
14432                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yea, they opened their mouth wide against me, and said, Aha, aha, our eye hath seen it.
14433                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This thou hast seen, O LORD: keep not silence: O Lord, be not far from me.
14434                                                                                                                                                                                                                                                                                                                                                                                                                                                               Stir up thyself, and awake to my judgment, even unto my cause, my God and my Lord.
14435                                                                                                                                                                                                                                                                                                                                                                                                                                                       Judge me, O LORD my God, according to thy righteousness; and let them not rejoice over me.
14436                                                                                                                                                                                                                                                                                                                                                                                                                                           Let them not say in their hearts, Ah, so would we have it: let them not say, We have swallowed him up.
14437                                                                                                                                                                                                                                                                                                                                                                                Let them be ashamed and brought to confusion together that rejoice at mine hurt: let them be clothed with shame and dishonour that magnify themselves against me.
14438                                                                                                                                                                                                                                                                                                                                                             Let them shout for joy, and be glad, that favour my righteous cause: yea, let them say continually, Let the LORD be magnified, which hath pleasure in the prosperity of his servant.
14439                                                                                                                                                                                                                                                                                                                                                                                                                                                               And my tongue shall speak of thy righteousness and of thy praise all the day long.
14440                                                                                                                                                                                                                                                                                                                                                                                                                                             The transgression of the wicked saith within my heart, that there is no fear of God before his eyes.
14441                                                                                                                                                                                                                                                                                                                                                                                                                                                            For he flattereth himself in his own eyes, until his iniquity be found to be hateful.
14442                                                                                                                                                                                                                                                                                                                                                                                                                                                     The words of his mouth are iniquity and deceit: he hath left off to be wise, and to do good.
14443                                                                                                                                                                                                                                                                                                                                                                                                                                          He deviseth mischief upon his bed; he setteth himself in a way that is not good; he abhorreth not evil.
14444                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thy mercy, O LORD, is in the heavens; and thy faithfulness reacheth unto the clouds.
14445                                                                                                                                                                                                                                                                                                                                                                                                                            Thy righteousness is like the great mountains; thy judgments are a great deep: O LORD, thou preservest man and beast.
14446                                                                                                                                                                                                                                                                                                                                                                                                                         How excellent is thy lovingkindness, O God! therefore the children of men put their trust under the shadow of thy wings.
14447                                                                                                                                                                                                                                                                                                                                                                                                                  They shall be abundantly satisfied with the fatness of thy house; and thou shalt make them drink of the river of thy pleasures.
14448                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For with thee is the fountain of life: in thy light shall we see light.
14449                                                                                                                                                                                                                                                                                                                                                                                                                                           O continue thy lovingkindness unto them that know thee; and thy righteousness to the upright in heart.
14450                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let not the foot of pride come against me, and let not the hand of the wicked remove me.
14451                                                                                                                                                                                                                                                                                                                                                                                                                                                     There are the workers of iniquity fallen: they are cast down, and shall not be able to rise.
14452                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fret not thyself because of evildoers, neither be thou envious against the workers of iniquity.
14453                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For they shall soon be cut down like the grass, and wither as the green herb.
14454                                                                                                                                                                                                                                                                                                                                                                                                                                                   Trust in the LORD, and do good; so shalt thou dwell in the land, and verily thou shalt be fed.
14455                                                                                                                                                                                                                                                                                                                                                                                                                                                             Delight thyself also in the LORD: and he shall give thee the desires of thine heart.
14456                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Commit thy way unto the LORD; trust also in him; and he shall bring it to pass.
14457                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall bring forth thy righteousness as the light, and thy judgment as the noonday.
14458                                                                                                                                                                                                                                                                                                                                                                                 Rest in the LORD, and wait patiently for him: fret not thyself because of him who prospereth in his way, because of the man who bringeth wicked devices to pass.
14459                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cease from anger, and forsake wrath: fret not thyself in any wise to do evil.
14460                                                                                                                                                                                                                                                                                                                                                                                                                                                 For evildoers shall be cut off: but those that wait upon the LORD, they shall inherit the earth.
14461                                                                                                                                                                                                                                                                                                                                                                                                                         For yet a little while, and the wicked shall not be: yea, thou shalt diligently consider his place, and it shall not be.
14462                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the meek shall inherit the earth; and shall delight themselves in the abundance of peace.
14463                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The wicked plotteth against the just, and gnasheth upon him with his teeth.
14464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD shall laugh at him: for he seeth that his day is coming.
14465                                                                                                                                                                                                                                                                                                                                                                                                   The wicked have drawn out the sword, and have bent their bow, to cast down the poor and needy, and to slay such as be of upright conversation.
14466                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their sword shall enter into their own heart, and their bows shall be broken.
14467                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A little that a righteous man hath is better than the riches of many wicked.
14468                                                                                                                                                                                                                                                                                                                                                                                                                                                                For the arms of the wicked shall be broken: but the LORD upholdeth the righteous.
14469                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD knoweth the days of the upright: and their inheritance shall be for ever.
14470                                                                                                                                                                                                                                                                                                                                                                                                                                                   They shall not be ashamed in the evil time: and in the days of famine they shall be satisfied.
14471                                                                                                                                                                                                                                                                                                                                                                                                   But the wicked shall perish, and the enemies of the LORD shall be as the fat of lambs: they shall consume; into smoke shall they consume away.
14472                                                                                                                                                                                                                                                                                                                                                                                                                                                         The wicked borroweth, and payeth not again: but the righteous sheweth mercy, and giveth.
14473                                                                                                                                                                                                                                                                                                                                                                                                                                          For such as be blessed of him shall inherit the earth; and they that be cursed of him shall be cut off.
14474                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The steps of a good man are ordered by the LORD: and he delighteth in his way.
14475                                                                                                                                                                                                                                                                                                                                                                                                                                                     Though he fall, he shall not be utterly cast down: for the LORD upholdeth him with his hand.
14476                                                                                                                                                                                                                                                                                                                                                                                                                                       I have been young, and now am old; yet have I not seen the righteous forsaken, nor his seed begging bread.
14477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is ever merciful, and lendeth; and his seed is blessed.
14478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Depart from evil, and do good; and dwell for evermore.
14479                                                                                                                                                                                                                                                                                                                                                                                                            For the LORD loveth judgment, and forsaketh not his saints; they are preserved for ever: but the seed of the wicked shall be cut off.
14480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The righteous shall inherit the land, and dwell therein for ever.
14481                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The mouth of the righteous speaketh wisdom, and his tongue talketh of judgment.
14482                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The law of his God is in his heart; none of his steps shall slide.
14483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The wicked watcheth the righteous, and seeketh to slay him.
14484                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD will not leave him in his hand, nor condemn him when he is judged.
14485                                                                                                                                                                                                                                                                                                                                                                                                                 Wait on the LORD, and keep his way, and he shall exalt thee to inherit the land: when the wicked are cut off, thou shalt see it.
14486                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have seen the wicked in great power, and spreading himself like a green bay tree.
14487                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet he passed away, and, lo, he was not: yea, I sought him, but he could not be found.
14488                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mark the perfect man, and behold the upright: for the end of that man is peace.
14489                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the transgressors shall be destroyed together: the end of the wicked shall be cut off.
14490                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the salvation of the righteous is of the LORD: he is their strength in the time of trouble.
14491                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD shall help them, and deliver them: he shall deliver them from the wicked, and save them, because they trust in him.
14492                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O lord, rebuke me not in thy wrath: neither chasten me in thy hot displeasure.
14493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For thine arrows stick fast in me, and thy hand presseth me sore.
14494                                                                                                                                                                                                                                                                                                                                                                                                                               There is no soundness in my flesh because of thine anger; neither is there any rest in my bones because of my sin.
14495                                                                                                                                                                                                                                                                                                                                                                                                                                                       For mine iniquities are gone over mine head: as an heavy burden they are too heavy for me.
14496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My wounds stink and are corrupt because of my foolishness.
14497                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I am troubled; I am bowed down greatly; I go mourning all the day long.
14498                                                                                                                                                                                                                                                                                                                                                                                                                                                         For my loins are filled with a loathsome disease: and there is no soundness in my flesh.
14499                                                                                                                                                                                                                                                                                                                                                                                                                                                            I am feeble and sore broken: I have roared by reason of the disquietness of my heart.
14500                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lord, all my desire is before thee; and my groaning is not hid from thee.
14501                                                                                                                                                                                                                                                                                                                                                                                                                                                My heart panteth, my strength faileth me: as for the light of mine eyes, it also is gone from me.
14502                                                                                                                                                                                                                                                                                                                                                                                                                                                                My lovers and my friends stand aloof from my sore; and my kinsmen stand afar off.
14503                                                                                                                                                                                                                                                                                                                                                                                                  They also that seek after my life lay snares for me: and they that seek my hurt speak mischievous things, and imagine deceits all the day long.
14504                                                                                                                                                                                                                                                                                                                                                                                                                                                             But I, as a deaf man, heard not; and I was as a dumb man that openeth not his mouth.
14505                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus I was as a man that heareth not, and in whose mouth are no reproofs.
14506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For in thee, O LORD, do I hope: thou wilt hear, O Lord my God.
14507                                                                                                                                                                                                                                                                                                                                                                                                                      For I said, Hear me, lest otherwise they should rejoice over me: when my foot slippeth, they magnify themselves against me.
14508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For I am ready to halt, and my sorrow is continually before me.
14509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I will declare mine iniquity; I will be sorry for my sin.
14510                                                                                                                                                                                                                                                                                                                                                                                                                                               But mine enemies are lively, and they are strong: and they that hate me wrongfully are multiplied.
14511                                                                                                                                                                                                                                                                                                                                                                                                                                               They also that render evil for good are mine adversaries; because I follow the thing that good is.
14512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forsake me not, O LORD: O my God, be not far from me.
14513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make haste to help me, O Lord my salvation.
14514                                                                                                                                                                                                                                                                                                                                                                                                           I said, I will take heed to my ways, that I sin not with my tongue: I will keep my mouth with a bridle, while the wicked is before me.
14515                                                                                                                                                                                                                                                                                                                                                                                                                                                             I was dumb with silence, I held my peace, even from good; and my sorrow was stirred.
14516                                                                                                                                                                                                                                                                                                                                                                                                                                                     My heart was hot within me, while I was musing the fire burned: then spake I with my tongue,
14517                                                                                                                                                                                                                                                                                                                                                                                                                                          LORD, make me to know mine end, and the measure of my days, what it is: that I may know how frail I am.
14518                                                                                                                                                                                                                                                                                                                                                                                        Behold, thou hast made my days as an handbreadth; and mine age is as nothing before thee: verily every man at his best state is altogether vanity. Selah.
14519                                                                                                                                                                                                                                                                                                                                                                                                        Surely every man walketh in a vain shew: surely they are disquieted in vain: he heapeth up riches, and knoweth not who shall gather them.
14520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And now, Lord, what wait I for? my hope is in thee.
14521                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deliver me from all my transgressions: make me not the reproach of the foolish.
14522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I was dumb, I opened not my mouth; because thou didst it.
14523                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Remove thy stroke away from me: I am consumed by the blow of thine hand.
14524                                                                                                                                                                                                                                                                                                                                                                                                     When thou with rebukes dost correct man for iniquity, thou makest his beauty to consume away like a moth: surely every man is vanity. Selah.
14525                                                                                                                                                                                                                                                                                                                                                                                        Hear my prayer, O LORD, and give ear unto my cry; hold not thy peace at my tears: for I am a stranger with thee, and a sojourner, as all my fathers were.
14526                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O spare me, that I may recover strength, before I go hence, and be no more.
14527                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I waited patiently for the LORD; and he inclined unto me, and heard my cry.
14528                                                                                                                                                                                                                                                                                                                                                                                                                      He brought me up also out of an horrible pit, out of the miry clay, and set my feet upon a rock, and established my goings.
14529                                                                                                                                                                                                                                                                                                                                                                                                                      And he hath put a new song in my mouth, even praise unto our God: many shall see it, and fear, and shall trust in the LORD.
14530                                                                                                                                                                                                                                                                                                                                                                                                                                Blessed is that man that maketh the LORD his trust, and respecteth not the proud, nor such as turn aside to lies.
14531                                                                                                                                                                                                                                                                                                               Many, O LORD my God, are thy wonderful works which thou hast done, and thy thoughts which are to us-ward: they cannot be reckoned up in order unto thee: if I would declare and speak of them, they are more than can be numbered.
14532                                                                                                                                                                                                                                                                                                                                                                                                                Sacrifice and offering thou didst not desire; mine ears hast thou opened: burnt offering and sin offering hast thou not required.
14533                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said I, Lo, I come: in the volume of the book it is written of me,
14534                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I delight to do thy will, O my God: yea, thy law is within my heart.
14535                                                                                                                                                                                                                                                                                                                                                                                                                                 I have preached righteousness in the great congregation: lo, I have not refrained my lips, O LORD, thou knowest.
14536                                                                                                                                                                                                                                                                                                                                                         I have not hid thy righteousness within my heart; I have declared thy faithfulness and thy salvation: I have not concealed thy lovingkindness and thy truth from the great congregation.
14537                                                                                                                                                                                                                                                                                                                                                                                                                              Withhold not thou thy tender mercies from me, O LORD: let thy lovingkindness and thy truth continually preserve me.
14538                                                                                                                                                                                                                                                                                                                                              For innumerable evils have compassed me about: mine iniquities have taken hold upon me, so that I am not able to look up; they are more than the hairs of mine head: therefore my heart faileth me.
14539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Be pleased, O LORD, to deliver me: O LORD, make haste to help me.
14540                                                                                                                                                                                                                                                                                                                                                                                               Let them be ashamed and confounded together that seek after my soul to destroy it; let them be driven backward and put to shame that wish me evil.
14541                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let them be desolate for a reward of their shame that say unto me, Aha, aha.
14542                                                                                                                                                                                                                                                                                                                                                                                                                 Let all those that seek thee rejoice and be glad in thee: let such as love thy salvation say continually, The LORD be magnified.
14543                                                                                                                                                                                                                                                                                                                                                                                                                           But I am poor and needy; yet the Lord thinketh upon me: thou art my help and my deliverer; make no tarrying, O my God.
14544                                                                                                                                                                                                                                                                                                                                                                                                                                                           Blessed is he that considereth the poor: the LORD will deliver him in time of trouble.
14545                                                                                                                                                                                                                                                                                                                                                                                              The LORD will preserve him, and keep him alive; and he shall be blessed upon the earth: and thou wilt not deliver him unto the will of his enemies.
14546                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD will strengthen him upon the bed of languishing: thou wilt make all his bed in his sickness.
14547                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I said, LORD, be merciful unto me: heal my soul; for I have sinned against thee.
14548                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Mine enemies speak evil of me, When shall he die, and his name perish?
14549                                                                                                                                                                                                                                                                                                                                                                                                                       And if he come to see me, he speaketh vanity: his heart gathereth iniquity to itself; when he goeth abroad, he telleth it.
14550                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All that hate me whisper together against me: against me do they devise my hurt.
14551                                                                                                                                                                                                                                                                                                                                                                                                                                               An evil disease, say they, cleaveth fast unto him: and now that he lieth he shall rise up no more.
14552                                                                                                                                                                                                                                                                                                                                                                                                                                 Yea, mine own familiar friend, in whom I trusted, which did eat of my bread, hath lifted up his heel against me.
14553                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But thou, O LORD, be merciful unto me, and raise me up, that I may requite them.
14554                                                                                                                                                                                                                                                                                                                                                                                                                                                              By this I know that thou favourest me, because mine enemy doth not triumph over me.
14555                                                                                                                                                                                                                                                                                                                                                                                                                                                     And as for me, thou upholdest me in mine integrity, and settest me before thy face for ever.
14556                                                                                                                                                                                                                                                                                                                                                                                                                                                          Blessed be the LORD God of Israel from everlasting, and to everlasting. Amen, and Amen.
14557                                                                                                                                                                                                                                                                                                                                                                                                                                                                As the hart panteth after the water brooks, so panteth my soul after thee, O God.
14558                                                                                                                                                                                                                                                                                                                                                                                                                                                          My soul thirsteth for God, for the living God: when shall I come and appear before God?
14559                                                                                                                                                                                                                                                                                                                                                                                                                                                  My tears have been my meat day and night, while they continually say unto me, Where is thy God?
14560                                                                                                                                                                                                                                                                                                                                           When I remember these things, I pour out my soul in me: for I had gone with the multitude, I went with them to the house of God, with the voice of joy and praise, with a multitude that kept holyday.
14561                                                                                                                                                                                                                                                                                                                                                                                              Why art thou cast down, O my soul? and why art thou disquieted in me? hope thou in God: for I shall yet praise him for the help of his countenance.
14562                                                                                                                                                                                                                                                                                                                                                                                                    O my God, my soul is cast down within me: therefore will I remember thee from the land of Jordan, and of the Hermonites, from the hill Mizar.
14563                                                                                                                                                                                                                                                                                                                                                                                                                                          Deep calleth unto deep at the noise of thy waterspouts: all thy waves and thy billows are gone over me.
14564                                                                                                                                                                                                                                                                                                                                                                                                 Yet the LORD will command his lovingkindness in the day time, and in the night his song shall be with me, and my prayer unto the God of my life.
14565                                                                                                                                                                                                                                                                                                                                                                                                                               I will say unto God my rock, Why hast thou forgotten me? why go I mourning because of the oppression of the enemy?
14566                                                                                                                                                                                                                                                                                                                                                                                                                                           As with a sword in my bones, mine enemies reproach me; while they say daily unto me, Where is thy God?
14567                                                                                                                                                                                                                                                                                                                                                                         Why art thou cast down, O my soul? and why art thou disquieted within me? hope thou in God: for I shall yet praise him, who is the health of my countenance, and my God.
14568                                                                                                                                                                                                                                                                                                                                                                                                                                   Judge me, O God, and plead my cause against an ungodly nation: O deliver me from the deceitful and unjust man.
14569                                                                                                                                                                                                                                                                                                                                                                                                                        For thou art the God of my strength: why dost thou cast me off? why go I mourning because of the oppression of the enemy?
14570                                                                                                                                                                                                                                                                                                                                                                                                                              O send out thy light and thy truth: let them lead me; let them bring me unto thy holy hill, and to thy tabernacles.
14571                                                                                                                                                                                                                                                                                                                                                                                                                            Then will I go unto the altar of God, unto God my exceeding joy: yea, upon the harp will I praise thee, O God my God.
14572                                                                                                                                                                                                                                                                                                                                                                              Why art thou cast down, O my soul? and why art thou disquieted within me? hope in God: for I shall yet praise him, who is the health of my countenance, and my God.
14573                                                                                                                                                                                                                                                                                                                                                                                                                           We have heard with our ears, O God, our fathers have told us, what work thou didst in their days, in the times of old.
14574                                                                                                                                                                                                                                                                                                                                                                                                                    How thou didst drive out the heathen with thy hand, and plantedst them; how thou didst afflict the people, and cast them out.
14575                                                                                                                                                                                                                                                                                                                                     For they got not the land in possession by their own sword, neither did their own arm save them: but thy right hand, and thine arm, and the light of thy countenance, because thou hadst a favour unto them.
14576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou art my King, O God: command deliverances for Jacob.
14577                                                                                                                                                                                                                                                                                                                                                                                                                                   Through thee will we push down our enemies: through thy name will we tread them under that rise up against us.
14578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For I will not trust in my bow, neither shall my sword save me.
14579                                                                                                                                                                                                                                                                                                                                                                                                                                                               But thou hast saved us from our enemies, and hast put them to shame that hated us.
14580                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In God we boast all the day long, and praise thy name for ever. Selah.
14581                                                                                                                                                                                                                                                                                                                                                                                                                                                                But thou hast cast off, and put us to shame; and goest not forth with our armies.
14582                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou makest us to turn back from the enemy: and they which hate us spoil for themselves.
14583                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast given us like sheep appointed for meat; and hast scattered us among the heathen.
14584                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou sellest thy people for nought, and dost not increase thy wealth by their price.
14585                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou makest us a reproach to our neighbours, a scorn and a derision to them that are round about us.
14586                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou makest us a byword among the heathen, a shaking of the head among the people.
14587                                                                                                                                                                                                                                                                                                                                                                                                                                                                 My confusion is continually before me, and the shame of my face hath covered me,
14588                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the voice of him that reproacheth and blasphemeth; by reason of the enemy and avenger.
14589                                                                                                                                                                                                                                                                                                                                                                                                                                         All this is come upon us; yet have we not forgotten thee, neither have we dealt falsely in thy covenant.
14590                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our heart is not turned back, neither have our steps declined from thy way;
14591                                                                                                                                                                                                                                                                                                                                                                                                                                                Though thou hast sore broken us in the place of dragons, and covered us with the shadow of death.
14592                                                                                                                                                                                                                                                                                                                                                                                                                                                           If we have forgotten the name of our God, or stretched out our hands to a strange god;
14593                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shall not God search this out? for he knoweth the secrets of the heart.
14594                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yea, for thy sake are we killed all the day long; we are counted as sheep for the slaughter.
14595                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Awake, why sleepest thou, O Lord? arise, cast us not off for ever.
14596                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wherefore hidest thou thy face, and forgettest our affliction and our oppression?
14597                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For our soul is bowed down to the dust: our belly cleaveth unto the earth.
14598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Arise for our help, and redeem us for thy mercies' sake.
14599                                                                                                                                                                                                                                                                                                                                                                                                           My heart is inditing a good matter: I speak of the things which I have made touching the king: my tongue is the pen of a ready writer.
14600                                                                                                                                                                                                                                                                                                                                                                                                                               Thou art fairer than the children of men: grace is poured into thy lips: therefore God hath blessed thee for ever.
14601                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Gird thy sword upon thy thigh, O most mighty, with thy glory and thy majesty.
14602                                                                                                                                                                                                                                                                                                                                                                                                       And in thy majesty ride prosperously because of truth and meekness and righteousness; and thy right hand shall teach thee terrible things.
14603                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thine arrows are sharp in the heart of the king's enemies; whereby the people fall under thee.
14604                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thy throne, O God, is for ever and ever: the sceptre of thy kingdom is a right sceptre.
14605                                                                                                                                                                                                                                                                                                                                                                                                         Thou lovest righteousness, and hatest wickedness: therefore God, thy God, hath anointed thee with the oil of gladness above thy fellows.
14606                                                                                                                                                                                                                                                                                                                                                                                                                              All thy garments smell of myrrh, and aloes, and cassia, out of the ivory palaces, whereby they have made thee glad.
14607                                                                                                                                                                                                                                                                                                                                                                                                                                      Kings' daughters were among thy honourable women: upon thy right hand did stand the queen in gold of Ophir.
14608                                                                                                                                                                                                                                                                                                                                                                                                                                  Hearken, O daughter, and consider, and incline thine ear; forget also thine own people, and thy father's house;
14609                                                                                                                                                                                                                                                                                                                                                                                                                                                           So shall the king greatly desire thy beauty: for he is thy Lord; and worship thou him.
14610                                                                                                                                                                                                                                                                                                                                                                                                                                    And the daughter of Tyre shall be there with a gift; even the rich among the people shall intreat thy favour.
14611                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The king's daughter is all glorious within: her clothing is of wrought gold.
14612                                                                                                                                                                                                                                                                                                                                                                                                              She shall be brought unto the king in raiment of needlework: the virgins her companions that follow her shall be brought unto thee.
14613                                                                                                                                                                                                                                                                                                                                                                                                                                                      With gladness and rejoicing shall they be brought: they shall enter into the king's palace.
14614                                                                                                                                                                                                                                                                                                                                                                                                                                                    Instead of thy fathers shall be thy children, whom thou mayest make princes in all the earth.
14615                                                                                                                                                                                                                                                                                                                                                                                                                              I will make thy name to be remembered in all generations: therefore shall the people praise thee for ever and ever.
14616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  God is our refuge and strength, a very present help in trouble.
14617                                                                                                                                                                                                                                                                                                                                                                                                                          Therefore will not we fear, though the earth be removed, and though the mountains be carried into the midst of the sea;
14618                                                                                                                                                                                                                                                                                                                                                                                                                                     Though the waters thereof roar and be troubled, though the mountains shake with the swelling thereof. Selah.
14619                                                                                                                                                                                                                                                                                                                                                                                                                       There is a river, the streams whereof shall make glad the city of God, the holy place of the tabernacles of the most High.
14620                                                                                                                                                                                                                                                                                                                                                                                                                                                    God is in the midst of her; she shall not be moved: God shall help her, and that right early.
14621                                                                                                                                                                                                                                                                                                                                                                                                                                                              The heathen raged, the kingdoms were moved: he uttered his voice, the earth melted.
14622                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD of hosts is with us; the God of Jacob is our refuge. Selah.
14623                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Come, behold the works of the LORD, what desolations he hath made in the earth.
14624                                                                                                                                                                                                                                                                                                                                                                                                     He maketh wars to cease unto the end of the earth; he breaketh the bow, and cutteth the spear in sunder; he burneth the chariot in the fire.
14625                                                                                                                                                                                                                                                                                                                                                                                                                                           Be still, and know that I am God: I will be exalted among the heathen, I will be exalted in the earth.
14626                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD of hosts is with us; the God of Jacob is our refuge. Selah.
14627                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O clap your hands, all ye people; shout unto God with the voice of triumph.
14628                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the LORD most high is terrible; he is a great King over all the earth.
14629                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He shall subdue the people under us, and the nations under our feet.
14630                                                                                                                                                                                                                                                                                                                                                                                                                                                            He shall choose our inheritance for us, the excellency of Jacob whom he loved. Selah.
14631                                                                                                                                                                                                                                                                                                                                                                                                                                                                               God is gone up with a shout, the LORD with the sound of a trumpet.
14632                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sing praises to God, sing praises: sing praises unto our King, sing praises.
14633                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For God is the King of all the earth: sing ye praises with understanding.
14634                                                                                                                                                                                                                                                                                                                                                                                                                                                                      God reigneth over the heathen: God sitteth upon the throne of his holiness.
14635                                                                                                                                                                                                                                                                                                                                                                                     The princes of the people are gathered together, even the people of the God of Abraham: for the shields of the earth belong unto God: he is greatly exalted.
14636                                                                                                                                                                                                                                                                                                                                                                                                                                            Great is the LORD, and greatly to be praised in the city of our God, in the mountain of his holiness.
14637                                                                                                                                                                                                                                                                                                                                                                                                                       Beautiful for situation, the joy of the whole earth, is mount Zion, on the sides of the north, the city of the great King.
14638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        God is known in her palaces for a refuge.
14639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For, lo, the kings were assembled, they passed by together.
14640                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They saw it, and so they marvelled; they were troubled, and hasted away.
14641                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fear took hold upon them there, and pain, as of a woman in travail.
14642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou breakest the ships of Tarshish with an east wind.
14643                                                                                                                                                                                                                                                                                                                                                                                                               As we have heard, so have we seen in the city of the LORD of hosts, in the city of our God: God will establish it for ever. Selah.
14644                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We have thought of thy lovingkindness, O God, in the midst of thy temple.
14645                                                                                                                                                                                                                                                                                                                                                                                                                              According to thy name, O God, so is thy praise unto the ends of the earth: thy right hand is full of righteousness.
14646                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let mount Zion rejoice, let the daughters of Judah be glad, because of thy judgments.
14647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Walk about Zion, and go round about her: tell the towers thereof.
14648                                                                                                                                                                                                                                                                                                                                                                                                                                                Mark ye well her bulwarks, consider her palaces; that ye may tell it to the generation following.
14649                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For this God is our God for ever and ever: he will be our guide even unto death.
14650                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hear this, all ye people; give ear, all ye inhabitants of the world:
14651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Both low and high, rich and poor, together.
14652                                                                                                                                                                                                                                                                                                                                                                                                                                                        My mouth shall speak of wisdom; and the meditation of my heart shall be of understanding.
14653                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I will incline mine ear to a parable: I will open my dark saying upon the harp.
14654                                                                                                                                                                                                                                                                                                                                                                                                                                               Wherefore should I fear in the days of evil, when the iniquity of my heels shall compass me about?
14655                                                                                                                                                                                                                                                                                                                                                                                                                                                          They that trust in their wealth, and boast themselves in the multitude of their riches;
14656                                                                                                                                                                                                                                                                                                                                                                                                                                                              None of them can by any means redeem his brother, nor give to God a ransom for him:
14657                                                                                                                                                                                                                                                                                                                                                                                                                                                                         (For the redemption of their soul is precious, and it ceaseth for ever:)
14658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That he should still live for ever, and not see corruption.
14659                                                                                                                                                                                                                                                                                                                                                                                                                               For he seeth that wise men die, likewise the fool and the brutish person perish, and leave their wealth to others.
14660                                                                                                                                                                                                                                                                                                                                                                                   Their inward thought is, that their houses shall continue for ever, and their dwelling places to all generations; they call their lands after their own names.
14661                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nevertheless man being in honour abideth not: he is like the beasts that perish.
14662                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This their way is their folly: yet their posterity approve their sayings. Selah.
14663                                                                                                                                                                                                                                                                                                                                                  Like sheep they are laid in the grave; death shall feed on them; and the upright shall have dominion over them in the morning; and their beauty shall consume in the grave from their dwelling.
14664                                                                                                                                                                                                                                                                                                                                                                                                                                                         But God will redeem my soul from the power of the grave: for he shall receive me. Selah.
14665                                                                                                                                                                                                                                                                                                                                                                                                                                                              Be not thou afraid when one is made rich, when the glory of his house is increased;
14666                                                                                                                                                                                                                                                                                                                                                                                                                                                            For when he dieth he shall carry nothing away: his glory shall not descend after him.
14667                                                                                                                                                                                                                                                                                                                                                                                                                                            Though while he lived he blessed his soul: and men will praise thee, when thou doest well to thyself.
14668                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He shall go to the generation of his fathers; they shall never see light.
14669                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Man that is in honour, and understandeth not, is like the beasts that perish.
14670                                                                                                                                                                                                                                                                                                                                                                                                                         The mighty God, even the LORD, hath spoken, and called the earth from the rising of the sun unto the going down thereof.
14671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Out of Zion, the perfection of beauty, God hath shined.
14672                                                                                                                                                                                                                                                                                                                                                                                                                Our God shall come, and shall not keep silence: a fire shall devour before him, and it shall be very tempestuous round about him.
14673                                                                                                                                                                                                                                                                                                                                                                                                                                                         He shall call to the heavens from above, and to the earth, that he may judge his people.
14674                                                                                                                                                                                                                                                                                                                                                                                                                                                         Gather my saints together unto me; those that have made a covenant with me by sacrifice.
14675                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the heavens shall declare his righteousness: for God is judge himself. Selah.
14676                                                                                                                                                                                                                                                                                                                                                                                                                                          Hear, O my people, and I will speak; O Israel, and I will testify against thee: I am God, even thy God.
14677                                                                                                                                                                                                                                                                                                                                                                                                                                           I will not reprove thee for thy sacrifices or thy burnt offerings, to have been continually before me.
14678                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will take no bullock out of thy house, nor he goats out of thy folds.
14679                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For every beast of the forest is mine, and the cattle upon a thousand hills.
14680                                                                                                                                                                                                                                                                                                                                                                                                                                                                I know all the fowls of the mountains: and the wild beasts of the field are mine.
14681                                                                                                                                                                                                                                                                                                                                                                                                                                                         If I were hungry, I would not tell thee: for the world is mine, and the fulness thereof.
14682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Will I eat the flesh of bulls, or drink the blood of goats?
14683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Offer unto God thanksgiving; and pay thy vows unto the most High:
14684                                                                                                                                                                                                                                                                                                                                                                                                                                                          And call upon me in the day of trouble: I will deliver thee, and thou shalt glorify me.
14685                                                                                                                                                                                                                                                                                                                                                                                                                But unto the wicked God saith, What hast thou to do to declare my statutes, or that thou shouldest take my covenant in thy mouth?
14686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Seeing thou hatest instruction, and casteth my words behind thee.
14687                                                                                                                                                                                                                                                                                                                                                                                                                                                When thou sawest a thief, then thou consentedst with him, and hast been partaker with adulterers.
14688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou givest thy mouth to evil, and thy tongue frameth deceit.
14689                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou sittest and speakest against thy brother; thou slanderest thine own mother's son.
14690                                                                                                                                                                                                                                                                                                                                                                 These things hast thou done, and I kept silence; thou thoughtest that I was altogether such an one as thyself: but I will reprove thee, and set them in order before thine eyes.
14691                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now consider this, ye that forget God, lest I tear you in pieces, and there be none to deliver.
14692                                                                                                                                                                                                                                                                                                                                                                                                                          Whoso offereth praise glorifieth me: and to him that ordereth his conversation aright will I shew the salvation of God.
14693                                                                                                                                                                                                                                                                                                                                                                                                       Have mercy upon me, O God, according to thy lovingkindness: according unto the multitude of thy tender mercies blot out my transgressions.
14694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wash me throughly from mine iniquity, and cleanse me from my sin.
14695                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For I acknowledge my transgressions: and my sin is ever before me.
14696                                                                                                                                                                                                                                                                                                                                                                                     Against thee, thee only, have I sinned, and done this evil in thy sight: that thou mightest be justified when thou speakest, and be clear when thou judgest.
14697                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Behold, I was shapen in iniquity; and in sin did my mother conceive me.
14698                                                                                                                                                                                                                                                                                                                                                                                                                                       Behold, thou desirest truth in the inward parts: and in the hidden part thou shalt make me to know wisdom.
14699                                                                                                                                                                                                                                                                                                                                                                                                                                                            Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow.
14700                                                                                                                                                                                                                                                                                                                                                                                                                                                             Make me to hear joy and gladness; that the bones which thou hast broken may rejoice.
14701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hide thy face from my sins, and blot out all mine iniquities.
14702                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Create in me a clean heart, O God; and renew a right spirit within me.
14703                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Cast me not away from thy presence; and take not thy holy spirit from me.
14704                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Restore unto me the joy of thy salvation; and uphold me with thy free spirit.
14705                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then will I teach transgressors thy ways; and sinners shall be converted unto thee.
14706                                                                                                                                                                                                                                                                                                                                                                                                                           Deliver me from bloodguiltiness, O God, thou God of my salvation: and my tongue shall sing aloud of thy righteousness.
14707                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Lord, open thou my lips; and my mouth shall shew forth thy praise.
14708                                                                                                                                                                                                                                                                                                                                                                                                                                                    For thou desirest not sacrifice; else would I give it: thou delightest not in burnt offering.
14709                                                                                                                                                                                                                                                                                                                                                                                                                                          The sacrifices of God are a broken spirit: a broken and a contrite heart, O God, thou wilt not despise.
14710                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do good in thy good pleasure unto Zion: build thou the walls of Jerusalem.
14711                                                                                                                                                                                                                                                                                                                                                                                  Then shalt thou be pleased with the sacrifices of righteousness, with burnt offering and whole burnt offering: then shall they offer bullocks upon thine altar.
14712                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why boastest thou thyself in mischief, O mighty man? the goodness of God endureth continually.
14713                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The tongue deviseth mischiefs; like a sharp razor, working deceitfully.
14714                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou lovest evil more than good; and lying rather than to speak righteousness. Selah.
14715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou lovest all devouring words, O thou deceitful tongue.
14716                                                                                                                                                                                                                                                                                                                                                                                 God shall likewise destroy thee for ever, he shall take thee away, and pluck thee out of thy dwelling place, and root thee out of the land of the living. Selah.
14717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The righteous also shall see, and fear, and shall laugh at him:
14718                                                                                                                                                                                                                                                                                                                                                                                                      Lo, this is the man that made not God his strength; but trusted in the abundance of his riches, and strengthened himself in his wickedness.
14719                                                                                                                                                                                                                                                                                                                                                                                                                                             But I am like a green olive tree in the house of God: I trust in the mercy of God for ever and ever.
14720                                                                                                                                                                                                                                                                                                                                                                                                                           I will praise thee for ever, because thou hast done it: and I will wait on thy name; for it is good before thy saints.
14721                                                                                                                                                                                                                                                                                                                                                                                                            The fool hath said in his heart, There is no God. Corrupt are they, and have done abominable iniquity: there is none that doeth good.
14722                                                                                                                                                                                                                                                                                                                                                                                                                           God looked down from heaven upon the children of men, to see if there were any that did understand, that did seek God.
14723                                                                                                                                                                                                                                                                                                                                                                                                                                   Every one of them is gone back: they are altogether become filthy; there is none that doeth good, no, not one.
14724                                                                                                                                                                                                                                                                                                                                                                                                                                Have the workers of iniquity no knowledge? who eat up my people as they eat bread: they have not called upon God.
14725                                                                                                                                                                                                                                                                                                                                                              There were they in great fear, where no fear was: for God hath scattered the bones of him that encampeth against thee: thou hast put them to shame, because God hath despised them.
14726                                                                                                                                                                                                                                                                                                                                                                                        Oh that the salvation of Israel were come out of Zion! When God bringeth back the captivity of his people, Jacob shall rejoice, and Israel shall be glad.
14727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Save me, O God, by thy name, and judge me by thy strength.
14728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hear my prayer, O God; give ear to the words of my mouth.
14729                                                                                                                                                                                                                                                                                                                                                                                                                              For strangers are risen up against me, and oppressors seek after my soul: they have not set God before them. Selah.
14730                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, God is mine helper: the Lord is with them that uphold my soul.
14731                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He shall reward evil unto mine enemies: cut them off in thy truth.
14732                                                                                                                                                                                                                                                                                                                                                                                                                                                               I will freely sacrifice unto thee: I will praise thy name, O LORD; for it is good.
14733                                                                                                                                                                                                                                                                                                                                                                                                                                                For he hath delivered me out of all trouble: and mine eye hath seen his desire upon mine enemies.
14734                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Give ear to my prayer, O God; and hide not thyself from my supplication.
14735                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Attend unto me, and hear me: I mourn in my complaint, and make a noise;
14736                                                                                                                                                                                                                                                                                                                                                                                                           Because of the voice of the enemy, because of the oppression of the wicked: for they cast iniquity upon me, and in wrath they hate me.
14737                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My heart is sore pained within me: and the terrors of death are fallen upon me.
14738                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fearfulness and trembling are come upon me, and horror hath overwhelmed me.
14739                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I said, Oh that I had wings like a dove! for then would I fly away, and be at rest.
14740                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lo, then would I wander far off, and remain in the wilderness. Selah.
14741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I would hasten my escape from the windy storm and tempest.
14742                                                                                                                                                                                                                                                                                                                                                                                                                                                      Destroy, O Lord, and divide their tongues: for I have seen violence and strife in the city.
14743                                                                                                                                                                                                                                                                                                                                                                                                                                          Day and night they go about it upon the walls thereof: mischief also and sorrow are in the midst of it.
14744                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wickedness is in the midst thereof: deceit and guile depart not from her streets.
14745                                                                                                                                                                                                                                                                                                                                                              For it was not an enemy that reproached me; then I could have borne it: neither was it he that hated me that did magnify himself against me; then I would have hid myself from him:
14746                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But it was thou, a man mine equal, my guide, and mine acquaintance.
14747                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We took sweet counsel together, and walked unto the house of God in company.
14748                                                                                                                                                                                                                                                                                                                                                                                                                           Let death seize upon them, and let them go down quick into hell: for wickedness is in their dwellings, and among them.
14749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for me, I will call upon God; and the LORD shall save me.
14750                                                                                                                                                                                                                                                                                                                                                                                                                                                       Evening, and morning, and at noon, will I pray, and cry aloud: and he shall hear my voice.
14751                                                                                                                                                                                                                                                                                                                                                                                                                                             He hath delivered my soul in peace from the battle that was against me: for there were many with me.
14752                                                                                                                                                                                                                                                                                                                                                                                                                 God shall hear, and afflict them, even he that abideth of old. Selah. Because they have no changes, therefore they fear not God.
14753                                                                                                                                                                                                                                                                                                                                                                                                                                                   He hath put forth his hands against such as be at peace with him: he hath broken his covenant.
14754                                                                                                                                                                                                                                                                                                                                                                                                          The words of his mouth were smoother than butter, but war was in his heart: his words were softer than oil, yet were they drawn swords.
14755                                                                                                                                                                                                                                                                                                                                                                                                                                       Cast thy burden upon the LORD, and he shall sustain thee: he shall never suffer the righteous to be moved.
14756                                                                                                                                                                                                                                                                                                                                                                                       But thou, O God, shalt bring them down into the pit of destruction: bloody and deceitful men shall not live out half their days; but I will trust in thee.
14757                                                                                                                                                                                                                                                                                                                                                                                                                                                        Be merciful unto me, O God: for man would swallow me up; he fighting daily oppresseth me.
14758                                                                                                                                                                                                                                                                                                                                                                                                                                                Mine enemies would daily swallow me up: for they be many that fight against me, O thou most High.
14759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What time I am afraid, I will trust in thee.
14760                                                                                                                                                                                                                                                                                                                                                                                                                                            In God I will praise his word, in God I have put my trust; I will not fear what flesh can do unto me.
14761                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every day they wrest my words: all their thoughts are against me for evil.
14762                                                                                                                                                                                                                                                                                                                                                                                                                                           They gather themselves together, they hide themselves, they mark my steps, when they wait for my soul.
14763                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shall they escape by iniquity? in thine anger cast down the people, O God.
14764                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou tellest my wanderings: put thou my tears into thy bottle: are they not in thy book?
14765                                                                                                                                                                                                                                                                                                                                                                                                                                                         When I cry unto thee, then shall mine enemies turn back: this I know; for God is for me.
14766                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In God will I praise his word: in the LORD will I praise his word.
14767                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In God have I put my trust: I will not be afraid what man can do unto me.
14768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thy vows are upon me, O God: I will render praises unto thee.
14769                                                                                                                                                                                                                                                                                                                                                                                                   For thou hast delivered my soul from death: wilt not thou deliver my feet from falling, that I may walk before God in the light of the living?
14770                                                                                                                                                                                                                                                                                                                                                                        Be merciful unto me, O God, be merciful unto me: for my soul trusteth in thee: yea, in the shadow of thy wings will I make my refuge, until these calamities be overpast.
14771                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I will cry unto God most high; unto God that performeth all things for me.
14772                                                                                                                                                                                                                                                                                                                                                                                                   He shall send from heaven, and save me from the reproach of him that would swallow me up. Selah. God shall send forth his mercy and his truth.
14773                                                                                                                                                                                                                                                                                                                                                                                 My soul is among lions: and I lie even among them that are set on fire, even the sons of men, whose teeth are spears and arrows, and their tongue a sharp sword.
14774                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Be thou exalted, O God, above the heavens; let thy glory be above all the earth.
14775                                                                                                                                                                                                                                                                                                                                                                                        They have prepared a net for my steps; my soul is bowed down: they have digged a pit before me, into the midst whereof they are fallen themselves. Selah.
14776                                                                                                                                                                                                                                                                                                                                                                                                                                                                        My heart is fixed, O God, my heart is fixed: I will sing and give praise.
14777                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Awake up, my glory; awake, psaltery and harp: I myself will awake early.
14778                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will praise thee, O Lord, among the people: I will sing unto thee among the nations.
14779                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For thy mercy is great unto the heavens, and thy truth unto the clouds.
14780                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Be thou exalted, O God, above the heavens: let thy glory be above all the earth.
14781                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do ye indeed speak righteousness, O congregation? do ye judge uprightly, O ye sons of men?
14782                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yea, in heart ye work wickedness; ye weigh the violence of your hands in the earth.
14783                                                                                                                                                                                                                                                                                                                                                                                                                                                   The wicked are estranged from the womb: they go astray as soon as they be born, speaking lies.
14784                                                                                                                                                                                                                                                                                                                                                                                                                                                Their poison is like the poison of a serpent: they are like the deaf adder that stoppeth her ear;
14785                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Which will not hearken to the voice of charmers, charming never so wisely.
14786                                                                                                                                                                                                                                                                                                                                                                                                                                                  Break their teeth, O God, in their mouth: break out the great teeth of the young lions, O LORD.
14787                                                                                                                                                                                                                                                                                                                                                                                                                   Let them melt away as waters which run continually: when he bendeth his bow to shoot his arrows, let them be as cut in pieces.
14788                                                                                                                                                                                                                                                                                                                                                                                                                    As a snail which melteth, let every one of them pass away: like the untimely birth of a woman, that they may not see the sun.
14789                                                                                                                                                                                                                                                                                                                                                                                                                                Before your pots can feel the thorns, he shall take them away as with a whirlwind, both living, and in his wrath.
14790                                                                                                                                                                                                                                                                                                                                                                                                                                      The righteous shall rejoice when he seeth the vengeance: he shall wash his feet in the blood of the wicked.
14791                                                                                                                                                                                                                                                                                                                                                                                                                               So that a man shall say, Verily there is a reward for the righteous: verily he is a God that judgeth in the earth.
14792                                                                                                                                                                                                                                                                                                                                                                                                                                                             Deliver me from mine enemies, O my God: defend me from them that rise up against me.
14793                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deliver me from the workers of iniquity, and save me from bloody men.
14794                                                                                                                                                                                                                                                                                                                                                                                                                     For, lo, they lie in wait for my soul: the mighty are gathered against me; not for my transgression, nor for my sin, O LORD.
14795                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They run and prepare themselves without my fault: awake to help me, and behold.
14796                                                                                                                                                                                                                                                                                                                                                                                                      Thou therefore, O LORD God of hosts, the God of Israel, awake to visit all the heathen: be not merciful to any wicked transgressors. Selah.
14797                                                                                                                                                                                                                                                                                                                                                                                                                                                               They return at evening: they make a noise like a dog, and go round about the city.
14798                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, they belch out with their mouth: swords are in their lips: for who, say they, doth hear?
14799                                                                                                                                                                                                                                                                                                                                                                                                                                                              But thou, O LORD, shalt laugh at them; thou shalt have all the heathen in derision.
14800                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Because of his strength will I wait upon thee: for God is my defence.
14801                                                                                                                                                                                                                                                                                                                                                                                                                                                          The God of my mercy shall prevent me: God shall let me see my desire upon mine enemies.
14802                                                                                                                                                                                                                                                                                                                                                                                                                                         Slay them not, lest my people forget: scatter them by thy power; and bring them down, O Lord our shield.
14803                                                                                                                                                                                                                                                                                                                                                                                                        For the sin of their mouth and the words of their lips let them even be taken in their pride: and for cursing and lying which they speak.
14804                                                                                                                                                                                                                                                                                                                                                                                                         Consume them in wrath, consume them, that they may not be: and let them know that God ruleth in Jacob unto the ends of the earth. Selah.
14805                                                                                                                                                                                                                                                                                                                                                                                                                                               And at evening let them return; and let them make a noise like a dog, and go round about the city.
14806                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let them wander up and down for meat, and grudge if they be not satisfied.
14807                                                                                                                                                                                                                                                                                                                                                                                             But I will sing of thy power; yea, I will sing aloud of thy mercy in the morning: for thou hast been my defence and refuge in the day of my trouble.
14808                                                                                                                                                                                                                                                                                                                                                                                                                                                           Unto thee, O my strength, will I sing: for God is my defence, and the God of my mercy.
14809                                                                                                                                                                                                                                                                                                                                                                                                                                     O God, thou hast cast us off, thou hast scattered us, thou hast been displeased; O turn thyself to us again.
14810                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou hast made the earth to tremble; thou hast broken it: heal the breaches thereof; for it shaketh.
14811                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou hast shewed thy people hard things: thou hast made us to drink the wine of astonishment.
14812                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou hast given a banner to them that fear thee, that it may be displayed because of the truth. Selah.
14813                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That thy beloved may be delivered; save with thy right hand, and hear me.
14814                                                                                                                                                                                                                                                                                                                                                                                                                                      God hath spoken in his holiness; I will rejoice, I will divide Shechem, and mete out the valley of Succoth.
14815                                                                                                                                                                                                                                                                                                                                                                                                                                           Gilead is mine, and Manasseh is mine; Ephraim also is the strength of mine head; Judah is my lawgiver;
14816                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moab is my washpot; over Edom will I cast out my shoe: Philistia, triumph thou because of me.
14817                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who will bring me into the strong city? who will lead me into Edom?
14818                                                                                                                                                                                                                                                                                                                                                                                                                                          Wilt not thou, O God, which hadst cast us off? and thou, O God, which didst not go out with our armies?
14819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give us help from trouble: for vain is the help of man.
14820                                                                                                                                                                                                                                                                                                                                                                                                                                                               Through God we shall do valiantly: for he it is that shall tread down our enemies.
14821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hear my cry, O God; attend unto my prayer.
14822                                                                                                                                                                                                                                                                                                                                                                                                                         From the end of the earth will I cry unto thee, when my heart is overwhelmed: lead me to the rock that is higher than I.
14823                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For thou hast been a shelter for me, and a strong tower from the enemy.
14824                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will abide in thy tabernacle for ever: I will trust in the covert of thy wings. Selah.
14825                                                                                                                                                                                                                                                                                                                                                                                                                                                For thou, O God, hast heard my vows: thou hast given me the heritage of those that fear thy name.
14826                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou wilt prolong the king's life: and his years as many generations.
14827                                                                                                                                                                                                                                                                                                                                                                                                                                                           He shall abide before God for ever: O prepare mercy and truth, which may preserve him.
14828                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So will I sing praise unto thy name for ever, that I may daily perform my vows.
14829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Truly my soul waiteth upon God: from him cometh my salvation.
14830                                                                                                                                                                                                                                                                                                                                                                                                                                                             He only is my rock and my salvation; he is my defence; I shall not be greatly moved.
14831                                                                                                                                                                                                                                                                                                                                                                                                           How long will ye imagine mischief against a man? ye shall be slain all of you: as a bowing wall shall ye be, and as a tottering fence.
14832                                                                                                                                                                                                                                                                                                                                                                                                       They only consult to cast him down from his excellency: they delight in lies: they bless with their mouth, but they curse inwardly. Selah.
14833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My soul, wait thou only upon God; for my expectation is from him.
14834                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He only is my rock and my salvation: he is my defence; I shall not be moved.
14835                                                                                                                                                                                                                                                                                                                                                                                                                                                          In God is my salvation and my glory: the rock of my strength, and my refuge, is in God.
14836                                                                                                                                                                                                                                                                                                                                                                                                                                             Trust in him at all times; ye people, pour out your heart before him: God is a refuge for us. Selah.
14837                                                                                                                                                                                                                                                                                                                                                                                                       Surely men of low degree are vanity, and men of high degree are a lie: to be laid in the balance, they are altogether lighter than vanity.
14838                                                                                                                                                                                                                                                                                                                                                                                                                                       Trust not in oppression, and become not vain in robbery: if riches increase, set not your heart upon them.
14839                                                                                                                                                                                                                                                                                                                                                                                                                                                                    God hath spoken once; twice have I heard this; that power belongeth unto God.
14840                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also unto thee, O Lord, belongeth mercy: for thou renderest to every man according to his work.
14841                                                                                                                                                                                                                                                                                                                                                                                              O God, thou art my God; early will I seek thee: my soul thirsteth for thee, my flesh longeth for thee in a dry and thirsty land, where no water is;
14842                                                                                                                                                                                                                                                                                                                                                                                                                                                                         To see thy power and thy glory, so as I have seen thee in the sanctuary.
14843                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Because thy lovingkindness is better than life, my lips shall praise thee.
14844                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus will I bless thee while I live: I will lift up my hands in thy name.
14845                                                                                                                                                                                                                                                                                                                                                                                                                                          My soul shall be satisfied as with marrow and fatness; and my mouth shall praise thee with joyful lips:
14846                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When I remember thee upon my bed, and meditate on thee in the night watches.
14847                                                                                                                                                                                                                                                                                                                                                                                                                                                             Because thou hast been my help, therefore in the shadow of thy wings will I rejoice.
14848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My soul followeth hard after thee: thy right hand upholdeth me.
14849                                                                                                                                                                                                                                                                                                                                                                                                                                                          But those that seek my soul, to destroy it, shall go into the lower parts of the earth.
14850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They shall fall by the sword: they shall be a portion for foxes.
14851                                                                                                                                                                                                                                                                                                                                                                                                           But the king shall rejoice in God; every one that sweareth by him shall glory: but the mouth of them that speak lies shall be stopped.
14852                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hear my voice, O God, in my prayer: preserve my life from fear of the enemy.
14853                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hide me from the secret counsel of the wicked; from the insurrection of the workers of iniquity:
14854                                                                                                                                                                                                                                                                                                                                                                                                                                                Who whet their tongue like a sword, and bend their bows to shoot their arrows, even bitter words:
14855                                                                                                                                                                                                                                                                                                                                                                                                                                                       That they may shoot in secret at the perfect: suddenly do they shoot at him, and fear not.
14856                                                                                                                                                                                                                                                                                                                                                                                                                                They encourage themselves in an evil matter: they commune of laying snares privily; they say, Who shall see them?
14857                                                                                                                                                                                                                                                                                                                                                                                                             They search out iniquities; they accomplish a diligent search: both the inward thought of every one of them, and the heart, is deep.
14858                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But God shall shoot at them with an arrow; suddenly shall they be wounded.
14859                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they shall make their own tongue to fall upon themselves: all that see them shall flee away.
14860                                                                                                                                                                                                                                                                                                                                                                                                                                          And all men shall fear, and shall declare the work of God; for they shall wisely consider of his doing.
14861                                                                                                                                                                                                                                                                                                                                                                                                                                       The righteous shall be glad in the LORD, and shall trust in him; and all the upright in heart shall glory.
14862                                                                                                                                                                                                                                                                                                                                                                                                                                                               Praise waiteth for thee, O God, in Sion: and unto thee shall the vow be performed.
14863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O thou that hearest prayer, unto thee shall all flesh come.
14864                                                                                                                                                                                                                                                                                                                                                                                                                                                            Iniquities prevail against me: as for our transgressions, thou shalt purge them away.
14865                                                                                                                                                                                                                                                                                                                                                        Blessed is the man whom thou choosest, and causest to approach unto thee, that he may dwell in thy courts: we shall be satisfied with the goodness of thy house, even of thy holy temple.
14866                                                                                                                                                                                                                                                                                                                                                                By terrible things in righteousness wilt thou answer us, O God of our salvation; who art the confidence of all the ends of the earth, and of them that are afar off upon the sea:
14867                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Which by his strength setteth fast the mountains; being girded with power:
14868                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which stilleth the noise of the seas, the noise of their waves, and the tumult of the people.
14869                                                                                                                                                                                                                                                                                                                                                                                                           They also that dwell in the uttermost parts are afraid at thy tokens: thou makest the outgoings of the morning and evening to rejoice.
14870                                                                                                                                                                                                                                                                                                                                                                  Thou visitest the earth, and waterest it: thou greatly enrichest it with the river of God, which is full of water: thou preparest them corn, when thou hast so provided for it.
14871                                                                                                                                                                                                                                                                                                                                                                                           Thou waterest the ridges thereof abundantly: thou settlest the furrows thereof: thou makest it soft with showers: thou blessest the springing thereof.
14872                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou crownest the year with thy goodness; and thy paths drop fatness.
14873                                                                                                                                                                                                                                                                                                                                                                                                                                                       They drop upon the pastures of the wilderness: and the little hills rejoice on every side.
14874                                                                                                                                                                                                                                                                                                                                                                                                                           The pastures are clothed with flocks; the valleys also are covered over with corn; they shout for joy, they also sing.
14875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make a joyful noise unto God, all ye lands:
14876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sing forth the honour of his name: make his praise glorious.
14877                                                                                                                                                                                                                                                                                                                                                                                                            Say unto God, How terrible art thou in thy works! through the greatness of thy power shall thine enemies submit themselves unto thee.
14878                                                                                                                                                                                                                                                                                                                                                                                                                                                  All the earth shall worship thee, and shall sing unto thee; they shall sing to thy name. Selah.
14879                                                                                                                                                                                                                                                                                                                                                                                                                                                           Come and see the works of God: he is terrible in his doing toward the children of men.
14880                                                                                                                                                                                                                                                                                                                                                                                                                                               He turned the sea into dry land: they went through the flood on foot: there did we rejoice in him.
14881                                                                                                                                                                                                                                                                                                                                                                                                                                    He ruleth by his power for ever; his eyes behold the nations: let not the rebellious exalt themselves. Selah.
14882                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O bless our God, ye people, and make the voice of his praise to be heard:
14883                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Which holdeth our soul in life, and suffereth not our feet to be moved.
14884                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For thou, O God, hast proved us: thou hast tried us, as silver is tried.
14885                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou broughtest us into the net; thou laidst affliction upon our loins.
14886                                                                                                                                                                                                                                                                                                                                                                                                            Thou hast caused men to ride over our heads; we went through fire and through water: but thou broughtest us out into a wealthy place.
14887                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will go into thy house with burnt offerings: I will pay thee my vows,
14888                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Which my lips have uttered, and my mouth hath spoken, when I was in trouble.
14889                                                                                                                                                                                                                                                                                                                                                                                                                          I will offer unto thee burnt sacrifices of fatlings, with the incense of rams; I will offer bullocks with goats. Selah.
14890                                                                                                                                                                                                                                                                                                                                                                                                                                                           Come and hear, all ye that fear God, and I will declare what he hath done for my soul.
14891                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I cried unto him with my mouth, and he was extolled with my tongue.
14892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If I regard iniquity in my heart, the Lord will not hear me:
14893                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But verily God hath heard me; he hath attended to the voice of my prayer.
14894                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Blessed be God, which hath not turned away my prayer, nor his mercy from me.
14895                                                                                                                                                                                                                                                                                                                                                                                                                                                               God be merciful unto us, and bless us; and cause his face to shine upon us; Selah.
14896                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That thy way may be known upon earth, thy saving health among all nations.
14897                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Let the people praise thee, O God; let all the people praise thee.
14898                                                                                                                                                                                                                                                                                                                                                                                                               O let the nations be glad and sing for joy: for thou shalt judge the people righteously, and govern the nations upon earth. Selah.
14899                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Let the people praise thee, O God; let all the people praise thee.
14900                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then shall the earth yield her increase; and God, even our own God, shall bless us.
14901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                God shall bless us; and all the ends of the earth shall fear him.
14902                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let God arise, let his enemies be scattered: let them also that hate him flee before him.
14903                                                                                                                                                                                                                                                                                                                                                                                                                    As smoke is driven away, so drive them away: as wax melteth before the fire, so let the wicked perish at the presence of God.
14904                                                                                                                                                                                                                                                                                                                                                                                                                                                   But let the righteous be glad; let them rejoice before God: yea, let them exceedingly rejoice.
14905                                                                                                                                                                                                                                                                                                                                                                                                                         Sing unto God, sing praises to his name: extol him that rideth upon the heavens by his name JAH, and rejoice before him.
14906                                                                                                                                                                                                                                                                                                                                                                                                                                                            A father of the fatherless, and a judge of the widows, is God in his holy habitation.
14907                                                                                                                                                                                                                                                                                                                                                                                                                 God setteth the solitary in families: he bringeth out those which are bound with chains: but the rebellious dwell in a dry land.
14908                                                                                                                                                                                                                                                                                                                                                                                                                                           O God, when thou wentest forth before thy people, when thou didst march through the wilderness; Selah:
14909                                                                                                                                                                                                                                                                                                                                                                                                         The earth shook, the heavens also dropped at the presence of God: even Sinai itself was moved at the presence of God, the God of Israel.
14910                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou, O God, didst send a plentiful rain, whereby thou didst confirm thine inheritance, when it was weary.
14911                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thy congregation hath dwelt therein: thou, O God, hast prepared of thy goodness for the poor.
14912                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Lord gave the word: great was the company of those that published it.
14913                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Kings of armies did flee apace: and she that tarried at home divided the spoil.
14914                                                                                                                                                                                                                                                                                                                                                                                                               Though ye have lien among the pots, yet shall ye be as the wings of a dove covered with silver, and her feathers with yellow gold.
14915                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the Almighty scattered kings in it, it was white as snow in Salmon.
14916                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The hill of God is as the hill of Bashan; an high hill as the hill of Bashan.
14917                                                                                                                                                                                                                                                                                                                                                                                                                            Why leap ye, ye high hills? this is the hill which God desireth to dwell in; yea, the LORD will dwell in it for ever.
14918                                                                                                                                                                                                                                                                                                                                                                                                                       The chariots of God are twenty thousand, even thousands of angels: the Lord is among them, as in Sinai, in the holy place.
14919                                                                                                                                                                                                                                                                                                                                                                           Thou hast ascended on high, thou hast led captivity captive: thou hast received gifts for men; yea, for the rebellious also, that the LORD God might dwell among them.
14920                                                                                                                                                                                                                                                                                                                                                                                                                                                   Blessed be the Lord, who daily loadeth us with benefits, even the God of our salvation. Selah.
14921                                                                                                                                                                                                                                                                                                                                                                                                                                                  He that is our God is the God of salvation; and unto GOD the Lord belong the issues from death.
14922                                                                                                                                                                                                                                                                                                                                                                                                                             But God shall wound the head of his enemies, and the hairy scalp of such an one as goeth on still in his trespasses.
14923                                                                                                                                                                                                                                                                                                                                                                                                                                          The Lord said, I will bring again from Bashan, I will bring my people again from the depths of the sea:
14924                                                                                                                                                                                                                                                                                                                                                                                                                                               That thy foot may be dipped in the blood of thine enemies, and the tongue of thy dogs in the same.
14925                                                                                                                                                                                                                                                                                                                                                                                                                                                          They have seen thy goings, O God; even the goings of my God, my King, in the sanctuary.
14926                                                                                                                                                                                                                                                                                                                                                                                                                           The singers went before, the players on instruments followed after; among them were the damsels playing with timbrels.
14927                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Bless ye God in the congregations, even the Lord, from the fountain of Israel.
14928                                                                                                                                                                                                                                                                                                                                                                                                          There is little Benjamin with their ruler, the princes of Judah and their council, the princes of Zebulun, and the princes of Naphtali.
14929                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy God hath commanded thy strength: strengthen, O God, that which thou hast wrought for us.
14930                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Because of thy temple at Jerusalem shall kings bring presents unto thee.
14931                                                                                                                                                                                                                                                                                                                                                     Rebuke the company of spearmen, the multitude of the bulls, with the calves of the people, till every one submit himself with pieces of silver: scatter thou the people that delight in war.
14932                                                                                                                                                                                                                                                                                                                                                                                                                                                             Princes shall come out of Egypt; Ethiopia shall soon stretch out her hands unto God.
14933                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sing unto God, ye kingdoms of the earth; O sing praises unto the Lord; Selah:
14934                                                                                                                                                                                                                                                                                                                                                                                                                      To him that rideth upon the heavens of heavens, which were of old; lo, he doth send out his voice, and that a mighty voice.
14935                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ascribe ye strength unto God: his excellency is over Israel, and his strength is in the clouds.
14936                                                                                                                                                                                                                                                                                                                                                                                                         O God, thou art terrible out of thy holy places: the God of Israel is he that giveth strength and power unto his people. Blessed be God.
14937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Save me, O God; for the waters are come in unto my soul.
14938                                                                                                                                                                                                                                                                                                                                                                                                                                       I sink in deep mire, where there is no standing: I am come into deep waters, where the floods overflow me.
14939                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am weary of my crying: my throat is dried: mine eyes fail while I wait for my God.
14940                                                                                                                                                                                                                                                                                                                                                       They that hate me without a cause are more than the hairs of mine head: they that would destroy me, being mine enemies wrongfully, are mighty: then I restored that which I took not away.
14941                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O God, thou knowest my foolishness; and my sins are not hid from thee.
14942                                                                                                                                                                                                                                                                                                                                                                                            Let not them that wait on thee, O Lord GOD of hosts, be ashamed for my sake: let not those that seek thee be confounded for my sake, O God of Israel.
14943                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Because for thy sake I have borne reproach; shame hath covered my face.
14944                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am become a stranger unto my brethren, and an alien unto my mother's children.
14945                                                                                                                                                                                                                                                                                                                                                                                                                                For the zeal of thine house hath eaten me up; and the reproaches of them that reproached thee are fallen upon me.
14946                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When I wept, and chastened my soul with fasting, that was to my reproach.
14947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I made sackcloth also my garment; and I became a proverb to them.
14948                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They that sit in the gate speak against me; and I was the song of the drunkards.
14949                                                                                                                                                                                                                                                                                                                                                                                               But as for me, my prayer is unto thee, O LORD, in an acceptable time: O God, in the multitude of thy mercy hear me, in the truth of thy salvation.
14950                                                                                                                                                                                                                                                                                                                                                                                                                         Deliver me out of the mire, and let me not sink: let me be delivered from them that hate me, and out of the deep waters.
14951                                                                                                                                                                                                                                                                                                                                                                                                                              Let not the waterflood overflow me, neither let the deep swallow me up, and let not the pit shut her mouth upon me.
14952                                                                                                                                                                                                                                                                                                                                                                                                                                  Hear me, O LORD; for thy lovingkindness is good: turn unto me according to the multitude of thy tender mercies.
14953                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And hide not thy face from thy servant; for I am in trouble: hear me speedily.
14954                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Draw nigh unto my soul, and redeem it: deliver me because of mine enemies.
14955                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou hast known my reproach, and my shame, and my dishonour: mine adversaries are all before thee.
14956                                                                                                                                                                                                                                                                                                                                                                                         Reproach hath broken my heart; and I am full of heaviness: and I looked for some to take pity, but there was none; and for comforters, but I found none.
14957                                                                                                                                                                                                                                                                                                                                                                                                                                                              They gave me also gall for my meat; and in my thirst they gave me vinegar to drink.
14958                                                                                                                                                                                                                                                                                                                                                                                                                             Let their table become a snare before them: and that which should have been for their welfare, let it become a trap.
14959                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let their eyes be darkened, that they see not; and make their loins continually to shake.
14960                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pour out thine indignation upon them, and let thy wrathful anger take hold of them.
14961                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let their habitation be desolate; and let none dwell in their tents.
14962                                                                                                                                                                                                                                                                                                                                                                                                                                       For they persecute him whom thou hast smitten; and they talk to the grief of those whom thou hast wounded.
14963                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Add iniquity unto their iniquity: and let them not come into thy righteousness.
14964                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let them be blotted out of the book of the living, and not be written with the righteous.
14965                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But I am poor and sorrowful: let thy salvation, O God, set me up on high.
14966                                                                                                                                                                                                                                                                                                                                                                                                                                                               I will praise the name of God with a song, and will magnify him with thanksgiving.
14967                                                                                                                                                                                                                                                                                                                                                                                                                                                          This also shall please the LORD better than an ox or bullock that hath horns and hoofs.
14968                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The humble shall see this, and be glad: and your heart shall live that seek God.
14969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For the LORD heareth the poor, and despiseth not his prisoners.
14970                                                                                                                                                                                                                                                                                                                                                                                                                                                              Let the heaven and earth praise him, the seas, and every thing that moveth therein.
14971                                                                                                                                                                                                                                                                                                                                                                                                                                For God will save Zion, and will build the cities of Judah: that they may dwell there, and have it in possession.
14972                                                                                                                                                                                                                                                                                                                                                                                                                                                 The seed also of his servants shall inherit it: and they that love his name shall dwell therein.
14973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 MAKE HASTE, O GOD, TO DELIVER ME; MAKE HASTE TO HELP ME, O LORD.
14974                                                                                                                                                                                                                                                                                                                                                                                                              Let them be ashamed and confounded that seek after my soul: let them be turned backward, and put to confusion, that desire my hurt.
14975                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let them be turned back for a reward of their shame that say, Aha, aha.
14976                                                                                                                                                                                                                                                                                                                                                                                                              Let all those that seek thee rejoice and be glad in thee: and let such as love thy salvation say continually, Let God be magnified.
14977                                                                                                                                                                                                                                                                                                                                                                                                                                 But I am poor and needy: make haste unto me, O God: thou art my help and my deliverer; O LORD, make no tarrying.
14978                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In thee, O LORD, do I put my trust: let me never be put to confusion.
14979                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deliver me in thy righteousness, and cause me to escape: incline thine ear unto me, and save me.
14980                                                                                                                                                                                                                                                                                                                                                                                                  Be thou my strong habitation, whereunto I may continually resort: thou hast given commandment to save me; for thou art my rock and my fortress.
14981                                                                                                                                                                                                                                                                                                                                                                                                                                           Deliver me, O my God, out of the hand of the wicked, out of the hand of the unrighteous and cruel man.
14982                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For thou art my hope, O Lord GOD: thou art my trust from my youth.
14983                                                                                                                                                                                                                                                                                                                                                                                                         By thee have I been holden up from the womb: thou art he that took me out of my mother's bowels: my praise shall be continually of thee.
14984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I am as a wonder unto many; but thou art my strong refuge.
14985                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let my mouth be filled with thy praise and with thy honour all the day.
14986                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cast me not off in the time of old age; forsake me not when my strength faileth.
14987                                                                                                                                                                                                                                                                                                                                                                                                                                                     For mine enemies speak against me; and they that lay wait for my soul take counsel together,
14988                                                                                                                                                                                                                                                                                                                                                                                                                                                         Saying, God hath forsaken him: persecute and take him; for there is none to deliver him.
14989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O God, be not far from me: O my God, make haste for my help.
14990                                                                                                                                                                                                                                                                                                                                                                                                          Let them be confounded and consumed that are adversaries to my soul; let them be covered with reproach and dishonour that seek my hurt.
14991                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But I will hope continually, and will yet praise thee more and more.
14992                                                                                                                                                                                                                                                                                                                                                                                                                                   My mouth shall shew forth thy righteousness and thy salvation all the day; for I know not the numbers thereof.
14993                                                                                                                                                                                                                                                                                                                                                                                                                                         I will go in the strength of the Lord GOD: I will make mention of thy righteousness, even of thine only.
14994                                                                                                                                                                                                                                                                                                                                                                                                                                                       O God, thou hast taught me from my youth: and hitherto have I declared thy wondrous works.
14995                                                                                                                                                                                                                                                                                                                                                                                 Now also when I am old and greyheaded, O God, forsake me not; until I have shewed thy strength unto this generation, and thy power to every one that is to come.
14996                                                                                                                                                                                                                                                                                                                                                                                                                                           Thy righteousness also, O God, is very high, who hast done great things: O God, who is like unto thee!
14997                                                                                                                                                                                                                                                                                                                                                                                                            Thou, which hast shewed me great and sore troubles, shalt quicken me again, and shalt bring me up again from the depths of the earth.
14998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt increase my greatness, and comfort me on every side.
14999                                                                                                                                                                                                                                                                                                                                                                                                             I will also praise thee with the psaltery, even thy truth, O my God: unto thee will I sing with the harp, O thou Holy One of Israel.
15000                                                                                                                                                                                                                                                                                                                                                                                                                                                      My lips shall greatly rejoice when I sing unto thee; and my soul, which thou hast redeemed.
15001                                                                                                                                                                                                                                                                                                                                                                                                    My tongue also shall talk of thy righteousness all the day long: for they are confounded, for they are brought unto shame, that seek my hurt.
15002                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Give the king thy judgments, O God, and thy righteousness unto the king's son.
15003                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He shall judge thy people with righteousness, and thy poor with judgment.
15004                                                                                                                                                                                                                                                                                                                                                                                                                                                           The mountains shall bring peace to the people, and the little hills, by righteousness.
15005                                                                                                                                                                                                                                                                                                                                                                                                                         He shall judge the poor of the people, he shall save the children of the needy, and shall break in pieces the oppressor.
15006                                                                                                                                                                                                                                                                                                                                                                                                                                                             They shall fear thee as long as the sun and moon endure, throughout all generations.
15007                                                                                                                                                                                                                                                                                                                                                                                                                                                               He shall come down like rain upon the mown grass: as showers that water the earth.
15008                                                                                                                                                                                                                                                                                                                                                                                                                                                   In his days shall the righteous flourish; and abundance of peace so long as the moon endureth.
15009                                                                                                                                                                                                                                                                                                                                                                                                                                                      He shall have dominion also from sea to sea, and from the river unto the ends of the earth.
15010                                                                                                                                                                                                                                                                                                                                                                                                                                                     They that dwell in the wilderness shall bow before him; and his enemies shall lick the dust.
15011                                                                                                                                                                                                                                                                                                                                                                                                                                      The kings of Tarshish and of the isles shall bring presents: the kings of Sheba and Seba shall offer gifts.
15012                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yea, all kings shall fall down before him: all nations shall serve him.
15013                                                                                                                                                                                                                                                                                                                                                                                                                                                       For he shall deliver the needy when he crieth; the poor also, and him that hath no helper.
15014                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He shall spare the poor and needy, and shall save the souls of the needy.
15015                                                                                                                                                                                                                                                                                                                                                                                                                                             He shall redeem their soul from deceit and violence: and precious shall their blood be in his sight.
15016                                                                                                                                                                                                                                                                                                                                                                                                 And he shall live, and to him shall be given of the gold of Sheba: prayer also shall be made for him continually; and daily shall he be praised.
15017                                                                                                                                                                                                                                                                                                                                                           There shall be an handful of corn in the earth upon the top of the mountains; the fruit thereof shall shake like Lebanon: and they of the city shall flourish like grass of the earth.
15018                                                                                                                                                                                                                                                                                                                                                                                             His name shall endure for ever: his name shall be continued as long as the sun: and men shall be blessed in him: all nations shall call him blessed.
15019                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Blessed be the LORD God, the God of Israel, who only doeth wondrous things.
15020                                                                                                                                                                                                                                                                                                                                                                                                                                     And blessed be his glorious name for ever: and let the whole earth be filled with his glory; Amen, and Amen.
15021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The prayers of David the son of Jesse are ended.
15022                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Truly God is good to Israel, even to such as are of a clean heart.
15023                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But as for me, my feet were almost gone; my steps had well nigh slipped.
15024                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For I was envious at the foolish, when I saw the prosperity of the wicked.
15025                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For there are no bands in their death: but their strength is firm.
15026                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They are not in trouble as other men; neither are they plagued like other men.
15027                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore pride compasseth them about as a chain; violence covereth them as a garment.
15028                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their eyes stand out with fatness: they have more than heart could wish.
15029                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They are corrupt, and speak wickedly concerning oppression: they speak loftily.
15030                                                                                                                                                                                                                                                                                                                                                                                                                                                            They set their mouth against the heavens, and their tongue walketh through the earth.
15031                                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore his people return hither: and waters of a full cup are wrung out to them.
15032                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they say, How doth God know? and is there knowledge in the most High?
15033                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, these are the ungodly, who prosper in the world; they increase in riches.
15034                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Verily I have cleansed my heart in vain, and washed my hands in innocency.
15035                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For all the day long have I been plagued, and chastened every morning.
15036                                                                                                                                                                                                                                                                                                                                                                                                                                                     If I say, I will speak thus; behold, I should offend against the generation of thy children.
15037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When I thought to know this, it was too painful for me;
15038                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Until I went into the sanctuary of God; then understood I their end.
15039                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely thou didst set them in slippery places: thou castedst them down into destruction.
15040                                                                                                                                                                                                                                                                                                                                                                                                                                                    How are they brought into desolation, as in a moment! they are utterly consumed with terrors.
15041                                                                                                                                                                                                                                                                                                                                                                                                                                                      As a dream when one awaketh; so, O Lord, when thou awakest, thou shalt despise their image.
15042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus my heart was grieved, and I was pricked in my reins.
15043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So foolish was I, and ignorant: I was as a beast before thee.
15044                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nevertheless I am continually with thee: thou hast holden me by my right hand.
15045                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt guide me with thy counsel, and afterward receive me to glory.
15046                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whom have I in heaven but thee? and there is none upon earth that I desire beside thee.
15047                                                                                                                                                                                                                                                                                                                                                                                                                                                     My flesh and my heart faileth: but God is the strength of my heart, and my portion for ever.
15048                                                                                                                                                                                                                                                                                                                                                                                                                                     For, lo, they that are far from thee shall perish: thou hast destroyed all them that go a whoring from thee.
15049                                                                                                                                                                                                                                                                                                                                                                                                                                But it is good for me to draw near to God: I have put my trust in the Lord GOD, that I may declare all thy works.
15050                                                                                                                                                                                                                                                                                                                                                                                                                                          O God, why hast thou cast us off for ever? why doth thine anger smoke against the sheep of thy pasture?
15051                                                                                                                                                                                                                                                                                                                                                                                   Remember thy congregation, which thou hast purchased of old; the rod of thine inheritance, which thou hast redeemed; this mount Zion, wherein thou hast dwelt.
15052                                                                                                                                                                                                                                                                                                                                                                                                                                    Lift up thy feet unto the perpetual desolations; even all that the enemy hath done wickedly in the sanctuary.
15053                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thine enemies roar in the midst of thy congregations; they set up their ensigns for signs.
15054                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A man was famous according as he had lifted up axes upon the thick trees.
15055                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But now they break down the carved work thereof at once with axes and hammers.
15056                                                                                                                                                                                                                                                                                                                                                                                                                          They have cast fire into thy sanctuary, they have defiled by casting down the dwelling place of thy name to the ground.
15057                                                                                                                                                                                                                                                                                                                                                                                                                              They said in their hearts, Let us destroy them together: they have burned up all the synagogues of God in the land.
15058                                                                                                                                                                                                                                                                                                                                                                                                                                         We see not our signs: there is no more any prophet: neither is there among us any that knoweth how long.
15059                                                                                                                                                                                                                                                                                                                                                                                                                                                       O God, how long shall the adversary reproach? shall the enemy blaspheme thy name for ever?
15060                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Why withdrawest thou thy hand, even thy right hand? pluck it out of thy bosom.
15061                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For God is my King of old, working salvation in the midst of the earth.
15062                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou didst divide the sea by thy strength: thou brakest the heads of the dragons in the waters.
15063                                                                                                                                                                                                                                                                                                                                                                                                                                Thou brakest the heads of leviathan in pieces, and gavest him to be meat to the people inhabiting the wilderness.
15064                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou didst cleave the fountain and the flood: thou driedst up mighty rivers.
15065                                                                                                                                                                                                                                                                                                                                                                                                                                                             The day is thine, the night also is thine: thou hast prepared the light and the sun.
15066                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou hast set all the borders of the earth: thou hast made summer and winter.
15067                                                                                                                                                                                                                                                                                                                                                                                                                                     Remember this, that the enemy hath reproached, O LORD, and that the foolish people have blasphemed thy name.
15068                                                                                                                                                                                                                                                                                                                                                                                                                     O deliver not the soul of thy turtledove unto the multitude of the wicked: forget not the congregation of thy poor for ever.
15069                                                                                                                                                                                                                                                                                                                                                                                                                                         Have respect unto the covenant: for the dark places of the earth are full of the habitations of cruelty.
15070                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O let not the oppressed return ashamed: let the poor and needy praise thy name.
15071                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arise, O God, plead thine own cause: remember how the foolish man reproacheth thee daily.
15072                                                                                                                                                                                                                                                                                                                                                                                                                                     Forget not the voice of thine enemies: the tumult of those that rise up against thee increaseth continually.
15073                                                                                                                                                                                                                                                                                                                                                                                                                          Unto thee, O God, do we give thanks, unto thee do we give thanks: for that thy name is near thy wondrous works declare.
15074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When I shall receive the congregation I will judge uprightly.
15075                                                                                                                                                                                                                                                                                                                                                                                                                                                     The earth and all the inhabitants thereof are dissolved: I bear up the pillars of it. Selah.
15076                                                                                                                                                                                                                                                                                                                                                                                                                                                              I said unto the fools, Deal not foolishly: and to the wicked, Lift not up the horn:
15077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lift not up your horn on high: speak not with a stiff neck.
15078                                                                                                                                                                                                                                                                                                                                                                                                                                                               For promotion cometh neither from the east, nor from the west, nor from the south.
15079                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But God is the judge: he putteth down one, and setteth up another.
15080                                                                                                                                                                                                                                                                                                                                 For in the hand of the LORD there is a cup, and the wine is red; it is full of mixture; and he poureth out of the same: but the dregs thereof, all the wicked of the earth shall wring them out, and drink them.
15081                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But I will declare for ever; I will sing praises to the God of Jacob.
15082                                                                                                                                                                                                                                                                                                                                                                                                                                                All the horns of the wicked also will I cut off; but the horns of the righteous shall be exalted.
15083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In Judah is God known: his name is great in Israel.
15084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In Salem also is his tabernacle, and his dwelling place in Zion.
15085                                                                                                                                                                                                                                                                                                                                                                                                                                                          There brake he the arrows of the bow, the shield, and the sword, and the battle. Selah.
15086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou art more glorious and excellent than the mountains of prey.
15087                                                                                                                                                                                                                                                                                                                                                                                                                                  The stouthearted are spoiled, they have slept their sleep: and none of the men of might have found their hands.
15088                                                                                                                                                                                                                                                                                                                                                                                                                                                            At thy rebuke, O God of Jacob, both the chariot and horse are cast into a dead sleep.
15089                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou, even thou, art to be feared: and who may stand in thy sight when once thou art angry?
15090                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou didst cause judgment to be heard from heaven; the earth feared, and was still,
15091                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When God arose to judgment, to save all the meek of the earth. Selah.
15092                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely the wrath of man shall praise thee: the remainder of wrath shalt thou restrain.
15093                                                                                                                                                                                                                                                                                                                                                                                                                            Vow, and pay unto the LORD your God: let all that be round about him bring presents unto him that ought to be feared.
15094                                                                                                                                                                                                                                                                                                                                                                                                                                                                He shall cut off the spirit of princes: he is terrible to the kings of the earth.
15095                                                                                                                                                                                                                                                                                                                                                                                                                                                            I cried unto God with my voice, even unto God with my voice; and he gave ear unto me.
15096                                                                                                                                                                                                                                                                                                                                                                                                                           In the day of my trouble I sought the Lord: my sore ran in the night, and ceased not: my soul refused to be comforted.
15097                                                                                                                                                                                                                                                                                                                                                                                                                                                          I remembered God, and was troubled: I complained, and my spirit was overwhelmed. Selah.
15098                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou holdest mine eyes waking: I am so troubled that I cannot speak.
15099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have considered the days of old, the years of ancient times.
15100                                                                                                                                                                                                                                                                                                                                                                                                                                   I call to remembrance my song in the night: I commune with mine own heart: and my spirit made diligent search.
15101                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Will the Lord cast off for ever? and will he be favourable no more?
15102                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is his mercy clean gone for ever? doth his promise fail for evermore?
15103                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hath God forgotten to be gracious? hath he in anger shut up his tender mercies? Selah.
15104                                                                                                                                                                                                                                                                                                                                                                                                                                              And I said, This is my infirmity: but I will remember the years of the right hand of the most High.
15105                                                                                                                                                                                                                                                                                                                                                                                                                                                                I will remember the works of the LORD: surely I will remember thy wonders of old.
15106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I will meditate also of all thy work, and talk of thy doings.
15107                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thy way, O God, is in the sanctuary: who is so great a God as our God?
15108                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou art the God that doest wonders: thou hast declared thy strength among the people.
15109                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou hast with thine arm redeemed thy people, the sons of Jacob and Joseph. Selah.
15110                                                                                                                                                                                                                                                                                                                                                                                                                                                The waters saw thee, O God, the waters saw thee; they were afraid: the depths also were troubled.
15111                                                                                                                                                                                                                                                                                                                                                                                                                                                          The clouds poured out water: the skies sent out a sound: thine arrows also went abroad.
15112                                                                                                                                                                                                                                                                                                                                                                                                                                    The voice of thy thunder was in the heaven: the lightnings lightened the world: the earth trembled and shook.
15113                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thy way is in the sea, and thy path in the great waters, and thy footsteps are not known.
15114                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou leddest thy people like a flock by the hand of Moses and Aaron.
15115                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Give ear, O my people, to my law: incline your ears to the words of my mouth.
15116                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I will open my mouth in a parable: I will utter dark sayings of old:
15117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Which we have heard and known, and our fathers have told us.
15118                                                                                                                                                                                                                                                                                                                                                                               We will not hide them from their children, shewing to the generation to come the praises of the LORD, and his strength, and his wonderful works that he hath done.
15119                                                                                                                                                                                                                                                                                                                                                                                      For he established a testimony in Jacob, and appointed a law in Israel, which he commanded our fathers, that they should make them known to their children:
15120                                                                                                                                                                                                                                                                                                                                                                                                        That the generation to come might know them, even the children which should be born; who should arise and declare them to their children:
15121                                                                                                                                                                                                                                                                                                                                                                                                                                               That they might set their hope in God, and not forget the works of God, but keep his commandments:
15122                                                                                                                                                                                                                                                                                                                                                                               And might not be as their fathers, a stubborn and rebellious generation; a generation that set not their heart aright, and whose spirit was not stedfast with God.
15123                                                                                                                                                                                                                                                                                                                                                                                                                                                       The children of Ephraim, being armed, and carrying bows, turned back in the day of battle.
15124                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They kept not the covenant of God, and refused to walk in his law;
15125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And forgat his works, and his wonders that he had shewed them.
15126                                                                                                                                                                                                                                                                                                                                                                                                                                              Marvellous things did he in the sight of their fathers, in the land of Egypt, in the field of Zoan.
15127                                                                                                                                                                                                                                                                                                                                                                                                                                                 He divided the sea, and caused them to pass through; and he made the waters to stand as an heap.
15128                                                                                                                                                                                                                                                                                                                                                                                                                                                            In the daytime also he led them with a cloud, and all the night with a light of fire.
15129                                                                                                                                                                                                                                                                                                                                                                                                                                                            He clave the rocks in the wilderness, and gave them drink as out of the great depths.
15130                                                                                                                                                                                                                                                                                                                                                                                                                                                              He brought streams also out of the rock, and caused waters to run down like rivers.
15131                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they sinned yet more against him by provoking the most High in the wilderness.
15132                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they tempted God in their heart by asking meat for their lust.
15133                                                                                                                                                                                                                                                                                                                                                                                                                                                               Yea, they spake against God; they said, Can God furnish a table in the wilderness?
15134                                                                                                                                                                                                                                                                                                                                                                                                  Behold, he smote the rock, that the waters gushed out, and the streams overflowed; can he give bread also? can he provide flesh for his people?
15135                                                                                                                                                                                                                                                                                                                                                                                                                        Therefore the LORD heard this, and was wroth: so a fire was kindled against Jacob, and anger also came up against Israel;
15136                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Because they believed not in God, and trusted not in his salvation:
15137                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Though he had commanded the clouds from above, and opened the doors of heaven,
15138                                                                                                                                                                                                                                                                                                                                                                                                                                                            And had rained down manna upon them to eat, and had given them of the corn of heaven.
15139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Man did eat angels' food: he sent them meat to the full.
15140                                                                                                                                                                                                                                                                                                                                                                                                                                                     He caused an east wind to blow in the heaven: and by his power he brought in the south wind.
15141                                                                                                                                                                                                                                                                                                                                                                                                                                                         He rained flesh also upon them as dust, and feathered fowls like as the sand of the sea:
15142                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he let it fall in the midst of their camp, round about their habitations.
15143                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they did eat, and were well filled: for he gave them their own desire;
15144                                                                                                                                                                                                                                                                                                                                                                                                                                                           They were not estranged from their lust. But while their meat was yet in their mouths,
15145                                                                                                                                                                                                                                                                                                                                                                                                                                          The wrath of God came upon them, and slew the fattest of them, and smote down the chosen men of Israel.
15146                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For all this they sinned still, and believed not for his wondrous works.
15147                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Therefore their days did he consume in vanity, and their years in trouble.
15148                                                                                                                                                                                                                                                                                                                                                                                                                                                         When he slew them, then they sought him: and they returned and enquired early after God.
15149                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they remembered that God was their rock, and the high God their redeemer.
15150                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nevertheless they did flatter him with their mouth, and they lied unto him with their tongues.
15151                                                                                                                                                                                                                                                                                                                                                                                                                                                              For their heart was not right with him, neither were they stedfast in his covenant.
15152                                                                                                                                                                                                                                                                                                                                                                                  But he, being full of compassion, forgave their iniquity, and destroyed them not: yea, many a time turned he his anger away, and did not stir up all his wrath.
15153                                                                                                                                                                                                                                                                                                                                                                                                                                                      For he remembered that they were but flesh; a wind that passeth away, and cometh not again.
15154                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How oft did they provoke him in the wilderness, and grieve him in the desert!
15155                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yea, they turned back and tempted God, and limited the Holy One of Israel.
15156                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They remembered not his hand, nor the day when he delivered them from the enemy.
15157                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How he had wrought his signs in Egypt, and his wonders in the field of Zoan.
15158                                                                                                                                                                                                                                                                                                                                                                                                                                                             And had turned their rivers into blood; and their floods, that they could not drink.
15159                                                                                                                                                                                                                                                                                                                                                                                                                                                  He sent divers sorts of flies among them, which devoured them; and frogs, which destroyed them.
15160                                                                                                                                                                                                                                                                                                                                                                                                                                                              He gave also their increase unto the caterpiller, and their labour unto the locust.
15161                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He destroyed their vines with hail, and their sycomore trees with frost.
15162                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He gave up their cattle also to the hail, and their flocks to hot thunderbolts.
15163                                                                                                                                                                                                                                                                                                                                                                                                                           He cast upon them the fierceness of his anger, wrath, and indignation, and trouble, by sending evil angels among them.
15164                                                                                                                                                                                                                                                                                                                                                                                                                                     He made a way to his anger; he spared not their soul from death, but gave their life over to the pestilence;
15165                                                                                                                                                                                                                                                                                                                                                                                                                                                     And smote all the firstborn in Egypt; the chief of their strength in the tabernacles of Ham:
15166                                                                                                                                                                                                                                                                                                                                                                                                                                                  But made his own people to go forth like sheep, and guided them in the wilderness like a flock.
15167                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he led them on safely, so that they feared not: but the sea overwhelmed their enemies.
15168                                                                                                                                                                                                                                                                                                                                                                                                                                   And he brought them to the border of his sanctuary, even to this mountain, which his right hand had purchased.
15169                                                                                                                                                                                                                                                                                                                                                                                                        He cast out the heathen also before them, and divided them an inheritance by line, and made the tribes of Israel to dwell in their tents.
15170                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Yet they tempted and provoked the most high God, and kept not his testimonies:
15171                                                                                                                                                                                                                                                                                                                                                                                                                                         But turned back, and dealt unfaithfully like their fathers: they were turned aside like a deceitful bow.
15172                                                                                                                                                                                                                                                                                                                                                                                                                                       For they provoked him to anger with their high places, and moved him to jealousy with their graven images.
15173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When God heard this, he was wroth, and greatly abhorred Israel:
15174                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So that he forsook the tabernacle of Shiloh, the tent which he placed among men;
15175                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And delivered his strength into captivity, and his glory into the enemy's hand.
15176                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He gave his people over also unto the sword; and was wroth with his inheritance.
15177                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The fire consumed their young men; and their maidens were not given to marriage.
15178                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Their priests fell by the sword; and their widows made no lamentation.
15179                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then the LORD awaked as one out of sleep, and like a mighty man that shouteth by reason of wine.
15180                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he smote his enemies in the hinder parts: he put them to a perpetual reproach.
15181                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover he refused the tabernacle of Joseph, and chose not the tribe of Ephraim:
15182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But chose the tribe of Judah, the mount Zion which he loved.
15183                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he built his sanctuary like high palaces, like the earth which he hath established for ever.
15184                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He chose David also his servant, and took him from the sheepfolds:
15185                                                                                                                                                                                                                                                                                                                                                                                                                                    From following the ewes great with young he brought him to feed Jacob his people, and Israel his inheritance.
15186                                                                                                                                                                                                                                                                                                                                                                                                                                         So he fed them according to the integrity of his heart; and guided them by the skilfulness of his hands.
15187                                                                                                                                                                                                                                                                                                                                                                                                                        O god, the heathen are come into thine inheritance; thy holy temple have they defiled; they have laid Jerusalem on heaps.
15188                                                                                                                                                                                                                                                                                                                                                                                                   The dead bodies of thy servants have they given to be meat unto the fowls of the heaven, the flesh of thy saints unto the beasts of the earth.
15189                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their blood have they shed like water round about Jerusalem; and there was none to bury them.
15190                                                                                                                                                                                                                                                                                                                                                                                                                                                We are become a reproach to our neighbours, a scorn and derision to them that are round about us.
15191                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How long, LORD? wilt thou be angry for ever? shall thy jealousy burn like fire?
15192                                                                                                                                                                                                                                                                                                                                                                                                                          Pour out thy wrath upon the heathen that have not known thee, and upon the kingdoms that have not called upon thy name.
15193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For they have devoured Jacob, and laid waste his dwelling place.
15194                                                                                                                                                                                                                                                                                                                                                                                                                            O remember not against us former iniquities: let thy tender mercies speedily prevent us: for we are brought very low.
15195                                                                                                                                                                                                                                                                                                                                                                                                                        Help us, O God of our salvation, for the glory of thy name: and deliver us, and purge away our sins, for thy name's sake.
15196                                                                                                                                                                                                                                                                                                                                                                               Wherefore should the heathen say, Where is their God? let him be known among the heathen in our sight by the revenging of the blood of thy servants which is shed.
15197                                                                                                                                                                                                                                                                                                                                                                                                         Let the sighing of the prisoner come before thee; according to the greatness of thy power preserve thou those that are appointed to die;
15198                                                                                                                                                                                                                                                                                                                                                                                                                           And render unto our neighbours sevenfold into their bosom their reproach, wherewith they have reproached thee, O Lord.
15199                                                                                                                                                                                                                                                                                                                                                                                                                      So we thy people and sheep of thy pasture will give thee thanks for ever: we will shew forth thy praise to all generations.
15200                                                                                                                                                                                                                                                                                                                                                                                                                    Give ear, O Shepherd of Israel, thou that leadest Joseph like a flock; thou that dwellest between the cherubims, shine forth.
15201                                                                                                                                                                                                                                                                                                                                                                                                                                                             Before Ephraim and Benjamin and Manasseh stir up thy strength, and come and save us.
15202                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Turn us again, O God, and cause thy face to shine; and we shall be saved.
15203                                                                                                                                                                                                                                                                                                                                                                                                                                                               O LORD God of hosts, how long wilt thou be angry against the prayer of thy people?
15204                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou feedest them with the bread of tears; and givest them tears to drink in great measure.
15205                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou makest us a strife unto our neighbours: and our enemies laugh among themselves.
15206                                                                                                                                                                                                                                                                                                                                                                                                                                                               Turn us again, O God of hosts, and cause thy face to shine; and we shall be saved.
15207                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou hast brought a vine out of Egypt: thou hast cast out the heathen, and planted it.
15208                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou preparedst room before it, and didst cause it to take deep root, and it filled the land.
15209                                                                                                                                                                                                                                                                                                                                                                                                                                                The hills were covered with the shadow of it, and the boughs thereof were like the goodly cedars.
15210                                                                                                                                                                                                                                                                                                                                                                                                                                                                           She sent out her boughs unto the sea, and her branches unto the river.
15211                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why hast thou then broken down her hedges, so that all they which pass by the way do pluck her?
15212                                                                                                                                                                                                                                                                                                                                                                                                                                                          The boar out of the wood doth waste it, and the wild beast of the field doth devour it.
15213                                                                                                                                                                                                                                                                                                                                                                                                                                                 Return, we beseech thee, O God of hosts: look down from heaven, and behold, and visit this vine;
15214                                                                                                                                                                                                                                                                                                                                                                                                                                          And the vineyard which thy right hand hath planted, and the branch that thou madest strong for thyself.
15215                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is burned with fire, it is cut down: they perish at the rebuke of thy countenance.
15216                                                                                                                                                                                                                                                                                                                                                                                                                                         Let thy hand be upon the man of thy right hand, upon the son of man whom thou madest strong for thyself.
15217                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So will not we go back from thee: quicken us, and we will call upon thy name.
15218                                                                                                                                                                                                                                                                                                                                                                                                                                                              Turn us again, O LORD God of hosts, cause thy face to shine; and we shall be saved.
15219                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sing aloud unto God our strength: make a joyful noise unto the God of Jacob.
15220                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Take a psalm, and bring hither the timbrel, the pleasant harp with the psaltery.
15221                                                                                                                                                                                                                                                                                                                                                                                                                                                             Blow up the trumpet in the new moon, in the time appointed, on our solemn feast day.
15222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For this was a statute for Israel, and a law of the God of Jacob.
15223                                                                                                                                                                                                                                                                                                                                                                                                          This he ordained in Joseph for a testimony, when he went out through the land of Egypt: where I heard a language that I understood not.
15224                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I removed his shoulder from the burden: his hands were delivered from the pots.
15225                                                                                                                                                                                                                                                                                                                                                                                                   Thou calledst in trouble, and I delivered thee; I answered thee in the secret place of thunder: I proved thee at the waters of Meribah. Selah.
15226                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hear, O my people, and I will testify unto thee: O Israel, if thou wilt hearken unto me;
15227                                                                                                                                                                                                                                                                                                                                                                                                                                                               There shall no strange god be in thee; neither shalt thou worship any strange god.
15228                                                                                                                                                                                                                                                                                                                                                                                                                                     I am the LORD thy God, which brought thee out of the land of Egypt: open thy mouth wide, and I will fill it.
15229                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But my people would not hearken to my voice; and Israel would none of me.
15230                                                                                                                                                                                                                                                                                                                                                                                                                                                            So I gave them up unto their own hearts' lust: and they walked in their own counsels.
15231                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Oh that my people had hearkened unto me, and Israel had walked in my ways!
15232                                                                                                                                                                                                                                                                                                                                                                                                                                                          I should soon have subdued their enemies, and turned my hand against their adversaries.
15233                                                                                                                                                                                                                                                                                                                                                                                                                                   The haters of the LORD should have submitted themselves unto him: but their time should have endured for ever.
15234                                                                                                                                                                                                                                                                                                                                                                                                                          He should have fed them also with the finest of the wheat: and with honey out of the rock should I have satisfied thee.
15235                                                                                                                                                                                                                                                                                                                                                                                                                                                                       God standeth in the congregation of the mighty; he judgeth among the gods.
15236                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How long will ye judge unjustly, and accept the persons of the wicked? Selah.
15237                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Defend the poor and fatherless: do justice to the afflicted and needy.
15238                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deliver the poor and needy: rid them out of the hand of the wicked.
15239                                                                                                                                                                                                                                                                                                                                                                                                                       They know not, neither will they understand; they walk on in darkness: all the foundations of the earth are out of course.
15240                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I have said, Ye are gods; and all of you are children of the most High.
15241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But ye shall die like men, and fall like one of the princes.
15242                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Arise, O God, judge the earth: for thou shalt inherit all nations.
15243                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Keep not thou silence, O God: hold not thy peace, and be not still, O God.
15244                                                                                                                                                                                                                                                                                                                                                                                                                                                           For, lo, thine enemies make a tumult: and they that hate thee have lifted up the head.
15245                                                                                                                                                                                                                                                                                                                                                                                                                                                        They have taken crafty counsel against thy people, and consulted against thy hidden ones.
15246                                                                                                                                                                                                                                                                                                                                                                                                                        They have said, Come, and let us cut them off from being a nation; that the name of Israel may be no more in remembrance.
15247                                                                                                                                                                                                                                                                                                                                                                                                                                                            For they have consulted together with one consent: they are confederate against thee:
15248                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The tabernacles of Edom, and the Ishmaelites; of Moab, and the Hagarenes;
15249                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gebal, and Ammon, and Amalek; the Philistines with the inhabitants of Tyre;
15250                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Assur also is joined with them: they have holpen the children of Lot. Selah.
15251                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do unto them as unto the Midianites; as to Sisera, as to Jabin, at the brook of Kison:
15252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Which perished at Endor: they became as dung for the earth.
15253                                                                                                                                                                                                                                                                                                                                                                                                                                                    Make their nobles like Oreb, and like Zeeb: yea, all their princes as Zebah, and as Zalmunna:
15254                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who said, Let us take to ourselves the houses of God in possession.
15255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O my God, make them like a wheel; as the stubble before the wind.
15256                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As the fire burneth a wood, and as the flame setteth the mountains on fire;
15257                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So persecute them with thy tempest, and make them afraid with thy storm.
15258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Fill their faces with shame; that they may seek thy name, O LORD.
15259                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let them be confounded and troubled for ever; yea, let them be put to shame, and perish:
15260                                                                                                                                                                                                                                                                                                                                                                                                                                                  That men may know that thou, whose name alone is JEHOVAH, art the most high over all the earth.
15261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How amiable are thy tabernacles, O LORD of hosts!
15262                                                                                                                                                                                                                                                                                                                                                                                                                             My soul longeth, yea, even fainteth for the courts of the LORD: my heart and my flesh crieth out for the living God.
15263                                                                                                                                                                                                                                                                                                                                                                                  Yea, the sparrow hath found an house, and the swallow a nest for herself, where she may lay her young, even thine altars, O LORD of hosts, my King, and my God.
15264                                                                                                                                                                                                                                                                                                                                                                                                                                                               Blessed are they that dwell in thy house: they will be still praising thee. Selah.
15265                                                                                                                                                                                                                                                                                                                                                                                                                                                               Blessed is the man whose strength is in thee; in whose heart are the ways of them.
15266                                                                                                                                                                                                                                                                                                                                                                                                                                                          Who passing through the valley of Baca make it a well; the rain also filleth the pools.
15267                                                                                                                                                                                                                                                                                                                                                                                                                                                               They go from strength to strength, every one of them in Zion appeareth before God.
15268                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O LORD God of hosts, hear my prayer: give ear, O God of Jacob. Selah.
15269                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Behold, O God our shield, and look upon the face of thine anointed.
15270                                                                                                                                                                                                                                                                                                                                                                                                For a day in thy courts is better than a thousand. I had rather be a doorkeeper in the house of my God, than to dwell in the tents of wickedness.
15271                                                                                                                                                                                                                                                                                                                                                                                                          For the LORD God is a sun and shield: the LORD will give grace and glory: no good thing will he withhold from them that walk uprightly.
15272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O LORD of hosts, blessed is the man that trusteth in thee.
15273                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lord, thou hast been favourable unto thy land: thou hast brought back the captivity of Jacob.
15274                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou hast forgiven the iniquity of thy people, thou hast covered all their sin. Selah.
15275                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou hast taken away all thy wrath: thou hast turned thyself from the fierceness of thine anger.
15276                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Turn us, O God of our salvation, and cause thine anger toward us to cease.
15277                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wilt thou be angry with us for ever? wilt thou draw out thine anger to all generations?
15278                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wilt thou not revive us again: that thy people may rejoice in thee?
15279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shew us thy mercy, O LORD, and grant us thy salvation.
15280                                                                                                                                                                                                                                                                                                                                                                                                      I will hear what God the LORD will speak: for he will speak peace unto his people, and to his saints: but let them not turn again to folly.
15281                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely his salvation is nigh them that fear him; that glory may dwell in our land.
15282                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mercy and truth are met together; righteousness and peace have kissed each other.
15283                                                                                                                                                                                                                                                                                                                                                                                                                                                              Truth shall spring out of the earth; and righteousness shall look down from heaven.
15284                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yea, the LORD shall give that which is good; and our land shall yield her increase.
15285                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Righteousness shall go before him; and shall set us in the way of his steps.
15286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bow down thine ear, O LORD, hear me: for I am poor and needy.
15287                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preserve my soul; for I am holy: O thou my God, save thy servant that trusteth in thee.
15288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Be merciful unto me, O Lord: for I cry unto thee daily.
15289                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Rejoice the soul of thy servant: for unto thee, O Lord, do I lift up my soul.
15290                                                                                                                                                                                                                                                                                                                                                                                                                                        For thou, Lord, art good, and ready to forgive; and plenteous in mercy unto all them that call upon thee.
15291                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Give ear, O LORD, unto my prayer; and attend to the voice of my supplications.
15292                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In the day of my trouble I will call upon thee: for thou wilt answer me.
15293                                                                                                                                                                                                                                                                                                                                                                                                                                            Among the gods there is none like unto thee, O Lord; neither are there any works like unto thy works.
15294                                                                                                                                                                                                                                                                                                                                                                                                                                          All nations whom thou hast made shall come and worship before thee, O Lord; and shall glorify thy name.
15295                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For thou art great, and doest wondrous things: thou art God alone.
15296                                                                                                                                                                                                                                                                                                                                                                                                                                                             Teach me thy way, O LORD; I will walk in thy truth: unite my heart to fear thy name.
15297                                                                                                                                                                                                                                                                                                                                                                                                                                                  I will praise thee, O Lord my God, with all my heart: and I will glorify thy name for evermore.
15298                                                                                                                                                                                                                                                                                                                                                                                                                                                          For great is thy mercy toward me: and thou hast delivered my soul from the lowest hell.
15299                                                                                                                                                                                                                                                                                                                                                                                                           O God, the proud are risen against me, and the assemblies of violent men have sought after my soul; and have not set thee before them.
15300                                                                                                                                                                                                                                                                                                                                                                                                                                   But thou, O Lord, art a God full of compassion, and gracious, longsuffering, and plenteous in mercy and truth.
15301                                                                                                                                                                                                                                                                                                                                                                                                                                  O turn unto me, and have mercy upon me; give thy strength unto thy servant, and save the son of thine handmaid.
15302                                                                                                                                                                                                                                                                                                                                                                                                              Shew me a token for good; that they which hate me may see it, and be ashamed: because thou, LORD, hast holpen me, and comforted me.
15303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         His foundation is in the holy mountains.
15304                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD loveth the gates of Zion more than all the dwellings of Jacob.
15305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Glorious things are spoken of thee, O city of God. Selah.
15306                                                                                                                                                                                                                                                                                                                                                                                                               I will make mention of Rahab and Babylon to them that know me: behold Philistia, and Tyre, with Ethiopia; this man was born there.
15307                                                                                                                                                                                                                                                                                                                                                                                                                                    And of Zion it shall be said, This and that man was born in her: and the highest himself shall establish her.
15308                                                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD shall count, when he writeth up the people, that this man was born there. Selah.
15309                                                                                                                                                                                                                                                                                                                                                                                                                                                    As well the singers as the players on instruments shall be there: all my springs are in thee.
15310                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O lord God of my salvation, I have cried day and night before thee:
15311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let my prayer come before thee: incline thine ear unto my cry;
15312                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For my soul is full of troubles: and my life draweth nigh unto the grave.
15313                                                                                                                                                                                                                                                                                                                                                                                                                                                           I am counted with them that go down into the pit: I am as a man that hath no strength:
15314                                                                                                                                                                                                                                                                                                                                                                                                                    Free among the dead, like the slain that lie in the grave, whom thou rememberest no more: and they are cut off from thy hand.
15315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou hast laid me in the lowest pit, in darkness, in the deeps.
15316                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thy wrath lieth hard upon me, and thou hast afflicted me with all thy waves. Selah.
15317                                                                                                                                                                                                                                                                                                                                                                                                             Thou hast put away mine acquaintance far from me; thou hast made me an abomination unto them: I am shut up, and I cannot come forth.
15318                                                                                                                                                                                                                                                                                                                                                                                                                         Mine eye mourneth by reason of affliction: LORD, I have called daily upon thee, I have stretched out my hands unto thee.
15319                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wilt thou shew wonders to the dead? shall the dead arise and praise thee? Selah.
15320                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shall thy lovingkindness be declared in the grave? or thy faithfulness in destruction?
15321                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shall thy wonders be known in the dark? and thy righteousness in the land of forgetfulness?
15322                                                                                                                                                                                                                                                                                                                                                                                                                                                             But unto thee have I cried, O LORD; and in the morning shall my prayer prevent thee.
15323                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LORD, why castest thou off my soul? why hidest thou thy face from me?
15324                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am afflicted and ready to die from my youth up: while I suffer thy terrors I am distracted.
15325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy fierce wrath goeth over me; thy terrors have cut me off.
15326                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They came round about me daily like water; they compassed me about together.
15327                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Lover and friend hast thou put far from me, and mine acquaintance into darkness.
15328                                                                                                                                                                                                                                                                                                                                                                                                                            I will sing of the mercies of the LORD for ever: with my mouth will I make known thy faithfulness to all generations.
15329                                                                                                                                                                                                                                                                                                                                                                                                                                    For I have said, Mercy shall be built up for ever: thy faithfulness shalt thou establish in the very heavens.
15330                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I have made a covenant with my chosen, I have sworn unto David my servant,
15331                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thy seed will I establish for ever, and build up thy throne to all generations. Selah.
15332                                                                                                                                                                                                                                                                                                                                                                                                                                       And the heavens shall praise thy wonders, O LORD: thy faithfulness also in the congregation of the saints.
15333                                                                                                                                                                                                                                                                                                                                                                                                                              For who in the heaven can be compared unto the LORD? who among the sons of the mighty can be likened unto the LORD?
15334                                                                                                                                                                                                                                                                                                                                                                                                                            God is greatly to be feared in the assembly of the saints, and to be had in reverence of all them that are about him.
15335                                                                                                                                                                                                                                                                                                                                                                                                                                               O LORD God of hosts, who is a strong LORD like unto thee? or to thy faithfulness round about thee?
15336                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou rulest the raging of the sea: when the waves thereof arise, thou stillest them.
15337                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou hast broken Rahab in pieces, as one that is slain; thou hast scattered thine enemies with thy strong arm.
15338                                                                                                                                                                                                                                                                                                                                                                                                                                The heavens are thine, the earth also is thine: as for the world and the fulness thereof, thou hast founded them.
15339                                                                                                                                                                                                                                                                                                                                                                                                                                                      The north and the south thou hast created them: Tabor and Hermon shall rejoice in thy name.
15340                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou hast a mighty arm: strong is thy hand, and high is thy right hand.
15341                                                                                                                                                                                                                                                                                                                                                                                                                                                 Justice and judgment are the habitation of thy throne: mercy and truth shall go before thy face.
15342                                                                                                                                                                                                                                                                                                                                                                                                                                      Blessed is the people that know the joyful sound: they shall walk, O LORD, in the light of thy countenance.
15343                                                                                                                                                                                                                                                                                                                                                                                                                                                      In thy name shall they rejoice all the day: and in thy righteousness shall they be exalted.
15344                                                                                                                                                                                                                                                                                                                                                                                                                                                           For thou art the glory of their strength: and in thy favour our horn shall be exalted.
15345                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For the LORD is our defence; and the Holy One of Israel is our king.
15346                                                                                                                                                                                                                                                                                                                                                                                                  Then thou spakest in vision to thy holy one, and saidst, I have laid help upon one that is mighty; I have exalted one chosen out of the people.
15347                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I have found David my servant; with my holy oil have I anointed him:
15348                                                                                                                                                                                                                                                                                                                                                                                                                                                                      With whom my hand shall be established: mine arm also shall strengthen him.
15349                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The enemy shall not exact upon him; nor the son of wickedness afflict him.
15350                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I will beat down his foes before his face, and plague them that hate him.
15351                                                                                                                                                                                                                                                                                                                                                                                                                                                    But my faithfulness and my mercy shall be with him: and in my name shall his horn be exalted.
15352                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will set his hand also in the sea, and his right hand in the rivers.
15353                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He shall cry unto me, Thou art my father, my God, and the rock of my salvation.
15354                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Also I will make him my firstborn, higher than the kings of the earth.
15355                                                                                                                                                                                                                                                                                                                                                                                                                                                            My mercy will I keep for him for evermore, and my covenant shall stand fast with him.
15356                                                                                                                                                                                                                                                                                                                                                                                                                                                              His seed also will I make to endure for ever, and his throne as the days of heaven.
15357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If his children forsake my law, and walk not in my judgments;
15358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If they break my statutes, and keep not my commandments;
15359                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then will I visit their transgression with the rod, and their iniquity with stripes.
15360                                                                                                                                                                                                                                                                                                                                                                                                                                             Nevertheless my lovingkindness will I not utterly take from him, nor suffer my faithfulness to fail.
15361                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My covenant will I not break, nor alter the thing that is gone out of my lips.
15362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Once have I sworn by my holiness that I will not lie unto David.
15363                                                                                                                                                                                                                                                                                                                                                                                                                                                                             His seed shall endure for ever, and his throne as the sun before me.
15364                                                                                                                                                                                                                                                                                                                                                                                                                                                        It shall be established for ever as the moon, and as a faithful witness in heaven. Selah.
15365                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But thou hast cast off and abhorred, thou hast been wroth with thine anointed.
15366                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast made void the covenant of thy servant: thou hast profaned his crown by casting it to the ground.
15367                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou hast broken down all his hedges; thou hast brought his strong holds to ruin.
15368                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All that pass by the way spoil him: he is a reproach to his neighbours.
15369                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou hast set up the right hand of his adversaries; thou hast made all his enemies to rejoice.
15370                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast also turned the edge of his sword, and hast not made him to stand in the battle.
15371                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast made his glory to cease, and cast his throne down to the ground.
15372                                                                                                                                                                                                                                                                                                                                                                                                                                                              The days of his youth hast thou shortened: thou hast covered him with shame. Selah.
15373                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How long, LORD? wilt thou hide thyself for ever? shall thy wrath burn like fire?
15374                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Remember how short my time is: wherefore hast thou made all men in vain?
15375                                                                                                                                                                                                                                                                                                                                                                                                                                What man is he that liveth, and shall not see death? shall he deliver his soul from the hand of the grave? Selah.
15376                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lord, where are thy former lovingkindnesses, which thou swarest unto David in thy truth?
15377                                                                                                                                                                                                                                                                                                                                                                                                                                   Remember, Lord, the reproach of thy servants; how I do bear in my bosom the reproach of all the mighty people;
15378                                                                                                                                                                                                                                                                                                                                                                                                                                 Wherewith thine enemies have reproached, O LORD; wherewith they have reproached the footsteps of thine anointed.
15379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blessed be the LORD for evermore. Amen, and Amen.
15380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lord, thou hast been our dwelling place in all generations.
15381                                                                                                                                                                                                                                                                                                                                                                                                  Before the mountains were brought forth, or ever thou hadst formed the earth and the world, even from everlasting to everlasting, thou art God.
15382                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou turnest man to destruction; and sayest, Return, ye children of men.
15383                                                                                                                                                                                                                                                                                                                                                                                                                                             For a thousand years in thy sight are but as yesterday when it is past, and as a watch in the night.
15384                                                                                                                                                                                                                                                                                                                                                                                                                               Thou carriest them away as with a flood; they are as a sleep: in the morning they are like grass which groweth up.
15385                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the morning it flourisheth, and groweth up; in the evening it is cut down, and withereth.
15386                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For we are consumed by thine anger, and by thy wrath are we troubled.
15387                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast set our iniquities before thee, our secret sins in the light of thy countenance.
15388                                                                                                                                                                                                                                                                                                                                                                                                                                                        For all our days are passed away in thy wrath: we spend our years as a tale that is told.
15389                                                                                                                                                                                                                                                                                                                                                      The days of our years are threescore years and ten; and if by reason of strength they be fourscore years, yet is their strength labour and sorrow; for it is soon cut off, and we fly away.
15390                                                                                                                                                                                                                                                                                                                                                                                                                                                               Who knoweth the power of thine anger? even according to thy fear, so is thy wrath.
15391                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So teach us to number our days, that we may apply our hearts unto wisdom.
15392                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return, O LORD, how long? and let it repent thee concerning thy servants.
15393                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O satisfy us early with thy mercy; that we may rejoice and be glad all our days.
15394                                                                                                                                                                                                                                                                                                                                                                                                                                      Make us glad according to the days wherein thou hast afflicted us, and the years wherein we have seen evil.
15395                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let thy work appear unto thy servants, and thy glory unto their children.
15396                                                                                                                                                                                                                                                                                                                                                                                               And let the beauty of the LORD our God be upon us: and establish thou the work of our hands upon us; yea, the work of our hands establish thou it.
15397                                                                                                                                                                                                                                                                                                                                                                                                                                              He that dwelleth in the secret place of the most High shall abide under the shadow of the Almighty.
15398                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will say of the LORD, He is my refuge and my fortress: my God; in him will I trust.
15399                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely he shall deliver thee from the snare of the fowler, and from the noisome pestilence.
15400                                                                                                                                                                                                                                                                                                                                                                                                                          He shall cover thee with his feathers, and under his wings shalt thou trust: his truth shall be thy shield and buckler.
15401                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not be afraid for the terror by night; nor for the arrow that flieth by day;
15402                                                                                                                                                                                                                                                                                                                                                                                                                                                Nor for the pestilence that walketh in darkness; nor for the destruction that wasteth at noonday.
15403                                                                                                                                                                                                                                                                                                                                                                                                                                          A thousand shall fall at thy side, and ten thousand at thy right hand; but it shall not come nigh thee.
15404                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Only with thine eyes shalt thou behold and see the reward of the wicked.
15405                                                                                                                                                                                                                                                                                                                                                                                                                                                         Because thou hast made the LORD, which is my refuge, even the most High, thy habitation;
15406                                                                                                                                                                                                                                                                                                                                                                                                                                                                There shall no evil befall thee, neither shall any plague come nigh thy dwelling.
15407                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For he shall give his angels charge over thee, to keep thee in all thy ways.
15408                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They shall bear thee up in their hands, lest thou dash thy foot against a stone.
15409                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt tread upon the lion and adder: the young lion and the dragon shalt thou trample under feet.
15410                                                                                                                                                                                                                                                                                                                                                                                                                       Because he hath set his love upon me, therefore will I deliver him: I will set him on high, because he hath known my name.
15411                                                                                                                                                                                                                                                                                                                                                                                                                                 He shall call upon me, and I will answer him: I will be with him in trouble; I will deliver him, and honour him.
15412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    With long life will I satisfy him, and shew him my salvation.
15413                                                                                                                                                                                                                                                                                                                                                                                                                                                 IT IS A GOOD THING TO GIVE THANKS UNTO THE LORD, AND TO SING PRAISES UNTO THY NAME, O MOST HIGH:
15414                                                                                                                                                                                                                                                                                                                                                                                                                                                               To shew forth thy lovingkindness in the morning, and thy faithfulness every night,
15415                                                                                                                                                                                                                                                                                                                                                                                                                                                     Upon an instrument of ten strings, and upon the psaltery; upon the harp with a solemn sound.
15416                                                                                                                                                                                                                                                                                                                                                                                                                                                    For thou, LORD, hast made me glad through thy work: I will triumph in the works of thy hands.
15417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O LORD, how great are thy works! and thy thoughts are very deep.
15418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A brutish man knoweth not; neither doth a fool understand this.
15419                                                                                                                                                                                                                                                                                                                                                                                                              When the wicked spring as the grass, and when all the workers of iniquity do flourish; it is that they shall be destroyed for ever:
15420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But thou, LORD, art most high for evermore.
15421                                                                                                                                                                                                                                                                                                                                                                                                                             For, lo, thine enemies, O LORD, for, lo, thine enemies shall perish; all the workers of iniquity shall be scattered.
15422                                                                                                                                                                                                                                                                                                                                                                                                                                                    But my horn shalt thou exalt like the horn of an unicorn: I shall be anointed with fresh oil.
15423                                                                                                                                                                                                                                                                                                                                                                                                                     Mine eye also shall see my desire on mine enemies, and mine ears shall hear my desire of the wicked that rise up against me.
15424                                                                                                                                                                                                                                                                                                                                                                                                                                                          The righteous shall flourish like the palm tree: he shall grow like a cedar in Lebanon.
15425                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those that be planted in the house of the LORD shall flourish in the courts of our God.
15426                                                                                                                                                                                                                                                                                                                                                                                                                                                                They shall still bring forth fruit in old age; they shall be fat and flourishing;
15427                                                                                                                                                                                                                                                                                                                                                                                                                                                         To shew that the LORD is upright: he is my rock, and there is no unrighteousness in him.
15428                                                                                                                                                                                                                                                                                                                                                                       The LORD reigneth, he is clothed with majesty; the LORD is clothed with strength, wherewith he hath girded himself: the world also is stablished, that it cannot be moved.
15429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy throne is established of old: thou art from everlasting.
15430                                                                                                                                                                                                                                                                                                                                                                                                                                        The floods have lifted up, O LORD, the floods have lifted up their voice; the floods lift up their waves.
15431                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD on high is mightier than the noise of many waters, yea, than the mighty waves of the sea.
15432                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thy testimonies are very sure: holiness becometh thine house, O LORD, for ever.
15433                                                                                                                                                                                                                                                                                                                                                                                                                                                       O Lord God, to whom vengeance belongeth; O God, to whom vengeance belongeth, shew thyself.
15434                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lift up thyself, thou judge of the earth: render a reward to the proud.
15435                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LORD, how long shall the wicked, how long shall the wicked triumph?
15436                                                                                                                                                                                                                                                                                                                                                                                                                                               How long shall they utter and speak hard things? and all the workers of iniquity boast themselves?
15437                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They break in pieces thy people, O LORD, and afflict thine heritage.
15438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They slay the widow and the stranger, and murder the fatherless.
15439                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yet they say, The LORD shall not see, neither shall the God of Jacob regard it.
15440                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Understand, ye brutish among the people: and ye fools, when will ye be wise?
15441                                                                                                                                                                                                                                                                                                                                                                                                                                                            He that planted the ear, shall he not hear? he that formed the eye, shall he not see?
15442                                                                                                                                                                                                                                                                                                                                                                                                                                         He that chastiseth the heathen, shall not he correct? he that teacheth man knowledge, shall not he know?
15443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD knoweth the thoughts of man, that they are vanity.
15444                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blessed is the man whom thou chastenest, O LORD, and teachest him out of thy law;
15445                                                                                                                                                                                                                                                                                                                                                                                                                                               That thou mayest give him rest from the days of adversity, until the pit be digged for the wicked.
15446                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the LORD will not cast off his people, neither will he forsake his inheritance.
15447                                                                                                                                                                                                                                                                                                                                                                                                                                                      But judgment shall return unto righteousness: and all the upright in heart shall follow it.
15448                                                                                                                                                                                                                                                                                                                                                                                                                                      Who will rise up for me against the evildoers? or who will stand up for me against the workers of iniquity?
15449                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Unless the LORD had been my help, my soul had almost dwelt in silence.
15450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When I said, My foot slippeth; thy mercy, O LORD, held me up.
15451                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In the multitude of my thoughts within me thy comforts delight my soul.
15452                                                                                                                                                                                                                                                                                                                                                                                                                                                         Shall the throne of iniquity have fellowship with thee, which frameth mischief by a law?
15453                                                                                                                                                                                                                                                                                                                                                                                                                                               They gather themselves together against the soul of the righteous, and condemn the innocent blood.
15454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the LORD is my defence; and my God is the rock of my refuge.
15455                                                                                                                                                                                                                                                                                                                                                                                                       And he shall bring upon them their own iniquity, and shall cut them off in their own wickedness; yea, the LORD our God shall cut them off.
15456                                                                                                                                                                                                                                                                                                                                                                                                                                                      O come, let us sing unto the LORD: let us make a joyful noise to the rock of our salvation.
15457                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let us come before his presence with thanksgiving, and make a joyful noise unto him with psalms.
15458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For the LORD is a great God, and a great King above all gods.
15459                                                                                                                                                                                                                                                                                                                                                                                                                                                             In his hand are the deep places of the earth: the strength of the hills is his also.
15460                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sea is his, and he made it: and his hands formed the dry land.
15461                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O come, let us worship and bow down: let us kneel before the LORD our maker.
15462                                                                                                                                                                                                                                                                                                                                                                                                                            For he is our God; and we are the people of his pasture, and the sheep of his hand. To day if ye will hear his voice,
15463                                                                                                                                                                                                                                                                                                                                                                                                                                                 Harden not your heart, as in the provocation, and as in the day of temptation in the wilderness:
15464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When your fathers tempted me, proved me, and saw my work.
15465                                                                                                                                                                                                                                                                                                                                                                                                       Forty years long was I grieved with this generation, and said, It is a people that do err in their heart, and they have not known my ways:
15466                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Unto whom I sware in my wrath that they should not enter into my rest.
15467                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O sing unto the LORD a new song: sing unto the LORD, all the earth.
15468                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sing unto the LORD, bless his name; shew forth his salvation from day to day.
15469                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Declare his glory among the heathen, his wonders among all people.
15470                                                                                                                                                                                                                                                                                                                                                                                                                                                             For the LORD is great, and greatly to be praised: he is to be feared above all gods.
15471                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For all the gods of the nations are idols: but the LORD made the heavens.
15472                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Honour and majesty are before him: strength and beauty are in his sanctuary.
15473                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give unto the LORD, O ye kindreds of the people, give unto the LORD glory and strength.
15474                                                                                                                                                                                                                                                                                                                                                                                                                                                     Give unto the LORD the glory due unto his name: bring an offering, and come into his courts.
15475                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O worship the LORD in the beauty of holiness: fear before him, all the earth.
15476                                                                                                                                                                                                                                                                                                                                                                                             Say among the heathen that the LORD reigneth: the world also shall be established that it shall not be moved: he shall judge the people righteously.
15477                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let the heavens rejoice, and let the earth be glad; let the sea roar, and the fulness thereof.
15478                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let the field be joyful, and all that is therein: then shall all the trees of the wood rejoice
15479                                                                                                                                                                                                                                                                                                                                                                                                    Before the LORD: for he cometh, for he cometh to judge the earth: he shall judge the world with righteousness, and the people with his truth.
15480                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD reigneth; let the earth rejoice; let the multitude of isles be glad thereof.
15481                                                                                                                                                                                                                                                                                                                                                                                                                                            Clouds and darkness are round about him: righteousness and judgment are the habitation of his throne.
15482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 A fire goeth before him, and burneth up his enemies round about.
15483                                                                                                                                                                                                                                                                                                                                                                                                                                                                               His lightnings enlightened the world: the earth saw, and trembled.
15484                                                                                                                                                                                                                                                                                                                                                                                                                                           The hills melted like wax at the presence of the LORD, at the presence of the Lord of the whole earth.
15485                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The heavens declare his righteousness, and all the people see his glory.
15486                                                                                                                                                                                                                                                                                                                                                                                                                                       Confounded be all they that serve graven images, that boast themselves of idols: worship him, all ye gods.
15487                                                                                                                                                                                                                                                                                                                                                                                                                                                  Zion heard, and was glad; and the daughters of Judah rejoiced because of thy judgments, O LORD.
15488                                                                                                                                                                                                                                                                                                                                                                                                                                                               For thou, LORD, art high above all the earth: thou art exalted far above all gods.
15489                                                                                                                                                                                                                                                                                                                                                                                                                       Ye that love the LORD, hate evil: he preserveth the souls of his saints; he delivereth them out of the hand of the wicked.
15490                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Light is sown for the righteous, and gladness for the upright in heart.
15491                                                                                                                                                                                                                                                                                                                                                                                                                                                           Rejoice in the LORD, ye righteous; and give thanks at the remembrance of his holiness.
15492                                                                                                                                                                                                                                                                                                                                                                                                              O sing unto the LORD a new song; for he hath done marvellous things: his right hand, and his holy arm, hath gotten him the victory.
15493                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD hath made known his salvation: his righteousness hath he openly shewed in the sight of the heathen.
15494                                                                                                                                                                                                                                                                                                                                                                                                             He hath remembered his mercy and his truth toward the house of Israel: all the ends of the earth have seen the salvation of our God.
15495                                                                                                                                                                                                                                                                                                                                                                                                                                               Make a joyful noise unto the LORD, all the earth: make a loud noise, and rejoice, and sing praise.
15496                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Sing unto the LORD with the harp; with the harp, and the voice of a psalm.
15497                                                                                                                                                                                                                                                                                                                                                                                                                                                                 With trumpets and sound of cornet make a joyful noise before the LORD, the King.
15498                                                                                                                                                                                                                                                                                                                                                                                                                                                               Let the sea roar, and the fulness thereof; the world, and they that dwell therein.
15499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let the floods clap their hands: let the hills be joyful together
15500                                                                                                                                                                                                                                                                                                                                                                                                                      Before the LORD; for he cometh to judge the earth: with righteousness shall he judge the world, and the people with equity.
15501                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD reigneth; let the people tremble: he sitteth between the cherubims; let the earth be moved.
15502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD is great in Zion; and he is high above all the people.
15503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let them praise thy great and terrible name; for it is holy.
15504                                                                                                                                                                                                                                                                                                                                                                                                                        The king's strength also loveth judgment; thou dost establish equity, thou executest judgment and righteousness in Jacob.
15505                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Exalt ye the LORD our God, and worship at his footstool; for he is holy.
15506                                                                                                                                                                                                                                                                                                                                                                                                               Moses and Aaron among his priests, and Samuel among them that call upon his name; they called upon the LORD, and he answered them.
15507                                                                                                                                                                                                                                                                                                                                                                                                                                         He spake unto them in the cloudy pillar: they kept his testimonies, and the ordinance that he gave them.
15508                                                                                                                                                                                                                                                                                                                                                                                                                    Thou answeredst them, O LORD our God: thou wast a God that forgavest them, though thou tookest vengeance of their inventions.
15509                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exalt the LORD our God, and worship at his holy hill; for the LORD our God is holy.
15510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Make a joyful noise unto the LORD, all ye lands.
15511                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Serve the LORD with gladness: come before his presence with singing.
15512                                                                                                                                                                                                                                                                                                                                                                                                              Know ye that the LORD he is God: it is he that hath made us, and not we ourselves; we are his people, and the sheep of his pasture.
15513                                                                                                                                                                                                                                                                                                                                                                                                                               Enter into his gates with thanksgiving, and into his courts with praise: be thankful unto him, and bless his name.
15514                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the LORD is good; his mercy is everlasting; and his truth endureth to all generations.
15515                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I will sing of mercy and judgment: unto thee, O LORD, will I sing.
15516                                                                                                                                                                                                                                                                                                                                                                                                                   I will behave myself wisely in a perfect way. O when wilt thou come unto me? I will walk within my house with a perfect heart.
15517                                                                                                                                                                                                                                                                                                                                                                                                                                 I will set no wicked thing before mine eyes: I hate the work of them that turn aside; it shall not cleave to me.
15518                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A froward heart shall depart from me: I will not know a wicked person.
15519                                                                                                                                                                                                                                                                                                                                                                                                                      Whoso privily slandereth his neighbour, him will I cut off: him that hath an high look and a proud heart will not I suffer.
15520                                                                                                                                                                                                                                                                                                                                                                                                              Mine eyes shall be upon the faithful of the land, that they may dwell with me: he that walketh in a perfect way, he shall serve me.
15521                                                                                                                                                                                                                                                                                                                                                                                                                                        He that worketh deceit shall not dwell within my house: he that telleth lies shall not tarry in my sight.
15522                                                                                                                                                                                                                                                                                                                                                                                                                                  I will early destroy all the wicked of the land; that I may cut off all wicked doers from the city of the LORD.
15523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hear my prayer, O LORD, and let my cry come unto thee.
15524                                                                                                                                                                                                                                                                                                                                                                                                                 Hide not thy face from me in the day when I am in trouble; incline thine ear unto me: in the day when I call answer me speedily.
15525                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For my days are consumed like smoke, and my bones are burned as an hearth.
15526                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My heart is smitten, and withered like grass; so that I forget to eat my bread.
15527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                By reason of the voice of my groaning my bones cleave to my skin.
15528                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I am like a pelican of the wilderness: I am like an owl of the desert.
15529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I watch, and am as a sparrow alone upon the house top.
15530                                                                                                                                                                                                                                                                                                                                                                                                                                                     Mine enemies reproach me all the day; and they that are mad against me are sworn against me.
15531                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For I have eaten ashes like bread, and mingled my drink with weeping.
15532                                                                                                                                                                                                                                                                                                                                                                                                                                                        Because of thine indignation and thy wrath: for thou hast lifted me up, and cast me down.
15533                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My days are like a shadow that declineth; and I am withered like grass.
15534                                                                                                                                                                                                                                                                                                                                                                                                                                                               But thou, O LORD, shall endure for ever; and thy remembrance unto all generations.
15535                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt arise, and have mercy upon Zion: for the time to favour her, yea, the set time, is come.
15536                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For thy servants take pleasure in her stones, and favour the dust thereof.
15537                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the heathen shall fear the name of the LORD, and all the kings of the earth thy glory.
15538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When the LORD shall build up Zion, he shall appear in his glory.
15539                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He will regard the prayer of the destitute, and not despise their prayer.
15540                                                                                                                                                                                                                                                                                                                                                                                                                                   This shall be written for the generation to come: and the people which shall be created shall praise the LORD.
15541                                                                                                                                                                                                                                                                                                                                                                                                                                             For he hath looked down from the height of his sanctuary; from heaven did the LORD behold the earth;
15542                                                                                                                                                                                                                                                                                                                                                                                                                                                                To hear the groaning of the prisoner; to loose those that are appointed to death;
15543                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To declare the name of the LORD in Zion, and his praise in Jerusalem;
15544                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the people are gathered together, and the kingdoms, to serve the LORD.
15545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He weakened my strength in the way; he shortened my days.
15546                                                                                                                                                                                                                                                                                                                                                                                                                                            I said, O my God, take me not away in the midst of my days: thy years are throughout all generations.
15547                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of old hast thou laid the foundation of the earth: and the heavens are the work of thy hands.
15548                                                                                                                                                                                                                                                                                                                                                                                         They shall perish, but thou shalt endure: yea, all of them shall wax old like a garment; as a vesture shalt thou change them, and they shall be changed:
15549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But thou art the same, and thy years shall have no end.
15550                                                                                                                                                                                                                                                                                                                                                                                                                                                    The children of thy servants shall continue, and their seed shall be established before thee.
15551                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bless the LORD, O my soul: and all that is within me, bless his holy name.
15552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bless the LORD, O my soul, and forget not all his benefits:
15553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who forgiveth all thine iniquities; who healeth all thy diseases;
15554                                                                                                                                                                                                                                                                                                                                                                                                                                               Who redeemeth thy life from destruction; who crowneth thee with lovingkindness and tender mercies;
15555                                                                                                                                                                                                                                                                                                                                                                                                                                                        Who satisfieth thy mouth with good things; so that thy youth is renewed like the eagle's.
15556                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD executeth righteousness and judgment for all that are oppressed.
15557                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He made known his ways unto Moses, his acts unto the children of Israel.
15558                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD is merciful and gracious, slow to anger, and plenteous in mercy.
15559                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He will not always chide: neither will he keep his anger for ever.
15560                                                                                                                                                                                                                                                                                                                                                                                                                                                           He hath not dealt with us after our sins; nor rewarded us according to our iniquities.
15561                                                                                                                                                                                                                                                                                                                                                                                                                                                      For as the heaven is high above the earth, so great is his mercy toward them that fear him.
15562                                                                                                                                                                                                                                                                                                                                                                                                                                                          As far as the east is from the west, so far hath he removed our transgressions from us.
15563                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Like as a father pitieth his children, so the LORD pitieth them that fear him.
15564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For he knoweth our frame; he remembereth that we are dust.
15565                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for man, his days are as grass: as a flower of the field, so he flourisheth.
15566                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the wind passeth over it, and it is gone; and the place thereof shall know it no more.
15567                                                                                                                                                                                                                                                                                                                                                                                                            But the mercy of the LORD is from everlasting to everlasting upon them that fear him, and his righteousness unto children's children;
15568                                                                                                                                                                                                                                                                                                                                                                                                                                                            To such as keep his covenant, and to those that remember his commandments to do them.
15569                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD hath prepared his throne in the heavens; and his kingdom ruleth over all.
15570                                                                                                                                                                                                                                                                                                                                                                                                                          Bless the LORD, ye his angels, that excel in strength, that do his commandments, hearkening unto the voice of his word.
15571                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bless ye the LORD, all ye his hosts; ye ministers of his, that do his pleasure.
15572                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bless the LORD, all his works in all places of his dominion: bless the LORD, O my soul.
15573                                                                                                                                                                                                                                                                                                                                                                                                                                         Bless the LORD, O my soul. O LORD my God, thou art very great; thou art clothed with honour and majesty.
15574                                                                                                                                                                                                                                                                                                                                                                                                                                                Who coverest thyself with light as with a garment: who stretchest out the heavens like a curtain:
15575                                                                                                                                                                                                                                                                                                                                                                                                                   Who layeth the beams of his chambers in the waters: who maketh the clouds his chariot: who walketh upon the wings of the wind:
15576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who maketh his angels spirits; his ministers a flaming fire:
15577                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who laid the foundations of the earth, that it should not be removed for ever.
15578                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou coveredst it with the deep as with a garment: the waters stood above the mountains.
15579                                                                                                                                                                                                                                                                                                                                                                                                                                                                           At thy rebuke they fled; at the voice of thy thunder they hasted away.
15580                                                                                                                                                                                                                                                                                                                                                                                                                                        They go up by the mountains; they go down by the valleys unto the place which thou hast founded for them.
15581                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou hast set a bound that they may not pass over; that they turn not again to cover the earth.
15582                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He sendeth the springs into the valleys, which run among the hills.
15583                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They give drink to every beast of the field: the wild asses quench their thirst.
15584                                                                                                                                                                                                                                                                                                                                                                                                                                                      By them shall the fowls of the heaven have their habitation, which sing among the branches.
15585                                                                                                                                                                                                                                                                                                                                                                                                                                                     He watereth the hills from his chambers: the earth is satisfied with the fruit of thy works.
15586                                                                                                                                                                                                                                                                                                                                                                                                                     He causeth the grass to grow for the cattle, and herb for the service of man: that he may bring forth food out of the earth;
15587                                                                                                                                                                                                                                                                                                                                                                                                                        And wine that maketh glad the heart of man, and oil to make his face to shine, and bread which strengtheneth man's heart.
15588                                                                                                                                                                                                                                                                                                                                                                                                                                                             The trees of the LORD are full of sap; the cedars of Lebanon, which he hath planted;
15589                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Where the birds make their nests: as for the stork, the fir trees are her house.
15590                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The high hills are a refuge for the wild goats; and the rocks for the conies.
15591                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He appointed the moon for seasons: the sun knoweth his going down.
15592                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou makest darkness, and it is night: wherein all the beasts of the forest do creep forth.
15593                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The young lions roar after their prey, and seek their meat from God.
15594                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sun ariseth, they gather themselves together, and lay them down in their dens.
15595                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Man goeth forth unto his work and to his labour until the evening.
15596                                                                                                                                                                                                                                                                                                                                                                                                                                          O LORD, how manifold are thy works! in wisdom hast thou made them all: the earth is full of thy riches.
15597                                                                                                                                                                                                                                                                                                                                                                                                                                             So is this great and wide sea, wherein are things creeping innumerable, both small and great beasts.
15598                                                                                                                                                                                                                                                                                                                                                                                                                                                                There go the ships: there is that leviathan, whom thou hast made to play therein.
15599                                                                                                                                                                                                                                                                                                                                                                                                                                                                   These wait all upon thee; that thou mayest give them their meat in due season.
15600                                                                                                                                                                                                                                                                                                                                                                                                                                                           That thou givest them they gather: thou openest thine hand, they are filled with good.
15601                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou hidest thy face, they are troubled: thou takest away their breath, they die, and return to their dust.
15602                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou sendest forth thy spirit, they are created: and thou renewest the face of the earth.
15603                                                                                                                                                                                                                                                                                                                                                                                                                                                                The glory of the LORD shall endure for ever: the LORD shall rejoice in his works.
15604                                                                                                                                                                                                                                                                                                                                                                                                                                                                He looketh on the earth, and it trembleth: he toucheth the hills, and they smoke.
15605                                                                                                                                                                                                                                                                                                                                                                                                                                                 I will sing unto the LORD as long as I live: I will sing praise to my God while I have my being.
15606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 My meditation of him shall be sweet: I will be glad in the LORD.
15607                                                                                                                                                                                                                                                                                                                                                                                                                 Let the sinners be consumed out of the earth, and let the wicked be no more. Bless thou the LORD, O my soul. Praise ye the LORD.
15608                                                                                                                                                                                                                                                                                                                                                                                                                                                          O give thanks unto the LORD; call upon his name: make known his deeds among the people.
15609                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sing unto him, sing psalms unto him: talk ye of all his wondrous works.
15610                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Glory ye in his holy name: let the heart of them rejoice that seek the LORD.
15611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Seek the LORD, and his strength: seek his face evermore.
15612                                                                                                                                                                                                                                                                                                                                                                                                                                                    Remember his marvellous works that he hath done; his wonders, and the judgments of his mouth;
15613                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O ye seed of Abraham his servant, ye children of Jacob his chosen.
15614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is the LORD our God: his judgments are in all the earth.
15615                                                                                                                                                                                                                                                                                                                                                                                                                                                 He hath remembered his covenant for ever, the word which he commanded to a thousand generations.
15616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which covenant he made with Abraham, and his oath unto Isaac;
15617                                                                                                                                                                                                                                                                                                                                                                                                                                                          And confirmed the same unto Jacob for a law, and to Israel for an everlasting covenant:
15618                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Saying, Unto thee will I give the land of Canaan, the lot of your inheritance:
15619                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When they were but a few men in number; yea, very few, and strangers in it.
15620                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When they went from one nation to another, from one kingdom to another people;
15621                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He suffered no man to do them wrong: yea, he reproved kings for their sakes;
15622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Saying, Touch not mine anointed, and do my prophets no harm.
15623                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover he called for a famine upon the land: he brake the whole staff of bread.
15624                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He sent a man before them, even Joseph, who was sold for a servant:
15625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whose feet they hurt with fetters: he was laid in iron:
15626                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Until the time that his word came: the word of the LORD tried him.
15627                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The king sent and loosed him; even the ruler of the people, and let him go free.
15628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He made him lord of his house, and ruler of all his substance:
15629                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To bind his princes at his pleasure; and teach his senators wisdom.
15630                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Israel also came into Egypt; and Jacob sojourned in the land of Ham.
15631                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he increased his people greatly; and made them stronger than their enemies.
15632                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He turned their heart to hate his people, to deal subtilly with his servants.
15633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He sent Moses his servant; and Aaron whom he had chosen.
15634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They shewed his signs among them, and wonders in the land of Ham.
15635                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He sent darkness, and made it dark; and they rebelled not against his word.
15636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He turned their waters into blood, and slew their fish.
15637                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Their land brought forth frogs in abundance, in the chambers of their kings.
15638                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He spake, and there came divers sorts of flies, and lice in all their coasts.
15639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He gave them hail for rain, and flaming fire in their land.
15640                                                                                                                                                                                                                                                                                                                                                                                                                                                              He smote their vines also and their fig trees; and brake the trees of their coasts.
15641                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He spake, and the locusts came, and caterpillers, and that without number,
15642                                                                                                                                                                                                                                                                                                                                                                                                                                                              And did eat up all the herbs in their land, and devoured the fruit of their ground.
15643                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He smote also all the firstborn in their land, the chief of all their strength.
15644                                                                                                                                                                                                                                                                                                                                                                                                                                         He brought them forth also with silver and gold: and there was not one feeble person among their tribes.
15645                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Egypt was glad when they departed: for the fear of them fell upon them.
15646                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He spread a cloud for a covering; and fire to give light in the night.
15647                                                                                                                                                                                                                                                                                                                                                                                                                                                            The people asked, and he brought quails, and satisfied them with the bread of heaven.
15648                                                                                                                                                                                                                                                                                                                                                                                                                                                          He opened the rock, and the waters gushed out; they ran in the dry places like a river.
15649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For he remembered his holy promise, and Abraham his servant.
15650                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he brought forth his people with joy, and his chosen with gladness:
15651                                                                                                                                                                                                                                                                                                                                                                                                                                                             And gave them the lands of the heathen: and they inherited the labour of the people;
15652                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That they might observe his statutes, and keep his laws. Praise ye the LORD.
15653                                                                                                                                                                                                                                                                                                                                                                                                                                                Praise ye the LORD. O give thanks unto the LORD; for he is good: for his mercy endureth for ever.
15654                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Who can utter the mighty acts of the LORD? who can shew forth all his praise?
15655                                                                                                                                                                                                                                                                                                                                                                                                                                                               Blessed are they that keep judgment, and he that doeth righteousness at all times.
15656                                                                                                                                                                                                                                                                                                                                                                                                                                           Remember me, O LORD, with the favour that thou bearest unto thy people: O visit me with thy salvation;
15657                                                                                                                                                                                                                                                                                                                                                                                                                That I may see the good of thy chosen, that I may rejoice in the gladness of thy nation, that I may glory with thine inheritance.
15658                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have sinned with our fathers, we have committed iniquity, we have done wickedly.
15659                                                                                                                                                                                                                                                                                                                                                                                             Our fathers understood not thy wonders in Egypt; they remembered not the multitude of thy mercies; but provoked him at the sea, even at the Red sea.
15660                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nevertheless he saved them for his name's sake, that he might make his mighty power to be known.
15661                                                                                                                                                                                                                                                                                                                                                                                                                                  He rebuked the Red sea also, and it was dried up: so he led them through the depths, as through the wilderness.
15662                                                                                                                                                                                                                                                                                                                                                                                                                                            And he saved them from the hand of him that hated them, and redeemed them from the hand of the enemy.
15663                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the waters covered their enemies: there was not one of them left.
15664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then believed they his words; they sang his praise.
15665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They soon forgat his works; they waited not for his counsel:
15666                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But lusted exceedingly in the wilderness, and tempted God in the desert.
15667                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he gave them their request; but sent leanness into their soul.
15668                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They envied Moses also in the camp, and Aaron the saint of the LORD.
15669                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The earth opened and swallowed up Dathan and covered the company of Abiram.
15670                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And a fire was kindled in their company; the flame burned up the wicked.
15671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They made a calf in Horeb, and worshipped the molten image.
15672                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus they changed their glory into the similitude of an ox that eateth grass.
15673                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They forgat God their saviour, which had done great things in Egypt;
15674                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wondrous works in the land of Ham, and terrible things by the Red sea.
15675                                                                                                                                                                                                                                                                                                                                                                                      Therefore he said that he would destroy them, had not Moses his chosen stood before him in the breach, to turn away his wrath, lest he should destroy them.
15676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yea, they despised the pleasant land, they believed not his word:
15677                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But murmured in their tents, and hearkened not unto the voice of the LORD.
15678                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore he lifted up his hand against them, to overthrow them in the wilderness:
15679                                                                                                                                                                                                                                                                                                                                                                                                                                                                To overthrow their seed also among the nations, and to scatter them in the lands.
15680                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They joined themselves also unto Baalpeor, and ate the sacrifices of the dead.
15681                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus they provoked him to anger with their inventions: and the plague brake in upon them.
15682                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then stood up Phinehas, and executed judgment: and so the plague was stayed.
15683                                                                                                                                                                                                                                                                                                                                                                                                                                                               And that was counted unto him for righteousness unto all generations for evermore.
15684                                                                                                                                                                                                                                                                                                                                                                                                                                                   They angered him also at the waters of strife, so that it went ill with Moses for their sakes:
15685                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Because they provoked his spirit, so that he spake unadvisedly with his lips.
15686                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They did not destroy the nations, concerning whom the LORD commanded them:
15687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But were mingled among the heathen, and learned their works.
15688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they served their idols: which were a snare unto them.
15689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Yea, they sacrificed their sons and their daughters unto devils,
15690                                                                                                                                                                                                                                                                                                                                                                               And shed innocent blood, even the blood of their sons and of their daughters, whom they sacrificed unto the idols of Canaan: and the land was polluted with blood.
15691                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thus were they defiled with their own works, and went a whoring with their own inventions.
15692                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore was the wrath of the LORD kindled against his people, insomuch that he abhorred his own inheritance.
15693                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he gave them into the hand of the heathen; and they that hated them ruled over them.
15694                                                                                                                                                                                                                                                                                                                                                                                                                                                       Their enemies also oppressed them, and they were brought into subjection under their hand.
15695                                                                                                                                                                                                                                                                                                                                                                                                                               Many times did he deliver them; but they provoked him with their counsel, and were brought low for their iniquity.
15696                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Nevertheless he regarded their affliction, when he heard their cry:
15697                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he remembered for them his covenant, and repented according to the multitude of his mercies.
15698                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He made them also to be pitied of all those that carried them captives.
15699                                                                                                                                                                                                                                                                                                                                                                                                                  Save us, O LORD our God, and gather us from among the heathen, to give thanks unto thy holy name, and to triumph in thy praise.
15700                                                                                                                                                                                                                                                                                                                                                                                                                         Blessed be the LORD God of Israel from everlasting to everlasting: and let all the people say, Amen. Praise ye the LORD.
15701                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O give thanks unto the LORD, for he is good: for his mercy endureth for ever.
15702                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let the redeemed of the LORD say so, whom he hath redeemed from the hand of the enemy;
15703                                                                                                                                                                                                                                                                                                                                                                                                                                        And gathered them out of the lands, from the east, and from the west, from the north, and from the south.
15704                                                                                                                                                                                                                                                                                                                                                                                                                                                               They wandered in the wilderness in a solitary way; they found no city to dwell in.
15705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hungry and thirsty, their soul fainted in them.
15706                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then they cried unto the LORD in their trouble, and he delivered them out of their distresses.
15707                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he led them forth by the right way, that they might go to a city of habitation.
15708                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!
15709                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For he satisfieth the longing soul, and filleth the hungry soul with goodness.
15710                                                                                                                                                                                                                                                                                                                                                                                                                                                          Such as sit in darkness and in the shadow of death, being bound in affliction and iron;
15711                                                                                                                                                                                                                                                                                                                                                                                                                                                      Because they rebelled against the words of God, and contemned the counsel of the most High:
15712                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore he brought down their heart with labour; they fell down, and there was none to help.
15713                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then they cried unto the LORD in their trouble, and he saved them out of their distresses.
15714                                                                                                                                                                                                                                                                                                                                                                                                                                                        He brought them out of darkness and the shadow of death, and brake their bands in sunder.
15715                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!
15716                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For he hath broken the gates of brass, and cut the bars of iron in sunder.
15717                                                                                                                                                                                                                                                                                                                                                                                                                                                            Fools because of their transgression, and because of their iniquities, are afflicted.
15718                                                                                                                                                                                                                                                                                                                                                                                                                                                             Their soul abhorreth all manner of meat; and they draw near unto the gates of death.
15719                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then they cry unto the LORD in their trouble, and he saveth them out of their distresses.
15720                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He sent his word, and healed them, and delivered them from their destructions.
15721                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!
15722                                                                                                                                                                                                                                                                                                                                                                                                                                                     And let them sacrifice the sacrifices of thanksgiving, and declare his works with rejoicing.
15723                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They that go down to the sea in ships, that do business in great waters;
15724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These see the works of the LORD, and his wonders in the deep.
15725                                                                                                                                                                                                                                                                                                                                                                                                                                                              For he commandeth, and raiseth the stormy wind, which lifteth up the waves thereof.
15726                                                                                                                                                                                                                                                                                                                                                                                                                                          They mount up to the heaven, they go down again to the depths: their soul is melted because of trouble.
15727                                                                                                                                                                                                                                                                                                                                                                                                                                                                They reel to and fro, and stagger like a drunken man, and are at their wit's end.
15728                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then they cry unto the LORD in their trouble, and he bringeth them out of their distresses.
15729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He maketh the storm a calm, so that the waves thereof are still.
15730                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then are they glad because they be quiet; so he bringeth them unto their desired haven.
15731                                                                                                                                                                                                                                                                                                                                                                                                                                          Oh that men would praise the LORD for his goodness, and for his wonderful works to the children of men!
15732                                                                                                                                                                                                                                                                                                                                                                                                                                         Let them exalt him also in the congregation of the people, and praise him in the assembly of the elders.
15733                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He turneth rivers into a wilderness, and the watersprings into dry ground;
15734                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A fruitful land into barrenness, for the wickedness of them that dwell therein.
15735                                                                                                                                                                                                                                                                                                                                                                                                                                                               He turneth the wilderness into a standing water, and dry ground into watersprings.
15736                                                                                                                                                                                                                                                                                                                                                                                                                                                            And there he maketh the hungry to dwell, that they may prepare a city for habitation;
15737                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And sow the fields, and plant vineyards, which may yield fruits of increase.
15738                                                                                                                                                                                                                                                                                                                                                                                                                                          He blesseth them also, so that they are multiplied greatly; and suffereth not their cattle to decrease.
15739                                                                                                                                                                                                                                                                                                                                                                                                                                                             Again, they are minished and brought low through oppression, affliction, and sorrow.
15740                                                                                                                                                                                                                                                                                                                                                                                                                                           He poureth contempt upon princes, and causeth them to wander in the wilderness, where there is no way.
15741                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet setteth he the poor on high from affliction, and maketh him families like a flock.
15742                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The righteous shall see it, and rejoice: and all iniquity shall stop her mouth.
15743                                                                                                                                                                                                                                                                                                                                                                                                                                         Whoso is wise, and will observe these things, even they shall understand the lovingkindness of the LORD.
15744                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O god, my heart is fixed; I will sing and give praise, even with my glory.
15745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Awake, psaltery and harp: I myself will awake early.
15746                                                                                                                                                                                                                                                                                                                                                                                                                                               I will praise thee, O LORD, among the people: and I will sing praises unto thee among the nations.
15747                                                                                                                                                                                                                                                                                                                                                                                                                                                                For thy mercy is great above the heavens: and thy truth reacheth unto the clouds.
15748                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Be thou exalted, O God, above the heavens: and thy glory above all the earth;
15749                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That thy beloved may be delivered: save with thy right hand, and answer me.
15750                                                                                                                                                                                                                                                                                                                                                                                                                                      God hath spoken in his holiness; I will rejoice, I will divide Shechem, and mete out the valley of Succoth.
15751                                                                                                                                                                                                                                                                                                                                                                                                                                               Gilead is mine; Manasseh is mine; Ephraim also is the strength of mine head; Judah is my lawgiver;
15752                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moab is my washpot; over Edom will I cast out my shoe; over Philistia will I triumph.
15753                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who will bring me into the strong city? who will lead me into Edom?
15754                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wilt not thou, O God, who hast cast us off? and wilt not thou, O God, go forth with our hosts?
15755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give us help from trouble: for vain is the help of man.
15756                                                                                                                                                                                                                                                                                                                                                                                                                                                               Through God we shall do valiantly: for he it is that shall tread down our enemies.
15757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hold not thy peace, O God of my praise;
15758                                                                                                                                                                                                                                                                                                                                                                                                               For the mouth of the wicked and the mouth of the deceitful are opened against me: they have spoken against me with a lying tongue.
15759                                                                                                                                                                                                                                                                                                                                                                                                                                                        They compassed me about also with words of hatred; and fought against me without a cause.
15760                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For my love they are my adversaries: but I give myself unto prayer.
15761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they have rewarded me evil for good, and hatred for my love.
15762                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Set thou a wicked man over him: and let Satan stand at his right hand.
15763                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When he shall be judged, let him be condemned: and let his prayer become sin.
15764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let his days be few; and let another take his office.
15765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let his children be fatherless, and his wife a widow.
15766                                                                                                                                                                                                                                                                                                                                                                                                                                 Let his children be continually vagabonds, and beg: let them seek their bread also out of their desolate places.
15767                                                                                                                                                                                                                                                                                                                                                                                                                                                              Let the extortioner catch all that he hath; and let the strangers spoil his labour.
15768                                                                                                                                                                                                                                                                                                                                                                                                                                          Let there be none to extend mercy unto him: neither let there be any to favour his fatherless children.
15769                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let his posterity be cut off; and in the generation following let their name be blotted out.
15770                                                                                                                                                                                                                                                                                                                                                                                                                                   Let the iniquity of his fathers be remembered with the LORD; and let not the sin of his mother be blotted out.
15771                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let them be before the LORD continually, that he may cut off the memory of them from the earth.
15772                                                                                                                                                                                                                                                                                                                                                                                                                Because that he remembered not to shew mercy, but persecuted the poor and needy man, that he might even slay the broken in heart.
15773                                                                                                                                                                                                                                                                                                                                                                                                                                        As he loved cursing, so let it come unto him: as he delighted not in blessing, so let it be far from him.
15774                                                                                                                                                                                                                                                                                                                                                                                                             As he clothed himself with cursing like as with his garment, so let it come into his bowels like water, and like oil into his bones.
15775                                                                                                                                                                                                                                                                                                                                                                                                                                       Let it be unto him as the garment which covereth him, and for a girdle wherewith he is girded continually.
15776                                                                                                                                                                                                                                                                                                                                                                                                                                           Let this be the reward of mine adversaries from the LORD, and of them that speak evil against my soul.
15777                                                                                                                                                                                                                                                                                                                                                                                                                                             But do thou for me, O GOD the Lord, for thy name's sake: because thy mercy is good, deliver thou me.
15778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For I am poor and needy, and my heart is wounded within me.
15779                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am gone like the shadow when it declineth: I am tossed up and down as the locust.
15780                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My knees are weak through fasting; and my flesh faileth of fatness.
15781                                                                                                                                                                                                                                                                                                                                                                                                                                                            I became also a reproach unto them: when they looked upon me they shaked their heads.
15782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Help me, O LORD my God: O save me according to thy mercy:
15783                                                                                                                                                                                                                                                                                                                                                                                                                                                                         That they may know that this is thy hand; that thou, LORD, hast done it.
15784                                                                                                                                                                                                                                                                                                                                                                                                                                               Let them curse, but bless thou: when they arise, let them be ashamed; but let thy servant rejoice.
15785                                                                                                                                                                                                                                                                                                                                                                                                                            Let mine adversaries be clothed with shame, and let them cover themselves with their own confusion, as with a mantle.
15786                                                                                                                                                                                                                                                                                                                                                                                                                                                        I will greatly praise the LORD with my mouth; yea, I will praise him among the multitude.
15787                                                                                                                                                                                                                                                                                                                                                                                                                                                  For he shall stand at the right hand of the poor, to save him from those that condemn his soul.
15788                                                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD said unto my Lord, Sit thou at my right hand, until I make thine enemies thy footstool.
15789                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD shall send the rod of thy strength out of Zion: rule thou in the midst of thine enemies.
15790                                                                                                                                                                                                                                                                                                                                                                                                   Thy people shall be willing in the day of thy power, in the beauties of holiness from the womb of the morning: thou hast the dew of thy youth.
15791                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD hath sworn, and will not repent, Thou art a priest for ever after the order of Melchizedek.
15792                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Lord at thy right hand shall strike through kings in the day of his wrath.
15793                                                                                                                                                                                                                                                                                                                                                                                                                   He shall judge among the heathen, he shall fill the places with the dead bodies; he shall wound the heads over many countries.
15794                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He shall drink of the brook in the way: therefore shall he lift up the head.
15795                                                                                                                                                                                                                                                                                                                                                                                                                         Praise ye the LORD. I will praise the LORD with my whole heart, in the assembly of the upright, and in the congregation.
15796                                                                                                                                                                                                                                                                                                                                                                                                                                                              The works of the LORD are great, sought out of all them that have pleasure therein.
15797                                                                                                                                                                                                                                                                                                                                                                                                                                                                    His work is honourable and glorious: and his righteousness endureth for ever.
15798                                                                                                                                                                                                                                                                                                                                                                                                                                                  He hath made his wonderful works to be remembered: the LORD is gracious and full of compassion.
15799                                                                                                                                                                                                                                                                                                                                                                                                                                                             He hath given meat unto them that fear him: he will ever be mindful of his covenant.
15800                                                                                                                                                                                                                                                                                                                                                                                                                                             He hath shewed his people the power of his works, that he may give them the heritage of the heathen.
15801                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The works of his hands are verity and judgment; all his commandments are sure.
15802                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They stand fast for ever and ever, and are done in truth and uprightness.
15803                                                                                                                                                                                                                                                                                                                                                                                                                                      He sent redemption unto his people: he hath commanded his covenant for ever: holy and reverend is his name.
15804                                                                                                                                                                                                                                                                                                                                                                                                      The fear of the LORD is the beginning of wisdom: a good understanding have all they that do his commandments: his praise endureth for ever.
15805                                                                                                                                                                                                                                                                                                                                                                                                                                       Praise ye the LORD. Blessed is the man that feareth the LORD, that delighteth greatly in his commandments.
15806                                                                                                                                                                                                                                                                                                                                                                                                                                                             His seed shall be mighty upon earth: the generation of the upright shall be blessed.
15807                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wealth and riches shall be in his house: and his righteousness endureth for ever.
15808                                                                                                                                                                                                                                                                                                                                                                                                                                     Unto the upright there ariseth light in the darkness: he is gracious, and full of compassion, and righteous.
15809                                                                                                                                                                                                                                                                                                                                                                                                                                                               A good man sheweth favour, and lendeth: he will guide his affairs with discretion.
15810                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely he shall not be moved for ever: the righteous shall be in everlasting remembrance.
15811                                                                                                                                                                                                                                                                                                                                                                                                                                                                He shall not be afraid of evil tidings: his heart is fixed, trusting in the LORD.
15812                                                                                                                                                                                                                                                                                                                                                                                                                                                      His heart is established, he shall not be afraid, until he see his desire upon his enemies.
15813                                                                                                                                                                                                                                                                                                                                                                                                                        He hath dispersed, he hath given to the poor; his righteousness endureth for ever; his horn shall be exalted with honour.
15814                                                                                                                                                                                                                                                                                                                                                                                                                    The wicked shall see it, and be grieved; he shall gnash with his teeth, and melt away: the desire of the wicked shall perish.
15815                                                                                                                                                                                                                                                                                                                                                                                                                                                              Praise ye the LORD. Praise, O ye servants of the LORD, praise the name of the LORD.
15816                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Blessed be the name of the LORD from this time forth and for evermore.
15817                                                                                                                                                                                                                                                                                                                                                                                                                                                     From the rising of the sun unto the going down of the same the LORD's name is to be praised.
15818                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD is high above all nations, and his glory above the heavens.
15819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who is like unto the LORD our God, who dwelleth on high,
15820                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who humbleth himself to behold the things that are in heaven, and in the earth!
15821                                                                                                                                                                                                                                                                                                                                                                                                                                                               He raiseth up the poor out of the dust, and lifteth the needy out of the dunghill;
15822                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That he may set him with princes, even with the princes of his people.
15823                                                                                                                                                                                                                                                                                                                                                                                                                                             He maketh the barren woman to keep house, and to be a joyful mother of children. Praise ye the LORD.
15824                                                                                                                                                                                                                                                                                                                                                                                                                                                             When Israel went out of Egypt, the house of Jacob from a people of strange language;
15825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Judah was his sanctuary, and Israel his dominion.
15826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The sea saw it, and fled: Jordan was driven back.
15827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The mountains skipped like rams, and the little hills like lambs.
15828                                                                                                                                                                                                                                                                                                                                                                                                                                                        What ailed thee, O thou sea, that thou fleddest? thou Jordan, that thou wast driven back?
15829                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye mountains, that ye skipped like rams; and ye little hills, like lambs?
15830                                                                                                                                                                                                                                                                                                                                                                                                                                                           Tremble, thou earth, at the presence of the Lord, at the presence of the God of Jacob;
15831                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which turned the rock into a standing water, the flint into a fountain of waters.
15832                                                                                                                                                                                                                                                                                                                                                                                                                                         Not unto us, O LORD, not unto us, but unto thy name give glory, for thy mercy, and for thy truth's sake.
15833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wherefore should the heathen say, Where is now their God?
15834                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But our God is in the heavens: he hath done whatsoever he hath pleased.
15835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Their idols are silver and gold, the work of men's hands.
15836                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They have mouths, but they speak not: eyes have they, but they see not:
15837                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They have ears, but they hear not: noses have they, but they smell not:
15838                                                                                                                                                                                                                                                                                                                                                                                                                                They have hands, but they handle not: feet have they, but they walk not: neither speak they through their throat.
15839                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They that make them are like unto them; so is every one that trusteth in them.
15840                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Israel, trust thou in the LORD: he is their help and their shield.
15841                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O house of Aaron, trust in the LORD: he is their help and their shield.
15842                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ye that fear the LORD, trust in the LORD: he is their help and their shield.
15843                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD hath been mindful of us: he will bless us; he will bless the house of Israel; he will bless the house of Aaron.
15844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He will bless them that fear the LORD, both small and great.
15845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD shall increase you more and more, you and your children.
15846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye are blessed of the LORD which made heaven and earth.
15847                                                                                                                                                                                                                                                                                                                                                                                                                                                The heaven, even the heavens, are the LORD's: but the earth hath he given to the children of men.
15848                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The dead praise not the LORD, neither any that go down into silence.
15849                                                                                                                                                                                                                                                                                                                                                                                                                                                               But we will bless the LORD from this time forth and for evermore. Praise the LORD.
15850                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I love the LORD, because he hath heard my voice and my supplications.
15851                                                                                                                                                                                                                                                                                                                                                                                                                                                      Because he hath inclined his ear unto me, therefore will I call upon him as long as I live.
15852                                                                                                                                                                                                                                                                                                                                                                                                                                           The sorrows of death compassed me, and the pains of hell gat hold upon me: I found trouble and sorrow.
15853                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then called I upon the name of the LORD; O LORD, I beseech thee, deliver my soul.
15854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Gracious is the LORD, and righteous; yea, our God is merciful.
15855                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD preserveth the simple: I was brought low, and he helped me.
15856                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return unto thy rest, O my soul; for the LORD hath dealt bountifully with thee.
15857                                                                                                                                                                                                                                                                                                                                                                                                                                                      For thou hast delivered my soul from death, mine eyes from tears, and my feet from falling.
15858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will walk before the LORD in the land of the living.
15859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I believed, therefore have I spoken: I was greatly afflicted:
15860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I said in my haste, All men are liars.
15861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What shall I render unto the LORD for all his benefits toward me?
15862                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will take the cup of salvation, and call upon the name of the LORD.
15863                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will pay my vows unto the LORD now in the presence of all his people.
15864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Precious in the sight of the LORD is the death of his saints.
15865                                                                                                                                                                                                                                                                                                                                                                                                                                      O LORD, truly I am thy servant; I am thy servant, and the son of thine handmaid: thou hast loosed my bonds.
15866                                                                                                                                                                                                                                                                                                                                                                                                                                                     I will offer to thee the sacrifice of thanksgiving, and will call upon the name of the LORD.
15867                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will pay my vows unto the LORD now in the presence of all his people.
15868                                                                                                                                                                                                                                                                                                                                                                                                                                                        In the courts of the LORD's house, in the midst of thee, O Jerusalem. Praise ye the LORD.
15869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O praise the LORD, all ye nations: praise him, all ye people.
15870                                                                                                                                                                                                                                                                                                                                                                                                                                   For his merciful kindness is great toward us: and the truth of the LORD endureth for ever. Praise ye the LORD.
15871                                                                                                                                                                                                                                                                                                                                                                                                                                                                O give thanks unto the LORD; for he is good: because his mercy endureth for ever.
15872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let Israel now say, that his mercy endureth for ever.
15873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let the house of Aaron now say, that his mercy endureth for ever.
15874                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let them now that fear the LORD say, that his mercy endureth for ever.
15875                                                                                                                                                                                                                                                                                                                                                                                                                                                           I called upon the LORD in distress: the LORD answered me, and set me in a large place.
15876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD is on my side; I will not fear: what can man do unto me?
15877                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD taketh my part with them that help me: therefore shall I see my desire upon them that hate me.
15878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is better to trust in the LORD than to put confidence in man.
15879                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is better to trust in the LORD than to put confidence in princes.
15880                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All nations compassed me about: but in the name of the LORD will I destroy them.
15881                                                                                                                                                                                                                                                                                                                                                                                                                                          They compassed me about; yea, they compassed me about: but in the name of the LORD I will destroy them.
15882                                                                                                                                                                                                                                                                                                                                                                                                                     They compassed me about like bees: they are quenched as the fire of thorns: for in the name of the LORD I will destroy them.
15883                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou hast thrust sore at me that I might fall: but the LORD helped me.
15884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD is my strength and song, and is become my salvation.
15885                                                                                                                                                                                                                                                                                                                                                                                                                         The voice of rejoicing and salvation is in the tabernacles of the righteous: the right hand of the LORD doeth valiantly.
15886                                                                                                                                                                                                                                                                                                                                                                                                                                                               The right hand of the LORD is exalted: the right hand of the LORD doeth valiantly.
15887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I shall not die, but live, and declare the works of the LORD.
15888                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD hath chastened me sore: but he hath not given me over unto death.
15889                                                                                                                                                                                                                                                                                                                                                                                                                                                          Open to me the gates of righteousness: I will go into them, and I will praise the LORD:
15890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This gate of the LORD, into which the righteous shall enter.
15891                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will praise thee: for thou hast heard me, and art become my salvation.
15892                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The stone which the builders refused is become the head stone of the corner.
15893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is the LORD's doing; it is marvellous in our eyes.
15894                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the day which the LORD hath made; we will rejoice and be glad in it.
15895                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Save now, I beseech thee, O LORD: O LORD, I beseech thee, send now prosperity.
15896                                                                                                                                                                                                                                                                                                                                                                                                                                             Blessed be he that cometh in the name of the LORD: we have blessed you out of the house of the LORD.
15897                                                                                                                                                                                                                                                                                                                                                                                                                                    God is the LORD, which hath shewed us light: bind the sacrifice with cords, even unto the horns of the altar.
15898                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou art my God, and I will praise thee: thou art my God, I will exalt thee.
15899                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O give thanks unto the LORD; for he is good: for his mercy endureth for ever.
15900                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Blessed are the undefiled in the way, who walk in the law of the LORD.
15901                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blessed are they that keep his testimonies, and that seek him with the whole heart.
15902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They also do no iniquity: they walk in his ways.
15903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou hast commanded us to keep thy precepts diligently.
15904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O that my ways were directed to keep thy statutes!
15905                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then shall I not be ashamed, when I have respect unto all thy commandments.
15906                                                                                                                                                                                                                                                                                                                                                                                                                                                 I will praise thee with uprightness of heart, when I shall have learned thy righteous judgments.
15907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I will keep thy statutes: O forsake me not utterly.
15908                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wherewithal shall a young man cleanse his way? by taking heed thereto according to thy word.
15909                                                                                                                                                                                                                                                                                                                                                                                                                                                               With my whole heart have I sought thee: O let me not wander from thy commandments.
15910                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thy word have I hid in mine heart, that I might not sin against thee.
15911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blessed art thou, O LORD: teach me thy statutes.
15912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     With my lips have I declared all the judgments of thy mouth.
15913                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have rejoiced in the way of thy testimonies, as much as in all riches.
15914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I will meditate in thy precepts, and have respect unto thy ways.
15915                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I will delight myself in thy statutes: I will not forget thy word.
15916                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Deal bountifully with thy servant, that I may live, and keep thy word.
15917                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Open thou mine eyes, that I may behold wondrous things out of thy law.
15918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am a stranger in the earth: hide not thy commandments from me.
15919                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My soul breaketh for the longing that it hath unto thy judgments at all times.
15920                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou hast rebuked the proud that are cursed, which do err from thy commandments.
15921                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Remove from me reproach and contempt; for I have kept thy testimonies.
15922                                                                                                                                                                                                                                                                                                                                                                                                                                                         Princes also did sit and speak against me: but thy servant did meditate in thy statutes.
15923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thy testimonies also are my delight and my counsellors.
15924                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My soul cleaveth unto the dust: quicken thou me according to thy word.
15925                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I have declared my ways, and thou heardest me: teach me thy statutes.
15926                                                                                                                                                                                                                                                                                                                                                                                                                                                            Make me to understand the way of thy precepts: so shall I talk of thy wondrous works.
15927                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My soul melteth for heaviness: strengthen thou me according unto thy word.
15928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Remove from me the way of lying: and grant me thy law graciously.
15929                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I have chosen the way of truth: thy judgments have I laid before me.
15930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I have stuck unto thy testimonies: O LORD, put me not to shame.
15931                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I will run the way of thy commandments, when thou shalt enlarge my heart.
15932                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Teach me, O LORD, the way of thy statutes; and I shall keep it unto the end.
15933                                                                                                                                                                                                                                                                                                                                                                                                                                                    Give me understanding, and I shall keep thy law; yea, I shall observe it with my whole heart.
15934                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Make me to go in the path of thy commandments; for therein do I delight.
15935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Incline my heart unto thy testimonies, and not to covetousness.
15936                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Turn away mine eyes from beholding vanity; and quicken thou me in thy way.
15937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stablish thy word unto thy servant, who is devoted to thy fear.
15938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Turn away my reproach which I fear: for thy judgments are good.
15939                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Behold, I have longed after thy precepts: quicken me in thy righteousness.
15940                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let thy mercies come also unto me, O LORD, even thy salvation, according to thy word.
15941                                                                                                                                                                                                                                                                                                                                                                                                                                                            So shall I have wherewith to answer him that reproacheth me: for I trust in thy word.
15942                                                                                                                                                                                                                                                                                                                                                                                                                                                       And take not the word of truth utterly out of my mouth; for I have hoped in thy judgments.
15943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So shall I keep thy law continually for ever and ever.
15944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will walk at liberty: for I seek thy precepts.
15945                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will speak of thy testimonies also before kings, and will not be ashamed.
15946                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I will delight myself in thy commandments, which I have loved.
15947                                                                                                                                                                                                                                                                                                                                                                                                                                     My hands also will I lift up unto thy commandments, which I have loved; and I will meditate in thy statutes.
15948                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Remember the word unto thy servant, upon which thou hast caused me to hope.
15949                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is my comfort in my affliction: for thy word hath quickened me.
15950                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The proud have had me greatly in derision: yet have I not declined from thy law.
15951                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I remembered thy judgments of old, O LORD; and have comforted myself.
15952                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Horror hath taken hold upon me because of the wicked that forsake thy law.
15953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thy statutes have been my songs in the house of my pilgrimage.
15954                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have remembered thy name, O LORD, in the night, and have kept thy law.
15955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This I had, because I kept thy precepts.
15956                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou art my portion, O LORD: I have said that I would keep thy words.
15957                                                                                                                                                                                                                                                                                                                                                                                                                                                           I intreated thy favour with my whole heart: be merciful unto me according to thy word.
15958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I thought on my ways, and turned my feet unto thy testimonies.
15959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I made haste, and delayed not to keep thy commandments.
15960                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The bands of the wicked have robbed me: but I have not forgotten thy law.
15961                                                                                                                                                                                                                                                                                                                                                                                                                                                             At midnight I will rise to give thanks unto thee because of thy righteous judgments.
15962                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am a companion of all them that fear thee, and of them that keep thy precepts.
15963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The earth, O LORD, is full of thy mercy: teach me thy statutes.
15964                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou hast dealt well with thy servant, O LORD, according unto thy word.
15965                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Teach me good judgment and knowledge: for I have believed thy commandments.
15966                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Before I was afflicted I went astray: but now have I kept thy word.
15967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou art good, and doest good; teach me thy statutes.
15968                                                                                                                                                                                                                                                                                                                                                                                                                                                        The proud have forged a lie against me: but I will keep thy precepts with my whole heart.
15969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Their heart is as fat as grease; but I delight in thy law.
15970                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is good for me that I have been afflicted; that I might learn thy statutes.
15971                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The law of thy mouth is better unto me than thousands of gold and silver.
15972                                                                                                                                                                                                                                                                                                                                                                                                                                               Thy hands have made me and fashioned me: give me understanding, that I may learn thy commandments.
15973                                                                                                                                                                                                                                                                                                                                                                                                                                                             They that fear thee will be glad when they see me; because I have hoped in thy word.
15974                                                                                                                                                                                                                                                                                                                                                                                                                                                   I know, O LORD, that thy judgments are right, and that thou in faithfulness hast afflicted me.
15975                                                                                                                                                                                                                                                                                                                                                                                                                                               Let, I pray thee, thy merciful kindness be for my comfort, according to thy word unto thy servant.
15976                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let thy tender mercies come unto me, that I may live: for thy law is my delight.
15977                                                                                                                                                                                                                                                                                                                                                                                                                                Let the proud be ashamed; for they dealt perversely with me without a cause: but I will meditate in thy precepts.
15978                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let those that fear thee turn unto me, and those that have known thy testimonies.
15979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Let my heart be sound in thy statutes; that I be not ashamed.
15980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      My soul fainteth for thy salvation: but I hope in thy word.
15981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mine eyes fail for thy word, saying, When wilt thou comfort me?
15982                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I am become like a bottle in the smoke; yet do I not forget thy statutes.
15983                                                                                                                                                                                                                                                                                                                                                                                                                                                 How many are the days of thy servant? when wilt thou execute judgment on them that persecute me?
15984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The proud have digged pits for me, which are not after thy law.
15985                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All thy commandments are faithful: they persecute me wrongfully; help thou me.
15986                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They had almost consumed me upon earth; but I forsook not thy precepts.
15987                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Quicken me after thy lovingkindness; so shall I keep the testimony of thy mouth.
15988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For ever, O LORD, thy word is settled in heaven.
15989                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thy faithfulness is unto all generations: thou hast established the earth, and it abideth.
15990                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They continue this day according to thine ordinances: for all are thy servants.
15991                                                                                                                                                                                                                                                                                                                                                                                                                                                             Unless thy law had been my delights, I should then have perished in mine affliction.
15992                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will never forget thy precepts: for with them thou hast quickened me.
15993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I am thine, save me: for I have sought thy precepts.
15994                                                                                                                                                                                                                                                                                                                                                                                                                                                                The wicked have waited for me to destroy me: but I will consider thy testimonies.
15995                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I have seen an end of all perfection: but thy commandment is exceeding broad.
15996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O how I love thy law! it is my meditation all the day.
15997                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou through thy commandments hast made me wiser than mine enemies: for they are ever with me.
15998                                                                                                                                                                                                                                                                                                                                                                                                                                                           I have more understanding than all my teachers: for thy testimonies are my meditation.
15999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I understand more than the ancients, because I keep thy precepts.
16000                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I have refrained my feet from every evil way, that I might keep thy word.
16001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I have not departed from thy judgments: for thou hast taught me.
16002                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How sweet are thy words unto my taste! yea, sweeter than honey to my mouth!
16003                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Through thy precepts I get understanding: therefore I hate every false way.
16004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thy word is a lamp unto my feet, and a light unto my path.
16005                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have sworn, and I will perform it, that I will keep thy righteous judgments.
16006                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I am afflicted very much: quicken me, O LORD, according unto thy word.
16007                                                                                                                                                                                                                                                                                                                                                                                                                                                  Accept, I beseech thee, the freewill offerings of my mouth, O LORD, and teach me thy judgments.
16008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My soul is continually in my hand: yet do I not forget thy law.
16009                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The wicked have laid a snare for me: yet I erred not from thy precepts.
16010                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thy testimonies have I taken as an heritage for ever: for they are the rejoicing of my heart.
16011                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I have inclined mine heart to perform thy statutes alway, even unto the end.
16012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I hate vain thoughts: but thy law do I love.
16013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou art my hiding place and my shield: I hope in thy word.
16014                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Depart from me, ye evildoers: for I will keep the commandments of my God.
16015                                                                                                                                                                                                                                                                                                                                                                                                                                                        Uphold me according unto thy word, that I may live: and let me not be ashamed of my hope.
16016                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hold thou me up, and I shall be safe: and I will have respect unto thy statutes continually.
16017                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou hast trodden down all them that err from thy statutes: for their deceit is falsehood.
16018                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou puttest away all the wicked of the earth like dross: therefore I love thy testimonies.
16019                                                                                                                                                                                                                                                                                                                                                                                                                                                                           My flesh trembleth for fear of thee; and I am afraid of thy judgments.
16020                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I have done judgment and justice: leave me not to mine oppressors.
16021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Be surety for thy servant for good: let not the proud oppress me.
16022                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Mine eyes fail for thy salvation, and for the word of thy righteousness.
16023                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Deal with thy servant according unto thy mercy, and teach me thy statutes.
16024                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I am thy servant; give me understanding, that I may know thy testimonies.
16025                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is time for thee, LORD, to work: for they have made void thy law.
16026                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore I love thy commandments above gold; yea, above fine gold.
16027                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore I esteem all thy precepts concerning all things to be right; and I hate every false way.
16028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thy testimonies are wonderful: therefore doth my soul keep them.
16029                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The entrance of thy words giveth light; it giveth understanding unto the simple.
16030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I opened my mouth, and panted: for I longed for thy commandments.
16031                                                                                                                                                                                                                                                                                                                                                                                                                                                   Look thou upon me, and be merciful unto me, as thou usest to do unto those that love thy name.
16032                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Order my steps in thy word: and let not any iniquity have dominion over me.
16033                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deliver me from the oppression of man: so will I keep thy precepts.
16034                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make thy face to shine upon thy servant; and teach me thy statutes.
16035                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rivers of waters run down mine eyes, because they keep not thy law.
16036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Righteous art thou, O LORD, and upright are thy judgments.
16037                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thy testimonies that thou hast commanded are righteous and very faithful.
16038                                                                                                                                                                                                                                                                                                                                                                                                                                                                         My zeal hath consumed me, because mine enemies have forgotten thy words.
16039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thy word is very pure: therefore thy servant loveth it.
16040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I am small and despised: yet do not I forget thy precepts.
16041                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy righteousness is an everlasting righteousness, and thy law is the truth.
16042                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Trouble and anguish have taken hold on me: yet thy commandments are my delights.
16043                                                                                                                                                                                                                                                                                                                                                                                                                                                    The righteousness of thy testimonies is everlasting: give me understanding, and I shall live.
16044                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I cried with my whole heart; hear me, O LORD: I will keep thy statutes.
16045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I cried unto thee; save me, and I shall keep thy testimonies.
16046                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I prevented the dawning of the morning, and cried: I hoped in thy word.
16047                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mine eyes prevent the night watches, that I might meditate in thy word.
16048                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hear my voice according unto thy lovingkindness: O LORD, quicken me according to thy judgment.
16049                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They draw nigh that follow after mischief: they are far from thy law.
16050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou art near, O LORD; and all thy commandments are truth.
16051                                                                                                                                                                                                                                                                                                                                                                                                                                                            Concerning thy testimonies, I have known of old that thou hast founded them for ever.
16052                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Consider mine affliction, and deliver me: for I do not forget thy law.
16053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Plead my cause, and deliver me: quicken me according to thy word.
16054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Salvation is far from the wicked: for they seek not thy statutes.
16055                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Great are thy tender mercies, O LORD: quicken me according to thy judgments.
16056                                                                                                                                                                                                                                                                                                                                                                                                                                                             Many are my persecutors and mine enemies; yet do I not decline from thy testimonies.
16057                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I beheld the transgressors, and was grieved; because they kept not thy word.
16058                                                                                                                                                                                                                                                                                                                                                                                                                                                           Consider how I love thy precepts: quicken me, O LORD, according to thy lovingkindness.
16059                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thy word is true from the beginning: and every one of thy righteous judgments endureth for ever.
16060                                                                                                                                                                                                                                                                                                                                                                                                                                                            Princes have persecuted me without a cause: but my heart standeth in awe of thy word.
16061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I rejoice at thy word, as one that findeth great spoil.
16062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I hate and abhor lying: but thy law do I love.
16063                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Seven times a day do I praise thee because of thy righteous judgments.
16064                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Great peace have they which love thy law: and nothing shall offend them.
16065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 LORD, I have hoped for thy salvation, and done thy commandments.
16066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My soul hath kept thy testimonies; and I love them exceedingly.
16067                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have kept thy precepts and thy testimonies: for all my ways are before thee.
16068                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let my cry come near before thee, O LORD: give me understanding according to thy word.
16069                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let my supplication come before thee: deliver me according to thy word.
16070                                                                                                                                                                                                                                                                                                                                                                                                                                                                               My lips shall utter praise, when thou hast taught me thy statutes.
16071                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My tongue shall speak of thy word: for all thy commandments are righteousness.
16072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let thine hand help me; for I have chosen thy precepts.
16073                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have longed for thy salvation, O LORD; and thy law is my delight.
16074                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let my soul live, and it shall praise thee; and let thy judgments help me.
16075                                                                                                                                                                                                                                                                                                                                                                                                                                                    I have gone astray like a lost sheep; seek thy servant; for I do not forget thy commandments.
16076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In my distress I cried unto the LORD, and he heard me.
16077                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Deliver my soul, O LORD, from lying lips, and from a deceitful tongue.
16078                                                                                                                                                                                                                                                                                                                                                                                                                                                               What shall be given unto thee? or what shall be done unto thee, thou false tongue?
16079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sharp arrows of the mighty, with coals of juniper.
16080                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Woe is me, that I sojourn in Mesech, that I dwell in the tents of Kedar!
16081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My soul hath long dwelt with him that hateth peace.
16082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am for peace: but when I speak, they are for war.
16083                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I will lift up mine eyes unto the hills, from whence cometh my help.
16084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My help cometh from the LORD, which made heaven and earth.
16085                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He will not suffer thy foot to be moved: he that keepeth thee will not slumber.
16086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Behold, he that keepeth Israel shall neither slumber nor sleep.
16087                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD is thy keeper: the LORD is thy shade upon thy right hand.
16088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sun shall not smite thee by day, nor the moon by night.
16089                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD shall preserve thee from all evil: he shall preserve thy soul.
16090                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD shall preserve thy going out and thy coming in from this time forth, and even for evermore.
16091                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I was glad when they said unto me, Let us go into the house of the LORD.
16092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our feet shall stand within thy gates, O Jerusalem.
16093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jerusalem is builded as a city that is compact together:
16094                                                                                                                                                                                                                                                                                                                                                                                                                        Whither the tribes go up, the tribes of the LORD, unto the testimony of Israel, to give thanks unto the name of the LORD.
16095                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For there are set thrones of judgment, the thrones of the house of David.
16096                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pray for the peace of Jerusalem: they shall prosper that love thee.
16097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Peace be within thy walls, and prosperity within thy palaces.
16098                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For my brethren and companions' sakes, I will now say, Peace be within thee.
16099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Because of the house of the LORD our God I will seek thy good.
16100                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unto thee lift I up mine eyes, O thou that dwellest in the heavens.
16101                                                                                                                                                                                                                                                                                                                                        Behold, as the eyes of servants look unto the hand of their masters, and as the eyes of a maiden unto the hand of her mistress; so our eyes wait upon the LORD our God, until that he have mercy upon us.
16102                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have mercy upon us, O LORD, have mercy upon us: for we are exceedingly filled with contempt.
16103                                                                                                                                                                                                                                                                                                                                                                                                                                  Our soul is exceedingly filled with the scorning of those that are at ease, and with the contempt of the proud.
16104                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If it had not been the LORD who was on our side, now may Israel say;
16105                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If it had not been the LORD who was on our side, when men rose up against us:
16106                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then they had swallowed us up quick, when their wrath was kindled against us:
16107                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the waters had overwhelmed us, the stream had gone over our soul:
16108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then the proud waters had gone over our soul.
16109                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Blessed be the LORD, who hath not given us as a prey to their teeth.
16110                                                                                                                                                                                                                                                                                                                                                                                                                                          Our soul is escaped as a bird out of the snare of the fowlers: the snare is broken, and we are escaped.
16111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our help is in the name of the LORD, who made heaven and earth.
16112                                                                                                                                                                                                                                                                                                                                                                                                                                               They that trust in the LORD shall be as mount Zion, which cannot be removed, but abideth for ever.
16113                                                                                                                                                                                                                                                                                                                                                                                                                                 As the mountains are round about Jerusalem, so the LORD is round about his people from henceforth even for ever.
16114                                                                                                                                                                                                                                                                                                                                                                                                                  For the rod of the wicked shall not rest upon the lot of the righteous; lest the righteous put forth their hands unto iniquity.
16115                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do good, O LORD, unto those that be good, and to them that are upright in their hearts.
16116                                                                                                                                                                                                                                                                                                                                                                                                  As for such as turn aside unto their crooked ways, the LORD shall lead them forth with the workers of iniquity: but peace shall be upon Israel.
16117                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When the LORD turned again the captivity of Zion, we were like them that dream.
16118                                                                                                                                                                                                                                                                                                                                                                                                Then was our mouth filled with laughter, and our tongue with singing: then said they among the heathen, The LORD hath done great things for them.
16119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD hath done great things for us; whereof we are glad.
16120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Turn again our captivity, O LORD, as the streams in the south.
16121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They that sow in tears shall reap in joy.
16122                                                                                                                                                                                                                                                                                                                                                                                                                He that goeth forth and weepeth, bearing precious seed, shall doubtless come again with rejoicing, bringing his sheaves with him.
16123                                                                                                                                                                                                                                                                                                                                                                                                              Except the LORD build the house, they labour in vain that build it: except the LORD keep the city, the watchman waketh but in vain.
16124                                                                                                                                                                                                                                                                                                                                                                                                                            It is vain for you to rise up early, to sit up late, to eat the bread of sorrows: for so he giveth his beloved sleep.
16125                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lo, children are an heritage of the LORD: and the fruit of the womb is his reward.
16126                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As arrows are in the hand of a mighty man; so are children of the youth.
16127                                                                                                                                                                                                                                                                                                                                                                                                                Happy is the man that hath his quiver full of them: they shall not be ashamed, but they shall speak with the enemies in the gate.
16128                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Blessed is every one that feareth the LORD; that walketh in his ways.
16129                                                                                                                                                                                                                                                                                                                                                                                                                                               For thou shalt eat the labour of thine hands: happy shalt thou be, and it shall be well with thee.
16130                                                                                                                                                                                                                                                                                                                                                                                                                          Thy wife shall be as a fruitful vine by the sides of thine house: thy children like olive plants round about thy table.
16131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, that thus shall the man be blessed that feareth the LORD.
16132                                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD shall bless thee out of Zion: and thou shalt see the good of Jerusalem all the days of thy life.
16133                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yea, thou shalt see thy children's children, and peace upon Israel.
16134                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Many a time have they afflicted me from my youth, may Israel now say:
16135                                                                                                                                                                                                                                                                                                                                                                                                                                                        Many a time have they afflicted me from my youth: yet they have not prevailed against me.
16136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The plowers plowed upon my back: they made long their furrows.
16137                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD is righteous: he hath cut asunder the cords of the wicked.
16138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let them all be confounded and turned back that hate Zion.
16139                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let them be as the grass upon the housetops, which withereth afore it groweth up:
16140                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wherewith the mower filleth not his hand; nor he that bindeth sheaves his bosom.
16141                                                                                                                                                                                                                                                                                                                                                                                                                                     Neither do they which go by say, The blessing of the LORD be upon you: we bless you in the name of the LORD.
16142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Out of the depths have I cried unto thee, O LORD.
16143                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lord, hear my voice: let thine ears be attentive to the voice of my supplications.
16144                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If thou, LORD, shouldest mark iniquities, O Lord, who shall stand?
16145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But there is forgiveness with thee, that thou mayest be feared.
16146                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I wait for the LORD, my soul doth wait, and in his word do I hope.
16147                                                                                                                                                                                                                                                                                                                                                                                                                        My soul waiteth for the Lord more than they that watch for the morning: I say, more than they that watch for the morning.
16148                                                                                                                                                                                                                                                                                                                                                                                                                                             Let Israel hope in the LORD: for with the LORD there is mercy, and with him is plenteous redemption.
16149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall redeem Israel from all his iniquities.
16150                                                                                                                                                                                                                                                                                                                                                                                                                 Lord, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me.
16151                                                                                                                                                                                                                                                                                                                                                                                                                            Surely I have behaved and quieted myself, as a child that is weaned of his mother: my soul is even as a weaned child.
16152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let Israel hope in the LORD from henceforth and for ever.
16153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Lord, remember David, and all his afflictions:
16154                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How he sware unto the LORD, and vowed unto the mighty God of Jacob;
16155                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely I will not come into the tabernacle of my house, nor go up into my bed;
16156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I will not give sleep to mine eyes, or slumber to mine eyelids,
16157                                                                                                                                                                                                                                                                                                                                                                                                                                                                Until I find out a place for the LORD, an habitation for the mighty God of Jacob.
16158                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lo, we heard of it at Ephratah: we found it in the fields of the wood.
16159                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We will go into his tabernacles: we will worship at his footstool.
16160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Arise, O LORD, into thy rest; thou, and the ark of thy strength.
16161                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let thy priests be clothed with righteousness; and let thy saints shout for joy.
16162                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For thy servant David's sake turn not away the face of thine anointed.
16163                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD hath sworn in truth unto David; he will not turn from it; Of the fruit of thy body will I set upon thy throne.
16164                                                                                                                                                                                                                                                                                                                                                                                                      If thy children will keep my covenant and my testimony that I shall teach them, their children shall also sit upon thy throne for evermore.
16165                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For the LORD hath chosen Zion; he hath desired it for his habitation.
16166                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is my rest for ever: here will I dwell; for I have desired it.
16167                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I will abundantly bless her provision: I will satisfy her poor with bread.
16168                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will also clothe her priests with salvation: and her saints shall shout aloud for joy.
16169                                                                                                                                                                                                                                                                                                                                                                                                                                                            There will I make the horn of David to bud: I have ordained a lamp for mine anointed.
16170                                                                                                                                                                                                                                                                                                                                                                                                                                                                 His enemies will I clothe with shame: but upon himself shall his crown flourish.
16171                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, how good and how pleasant it is for brethren to dwell together in unity!
16172                                                                                                                                                                                                                                                                                                                                                                                                  It is like the precious ointment upon the head, that ran down upon the beard, even Aaron's beard: that went down to the skirts of his garments;
16173                                                                                                                                                                                                                                                                                                                                                                                               As the dew of Hermon, and as the dew that descended upon the mountains of Zion: for there the LORD commanded the blessing, even life for evermore.
16174                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, bless ye the LORD, all ye servants of the LORD, which by night stand in the house of the LORD.
16175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lift up your hands in the sanctuary, and bless the LORD.
16176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD that made heaven and earth bless thee out of Zion.
16177                                                                                                                                                                                                                                                                                                                                                                                                                                                       Praise ye the LORD. Praise ye the name of the LORD; praise him, O ye servants of the LORD.
16178                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ye that stand in the house of the LORD, in the courts of the house of our God.
16179                                                                                                                                                                                                                                                                                                                                                                                                                                                           Praise the LORD; for the LORD is good: sing praises unto his name; for it is pleasant.
16180                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the LORD hath chosen Jacob unto himself, and Israel for his peculiar treasure.
16181                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For I know that the LORD is great, and that our Lord is above all gods.
16182                                                                                                                                                                                                                                                                                                                                                                                                                                              Whatsoever the LORD pleased, that did he in heaven, and in earth, in the seas, and all deep places.
16183                                                                                                                                                                                                                                                                                                                                                                                                      He causeth the vapours to ascend from the ends of the earth; he maketh lightnings for the rain; he bringeth the wind out of his treasuries.
16184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who smote the firstborn of Egypt, both of man and beast.
16185                                                                                                                                                                                                                                                                                                                                                                                                                                            Who sent tokens and wonders into the midst of thee, O Egypt, upon Pharaoh, and upon all his servants.
16186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who smote great nations, and slew mighty kings;
16187                                                                                                                                                                                                                                                                                                                                                                                                                                                               Sihon king of the Amorites, and Og king of Bashan, and all the kingdoms of Canaan:
16188                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And gave their land for an heritage, an heritage unto Israel his people.
16189                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thy name, O LORD, endureth for ever; and thy memorial, O LORD, throughout all generations.
16190                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the LORD will judge his people, and he will repent himself concerning his servants.
16191                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The idols of the heathen are silver and gold, the work of men's hands.
16192                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They have mouths, but they speak not; eyes have they, but they see not;
16193                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They have ears, but they hear not; neither is there any breath in their mouths.
16194                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They that make them are like unto them: so is every one that trusteth in them.
16195                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bless the LORD, O house of Israel: bless the LORD, O house of Aaron:
16196                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bless the LORD, O house of Levi: ye that fear the LORD, bless the LORD.
16197                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blessed be the LORD out of Zion, which dwelleth at Jerusalem. Praise ye the LORD.
16198                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O give thanks unto the LORD; for he is good: for his mercy endureth for ever.
16199                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O give thanks unto the God of gods: for his mercy endureth for ever.
16200                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O give thanks to the Lord of lords: for his mercy endureth for ever.
16201                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To him who alone doeth great wonders: for his mercy endureth for ever.
16202                                                                                                                                                                                                                                                                                                                                                                                                                                                                         To him that by wisdom made the heavens: for his mercy endureth for ever.
16203                                                                                                                                                                                                                                                                                                                                                                                                                                                           To him that stretched out the earth above the waters: for his mercy endureth for ever.
16204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To him that made great lights: for his mercy endureth for ever:
16205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sun to rule by day: for his mercy endureth for ever:
16206                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The moon and stars to rule by night: for his mercy endureth for ever.
16207                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To him that smote Egypt in their firstborn: for his mercy endureth for ever:
16208                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And brought out Israel from among them: for his mercy endureth for ever:
16209                                                                                                                                                                                                                                                                                                                                                                                                                                                               With a strong hand, and with a stretched out arm: for his mercy endureth for ever.
16210                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To him which divided the Red sea into parts: for his mercy endureth for ever:
16211                                                                                                                                                                                                                                                                                                                                                                                                                                                                And made Israel to pass through the midst of it: for his mercy endureth for ever:
16212                                                                                                                                                                                                                                                                                                                                                                                                                                                              But overthrew Pharaoh and his host in the Red sea: for his mercy endureth for ever.
16213                                                                                                                                                                                                                                                                                                                                                                                                                                                             To him which led his people through the wilderness: for his mercy endureth for ever.
16214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To him which smote great kings: for his mercy endureth for ever:
16215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And slew famous kings: for his mercy endureth for ever:
16216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sihon king of the Amorites: for his mercy endureth for ever:
16217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Og the king of Bashan: for his mercy endureth for ever:
16218                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And gave their land for an heritage: for his mercy endureth for ever:
16219                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Even an heritage unto Israel his servant: for his mercy endureth for ever.
16220                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who remembered us in our low estate: for his mercy endureth for ever:
16221                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And hath redeemed us from our enemies: for his mercy endureth for ever.
16222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who giveth food to all flesh: for his mercy endureth for ever.
16223                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O give thanks unto the God of heaven: for his mercy endureth for ever.
16224                                                                                                                                                                                                                                                                                                                                                                                                                                                              By the rivers of Babylon, there we sat down, yea, we wept, when we remembered Zion.
16225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We hanged our harps upon the willows in the midst thereof.
16226                                                                                                                                                                                                                                                                                                                                                                                       For there they that carried us away captive required of us a song; and they that wasted us required of us mirth, saying, Sing us one of the songs of Zion.
16227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How shall we sing the LORD's song in a strange land?
16228                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If I forget thee, O Jerusalem, let my right hand forget her cunning.
16229                                                                                                                                                                                                                                                                                                                                                                                                                           If I do not remember thee, let my tongue cleave to the roof of my mouth; if I prefer not Jerusalem above my chief joy.
16230                                                                                                                                                                                                                                                                                                                                                                                                                      Remember, O LORD, the children of Edom in the day of Jerusalem; who said, Rase it, rase it, even to the foundation thereof.
16231                                                                                                                                                                                                                                                                                                                                                                                                                                   O daughter of Babylon, who art to be destroyed; happy shall he be, that rewardeth thee as thou hast served us.
16232                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Happy shall he be, that taketh and dasheth thy little ones against the stones.
16233                                                                                                                                                                                                                                                                                                                                                                                                                                                            I will praise thee with my whole heart: before the gods will I sing praise unto thee.
16234                                                                                                                                                                                                                                                                                                                                                                                        I will worship toward thy holy temple, and praise thy name for thy lovingkindness and for thy truth: for thou hast magnified thy word above all thy name.
16235                                                                                                                                                                                                                                                                                                                                                                                                                                                      In the day when I cried thou answeredst me, and strengthenedst me with strength in my soul.
16236                                                                                                                                                                                                                                                                                                                                                                                                                                                     All the kings of the earth shall praise thee, O LORD, when they hear the words of thy mouth.
16237                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yea, they shall sing in the ways of the LORD: for great is the glory of the LORD.
16238                                                                                                                                                                                                                                                                                                                                                                                                                                                  Though the LORD be high, yet hath he respect unto the lowly: but the proud he knoweth afar off.
16239                                                                                                                                                                                                                                                                                                                                                                             Though I walk in the midst of trouble, thou wilt revive me: thou shalt stretch forth thine hand against the wrath of mine enemies, and thy right hand shall save me.
16240                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD will perfect that which concerneth me: thy mercy, O LORD, endureth for ever: forsake not the works of thine own hands.
16241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O lord, thou hast searched me, and known me.
16242                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou knowest my downsitting and mine uprising, thou understandest my thought afar off.
16243                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou compassest my path and my lying down, and art acquainted with all my ways.
16244                                                                                                                                                                                                                                                                                                                                                                                                                                                               For there is not a word in my tongue, but, lo, O LORD, thou knowest it altogether.
16245                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou hast beset me behind and before, and laid thine hand upon me.
16246                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Such knowledge is too wonderful for me; it is high, I cannot attain unto it.
16247                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whither shall I go from thy spirit? or whither shall I flee from thy presence?
16248                                                                                                                                                                                                                                                                                                                                                                                                                                                    If I ascend up into heaven, thou art there: if I make my bed in hell, behold, thou art there.
16249                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If I take the wings of the morning, and dwell in the uttermost parts of the sea;
16250                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Even there shall thy hand lead me, and thy right hand shall hold me.
16251                                                                                                                                                                                                                                                                                                                                                                                                                                                            If I say, Surely the darkness shall cover me; even the night shall be light about me.
16252                                                                                                                                                                                                                                                                                                                                                                                                                     Yea, the darkness hideth not from thee; but the night shineth as the day: the darkness and the light are both alike to thee.
16253                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For thou hast possessed my reins: thou hast covered me in my mother's womb.
16254                                                                                                                                                                                                                                                                                                                                                                                                                      I will praise thee; for I am fearfully and wonderfully made: marvellous are thy works; and that my soul knoweth right well.
16255                                                                                                                                                                                                                                                                                                                                                                                                                           My substance was not hid from thee, when I was made in secret, and curiously wrought in the lowest parts of the earth.
16256                                                                                                                                                                                                                                                                                                                                                                      Thine eyes did see my substance, yet being unperfect; and in thy book all my members were written, which in continuance were fashioned, when as yet there was none of them.
16257                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How precious also are thy thoughts unto me, O God! how great is the sum of them!
16258                                                                                                                                                                                                                                                                                                                                                                                                                                               If I should count them, they are more in number than the sand: when I awake, I am still with thee.
16259                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely thou wilt slay the wicked, O God: depart from me therefore, ye bloody men.
16260                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For they speak against thee wickedly, and thine enemies take thy name in vain.
16261                                                                                                                                                                                                                                                                                                                                                                                                                                           Do not I hate them, O LORD, that hate thee? and am not I grieved with those that rise up against thee?
16262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I hate them with perfect hatred: I count them mine enemies.
16263                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Search me, O God, and know my heart: try me, and know my thoughts:
16264                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And see if there be any wicked way in me, and lead me in the way everlasting.
16265                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Deliver me, O LORD, from the evil man: preserve me from the violent man;
16266                                                                                                                                                                                                                                                                                                                                                                                                                                                          Which imagine mischiefs in their heart; continually are they gathered together for war.
16267                                                                                                                                                                                                                                                                                                                                                                                                                                                     They have sharpened their tongues like a serpent; adders' poison is under their lips. Selah.
16268                                                                                                                                                                                                                                                                                                                                                                                                                       Keep me, O LORD, from the hands of the wicked; preserve me from the violent man; who have purposed to overthrow my goings.
16269                                                                                                                                                                                                                                                                                                                                                                                                                           The proud have hid a snare for me, and cords; they have spread a net by the wayside; they have set gins for me. Selah.
16270                                                                                                                                                                                                                                                                                                                                                                                                                                                               I said unto the LORD, Thou art my God: hear the voice of my supplications, O LORD.
16271                                                                                                                                                                                                                                                                                                                                                                                                                                                    O GOD the Lord, the strength of my salvation, thou hast covered my head in the day of battle.
16272                                                                                                                                                                                                                                                                                                                                                                                                                                  Grant not, O LORD, the desires of the wicked: further not his wicked device; lest they exalt themselves. Selah.
16273                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for the head of those that compass me about, let the mischief of their own lips cover them.
16274                                                                                                                                                                                                                                                                                                                                                                                                                                   Let burning coals fall upon them: let them be cast into the fire; into deep pits, that they rise not up again.
16275                                                                                                                                                                                                                                                                                                                                                                                                                                           Let not an evil speaker be established in the earth: evil shall hunt the violent man to overthrow him.
16276                                                                                                                                                                                                                                                                                                                                                                                                                                                        I know that the LORD will maintain the cause of the afflicted, and the right of the poor.
16277                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely the righteous shall give thanks unto thy name: the upright shall dwell in thy presence.
16278                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lord, I cry unto thee: make haste unto me; give ear unto my voice, when I cry unto thee.
16279                                                                                                                                                                                                                                                                                                                                                                                                                                      Let my prayer be set forth before thee as incense; and the lifting up of my hands as the evening sacrifice.
16280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Set a watch, O LORD, before my mouth; keep the door of my lips.
16281                                                                                                                                                                                                                                                                                                                                                                                                              Incline not my heart to any evil thing, to practise wicked works with men that work iniquity: and let me not eat of their dainties.
16282                                                                                                                                                                                                                                                                                                                                                    Let the righteous smite me; it shall be a kindness: and let him reprove me; it shall be an excellent oil, which shall not break my head: for yet my prayer also shall be in their calamities.
16283                                                                                                                                                                                                                                                                                                                                                                                                                                                  When their judges are overthrown in stony places, they shall hear my words; for they are sweet.
16284                                                                                                                                                                                                                                                                                                                                                                                                                                              Our bones are scattered at the grave's mouth, as when one cutteth and cleaveth wood upon the earth.
16285                                                                                                                                                                                                                                                                                                                                                                                                                                                   But mine eyes are unto thee, O GOD the Lord: in thee is my trust; leave not my soul destitute.
16286                                                                                                                                                                                                                                                                                                                                                                                                                                                    Keep me from the snares which they have laid for me, and the gins of the workers of iniquity.
16287                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let the wicked fall into their own nets, whilst that I withal escape.
16288                                                                                                                                                                                                                                                                                                                                                                                                                                                     I cried unto the LORD with my voice; with my voice unto the LORD did I make my supplication.
16289                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I poured out my complaint before him; I shewed before him my trouble.
16290                                                                                                                                                                                                                                                                                                                                                                                                          When my spirit was overwhelmed within me, then thou knewest my path. In the way wherein I walked have they privily laid a snare for me.
16291                                                                                                                                                                                                                                                                                                                                                                                                                      I looked on my right hand, and beheld, but there was no man that would know me: refuge failed me; no man cared for my soul.
16292                                                                                                                                                                                                                                                                                                                                                                                                                                                  I cried unto thee, O LORD: I said, Thou art my refuge and my portion in the land of the living.
16293                                                                                                                                                                                                                                                                                                                                                                                                                                     Attend unto my cry; for I am brought very low: deliver me from my persecutors; for they are stronger than I.
16294                                                                                                                                                                                                                                                                                                                                                                                                          Bring my soul out of prison, that I may praise thy name: the righteous shall compass me about; for thou shalt deal bountifully with me.
16295                                                                                                                                                                                                                                                                                                                                                                                                                                   Hear my prayer, O LORD, give ear to my supplications: in thy faithfulness answer me, and in thy righteousness.
16296                                                                                                                                                                                                                                                                                                                                                                                                                                                 And enter not into judgment with thy servant: for in thy sight shall no man living be justified.
16297                                                                                                                                                                                                                                                                                                                                                                                      For the enemy hath persecuted my soul; he hath smitten my life down to the ground; he hath made me to dwell in darkness, as those that have been long dead.
16298                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore is my spirit overwhelmed within me; my heart within me is desolate.
16299                                                                                                                                                                                                                                                                                                                                                                                                                                                        I remember the days of old; I meditate on all thy works; I muse on the work of thy hands.
16300                                                                                                                                                                                                                                                                                                                                                                                                                                                      I stretch forth my hands unto thee: my soul thirsteth after thee, as a thirsty land. Selah.
16301                                                                                                                                                                                                                                                                                                                                                                                                                      Hear me speedily, O LORD: my spirit faileth: hide not thy face from me, lest I be like unto them that go down into the pit.
16302                                                                                                                                                                                                                                                                                                                                                                                     Cause me to hear thy lovingkindness in the morning; for in thee do I trust: cause me to know the way wherein I should walk; for I lift up my soul unto thee.
16303                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deliver me, O LORD, from mine enemies: I flee unto thee to hide me.
16304                                                                                                                                                                                                                                                                                                                                                                                                                                          Teach me to do thy will; for thou art my God: thy spirit is good; lead me into the land of uprightness.
16305                                                                                                                                                                                                                                                                                                                                                                                                                                               Quicken me, O LORD, for thy name's sake: for thy righteousness' sake bring my soul out of trouble.
16306                                                                                                                                                                                                                                                                                                                                                                                                                                          And of thy mercy cut off mine enemies, and destroy all them that afflict my soul: for I am thy servant.
16307                                                                                                                                                                                                                                                                                                                                                                                                                                                         Blessed be the LORD my strength which teacheth my hands to war, and my fingers to fight:
16308                                                                                                                                                                                                                                                                                                                                                                                                               My goodness, and my fortress; my high tower, and my deliverer; my shield, and he in whom I trust; who subdueth my people under me.
16309                                                                                                                                                                                                                                                                                                                                                                                                                                        LORD, what is man, that thou takest knowledge of him! or the son of man, that thou makest account of him!
16310                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Man is like to vanity: his days are as a shadow that passeth away.
16311                                                                                                                                                                                                                                                                                                                                                                                                                                                               Bow thy heavens, O LORD, and come down: touch the mountains, and they shall smoke.
16312                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cast forth lightning, and scatter them: shoot out thine arrows, and destroy them.
16313                                                                                                                                                                                                                                                                                                                                                                                                                                       Send thine hand from above; rid me, and deliver me out of great waters, from the hand of strange children;
16314                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whose mouth speaketh vanity, and their right hand is a right hand of falsehood.
16315                                                                                                                                                                                                                                                                                                                                                                                                                         I will sing a new song unto thee, O God: upon a psaltery and an instrument of ten strings will I sing praises unto thee.
16316                                                                                                                                                                                                                                                                                                                                                                                                                                              It is he that giveth salvation unto kings: who delivereth David his servant from the hurtful sword.
16317                                                                                                                                                                                                                                                                                                                                                                                                        Rid me, and deliver me from the hand of strange children, whose mouth speaketh vanity, and their right hand is a right hand of falsehood:
16318                                                                                                                                                                                                                                                                                                                                                                                                   That our sons may be as plants grown up in their youth; that our daughters may be as corner stones, polished after the similitude of a palace:
16319                                                                                                                                                                                                                                                                                                                                                                                                          That our garners may be full, affording all manner of store: that our sheep may bring forth thousands and ten thousands in our streets:
16320                                                                                                                                                                                                                                                                                                                                                                                                                 That our oxen may be strong to labour; that there be no breaking in, nor going out; that there be no complaining in our streets.
16321                                                                                                                                                                                                                                                                                                                                                                                                                                                  Happy is that people, that is in such a case: yea, happy is that people, whose God is the LORD.
16322                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I will extol thee, my God, O king; and I will bless thy name for ever and ever.
16323                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every day will I bless thee; and I will praise thy name for ever and ever.
16324                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Great is the LORD, and greatly to be praised; and his greatness is unsearchable.
16325                                                                                                                                                                                                                                                                                                                                                                                                                                                             One generation shall praise thy works to another, and shall declare thy mighty acts.
16326                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I will speak of the glorious honour of thy majesty, and of thy wondrous works.
16327                                                                                                                                                                                                                                                                                                                                                                                                                                                         And men shall speak of the might of thy terrible acts: and I will declare thy greatness.
16328                                                                                                                                                                                                                                                                                                                                                                                                                                               They shall abundantly utter the memory of thy great goodness, and shall sing of thy righteousness.
16329                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD is gracious, and full of compassion; slow to anger, and of great mercy.
16330                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD is good to all: and his tender mercies are over all his works.
16331                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All thy works shall praise thee, O LORD; and thy saints shall bless thee.
16332                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They shall speak of the glory of thy kingdom, and talk of thy power;
16333                                                                                                                                                                                                                                                                                                                                                                                                                                                       To make known to the sons of men his mighty acts, and the glorious majesty of his kingdom.
16334                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thy kingdom is an everlasting kingdom, and thy dominion endureth throughout all generations.
16335                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The LORD upholdeth all that fall, and raiseth up all those that be bowed down.
16336                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The eyes of all wait upon thee; and thou givest them their meat in due season.
16337                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou openest thine hand, and satisfiest the desire of every living thing.
16338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD is righteous in all his ways, and holy in all his works.
16339                                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD is nigh unto all them that call upon him, to all that call upon him in truth.
16340                                                                                                                                                                                                                                                                                                                                                                                                                                                He will fulfil the desire of them that fear him: he also will hear their cry, and will save them.
16341                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD preserveth all them that love him: but all the wicked will he destroy.
16342                                                                                                                                                                                                                                                                                                                                                                                                                                            My mouth shall speak the praise of the LORD: and let all flesh bless his holy name for ever and ever.
16343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Praise ye the LORD. Praise the LORD, O my soul.
16344                                                                                                                                                                                                                                                                                                                                                                                                                                                     While I live will I praise the LORD: I will sing praises unto my God while I have any being.
16345                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Put not your trust in princes, nor in the son of man, in whom there is no help.
16346                                                                                                                                                                                                                                                                                                                                                                                                                                                         His breath goeth forth, he returneth to his earth; in that very day his thoughts perish.
16347                                                                                                                                                                                                                                                                                                                                                                                                                                                          Happy is he that hath the God of Jacob for his help, whose hope is in the LORD his God:
16348                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which made heaven, and earth, the sea, and all that therein is: which keepeth truth for ever:
16349                                                                                                                                                                                                                                                                                                                                                                                                                                     Which executeth judgment for the oppressed: which giveth food to the hungry. The LORD looseth the prisoners:
16350                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD openeth the eyes of the blind: the LORD raiseth them that are bowed down: the LORD loveth the righteous:
16351                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD preserveth the strangers; he relieveth the fatherless and widow: but the way of the wicked he turneth upside down.
16352                                                                                                                                                                                                                                                                                                                                                                                                                                                   The LORD shall reign for ever, even thy God, O Zion, unto all generations. Praise ye the LORD.
16353                                                                                                                                                                                                                                                                                                                                                                                                                                       Praise ye the LORD: for it is good to sing praises unto our God; for it is pleasant; and praise is comely.
16354                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD doth build up Jerusalem: he gathereth together the outcasts of Israel.
16355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He healeth the broken in heart, and bindeth up their wounds.
16356                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He telleth the number of the stars; he calleth them all by their names.
16357                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Great is our Lord, and of great power: his understanding is infinite.
16358                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD lifteth up the meek: he casteth the wicked down to the ground.
16359                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Sing unto the LORD with thanksgiving; sing praise upon the harp unto our God:
16360                                                                                                                                                                                                                                                                                                                                                                                                                              Who covereth the heaven with clouds, who prepareth rain for the earth, who maketh grass to grow upon the mountains.
16361                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He giveth to the beast his food, and to the young ravens which cry.
16362                                                                                                                                                                                                                                                                                                                                                                                                                                                     He delighteth not in the strength of the horse: he taketh not pleasure in the legs of a man.
16363                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD taketh pleasure in them that fear him, in those that hope in his mercy.
16364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Praise the LORD, O Jerusalem; praise thy God, O Zion.
16365                                                                                                                                                                                                                                                                                                                                                                                                                                                        For he hath strengthened the bars of thy gates; he hath blessed thy children within thee.
16366                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He maketh peace in thy borders, and filleth thee with the finest of the wheat.
16367                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He sendeth forth his commandment upon earth: his word runneth very swiftly.
16368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He giveth snow like wool: he scattereth the hoarfrost like ashes.
16369                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He casteth forth his ice like morsels: who can stand before his cold?
16370                                                                                                                                                                                                                                                                                                                                                                                                                                                     He sendeth out his word, and melteth them: he causeth his wind to blow, and the waters flow.
16371                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He sheweth his word unto Jacob, his statutes and his judgments unto Israel.
16372                                                                                                                                                                                                                                                                                                                                                                                                                                    He hath not dealt so with any nation: and as for his judgments, they have not known them. Praise ye the LORD.
16373                                                                                                                                                                                                                                                                                                                                                                                                                                                              Praise ye the LORD. Praise ye the LORD from the heavens: praise him in the heights.
16374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Praise ye him, all his angels: praise ye him, all his hosts.
16375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Praise ye him, sun and moon: praise him, all ye stars of light.
16376                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Praise him, ye heavens of heavens, and ye waters that be above the heavens.
16377                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let them praise the name of the LORD: for he commanded, and they were created.
16378                                                                                                                                                                                                                                                                                                                                                                                                                                                      He hath also stablished them for ever and ever: he hath made a decree which shall not pass.
16379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Praise the LORD from the earth, ye dragons, and all deeps:
16380                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fire, and hail; snow, and vapours; stormy wind fulfilling his word:
16381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mountains, and all hills; fruitful trees, and all cedars:
16382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Beasts, and all cattle; creeping things, and flying fowl:
16383                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Kings of the earth, and all people; princes, and all judges of the earth:
16384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Both young men, and maidens; old men, and children:
16385                                                                                                                                                                                                                                                                                                                                                                                                                                  Let them praise the name of the LORD: for his name alone is excellent; his glory is above the earth and heaven.
16386                                                                                                                                                                                                                                                                                                                                                                                               He also exalteth the horn of his people, the praise of all his saints; even of the children of Israel, a people near unto him. Praise ye the LORD.
16387                                                                                                                                                                                                                                                                                                                                                                                                                                                 Praise ye the LORD. Sing unto the LORD a new song, and his praise in the congregation of saints.
16388                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let Israel rejoice in him that made him: let the children of Zion be joyful in their King.
16389                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let them praise his name in the dance: let them sing praises unto him with the timbrel and harp.
16390                                                                                                                                                                                                                                                                                                                                                                                                                                                            For the LORD taketh pleasure in his people: he will beautify the meek with salvation.
16391                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let the saints be joyful in glory: let them sing aloud upon their beds.
16392                                                                                                                                                                                                                                                                                                                                                                                                                                                              Let the high praises of God be in their mouth, and a two-edged sword in their hand;
16393                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To execute vengeance upon the heathen, and punishments upon the people;
16394                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To bind their kings with chains, and their nobles with fetters of iron;
16395                                                                                                                                                                                                                                                                                                                                                                                                                                                  To execute upon them the judgment written: this honour have all his saints. Praise ye the LORD.
16396                                                                                                                                                                                                                                                                                                                                                                                                                                                       Praise ye the LORD. Praise God in his sanctuary: praise him in the firmament of his power.
16397                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Praise him for his mighty acts: praise him according to his excellent greatness.
16398                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Praise him with the sound of the trumpet: praise him with the psaltery and harp.
16399                                                                                                                                                                                                                                                                                                                                                                                                                                                          Praise him with the timbrel and dance: praise him with stringed instruments and organs.
16400                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Praise him upon the loud cymbals: praise him upon the high sounding cymbals.
16401                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let every thing that hath breath praise the LORD. Praise ye the LORD.
16402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The proverbs of Solomon the son of David, king of Israel;
16403                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To know wisdom and instruction; to perceive the words of understanding;
16404                                                                                                                                                                                                                                                                                                                                                                                                                                                                         To receive the instruction of wisdom, justice, and judgment, and equity;
16405                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To give subtilty to the simple, to the young man knowledge and discretion.
16406                                                                                                                                                                                                                                                                                                                                                                                                                                    A wise man will hear, and will increase learning; and a man of understanding shall attain unto wise counsels:
16407                                                                                                                                                                                                                                                                                                                                                                                                                                                  To understand a proverb, and the interpretation; the words of the wise, and their dark sayings.
16408                                                                                                                                                                                                                                                                                                                                                                                                                                                    The fear of the LORD is the beginning of knowledge: but fools despise wisdom and instruction.
16409                                                                                                                                                                                                                                                                                                                                                                                                                                                               My son, hear the instruction of thy father, and forsake not the law of thy mother:
16410                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For they shall be an ornament of grace unto thy head, and chains about thy neck.
16411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My son, if sinners entice thee, consent thou not.
16412                                                                                                                                                                                                                                                                                                                                                                                                                                        If they say, Come with us, let us lay wait for blood, let us lurk privily for the innocent without cause:
16413                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let us swallow them up alive as the grave; and whole, as those that go down into the pit:
16414                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We shall find all precious substance, we shall fill our houses with spoil:
16415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cast in thy lot among us; let us all have one purse:
16416                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My son, walk not thou in the way with them; refrain thy foot from their path:
16417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For their feet run to evil, and make haste to shed blood.
16418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely in vain the net is spread in the sight of any bird.
16419                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they lay wait for their own blood; they lurk privily for their own lives.
16420                                                                                                                                                                                                                                                                                                                                                                                                                                           So are the ways of every one that is greedy of gain; which taketh away the life of the owners thereof.
16421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wisdom crieth without; she uttereth her voice in the streets:
16422                                                                                                                                                                                                                                                                                                                                                                                                                            She crieth in the chief place of concourse, in the openings of the gates: in the city she uttereth her words, saying,
16423                                                                                                                                                                                                                                                                                                                                                                                                                         How long, ye simple ones, will ye love simplicity? and the scorners delight in their scorning, and fools hate knowledge?
16424                                                                                                                                                                                                                                                                                                                                                                                                                                         Turn you at my reproof: behold, I will pour out my spirit unto you, I will make known my words unto you.
16425                                                                                                                                                                                                                                                                                                                                                                                                                                                        Because I have called, and ye refused; I have stretched out my hand, and no man regarded;
16426                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But ye have set at nought all my counsel, and would none of my reproof:
16427                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I also will laugh at your calamity; I will mock when your fear cometh;
16428                                                                                                                                                                                                                                                                                                                                                                                                                      When your fear cometh as desolation, and your destruction cometh as a whirlwind; when distress and anguish cometh upon you.
16429                                                                                                                                                                                                                                                                                                                                                                                                                                       Then shall they call upon me, but I will not answer; they shall seek me early, but they shall not find me:
16430                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For that they hated knowledge, and did not choose the fear of the LORD:
16431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They would none of my counsel: they despised all my reproof.
16432                                                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore shall they eat of the fruit of their own way, and be filled with their own devices.
16433                                                                                                                                                                                                                                                                                                                                                                                                                                              For the turning away of the simple shall slay them, and the prosperity of fools shall destroy them.
16434                                                                                                                                                                                                                                                                                                                                                                                                                                                           But whoso hearkeneth unto me shall dwell safely, and shall be quiet from fear of evil.
16435                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My son, if thou wilt receive my words, and hide my commandments with thee;
16436                                                                                                                                                                                                                                                                                                                                                                                                                                                              So that thou incline thine ear unto wisdom, and apply thine heart to understanding;
16437                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Yea, if thou criest after knowledge, and liftest up thy voice for understanding;
16438                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If thou seekest her as silver, and searchest for her as for hid treasures;
16439                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then shalt thou understand the fear of the LORD, and find the knowledge of God.
16440                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For the LORD giveth wisdom: out of his mouth cometh knowledge and understanding.
16441                                                                                                                                                                                                                                                                                                                                                                                                                                                        He layeth up sound wisdom for the righteous: he is a buckler to them that walk uprightly.
16442                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He keepeth the paths of judgment, and preserveth the way of his saints.
16443                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then shalt thou understand righteousness, and judgment, and equity; yea, every good path.
16444                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When wisdom entereth into thine heart, and knowledge is pleasant unto thy soul;
16445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Discretion shall preserve thee, understanding shall keep thee:
16446                                                                                                                                                                                                                                                                                                                                                                                                                                                         To deliver thee from the way of the evil man, from the man that speaketh froward things;
16447                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Who leave the paths of uprightness, to walk in the ways of darkness;
16448                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who rejoice to do evil, and delight in the frowardness of the wicked;
16449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whose ways are crooked, and they froward in their paths:
16450                                                                                                                                                                                                                                                                                                                                                                                                                                                  To deliver thee from the strange woman, even from the stranger which flattereth with her words;
16451                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Which forsaketh the guide of her youth, and forgetteth the covenant of her God.
16452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For her house inclineth unto death, and her paths unto the dead.
16453                                                                                                                                                                                                                                                                                                                                                                                                                                                                 None that go unto her return again, neither take they hold of the paths of life.
16454                                                                                                                                                                                                                                                                                                                                                                                                                                                               That thou mayest walk in the way of good men, and keep the paths of the righteous.
16455                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For the upright shall dwell in the land, and the perfect shall remain in it.
16456                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the wicked shall be cut off from the earth, and the transgressors shall be rooted out of it.
16457                                                                                                                                                                                                                                                                                                                                                                                                                                                                             My son, forget not my law; but let thine heart keep my commandments:
16458                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For length of days, and long life, and peace, shall they add to thee.
16459                                                                                                                                                                                                                                                                                                                                                                                                                                        Let not mercy and truth forsake thee: bind them about thy neck; write them upon the table of thine heart:
16460                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So shalt thou find favour and good understanding in the sight of God and man.
16461                                                                                                                                                                                                                                                                                                                                                                                                                                                               Trust in the LORD with all thine heart; and lean not unto thine own understanding.
16462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In all thy ways acknowledge him, and he shall direct thy paths.
16463                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Be not wise in thine own eyes: fear the LORD, and depart from evil.
16464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It shall be health to thy navel, and marrow to thy bones.
16465                                                                                                                                                                                                                                                                                                                                                                                                                                                              Honour the LORD with thy substance, and with the firstfruits of all thine increase:
16466                                                                                                                                                                                                                                                                                                                                                                                                                                                         So shall thy barns be filled with plenty, and thy presses shall burst out with new wine.
16467                                                                                                                                                                                                                                                                                                                                                                                                                                                              My son, despise not the chastening of the LORD; neither be weary of his correction:
16468                                                                                                                                                                                                                                                                                                                                                                                                                                                          For whom the LORD loveth he correcteth; even as a father the son in whom he delighteth.
16469                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Happy is the man that findeth wisdom, and the man that getteth understanding.
16470                                                                                                                                                                                                                                                                                                                                                                                                                                         For the merchandise of it is better than the merchandise of silver, and the gain thereof than fine gold.
16471                                                                                                                                                                                                                                                                                                                                                                                                                                          She is more precious than rubies: and all the things thou canst desire are not to be compared unto her.
16472                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Length of days is in her right hand; and in her left hand riches and honour.
16473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Her ways are ways of pleasantness, and all her paths are peace.
16474                                                                                                                                                                                                                                                                                                                                                                                                                                                 She is a tree of life to them that lay hold upon her: and happy is every one that retaineth her.
16475                                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD by wisdom hath founded the earth; by understanding hath he established the heavens.
16476                                                                                                                                                                                                                                                                                                                                                                                                                                                                     By his knowledge the depths are broken up, and the clouds drop down the dew.
16477                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My son, let not them depart from thine eyes: keep sound wisdom and discretion:
16478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So shall they be life unto thy soul, and grace to thy neck.
16479                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then shalt thou walk in thy way safely, and thy foot shall not stumble.
16480                                                                                                                                                                                                                                                                                                                                                                                                                                          When thou liest down, thou shalt not be afraid: yea, thou shalt lie down, and thy sleep shall be sweet.
16481                                                                                                                                                                                                                                                                                                                                                                                                                                                           Be not afraid of sudden fear, neither of the desolation of the wicked, when it cometh.
16482                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For the LORD shall be thy confidence, and shall keep thy foot from being taken.
16483                                                                                                                                                                                                                                                                                                                                                                                                                                                   Withhold not good from them to whom it is due, when it is in the power of thine hand to do it.
16484                                                                                                                                                                                                                                                                                                                                                                                                                                            Say not unto thy neighbour, Go, and come again, and to morrow I will give; when thou hast it by thee.
16485                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Devise not evil against thy neighbour, seeing he dwelleth securely by thee.
16486                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Strive not with a man without cause, if he have done thee no harm.
16487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Envy thou not the oppressor, and choose none of his ways.
16488                                                                                                                                                                                                                                                                                                                                                                                                                                                                For the froward is abomination to the LORD: but his secret is with the righteous.
16489                                                                                                                                                                                                                                                                                                                                                                                                                                                 The curse of the LORD is in the house of the wicked: but he blesseth the habitation of the just.
16490                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely he scorneth the scorners: but he giveth grace unto the lowly.
16491                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The wise shall inherit glory: but shame shall be the promotion of fools.
16492                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hear, ye children, the instruction of a father, and attend to know understanding.
16493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For I give you good doctrine, forsake ye not my law.
16494                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I was my father's son, tender and only beloved in the sight of my mother.
16495                                                                                                                                                                                                                                                                                                                                                                                                                                            He taught me also, and said unto me, Let thine heart retain my words: keep my commandments, and live.
16496                                                                                                                                                                                                                                                                                                                                                                                                                                                        Get wisdom, get understanding: forget it not; neither decline from the words of my mouth.
16497                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Forsake her not, and she shall preserve thee: love her, and she shall keep thee.
16498                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wisdom is the principal thing; therefore get wisdom: and with all thy getting get understanding.
16499                                                                                                                                                                                                                                                                                                                                                                                                                                               Exalt her, and she shall promote thee: she shall bring thee to honour, when thou dost embrace her.
16500                                                                                                                                                                                                                                                                                                                                                                                                                                                   She shall give to thine head an ornament of grace: a crown of glory shall she deliver to thee.
16501                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hear, O my son, and receive my sayings; and the years of thy life shall be many.
16502                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I have taught thee in the way of wisdom; I have led thee in right paths.
16503                                                                                                                                                                                                                                                                                                                                                                                                                                               When thou goest, thy steps shall not be straitened; and when thou runnest, thou shalt not stumble.
16504                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Take fast hold of instruction; let her not go: keep her; for she is thy life.
16505                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Enter not into the path of the wicked, and go not in the way of evil men.
16506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Avoid it, pass not by it, turn from it, and pass away.
16507                                                                                                                                                                                                                                                                                                                                                                                                                               For they sleep not, except they have done mischief; and their sleep is taken away, unless they cause some to fall.
16508                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For they eat the bread of wickedness, and drink the wine of violence.
16509                                                                                                                                                                                                                                                                                                                                                                                                                                               But the path of the just is as the shining light, that shineth more and more unto the perfect day.
16510                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The way of the wicked is as darkness: they know not at what they stumble.
16511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My son, attend to my words; incline thine ear unto my sayings.
16512                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let them not depart from thine eyes; keep them in the midst of thine heart.
16513                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For they are life unto those that find them, and health to all their flesh.
16514                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Keep thy heart with all diligence; for out of it are the issues of life.
16515                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Put away from thee a froward mouth, and perverse lips put far from thee.
16516                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let thine eyes look right on, and let thine eyelids look straight before thee.
16517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ponder the path of thy feet, and let all thy ways be established.
16518                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Turn not to the right hand nor to the left: remove thy foot from evil.
16519                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My son, attend unto my wisdom, and bow thine ear to my understanding:
16520                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That thou mayest regard discretion, and that thy lips may keep knowledge.
16521                                                                                                                                                                                                                                                                                                                                                                                                                                                        For the lips of a strange woman drop as an honeycomb, and her mouth is smoother than oil:
16522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But her end is bitter as wormwood, sharp as a two-edged sword.
16523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Her feet go down to death; her steps take hold on hell.
16524                                                                                                                                                                                                                                                                                                                                                                                                                                               Lest thou shouldest ponder the path of life, her ways are moveable, that thou canst not know them.
16525                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hear me now therefore, O ye children, and depart not from the words of my mouth.
16526                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Remove thy way far from her, and come not nigh the door of her house:
16527                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Lest thou give thine honour unto others, and thy years unto the cruel:
16528                                                                                                                                                                                                                                                                                                                                                                                                                                                         Lest strangers be filled with thy wealth; and thy labours be in the house of a stranger;
16529                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou mourn at the last, when thy flesh and thy body are consumed,
16530                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And say, How have I hated instruction, and my heart despised reproof;
16531                                                                                                                                                                                                                                                                                                                                                                                                                                                  And have not obeyed the voice of my teachers, nor inclined mine ear to them that instructed me!
16532                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I was almost in all evil in the midst of the congregation and assembly.
16533                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Drink waters out of thine own cistern, and running waters out of thine own well.
16534                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let thy fountains be dispersed abroad, and rivers of waters in the streets.
16535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Let them be only thine own, and not strangers' with thee.
16536                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let thy fountain be blessed: and rejoice with the wife of thy youth.
16537                                                                                                                                                                                                                                                                                                                                                                                                            Let her be as the loving hind and pleasant roe; let her breasts satisfy thee at all times; and be thou ravished always with her love.
16538                                                                                                                                                                                                                                                                                                                                                                                                                                                And why wilt thou, my son, be ravished with a strange woman, and embrace the bosom of a stranger?
16539                                                                                                                                                                                                                                                                                                                                                                                                                                                            For the ways of man are before the eyes of the LORD, and he pondereth all his goings.
16540                                                                                                                                                                                                                                                                                                                                                                                                                                             His own iniquities shall take the wicked himself, and he shall be holden with the cords of his sins.
16541                                                                                                                                                                                                                                                                                                                                                                                                                                                          He shall die without instruction; and in the greatness of his folly he shall go astray.
16542                                                                                                                                                                                                                                                                                                                                                                                                                                                        My son, if thou be surety for thy friend, if thou hast stricken thy hand with a stranger,
16543                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou art snared with the words of thy mouth, thou art taken with the words of thy mouth.
16544                                                                                                                                                                                                                                                                                                                                                                                                          Do this now, my son, and deliver thyself, when thou art come into the hand of thy friend; go, humble thyself, and make sure thy friend.
16545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Give not sleep to thine eyes, nor slumber to thine eyelids.
16546                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deliver thyself as a roe from the hand of the hunter, and as a bird from the hand of the fowler.
16547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Go to the ant, thou sluggard; consider her ways, and be wise:
16548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Which having no guide, overseer, or ruler,
16549                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Provideth her meat in the summer, and gathereth her food in the harvest.
16550                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How long wilt thou sleep, O sluggard? when wilt thou arise out of thy sleep?
16551                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet a little sleep, a little slumber, a little folding of the hands to sleep:
16552                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So shall thy poverty come as one that travelleth, and thy want as an armed man.
16553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A naughty person, a wicked man, walketh with a froward mouth.
16554                                                                                                                                                                                                                                                                                                                                                                                                                                                               He winketh with his eyes, he speaketh with his feet, he teacheth with his fingers;
16555                                                                                                                                                                                                                                                                                                                                                                                                                                                                Frowardness is in his heart, he deviseth mischief continually; he soweth discord.
16556                                                                                                                                                                                                                                                                                                                                                                                                                                                          Therefore shall his calamity come suddenly; suddenly shall he be broken without remedy.
16557                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These six things doth the LORD hate: yea, seven are an abomination unto him:
16558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A proud look, a lying tongue, and hands that shed innocent blood,
16559                                                                                                                                                                                                                                                                                                                                                                                                                                                           An heart that deviseth wicked imaginations, feet that be swift in running to mischief,
16560                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A false witness that speaketh lies, and he that soweth discord among brethren.
16561                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My son, keep thy father's commandment, and forsake not the law of thy mother:
16562                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Bind them continually upon thine heart, and tie them about thy neck.
16563                                                                                                                                                                                                                                                                                                                                                                                                                     When thou goest, it shall lead thee; when thou sleepest, it shall keep thee; and when thou awakest, it shall talk with thee.
16564                                                                                                                                                                                                                                                                                                                                                                                                                                            For the commandment is a lamp; and the law is light; and reproofs of instruction are the way of life:
16565                                                                                                                                                                                                                                                                                                                                                                                                                                                            To keep thee from the evil woman, from the flattery of the tongue of a strange woman.
16566                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lust not after her beauty in thine heart; neither let her take thee with her eyelids.
16567                                                                                                                                                                                                                                                                                                                                                                                                                         For by means of a whorish woman a man is brought to a piece of bread: and the adultress will hunt for the precious life.
16568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Can a man take fire in his bosom, and his clothes not be burned?
16569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Can one go upon hot coals, and his feet not be burned?
16570                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he that goeth in to his neighbour's wife; whosoever toucheth her shall not be innocent.
16571                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Men do not despise a thief, if he steal to satisfy his soul when he is hungry;
16572                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if he be found, he shall restore sevenfold; he shall give all the substance of his house.
16573                                                                                                                                                                                                                                                                                                                                                                                                                                      But whoso committeth adultery with a woman lacketh understanding: he that doeth it destroyeth his own soul.
16574                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A wound and dishonour shall he get; and his reproach shall not be wiped away.
16575                                                                                                                                                                                                                                                                                                                                                                                                                                                          For jealousy is the rage of a man: therefore he will not spare in the day of vengeance.
16576                                                                                                                                                                                                                                                                                                                                                                                                                                                      He will not regard any ransom; neither will he rest content, though thou givest many gifts.
16577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     My son, keep my words, and lay up my commandments with thee.
16578                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Keep my commandments, and live; and my law as the apple of thine eye.
16579                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bind them upon thy fingers, write them upon the table of thine heart.
16580                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say unto wisdom, Thou art my sister; and call understanding thy kinswoman:
16581                                                                                                                                                                                                                                                                                                                                                                                                                                               That they may keep thee from the strange woman, from the stranger which flattereth with her words.
16582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For at the window of my house I looked through my casement,
16583                                                                                                                                                                                                                                                                                                                                                                                                                                               And beheld among the simple ones, I discerned among the youths, a young man void of understanding,
16584                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Passing through the street near her corner; and he went the way to her house,
16585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In the twilight, in the evening, in the black and dark night:
16586                                                                                                                                                                                                                                                                                                                                                                                                                                                            And, behold, there met him a woman with the attire of an harlot, and subtil of heart.
16587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (She is loud and stubborn; her feet abide not in her house:
16588                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now is she without, now in the streets, and lieth in wait at every corner.)
16589                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So she caught him, and kissed him, and with an impudent face said unto him,
16590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have peace offerings with me; this day have I payed my vows.
16591                                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore came I forth to meet thee, diligently to seek thy face, and I have found thee.
16592                                                                                                                                                                                                                                                                                                                                                                                                                                                    I have decked my bed with coverings of tapestry, with carved works, with fine linen of Egypt.
16593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I have perfumed my bed with myrrh, aloes, and cinnamon.
16594                                                                                                                                                                                                                                                                                                                                                                                                                                                        Come, let us take our fill of love until the morning: let us solace ourselves with loves.
16595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the goodman is not at home, he is gone a long journey:
16596                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He hath taken a bag of money with him, and will come home at the day appointed.
16597                                                                                                                                                                                                                                                                                                                                                                                                                                               With her much fair speech she caused him to yield, with the flattering of her lips she forced him.
16598                                                                                                                                                                                                                                                                                                                                                                                                                                   He goeth after her straightway, as an ox goeth to the slaughter, or as a fool to the correction of the stocks;
16599                                                                                                                                                                                                                                                                                                                                                                                                                                   Till a dart strike through his liver; as a bird hasteth to the snare, and knoweth not that it is for his life.
16600                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hearken unto me now therefore, O ye children, and attend to the words of my mouth.
16601                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let not thine heart decline to her ways, go not astray in her paths.
16602                                                                                                                                                                                                                                                                                                                                                                                                                                                                For she hath cast down many wounded: yea, many strong men have been slain by her.
16603                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Her house is the way to hell, going down to the chambers of death.
16604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Doth not wisdom cry? and understanding put forth her voice?
16605                                                                                                                                                                                                                                                                                                                                                                                                                                                                   She standeth in the top of high places, by the way in the places of the paths.
16606                                                                                                                                                                                                                                                                                                                                                                                                                                                                She crieth at the gates, at the entry of the city, at the coming in at the doors.
16607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Unto you, O men, I call; and my voice is to the sons of man.
16608                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O ye simple, understand wisdom: and, ye fools, be ye of an understanding heart.
16609                                                                                                                                                                                                                                                                                                                                                                                                                                                    Hear; for I will speak of excellent things; and the opening of my lips shall be right things.
16610                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For my mouth shall speak truth; and wickedness is an abomination to my lips.
16611                                                                                                                                                                                                                                                                                                                                                                                                                                                    All the words of my mouth are in righteousness; there is nothing froward or perverse in them.
16612                                                                                                                                                                                                                                                                                                                                                                                                                                                             They are all plain to him that understandeth, and right to them that find knowledge.
16613                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Receive my instruction, and not silver; and knowledge rather than choice gold.
16614                                                                                                                                                                                                                                                                                                                                                                                                                                           For wisdom is better than rubies; and all the things that may be desired are not to be compared to it.
16615                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I wisdom dwell with prudence, and find out knowledge of witty inventions.
16616                                                                                                                                                                                                                                                                                                                                                                                                                                  The fear of the LORD is to hate evil: pride, and arrogancy, and the evil way, and the froward mouth, do I hate.
16617                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Counsel is mine, and sound wisdom: I am understanding; I have strength.
16618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   By me kings reign, and princes decree justice.
16619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                By me princes rule, and nobles, even all the judges of the earth.
16620                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I love them that love me; and those that seek me early shall find me.
16621                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Riches and honour are with me; yea, durable riches and righteousness.
16622                                                                                                                                                                                                                                                                                                                                                                                                                                                            My fruit is better than gold, yea, than fine gold; and my revenue than choice silver.
16623                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I lead in the way of righteousness, in the midst of the paths of judgment:
16624                                                                                                                                                                                                                                                                                                                                                                                                                                                       That I may cause those that love me to inherit substance; and I will fill their treasures.
16625                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD possessed me in the beginning of his way, before his works of old.
16626                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I was set up from everlasting, from the beginning, or ever the earth was.
16627                                                                                                                                                                                                                                                                                                                                                                                                                                               When there were no depths, I was brought forth; when there were no fountains abounding with water.
16628                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Before the mountains were settled, before the hills was I brought forth:
16629                                                                                                                                                                                                                                                                                                                                                                                                                                           While as yet he had not made the earth, nor the fields, nor the highest part of the dust of the world.
16630                                                                                                                                                                                                                                                                                                                                                                                                                                                     When he prepared the heavens, I was there: when he set a compass upon the face of the depth:
16631                                                                                                                                                                                                                                                                                                                                                                                                                                                            When he established the clouds above: when he strengthened the fountains of the deep:
16632                                                                                                                                                                                                                                                                                                                                                                                                             When he gave to the sea his decree, that the waters should not pass his commandment: when he appointed the foundations of the earth:
16633                                                                                                                                                                                                                                                                                                                                                                                                                                         Then I was by him, as one brought up with him: and I was daily his delight, rejoicing always before him;
16634                                                                                                                                                                                                                                                                                                                                                                                                                                                         Rejoicing in the habitable part of his earth; and my delights were with the sons of men.
16635                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore hearken unto me, O ye children: for blessed are they that keep my ways.
16636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hear instruction, and be wise, and refuse it not.
16637                                                                                                                                                                                                                                                                                                                                                                                                                                                Blessed is the man that heareth me, watching daily at my gates, waiting at the posts of my doors.
16638                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For whoso findeth me findeth life, and shall obtain favour of the LORD.
16639                                                                                                                                                                                                                                                                                                                                                                                                                                                          But he that sinneth against me wrongeth his own soul: all they that hate me love death.
16640                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wisdom hath builded her house, she hath hewn out her seven pillars:
16641                                                                                                                                                                                                                                                                                                                                                                                                                                                        She hath killed her beasts; she hath mingled her wine; she hath also furnished her table.
16642                                                                                                                                                                                                                                                                                                                                                                                                                                                                 She hath sent forth her maidens: she crieth upon the highest places of the city,
16643                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoso is simple, let him turn in hither: as for him that wanteth understanding, she saith to him,
16644                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Come, eat of my bread, and drink of the wine which I have mingled.
16645                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Forsake the foolish, and live; and go in the way of understanding.
16646                                                                                                                                                                                                                                                                                                                                                                                                                                  He that reproveth a scorner getteth to himself shame: and he that rebuketh a wicked man getteth himself a blot.
16647                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reprove not a scorner, lest he hate thee: rebuke a wise man, and he will love thee.
16648                                                                                                                                                                                                                                                                                                                                                                                                                                    Give instruction to a wise man, and he will be yet wiser: teach a just man, and he will increase in learning.
16649                                                                                                                                                                                                                                                                                                                                                                                                                                                 The fear of the LORD is the beginning of wisdom: and the knowledge of the holy is understanding.
16650                                                                                                                                                                                                                                                                                                                                                                                                                                                            For by me thy days shall be multiplied, and the years of thy life shall be increased.
16651                                                                                                                                                                                                                                                                                                                                                                                                                                                 If thou be wise, thou shalt be wise for thyself: but if thou scornest, thou alone shalt bear it.
16652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A foolish woman is clamorous: she is simple, and knoweth nothing.
16653                                                                                                                                                                                                                                                                                                                                                                                                                                                              For she sitteth at the door of her house, on a seat in the high places of the city,
16654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To call passengers who go right on their ways:
16655                                                                                                                                                                                                                                                                                                                                                                                                                                            Whoso is simple, let him turn in hither: and as for him that wanteth understanding, she saith to him,
16656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stolen waters are sweet, and bread eaten in secret is pleasant.
16657                                                                                                                                                                                                                                                                                                                                                                                                                                                       But he knoweth not that the dead are there; and that her guests are in the depths of hell.
16658                                                                                                                                                                                                                                                                                                                                                                                                                                      The proverbs of Solomon. A wise son maketh a glad father: but a foolish son is the heaviness of his mother.
16659                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Treasures of wickedness profit nothing: but righteousness delivereth from death.
16660                                                                                                                                                                                                                                                                                                                                                                                                                                   The LORD will not suffer the soul of the righteous to famish: but he casteth away the substance of the wicked.
16661                                                                                                                                                                                                                                                                                                                                                                                                                                                       He becometh poor that dealeth with a slack hand: but the hand of the diligent maketh rich.
16662                                                                                                                                                                                                                                                                                                                                                                                                                                          He that gathereth in summer is a wise son: but he that sleepeth in harvest is a son that causeth shame.
16663                                                                                                                                                                                                                                                                                                                                                                                                                                                          Blessings are upon the head of the just: but violence covereth the mouth of the wicked.
16664                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The memory of the just is blessed: but the name of the wicked shall rot.
16665                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The wise in heart will receive commandments: but a prating fool shall fall.
16666                                                                                                                                                                                                                                                                                                                                                                                                                                                        He that walketh uprightly walketh surely: but he that perverteth his ways shall be known.
      overall_n                    title
1             1 King James Version Bible
2             2 King James Version Bible
3             3 King James Version Bible
4             4 King James Version Bible
5             5 King James Version Bible
6             6 King James Version Bible
7             7 King James Version Bible
8             8 King James Version Bible
9             9 King James Version Bible
10           10 King James Version Bible
11           11 King James Version Bible
12           12 King James Version Bible
13           13 King James Version Bible
14           14 King James Version Bible
15           15 King James Version Bible
16           16 King James Version Bible
17           17 King James Version Bible
18           18 King James Version Bible
19           19 King James Version Bible
20           20 King James Version Bible
21           21 King James Version Bible
22           22 King James Version Bible
23           23 King James Version Bible
24           24 King James Version Bible
25           25 King James Version Bible
26           26 King James Version Bible
27           27 King James Version Bible
28           28 King James Version Bible
29           29 King James Version Bible
30           30 King James Version Bible
31           31 King James Version Bible
32           32 King James Version Bible
33           33 King James Version Bible
34           34 King James Version Bible
35           35 King James Version Bible
36           36 King James Version Bible
37           37 King James Version Bible
38           38 King James Version Bible
39           39 King James Version Bible
40           40 King James Version Bible
41           41 King James Version Bible
42           42 King James Version Bible
43           43 King James Version Bible
44           44 King James Version Bible
45           45 King James Version Bible
46           46 King James Version Bible
47           47 King James Version Bible
48           48 King James Version Bible
49           49 King James Version Bible
50           50 King James Version Bible
51           51 King James Version Bible
52           52 King James Version Bible
53           53 King James Version Bible
54           54 King James Version Bible
55           55 King James Version Bible
56           56 King James Version Bible
57           57 King James Version Bible
58           58 King James Version Bible
59           59 King James Version Bible
60           60 King James Version Bible
61           61 King James Version Bible
62           62 King James Version Bible
63           63 King James Version Bible
64           64 King James Version Bible
65           65 King James Version Bible
66           66 King James Version Bible
67           67 King James Version Bible
68           68 King James Version Bible
69           69 King James Version Bible
70           70 King James Version Bible
71           71 King James Version Bible
72           72 King James Version Bible
73           73 King James Version Bible
74           74 King James Version Bible
75           75 King James Version Bible
76           76 King James Version Bible
77           77 King James Version Bible
78           78 King James Version Bible
79           79 King James Version Bible
80           80 King James Version Bible
81           81 King James Version Bible
82           82 King James Version Bible
83           83 King James Version Bible
84           84 King James Version Bible
85           85 King James Version Bible
86           86 King James Version Bible
87           87 King James Version Bible
88           88 King James Version Bible
89           89 King James Version Bible
90           90 King James Version Bible
91           91 King James Version Bible
92           92 King James Version Bible
93           93 King James Version Bible
94           94 King James Version Bible
95           95 King James Version Bible
96           96 King James Version Bible
97           97 King James Version Bible
98           98 King James Version Bible
99           99 King James Version Bible
100         100 King James Version Bible
101         101 King James Version Bible
102         102 King James Version Bible
103         103 King James Version Bible
104         104 King James Version Bible
105         105 King James Version Bible
106         106 King James Version Bible
107         107 King James Version Bible
108         108 King James Version Bible
109         109 King James Version Bible
110         110 King James Version Bible
111         111 King James Version Bible
112         112 King James Version Bible
113         113 King James Version Bible
114         114 King James Version Bible
115         115 King James Version Bible
116         116 King James Version Bible
117         117 King James Version Bible
118         118 King James Version Bible
119         119 King James Version Bible
120         120 King James Version Bible
121         121 King James Version Bible
122         122 King James Version Bible
123         123 King James Version Bible
124         124 King James Version Bible
125         125 King James Version Bible
126         126 King James Version Bible
127         127 King James Version Bible
128         128 King James Version Bible
129         129 King James Version Bible
130         130 King James Version Bible
131         131 King James Version Bible
132         132 King James Version Bible
133         133 King James Version Bible
134         134 King James Version Bible
135         135 King James Version Bible
136         136 King James Version Bible
137         137 King James Version Bible
138         138 King James Version Bible
139         139 King James Version Bible
140         140 King James Version Bible
141         141 King James Version Bible
142         142 King James Version Bible
143         143 King James Version Bible
144         144 King James Version Bible
145         145 King James Version Bible
146         146 King James Version Bible
147         147 King James Version Bible
148         148 King James Version Bible
149         149 King James Version Bible
150         150 King James Version Bible
151         151 King James Version Bible
152         152 King James Version Bible
153         153 King James Version Bible
154         154 King James Version Bible
155         155 King James Version Bible
156         156 King James Version Bible
157         157 King James Version Bible
158         158 King James Version Bible
159         159 King James Version Bible
160         160 King James Version Bible
161         161 King James Version Bible
162         162 King James Version Bible
163         163 King James Version Bible
164         164 King James Version Bible
165         165 King James Version Bible
166         166 King James Version Bible
167         167 King James Version Bible
168         168 King James Version Bible
169         169 King James Version Bible
170         170 King James Version Bible
171         171 King James Version Bible
172         172 King James Version Bible
173         173 King James Version Bible
174         174 King James Version Bible
175         175 King James Version Bible
176         176 King James Version Bible
177         177 King James Version Bible
178         178 King James Version Bible
179         179 King James Version Bible
180         180 King James Version Bible
181         181 King James Version Bible
182         182 King James Version Bible
183         183 King James Version Bible
184         184 King James Version Bible
185         185 King James Version Bible
186         186 King James Version Bible
187         187 King James Version Bible
188         188 King James Version Bible
189         189 King James Version Bible
190         190 King James Version Bible
191         191 King James Version Bible
192         192 King James Version Bible
193         193 King James Version Bible
194         194 King James Version Bible
195         195 King James Version Bible
196         196 King James Version Bible
197         197 King James Version Bible
198         198 King James Version Bible
199         199 King James Version Bible
200         200 King James Version Bible
201         201 King James Version Bible
202         202 King James Version Bible
203         203 King James Version Bible
204         204 King James Version Bible
205         205 King James Version Bible
206         206 King James Version Bible
207         207 King James Version Bible
208         208 King James Version Bible
209         209 King James Version Bible
210         210 King James Version Bible
211         211 King James Version Bible
212         212 King James Version Bible
213         213 King James Version Bible
214         214 King James Version Bible
215         215 King James Version Bible
216         216 King James Version Bible
217         217 King James Version Bible
218         218 King James Version Bible
219         219 King James Version Bible
220         220 King James Version Bible
221         221 King James Version Bible
222         222 King James Version Bible
223         223 King James Version Bible
224         224 King James Version Bible
225         225 King James Version Bible
226         226 King James Version Bible
227         227 King James Version Bible
228         228 King James Version Bible
229         229 King James Version Bible
230         230 King James Version Bible
231         231 King James Version Bible
232         232 King James Version Bible
233         233 King James Version Bible
234         234 King James Version Bible
235         235 King James Version Bible
236         236 King James Version Bible
237         237 King James Version Bible
238         238 King James Version Bible
239         239 King James Version Bible
240         240 King James Version Bible
241         241 King James Version Bible
242         242 King James Version Bible
243         243 King James Version Bible
244         244 King James Version Bible
245         245 King James Version Bible
246         246 King James Version Bible
247         247 King James Version Bible
248         248 King James Version Bible
249         249 King James Version Bible
250         250 King James Version Bible
251         251 King James Version Bible
252         252 King James Version Bible
253         253 King James Version Bible
254         254 King James Version Bible
255         255 King James Version Bible
256         256 King James Version Bible
257         257 King James Version Bible
258         258 King James Version Bible
259         259 King James Version Bible
260         260 King James Version Bible
261         261 King James Version Bible
262         262 King James Version Bible
263         263 King James Version Bible
264         264 King James Version Bible
265         265 King James Version Bible
266         266 King James Version Bible
267         267 King James Version Bible
268         268 King James Version Bible
269         269 King James Version Bible
270         270 King James Version Bible
271         271 King James Version Bible
272         272 King James Version Bible
273         273 King James Version Bible
274         274 King James Version Bible
275         275 King James Version Bible
276         276 King James Version Bible
277         277 King James Version Bible
278         278 King James Version Bible
279         279 King James Version Bible
280         280 King James Version Bible
281         281 King James Version Bible
282         282 King James Version Bible
283         283 King James Version Bible
284         284 King James Version Bible
285         285 King James Version Bible
286         286 King James Version Bible
287         287 King James Version Bible
288         288 King James Version Bible
289         289 King James Version Bible
290         290 King James Version Bible
291         291 King James Version Bible
292         292 King James Version Bible
293         293 King James Version Bible
294         294 King James Version Bible
295         295 King James Version Bible
296         296 King James Version Bible
297         297 King James Version Bible
298         298 King James Version Bible
299         299 King James Version Bible
300         300 King James Version Bible
301         301 King James Version Bible
302         302 King James Version Bible
303         303 King James Version Bible
304         304 King James Version Bible
305         305 King James Version Bible
306         306 King James Version Bible
307         307 King James Version Bible
308         308 King James Version Bible
309         309 King James Version Bible
310         310 King James Version Bible
311         311 King James Version Bible
312         312 King James Version Bible
313         313 King James Version Bible
314         314 King James Version Bible
315         315 King James Version Bible
316         316 King James Version Bible
317         317 King James Version Bible
318         318 King James Version Bible
319         319 King James Version Bible
320         320 King James Version Bible
321         321 King James Version Bible
322         322 King James Version Bible
323         323 King James Version Bible
324         324 King James Version Bible
325         325 King James Version Bible
326         326 King James Version Bible
327         327 King James Version Bible
328         328 King James Version Bible
329         329 King James Version Bible
330         330 King James Version Bible
331         331 King James Version Bible
332         332 King James Version Bible
333         333 King James Version Bible
334         334 King James Version Bible
335         335 King James Version Bible
336         336 King James Version Bible
337         337 King James Version Bible
338         338 King James Version Bible
339         339 King James Version Bible
340         340 King James Version Bible
341         341 King James Version Bible
342         342 King James Version Bible
343         343 King James Version Bible
344         344 King James Version Bible
345         345 King James Version Bible
346         346 King James Version Bible
347         347 King James Version Bible
348         348 King James Version Bible
349         349 King James Version Bible
350         350 King James Version Bible
351         351 King James Version Bible
352         352 King James Version Bible
353         353 King James Version Bible
354         354 King James Version Bible
355         355 King James Version Bible
356         356 King James Version Bible
357         357 King James Version Bible
358         358 King James Version Bible
359         359 King James Version Bible
360         360 King James Version Bible
361         361 King James Version Bible
362         362 King James Version Bible
363         363 King James Version Bible
364         364 King James Version Bible
365         365 King James Version Bible
366         366 King James Version Bible
367         367 King James Version Bible
368         368 King James Version Bible
369         369 King James Version Bible
370         370 King James Version Bible
371         371 King James Version Bible
372         372 King James Version Bible
373         373 King James Version Bible
374         374 King James Version Bible
375         375 King James Version Bible
376         376 King James Version Bible
377         377 King James Version Bible
378         378 King James Version Bible
379         379 King James Version Bible
380         380 King James Version Bible
381         381 King James Version Bible
382         382 King James Version Bible
383         383 King James Version Bible
384         384 King James Version Bible
385         385 King James Version Bible
386         386 King James Version Bible
387         387 King James Version Bible
388         388 King James Version Bible
389         389 King James Version Bible
390         390 King James Version Bible
391         391 King James Version Bible
392         392 King James Version Bible
393         393 King James Version Bible
394         394 King James Version Bible
395         395 King James Version Bible
396         396 King James Version Bible
397         397 King James Version Bible
398         398 King James Version Bible
399         399 King James Version Bible
400         400 King James Version Bible
401         401 King James Version Bible
402         402 King James Version Bible
403         403 King James Version Bible
404         404 King James Version Bible
405         405 King James Version Bible
406         406 King James Version Bible
407         407 King James Version Bible
408         408 King James Version Bible
409         409 King James Version Bible
410         410 King James Version Bible
411         411 King James Version Bible
412         412 King James Version Bible
413         413 King James Version Bible
414         414 King James Version Bible
415         415 King James Version Bible
416         416 King James Version Bible
417         417 King James Version Bible
418         418 King James Version Bible
419         419 King James Version Bible
420         420 King James Version Bible
421         421 King James Version Bible
422         422 King James Version Bible
423         423 King James Version Bible
424         424 King James Version Bible
425         425 King James Version Bible
426         426 King James Version Bible
427         427 King James Version Bible
428         428 King James Version Bible
429         429 King James Version Bible
430         430 King James Version Bible
431         431 King James Version Bible
432         432 King James Version Bible
433         433 King James Version Bible
434         434 King James Version Bible
435         435 King James Version Bible
436         436 King James Version Bible
437         437 King James Version Bible
438         438 King James Version Bible
439         439 King James Version Bible
440         440 King James Version Bible
441         441 King James Version Bible
442         442 King James Version Bible
443         443 King James Version Bible
444         444 King James Version Bible
445         445 King James Version Bible
446         446 King James Version Bible
447         447 King James Version Bible
448         448 King James Version Bible
449         449 King James Version Bible
450         450 King James Version Bible
451         451 King James Version Bible
452         452 King James Version Bible
453         453 King James Version Bible
454         454 King James Version Bible
455         455 King James Version Bible
456         456 King James Version Bible
457         457 King James Version Bible
458         458 King James Version Bible
459         459 King James Version Bible
460         460 King James Version Bible
461         461 King James Version Bible
462         462 King James Version Bible
463         463 King James Version Bible
464         464 King James Version Bible
465         465 King James Version Bible
466         466 King James Version Bible
467         467 King James Version Bible
468         468 King James Version Bible
469         469 King James Version Bible
470         470 King James Version Bible
471         471 King James Version Bible
472         472 King James Version Bible
473         473 King James Version Bible
474         474 King James Version Bible
475         475 King James Version Bible
476         476 King James Version Bible
477         477 King James Version Bible
478         478 King James Version Bible
479         479 King James Version Bible
480         480 King James Version Bible
481         481 King James Version Bible
482         482 King James Version Bible
483         483 King James Version Bible
484         484 King James Version Bible
485         485 King James Version Bible
486         486 King James Version Bible
487         487 King James Version Bible
488         488 King James Version Bible
489         489 King James Version Bible
490         490 King James Version Bible
491         491 King James Version Bible
492         492 King James Version Bible
493         493 King James Version Bible
494         494 King James Version Bible
495         495 King James Version Bible
496         496 King James Version Bible
497         497 King James Version Bible
498         498 King James Version Bible
499         499 King James Version Bible
500         500 King James Version Bible
501         501 King James Version Bible
502         502 King James Version Bible
503         503 King James Version Bible
504         504 King James Version Bible
505         505 King James Version Bible
506         506 King James Version Bible
507         507 King James Version Bible
508         508 King James Version Bible
509         509 King James Version Bible
510         510 King James Version Bible
511         511 King James Version Bible
512         512 King James Version Bible
513         513 King James Version Bible
514         514 King James Version Bible
515         515 King James Version Bible
516         516 King James Version Bible
517         517 King James Version Bible
518         518 King James Version Bible
519         519 King James Version Bible
520         520 King James Version Bible
521         521 King James Version Bible
522         522 King James Version Bible
523         523 King James Version Bible
524         524 King James Version Bible
525         525 King James Version Bible
526         526 King James Version Bible
527         527 King James Version Bible
528         528 King James Version Bible
529         529 King James Version Bible
530         530 King James Version Bible
531         531 King James Version Bible
532         532 King James Version Bible
533         533 King James Version Bible
534         534 King James Version Bible
535         535 King James Version Bible
536         536 King James Version Bible
537         537 King James Version Bible
538         538 King James Version Bible
539         539 King James Version Bible
540         540 King James Version Bible
541         541 King James Version Bible
542         542 King James Version Bible
543         543 King James Version Bible
544         544 King James Version Bible
545         545 King James Version Bible
546         546 King James Version Bible
547         547 King James Version Bible
548         548 King James Version Bible
549         549 King James Version Bible
550         550 King James Version Bible
551         551 King James Version Bible
552         552 King James Version Bible
553         553 King James Version Bible
554         554 King James Version Bible
555         555 King James Version Bible
556         556 King James Version Bible
557         557 King James Version Bible
558         558 King James Version Bible
559         559 King James Version Bible
560         560 King James Version Bible
561         561 King James Version Bible
562         562 King James Version Bible
563         563 King James Version Bible
564         564 King James Version Bible
565         565 King James Version Bible
566         566 King James Version Bible
567         567 King James Version Bible
568         568 King James Version Bible
569         569 King James Version Bible
570         570 King James Version Bible
571         571 King James Version Bible
572         572 King James Version Bible
573         573 King James Version Bible
574         574 King James Version Bible
575         575 King James Version Bible
576         576 King James Version Bible
577         577 King James Version Bible
578         578 King James Version Bible
579         579 King James Version Bible
580         580 King James Version Bible
581         581 King James Version Bible
582         582 King James Version Bible
583         583 King James Version Bible
584         584 King James Version Bible
585         585 King James Version Bible
586         586 King James Version Bible
587         587 King James Version Bible
588         588 King James Version Bible
589         589 King James Version Bible
590         590 King James Version Bible
591         591 King James Version Bible
592         592 King James Version Bible
593         593 King James Version Bible
594         594 King James Version Bible
595         595 King James Version Bible
596         596 King James Version Bible
597         597 King James Version Bible
598         598 King James Version Bible
599         599 King James Version Bible
600         600 King James Version Bible
601         601 King James Version Bible
602         602 King James Version Bible
603         603 King James Version Bible
604         604 King James Version Bible
605         605 King James Version Bible
606         606 King James Version Bible
607         607 King James Version Bible
608         608 King James Version Bible
609         609 King James Version Bible
610         610 King James Version Bible
611         611 King James Version Bible
612         612 King James Version Bible
613         613 King James Version Bible
614         614 King James Version Bible
615         615 King James Version Bible
616         616 King James Version Bible
617         617 King James Version Bible
618         618 King James Version Bible
619         619 King James Version Bible
620         620 King James Version Bible
621         621 King James Version Bible
622         622 King James Version Bible
623         623 King James Version Bible
624         624 King James Version Bible
625         625 King James Version Bible
626         626 King James Version Bible
627         627 King James Version Bible
628         628 King James Version Bible
629         629 King James Version Bible
630         630 King James Version Bible
631         631 King James Version Bible
632         632 King James Version Bible
633         633 King James Version Bible
634         634 King James Version Bible
635         635 King James Version Bible
636         636 King James Version Bible
637         637 King James Version Bible
638         638 King James Version Bible
639         639 King James Version Bible
640         640 King James Version Bible
641         641 King James Version Bible
642         642 King James Version Bible
643         643 King James Version Bible
644         644 King James Version Bible
645         645 King James Version Bible
646         646 King James Version Bible
647         647 King James Version Bible
648         648 King James Version Bible
649         649 King James Version Bible
650         650 King James Version Bible
651         651 King James Version Bible
652         652 King James Version Bible
653         653 King James Version Bible
654         654 King James Version Bible
655         655 King James Version Bible
656         656 King James Version Bible
657         657 King James Version Bible
658         658 King James Version Bible
659         659 King James Version Bible
660         660 King James Version Bible
661         661 King James Version Bible
662         662 King James Version Bible
663         663 King James Version Bible
664         664 King James Version Bible
665         665 King James Version Bible
666         666 King James Version Bible
667         667 King James Version Bible
668         668 King James Version Bible
669         669 King James Version Bible
670         670 King James Version Bible
671         671 King James Version Bible
672         672 King James Version Bible
673         673 King James Version Bible
674         674 King James Version Bible
675         675 King James Version Bible
676         676 King James Version Bible
677         677 King James Version Bible
678         678 King James Version Bible
679         679 King James Version Bible
680         680 King James Version Bible
681         681 King James Version Bible
682         682 King James Version Bible
683         683 King James Version Bible
684         684 King James Version Bible
685         685 King James Version Bible
686         686 King James Version Bible
687         687 King James Version Bible
688         688 King James Version Bible
689         689 King James Version Bible
690         690 King James Version Bible
691         691 King James Version Bible
692         692 King James Version Bible
693         693 King James Version Bible
694         694 King James Version Bible
695         695 King James Version Bible
696         696 King James Version Bible
697         697 King James Version Bible
698         698 King James Version Bible
699         699 King James Version Bible
700         700 King James Version Bible
701         701 King James Version Bible
702         702 King James Version Bible
703         703 King James Version Bible
704         704 King James Version Bible
705         705 King James Version Bible
706         706 King James Version Bible
707         707 King James Version Bible
708         708 King James Version Bible
709         709 King James Version Bible
710         710 King James Version Bible
711         711 King James Version Bible
712         712 King James Version Bible
713         713 King James Version Bible
714         714 King James Version Bible
715         715 King James Version Bible
716         716 King James Version Bible
717         717 King James Version Bible
718         718 King James Version Bible
719         719 King James Version Bible
720         720 King James Version Bible
721         721 King James Version Bible
722         722 King James Version Bible
723         723 King James Version Bible
724         724 King James Version Bible
725         725 King James Version Bible
726         726 King James Version Bible
727         727 King James Version Bible
728         728 King James Version Bible
729         729 King James Version Bible
730         730 King James Version Bible
731         731 King James Version Bible
732         732 King James Version Bible
733         733 King James Version Bible
734         734 King James Version Bible
735         735 King James Version Bible
736         736 King James Version Bible
737         737 King James Version Bible
738         738 King James Version Bible
739         739 King James Version Bible
740         740 King James Version Bible
741         741 King James Version Bible
742         742 King James Version Bible
743         743 King James Version Bible
744         744 King James Version Bible
745         745 King James Version Bible
746         746 King James Version Bible
747         747 King James Version Bible
748         748 King James Version Bible
749         749 King James Version Bible
750         750 King James Version Bible
751         751 King James Version Bible
752         752 King James Version Bible
753         753 King James Version Bible
754         754 King James Version Bible
755         755 King James Version Bible
756         756 King James Version Bible
757         757 King James Version Bible
758         758 King James Version Bible
759         759 King James Version Bible
760         760 King James Version Bible
761         761 King James Version Bible
762         762 King James Version Bible
763         763 King James Version Bible
764         764 King James Version Bible
765         765 King James Version Bible
766         766 King James Version Bible
767         767 King James Version Bible
768         768 King James Version Bible
769         769 King James Version Bible
770         770 King James Version Bible
771         771 King James Version Bible
772         772 King James Version Bible
773         773 King James Version Bible
774         774 King James Version Bible
775         775 King James Version Bible
776         776 King James Version Bible
777         777 King James Version Bible
778         778 King James Version Bible
779         779 King James Version Bible
780         780 King James Version Bible
781         781 King James Version Bible
782         782 King James Version Bible
783         783 King James Version Bible
784         784 King James Version Bible
785         785 King James Version Bible
786         786 King James Version Bible
787         787 King James Version Bible
788         788 King James Version Bible
789         789 King James Version Bible
790         790 King James Version Bible
791         791 King James Version Bible
792         792 King James Version Bible
793         793 King James Version Bible
794         794 King James Version Bible
795         795 King James Version Bible
796         796 King James Version Bible
797         797 King James Version Bible
798         798 King James Version Bible
799         799 King James Version Bible
800         800 King James Version Bible
801         801 King James Version Bible
802         802 King James Version Bible
803         803 King James Version Bible
804         804 King James Version Bible
805         805 King James Version Bible
806         806 King James Version Bible
807         807 King James Version Bible
808         808 King James Version Bible
809         809 King James Version Bible
810         810 King James Version Bible
811         811 King James Version Bible
812         812 King James Version Bible
813         813 King James Version Bible
814         814 King James Version Bible
815         815 King James Version Bible
816         816 King James Version Bible
817         817 King James Version Bible
818         818 King James Version Bible
819         819 King James Version Bible
820         820 King James Version Bible
821         821 King James Version Bible
822         822 King James Version Bible
823         823 King James Version Bible
824         824 King James Version Bible
825         825 King James Version Bible
826         826 King James Version Bible
827         827 King James Version Bible
828         828 King James Version Bible
829         829 King James Version Bible
830         830 King James Version Bible
831         831 King James Version Bible
832         832 King James Version Bible
833         833 King James Version Bible
834         834 King James Version Bible
835         835 King James Version Bible
836         836 King James Version Bible
837         837 King James Version Bible
838         838 King James Version Bible
839         839 King James Version Bible
840         840 King James Version Bible
841         841 King James Version Bible
842         842 King James Version Bible
843         843 King James Version Bible
844         844 King James Version Bible
845         845 King James Version Bible
846         846 King James Version Bible
847         847 King James Version Bible
848         848 King James Version Bible
849         849 King James Version Bible
850         850 King James Version Bible
851         851 King James Version Bible
852         852 King James Version Bible
853         853 King James Version Bible
854         854 King James Version Bible
855         855 King James Version Bible
856         856 King James Version Bible
857         857 King James Version Bible
858         858 King James Version Bible
859         859 King James Version Bible
860         860 King James Version Bible
861         861 King James Version Bible
862         862 King James Version Bible
863         863 King James Version Bible
864         864 King James Version Bible
865         865 King James Version Bible
866         866 King James Version Bible
867         867 King James Version Bible
868         868 King James Version Bible
869         869 King James Version Bible
870         870 King James Version Bible
871         871 King James Version Bible
872         872 King James Version Bible
873         873 King James Version Bible
874         874 King James Version Bible
875         875 King James Version Bible
876         876 King James Version Bible
877         877 King James Version Bible
878         878 King James Version Bible
879         879 King James Version Bible
880         880 King James Version Bible
881         881 King James Version Bible
882         882 King James Version Bible
883         883 King James Version Bible
884         884 King James Version Bible
885         885 King James Version Bible
886         886 King James Version Bible
887         887 King James Version Bible
888         888 King James Version Bible
889         889 King James Version Bible
890         890 King James Version Bible
891         891 King James Version Bible
892         892 King James Version Bible
893         893 King James Version Bible
894         894 King James Version Bible
895         895 King James Version Bible
896         896 King James Version Bible
897         897 King James Version Bible
898         898 King James Version Bible
899         899 King James Version Bible
900         900 King James Version Bible
901         901 King James Version Bible
902         902 King James Version Bible
903         903 King James Version Bible
904         904 King James Version Bible
905         905 King James Version Bible
906         906 King James Version Bible
907         907 King James Version Bible
908         908 King James Version Bible
909         909 King James Version Bible
910         910 King James Version Bible
911         911 King James Version Bible
912         912 King James Version Bible
913         913 King James Version Bible
914         914 King James Version Bible
915         915 King James Version Bible
916         916 King James Version Bible
917         917 King James Version Bible
918         918 King James Version Bible
919         919 King James Version Bible
920         920 King James Version Bible
921         921 King James Version Bible
922         922 King James Version Bible
923         923 King James Version Bible
924         924 King James Version Bible
925         925 King James Version Bible
926         926 King James Version Bible
927         927 King James Version Bible
928         928 King James Version Bible
929         929 King James Version Bible
930         930 King James Version Bible
931         931 King James Version Bible
932         932 King James Version Bible
933         933 King James Version Bible
934         934 King James Version Bible
935         935 King James Version Bible
936         936 King James Version Bible
937         937 King James Version Bible
938         938 King James Version Bible
939         939 King James Version Bible
940         940 King James Version Bible
941         941 King James Version Bible
942         942 King James Version Bible
943         943 King James Version Bible
944         944 King James Version Bible
945         945 King James Version Bible
946         946 King James Version Bible
947         947 King James Version Bible
948         948 King James Version Bible
949         949 King James Version Bible
950         950 King James Version Bible
951         951 King James Version Bible
952         952 King James Version Bible
953         953 King James Version Bible
954         954 King James Version Bible
955         955 King James Version Bible
956         956 King James Version Bible
957         957 King James Version Bible
958         958 King James Version Bible
959         959 King James Version Bible
960         960 King James Version Bible
961         961 King James Version Bible
962         962 King James Version Bible
963         963 King James Version Bible
964         964 King James Version Bible
965         965 King James Version Bible
966         966 King James Version Bible
967         967 King James Version Bible
968         968 King James Version Bible
969         969 King James Version Bible
970         970 King James Version Bible
971         971 King James Version Bible
972         972 King James Version Bible
973         973 King James Version Bible
974         974 King James Version Bible
975         975 King James Version Bible
976         976 King James Version Bible
977         977 King James Version Bible
978         978 King James Version Bible
979         979 King James Version Bible
980         980 King James Version Bible
981         981 King James Version Bible
982         982 King James Version Bible
983         983 King James Version Bible
984         984 King James Version Bible
985         985 King James Version Bible
986         986 King James Version Bible
987         987 King James Version Bible
988         988 King James Version Bible
989         989 King James Version Bible
990         990 King James Version Bible
991         991 King James Version Bible
992         992 King James Version Bible
993         993 King James Version Bible
994         994 King James Version Bible
995         995 King James Version Bible
996         996 King James Version Bible
997         997 King James Version Bible
998         998 King James Version Bible
999         999 King James Version Bible
1000       1000 King James Version Bible
1001       1001 King James Version Bible
1002       1002 King James Version Bible
1003       1003 King James Version Bible
1004       1004 King James Version Bible
1005       1005 King James Version Bible
1006       1006 King James Version Bible
1007       1007 King James Version Bible
1008       1008 King James Version Bible
1009       1009 King James Version Bible
1010       1010 King James Version Bible
1011       1011 King James Version Bible
1012       1012 King James Version Bible
1013       1013 King James Version Bible
1014       1014 King James Version Bible
1015       1015 King James Version Bible
1016       1016 King James Version Bible
1017       1017 King James Version Bible
1018       1018 King James Version Bible
1019       1019 King James Version Bible
1020       1020 King James Version Bible
1021       1021 King James Version Bible
1022       1022 King James Version Bible
1023       1023 King James Version Bible
1024       1024 King James Version Bible
1025       1025 King James Version Bible
1026       1026 King James Version Bible
1027       1027 King James Version Bible
1028       1028 King James Version Bible
1029       1029 King James Version Bible
1030       1030 King James Version Bible
1031       1031 King James Version Bible
1032       1032 King James Version Bible
1033       1033 King James Version Bible
1034       1034 King James Version Bible
1035       1035 King James Version Bible
1036       1036 King James Version Bible
1037       1037 King James Version Bible
1038       1038 King James Version Bible
1039       1039 King James Version Bible
1040       1040 King James Version Bible
1041       1041 King James Version Bible
1042       1042 King James Version Bible
1043       1043 King James Version Bible
1044       1044 King James Version Bible
1045       1045 King James Version Bible
1046       1046 King James Version Bible
1047       1047 King James Version Bible
1048       1048 King James Version Bible
1049       1049 King James Version Bible
1050       1050 King James Version Bible
1051       1051 King James Version Bible
1052       1052 King James Version Bible
1053       1053 King James Version Bible
1054       1054 King James Version Bible
1055       1055 King James Version Bible
1056       1056 King James Version Bible
1057       1057 King James Version Bible
1058       1058 King James Version Bible
1059       1059 King James Version Bible
1060       1060 King James Version Bible
1061       1061 King James Version Bible
1062       1062 King James Version Bible
1063       1063 King James Version Bible
1064       1064 King James Version Bible
1065       1065 King James Version Bible
1066       1066 King James Version Bible
1067       1067 King James Version Bible
1068       1068 King James Version Bible
1069       1069 King James Version Bible
1070       1070 King James Version Bible
1071       1071 King James Version Bible
1072       1072 King James Version Bible
1073       1073 King James Version Bible
1074       1074 King James Version Bible
1075       1075 King James Version Bible
1076       1076 King James Version Bible
1077       1077 King James Version Bible
1078       1078 King James Version Bible
1079       1079 King James Version Bible
1080       1080 King James Version Bible
1081       1081 King James Version Bible
1082       1082 King James Version Bible
1083       1083 King James Version Bible
1084       1084 King James Version Bible
1085       1085 King James Version Bible
1086       1086 King James Version Bible
1087       1087 King James Version Bible
1088       1088 King James Version Bible
1089       1089 King James Version Bible
1090       1090 King James Version Bible
1091       1091 King James Version Bible
1092       1092 King James Version Bible
1093       1093 King James Version Bible
1094       1094 King James Version Bible
1095       1095 King James Version Bible
1096       1096 King James Version Bible
1097       1097 King James Version Bible
1098       1098 King James Version Bible
1099       1099 King James Version Bible
1100       1100 King James Version Bible
1101       1101 King James Version Bible
1102       1102 King James Version Bible
1103       1103 King James Version Bible
1104       1104 King James Version Bible
1105       1105 King James Version Bible
1106       1106 King James Version Bible
1107       1107 King James Version Bible
1108       1108 King James Version Bible
1109       1109 King James Version Bible
1110       1110 King James Version Bible
1111       1111 King James Version Bible
1112       1112 King James Version Bible
1113       1113 King James Version Bible
1114       1114 King James Version Bible
1115       1115 King James Version Bible
1116       1116 King James Version Bible
1117       1117 King James Version Bible
1118       1118 King James Version Bible
1119       1119 King James Version Bible
1120       1120 King James Version Bible
1121       1121 King James Version Bible
1122       1122 King James Version Bible
1123       1123 King James Version Bible
1124       1124 King James Version Bible
1125       1125 King James Version Bible
1126       1126 King James Version Bible
1127       1127 King James Version Bible
1128       1128 King James Version Bible
1129       1129 King James Version Bible
1130       1130 King James Version Bible
1131       1131 King James Version Bible
1132       1132 King James Version Bible
1133       1133 King James Version Bible
1134       1134 King James Version Bible
1135       1135 King James Version Bible
1136       1136 King James Version Bible
1137       1137 King James Version Bible
1138       1138 King James Version Bible
1139       1139 King James Version Bible
1140       1140 King James Version Bible
1141       1141 King James Version Bible
1142       1142 King James Version Bible
1143       1143 King James Version Bible
1144       1144 King James Version Bible
1145       1145 King James Version Bible
1146       1146 King James Version Bible
1147       1147 King James Version Bible
1148       1148 King James Version Bible
1149       1149 King James Version Bible
1150       1150 King James Version Bible
1151       1151 King James Version Bible
1152       1152 King James Version Bible
1153       1153 King James Version Bible
1154       1154 King James Version Bible
1155       1155 King James Version Bible
1156       1156 King James Version Bible
1157       1157 King James Version Bible
1158       1158 King James Version Bible
1159       1159 King James Version Bible
1160       1160 King James Version Bible
1161       1161 King James Version Bible
1162       1162 King James Version Bible
1163       1163 King James Version Bible
1164       1164 King James Version Bible
1165       1165 King James Version Bible
1166       1166 King James Version Bible
1167       1167 King James Version Bible
1168       1168 King James Version Bible
1169       1169 King James Version Bible
1170       1170 King James Version Bible
1171       1171 King James Version Bible
1172       1172 King James Version Bible
1173       1173 King James Version Bible
1174       1174 King James Version Bible
1175       1175 King James Version Bible
1176       1176 King James Version Bible
1177       1177 King James Version Bible
1178       1178 King James Version Bible
1179       1179 King James Version Bible
1180       1180 King James Version Bible
1181       1181 King James Version Bible
1182       1182 King James Version Bible
1183       1183 King James Version Bible
1184       1184 King James Version Bible
1185       1185 King James Version Bible
1186       1186 King James Version Bible
1187       1187 King James Version Bible
1188       1188 King James Version Bible
1189       1189 King James Version Bible
1190       1190 King James Version Bible
1191       1191 King James Version Bible
1192       1192 King James Version Bible
1193       1193 King James Version Bible
1194       1194 King James Version Bible
1195       1195 King James Version Bible
1196       1196 King James Version Bible
1197       1197 King James Version Bible
1198       1198 King James Version Bible
1199       1199 King James Version Bible
1200       1200 King James Version Bible
1201       1201 King James Version Bible
1202       1202 King James Version Bible
1203       1203 King James Version Bible
1204       1204 King James Version Bible
1205       1205 King James Version Bible
1206       1206 King James Version Bible
1207       1207 King James Version Bible
1208       1208 King James Version Bible
1209       1209 King James Version Bible
1210       1210 King James Version Bible
1211       1211 King James Version Bible
1212       1212 King James Version Bible
1213       1213 King James Version Bible
1214       1214 King James Version Bible
1215       1215 King James Version Bible
1216       1216 King James Version Bible
1217       1217 King James Version Bible
1218       1218 King James Version Bible
1219       1219 King James Version Bible
1220       1220 King James Version Bible
1221       1221 King James Version Bible
1222       1222 King James Version Bible
1223       1223 King James Version Bible
1224       1224 King James Version Bible
1225       1225 King James Version Bible
1226       1226 King James Version Bible
1227       1227 King James Version Bible
1228       1228 King James Version Bible
1229       1229 King James Version Bible
1230       1230 King James Version Bible
1231       1231 King James Version Bible
1232       1232 King James Version Bible
1233       1233 King James Version Bible
1234       1234 King James Version Bible
1235       1235 King James Version Bible
1236       1236 King James Version Bible
1237       1237 King James Version Bible
1238       1238 King James Version Bible
1239       1239 King James Version Bible
1240       1240 King James Version Bible
1241       1241 King James Version Bible
1242       1242 King James Version Bible
1243       1243 King James Version Bible
1244       1244 King James Version Bible
1245       1245 King James Version Bible
1246       1246 King James Version Bible
1247       1247 King James Version Bible
1248       1248 King James Version Bible
1249       1249 King James Version Bible
1250       1250 King James Version Bible
1251       1251 King James Version Bible
1252       1252 King James Version Bible
1253       1253 King James Version Bible
1254       1254 King James Version Bible
1255       1255 King James Version Bible
1256       1256 King James Version Bible
1257       1257 King James Version Bible
1258       1258 King James Version Bible
1259       1259 King James Version Bible
1260       1260 King James Version Bible
1261       1261 King James Version Bible
1262       1262 King James Version Bible
1263       1263 King James Version Bible
1264       1264 King James Version Bible
1265       1265 King James Version Bible
1266       1266 King James Version Bible
1267       1267 King James Version Bible
1268       1268 King James Version Bible
1269       1269 King James Version Bible
1270       1270 King James Version Bible
1271       1271 King James Version Bible
1272       1272 King James Version Bible
1273       1273 King James Version Bible
1274       1274 King James Version Bible
1275       1275 King James Version Bible
1276       1276 King James Version Bible
1277       1277 King James Version Bible
1278       1278 King James Version Bible
1279       1279 King James Version Bible
1280       1280 King James Version Bible
1281       1281 King James Version Bible
1282       1282 King James Version Bible
1283       1283 King James Version Bible
1284       1284 King James Version Bible
1285       1285 King James Version Bible
1286       1286 King James Version Bible
1287       1287 King James Version Bible
1288       1288 King James Version Bible
1289       1289 King James Version Bible
1290       1290 King James Version Bible
1291       1291 King James Version Bible
1292       1292 King James Version Bible
1293       1293 King James Version Bible
1294       1294 King James Version Bible
1295       1295 King James Version Bible
1296       1296 King James Version Bible
1297       1297 King James Version Bible
1298       1298 King James Version Bible
1299       1299 King James Version Bible
1300       1300 King James Version Bible
1301       1301 King James Version Bible
1302       1302 King James Version Bible
1303       1303 King James Version Bible
1304       1304 King James Version Bible
1305       1305 King James Version Bible
1306       1306 King James Version Bible
1307       1307 King James Version Bible
1308       1308 King James Version Bible
1309       1309 King James Version Bible
1310       1310 King James Version Bible
1311       1311 King James Version Bible
1312       1312 King James Version Bible
1313       1313 King James Version Bible
1314       1314 King James Version Bible
1315       1315 King James Version Bible
1316       1316 King James Version Bible
1317       1317 King James Version Bible
1318       1318 King James Version Bible
1319       1319 King James Version Bible
1320       1320 King James Version Bible
1321       1321 King James Version Bible
1322       1322 King James Version Bible
1323       1323 King James Version Bible
1324       1324 King James Version Bible
1325       1325 King James Version Bible
1326       1326 King James Version Bible
1327       1327 King James Version Bible
1328       1328 King James Version Bible
1329       1329 King James Version Bible
1330       1330 King James Version Bible
1331       1331 King James Version Bible
1332       1332 King James Version Bible
1333       1333 King James Version Bible
1334       1334 King James Version Bible
1335       1335 King James Version Bible
1336       1336 King James Version Bible
1337       1337 King James Version Bible
1338       1338 King James Version Bible
1339       1339 King James Version Bible
1340       1340 King James Version Bible
1341       1341 King James Version Bible
1342       1342 King James Version Bible
1343       1343 King James Version Bible
1344       1344 King James Version Bible
1345       1345 King James Version Bible
1346       1346 King James Version Bible
1347       1347 King James Version Bible
1348       1348 King James Version Bible
1349       1349 King James Version Bible
1350       1350 King James Version Bible
1351       1351 King James Version Bible
1352       1352 King James Version Bible
1353       1353 King James Version Bible
1354       1354 King James Version Bible
1355       1355 King James Version Bible
1356       1356 King James Version Bible
1357       1357 King James Version Bible
1358       1358 King James Version Bible
1359       1359 King James Version Bible
1360       1360 King James Version Bible
1361       1361 King James Version Bible
1362       1362 King James Version Bible
1363       1363 King James Version Bible
1364       1364 King James Version Bible
1365       1365 King James Version Bible
1366       1366 King James Version Bible
1367       1367 King James Version Bible
1368       1368 King James Version Bible
1369       1369 King James Version Bible
1370       1370 King James Version Bible
1371       1371 King James Version Bible
1372       1372 King James Version Bible
1373       1373 King James Version Bible
1374       1374 King James Version Bible
1375       1375 King James Version Bible
1376       1376 King James Version Bible
1377       1377 King James Version Bible
1378       1378 King James Version Bible
1379       1379 King James Version Bible
1380       1380 King James Version Bible
1381       1381 King James Version Bible
1382       1382 King James Version Bible
1383       1383 King James Version Bible
1384       1384 King James Version Bible
1385       1385 King James Version Bible
1386       1386 King James Version Bible
1387       1387 King James Version Bible
1388       1388 King James Version Bible
1389       1389 King James Version Bible
1390       1390 King James Version Bible
1391       1391 King James Version Bible
1392       1392 King James Version Bible
1393       1393 King James Version Bible
1394       1394 King James Version Bible
1395       1395 King James Version Bible
1396       1396 King James Version Bible
1397       1397 King James Version Bible
1398       1398 King James Version Bible
1399       1399 King James Version Bible
1400       1400 King James Version Bible
1401       1401 King James Version Bible
1402       1402 King James Version Bible
1403       1403 King James Version Bible
1404       1404 King James Version Bible
1405       1405 King James Version Bible
1406       1406 King James Version Bible
1407       1407 King James Version Bible
1408       1408 King James Version Bible
1409       1409 King James Version Bible
1410       1410 King James Version Bible
1411       1411 King James Version Bible
1412       1412 King James Version Bible
1413       1413 King James Version Bible
1414       1414 King James Version Bible
1415       1415 King James Version Bible
1416       1416 King James Version Bible
1417       1417 King James Version Bible
1418       1418 King James Version Bible
1419       1419 King James Version Bible
1420       1420 King James Version Bible
1421       1421 King James Version Bible
1422       1422 King James Version Bible
1423       1423 King James Version Bible
1424       1424 King James Version Bible
1425       1425 King James Version Bible
1426       1426 King James Version Bible
1427       1427 King James Version Bible
1428       1428 King James Version Bible
1429       1429 King James Version Bible
1430       1430 King James Version Bible
1431       1431 King James Version Bible
1432       1432 King James Version Bible
1433       1433 King James Version Bible
1434       1434 King James Version Bible
1435       1435 King James Version Bible
1436       1436 King James Version Bible
1437       1437 King James Version Bible
1438       1438 King James Version Bible
1439       1439 King James Version Bible
1440       1440 King James Version Bible
1441       1441 King James Version Bible
1442       1442 King James Version Bible
1443       1443 King James Version Bible
1444       1444 King James Version Bible
1445       1445 King James Version Bible
1446       1446 King James Version Bible
1447       1447 King James Version Bible
1448       1448 King James Version Bible
1449       1449 King James Version Bible
1450       1450 King James Version Bible
1451       1451 King James Version Bible
1452       1452 King James Version Bible
1453       1453 King James Version Bible
1454       1454 King James Version Bible
1455       1455 King James Version Bible
1456       1456 King James Version Bible
1457       1457 King James Version Bible
1458       1458 King James Version Bible
1459       1459 King James Version Bible
1460       1460 King James Version Bible
1461       1461 King James Version Bible
1462       1462 King James Version Bible
1463       1463 King James Version Bible
1464       1464 King James Version Bible
1465       1465 King James Version Bible
1466       1466 King James Version Bible
1467       1467 King James Version Bible
1468       1468 King James Version Bible
1469       1469 King James Version Bible
1470       1470 King James Version Bible
1471       1471 King James Version Bible
1472       1472 King James Version Bible
1473       1473 King James Version Bible
1474       1474 King James Version Bible
1475       1475 King James Version Bible
1476       1476 King James Version Bible
1477       1477 King James Version Bible
1478       1478 King James Version Bible
1479       1479 King James Version Bible
1480       1480 King James Version Bible
1481       1481 King James Version Bible
1482       1482 King James Version Bible
1483       1483 King James Version Bible
1484       1484 King James Version Bible
1485       1485 King James Version Bible
1486       1486 King James Version Bible
1487       1487 King James Version Bible
1488       1488 King James Version Bible
1489       1489 King James Version Bible
1490       1490 King James Version Bible
1491       1491 King James Version Bible
1492       1492 King James Version Bible
1493       1493 King James Version Bible
1494       1494 King James Version Bible
1495       1495 King James Version Bible
1496       1496 King James Version Bible
1497       1497 King James Version Bible
1498       1498 King James Version Bible
1499       1499 King James Version Bible
1500       1500 King James Version Bible
1501       1501 King James Version Bible
1502       1502 King James Version Bible
1503       1503 King James Version Bible
1504       1504 King James Version Bible
1505       1505 King James Version Bible
1506       1506 King James Version Bible
1507       1507 King James Version Bible
1508       1508 King James Version Bible
1509       1509 King James Version Bible
1510       1510 King James Version Bible
1511       1511 King James Version Bible
1512       1512 King James Version Bible
1513       1513 King James Version Bible
1514       1514 King James Version Bible
1515       1515 King James Version Bible
1516       1516 King James Version Bible
1517       1517 King James Version Bible
1518       1518 King James Version Bible
1519       1519 King James Version Bible
1520       1520 King James Version Bible
1521       1521 King James Version Bible
1522       1522 King James Version Bible
1523       1523 King James Version Bible
1524       1524 King James Version Bible
1525       1525 King James Version Bible
1526       1526 King James Version Bible
1527       1527 King James Version Bible
1528       1528 King James Version Bible
1529       1529 King James Version Bible
1530       1530 King James Version Bible
1531       1531 King James Version Bible
1532       1532 King James Version Bible
1533       1533 King James Version Bible
1534       1534 King James Version Bible
1535       1535 King James Version Bible
1536       1536 King James Version Bible
1537       1537 King James Version Bible
1538       1538 King James Version Bible
1539       1539 King James Version Bible
1540       1540 King James Version Bible
1541       1541 King James Version Bible
1542       1542 King James Version Bible
1543       1543 King James Version Bible
1544       1544 King James Version Bible
1545       1545 King James Version Bible
1546       1546 King James Version Bible
1547       1547 King James Version Bible
1548       1548 King James Version Bible
1549       1549 King James Version Bible
1550       1550 King James Version Bible
1551       1551 King James Version Bible
1552       1552 King James Version Bible
1553       1553 King James Version Bible
1554       1554 King James Version Bible
1555       1555 King James Version Bible
1556       1556 King James Version Bible
1557       1557 King James Version Bible
1558       1558 King James Version Bible
1559       1559 King James Version Bible
1560       1560 King James Version Bible
1561       1561 King James Version Bible
1562       1562 King James Version Bible
1563       1563 King James Version Bible
1564       1564 King James Version Bible
1565       1565 King James Version Bible
1566       1566 King James Version Bible
1567       1567 King James Version Bible
1568       1568 King James Version Bible
1569       1569 King James Version Bible
1570       1570 King James Version Bible
1571       1571 King James Version Bible
1572       1572 King James Version Bible
1573       1573 King James Version Bible
1574       1574 King James Version Bible
1575       1575 King James Version Bible
1576       1576 King James Version Bible
1577       1577 King James Version Bible
1578       1578 King James Version Bible
1579       1579 King James Version Bible
1580       1580 King James Version Bible
1581       1581 King James Version Bible
1582       1582 King James Version Bible
1583       1583 King James Version Bible
1584       1584 King James Version Bible
1585       1585 King James Version Bible
1586       1586 King James Version Bible
1587       1587 King James Version Bible
1588       1588 King James Version Bible
1589       1589 King James Version Bible
1590       1590 King James Version Bible
1591       1591 King James Version Bible
1592       1592 King James Version Bible
1593       1593 King James Version Bible
1594       1594 King James Version Bible
1595       1595 King James Version Bible
1596       1596 King James Version Bible
1597       1597 King James Version Bible
1598       1598 King James Version Bible
1599       1599 King James Version Bible
1600       1600 King James Version Bible
1601       1601 King James Version Bible
1602       1602 King James Version Bible
1603       1603 King James Version Bible
1604       1604 King James Version Bible
1605       1605 King James Version Bible
1606       1606 King James Version Bible
1607       1607 King James Version Bible
1608       1608 King James Version Bible
1609       1609 King James Version Bible
1610       1610 King James Version Bible
1611       1611 King James Version Bible
1612       1612 King James Version Bible
1613       1613 King James Version Bible
1614       1614 King James Version Bible
1615       1615 King James Version Bible
1616       1616 King James Version Bible
1617       1617 King James Version Bible
1618       1618 King James Version Bible
1619       1619 King James Version Bible
1620       1620 King James Version Bible
1621       1621 King James Version Bible
1622       1622 King James Version Bible
1623       1623 King James Version Bible
1624       1624 King James Version Bible
1625       1625 King James Version Bible
1626       1626 King James Version Bible
1627       1627 King James Version Bible
1628       1628 King James Version Bible
1629       1629 King James Version Bible
1630       1630 King James Version Bible
1631       1631 King James Version Bible
1632       1632 King James Version Bible
1633       1633 King James Version Bible
1634       1634 King James Version Bible
1635       1635 King James Version Bible
1636       1636 King James Version Bible
1637       1637 King James Version Bible
1638       1638 King James Version Bible
1639       1639 King James Version Bible
1640       1640 King James Version Bible
1641       1641 King James Version Bible
1642       1642 King James Version Bible
1643       1643 King James Version Bible
1644       1644 King James Version Bible
1645       1645 King James Version Bible
1646       1646 King James Version Bible
1647       1647 King James Version Bible
1648       1648 King James Version Bible
1649       1649 King James Version Bible
1650       1650 King James Version Bible
1651       1651 King James Version Bible
1652       1652 King James Version Bible
1653       1653 King James Version Bible
1654       1654 King James Version Bible
1655       1655 King James Version Bible
1656       1656 King James Version Bible
1657       1657 King James Version Bible
1658       1658 King James Version Bible
1659       1659 King James Version Bible
1660       1660 King James Version Bible
1661       1661 King James Version Bible
1662       1662 King James Version Bible
1663       1663 King James Version Bible
1664       1664 King James Version Bible
1665       1665 King James Version Bible
1666       1666 King James Version Bible
1667       1667 King James Version Bible
1668       1668 King James Version Bible
1669       1669 King James Version Bible
1670       1670 King James Version Bible
1671       1671 King James Version Bible
1672       1672 King James Version Bible
1673       1673 King James Version Bible
1674       1674 King James Version Bible
1675       1675 King James Version Bible
1676       1676 King James Version Bible
1677       1677 King James Version Bible
1678       1678 King James Version Bible
1679       1679 King James Version Bible
1680       1680 King James Version Bible
1681       1681 King James Version Bible
1682       1682 King James Version Bible
1683       1683 King James Version Bible
1684       1684 King James Version Bible
1685       1685 King James Version Bible
1686       1686 King James Version Bible
1687       1687 King James Version Bible
1688       1688 King James Version Bible
1689       1689 King James Version Bible
1690       1690 King James Version Bible
1691       1691 King James Version Bible
1692       1692 King James Version Bible
1693       1693 King James Version Bible
1694       1694 King James Version Bible
1695       1695 King James Version Bible
1696       1696 King James Version Bible
1697       1697 King James Version Bible
1698       1698 King James Version Bible
1699       1699 King James Version Bible
1700       1700 King James Version Bible
1701       1701 King James Version Bible
1702       1702 King James Version Bible
1703       1703 King James Version Bible
1704       1704 King James Version Bible
1705       1705 King James Version Bible
1706       1706 King James Version Bible
1707       1707 King James Version Bible
1708       1708 King James Version Bible
1709       1709 King James Version Bible
1710       1710 King James Version Bible
1711       1711 King James Version Bible
1712       1712 King James Version Bible
1713       1713 King James Version Bible
1714       1714 King James Version Bible
1715       1715 King James Version Bible
1716       1716 King James Version Bible
1717       1717 King James Version Bible
1718       1718 King James Version Bible
1719       1719 King James Version Bible
1720       1720 King James Version Bible
1721       1721 King James Version Bible
1722       1722 King James Version Bible
1723       1723 King James Version Bible
1724       1724 King James Version Bible
1725       1725 King James Version Bible
1726       1726 King James Version Bible
1727       1727 King James Version Bible
1728       1728 King James Version Bible
1729       1729 King James Version Bible
1730       1730 King James Version Bible
1731       1731 King James Version Bible
1732       1732 King James Version Bible
1733       1733 King James Version Bible
1734       1734 King James Version Bible
1735       1735 King James Version Bible
1736       1736 King James Version Bible
1737       1737 King James Version Bible
1738       1738 King James Version Bible
1739       1739 King James Version Bible
1740       1740 King James Version Bible
1741       1741 King James Version Bible
1742       1742 King James Version Bible
1743       1743 King James Version Bible
1744       1744 King James Version Bible
1745       1745 King James Version Bible
1746       1746 King James Version Bible
1747       1747 King James Version Bible
1748       1748 King James Version Bible
1749       1749 King James Version Bible
1750       1750 King James Version Bible
1751       1751 King James Version Bible
1752       1752 King James Version Bible
1753       1753 King James Version Bible
1754       1754 King James Version Bible
1755       1755 King James Version Bible
1756       1756 King James Version Bible
1757       1757 King James Version Bible
1758       1758 King James Version Bible
1759       1759 King James Version Bible
1760       1760 King James Version Bible
1761       1761 King James Version Bible
1762       1762 King James Version Bible
1763       1763 King James Version Bible
1764       1764 King James Version Bible
1765       1765 King James Version Bible
1766       1766 King James Version Bible
1767       1767 King James Version Bible
1768       1768 King James Version Bible
1769       1769 King James Version Bible
1770       1770 King James Version Bible
1771       1771 King James Version Bible
1772       1772 King James Version Bible
1773       1773 King James Version Bible
1774       1774 King James Version Bible
1775       1775 King James Version Bible
1776       1776 King James Version Bible
1777       1777 King James Version Bible
1778       1778 King James Version Bible
1779       1779 King James Version Bible
1780       1780 King James Version Bible
1781       1781 King James Version Bible
1782       1782 King James Version Bible
1783       1783 King James Version Bible
1784       1784 King James Version Bible
1785       1785 King James Version Bible
1786       1786 King James Version Bible
1787       1787 King James Version Bible
1788       1788 King James Version Bible
1789       1789 King James Version Bible
1790       1790 King James Version Bible
1791       1791 King James Version Bible
1792       1792 King James Version Bible
1793       1793 King James Version Bible
1794       1794 King James Version Bible
1795       1795 King James Version Bible
1796       1796 King James Version Bible
1797       1797 King James Version Bible
1798       1798 King James Version Bible
1799       1799 King James Version Bible
1800       1800 King James Version Bible
1801       1801 King James Version Bible
1802       1802 King James Version Bible
1803       1803 King James Version Bible
1804       1804 King James Version Bible
1805       1805 King James Version Bible
1806       1806 King James Version Bible
1807       1807 King James Version Bible
1808       1808 King James Version Bible
1809       1809 King James Version Bible
1810       1810 King James Version Bible
1811       1811 King James Version Bible
1812       1812 King James Version Bible
1813       1813 King James Version Bible
1814       1814 King James Version Bible
1815       1815 King James Version Bible
1816       1816 King James Version Bible
1817       1817 King James Version Bible
1818       1818 King James Version Bible
1819       1819 King James Version Bible
1820       1820 King James Version Bible
1821       1821 King James Version Bible
1822       1822 King James Version Bible
1823       1823 King James Version Bible
1824       1824 King James Version Bible
1825       1825 King James Version Bible
1826       1826 King James Version Bible
1827       1827 King James Version Bible
1828       1828 King James Version Bible
1829       1829 King James Version Bible
1830       1830 King James Version Bible
1831       1831 King James Version Bible
1832       1832 King James Version Bible
1833       1833 King James Version Bible
1834       1834 King James Version Bible
1835       1835 King James Version Bible
1836       1836 King James Version Bible
1837       1837 King James Version Bible
1838       1838 King James Version Bible
1839       1839 King James Version Bible
1840       1840 King James Version Bible
1841       1841 King James Version Bible
1842       1842 King James Version Bible
1843       1843 King James Version Bible
1844       1844 King James Version Bible
1845       1845 King James Version Bible
1846       1846 King James Version Bible
1847       1847 King James Version Bible
1848       1848 King James Version Bible
1849       1849 King James Version Bible
1850       1850 King James Version Bible
1851       1851 King James Version Bible
1852       1852 King James Version Bible
1853       1853 King James Version Bible
1854       1854 King James Version Bible
1855       1855 King James Version Bible
1856       1856 King James Version Bible
1857       1857 King James Version Bible
1858       1858 King James Version Bible
1859       1859 King James Version Bible
1860       1860 King James Version Bible
1861       1861 King James Version Bible
1862       1862 King James Version Bible
1863       1863 King James Version Bible
1864       1864 King James Version Bible
1865       1865 King James Version Bible
1866       1866 King James Version Bible
1867       1867 King James Version Bible
1868       1868 King James Version Bible
1869       1869 King James Version Bible
1870       1870 King James Version Bible
1871       1871 King James Version Bible
1872       1872 King James Version Bible
1873       1873 King James Version Bible
1874       1874 King James Version Bible
1875       1875 King James Version Bible
1876       1876 King James Version Bible
1877       1877 King James Version Bible
1878       1878 King James Version Bible
1879       1879 King James Version Bible
1880       1880 King James Version Bible
1881       1881 King James Version Bible
1882       1882 King James Version Bible
1883       1883 King James Version Bible
1884       1884 King James Version Bible
1885       1885 King James Version Bible
1886       1886 King James Version Bible
1887       1887 King James Version Bible
1888       1888 King James Version Bible
1889       1889 King James Version Bible
1890       1890 King James Version Bible
1891       1891 King James Version Bible
1892       1892 King James Version Bible
1893       1893 King James Version Bible
1894       1894 King James Version Bible
1895       1895 King James Version Bible
1896       1896 King James Version Bible
1897       1897 King James Version Bible
1898       1898 King James Version Bible
1899       1899 King James Version Bible
1900       1900 King James Version Bible
1901       1901 King James Version Bible
1902       1902 King James Version Bible
1903       1903 King James Version Bible
1904       1904 King James Version Bible
1905       1905 King James Version Bible
1906       1906 King James Version Bible
1907       1907 King James Version Bible
1908       1908 King James Version Bible
1909       1909 King James Version Bible
1910       1910 King James Version Bible
1911       1911 King James Version Bible
1912       1912 King James Version Bible
1913       1913 King James Version Bible
1914       1914 King James Version Bible
1915       1915 King James Version Bible
1916       1916 King James Version Bible
1917       1917 King James Version Bible
1918       1918 King James Version Bible
1919       1919 King James Version Bible
1920       1920 King James Version Bible
1921       1921 King James Version Bible
1922       1922 King James Version Bible
1923       1923 King James Version Bible
1924       1924 King James Version Bible
1925       1925 King James Version Bible
1926       1926 King James Version Bible
1927       1927 King James Version Bible
1928       1928 King James Version Bible
1929       1929 King James Version Bible
1930       1930 King James Version Bible
1931       1931 King James Version Bible
1932       1932 King James Version Bible
1933       1933 King James Version Bible
1934       1934 King James Version Bible
1935       1935 King James Version Bible
1936       1936 King James Version Bible
1937       1937 King James Version Bible
1938       1938 King James Version Bible
1939       1939 King James Version Bible
1940       1940 King James Version Bible
1941       1941 King James Version Bible
1942       1942 King James Version Bible
1943       1943 King James Version Bible
1944       1944 King James Version Bible
1945       1945 King James Version Bible
1946       1946 King James Version Bible
1947       1947 King James Version Bible
1948       1948 King James Version Bible
1949       1949 King James Version Bible
1950       1950 King James Version Bible
1951       1951 King James Version Bible
1952       1952 King James Version Bible
1953       1953 King James Version Bible
1954       1954 King James Version Bible
1955       1955 King James Version Bible
1956       1956 King James Version Bible
1957       1957 King James Version Bible
1958       1958 King James Version Bible
1959       1959 King James Version Bible
1960       1960 King James Version Bible
1961       1961 King James Version Bible
1962       1962 King James Version Bible
1963       1963 King James Version Bible
1964       1964 King James Version Bible
1965       1965 King James Version Bible
1966       1966 King James Version Bible
1967       1967 King James Version Bible
1968       1968 King James Version Bible
1969       1969 King James Version Bible
1970       1970 King James Version Bible
1971       1971 King James Version Bible
1972       1972 King James Version Bible
1973       1973 King James Version Bible
1974       1974 King James Version Bible
1975       1975 King James Version Bible
1976       1976 King James Version Bible
1977       1977 King James Version Bible
1978       1978 King James Version Bible
1979       1979 King James Version Bible
1980       1980 King James Version Bible
1981       1981 King James Version Bible
1982       1982 King James Version Bible
1983       1983 King James Version Bible
1984       1984 King James Version Bible
1985       1985 King James Version Bible
1986       1986 King James Version Bible
1987       1987 King James Version Bible
1988       1988 King James Version Bible
1989       1989 King James Version Bible
1990       1990 King James Version Bible
1991       1991 King James Version Bible
1992       1992 King James Version Bible
1993       1993 King James Version Bible
1994       1994 King James Version Bible
1995       1995 King James Version Bible
1996       1996 King James Version Bible
1997       1997 King James Version Bible
1998       1998 King James Version Bible
1999       1999 King James Version Bible
2000       2000 King James Version Bible
2001       2001 King James Version Bible
2002       2002 King James Version Bible
2003       2003 King James Version Bible
2004       2004 King James Version Bible
2005       2005 King James Version Bible
2006       2006 King James Version Bible
2007       2007 King James Version Bible
2008       2008 King James Version Bible
2009       2009 King James Version Bible
2010       2010 King James Version Bible
2011       2011 King James Version Bible
2012       2012 King James Version Bible
2013       2013 King James Version Bible
2014       2014 King James Version Bible
2015       2015 King James Version Bible
2016       2016 King James Version Bible
2017       2017 King James Version Bible
2018       2018 King James Version Bible
2019       2019 King James Version Bible
2020       2020 King James Version Bible
2021       2021 King James Version Bible
2022       2022 King James Version Bible
2023       2023 King James Version Bible
2024       2024 King James Version Bible
2025       2025 King James Version Bible
2026       2026 King James Version Bible
2027       2027 King James Version Bible
2028       2028 King James Version Bible
2029       2029 King James Version Bible
2030       2030 King James Version Bible
2031       2031 King James Version Bible
2032       2032 King James Version Bible
2033       2033 King James Version Bible
2034       2034 King James Version Bible
2035       2035 King James Version Bible
2036       2036 King James Version Bible
2037       2037 King James Version Bible
2038       2038 King James Version Bible
2039       2039 King James Version Bible
2040       2040 King James Version Bible
2041       2041 King James Version Bible
2042       2042 King James Version Bible
2043       2043 King James Version Bible
2044       2044 King James Version Bible
2045       2045 King James Version Bible
2046       2046 King James Version Bible
2047       2047 King James Version Bible
2048       2048 King James Version Bible
2049       2049 King James Version Bible
2050       2050 King James Version Bible
2051       2051 King James Version Bible
2052       2052 King James Version Bible
2053       2053 King James Version Bible
2054       2054 King James Version Bible
2055       2055 King James Version Bible
2056       2056 King James Version Bible
2057       2057 King James Version Bible
2058       2058 King James Version Bible
2059       2059 King James Version Bible
2060       2060 King James Version Bible
2061       2061 King James Version Bible
2062       2062 King James Version Bible
2063       2063 King James Version Bible
2064       2064 King James Version Bible
2065       2065 King James Version Bible
2066       2066 King James Version Bible
2067       2067 King James Version Bible
2068       2068 King James Version Bible
2069       2069 King James Version Bible
2070       2070 King James Version Bible
2071       2071 King James Version Bible
2072       2072 King James Version Bible
2073       2073 King James Version Bible
2074       2074 King James Version Bible
2075       2075 King James Version Bible
2076       2076 King James Version Bible
2077       2077 King James Version Bible
2078       2078 King James Version Bible
2079       2079 King James Version Bible
2080       2080 King James Version Bible
2081       2081 King James Version Bible
2082       2082 King James Version Bible
2083       2083 King James Version Bible
2084       2084 King James Version Bible
2085       2085 King James Version Bible
2086       2086 King James Version Bible
2087       2087 King James Version Bible
2088       2088 King James Version Bible
2089       2089 King James Version Bible
2090       2090 King James Version Bible
2091       2091 King James Version Bible
2092       2092 King James Version Bible
2093       2093 King James Version Bible
2094       2094 King James Version Bible
2095       2095 King James Version Bible
2096       2096 King James Version Bible
2097       2097 King James Version Bible
2098       2098 King James Version Bible
2099       2099 King James Version Bible
2100       2100 King James Version Bible
2101       2101 King James Version Bible
2102       2102 King James Version Bible
2103       2103 King James Version Bible
2104       2104 King James Version Bible
2105       2105 King James Version Bible
2106       2106 King James Version Bible
2107       2107 King James Version Bible
2108       2108 King James Version Bible
2109       2109 King James Version Bible
2110       2110 King James Version Bible
2111       2111 King James Version Bible
2112       2112 King James Version Bible
2113       2113 King James Version Bible
2114       2114 King James Version Bible
2115       2115 King James Version Bible
2116       2116 King James Version Bible
2117       2117 King James Version Bible
2118       2118 King James Version Bible
2119       2119 King James Version Bible
2120       2120 King James Version Bible
2121       2121 King James Version Bible
2122       2122 King James Version Bible
2123       2123 King James Version Bible
2124       2124 King James Version Bible
2125       2125 King James Version Bible
2126       2126 King James Version Bible
2127       2127 King James Version Bible
2128       2128 King James Version Bible
2129       2129 King James Version Bible
2130       2130 King James Version Bible
2131       2131 King James Version Bible
2132       2132 King James Version Bible
2133       2133 King James Version Bible
2134       2134 King James Version Bible
2135       2135 King James Version Bible
2136       2136 King James Version Bible
2137       2137 King James Version Bible
2138       2138 King James Version Bible
2139       2139 King James Version Bible
2140       2140 King James Version Bible
2141       2141 King James Version Bible
2142       2142 King James Version Bible
2143       2143 King James Version Bible
2144       2144 King James Version Bible
2145       2145 King James Version Bible
2146       2146 King James Version Bible
2147       2147 King James Version Bible
2148       2148 King James Version Bible
2149       2149 King James Version Bible
2150       2150 King James Version Bible
2151       2151 King James Version Bible
2152       2152 King James Version Bible
2153       2153 King James Version Bible
2154       2154 King James Version Bible
2155       2155 King James Version Bible
2156       2156 King James Version Bible
2157       2157 King James Version Bible
2158       2158 King James Version Bible
2159       2159 King James Version Bible
2160       2160 King James Version Bible
2161       2161 King James Version Bible
2162       2162 King James Version Bible
2163       2163 King James Version Bible
2164       2164 King James Version Bible
2165       2165 King James Version Bible
2166       2166 King James Version Bible
2167       2167 King James Version Bible
2168       2168 King James Version Bible
2169       2169 King James Version Bible
2170       2170 King James Version Bible
2171       2171 King James Version Bible
2172       2172 King James Version Bible
2173       2173 King James Version Bible
2174       2174 King James Version Bible
2175       2175 King James Version Bible
2176       2176 King James Version Bible
2177       2177 King James Version Bible
2178       2178 King James Version Bible
2179       2179 King James Version Bible
2180       2180 King James Version Bible
2181       2181 King James Version Bible
2182       2182 King James Version Bible
2183       2183 King James Version Bible
2184       2184 King James Version Bible
2185       2185 King James Version Bible
2186       2186 King James Version Bible
2187       2187 King James Version Bible
2188       2188 King James Version Bible
2189       2189 King James Version Bible
2190       2190 King James Version Bible
2191       2191 King James Version Bible
2192       2192 King James Version Bible
2193       2193 King James Version Bible
2194       2194 King James Version Bible
2195       2195 King James Version Bible
2196       2196 King James Version Bible
2197       2197 King James Version Bible
2198       2198 King James Version Bible
2199       2199 King James Version Bible
2200       2200 King James Version Bible
2201       2201 King James Version Bible
2202       2202 King James Version Bible
2203       2203 King James Version Bible
2204       2204 King James Version Bible
2205       2205 King James Version Bible
2206       2206 King James Version Bible
2207       2207 King James Version Bible
2208       2208 King James Version Bible
2209       2209 King James Version Bible
2210       2210 King James Version Bible
2211       2211 King James Version Bible
2212       2212 King James Version Bible
2213       2213 King James Version Bible
2214       2214 King James Version Bible
2215       2215 King James Version Bible
2216       2216 King James Version Bible
2217       2217 King James Version Bible
2218       2218 King James Version Bible
2219       2219 King James Version Bible
2220       2220 King James Version Bible
2221       2221 King James Version Bible
2222       2222 King James Version Bible
2223       2223 King James Version Bible
2224       2224 King James Version Bible
2225       2225 King James Version Bible
2226       2226 King James Version Bible
2227       2227 King James Version Bible
2228       2228 King James Version Bible
2229       2229 King James Version Bible
2230       2230 King James Version Bible
2231       2231 King James Version Bible
2232       2232 King James Version Bible
2233       2233 King James Version Bible
2234       2234 King James Version Bible
2235       2235 King James Version Bible
2236       2236 King James Version Bible
2237       2237 King James Version Bible
2238       2238 King James Version Bible
2239       2239 King James Version Bible
2240       2240 King James Version Bible
2241       2241 King James Version Bible
2242       2242 King James Version Bible
2243       2243 King James Version Bible
2244       2244 King James Version Bible
2245       2245 King James Version Bible
2246       2246 King James Version Bible
2247       2247 King James Version Bible
2248       2248 King James Version Bible
2249       2249 King James Version Bible
2250       2250 King James Version Bible
2251       2251 King James Version Bible
2252       2252 King James Version Bible
2253       2253 King James Version Bible
2254       2254 King James Version Bible
2255       2255 King James Version Bible
2256       2256 King James Version Bible
2257       2257 King James Version Bible
2258       2258 King James Version Bible
2259       2259 King James Version Bible
2260       2260 King James Version Bible
2261       2261 King James Version Bible
2262       2262 King James Version Bible
2263       2263 King James Version Bible
2264       2264 King James Version Bible
2265       2265 King James Version Bible
2266       2266 King James Version Bible
2267       2267 King James Version Bible
2268       2268 King James Version Bible
2269       2269 King James Version Bible
2270       2270 King James Version Bible
2271       2271 King James Version Bible
2272       2272 King James Version Bible
2273       2273 King James Version Bible
2274       2274 King James Version Bible
2275       2275 King James Version Bible
2276       2276 King James Version Bible
2277       2277 King James Version Bible
2278       2278 King James Version Bible
2279       2279 King James Version Bible
2280       2280 King James Version Bible
2281       2281 King James Version Bible
2282       2282 King James Version Bible
2283       2283 King James Version Bible
2284       2284 King James Version Bible
2285       2285 King James Version Bible
2286       2286 King James Version Bible
2287       2287 King James Version Bible
2288       2288 King James Version Bible
2289       2289 King James Version Bible
2290       2290 King James Version Bible
2291       2291 King James Version Bible
2292       2292 King James Version Bible
2293       2293 King James Version Bible
2294       2294 King James Version Bible
2295       2295 King James Version Bible
2296       2296 King James Version Bible
2297       2297 King James Version Bible
2298       2298 King James Version Bible
2299       2299 King James Version Bible
2300       2300 King James Version Bible
2301       2301 King James Version Bible
2302       2302 King James Version Bible
2303       2303 King James Version Bible
2304       2304 King James Version Bible
2305       2305 King James Version Bible
2306       2306 King James Version Bible
2307       2307 King James Version Bible
2308       2308 King James Version Bible
2309       2309 King James Version Bible
2310       2310 King James Version Bible
2311       2311 King James Version Bible
2312       2312 King James Version Bible
2313       2313 King James Version Bible
2314       2314 King James Version Bible
2315       2315 King James Version Bible
2316       2316 King James Version Bible
2317       2317 King James Version Bible
2318       2318 King James Version Bible
2319       2319 King James Version Bible
2320       2320 King James Version Bible
2321       2321 King James Version Bible
2322       2322 King James Version Bible
2323       2323 King James Version Bible
2324       2324 King James Version Bible
2325       2325 King James Version Bible
2326       2326 King James Version Bible
2327       2327 King James Version Bible
2328       2328 King James Version Bible
2329       2329 King James Version Bible
2330       2330 King James Version Bible
2331       2331 King James Version Bible
2332       2332 King James Version Bible
2333       2333 King James Version Bible
2334       2334 King James Version Bible
2335       2335 King James Version Bible
2336       2336 King James Version Bible
2337       2337 King James Version Bible
2338       2338 King James Version Bible
2339       2339 King James Version Bible
2340       2340 King James Version Bible
2341       2341 King James Version Bible
2342       2342 King James Version Bible
2343       2343 King James Version Bible
2344       2344 King James Version Bible
2345       2345 King James Version Bible
2346       2346 King James Version Bible
2347       2347 King James Version Bible
2348       2348 King James Version Bible
2349       2349 King James Version Bible
2350       2350 King James Version Bible
2351       2351 King James Version Bible
2352       2352 King James Version Bible
2353       2353 King James Version Bible
2354       2354 King James Version Bible
2355       2355 King James Version Bible
2356       2356 King James Version Bible
2357       2357 King James Version Bible
2358       2358 King James Version Bible
2359       2359 King James Version Bible
2360       2360 King James Version Bible
2361       2361 King James Version Bible
2362       2362 King James Version Bible
2363       2363 King James Version Bible
2364       2364 King James Version Bible
2365       2365 King James Version Bible
2366       2366 King James Version Bible
2367       2367 King James Version Bible
2368       2368 King James Version Bible
2369       2369 King James Version Bible
2370       2370 King James Version Bible
2371       2371 King James Version Bible
2372       2372 King James Version Bible
2373       2373 King James Version Bible
2374       2374 King James Version Bible
2375       2375 King James Version Bible
2376       2376 King James Version Bible
2377       2377 King James Version Bible
2378       2378 King James Version Bible
2379       2379 King James Version Bible
2380       2380 King James Version Bible
2381       2381 King James Version Bible
2382       2382 King James Version Bible
2383       2383 King James Version Bible
2384       2384 King James Version Bible
2385       2385 King James Version Bible
2386       2386 King James Version Bible
2387       2387 King James Version Bible
2388       2388 King James Version Bible
2389       2389 King James Version Bible
2390       2390 King James Version Bible
2391       2391 King James Version Bible
2392       2392 King James Version Bible
2393       2393 King James Version Bible
2394       2394 King James Version Bible
2395       2395 King James Version Bible
2396       2396 King James Version Bible
2397       2397 King James Version Bible
2398       2398 King James Version Bible
2399       2399 King James Version Bible
2400       2400 King James Version Bible
2401       2401 King James Version Bible
2402       2402 King James Version Bible
2403       2403 King James Version Bible
2404       2404 King James Version Bible
2405       2405 King James Version Bible
2406       2406 King James Version Bible
2407       2407 King James Version Bible
2408       2408 King James Version Bible
2409       2409 King James Version Bible
2410       2410 King James Version Bible
2411       2411 King James Version Bible
2412       2412 King James Version Bible
2413       2413 King James Version Bible
2414       2414 King James Version Bible
2415       2415 King James Version Bible
2416       2416 King James Version Bible
2417       2417 King James Version Bible
2418       2418 King James Version Bible
2419       2419 King James Version Bible
2420       2420 King James Version Bible
2421       2421 King James Version Bible
2422       2422 King James Version Bible
2423       2423 King James Version Bible
2424       2424 King James Version Bible
2425       2425 King James Version Bible
2426       2426 King James Version Bible
2427       2427 King James Version Bible
2428       2428 King James Version Bible
2429       2429 King James Version Bible
2430       2430 King James Version Bible
2431       2431 King James Version Bible
2432       2432 King James Version Bible
2433       2433 King James Version Bible
2434       2434 King James Version Bible
2435       2435 King James Version Bible
2436       2436 King James Version Bible
2437       2437 King James Version Bible
2438       2438 King James Version Bible
2439       2439 King James Version Bible
2440       2440 King James Version Bible
2441       2441 King James Version Bible
2442       2442 King James Version Bible
2443       2443 King James Version Bible
2444       2444 King James Version Bible
2445       2445 King James Version Bible
2446       2446 King James Version Bible
2447       2447 King James Version Bible
2448       2448 King James Version Bible
2449       2449 King James Version Bible
2450       2450 King James Version Bible
2451       2451 King James Version Bible
2452       2452 King James Version Bible
2453       2453 King James Version Bible
2454       2454 King James Version Bible
2455       2455 King James Version Bible
2456       2456 King James Version Bible
2457       2457 King James Version Bible
2458       2458 King James Version Bible
2459       2459 King James Version Bible
2460       2460 King James Version Bible
2461       2461 King James Version Bible
2462       2462 King James Version Bible
2463       2463 King James Version Bible
2464       2464 King James Version Bible
2465       2465 King James Version Bible
2466       2466 King James Version Bible
2467       2467 King James Version Bible
2468       2468 King James Version Bible
2469       2469 King James Version Bible
2470       2470 King James Version Bible
2471       2471 King James Version Bible
2472       2472 King James Version Bible
2473       2473 King James Version Bible
2474       2474 King James Version Bible
2475       2475 King James Version Bible
2476       2476 King James Version Bible
2477       2477 King James Version Bible
2478       2478 King James Version Bible
2479       2479 King James Version Bible
2480       2480 King James Version Bible
2481       2481 King James Version Bible
2482       2482 King James Version Bible
2483       2483 King James Version Bible
2484       2484 King James Version Bible
2485       2485 King James Version Bible
2486       2486 King James Version Bible
2487       2487 King James Version Bible
2488       2488 King James Version Bible
2489       2489 King James Version Bible
2490       2490 King James Version Bible
2491       2491 King James Version Bible
2492       2492 King James Version Bible
2493       2493 King James Version Bible
2494       2494 King James Version Bible
2495       2495 King James Version Bible
2496       2496 King James Version Bible
2497       2497 King James Version Bible
2498       2498 King James Version Bible
2499       2499 King James Version Bible
2500       2500 King James Version Bible
2501       2501 King James Version Bible
2502       2502 King James Version Bible
2503       2503 King James Version Bible
2504       2504 King James Version Bible
2505       2505 King James Version Bible
2506       2506 King James Version Bible
2507       2507 King James Version Bible
2508       2508 King James Version Bible
2509       2509 King James Version Bible
2510       2510 King James Version Bible
2511       2511 King James Version Bible
2512       2512 King James Version Bible
2513       2513 King James Version Bible
2514       2514 King James Version Bible
2515       2515 King James Version Bible
2516       2516 King James Version Bible
2517       2517 King James Version Bible
2518       2518 King James Version Bible
2519       2519 King James Version Bible
2520       2520 King James Version Bible
2521       2521 King James Version Bible
2522       2522 King James Version Bible
2523       2523 King James Version Bible
2524       2524 King James Version Bible
2525       2525 King James Version Bible
2526       2526 King James Version Bible
2527       2527 King James Version Bible
2528       2528 King James Version Bible
2529       2529 King James Version Bible
2530       2530 King James Version Bible
2531       2531 King James Version Bible
2532       2532 King James Version Bible
2533       2533 King James Version Bible
2534       2534 King James Version Bible
2535       2535 King James Version Bible
2536       2536 King James Version Bible
2537       2537 King James Version Bible
2538       2538 King James Version Bible
2539       2539 King James Version Bible
2540       2540 King James Version Bible
2541       2541 King James Version Bible
2542       2542 King James Version Bible
2543       2543 King James Version Bible
2544       2544 King James Version Bible
2545       2545 King James Version Bible
2546       2546 King James Version Bible
2547       2547 King James Version Bible
2548       2548 King James Version Bible
2549       2549 King James Version Bible
2550       2550 King James Version Bible
2551       2551 King James Version Bible
2552       2552 King James Version Bible
2553       2553 King James Version Bible
2554       2554 King James Version Bible
2555       2555 King James Version Bible
2556       2556 King James Version Bible
2557       2557 King James Version Bible
2558       2558 King James Version Bible
2559       2559 King James Version Bible
2560       2560 King James Version Bible
2561       2561 King James Version Bible
2562       2562 King James Version Bible
2563       2563 King James Version Bible
2564       2564 King James Version Bible
2565       2565 King James Version Bible
2566       2566 King James Version Bible
2567       2567 King James Version Bible
2568       2568 King James Version Bible
2569       2569 King James Version Bible
2570       2570 King James Version Bible
2571       2571 King James Version Bible
2572       2572 King James Version Bible
2573       2573 King James Version Bible
2574       2574 King James Version Bible
2575       2575 King James Version Bible
2576       2576 King James Version Bible
2577       2577 King James Version Bible
2578       2578 King James Version Bible
2579       2579 King James Version Bible
2580       2580 King James Version Bible
2581       2581 King James Version Bible
2582       2582 King James Version Bible
2583       2583 King James Version Bible
2584       2584 King James Version Bible
2585       2585 King James Version Bible
2586       2586 King James Version Bible
2587       2587 King James Version Bible
2588       2588 King James Version Bible
2589       2589 King James Version Bible
2590       2590 King James Version Bible
2591       2591 King James Version Bible
2592       2592 King James Version Bible
2593       2593 King James Version Bible
2594       2594 King James Version Bible
2595       2595 King James Version Bible
2596       2596 King James Version Bible
2597       2597 King James Version Bible
2598       2598 King James Version Bible
2599       2599 King James Version Bible
2600       2600 King James Version Bible
2601       2601 King James Version Bible
2602       2602 King James Version Bible
2603       2603 King James Version Bible
2604       2604 King James Version Bible
2605       2605 King James Version Bible
2606       2606 King James Version Bible
2607       2607 King James Version Bible
2608       2608 King James Version Bible
2609       2609 King James Version Bible
2610       2610 King James Version Bible
2611       2611 King James Version Bible
2612       2612 King James Version Bible
2613       2613 King James Version Bible
2614       2614 King James Version Bible
2615       2615 King James Version Bible
2616       2616 King James Version Bible
2617       2617 King James Version Bible
2618       2618 King James Version Bible
2619       2619 King James Version Bible
2620       2620 King James Version Bible
2621       2621 King James Version Bible
2622       2622 King James Version Bible
2623       2623 King James Version Bible
2624       2624 King James Version Bible
2625       2625 King James Version Bible
2626       2626 King James Version Bible
2627       2627 King James Version Bible
2628       2628 King James Version Bible
2629       2629 King James Version Bible
2630       2630 King James Version Bible
2631       2631 King James Version Bible
2632       2632 King James Version Bible
2633       2633 King James Version Bible
2634       2634 King James Version Bible
2635       2635 King James Version Bible
2636       2636 King James Version Bible
2637       2637 King James Version Bible
2638       2638 King James Version Bible
2639       2639 King James Version Bible
2640       2640 King James Version Bible
2641       2641 King James Version Bible
2642       2642 King James Version Bible
2643       2643 King James Version Bible
2644       2644 King James Version Bible
2645       2645 King James Version Bible
2646       2646 King James Version Bible
2647       2647 King James Version Bible
2648       2648 King James Version Bible
2649       2649 King James Version Bible
2650       2650 King James Version Bible
2651       2651 King James Version Bible
2652       2652 King James Version Bible
2653       2653 King James Version Bible
2654       2654 King James Version Bible
2655       2655 King James Version Bible
2656       2656 King James Version Bible
2657       2657 King James Version Bible
2658       2658 King James Version Bible
2659       2659 King James Version Bible
2660       2660 King James Version Bible
2661       2661 King James Version Bible
2662       2662 King James Version Bible
2663       2663 King James Version Bible
2664       2664 King James Version Bible
2665       2665 King James Version Bible
2666       2666 King James Version Bible
2667       2667 King James Version Bible
2668       2668 King James Version Bible
2669       2669 King James Version Bible
2670       2670 King James Version Bible
2671       2671 King James Version Bible
2672       2672 King James Version Bible
2673       2673 King James Version Bible
2674       2674 King James Version Bible
2675       2675 King James Version Bible
2676       2676 King James Version Bible
2677       2677 King James Version Bible
2678       2678 King James Version Bible
2679       2679 King James Version Bible
2680       2680 King James Version Bible
2681       2681 King James Version Bible
2682       2682 King James Version Bible
2683       2683 King James Version Bible
2684       2684 King James Version Bible
2685       2685 King James Version Bible
2686       2686 King James Version Bible
2687       2687 King James Version Bible
2688       2688 King James Version Bible
2689       2689 King James Version Bible
2690       2690 King James Version Bible
2691       2691 King James Version Bible
2692       2692 King James Version Bible
2693       2693 King James Version Bible
2694       2694 King James Version Bible
2695       2695 King James Version Bible
2696       2696 King James Version Bible
2697       2697 King James Version Bible
2698       2698 King James Version Bible
2699       2699 King James Version Bible
2700       2700 King James Version Bible
2701       2701 King James Version Bible
2702       2702 King James Version Bible
2703       2703 King James Version Bible
2704       2704 King James Version Bible
2705       2705 King James Version Bible
2706       2706 King James Version Bible
2707       2707 King James Version Bible
2708       2708 King James Version Bible
2709       2709 King James Version Bible
2710       2710 King James Version Bible
2711       2711 King James Version Bible
2712       2712 King James Version Bible
2713       2713 King James Version Bible
2714       2714 King James Version Bible
2715       2715 King James Version Bible
2716       2716 King James Version Bible
2717       2717 King James Version Bible
2718       2718 King James Version Bible
2719       2719 King James Version Bible
2720       2720 King James Version Bible
2721       2721 King James Version Bible
2722       2722 King James Version Bible
2723       2723 King James Version Bible
2724       2724 King James Version Bible
2725       2725 King James Version Bible
2726       2726 King James Version Bible
2727       2727 King James Version Bible
2728       2728 King James Version Bible
2729       2729 King James Version Bible
2730       2730 King James Version Bible
2731       2731 King James Version Bible
2732       2732 King James Version Bible
2733       2733 King James Version Bible
2734       2734 King James Version Bible
2735       2735 King James Version Bible
2736       2736 King James Version Bible
2737       2737 King James Version Bible
2738       2738 King James Version Bible
2739       2739 King James Version Bible
2740       2740 King James Version Bible
2741       2741 King James Version Bible
2742       2742 King James Version Bible
2743       2743 King James Version Bible
2744       2744 King James Version Bible
2745       2745 King James Version Bible
2746       2746 King James Version Bible
2747       2747 King James Version Bible
2748       2748 King James Version Bible
2749       2749 King James Version Bible
2750       2750 King James Version Bible
2751       2751 King James Version Bible
2752       2752 King James Version Bible
2753       2753 King James Version Bible
2754       2754 King James Version Bible
2755       2755 King James Version Bible
2756       2756 King James Version Bible
2757       2757 King James Version Bible
2758       2758 King James Version Bible
2759       2759 King James Version Bible
2760       2760 King James Version Bible
2761       2761 King James Version Bible
2762       2762 King James Version Bible
2763       2763 King James Version Bible
2764       2764 King James Version Bible
2765       2765 King James Version Bible
2766       2766 King James Version Bible
2767       2767 King James Version Bible
2768       2768 King James Version Bible
2769       2769 King James Version Bible
2770       2770 King James Version Bible
2771       2771 King James Version Bible
2772       2772 King James Version Bible
2773       2773 King James Version Bible
2774       2774 King James Version Bible
2775       2775 King James Version Bible
2776       2776 King James Version Bible
2777       2777 King James Version Bible
2778       2778 King James Version Bible
2779       2779 King James Version Bible
2780       2780 King James Version Bible
2781       2781 King James Version Bible
2782       2782 King James Version Bible
2783       2783 King James Version Bible
2784       2784 King James Version Bible
2785       2785 King James Version Bible
2786       2786 King James Version Bible
2787       2787 King James Version Bible
2788       2788 King James Version Bible
2789       2789 King James Version Bible
2790       2790 King James Version Bible
2791       2791 King James Version Bible
2792       2792 King James Version Bible
2793       2793 King James Version Bible
2794       2794 King James Version Bible
2795       2795 King James Version Bible
2796       2796 King James Version Bible
2797       2797 King James Version Bible
2798       2798 King James Version Bible
2799       2799 King James Version Bible
2800       2800 King James Version Bible
2801       2801 King James Version Bible
2802       2802 King James Version Bible
2803       2803 King James Version Bible
2804       2804 King James Version Bible
2805       2805 King James Version Bible
2806       2806 King James Version Bible
2807       2807 King James Version Bible
2808       2808 King James Version Bible
2809       2809 King James Version Bible
2810       2810 King James Version Bible
2811       2811 King James Version Bible
2812       2812 King James Version Bible
2813       2813 King James Version Bible
2814       2814 King James Version Bible
2815       2815 King James Version Bible
2816       2816 King James Version Bible
2817       2817 King James Version Bible
2818       2818 King James Version Bible
2819       2819 King James Version Bible
2820       2820 King James Version Bible
2821       2821 King James Version Bible
2822       2822 King James Version Bible
2823       2823 King James Version Bible
2824       2824 King James Version Bible
2825       2825 King James Version Bible
2826       2826 King James Version Bible
2827       2827 King James Version Bible
2828       2828 King James Version Bible
2829       2829 King James Version Bible
2830       2830 King James Version Bible
2831       2831 King James Version Bible
2832       2832 King James Version Bible
2833       2833 King James Version Bible
2834       2834 King James Version Bible
2835       2835 King James Version Bible
2836       2836 King James Version Bible
2837       2837 King James Version Bible
2838       2838 King James Version Bible
2839       2839 King James Version Bible
2840       2840 King James Version Bible
2841       2841 King James Version Bible
2842       2842 King James Version Bible
2843       2843 King James Version Bible
2844       2844 King James Version Bible
2845       2845 King James Version Bible
2846       2846 King James Version Bible
2847       2847 King James Version Bible
2848       2848 King James Version Bible
2849       2849 King James Version Bible
2850       2850 King James Version Bible
2851       2851 King James Version Bible
2852       2852 King James Version Bible
2853       2853 King James Version Bible
2854       2854 King James Version Bible
2855       2855 King James Version Bible
2856       2856 King James Version Bible
2857       2857 King James Version Bible
2858       2858 King James Version Bible
2859       2859 King James Version Bible
2860       2860 King James Version Bible
2861       2861 King James Version Bible
2862       2862 King James Version Bible
2863       2863 King James Version Bible
2864       2864 King James Version Bible
2865       2865 King James Version Bible
2866       2866 King James Version Bible
2867       2867 King James Version Bible
2868       2868 King James Version Bible
2869       2869 King James Version Bible
2870       2870 King James Version Bible
2871       2871 King James Version Bible
2872       2872 King James Version Bible
2873       2873 King James Version Bible
2874       2874 King James Version Bible
2875       2875 King James Version Bible
2876       2876 King James Version Bible
2877       2877 King James Version Bible
2878       2878 King James Version Bible
2879       2879 King James Version Bible
2880       2880 King James Version Bible
2881       2881 King James Version Bible
2882       2882 King James Version Bible
2883       2883 King James Version Bible
2884       2884 King James Version Bible
2885       2885 King James Version Bible
2886       2886 King James Version Bible
2887       2887 King James Version Bible
2888       2888 King James Version Bible
2889       2889 King James Version Bible
2890       2890 King James Version Bible
2891       2891 King James Version Bible
2892       2892 King James Version Bible
2893       2893 King James Version Bible
2894       2894 King James Version Bible
2895       2895 King James Version Bible
2896       2896 King James Version Bible
2897       2897 King James Version Bible
2898       2898 King James Version Bible
2899       2899 King James Version Bible
2900       2900 King James Version Bible
2901       2901 King James Version Bible
2902       2902 King James Version Bible
2903       2903 King James Version Bible
2904       2904 King James Version Bible
2905       2905 King James Version Bible
2906       2906 King James Version Bible
2907       2907 King James Version Bible
2908       2908 King James Version Bible
2909       2909 King James Version Bible
2910       2910 King James Version Bible
2911       2911 King James Version Bible
2912       2912 King James Version Bible
2913       2913 King James Version Bible
2914       2914 King James Version Bible
2915       2915 King James Version Bible
2916       2916 King James Version Bible
2917       2917 King James Version Bible
2918       2918 King James Version Bible
2919       2919 King James Version Bible
2920       2920 King James Version Bible
2921       2921 King James Version Bible
2922       2922 King James Version Bible
2923       2923 King James Version Bible
2924       2924 King James Version Bible
2925       2925 King James Version Bible
2926       2926 King James Version Bible
2927       2927 King James Version Bible
2928       2928 King James Version Bible
2929       2929 King James Version Bible
2930       2930 King James Version Bible
2931       2931 King James Version Bible
2932       2932 King James Version Bible
2933       2933 King James Version Bible
2934       2934 King James Version Bible
2935       2935 King James Version Bible
2936       2936 King James Version Bible
2937       2937 King James Version Bible
2938       2938 King James Version Bible
2939       2939 King James Version Bible
2940       2940 King James Version Bible
2941       2941 King James Version Bible
2942       2942 King James Version Bible
2943       2943 King James Version Bible
2944       2944 King James Version Bible
2945       2945 King James Version Bible
2946       2946 King James Version Bible
2947       2947 King James Version Bible
2948       2948 King James Version Bible
2949       2949 King James Version Bible
2950       2950 King James Version Bible
2951       2951 King James Version Bible
2952       2952 King James Version Bible
2953       2953 King James Version Bible
2954       2954 King James Version Bible
2955       2955 King James Version Bible
2956       2956 King James Version Bible
2957       2957 King James Version Bible
2958       2958 King James Version Bible
2959       2959 King James Version Bible
2960       2960 King James Version Bible
2961       2961 King James Version Bible
2962       2962 King James Version Bible
2963       2963 King James Version Bible
2964       2964 King James Version Bible
2965       2965 King James Version Bible
2966       2966 King James Version Bible
2967       2967 King James Version Bible
2968       2968 King James Version Bible
2969       2969 King James Version Bible
2970       2970 King James Version Bible
2971       2971 King James Version Bible
2972       2972 King James Version Bible
2973       2973 King James Version Bible
2974       2974 King James Version Bible
2975       2975 King James Version Bible
2976       2976 King James Version Bible
2977       2977 King James Version Bible
2978       2978 King James Version Bible
2979       2979 King James Version Bible
2980       2980 King James Version Bible
2981       2981 King James Version Bible
2982       2982 King James Version Bible
2983       2983 King James Version Bible
2984       2984 King James Version Bible
2985       2985 King James Version Bible
2986       2986 King James Version Bible
2987       2987 King James Version Bible
2988       2988 King James Version Bible
2989       2989 King James Version Bible
2990       2990 King James Version Bible
2991       2991 King James Version Bible
2992       2992 King James Version Bible
2993       2993 King James Version Bible
2994       2994 King James Version Bible
2995       2995 King James Version Bible
2996       2996 King James Version Bible
2997       2997 King James Version Bible
2998       2998 King James Version Bible
2999       2999 King James Version Bible
3000       3000 King James Version Bible
3001       3001 King James Version Bible
3002       3002 King James Version Bible
3003       3003 King James Version Bible
3004       3004 King James Version Bible
3005       3005 King James Version Bible
3006       3006 King James Version Bible
3007       3007 King James Version Bible
3008       3008 King James Version Bible
3009       3009 King James Version Bible
3010       3010 King James Version Bible
3011       3011 King James Version Bible
3012       3012 King James Version Bible
3013       3013 King James Version Bible
3014       3014 King James Version Bible
3015       3015 King James Version Bible
3016       3016 King James Version Bible
3017       3017 King James Version Bible
3018       3018 King James Version Bible
3019       3019 King James Version Bible
3020       3020 King James Version Bible
3021       3021 King James Version Bible
3022       3022 King James Version Bible
3023       3023 King James Version Bible
3024       3024 King James Version Bible
3025       3025 King James Version Bible
3026       3026 King James Version Bible
3027       3027 King James Version Bible
3028       3028 King James Version Bible
3029       3029 King James Version Bible
3030       3030 King James Version Bible
3031       3031 King James Version Bible
3032       3032 King James Version Bible
3033       3033 King James Version Bible
3034       3034 King James Version Bible
3035       3035 King James Version Bible
3036       3036 King James Version Bible
3037       3037 King James Version Bible
3038       3038 King James Version Bible
3039       3039 King James Version Bible
3040       3040 King James Version Bible
3041       3041 King James Version Bible
3042       3042 King James Version Bible
3043       3043 King James Version Bible
3044       3044 King James Version Bible
3045       3045 King James Version Bible
3046       3046 King James Version Bible
3047       3047 King James Version Bible
3048       3048 King James Version Bible
3049       3049 King James Version Bible
3050       3050 King James Version Bible
3051       3051 King James Version Bible
3052       3052 King James Version Bible
3053       3053 King James Version Bible
3054       3054 King James Version Bible
3055       3055 King James Version Bible
3056       3056 King James Version Bible
3057       3057 King James Version Bible
3058       3058 King James Version Bible
3059       3059 King James Version Bible
3060       3060 King James Version Bible
3061       3061 King James Version Bible
3062       3062 King James Version Bible
3063       3063 King James Version Bible
3064       3064 King James Version Bible
3065       3065 King James Version Bible
3066       3066 King James Version Bible
3067       3067 King James Version Bible
3068       3068 King James Version Bible
3069       3069 King James Version Bible
3070       3070 King James Version Bible
3071       3071 King James Version Bible
3072       3072 King James Version Bible
3073       3073 King James Version Bible
3074       3074 King James Version Bible
3075       3075 King James Version Bible
3076       3076 King James Version Bible
3077       3077 King James Version Bible
3078       3078 King James Version Bible
3079       3079 King James Version Bible
3080       3080 King James Version Bible
3081       3081 King James Version Bible
3082       3082 King James Version Bible
3083       3083 King James Version Bible
3084       3084 King James Version Bible
3085       3085 King James Version Bible
3086       3086 King James Version Bible
3087       3087 King James Version Bible
3088       3088 King James Version Bible
3089       3089 King James Version Bible
3090       3090 King James Version Bible
3091       3091 King James Version Bible
3092       3092 King James Version Bible
3093       3093 King James Version Bible
3094       3094 King James Version Bible
3095       3095 King James Version Bible
3096       3096 King James Version Bible
3097       3097 King James Version Bible
3098       3098 King James Version Bible
3099       3099 King James Version Bible
3100       3100 King James Version Bible
3101       3101 King James Version Bible
3102       3102 King James Version Bible
3103       3103 King James Version Bible
3104       3104 King James Version Bible
3105       3105 King James Version Bible
3106       3106 King James Version Bible
3107       3107 King James Version Bible
3108       3108 King James Version Bible
3109       3109 King James Version Bible
3110       3110 King James Version Bible
3111       3111 King James Version Bible
3112       3112 King James Version Bible
3113       3113 King James Version Bible
3114       3114 King James Version Bible
3115       3115 King James Version Bible
3116       3116 King James Version Bible
3117       3117 King James Version Bible
3118       3118 King James Version Bible
3119       3119 King James Version Bible
3120       3120 King James Version Bible
3121       3121 King James Version Bible
3122       3122 King James Version Bible
3123       3123 King James Version Bible
3124       3124 King James Version Bible
3125       3125 King James Version Bible
3126       3126 King James Version Bible
3127       3127 King James Version Bible
3128       3128 King James Version Bible
3129       3129 King James Version Bible
3130       3130 King James Version Bible
3131       3131 King James Version Bible
3132       3132 King James Version Bible
3133       3133 King James Version Bible
3134       3134 King James Version Bible
3135       3135 King James Version Bible
3136       3136 King James Version Bible
3137       3137 King James Version Bible
3138       3138 King James Version Bible
3139       3139 King James Version Bible
3140       3140 King James Version Bible
3141       3141 King James Version Bible
3142       3142 King James Version Bible
3143       3143 King James Version Bible
3144       3144 King James Version Bible
3145       3145 King James Version Bible
3146       3146 King James Version Bible
3147       3147 King James Version Bible
3148       3148 King James Version Bible
3149       3149 King James Version Bible
3150       3150 King James Version Bible
3151       3151 King James Version Bible
3152       3152 King James Version Bible
3153       3153 King James Version Bible
3154       3154 King James Version Bible
3155       3155 King James Version Bible
3156       3156 King James Version Bible
3157       3157 King James Version Bible
3158       3158 King James Version Bible
3159       3159 King James Version Bible
3160       3160 King James Version Bible
3161       3161 King James Version Bible
3162       3162 King James Version Bible
3163       3163 King James Version Bible
3164       3164 King James Version Bible
3165       3165 King James Version Bible
3166       3166 King James Version Bible
3167       3167 King James Version Bible
3168       3168 King James Version Bible
3169       3169 King James Version Bible
3170       3170 King James Version Bible
3171       3171 King James Version Bible
3172       3172 King James Version Bible
3173       3173 King James Version Bible
3174       3174 King James Version Bible
3175       3175 King James Version Bible
3176       3176 King James Version Bible
3177       3177 King James Version Bible
3178       3178 King James Version Bible
3179       3179 King James Version Bible
3180       3180 King James Version Bible
3181       3181 King James Version Bible
3182       3182 King James Version Bible
3183       3183 King James Version Bible
3184       3184 King James Version Bible
3185       3185 King James Version Bible
3186       3186 King James Version Bible
3187       3187 King James Version Bible
3188       3188 King James Version Bible
3189       3189 King James Version Bible
3190       3190 King James Version Bible
3191       3191 King James Version Bible
3192       3192 King James Version Bible
3193       3193 King James Version Bible
3194       3194 King James Version Bible
3195       3195 King James Version Bible
3196       3196 King James Version Bible
3197       3197 King James Version Bible
3198       3198 King James Version Bible
3199       3199 King James Version Bible
3200       3200 King James Version Bible
3201       3201 King James Version Bible
3202       3202 King James Version Bible
3203       3203 King James Version Bible
3204       3204 King James Version Bible
3205       3205 King James Version Bible
3206       3206 King James Version Bible
3207       3207 King James Version Bible
3208       3208 King James Version Bible
3209       3209 King James Version Bible
3210       3210 King James Version Bible
3211       3211 King James Version Bible
3212       3212 King James Version Bible
3213       3213 King James Version Bible
3214       3214 King James Version Bible
3215       3215 King James Version Bible
3216       3216 King James Version Bible
3217       3217 King James Version Bible
3218       3218 King James Version Bible
3219       3219 King James Version Bible
3220       3220 King James Version Bible
3221       3221 King James Version Bible
3222       3222 King James Version Bible
3223       3223 King James Version Bible
3224       3224 King James Version Bible
3225       3225 King James Version Bible
3226       3226 King James Version Bible
3227       3227 King James Version Bible
3228       3228 King James Version Bible
3229       3229 King James Version Bible
3230       3230 King James Version Bible
3231       3231 King James Version Bible
3232       3232 King James Version Bible
3233       3233 King James Version Bible
3234       3234 King James Version Bible
3235       3235 King James Version Bible
3236       3236 King James Version Bible
3237       3237 King James Version Bible
3238       3238 King James Version Bible
3239       3239 King James Version Bible
3240       3240 King James Version Bible
3241       3241 King James Version Bible
3242       3242 King James Version Bible
3243       3243 King James Version Bible
3244       3244 King James Version Bible
3245       3245 King James Version Bible
3246       3246 King James Version Bible
3247       3247 King James Version Bible
3248       3248 King James Version Bible
3249       3249 King James Version Bible
3250       3250 King James Version Bible
3251       3251 King James Version Bible
3252       3252 King James Version Bible
3253       3253 King James Version Bible
3254       3254 King James Version Bible
3255       3255 King James Version Bible
3256       3256 King James Version Bible
3257       3257 King James Version Bible
3258       3258 King James Version Bible
3259       3259 King James Version Bible
3260       3260 King James Version Bible
3261       3261 King James Version Bible
3262       3262 King James Version Bible
3263       3263 King James Version Bible
3264       3264 King James Version Bible
3265       3265 King James Version Bible
3266       3266 King James Version Bible
3267       3267 King James Version Bible
3268       3268 King James Version Bible
3269       3269 King James Version Bible
3270       3270 King James Version Bible
3271       3271 King James Version Bible
3272       3272 King James Version Bible
3273       3273 King James Version Bible
3274       3274 King James Version Bible
3275       3275 King James Version Bible
3276       3276 King James Version Bible
3277       3277 King James Version Bible
3278       3278 King James Version Bible
3279       3279 King James Version Bible
3280       3280 King James Version Bible
3281       3281 King James Version Bible
3282       3282 King James Version Bible
3283       3283 King James Version Bible
3284       3284 King James Version Bible
3285       3285 King James Version Bible
3286       3286 King James Version Bible
3287       3287 King James Version Bible
3288       3288 King James Version Bible
3289       3289 King James Version Bible
3290       3290 King James Version Bible
3291       3291 King James Version Bible
3292       3292 King James Version Bible
3293       3293 King James Version Bible
3294       3294 King James Version Bible
3295       3295 King James Version Bible
3296       3296 King James Version Bible
3297       3297 King James Version Bible
3298       3298 King James Version Bible
3299       3299 King James Version Bible
3300       3300 King James Version Bible
3301       3301 King James Version Bible
3302       3302 King James Version Bible
3303       3303 King James Version Bible
3304       3304 King James Version Bible
3305       3305 King James Version Bible
3306       3306 King James Version Bible
3307       3307 King James Version Bible
3308       3308 King James Version Bible
3309       3309 King James Version Bible
3310       3310 King James Version Bible
3311       3311 King James Version Bible
3312       3312 King James Version Bible
3313       3313 King James Version Bible
3314       3314 King James Version Bible
3315       3315 King James Version Bible
3316       3316 King James Version Bible
3317       3317 King James Version Bible
3318       3318 King James Version Bible
3319       3319 King James Version Bible
3320       3320 King James Version Bible
3321       3321 King James Version Bible
3322       3322 King James Version Bible
3323       3323 King James Version Bible
3324       3324 King James Version Bible
3325       3325 King James Version Bible
3326       3326 King James Version Bible
3327       3327 King James Version Bible
3328       3328 King James Version Bible
3329       3329 King James Version Bible
3330       3330 King James Version Bible
3331       3331 King James Version Bible
3332       3332 King James Version Bible
3333       3333 King James Version Bible
3334       3334 King James Version Bible
3335       3335 King James Version Bible
3336       3336 King James Version Bible
3337       3337 King James Version Bible
3338       3338 King James Version Bible
3339       3339 King James Version Bible
3340       3340 King James Version Bible
3341       3341 King James Version Bible
3342       3342 King James Version Bible
3343       3343 King James Version Bible
3344       3344 King James Version Bible
3345       3345 King James Version Bible
3346       3346 King James Version Bible
3347       3347 King James Version Bible
3348       3348 King James Version Bible
3349       3349 King James Version Bible
3350       3350 King James Version Bible
3351       3351 King James Version Bible
3352       3352 King James Version Bible
3353       3353 King James Version Bible
3354       3354 King James Version Bible
3355       3355 King James Version Bible
3356       3356 King James Version Bible
3357       3357 King James Version Bible
3358       3358 King James Version Bible
3359       3359 King James Version Bible
3360       3360 King James Version Bible
3361       3361 King James Version Bible
3362       3362 King James Version Bible
3363       3363 King James Version Bible
3364       3364 King James Version Bible
3365       3365 King James Version Bible
3366       3366 King James Version Bible
3367       3367 King James Version Bible
3368       3368 King James Version Bible
3369       3369 King James Version Bible
3370       3370 King James Version Bible
3371       3371 King James Version Bible
3372       3372 King James Version Bible
3373       3373 King James Version Bible
3374       3374 King James Version Bible
3375       3375 King James Version Bible
3376       3376 King James Version Bible
3377       3377 King James Version Bible
3378       3378 King James Version Bible
3379       3379 King James Version Bible
3380       3380 King James Version Bible
3381       3381 King James Version Bible
3382       3382 King James Version Bible
3383       3383 King James Version Bible
3384       3384 King James Version Bible
3385       3385 King James Version Bible
3386       3386 King James Version Bible
3387       3387 King James Version Bible
3388       3388 King James Version Bible
3389       3389 King James Version Bible
3390       3390 King James Version Bible
3391       3391 King James Version Bible
3392       3392 King James Version Bible
3393       3393 King James Version Bible
3394       3394 King James Version Bible
3395       3395 King James Version Bible
3396       3396 King James Version Bible
3397       3397 King James Version Bible
3398       3398 King James Version Bible
3399       3399 King James Version Bible
3400       3400 King James Version Bible
3401       3401 King James Version Bible
3402       3402 King James Version Bible
3403       3403 King James Version Bible
3404       3404 King James Version Bible
3405       3405 King James Version Bible
3406       3406 King James Version Bible
3407       3407 King James Version Bible
3408       3408 King James Version Bible
3409       3409 King James Version Bible
3410       3410 King James Version Bible
3411       3411 King James Version Bible
3412       3412 King James Version Bible
3413       3413 King James Version Bible
3414       3414 King James Version Bible
3415       3415 King James Version Bible
3416       3416 King James Version Bible
3417       3417 King James Version Bible
3418       3418 King James Version Bible
3419       3419 King James Version Bible
3420       3420 King James Version Bible
3421       3421 King James Version Bible
3422       3422 King James Version Bible
3423       3423 King James Version Bible
3424       3424 King James Version Bible
3425       3425 King James Version Bible
3426       3426 King James Version Bible
3427       3427 King James Version Bible
3428       3428 King James Version Bible
3429       3429 King James Version Bible
3430       3430 King James Version Bible
3431       3431 King James Version Bible
3432       3432 King James Version Bible
3433       3433 King James Version Bible
3434       3434 King James Version Bible
3435       3435 King James Version Bible
3436       3436 King James Version Bible
3437       3437 King James Version Bible
3438       3438 King James Version Bible
3439       3439 King James Version Bible
3440       3440 King James Version Bible
3441       3441 King James Version Bible
3442       3442 King James Version Bible
3443       3443 King James Version Bible
3444       3444 King James Version Bible
3445       3445 King James Version Bible
3446       3446 King James Version Bible
3447       3447 King James Version Bible
3448       3448 King James Version Bible
3449       3449 King James Version Bible
3450       3450 King James Version Bible
3451       3451 King James Version Bible
3452       3452 King James Version Bible
3453       3453 King James Version Bible
3454       3454 King James Version Bible
3455       3455 King James Version Bible
3456       3456 King James Version Bible
3457       3457 King James Version Bible
3458       3458 King James Version Bible
3459       3459 King James Version Bible
3460       3460 King James Version Bible
3461       3461 King James Version Bible
3462       3462 King James Version Bible
3463       3463 King James Version Bible
3464       3464 King James Version Bible
3465       3465 King James Version Bible
3466       3466 King James Version Bible
3467       3467 King James Version Bible
3468       3468 King James Version Bible
3469       3469 King James Version Bible
3470       3470 King James Version Bible
3471       3471 King James Version Bible
3472       3472 King James Version Bible
3473       3473 King James Version Bible
3474       3474 King James Version Bible
3475       3475 King James Version Bible
3476       3476 King James Version Bible
3477       3477 King James Version Bible
3478       3478 King James Version Bible
3479       3479 King James Version Bible
3480       3480 King James Version Bible
3481       3481 King James Version Bible
3482       3482 King James Version Bible
3483       3483 King James Version Bible
3484       3484 King James Version Bible
3485       3485 King James Version Bible
3486       3486 King James Version Bible
3487       3487 King James Version Bible
3488       3488 King James Version Bible
3489       3489 King James Version Bible
3490       3490 King James Version Bible
3491       3491 King James Version Bible
3492       3492 King James Version Bible
3493       3493 King James Version Bible
3494       3494 King James Version Bible
3495       3495 King James Version Bible
3496       3496 King James Version Bible
3497       3497 King James Version Bible
3498       3498 King James Version Bible
3499       3499 King James Version Bible
3500       3500 King James Version Bible
3501       3501 King James Version Bible
3502       3502 King James Version Bible
3503       3503 King James Version Bible
3504       3504 King James Version Bible
3505       3505 King James Version Bible
3506       3506 King James Version Bible
3507       3507 King James Version Bible
3508       3508 King James Version Bible
3509       3509 King James Version Bible
3510       3510 King James Version Bible
3511       3511 King James Version Bible
3512       3512 King James Version Bible
3513       3513 King James Version Bible
3514       3514 King James Version Bible
3515       3515 King James Version Bible
3516       3516 King James Version Bible
3517       3517 King James Version Bible
3518       3518 King James Version Bible
3519       3519 King James Version Bible
3520       3520 King James Version Bible
3521       3521 King James Version Bible
3522       3522 King James Version Bible
3523       3523 King James Version Bible
3524       3524 King James Version Bible
3525       3525 King James Version Bible
3526       3526 King James Version Bible
3527       3527 King James Version Bible
3528       3528 King James Version Bible
3529       3529 King James Version Bible
3530       3530 King James Version Bible
3531       3531 King James Version Bible
3532       3532 King James Version Bible
3533       3533 King James Version Bible
3534       3534 King James Version Bible
3535       3535 King James Version Bible
3536       3536 King James Version Bible
3537       3537 King James Version Bible
3538       3538 King James Version Bible
3539       3539 King James Version Bible
3540       3540 King James Version Bible
3541       3541 King James Version Bible
3542       3542 King James Version Bible
3543       3543 King James Version Bible
3544       3544 King James Version Bible
3545       3545 King James Version Bible
3546       3546 King James Version Bible
3547       3547 King James Version Bible
3548       3548 King James Version Bible
3549       3549 King James Version Bible
3550       3550 King James Version Bible
3551       3551 King James Version Bible
3552       3552 King James Version Bible
3553       3553 King James Version Bible
3554       3554 King James Version Bible
3555       3555 King James Version Bible
3556       3556 King James Version Bible
3557       3557 King James Version Bible
3558       3558 King James Version Bible
3559       3559 King James Version Bible
3560       3560 King James Version Bible
3561       3561 King James Version Bible
3562       3562 King James Version Bible
3563       3563 King James Version Bible
3564       3564 King James Version Bible
3565       3565 King James Version Bible
3566       3566 King James Version Bible
3567       3567 King James Version Bible
3568       3568 King James Version Bible
3569       3569 King James Version Bible
3570       3570 King James Version Bible
3571       3571 King James Version Bible
3572       3572 King James Version Bible
3573       3573 King James Version Bible
3574       3574 King James Version Bible
3575       3575 King James Version Bible
3576       3576 King James Version Bible
3577       3577 King James Version Bible
3578       3578 King James Version Bible
3579       3579 King James Version Bible
3580       3580 King James Version Bible
3581       3581 King James Version Bible
3582       3582 King James Version Bible
3583       3583 King James Version Bible
3584       3584 King James Version Bible
3585       3585 King James Version Bible
3586       3586 King James Version Bible
3587       3587 King James Version Bible
3588       3588 King James Version Bible
3589       3589 King James Version Bible
3590       3590 King James Version Bible
3591       3591 King James Version Bible
3592       3592 King James Version Bible
3593       3593 King James Version Bible
3594       3594 King James Version Bible
3595       3595 King James Version Bible
3596       3596 King James Version Bible
3597       3597 King James Version Bible
3598       3598 King James Version Bible
3599       3599 King James Version Bible
3600       3600 King James Version Bible
3601       3601 King James Version Bible
3602       3602 King James Version Bible
3603       3603 King James Version Bible
3604       3604 King James Version Bible
3605       3605 King James Version Bible
3606       3606 King James Version Bible
3607       3607 King James Version Bible
3608       3608 King James Version Bible
3609       3609 King James Version Bible
3610       3610 King James Version Bible
3611       3611 King James Version Bible
3612       3612 King James Version Bible
3613       3613 King James Version Bible
3614       3614 King James Version Bible
3615       3615 King James Version Bible
3616       3616 King James Version Bible
3617       3617 King James Version Bible
3618       3618 King James Version Bible
3619       3619 King James Version Bible
3620       3620 King James Version Bible
3621       3621 King James Version Bible
3622       3622 King James Version Bible
3623       3623 King James Version Bible
3624       3624 King James Version Bible
3625       3625 King James Version Bible
3626       3626 King James Version Bible
3627       3627 King James Version Bible
3628       3628 King James Version Bible
3629       3629 King James Version Bible
3630       3630 King James Version Bible
3631       3631 King James Version Bible
3632       3632 King James Version Bible
3633       3633 King James Version Bible
3634       3634 King James Version Bible
3635       3635 King James Version Bible
3636       3636 King James Version Bible
3637       3637 King James Version Bible
3638       3638 King James Version Bible
3639       3639 King James Version Bible
3640       3640 King James Version Bible
3641       3641 King James Version Bible
3642       3642 King James Version Bible
3643       3643 King James Version Bible
3644       3644 King James Version Bible
3645       3645 King James Version Bible
3646       3646 King James Version Bible
3647       3647 King James Version Bible
3648       3648 King James Version Bible
3649       3649 King James Version Bible
3650       3650 King James Version Bible
3651       3651 King James Version Bible
3652       3652 King James Version Bible
3653       3653 King James Version Bible
3654       3654 King James Version Bible
3655       3655 King James Version Bible
3656       3656 King James Version Bible
3657       3657 King James Version Bible
3658       3658 King James Version Bible
3659       3659 King James Version Bible
3660       3660 King James Version Bible
3661       3661 King James Version Bible
3662       3662 King James Version Bible
3663       3663 King James Version Bible
3664       3664 King James Version Bible
3665       3665 King James Version Bible
3666       3666 King James Version Bible
3667       3667 King James Version Bible
3668       3668 King James Version Bible
3669       3669 King James Version Bible
3670       3670 King James Version Bible
3671       3671 King James Version Bible
3672       3672 King James Version Bible
3673       3673 King James Version Bible
3674       3674 King James Version Bible
3675       3675 King James Version Bible
3676       3676 King James Version Bible
3677       3677 King James Version Bible
3678       3678 King James Version Bible
3679       3679 King James Version Bible
3680       3680 King James Version Bible
3681       3681 King James Version Bible
3682       3682 King James Version Bible
3683       3683 King James Version Bible
3684       3684 King James Version Bible
3685       3685 King James Version Bible
3686       3686 King James Version Bible
3687       3687 King James Version Bible
3688       3688 King James Version Bible
3689       3689 King James Version Bible
3690       3690 King James Version Bible
3691       3691 King James Version Bible
3692       3692 King James Version Bible
3693       3693 King James Version Bible
3694       3694 King James Version Bible
3695       3695 King James Version Bible
3696       3696 King James Version Bible
3697       3697 King James Version Bible
3698       3698 King James Version Bible
3699       3699 King James Version Bible
3700       3700 King James Version Bible
3701       3701 King James Version Bible
3702       3702 King James Version Bible
3703       3703 King James Version Bible
3704       3704 King James Version Bible
3705       3705 King James Version Bible
3706       3706 King James Version Bible
3707       3707 King James Version Bible
3708       3708 King James Version Bible
3709       3709 King James Version Bible
3710       3710 King James Version Bible
3711       3711 King James Version Bible
3712       3712 King James Version Bible
3713       3713 King James Version Bible
3714       3714 King James Version Bible
3715       3715 King James Version Bible
3716       3716 King James Version Bible
3717       3717 King James Version Bible
3718       3718 King James Version Bible
3719       3719 King James Version Bible
3720       3720 King James Version Bible
3721       3721 King James Version Bible
3722       3722 King James Version Bible
3723       3723 King James Version Bible
3724       3724 King James Version Bible
3725       3725 King James Version Bible
3726       3726 King James Version Bible
3727       3727 King James Version Bible
3728       3728 King James Version Bible
3729       3729 King James Version Bible
3730       3730 King James Version Bible
3731       3731 King James Version Bible
3732       3732 King James Version Bible
3733       3733 King James Version Bible
3734       3734 King James Version Bible
3735       3735 King James Version Bible
3736       3736 King James Version Bible
3737       3737 King James Version Bible
3738       3738 King James Version Bible
3739       3739 King James Version Bible
3740       3740 King James Version Bible
3741       3741 King James Version Bible
3742       3742 King James Version Bible
3743       3743 King James Version Bible
3744       3744 King James Version Bible
3745       3745 King James Version Bible
3746       3746 King James Version Bible
3747       3747 King James Version Bible
3748       3748 King James Version Bible
3749       3749 King James Version Bible
3750       3750 King James Version Bible
3751       3751 King James Version Bible
3752       3752 King James Version Bible
3753       3753 King James Version Bible
3754       3754 King James Version Bible
3755       3755 King James Version Bible
3756       3756 King James Version Bible
3757       3757 King James Version Bible
3758       3758 King James Version Bible
3759       3759 King James Version Bible
3760       3760 King James Version Bible
3761       3761 King James Version Bible
3762       3762 King James Version Bible
3763       3763 King James Version Bible
3764       3764 King James Version Bible
3765       3765 King James Version Bible
3766       3766 King James Version Bible
3767       3767 King James Version Bible
3768       3768 King James Version Bible
3769       3769 King James Version Bible
3770       3770 King James Version Bible
3771       3771 King James Version Bible
3772       3772 King James Version Bible
3773       3773 King James Version Bible
3774       3774 King James Version Bible
3775       3775 King James Version Bible
3776       3776 King James Version Bible
3777       3777 King James Version Bible
3778       3778 King James Version Bible
3779       3779 King James Version Bible
3780       3780 King James Version Bible
3781       3781 King James Version Bible
3782       3782 King James Version Bible
3783       3783 King James Version Bible
3784       3784 King James Version Bible
3785       3785 King James Version Bible
3786       3786 King James Version Bible
3787       3787 King James Version Bible
3788       3788 King James Version Bible
3789       3789 King James Version Bible
3790       3790 King James Version Bible
3791       3791 King James Version Bible
3792       3792 King James Version Bible
3793       3793 King James Version Bible
3794       3794 King James Version Bible
3795       3795 King James Version Bible
3796       3796 King James Version Bible
3797       3797 King James Version Bible
3798       3798 King James Version Bible
3799       3799 King James Version Bible
3800       3800 King James Version Bible
3801       3801 King James Version Bible
3802       3802 King James Version Bible
3803       3803 King James Version Bible
3804       3804 King James Version Bible
3805       3805 King James Version Bible
3806       3806 King James Version Bible
3807       3807 King James Version Bible
3808       3808 King James Version Bible
3809       3809 King James Version Bible
3810       3810 King James Version Bible
3811       3811 King James Version Bible
3812       3812 King James Version Bible
3813       3813 King James Version Bible
3814       3814 King James Version Bible
3815       3815 King James Version Bible
3816       3816 King James Version Bible
3817       3817 King James Version Bible
3818       3818 King James Version Bible
3819       3819 King James Version Bible
3820       3820 King James Version Bible
3821       3821 King James Version Bible
3822       3822 King James Version Bible
3823       3823 King James Version Bible
3824       3824 King James Version Bible
3825       3825 King James Version Bible
3826       3826 King James Version Bible
3827       3827 King James Version Bible
3828       3828 King James Version Bible
3829       3829 King James Version Bible
3830       3830 King James Version Bible
3831       3831 King James Version Bible
3832       3832 King James Version Bible
3833       3833 King James Version Bible
3834       3834 King James Version Bible
3835       3835 King James Version Bible
3836       3836 King James Version Bible
3837       3837 King James Version Bible
3838       3838 King James Version Bible
3839       3839 King James Version Bible
3840       3840 King James Version Bible
3841       3841 King James Version Bible
3842       3842 King James Version Bible
3843       3843 King James Version Bible
3844       3844 King James Version Bible
3845       3845 King James Version Bible
3846       3846 King James Version Bible
3847       3847 King James Version Bible
3848       3848 King James Version Bible
3849       3849 King James Version Bible
3850       3850 King James Version Bible
3851       3851 King James Version Bible
3852       3852 King James Version Bible
3853       3853 King James Version Bible
3854       3854 King James Version Bible
3855       3855 King James Version Bible
3856       3856 King James Version Bible
3857       3857 King James Version Bible
3858       3858 King James Version Bible
3859       3859 King James Version Bible
3860       3860 King James Version Bible
3861       3861 King James Version Bible
3862       3862 King James Version Bible
3863       3863 King James Version Bible
3864       3864 King James Version Bible
3865       3865 King James Version Bible
3866       3866 King James Version Bible
3867       3867 King James Version Bible
3868       3868 King James Version Bible
3869       3869 King James Version Bible
3870       3870 King James Version Bible
3871       3871 King James Version Bible
3872       3872 King James Version Bible
3873       3873 King James Version Bible
3874       3874 King James Version Bible
3875       3875 King James Version Bible
3876       3876 King James Version Bible
3877       3877 King James Version Bible
3878       3878 King James Version Bible
3879       3879 King James Version Bible
3880       3880 King James Version Bible
3881       3881 King James Version Bible
3882       3882 King James Version Bible
3883       3883 King James Version Bible
3884       3884 King James Version Bible
3885       3885 King James Version Bible
3886       3886 King James Version Bible
3887       3887 King James Version Bible
3888       3888 King James Version Bible
3889       3889 King James Version Bible
3890       3890 King James Version Bible
3891       3891 King James Version Bible
3892       3892 King James Version Bible
3893       3893 King James Version Bible
3894       3894 King James Version Bible
3895       3895 King James Version Bible
3896       3896 King James Version Bible
3897       3897 King James Version Bible
3898       3898 King James Version Bible
3899       3899 King James Version Bible
3900       3900 King James Version Bible
3901       3901 King James Version Bible
3902       3902 King James Version Bible
3903       3903 King James Version Bible
3904       3904 King James Version Bible
3905       3905 King James Version Bible
3906       3906 King James Version Bible
3907       3907 King James Version Bible
3908       3908 King James Version Bible
3909       3909 King James Version Bible
3910       3910 King James Version Bible
3911       3911 King James Version Bible
3912       3912 King James Version Bible
3913       3913 King James Version Bible
3914       3914 King James Version Bible
3915       3915 King James Version Bible
3916       3916 King James Version Bible
3917       3917 King James Version Bible
3918       3918 King James Version Bible
3919       3919 King James Version Bible
3920       3920 King James Version Bible
3921       3921 King James Version Bible
3922       3922 King James Version Bible
3923       3923 King James Version Bible
3924       3924 King James Version Bible
3925       3925 King James Version Bible
3926       3926 King James Version Bible
3927       3927 King James Version Bible
3928       3928 King James Version Bible
3929       3929 King James Version Bible
3930       3930 King James Version Bible
3931       3931 King James Version Bible
3932       3932 King James Version Bible
3933       3933 King James Version Bible
3934       3934 King James Version Bible
3935       3935 King James Version Bible
3936       3936 King James Version Bible
3937       3937 King James Version Bible
3938       3938 King James Version Bible
3939       3939 King James Version Bible
3940       3940 King James Version Bible
3941       3941 King James Version Bible
3942       3942 King James Version Bible
3943       3943 King James Version Bible
3944       3944 King James Version Bible
3945       3945 King James Version Bible
3946       3946 King James Version Bible
3947       3947 King James Version Bible
3948       3948 King James Version Bible
3949       3949 King James Version Bible
3950       3950 King James Version Bible
3951       3951 King James Version Bible
3952       3952 King James Version Bible
3953       3953 King James Version Bible
3954       3954 King James Version Bible
3955       3955 King James Version Bible
3956       3956 King James Version Bible
3957       3957 King James Version Bible
3958       3958 King James Version Bible
3959       3959 King James Version Bible
3960       3960 King James Version Bible
3961       3961 King James Version Bible
3962       3962 King James Version Bible
3963       3963 King James Version Bible
3964       3964 King James Version Bible
3965       3965 King James Version Bible
3966       3966 King James Version Bible
3967       3967 King James Version Bible
3968       3968 King James Version Bible
3969       3969 King James Version Bible
3970       3970 King James Version Bible
3971       3971 King James Version Bible
3972       3972 King James Version Bible
3973       3973 King James Version Bible
3974       3974 King James Version Bible
3975       3975 King James Version Bible
3976       3976 King James Version Bible
3977       3977 King James Version Bible
3978       3978 King James Version Bible
3979       3979 King James Version Bible
3980       3980 King James Version Bible
3981       3981 King James Version Bible
3982       3982 King James Version Bible
3983       3983 King James Version Bible
3984       3984 King James Version Bible
3985       3985 King James Version Bible
3986       3986 King James Version Bible
3987       3987 King James Version Bible
3988       3988 King James Version Bible
3989       3989 King James Version Bible
3990       3990 King James Version Bible
3991       3991 King James Version Bible
3992       3992 King James Version Bible
3993       3993 King James Version Bible
3994       3994 King James Version Bible
3995       3995 King James Version Bible
3996       3996 King James Version Bible
3997       3997 King James Version Bible
3998       3998 King James Version Bible
3999       3999 King James Version Bible
4000       4000 King James Version Bible
4001       4001 King James Version Bible
4002       4002 King James Version Bible
4003       4003 King James Version Bible
4004       4004 King James Version Bible
4005       4005 King James Version Bible
4006       4006 King James Version Bible
4007       4007 King James Version Bible
4008       4008 King James Version Bible
4009       4009 King James Version Bible
4010       4010 King James Version Bible
4011       4011 King James Version Bible
4012       4012 King James Version Bible
4013       4013 King James Version Bible
4014       4014 King James Version Bible
4015       4015 King James Version Bible
4016       4016 King James Version Bible
4017       4017 King James Version Bible
4018       4018 King James Version Bible
4019       4019 King James Version Bible
4020       4020 King James Version Bible
4021       4021 King James Version Bible
4022       4022 King James Version Bible
4023       4023 King James Version Bible
4024       4024 King James Version Bible
4025       4025 King James Version Bible
4026       4026 King James Version Bible
4027       4027 King James Version Bible
4028       4028 King James Version Bible
4029       4029 King James Version Bible
4030       4030 King James Version Bible
4031       4031 King James Version Bible
4032       4032 King James Version Bible
4033       4033 King James Version Bible
4034       4034 King James Version Bible
4035       4035 King James Version Bible
4036       4036 King James Version Bible
4037       4037 King James Version Bible
4038       4038 King James Version Bible
4039       4039 King James Version Bible
4040       4040 King James Version Bible
4041       4041 King James Version Bible
4042       4042 King James Version Bible
4043       4043 King James Version Bible
4044       4044 King James Version Bible
4045       4045 King James Version Bible
4046       4046 King James Version Bible
4047       4047 King James Version Bible
4048       4048 King James Version Bible
4049       4049 King James Version Bible
4050       4050 King James Version Bible
4051       4051 King James Version Bible
4052       4052 King James Version Bible
4053       4053 King James Version Bible
4054       4054 King James Version Bible
4055       4055 King James Version Bible
4056       4056 King James Version Bible
4057       4057 King James Version Bible
4058       4058 King James Version Bible
4059       4059 King James Version Bible
4060       4060 King James Version Bible
4061       4061 King James Version Bible
4062       4062 King James Version Bible
4063       4063 King James Version Bible
4064       4064 King James Version Bible
4065       4065 King James Version Bible
4066       4066 King James Version Bible
4067       4067 King James Version Bible
4068       4068 King James Version Bible
4069       4069 King James Version Bible
4070       4070 King James Version Bible
4071       4071 King James Version Bible
4072       4072 King James Version Bible
4073       4073 King James Version Bible
4074       4074 King James Version Bible
4075       4075 King James Version Bible
4076       4076 King James Version Bible
4077       4077 King James Version Bible
4078       4078 King James Version Bible
4079       4079 King James Version Bible
4080       4080 King James Version Bible
4081       4081 King James Version Bible
4082       4082 King James Version Bible
4083       4083 King James Version Bible
4084       4084 King James Version Bible
4085       4085 King James Version Bible
4086       4086 King James Version Bible
4087       4087 King James Version Bible
4088       4088 King James Version Bible
4089       4089 King James Version Bible
4090       4090 King James Version Bible
4091       4091 King James Version Bible
4092       4092 King James Version Bible
4093       4093 King James Version Bible
4094       4094 King James Version Bible
4095       4095 King James Version Bible
4096       4096 King James Version Bible
4097       4097 King James Version Bible
4098       4098 King James Version Bible
4099       4099 King James Version Bible
4100       4100 King James Version Bible
4101       4101 King James Version Bible
4102       4102 King James Version Bible
4103       4103 King James Version Bible
4104       4104 King James Version Bible
4105       4105 King James Version Bible
4106       4106 King James Version Bible
4107       4107 King James Version Bible
4108       4108 King James Version Bible
4109       4109 King James Version Bible
4110       4110 King James Version Bible
4111       4111 King James Version Bible
4112       4112 King James Version Bible
4113       4113 King James Version Bible
4114       4114 King James Version Bible
4115       4115 King James Version Bible
4116       4116 King James Version Bible
4117       4117 King James Version Bible
4118       4118 King James Version Bible
4119       4119 King James Version Bible
4120       4120 King James Version Bible
4121       4121 King James Version Bible
4122       4122 King James Version Bible
4123       4123 King James Version Bible
4124       4124 King James Version Bible
4125       4125 King James Version Bible
4126       4126 King James Version Bible
4127       4127 King James Version Bible
4128       4128 King James Version Bible
4129       4129 King James Version Bible
4130       4130 King James Version Bible
4131       4131 King James Version Bible
4132       4132 King James Version Bible
4133       4133 King James Version Bible
4134       4134 King James Version Bible
4135       4135 King James Version Bible
4136       4136 King James Version Bible
4137       4137 King James Version Bible
4138       4138 King James Version Bible
4139       4139 King James Version Bible
4140       4140 King James Version Bible
4141       4141 King James Version Bible
4142       4142 King James Version Bible
4143       4143 King James Version Bible
4144       4144 King James Version Bible
4145       4145 King James Version Bible
4146       4146 King James Version Bible
4147       4147 King James Version Bible
4148       4148 King James Version Bible
4149       4149 King James Version Bible
4150       4150 King James Version Bible
4151       4151 King James Version Bible
4152       4152 King James Version Bible
4153       4153 King James Version Bible
4154       4154 King James Version Bible
4155       4155 King James Version Bible
4156       4156 King James Version Bible
4157       4157 King James Version Bible
4158       4158 King James Version Bible
4159       4159 King James Version Bible
4160       4160 King James Version Bible
4161       4161 King James Version Bible
4162       4162 King James Version Bible
4163       4163 King James Version Bible
4164       4164 King James Version Bible
4165       4165 King James Version Bible
4166       4166 King James Version Bible
4167       4167 King James Version Bible
4168       4168 King James Version Bible
4169       4169 King James Version Bible
4170       4170 King James Version Bible
4171       4171 King James Version Bible
4172       4172 King James Version Bible
4173       4173 King James Version Bible
4174       4174 King James Version Bible
4175       4175 King James Version Bible
4176       4176 King James Version Bible
4177       4177 King James Version Bible
4178       4178 King James Version Bible
4179       4179 King James Version Bible
4180       4180 King James Version Bible
4181       4181 King James Version Bible
4182       4182 King James Version Bible
4183       4183 King James Version Bible
4184       4184 King James Version Bible
4185       4185 King James Version Bible
4186       4186 King James Version Bible
4187       4187 King James Version Bible
4188       4188 King James Version Bible
4189       4189 King James Version Bible
4190       4190 King James Version Bible
4191       4191 King James Version Bible
4192       4192 King James Version Bible
4193       4193 King James Version Bible
4194       4194 King James Version Bible
4195       4195 King James Version Bible
4196       4196 King James Version Bible
4197       4197 King James Version Bible
4198       4198 King James Version Bible
4199       4199 King James Version Bible
4200       4200 King James Version Bible
4201       4201 King James Version Bible
4202       4202 King James Version Bible
4203       4203 King James Version Bible
4204       4204 King James Version Bible
4205       4205 King James Version Bible
4206       4206 King James Version Bible
4207       4207 King James Version Bible
4208       4208 King James Version Bible
4209       4209 King James Version Bible
4210       4210 King James Version Bible
4211       4211 King James Version Bible
4212       4212 King James Version Bible
4213       4213 King James Version Bible
4214       4214 King James Version Bible
4215       4215 King James Version Bible
4216       4216 King James Version Bible
4217       4217 King James Version Bible
4218       4218 King James Version Bible
4219       4219 King James Version Bible
4220       4220 King James Version Bible
4221       4221 King James Version Bible
4222       4222 King James Version Bible
4223       4223 King James Version Bible
4224       4224 King James Version Bible
4225       4225 King James Version Bible
4226       4226 King James Version Bible
4227       4227 King James Version Bible
4228       4228 King James Version Bible
4229       4229 King James Version Bible
4230       4230 King James Version Bible
4231       4231 King James Version Bible
4232       4232 King James Version Bible
4233       4233 King James Version Bible
4234       4234 King James Version Bible
4235       4235 King James Version Bible
4236       4236 King James Version Bible
4237       4237 King James Version Bible
4238       4238 King James Version Bible
4239       4239 King James Version Bible
4240       4240 King James Version Bible
4241       4241 King James Version Bible
4242       4242 King James Version Bible
4243       4243 King James Version Bible
4244       4244 King James Version Bible
4245       4245 King James Version Bible
4246       4246 King James Version Bible
4247       4247 King James Version Bible
4248       4248 King James Version Bible
4249       4249 King James Version Bible
4250       4250 King James Version Bible
4251       4251 King James Version Bible
4252       4252 King James Version Bible
4253       4253 King James Version Bible
4254       4254 King James Version Bible
4255       4255 King James Version Bible
4256       4256 King James Version Bible
4257       4257 King James Version Bible
4258       4258 King James Version Bible
4259       4259 King James Version Bible
4260       4260 King James Version Bible
4261       4261 King James Version Bible
4262       4262 King James Version Bible
4263       4263 King James Version Bible
4264       4264 King James Version Bible
4265       4265 King James Version Bible
4266       4266 King James Version Bible
4267       4267 King James Version Bible
4268       4268 King James Version Bible
4269       4269 King James Version Bible
4270       4270 King James Version Bible
4271       4271 King James Version Bible
4272       4272 King James Version Bible
4273       4273 King James Version Bible
4274       4274 King James Version Bible
4275       4275 King James Version Bible
4276       4276 King James Version Bible
4277       4277 King James Version Bible
4278       4278 King James Version Bible
4279       4279 King James Version Bible
4280       4280 King James Version Bible
4281       4281 King James Version Bible
4282       4282 King James Version Bible
4283       4283 King James Version Bible
4284       4284 King James Version Bible
4285       4285 King James Version Bible
4286       4286 King James Version Bible
4287       4287 King James Version Bible
4288       4288 King James Version Bible
4289       4289 King James Version Bible
4290       4290 King James Version Bible
4291       4291 King James Version Bible
4292       4292 King James Version Bible
4293       4293 King James Version Bible
4294       4294 King James Version Bible
4295       4295 King James Version Bible
4296       4296 King James Version Bible
4297       4297 King James Version Bible
4298       4298 King James Version Bible
4299       4299 King James Version Bible
4300       4300 King James Version Bible
4301       4301 King James Version Bible
4302       4302 King James Version Bible
4303       4303 King James Version Bible
4304       4304 King James Version Bible
4305       4305 King James Version Bible
4306       4306 King James Version Bible
4307       4307 King James Version Bible
4308       4308 King James Version Bible
4309       4309 King James Version Bible
4310       4310 King James Version Bible
4311       4311 King James Version Bible
4312       4312 King James Version Bible
4313       4313 King James Version Bible
4314       4314 King James Version Bible
4315       4315 King James Version Bible
4316       4316 King James Version Bible
4317       4317 King James Version Bible
4318       4318 King James Version Bible
4319       4319 King James Version Bible
4320       4320 King James Version Bible
4321       4321 King James Version Bible
4322       4322 King James Version Bible
4323       4323 King James Version Bible
4324       4324 King James Version Bible
4325       4325 King James Version Bible
4326       4326 King James Version Bible
4327       4327 King James Version Bible
4328       4328 King James Version Bible
4329       4329 King James Version Bible
4330       4330 King James Version Bible
4331       4331 King James Version Bible
4332       4332 King James Version Bible
4333       4333 King James Version Bible
4334       4334 King James Version Bible
4335       4335 King James Version Bible
4336       4336 King James Version Bible
4337       4337 King James Version Bible
4338       4338 King James Version Bible
4339       4339 King James Version Bible
4340       4340 King James Version Bible
4341       4341 King James Version Bible
4342       4342 King James Version Bible
4343       4343 King James Version Bible
4344       4344 King James Version Bible
4345       4345 King James Version Bible
4346       4346 King James Version Bible
4347       4347 King James Version Bible
4348       4348 King James Version Bible
4349       4349 King James Version Bible
4350       4350 King James Version Bible
4351       4351 King James Version Bible
4352       4352 King James Version Bible
4353       4353 King James Version Bible
4354       4354 King James Version Bible
4355       4355 King James Version Bible
4356       4356 King James Version Bible
4357       4357 King James Version Bible
4358       4358 King James Version Bible
4359       4359 King James Version Bible
4360       4360 King James Version Bible
4361       4361 King James Version Bible
4362       4362 King James Version Bible
4363       4363 King James Version Bible
4364       4364 King James Version Bible
4365       4365 King James Version Bible
4366       4366 King James Version Bible
4367       4367 King James Version Bible
4368       4368 King James Version Bible
4369       4369 King James Version Bible
4370       4370 King James Version Bible
4371       4371 King James Version Bible
4372       4372 King James Version Bible
4373       4373 King James Version Bible
4374       4374 King James Version Bible
4375       4375 King James Version Bible
4376       4376 King James Version Bible
4377       4377 King James Version Bible
4378       4378 King James Version Bible
4379       4379 King James Version Bible
4380       4380 King James Version Bible
4381       4381 King James Version Bible
4382       4382 King James Version Bible
4383       4383 King James Version Bible
4384       4384 King James Version Bible
4385       4385 King James Version Bible
4386       4386 King James Version Bible
4387       4387 King James Version Bible
4388       4388 King James Version Bible
4389       4389 King James Version Bible
4390       4390 King James Version Bible
4391       4391 King James Version Bible
4392       4392 King James Version Bible
4393       4393 King James Version Bible
4394       4394 King James Version Bible
4395       4395 King James Version Bible
4396       4396 King James Version Bible
4397       4397 King James Version Bible
4398       4398 King James Version Bible
4399       4399 King James Version Bible
4400       4400 King James Version Bible
4401       4401 King James Version Bible
4402       4402 King James Version Bible
4403       4403 King James Version Bible
4404       4404 King James Version Bible
4405       4405 King James Version Bible
4406       4406 King James Version Bible
4407       4407 King James Version Bible
4408       4408 King James Version Bible
4409       4409 King James Version Bible
4410       4410 King James Version Bible
4411       4411 King James Version Bible
4412       4412 King James Version Bible
4413       4413 King James Version Bible
4414       4414 King James Version Bible
4415       4415 King James Version Bible
4416       4416 King James Version Bible
4417       4417 King James Version Bible
4418       4418 King James Version Bible
4419       4419 King James Version Bible
4420       4420 King James Version Bible
4421       4421 King James Version Bible
4422       4422 King James Version Bible
4423       4423 King James Version Bible
4424       4424 King James Version Bible
4425       4425 King James Version Bible
4426       4426 King James Version Bible
4427       4427 King James Version Bible
4428       4428 King James Version Bible
4429       4429 King James Version Bible
4430       4430 King James Version Bible
4431       4431 King James Version Bible
4432       4432 King James Version Bible
4433       4433 King James Version Bible
4434       4434 King James Version Bible
4435       4435 King James Version Bible
4436       4436 King James Version Bible
4437       4437 King James Version Bible
4438       4438 King James Version Bible
4439       4439 King James Version Bible
4440       4440 King James Version Bible
4441       4441 King James Version Bible
4442       4442 King James Version Bible
4443       4443 King James Version Bible
4444       4444 King James Version Bible
4445       4445 King James Version Bible
4446       4446 King James Version Bible
4447       4447 King James Version Bible
4448       4448 King James Version Bible
4449       4449 King James Version Bible
4450       4450 King James Version Bible
4451       4451 King James Version Bible
4452       4452 King James Version Bible
4453       4453 King James Version Bible
4454       4454 King James Version Bible
4455       4455 King James Version Bible
4456       4456 King James Version Bible
4457       4457 King James Version Bible
4458       4458 King James Version Bible
4459       4459 King James Version Bible
4460       4460 King James Version Bible
4461       4461 King James Version Bible
4462       4462 King James Version Bible
4463       4463 King James Version Bible
4464       4464 King James Version Bible
4465       4465 King James Version Bible
4466       4466 King James Version Bible
4467       4467 King James Version Bible
4468       4468 King James Version Bible
4469       4469 King James Version Bible
4470       4470 King James Version Bible
4471       4471 King James Version Bible
4472       4472 King James Version Bible
4473       4473 King James Version Bible
4474       4474 King James Version Bible
4475       4475 King James Version Bible
4476       4476 King James Version Bible
4477       4477 King James Version Bible
4478       4478 King James Version Bible
4479       4479 King James Version Bible
4480       4480 King James Version Bible
4481       4481 King James Version Bible
4482       4482 King James Version Bible
4483       4483 King James Version Bible
4484       4484 King James Version Bible
4485       4485 King James Version Bible
4486       4486 King James Version Bible
4487       4487 King James Version Bible
4488       4488 King James Version Bible
4489       4489 King James Version Bible
4490       4490 King James Version Bible
4491       4491 King James Version Bible
4492       4492 King James Version Bible
4493       4493 King James Version Bible
4494       4494 King James Version Bible
4495       4495 King James Version Bible
4496       4496 King James Version Bible
4497       4497 King James Version Bible
4498       4498 King James Version Bible
4499       4499 King James Version Bible
4500       4500 King James Version Bible
4501       4501 King James Version Bible
4502       4502 King James Version Bible
4503       4503 King James Version Bible
4504       4504 King James Version Bible
4505       4505 King James Version Bible
4506       4506 King James Version Bible
4507       4507 King James Version Bible
4508       4508 King James Version Bible
4509       4509 King James Version Bible
4510       4510 King James Version Bible
4511       4511 King James Version Bible
4512       4512 King James Version Bible
4513       4513 King James Version Bible
4514       4514 King James Version Bible
4515       4515 King James Version Bible
4516       4516 King James Version Bible
4517       4517 King James Version Bible
4518       4518 King James Version Bible
4519       4519 King James Version Bible
4520       4520 King James Version Bible
4521       4521 King James Version Bible
4522       4522 King James Version Bible
4523       4523 King James Version Bible
4524       4524 King James Version Bible
4525       4525 King James Version Bible
4526       4526 King James Version Bible
4527       4527 King James Version Bible
4528       4528 King James Version Bible
4529       4529 King James Version Bible
4530       4530 King James Version Bible
4531       4531 King James Version Bible
4532       4532 King James Version Bible
4533       4533 King James Version Bible
4534       4534 King James Version Bible
4535       4535 King James Version Bible
4536       4536 King James Version Bible
4537       4537 King James Version Bible
4538       4538 King James Version Bible
4539       4539 King James Version Bible
4540       4540 King James Version Bible
4541       4541 King James Version Bible
4542       4542 King James Version Bible
4543       4543 King James Version Bible
4544       4544 King James Version Bible
4545       4545 King James Version Bible
4546       4546 King James Version Bible
4547       4547 King James Version Bible
4548       4548 King James Version Bible
4549       4549 King James Version Bible
4550       4550 King James Version Bible
4551       4551 King James Version Bible
4552       4552 King James Version Bible
4553       4553 King James Version Bible
4554       4554 King James Version Bible
4555       4555 King James Version Bible
4556       4556 King James Version Bible
4557       4557 King James Version Bible
4558       4558 King James Version Bible
4559       4559 King James Version Bible
4560       4560 King James Version Bible
4561       4561 King James Version Bible
4562       4562 King James Version Bible
4563       4563 King James Version Bible
4564       4564 King James Version Bible
4565       4565 King James Version Bible
4566       4566 King James Version Bible
4567       4567 King James Version Bible
4568       4568 King James Version Bible
4569       4569 King James Version Bible
4570       4570 King James Version Bible
4571       4571 King James Version Bible
4572       4572 King James Version Bible
4573       4573 King James Version Bible
4574       4574 King James Version Bible
4575       4575 King James Version Bible
4576       4576 King James Version Bible
4577       4577 King James Version Bible
4578       4578 King James Version Bible
4579       4579 King James Version Bible
4580       4580 King James Version Bible
4581       4581 King James Version Bible
4582       4582 King James Version Bible
4583       4583 King James Version Bible
4584       4584 King James Version Bible
4585       4585 King James Version Bible
4586       4586 King James Version Bible
4587       4587 King James Version Bible
4588       4588 King James Version Bible
4589       4589 King James Version Bible
4590       4590 King James Version Bible
4591       4591 King James Version Bible
4592       4592 King James Version Bible
4593       4593 King James Version Bible
4594       4594 King James Version Bible
4595       4595 King James Version Bible
4596       4596 King James Version Bible
4597       4597 King James Version Bible
4598       4598 King James Version Bible
4599       4599 King James Version Bible
4600       4600 King James Version Bible
4601       4601 King James Version Bible
4602       4602 King James Version Bible
4603       4603 King James Version Bible
4604       4604 King James Version Bible
4605       4605 King James Version Bible
4606       4606 King James Version Bible
4607       4607 King James Version Bible
4608       4608 King James Version Bible
4609       4609 King James Version Bible
4610       4610 King James Version Bible
4611       4611 King James Version Bible
4612       4612 King James Version Bible
4613       4613 King James Version Bible
4614       4614 King James Version Bible
4615       4615 King James Version Bible
4616       4616 King James Version Bible
4617       4617 King James Version Bible
4618       4618 King James Version Bible
4619       4619 King James Version Bible
4620       4620 King James Version Bible
4621       4621 King James Version Bible
4622       4622 King James Version Bible
4623       4623 King James Version Bible
4624       4624 King James Version Bible
4625       4625 King James Version Bible
4626       4626 King James Version Bible
4627       4627 King James Version Bible
4628       4628 King James Version Bible
4629       4629 King James Version Bible
4630       4630 King James Version Bible
4631       4631 King James Version Bible
4632       4632 King James Version Bible
4633       4633 King James Version Bible
4634       4634 King James Version Bible
4635       4635 King James Version Bible
4636       4636 King James Version Bible
4637       4637 King James Version Bible
4638       4638 King James Version Bible
4639       4639 King James Version Bible
4640       4640 King James Version Bible
4641       4641 King James Version Bible
4642       4642 King James Version Bible
4643       4643 King James Version Bible
4644       4644 King James Version Bible
4645       4645 King James Version Bible
4646       4646 King James Version Bible
4647       4647 King James Version Bible
4648       4648 King James Version Bible
4649       4649 King James Version Bible
4650       4650 King James Version Bible
4651       4651 King James Version Bible
4652       4652 King James Version Bible
4653       4653 King James Version Bible
4654       4654 King James Version Bible
4655       4655 King James Version Bible
4656       4656 King James Version Bible
4657       4657 King James Version Bible
4658       4658 King James Version Bible
4659       4659 King James Version Bible
4660       4660 King James Version Bible
4661       4661 King James Version Bible
4662       4662 King James Version Bible
4663       4663 King James Version Bible
4664       4664 King James Version Bible
4665       4665 King James Version Bible
4666       4666 King James Version Bible
4667       4667 King James Version Bible
4668       4668 King James Version Bible
4669       4669 King James Version Bible
4670       4670 King James Version Bible
4671       4671 King James Version Bible
4672       4672 King James Version Bible
4673       4673 King James Version Bible
4674       4674 King James Version Bible
4675       4675 King James Version Bible
4676       4676 King James Version Bible
4677       4677 King James Version Bible
4678       4678 King James Version Bible
4679       4679 King James Version Bible
4680       4680 King James Version Bible
4681       4681 King James Version Bible
4682       4682 King James Version Bible
4683       4683 King James Version Bible
4684       4684 King James Version Bible
4685       4685 King James Version Bible
4686       4686 King James Version Bible
4687       4687 King James Version Bible
4688       4688 King James Version Bible
4689       4689 King James Version Bible
4690       4690 King James Version Bible
4691       4691 King James Version Bible
4692       4692 King James Version Bible
4693       4693 King James Version Bible
4694       4694 King James Version Bible
4695       4695 King James Version Bible
4696       4696 King James Version Bible
4697       4697 King James Version Bible
4698       4698 King James Version Bible
4699       4699 King James Version Bible
4700       4700 King James Version Bible
4701       4701 King James Version Bible
4702       4702 King James Version Bible
4703       4703 King James Version Bible
4704       4704 King James Version Bible
4705       4705 King James Version Bible
4706       4706 King James Version Bible
4707       4707 King James Version Bible
4708       4708 King James Version Bible
4709       4709 King James Version Bible
4710       4710 King James Version Bible
4711       4711 King James Version Bible
4712       4712 King James Version Bible
4713       4713 King James Version Bible
4714       4714 King James Version Bible
4715       4715 King James Version Bible
4716       4716 King James Version Bible
4717       4717 King James Version Bible
4718       4718 King James Version Bible
4719       4719 King James Version Bible
4720       4720 King James Version Bible
4721       4721 King James Version Bible
4722       4722 King James Version Bible
4723       4723 King James Version Bible
4724       4724 King James Version Bible
4725       4725 King James Version Bible
4726       4726 King James Version Bible
4727       4727 King James Version Bible
4728       4728 King James Version Bible
4729       4729 King James Version Bible
4730       4730 King James Version Bible
4731       4731 King James Version Bible
4732       4732 King James Version Bible
4733       4733 King James Version Bible
4734       4734 King James Version Bible
4735       4735 King James Version Bible
4736       4736 King James Version Bible
4737       4737 King James Version Bible
4738       4738 King James Version Bible
4739       4739 King James Version Bible
4740       4740 King James Version Bible
4741       4741 King James Version Bible
4742       4742 King James Version Bible
4743       4743 King James Version Bible
4744       4744 King James Version Bible
4745       4745 King James Version Bible
4746       4746 King James Version Bible
4747       4747 King James Version Bible
4748       4748 King James Version Bible
4749       4749 King James Version Bible
4750       4750 King James Version Bible
4751       4751 King James Version Bible
4752       4752 King James Version Bible
4753       4753 King James Version Bible
4754       4754 King James Version Bible
4755       4755 King James Version Bible
4756       4756 King James Version Bible
4757       4757 King James Version Bible
4758       4758 King James Version Bible
4759       4759 King James Version Bible
4760       4760 King James Version Bible
4761       4761 King James Version Bible
4762       4762 King James Version Bible
4763       4763 King James Version Bible
4764       4764 King James Version Bible
4765       4765 King James Version Bible
4766       4766 King James Version Bible
4767       4767 King James Version Bible
4768       4768 King James Version Bible
4769       4769 King James Version Bible
4770       4770 King James Version Bible
4771       4771 King James Version Bible
4772       4772 King James Version Bible
4773       4773 King James Version Bible
4774       4774 King James Version Bible
4775       4775 King James Version Bible
4776       4776 King James Version Bible
4777       4777 King James Version Bible
4778       4778 King James Version Bible
4779       4779 King James Version Bible
4780       4780 King James Version Bible
4781       4781 King James Version Bible
4782       4782 King James Version Bible
4783       4783 King James Version Bible
4784       4784 King James Version Bible
4785       4785 King James Version Bible
4786       4786 King James Version Bible
4787       4787 King James Version Bible
4788       4788 King James Version Bible
4789       4789 King James Version Bible
4790       4790 King James Version Bible
4791       4791 King James Version Bible
4792       4792 King James Version Bible
4793       4793 King James Version Bible
4794       4794 King James Version Bible
4795       4795 King James Version Bible
4796       4796 King James Version Bible
4797       4797 King James Version Bible
4798       4798 King James Version Bible
4799       4799 King James Version Bible
4800       4800 King James Version Bible
4801       4801 King James Version Bible
4802       4802 King James Version Bible
4803       4803 King James Version Bible
4804       4804 King James Version Bible
4805       4805 King James Version Bible
4806       4806 King James Version Bible
4807       4807 King James Version Bible
4808       4808 King James Version Bible
4809       4809 King James Version Bible
4810       4810 King James Version Bible
4811       4811 King James Version Bible
4812       4812 King James Version Bible
4813       4813 King James Version Bible
4814       4814 King James Version Bible
4815       4815 King James Version Bible
4816       4816 King James Version Bible
4817       4817 King James Version Bible
4818       4818 King James Version Bible
4819       4819 King James Version Bible
4820       4820 King James Version Bible
4821       4821 King James Version Bible
4822       4822 King James Version Bible
4823       4823 King James Version Bible
4824       4824 King James Version Bible
4825       4825 King James Version Bible
4826       4826 King James Version Bible
4827       4827 King James Version Bible
4828       4828 King James Version Bible
4829       4829 King James Version Bible
4830       4830 King James Version Bible
4831       4831 King James Version Bible
4832       4832 King James Version Bible
4833       4833 King James Version Bible
4834       4834 King James Version Bible
4835       4835 King James Version Bible
4836       4836 King James Version Bible
4837       4837 King James Version Bible
4838       4838 King James Version Bible
4839       4839 King James Version Bible
4840       4840 King James Version Bible
4841       4841 King James Version Bible
4842       4842 King James Version Bible
4843       4843 King James Version Bible
4844       4844 King James Version Bible
4845       4845 King James Version Bible
4846       4846 King James Version Bible
4847       4847 King James Version Bible
4848       4848 King James Version Bible
4849       4849 King James Version Bible
4850       4850 King James Version Bible
4851       4851 King James Version Bible
4852       4852 King James Version Bible
4853       4853 King James Version Bible
4854       4854 King James Version Bible
4855       4855 King James Version Bible
4856       4856 King James Version Bible
4857       4857 King James Version Bible
4858       4858 King James Version Bible
4859       4859 King James Version Bible
4860       4860 King James Version Bible
4861       4861 King James Version Bible
4862       4862 King James Version Bible
4863       4863 King James Version Bible
4864       4864 King James Version Bible
4865       4865 King James Version Bible
4866       4866 King James Version Bible
4867       4867 King James Version Bible
4868       4868 King James Version Bible
4869       4869 King James Version Bible
4870       4870 King James Version Bible
4871       4871 King James Version Bible
4872       4872 King James Version Bible
4873       4873 King James Version Bible
4874       4874 King James Version Bible
4875       4875 King James Version Bible
4876       4876 King James Version Bible
4877       4877 King James Version Bible
4878       4878 King James Version Bible
4879       4879 King James Version Bible
4880       4880 King James Version Bible
4881       4881 King James Version Bible
4882       4882 King James Version Bible
4883       4883 King James Version Bible
4884       4884 King James Version Bible
4885       4885 King James Version Bible
4886       4886 King James Version Bible
4887       4887 King James Version Bible
4888       4888 King James Version Bible
4889       4889 King James Version Bible
4890       4890 King James Version Bible
4891       4891 King James Version Bible
4892       4892 King James Version Bible
4893       4893 King James Version Bible
4894       4894 King James Version Bible
4895       4895 King James Version Bible
4896       4896 King James Version Bible
4897       4897 King James Version Bible
4898       4898 King James Version Bible
4899       4899 King James Version Bible
4900       4900 King James Version Bible
4901       4901 King James Version Bible
4902       4902 King James Version Bible
4903       4903 King James Version Bible
4904       4904 King James Version Bible
4905       4905 King James Version Bible
4906       4906 King James Version Bible
4907       4907 King James Version Bible
4908       4908 King James Version Bible
4909       4909 King James Version Bible
4910       4910 King James Version Bible
4911       4911 King James Version Bible
4912       4912 King James Version Bible
4913       4913 King James Version Bible
4914       4914 King James Version Bible
4915       4915 King James Version Bible
4916       4916 King James Version Bible
4917       4917 King James Version Bible
4918       4918 King James Version Bible
4919       4919 King James Version Bible
4920       4920 King James Version Bible
4921       4921 King James Version Bible
4922       4922 King James Version Bible
4923       4923 King James Version Bible
4924       4924 King James Version Bible
4925       4925 King James Version Bible
4926       4926 King James Version Bible
4927       4927 King James Version Bible
4928       4928 King James Version Bible
4929       4929 King James Version Bible
4930       4930 King James Version Bible
4931       4931 King James Version Bible
4932       4932 King James Version Bible
4933       4933 King James Version Bible
4934       4934 King James Version Bible
4935       4935 King James Version Bible
4936       4936 King James Version Bible
4937       4937 King James Version Bible
4938       4938 King James Version Bible
4939       4939 King James Version Bible
4940       4940 King James Version Bible
4941       4941 King James Version Bible
4942       4942 King James Version Bible
4943       4943 King James Version Bible
4944       4944 King James Version Bible
4945       4945 King James Version Bible
4946       4946 King James Version Bible
4947       4947 King James Version Bible
4948       4948 King James Version Bible
4949       4949 King James Version Bible
4950       4950 King James Version Bible
4951       4951 King James Version Bible
4952       4952 King James Version Bible
4953       4953 King James Version Bible
4954       4954 King James Version Bible
4955       4955 King James Version Bible
4956       4956 King James Version Bible
4957       4957 King James Version Bible
4958       4958 King James Version Bible
4959       4959 King James Version Bible
4960       4960 King James Version Bible
4961       4961 King James Version Bible
4962       4962 King James Version Bible
4963       4963 King James Version Bible
4964       4964 King James Version Bible
4965       4965 King James Version Bible
4966       4966 King James Version Bible
4967       4967 King James Version Bible
4968       4968 King James Version Bible
4969       4969 King James Version Bible
4970       4970 King James Version Bible
4971       4971 King James Version Bible
4972       4972 King James Version Bible
4973       4973 King James Version Bible
4974       4974 King James Version Bible
4975       4975 King James Version Bible
4976       4976 King James Version Bible
4977       4977 King James Version Bible
4978       4978 King James Version Bible
4979       4979 King James Version Bible
4980       4980 King James Version Bible
4981       4981 King James Version Bible
4982       4982 King James Version Bible
4983       4983 King James Version Bible
4984       4984 King James Version Bible
4985       4985 King James Version Bible
4986       4986 King James Version Bible
4987       4987 King James Version Bible
4988       4988 King James Version Bible
4989       4989 King James Version Bible
4990       4990 King James Version Bible
4991       4991 King James Version Bible
4992       4992 King James Version Bible
4993       4993 King James Version Bible
4994       4994 King James Version Bible
4995       4995 King James Version Bible
4996       4996 King James Version Bible
4997       4997 King James Version Bible
4998       4998 King James Version Bible
4999       4999 King James Version Bible
5000       5000 King James Version Bible
5001       5001 King James Version Bible
5002       5002 King James Version Bible
5003       5003 King James Version Bible
5004       5004 King James Version Bible
5005       5005 King James Version Bible
5006       5006 King James Version Bible
5007       5007 King James Version Bible
5008       5008 King James Version Bible
5009       5009 King James Version Bible
5010       5010 King James Version Bible
5011       5011 King James Version Bible
5012       5012 King James Version Bible
5013       5013 King James Version Bible
5014       5014 King James Version Bible
5015       5015 King James Version Bible
5016       5016 King James Version Bible
5017       5017 King James Version Bible
5018       5018 King James Version Bible
5019       5019 King James Version Bible
5020       5020 King James Version Bible
5021       5021 King James Version Bible
5022       5022 King James Version Bible
5023       5023 King James Version Bible
5024       5024 King James Version Bible
5025       5025 King James Version Bible
5026       5026 King James Version Bible
5027       5027 King James Version Bible
5028       5028 King James Version Bible
5029       5029 King James Version Bible
5030       5030 King James Version Bible
5031       5031 King James Version Bible
5032       5032 King James Version Bible
5033       5033 King James Version Bible
5034       5034 King James Version Bible
5035       5035 King James Version Bible
5036       5036 King James Version Bible
5037       5037 King James Version Bible
5038       5038 King James Version Bible
5039       5039 King James Version Bible
5040       5040 King James Version Bible
5041       5041 King James Version Bible
5042       5042 King James Version Bible
5043       5043 King James Version Bible
5044       5044 King James Version Bible
5045       5045 King James Version Bible
5046       5046 King James Version Bible
5047       5047 King James Version Bible
5048       5048 King James Version Bible
5049       5049 King James Version Bible
5050       5050 King James Version Bible
5051       5051 King James Version Bible
5052       5052 King James Version Bible
5053       5053 King James Version Bible
5054       5054 King James Version Bible
5055       5055 King James Version Bible
5056       5056 King James Version Bible
5057       5057 King James Version Bible
5058       5058 King James Version Bible
5059       5059 King James Version Bible
5060       5060 King James Version Bible
5061       5061 King James Version Bible
5062       5062 King James Version Bible
5063       5063 King James Version Bible
5064       5064 King James Version Bible
5065       5065 King James Version Bible
5066       5066 King James Version Bible
5067       5067 King James Version Bible
5068       5068 King James Version Bible
5069       5069 King James Version Bible
5070       5070 King James Version Bible
5071       5071 King James Version Bible
5072       5072 King James Version Bible
5073       5073 King James Version Bible
5074       5074 King James Version Bible
5075       5075 King James Version Bible
5076       5076 King James Version Bible
5077       5077 King James Version Bible
5078       5078 King James Version Bible
5079       5079 King James Version Bible
5080       5080 King James Version Bible
5081       5081 King James Version Bible
5082       5082 King James Version Bible
5083       5083 King James Version Bible
5084       5084 King James Version Bible
5085       5085 King James Version Bible
5086       5086 King James Version Bible
5087       5087 King James Version Bible
5088       5088 King James Version Bible
5089       5089 King James Version Bible
5090       5090 King James Version Bible
5091       5091 King James Version Bible
5092       5092 King James Version Bible
5093       5093 King James Version Bible
5094       5094 King James Version Bible
5095       5095 King James Version Bible
5096       5096 King James Version Bible
5097       5097 King James Version Bible
5098       5098 King James Version Bible
5099       5099 King James Version Bible
5100       5100 King James Version Bible
5101       5101 King James Version Bible
5102       5102 King James Version Bible
5103       5103 King James Version Bible
5104       5104 King James Version Bible
5105       5105 King James Version Bible
5106       5106 King James Version Bible
5107       5107 King James Version Bible
5108       5108 King James Version Bible
5109       5109 King James Version Bible
5110       5110 King James Version Bible
5111       5111 King James Version Bible
5112       5112 King James Version Bible
5113       5113 King James Version Bible
5114       5114 King James Version Bible
5115       5115 King James Version Bible
5116       5116 King James Version Bible
5117       5117 King James Version Bible
5118       5118 King James Version Bible
5119       5119 King James Version Bible
5120       5120 King James Version Bible
5121       5121 King James Version Bible
5122       5122 King James Version Bible
5123       5123 King James Version Bible
5124       5124 King James Version Bible
5125       5125 King James Version Bible
5126       5126 King James Version Bible
5127       5127 King James Version Bible
5128       5128 King James Version Bible
5129       5129 King James Version Bible
5130       5130 King James Version Bible
5131       5131 King James Version Bible
5132       5132 King James Version Bible
5133       5133 King James Version Bible
5134       5134 King James Version Bible
5135       5135 King James Version Bible
5136       5136 King James Version Bible
5137       5137 King James Version Bible
5138       5138 King James Version Bible
5139       5139 King James Version Bible
5140       5140 King James Version Bible
5141       5141 King James Version Bible
5142       5142 King James Version Bible
5143       5143 King James Version Bible
5144       5144 King James Version Bible
5145       5145 King James Version Bible
5146       5146 King James Version Bible
5147       5147 King James Version Bible
5148       5148 King James Version Bible
5149       5149 King James Version Bible
5150       5150 King James Version Bible
5151       5151 King James Version Bible
5152       5152 King James Version Bible
5153       5153 King James Version Bible
5154       5154 King James Version Bible
5155       5155 King James Version Bible
5156       5156 King James Version Bible
5157       5157 King James Version Bible
5158       5158 King James Version Bible
5159       5159 King James Version Bible
5160       5160 King James Version Bible
5161       5161 King James Version Bible
5162       5162 King James Version Bible
5163       5163 King James Version Bible
5164       5164 King James Version Bible
5165       5165 King James Version Bible
5166       5166 King James Version Bible
5167       5167 King James Version Bible
5168       5168 King James Version Bible
5169       5169 King James Version Bible
5170       5170 King James Version Bible
5171       5171 King James Version Bible
5172       5172 King James Version Bible
5173       5173 King James Version Bible
5174       5174 King James Version Bible
5175       5175 King James Version Bible
5176       5176 King James Version Bible
5177       5177 King James Version Bible
5178       5178 King James Version Bible
5179       5179 King James Version Bible
5180       5180 King James Version Bible
5181       5181 King James Version Bible
5182       5182 King James Version Bible
5183       5183 King James Version Bible
5184       5184 King James Version Bible
5185       5185 King James Version Bible
5186       5186 King James Version Bible
5187       5187 King James Version Bible
5188       5188 King James Version Bible
5189       5189 King James Version Bible
5190       5190 King James Version Bible
5191       5191 King James Version Bible
5192       5192 King James Version Bible
5193       5193 King James Version Bible
5194       5194 King James Version Bible
5195       5195 King James Version Bible
5196       5196 King James Version Bible
5197       5197 King James Version Bible
5198       5198 King James Version Bible
5199       5199 King James Version Bible
5200       5200 King James Version Bible
5201       5201 King James Version Bible
5202       5202 King James Version Bible
5203       5203 King James Version Bible
5204       5204 King James Version Bible
5205       5205 King James Version Bible
5206       5206 King James Version Bible
5207       5207 King James Version Bible
5208       5208 King James Version Bible
5209       5209 King James Version Bible
5210       5210 King James Version Bible
5211       5211 King James Version Bible
5212       5212 King James Version Bible
5213       5213 King James Version Bible
5214       5214 King James Version Bible
5215       5215 King James Version Bible
5216       5216 King James Version Bible
5217       5217 King James Version Bible
5218       5218 King James Version Bible
5219       5219 King James Version Bible
5220       5220 King James Version Bible
5221       5221 King James Version Bible
5222       5222 King James Version Bible
5223       5223 King James Version Bible
5224       5224 King James Version Bible
5225       5225 King James Version Bible
5226       5226 King James Version Bible
5227       5227 King James Version Bible
5228       5228 King James Version Bible
5229       5229 King James Version Bible
5230       5230 King James Version Bible
5231       5231 King James Version Bible
5232       5232 King James Version Bible
5233       5233 King James Version Bible
5234       5234 King James Version Bible
5235       5235 King James Version Bible
5236       5236 King James Version Bible
5237       5237 King James Version Bible
5238       5238 King James Version Bible
5239       5239 King James Version Bible
5240       5240 King James Version Bible
5241       5241 King James Version Bible
5242       5242 King James Version Bible
5243       5243 King James Version Bible
5244       5244 King James Version Bible
5245       5245 King James Version Bible
5246       5246 King James Version Bible
5247       5247 King James Version Bible
5248       5248 King James Version Bible
5249       5249 King James Version Bible
5250       5250 King James Version Bible
5251       5251 King James Version Bible
5252       5252 King James Version Bible
5253       5253 King James Version Bible
5254       5254 King James Version Bible
5255       5255 King James Version Bible
5256       5256 King James Version Bible
5257       5257 King James Version Bible
5258       5258 King James Version Bible
5259       5259 King James Version Bible
5260       5260 King James Version Bible
5261       5261 King James Version Bible
5262       5262 King James Version Bible
5263       5263 King James Version Bible
5264       5264 King James Version Bible
5265       5265 King James Version Bible
5266       5266 King James Version Bible
5267       5267 King James Version Bible
5268       5268 King James Version Bible
5269       5269 King James Version Bible
5270       5270 King James Version Bible
5271       5271 King James Version Bible
5272       5272 King James Version Bible
5273       5273 King James Version Bible
5274       5274 King James Version Bible
5275       5275 King James Version Bible
5276       5276 King James Version Bible
5277       5277 King James Version Bible
5278       5278 King James Version Bible
5279       5279 King James Version Bible
5280       5280 King James Version Bible
5281       5281 King James Version Bible
5282       5282 King James Version Bible
5283       5283 King James Version Bible
5284       5284 King James Version Bible
5285       5285 King James Version Bible
5286       5286 King James Version Bible
5287       5287 King James Version Bible
5288       5288 King James Version Bible
5289       5289 King James Version Bible
5290       5290 King James Version Bible
5291       5291 King James Version Bible
5292       5292 King James Version Bible
5293       5293 King James Version Bible
5294       5294 King James Version Bible
5295       5295 King James Version Bible
5296       5296 King James Version Bible
5297       5297 King James Version Bible
5298       5298 King James Version Bible
5299       5299 King James Version Bible
5300       5300 King James Version Bible
5301       5301 King James Version Bible
5302       5302 King James Version Bible
5303       5303 King James Version Bible
5304       5304 King James Version Bible
5305       5305 King James Version Bible
5306       5306 King James Version Bible
5307       5307 King James Version Bible
5308       5308 King James Version Bible
5309       5309 King James Version Bible
5310       5310 King James Version Bible
5311       5311 King James Version Bible
5312       5312 King James Version Bible
5313       5313 King James Version Bible
5314       5314 King James Version Bible
5315       5315 King James Version Bible
5316       5316 King James Version Bible
5317       5317 King James Version Bible
5318       5318 King James Version Bible
5319       5319 King James Version Bible
5320       5320 King James Version Bible
5321       5321 King James Version Bible
5322       5322 King James Version Bible
5323       5323 King James Version Bible
5324       5324 King James Version Bible
5325       5325 King James Version Bible
5326       5326 King James Version Bible
5327       5327 King James Version Bible
5328       5328 King James Version Bible
5329       5329 King James Version Bible
5330       5330 King James Version Bible
5331       5331 King James Version Bible
5332       5332 King James Version Bible
5333       5333 King James Version Bible
5334       5334 King James Version Bible
5335       5335 King James Version Bible
5336       5336 King James Version Bible
5337       5337 King James Version Bible
5338       5338 King James Version Bible
5339       5339 King James Version Bible
5340       5340 King James Version Bible
5341       5341 King James Version Bible
5342       5342 King James Version Bible
5343       5343 King James Version Bible
5344       5344 King James Version Bible
5345       5345 King James Version Bible
5346       5346 King James Version Bible
5347       5347 King James Version Bible
5348       5348 King James Version Bible
5349       5349 King James Version Bible
5350       5350 King James Version Bible
5351       5351 King James Version Bible
5352       5352 King James Version Bible
5353       5353 King James Version Bible
5354       5354 King James Version Bible
5355       5355 King James Version Bible
5356       5356 King James Version Bible
5357       5357 King James Version Bible
5358       5358 King James Version Bible
5359       5359 King James Version Bible
5360       5360 King James Version Bible
5361       5361 King James Version Bible
5362       5362 King James Version Bible
5363       5363 King James Version Bible
5364       5364 King James Version Bible
5365       5365 King James Version Bible
5366       5366 King James Version Bible
5367       5367 King James Version Bible
5368       5368 King James Version Bible
5369       5369 King James Version Bible
5370       5370 King James Version Bible
5371       5371 King James Version Bible
5372       5372 King James Version Bible
5373       5373 King James Version Bible
5374       5374 King James Version Bible
5375       5375 King James Version Bible
5376       5376 King James Version Bible
5377       5377 King James Version Bible
5378       5378 King James Version Bible
5379       5379 King James Version Bible
5380       5380 King James Version Bible
5381       5381 King James Version Bible
5382       5382 King James Version Bible
5383       5383 King James Version Bible
5384       5384 King James Version Bible
5385       5385 King James Version Bible
5386       5386 King James Version Bible
5387       5387 King James Version Bible
5388       5388 King James Version Bible
5389       5389 King James Version Bible
5390       5390 King James Version Bible
5391       5391 King James Version Bible
5392       5392 King James Version Bible
5393       5393 King James Version Bible
5394       5394 King James Version Bible
5395       5395 King James Version Bible
5396       5396 King James Version Bible
5397       5397 King James Version Bible
5398       5398 King James Version Bible
5399       5399 King James Version Bible
5400       5400 King James Version Bible
5401       5401 King James Version Bible
5402       5402 King James Version Bible
5403       5403 King James Version Bible
5404       5404 King James Version Bible
5405       5405 King James Version Bible
5406       5406 King James Version Bible
5407       5407 King James Version Bible
5408       5408 King James Version Bible
5409       5409 King James Version Bible
5410       5410 King James Version Bible
5411       5411 King James Version Bible
5412       5412 King James Version Bible
5413       5413 King James Version Bible
5414       5414 King James Version Bible
5415       5415 King James Version Bible
5416       5416 King James Version Bible
5417       5417 King James Version Bible
5418       5418 King James Version Bible
5419       5419 King James Version Bible
5420       5420 King James Version Bible
5421       5421 King James Version Bible
5422       5422 King James Version Bible
5423       5423 King James Version Bible
5424       5424 King James Version Bible
5425       5425 King James Version Bible
5426       5426 King James Version Bible
5427       5427 King James Version Bible
5428       5428 King James Version Bible
5429       5429 King James Version Bible
5430       5430 King James Version Bible
5431       5431 King James Version Bible
5432       5432 King James Version Bible
5433       5433 King James Version Bible
5434       5434 King James Version Bible
5435       5435 King James Version Bible
5436       5436 King James Version Bible
5437       5437 King James Version Bible
5438       5438 King James Version Bible
5439       5439 King James Version Bible
5440       5440 King James Version Bible
5441       5441 King James Version Bible
5442       5442 King James Version Bible
5443       5443 King James Version Bible
5444       5444 King James Version Bible
5445       5445 King James Version Bible
5446       5446 King James Version Bible
5447       5447 King James Version Bible
5448       5448 King James Version Bible
5449       5449 King James Version Bible
5450       5450 King James Version Bible
5451       5451 King James Version Bible
5452       5452 King James Version Bible
5453       5453 King James Version Bible
5454       5454 King James Version Bible
5455       5455 King James Version Bible
5456       5456 King James Version Bible
5457       5457 King James Version Bible
5458       5458 King James Version Bible
5459       5459 King James Version Bible
5460       5460 King James Version Bible
5461       5461 King James Version Bible
5462       5462 King James Version Bible
5463       5463 King James Version Bible
5464       5464 King James Version Bible
5465       5465 King James Version Bible
5466       5466 King James Version Bible
5467       5467 King James Version Bible
5468       5468 King James Version Bible
5469       5469 King James Version Bible
5470       5470 King James Version Bible
5471       5471 King James Version Bible
5472       5472 King James Version Bible
5473       5473 King James Version Bible
5474       5474 King James Version Bible
5475       5475 King James Version Bible
5476       5476 King James Version Bible
5477       5477 King James Version Bible
5478       5478 King James Version Bible
5479       5479 King James Version Bible
5480       5480 King James Version Bible
5481       5481 King James Version Bible
5482       5482 King James Version Bible
5483       5483 King James Version Bible
5484       5484 King James Version Bible
5485       5485 King James Version Bible
5486       5486 King James Version Bible
5487       5487 King James Version Bible
5488       5488 King James Version Bible
5489       5489 King James Version Bible
5490       5490 King James Version Bible
5491       5491 King James Version Bible
5492       5492 King James Version Bible
5493       5493 King James Version Bible
5494       5494 King James Version Bible
5495       5495 King James Version Bible
5496       5496 King James Version Bible
5497       5497 King James Version Bible
5498       5498 King James Version Bible
5499       5499 King James Version Bible
5500       5500 King James Version Bible
5501       5501 King James Version Bible
5502       5502 King James Version Bible
5503       5503 King James Version Bible
5504       5504 King James Version Bible
5505       5505 King James Version Bible
5506       5506 King James Version Bible
5507       5507 King James Version Bible
5508       5508 King James Version Bible
5509       5509 King James Version Bible
5510       5510 King James Version Bible
5511       5511 King James Version Bible
5512       5512 King James Version Bible
5513       5513 King James Version Bible
5514       5514 King James Version Bible
5515       5515 King James Version Bible
5516       5516 King James Version Bible
5517       5517 King James Version Bible
5518       5518 King James Version Bible
5519       5519 King James Version Bible
5520       5520 King James Version Bible
5521       5521 King James Version Bible
5522       5522 King James Version Bible
5523       5523 King James Version Bible
5524       5524 King James Version Bible
5525       5525 King James Version Bible
5526       5526 King James Version Bible
5527       5527 King James Version Bible
5528       5528 King James Version Bible
5529       5529 King James Version Bible
5530       5530 King James Version Bible
5531       5531 King James Version Bible
5532       5532 King James Version Bible
5533       5533 King James Version Bible
5534       5534 King James Version Bible
5535       5535 King James Version Bible
5536       5536 King James Version Bible
5537       5537 King James Version Bible
5538       5538 King James Version Bible
5539       5539 King James Version Bible
5540       5540 King James Version Bible
5541       5541 King James Version Bible
5542       5542 King James Version Bible
5543       5543 King James Version Bible
5544       5544 King James Version Bible
5545       5545 King James Version Bible
5546       5546 King James Version Bible
5547       5547 King James Version Bible
5548       5548 King James Version Bible
5549       5549 King James Version Bible
5550       5550 King James Version Bible
5551       5551 King James Version Bible
5552       5552 King James Version Bible
5553       5553 King James Version Bible
5554       5554 King James Version Bible
5555       5555 King James Version Bible
5556       5556 King James Version Bible
5557       5557 King James Version Bible
5558       5558 King James Version Bible
5559       5559 King James Version Bible
5560       5560 King James Version Bible
5561       5561 King James Version Bible
5562       5562 King James Version Bible
5563       5563 King James Version Bible
5564       5564 King James Version Bible
5565       5565 King James Version Bible
5566       5566 King James Version Bible
5567       5567 King James Version Bible
5568       5568 King James Version Bible
5569       5569 King James Version Bible
5570       5570 King James Version Bible
5571       5571 King James Version Bible
5572       5572 King James Version Bible
5573       5573 King James Version Bible
5574       5574 King James Version Bible
5575       5575 King James Version Bible
5576       5576 King James Version Bible
5577       5577 King James Version Bible
5578       5578 King James Version Bible
5579       5579 King James Version Bible
5580       5580 King James Version Bible
5581       5581 King James Version Bible
5582       5582 King James Version Bible
5583       5583 King James Version Bible
5584       5584 King James Version Bible
5585       5585 King James Version Bible
5586       5586 King James Version Bible
5587       5587 King James Version Bible
5588       5588 King James Version Bible
5589       5589 King James Version Bible
5590       5590 King James Version Bible
5591       5591 King James Version Bible
5592       5592 King James Version Bible
5593       5593 King James Version Bible
5594       5594 King James Version Bible
5595       5595 King James Version Bible
5596       5596 King James Version Bible
5597       5597 King James Version Bible
5598       5598 King James Version Bible
5599       5599 King James Version Bible
5600       5600 King James Version Bible
5601       5601 King James Version Bible
5602       5602 King James Version Bible
5603       5603 King James Version Bible
5604       5604 King James Version Bible
5605       5605 King James Version Bible
5606       5606 King James Version Bible
5607       5607 King James Version Bible
5608       5608 King James Version Bible
5609       5609 King James Version Bible
5610       5610 King James Version Bible
5611       5611 King James Version Bible
5612       5612 King James Version Bible
5613       5613 King James Version Bible
5614       5614 King James Version Bible
5615       5615 King James Version Bible
5616       5616 King James Version Bible
5617       5617 King James Version Bible
5618       5618 King James Version Bible
5619       5619 King James Version Bible
5620       5620 King James Version Bible
5621       5621 King James Version Bible
5622       5622 King James Version Bible
5623       5623 King James Version Bible
5624       5624 King James Version Bible
5625       5625 King James Version Bible
5626       5626 King James Version Bible
5627       5627 King James Version Bible
5628       5628 King James Version Bible
5629       5629 King James Version Bible
5630       5630 King James Version Bible
5631       5631 King James Version Bible
5632       5632 King James Version Bible
5633       5633 King James Version Bible
5634       5634 King James Version Bible
5635       5635 King James Version Bible
5636       5636 King James Version Bible
5637       5637 King James Version Bible
5638       5638 King James Version Bible
5639       5639 King James Version Bible
5640       5640 King James Version Bible
5641       5641 King James Version Bible
5642       5642 King James Version Bible
5643       5643 King James Version Bible
5644       5644 King James Version Bible
5645       5645 King James Version Bible
5646       5646 King James Version Bible
5647       5647 King James Version Bible
5648       5648 King James Version Bible
5649       5649 King James Version Bible
5650       5650 King James Version Bible
5651       5651 King James Version Bible
5652       5652 King James Version Bible
5653       5653 King James Version Bible
5654       5654 King James Version Bible
5655       5655 King James Version Bible
5656       5656 King James Version Bible
5657       5657 King James Version Bible
5658       5658 King James Version Bible
5659       5659 King James Version Bible
5660       5660 King James Version Bible
5661       5661 King James Version Bible
5662       5662 King James Version Bible
5663       5663 King James Version Bible
5664       5664 King James Version Bible
5665       5665 King James Version Bible
5666       5666 King James Version Bible
5667       5667 King James Version Bible
5668       5668 King James Version Bible
5669       5669 King James Version Bible
5670       5670 King James Version Bible
5671       5671 King James Version Bible
5672       5672 King James Version Bible
5673       5673 King James Version Bible
5674       5674 King James Version Bible
5675       5675 King James Version Bible
5676       5676 King James Version Bible
5677       5677 King James Version Bible
5678       5678 King James Version Bible
5679       5679 King James Version Bible
5680       5680 King James Version Bible
5681       5681 King James Version Bible
5682       5682 King James Version Bible
5683       5683 King James Version Bible
5684       5684 King James Version Bible
5685       5685 King James Version Bible
5686       5686 King James Version Bible
5687       5687 King James Version Bible
5688       5688 King James Version Bible
5689       5689 King James Version Bible
5690       5690 King James Version Bible
5691       5691 King James Version Bible
5692       5692 King James Version Bible
5693       5693 King James Version Bible
5694       5694 King James Version Bible
5695       5695 King James Version Bible
5696       5696 King James Version Bible
5697       5697 King James Version Bible
5698       5698 King James Version Bible
5699       5699 King James Version Bible
5700       5700 King James Version Bible
5701       5701 King James Version Bible
5702       5702 King James Version Bible
5703       5703 King James Version Bible
5704       5704 King James Version Bible
5705       5705 King James Version Bible
5706       5706 King James Version Bible
5707       5707 King James Version Bible
5708       5708 King James Version Bible
5709       5709 King James Version Bible
5710       5710 King James Version Bible
5711       5711 King James Version Bible
5712       5712 King James Version Bible
5713       5713 King James Version Bible
5714       5714 King James Version Bible
5715       5715 King James Version Bible
5716       5716 King James Version Bible
5717       5717 King James Version Bible
5718       5718 King James Version Bible
5719       5719 King James Version Bible
5720       5720 King James Version Bible
5721       5721 King James Version Bible
5722       5722 King James Version Bible
5723       5723 King James Version Bible
5724       5724 King James Version Bible
5725       5725 King James Version Bible
5726       5726 King James Version Bible
5727       5727 King James Version Bible
5728       5728 King James Version Bible
5729       5729 King James Version Bible
5730       5730 King James Version Bible
5731       5731 King James Version Bible
5732       5732 King James Version Bible
5733       5733 King James Version Bible
5734       5734 King James Version Bible
5735       5735 King James Version Bible
5736       5736 King James Version Bible
5737       5737 King James Version Bible
5738       5738 King James Version Bible
5739       5739 King James Version Bible
5740       5740 King James Version Bible
5741       5741 King James Version Bible
5742       5742 King James Version Bible
5743       5743 King James Version Bible
5744       5744 King James Version Bible
5745       5745 King James Version Bible
5746       5746 King James Version Bible
5747       5747 King James Version Bible
5748       5748 King James Version Bible
5749       5749 King James Version Bible
5750       5750 King James Version Bible
5751       5751 King James Version Bible
5752       5752 King James Version Bible
5753       5753 King James Version Bible
5754       5754 King James Version Bible
5755       5755 King James Version Bible
5756       5756 King James Version Bible
5757       5757 King James Version Bible
5758       5758 King James Version Bible
5759       5759 King James Version Bible
5760       5760 King James Version Bible
5761       5761 King James Version Bible
5762       5762 King James Version Bible
5763       5763 King James Version Bible
5764       5764 King James Version Bible
5765       5765 King James Version Bible
5766       5766 King James Version Bible
5767       5767 King James Version Bible
5768       5768 King James Version Bible
5769       5769 King James Version Bible
5770       5770 King James Version Bible
5771       5771 King James Version Bible
5772       5772 King James Version Bible
5773       5773 King James Version Bible
5774       5774 King James Version Bible
5775       5775 King James Version Bible
5776       5776 King James Version Bible
5777       5777 King James Version Bible
5778       5778 King James Version Bible
5779       5779 King James Version Bible
5780       5780 King James Version Bible
5781       5781 King James Version Bible
5782       5782 King James Version Bible
5783       5783 King James Version Bible
5784       5784 King James Version Bible
5785       5785 King James Version Bible
5786       5786 King James Version Bible
5787       5787 King James Version Bible
5788       5788 King James Version Bible
5789       5789 King James Version Bible
5790       5790 King James Version Bible
5791       5791 King James Version Bible
5792       5792 King James Version Bible
5793       5793 King James Version Bible
5794       5794 King James Version Bible
5795       5795 King James Version Bible
5796       5796 King James Version Bible
5797       5797 King James Version Bible
5798       5798 King James Version Bible
5799       5799 King James Version Bible
5800       5800 King James Version Bible
5801       5801 King James Version Bible
5802       5802 King James Version Bible
5803       5803 King James Version Bible
5804       5804 King James Version Bible
5805       5805 King James Version Bible
5806       5806 King James Version Bible
5807       5807 King James Version Bible
5808       5808 King James Version Bible
5809       5809 King James Version Bible
5810       5810 King James Version Bible
5811       5811 King James Version Bible
5812       5812 King James Version Bible
5813       5813 King James Version Bible
5814       5814 King James Version Bible
5815       5815 King James Version Bible
5816       5816 King James Version Bible
5817       5817 King James Version Bible
5818       5818 King James Version Bible
5819       5819 King James Version Bible
5820       5820 King James Version Bible
5821       5821 King James Version Bible
5822       5822 King James Version Bible
5823       5823 King James Version Bible
5824       5824 King James Version Bible
5825       5825 King James Version Bible
5826       5826 King James Version Bible
5827       5827 King James Version Bible
5828       5828 King James Version Bible
5829       5829 King James Version Bible
5830       5830 King James Version Bible
5831       5831 King James Version Bible
5832       5832 King James Version Bible
5833       5833 King James Version Bible
5834       5834 King James Version Bible
5835       5835 King James Version Bible
5836       5836 King James Version Bible
5837       5837 King James Version Bible
5838       5838 King James Version Bible
5839       5839 King James Version Bible
5840       5840 King James Version Bible
5841       5841 King James Version Bible
5842       5842 King James Version Bible
5843       5843 King James Version Bible
5844       5844 King James Version Bible
5845       5845 King James Version Bible
5846       5846 King James Version Bible
5847       5847 King James Version Bible
5848       5848 King James Version Bible
5849       5849 King James Version Bible
5850       5850 King James Version Bible
5851       5851 King James Version Bible
5852       5852 King James Version Bible
5853       5853 King James Version Bible
5854       5854 King James Version Bible
5855       5855 King James Version Bible
5856       5856 King James Version Bible
5857       5857 King James Version Bible
5858       5858 King James Version Bible
5859       5859 King James Version Bible
5860       5860 King James Version Bible
5861       5861 King James Version Bible
5862       5862 King James Version Bible
5863       5863 King James Version Bible
5864       5864 King James Version Bible
5865       5865 King James Version Bible
5866       5866 King James Version Bible
5867       5867 King James Version Bible
5868       5868 King James Version Bible
5869       5869 King James Version Bible
5870       5870 King James Version Bible
5871       5871 King James Version Bible
5872       5872 King James Version Bible
5873       5873 King James Version Bible
5874       5874 King James Version Bible
5875       5875 King James Version Bible
5876       5876 King James Version Bible
5877       5877 King James Version Bible
5878       5878 King James Version Bible
5879       5879 King James Version Bible
5880       5880 King James Version Bible
5881       5881 King James Version Bible
5882       5882 King James Version Bible
5883       5883 King James Version Bible
5884       5884 King James Version Bible
5885       5885 King James Version Bible
5886       5886 King James Version Bible
5887       5887 King James Version Bible
5888       5888 King James Version Bible
5889       5889 King James Version Bible
5890       5890 King James Version Bible
5891       5891 King James Version Bible
5892       5892 King James Version Bible
5893       5893 King James Version Bible
5894       5894 King James Version Bible
5895       5895 King James Version Bible
5896       5896 King James Version Bible
5897       5897 King James Version Bible
5898       5898 King James Version Bible
5899       5899 King James Version Bible
5900       5900 King James Version Bible
5901       5901 King James Version Bible
5902       5902 King James Version Bible
5903       5903 King James Version Bible
5904       5904 King James Version Bible
5905       5905 King James Version Bible
5906       5906 King James Version Bible
5907       5907 King James Version Bible
5908       5908 King James Version Bible
5909       5909 King James Version Bible
5910       5910 King James Version Bible
5911       5911 King James Version Bible
5912       5912 King James Version Bible
5913       5913 King James Version Bible
5914       5914 King James Version Bible
5915       5915 King James Version Bible
5916       5916 King James Version Bible
5917       5917 King James Version Bible
5918       5918 King James Version Bible
5919       5919 King James Version Bible
5920       5920 King James Version Bible
5921       5921 King James Version Bible
5922       5922 King James Version Bible
5923       5923 King James Version Bible
5924       5924 King James Version Bible
5925       5925 King James Version Bible
5926       5926 King James Version Bible
5927       5927 King James Version Bible
5928       5928 King James Version Bible
5929       5929 King James Version Bible
5930       5930 King James Version Bible
5931       5931 King James Version Bible
5932       5932 King James Version Bible
5933       5933 King James Version Bible
5934       5934 King James Version Bible
5935       5935 King James Version Bible
5936       5936 King James Version Bible
5937       5937 King James Version Bible
5938       5938 King James Version Bible
5939       5939 King James Version Bible
5940       5940 King James Version Bible
5941       5941 King James Version Bible
5942       5942 King James Version Bible
5943       5943 King James Version Bible
5944       5944 King James Version Bible
5945       5945 King James Version Bible
5946       5946 King James Version Bible
5947       5947 King James Version Bible
5948       5948 King James Version Bible
5949       5949 King James Version Bible
5950       5950 King James Version Bible
5951       5951 King James Version Bible
5952       5952 King James Version Bible
5953       5953 King James Version Bible
5954       5954 King James Version Bible
5955       5955 King James Version Bible
5956       5956 King James Version Bible
5957       5957 King James Version Bible
5958       5958 King James Version Bible
5959       5959 King James Version Bible
5960       5960 King James Version Bible
5961       5961 King James Version Bible
5962       5962 King James Version Bible
5963       5963 King James Version Bible
5964       5964 King James Version Bible
5965       5965 King James Version Bible
5966       5966 King James Version Bible
5967       5967 King James Version Bible
5968       5968 King James Version Bible
5969       5969 King James Version Bible
5970       5970 King James Version Bible
5971       5971 King James Version Bible
5972       5972 King James Version Bible
5973       5973 King James Version Bible
5974       5974 King James Version Bible
5975       5975 King James Version Bible
5976       5976 King James Version Bible
5977       5977 King James Version Bible
5978       5978 King James Version Bible
5979       5979 King James Version Bible
5980       5980 King James Version Bible
5981       5981 King James Version Bible
5982       5982 King James Version Bible
5983       5983 King James Version Bible
5984       5984 King James Version Bible
5985       5985 King James Version Bible
5986       5986 King James Version Bible
5987       5987 King James Version Bible
5988       5988 King James Version Bible
5989       5989 King James Version Bible
5990       5990 King James Version Bible
5991       5991 King James Version Bible
5992       5992 King James Version Bible
5993       5993 King James Version Bible
5994       5994 King James Version Bible
5995       5995 King James Version Bible
5996       5996 King James Version Bible
5997       5997 King James Version Bible
5998       5998 King James Version Bible
5999       5999 King James Version Bible
6000       6000 King James Version Bible
6001       6001 King James Version Bible
6002       6002 King James Version Bible
6003       6003 King James Version Bible
6004       6004 King James Version Bible
6005       6005 King James Version Bible
6006       6006 King James Version Bible
6007       6007 King James Version Bible
6008       6008 King James Version Bible
6009       6009 King James Version Bible
6010       6010 King James Version Bible
6011       6011 King James Version Bible
6012       6012 King James Version Bible
6013       6013 King James Version Bible
6014       6014 King James Version Bible
6015       6015 King James Version Bible
6016       6016 King James Version Bible
6017       6017 King James Version Bible
6018       6018 King James Version Bible
6019       6019 King James Version Bible
6020       6020 King James Version Bible
6021       6021 King James Version Bible
6022       6022 King James Version Bible
6023       6023 King James Version Bible
6024       6024 King James Version Bible
6025       6025 King James Version Bible
6026       6026 King James Version Bible
6027       6027 King James Version Bible
6028       6028 King James Version Bible
6029       6029 King James Version Bible
6030       6030 King James Version Bible
6031       6031 King James Version Bible
6032       6032 King James Version Bible
6033       6033 King James Version Bible
6034       6034 King James Version Bible
6035       6035 King James Version Bible
6036       6036 King James Version Bible
6037       6037 King James Version Bible
6038       6038 King James Version Bible
6039       6039 King James Version Bible
6040       6040 King James Version Bible
6041       6041 King James Version Bible
6042       6042 King James Version Bible
6043       6043 King James Version Bible
6044       6044 King James Version Bible
6045       6045 King James Version Bible
6046       6046 King James Version Bible
6047       6047 King James Version Bible
6048       6048 King James Version Bible
6049       6049 King James Version Bible
6050       6050 King James Version Bible
6051       6051 King James Version Bible
6052       6052 King James Version Bible
6053       6053 King James Version Bible
6054       6054 King James Version Bible
6055       6055 King James Version Bible
6056       6056 King James Version Bible
6057       6057 King James Version Bible
6058       6058 King James Version Bible
6059       6059 King James Version Bible
6060       6060 King James Version Bible
6061       6061 King James Version Bible
6062       6062 King James Version Bible
6063       6063 King James Version Bible
6064       6064 King James Version Bible
6065       6065 King James Version Bible
6066       6066 King James Version Bible
6067       6067 King James Version Bible
6068       6068 King James Version Bible
6069       6069 King James Version Bible
6070       6070 King James Version Bible
6071       6071 King James Version Bible
6072       6072 King James Version Bible
6073       6073 King James Version Bible
6074       6074 King James Version Bible
6075       6075 King James Version Bible
6076       6076 King James Version Bible
6077       6077 King James Version Bible
6078       6078 King James Version Bible
6079       6079 King James Version Bible
6080       6080 King James Version Bible
6081       6081 King James Version Bible
6082       6082 King James Version Bible
6083       6083 King James Version Bible
6084       6084 King James Version Bible
6085       6085 King James Version Bible
6086       6086 King James Version Bible
6087       6087 King James Version Bible
6088       6088 King James Version Bible
6089       6089 King James Version Bible
6090       6090 King James Version Bible
6091       6091 King James Version Bible
6092       6092 King James Version Bible
6093       6093 King James Version Bible
6094       6094 King James Version Bible
6095       6095 King James Version Bible
6096       6096 King James Version Bible
6097       6097 King James Version Bible
6098       6098 King James Version Bible
6099       6099 King James Version Bible
6100       6100 King James Version Bible
6101       6101 King James Version Bible
6102       6102 King James Version Bible
6103       6103 King James Version Bible
6104       6104 King James Version Bible
6105       6105 King James Version Bible
6106       6106 King James Version Bible
6107       6107 King James Version Bible
6108       6108 King James Version Bible
6109       6109 King James Version Bible
6110       6110 King James Version Bible
6111       6111 King James Version Bible
6112       6112 King James Version Bible
6113       6113 King James Version Bible
6114       6114 King James Version Bible
6115       6115 King James Version Bible
6116       6116 King James Version Bible
6117       6117 King James Version Bible
6118       6118 King James Version Bible
6119       6119 King James Version Bible
6120       6120 King James Version Bible
6121       6121 King James Version Bible
6122       6122 King James Version Bible
6123       6123 King James Version Bible
6124       6124 King James Version Bible
6125       6125 King James Version Bible
6126       6126 King James Version Bible
6127       6127 King James Version Bible
6128       6128 King James Version Bible
6129       6129 King James Version Bible
6130       6130 King James Version Bible
6131       6131 King James Version Bible
6132       6132 King James Version Bible
6133       6133 King James Version Bible
6134       6134 King James Version Bible
6135       6135 King James Version Bible
6136       6136 King James Version Bible
6137       6137 King James Version Bible
6138       6138 King James Version Bible
6139       6139 King James Version Bible
6140       6140 King James Version Bible
6141       6141 King James Version Bible
6142       6142 King James Version Bible
6143       6143 King James Version Bible
6144       6144 King James Version Bible
6145       6145 King James Version Bible
6146       6146 King James Version Bible
6147       6147 King James Version Bible
6148       6148 King James Version Bible
6149       6149 King James Version Bible
6150       6150 King James Version Bible
6151       6151 King James Version Bible
6152       6152 King James Version Bible
6153       6153 King James Version Bible
6154       6154 King James Version Bible
6155       6155 King James Version Bible
6156       6156 King James Version Bible
6157       6157 King James Version Bible
6158       6158 King James Version Bible
6159       6159 King James Version Bible
6160       6160 King James Version Bible
6161       6161 King James Version Bible
6162       6162 King James Version Bible
6163       6163 King James Version Bible
6164       6164 King James Version Bible
6165       6165 King James Version Bible
6166       6166 King James Version Bible
6167       6167 King James Version Bible
6168       6168 King James Version Bible
6169       6169 King James Version Bible
6170       6170 King James Version Bible
6171       6171 King James Version Bible
6172       6172 King James Version Bible
6173       6173 King James Version Bible
6174       6174 King James Version Bible
6175       6175 King James Version Bible
6176       6176 King James Version Bible
6177       6177 King James Version Bible
6178       6178 King James Version Bible
6179       6179 King James Version Bible
6180       6180 King James Version Bible
6181       6181 King James Version Bible
6182       6182 King James Version Bible
6183       6183 King James Version Bible
6184       6184 King James Version Bible
6185       6185 King James Version Bible
6186       6186 King James Version Bible
6187       6187 King James Version Bible
6188       6188 King James Version Bible
6189       6189 King James Version Bible
6190       6190 King James Version Bible
6191       6191 King James Version Bible
6192       6192 King James Version Bible
6193       6193 King James Version Bible
6194       6194 King James Version Bible
6195       6195 King James Version Bible
6196       6196 King James Version Bible
6197       6197 King James Version Bible
6198       6198 King James Version Bible
6199       6199 King James Version Bible
6200       6200 King James Version Bible
6201       6201 King James Version Bible
6202       6202 King James Version Bible
6203       6203 King James Version Bible
6204       6204 King James Version Bible
6205       6205 King James Version Bible
6206       6206 King James Version Bible
6207       6207 King James Version Bible
6208       6208 King James Version Bible
6209       6209 King James Version Bible
6210       6210 King James Version Bible
6211       6211 King James Version Bible
6212       6212 King James Version Bible
6213       6213 King James Version Bible
6214       6214 King James Version Bible
6215       6215 King James Version Bible
6216       6216 King James Version Bible
6217       6217 King James Version Bible
6218       6218 King James Version Bible
6219       6219 King James Version Bible
6220       6220 King James Version Bible
6221       6221 King James Version Bible
6222       6222 King James Version Bible
6223       6223 King James Version Bible
6224       6224 King James Version Bible
6225       6225 King James Version Bible
6226       6226 King James Version Bible
6227       6227 King James Version Bible
6228       6228 King James Version Bible
6229       6229 King James Version Bible
6230       6230 King James Version Bible
6231       6231 King James Version Bible
6232       6232 King James Version Bible
6233       6233 King James Version Bible
6234       6234 King James Version Bible
6235       6235 King James Version Bible
6236       6236 King James Version Bible
6237       6237 King James Version Bible
6238       6238 King James Version Bible
6239       6239 King James Version Bible
6240       6240 King James Version Bible
6241       6241 King James Version Bible
6242       6242 King James Version Bible
6243       6243 King James Version Bible
6244       6244 King James Version Bible
6245       6245 King James Version Bible
6246       6246 King James Version Bible
6247       6247 King James Version Bible
6248       6248 King James Version Bible
6249       6249 King James Version Bible
6250       6250 King James Version Bible
6251       6251 King James Version Bible
6252       6252 King James Version Bible
6253       6253 King James Version Bible
6254       6254 King James Version Bible
6255       6255 King James Version Bible
6256       6256 King James Version Bible
6257       6257 King James Version Bible
6258       6258 King James Version Bible
6259       6259 King James Version Bible
6260       6260 King James Version Bible
6261       6261 King James Version Bible
6262       6262 King James Version Bible
6263       6263 King James Version Bible
6264       6264 King James Version Bible
6265       6265 King James Version Bible
6266       6266 King James Version Bible
6267       6267 King James Version Bible
6268       6268 King James Version Bible
6269       6269 King James Version Bible
6270       6270 King James Version Bible
6271       6271 King James Version Bible
6272       6272 King James Version Bible
6273       6273 King James Version Bible
6274       6274 King James Version Bible
6275       6275 King James Version Bible
6276       6276 King James Version Bible
6277       6277 King James Version Bible
6278       6278 King James Version Bible
6279       6279 King James Version Bible
6280       6280 King James Version Bible
6281       6281 King James Version Bible
6282       6282 King James Version Bible
6283       6283 King James Version Bible
6284       6284 King James Version Bible
6285       6285 King James Version Bible
6286       6286 King James Version Bible
6287       6287 King James Version Bible
6288       6288 King James Version Bible
6289       6289 King James Version Bible
6290       6290 King James Version Bible
6291       6291 King James Version Bible
6292       6292 King James Version Bible
6293       6293 King James Version Bible
6294       6294 King James Version Bible
6295       6295 King James Version Bible
6296       6296 King James Version Bible
6297       6297 King James Version Bible
6298       6298 King James Version Bible
6299       6299 King James Version Bible
6300       6300 King James Version Bible
6301       6301 King James Version Bible
6302       6302 King James Version Bible
6303       6303 King James Version Bible
6304       6304 King James Version Bible
6305       6305 King James Version Bible
6306       6306 King James Version Bible
6307       6307 King James Version Bible
6308       6308 King James Version Bible
6309       6309 King James Version Bible
6310       6310 King James Version Bible
6311       6311 King James Version Bible
6312       6312 King James Version Bible
6313       6313 King James Version Bible
6314       6314 King James Version Bible
6315       6315 King James Version Bible
6316       6316 King James Version Bible
6317       6317 King James Version Bible
6318       6318 King James Version Bible
6319       6319 King James Version Bible
6320       6320 King James Version Bible
6321       6321 King James Version Bible
6322       6322 King James Version Bible
6323       6323 King James Version Bible
6324       6324 King James Version Bible
6325       6325 King James Version Bible
6326       6326 King James Version Bible
6327       6327 King James Version Bible
6328       6328 King James Version Bible
6329       6329 King James Version Bible
6330       6330 King James Version Bible
6331       6331 King James Version Bible
6332       6332 King James Version Bible
6333       6333 King James Version Bible
6334       6334 King James Version Bible
6335       6335 King James Version Bible
6336       6336 King James Version Bible
6337       6337 King James Version Bible
6338       6338 King James Version Bible
6339       6339 King James Version Bible
6340       6340 King James Version Bible
6341       6341 King James Version Bible
6342       6342 King James Version Bible
6343       6343 King James Version Bible
6344       6344 King James Version Bible
6345       6345 King James Version Bible
6346       6346 King James Version Bible
6347       6347 King James Version Bible
6348       6348 King James Version Bible
6349       6349 King James Version Bible
6350       6350 King James Version Bible
6351       6351 King James Version Bible
6352       6352 King James Version Bible
6353       6353 King James Version Bible
6354       6354 King James Version Bible
6355       6355 King James Version Bible
6356       6356 King James Version Bible
6357       6357 King James Version Bible
6358       6358 King James Version Bible
6359       6359 King James Version Bible
6360       6360 King James Version Bible
6361       6361 King James Version Bible
6362       6362 King James Version Bible
6363       6363 King James Version Bible
6364       6364 King James Version Bible
6365       6365 King James Version Bible
6366       6366 King James Version Bible
6367       6367 King James Version Bible
6368       6368 King James Version Bible
6369       6369 King James Version Bible
6370       6370 King James Version Bible
6371       6371 King James Version Bible
6372       6372 King James Version Bible
6373       6373 King James Version Bible
6374       6374 King James Version Bible
6375       6375 King James Version Bible
6376       6376 King James Version Bible
6377       6377 King James Version Bible
6378       6378 King James Version Bible
6379       6379 King James Version Bible
6380       6380 King James Version Bible
6381       6381 King James Version Bible
6382       6382 King James Version Bible
6383       6383 King James Version Bible
6384       6384 King James Version Bible
6385       6385 King James Version Bible
6386       6386 King James Version Bible
6387       6387 King James Version Bible
6388       6388 King James Version Bible
6389       6389 King James Version Bible
6390       6390 King James Version Bible
6391       6391 King James Version Bible
6392       6392 King James Version Bible
6393       6393 King James Version Bible
6394       6394 King James Version Bible
6395       6395 King James Version Bible
6396       6396 King James Version Bible
6397       6397 King James Version Bible
6398       6398 King James Version Bible
6399       6399 King James Version Bible
6400       6400 King James Version Bible
6401       6401 King James Version Bible
6402       6402 King James Version Bible
6403       6403 King James Version Bible
6404       6404 King James Version Bible
6405       6405 King James Version Bible
6406       6406 King James Version Bible
6407       6407 King James Version Bible
6408       6408 King James Version Bible
6409       6409 King James Version Bible
6410       6410 King James Version Bible
6411       6411 King James Version Bible
6412       6412 King James Version Bible
6413       6413 King James Version Bible
6414       6414 King James Version Bible
6415       6415 King James Version Bible
6416       6416 King James Version Bible
6417       6417 King James Version Bible
6418       6418 King James Version Bible
6419       6419 King James Version Bible
6420       6420 King James Version Bible
6421       6421 King James Version Bible
6422       6422 King James Version Bible
6423       6423 King James Version Bible
6424       6424 King James Version Bible
6425       6425 King James Version Bible
6426       6426 King James Version Bible
6427       6427 King James Version Bible
6428       6428 King James Version Bible
6429       6429 King James Version Bible
6430       6430 King James Version Bible
6431       6431 King James Version Bible
6432       6432 King James Version Bible
6433       6433 King James Version Bible
6434       6434 King James Version Bible
6435       6435 King James Version Bible
6436       6436 King James Version Bible
6437       6437 King James Version Bible
6438       6438 King James Version Bible
6439       6439 King James Version Bible
6440       6440 King James Version Bible
6441       6441 King James Version Bible
6442       6442 King James Version Bible
6443       6443 King James Version Bible
6444       6444 King James Version Bible
6445       6445 King James Version Bible
6446       6446 King James Version Bible
6447       6447 King James Version Bible
6448       6448 King James Version Bible
6449       6449 King James Version Bible
6450       6450 King James Version Bible
6451       6451 King James Version Bible
6452       6452 King James Version Bible
6453       6453 King James Version Bible
6454       6454 King James Version Bible
6455       6455 King James Version Bible
6456       6456 King James Version Bible
6457       6457 King James Version Bible
6458       6458 King James Version Bible
6459       6459 King James Version Bible
6460       6460 King James Version Bible
6461       6461 King James Version Bible
6462       6462 King James Version Bible
6463       6463 King James Version Bible
6464       6464 King James Version Bible
6465       6465 King James Version Bible
6466       6466 King James Version Bible
6467       6467 King James Version Bible
6468       6468 King James Version Bible
6469       6469 King James Version Bible
6470       6470 King James Version Bible
6471       6471 King James Version Bible
6472       6472 King James Version Bible
6473       6473 King James Version Bible
6474       6474 King James Version Bible
6475       6475 King James Version Bible
6476       6476 King James Version Bible
6477       6477 King James Version Bible
6478       6478 King James Version Bible
6479       6479 King James Version Bible
6480       6480 King James Version Bible
6481       6481 King James Version Bible
6482       6482 King James Version Bible
6483       6483 King James Version Bible
6484       6484 King James Version Bible
6485       6485 King James Version Bible
6486       6486 King James Version Bible
6487       6487 King James Version Bible
6488       6488 King James Version Bible
6489       6489 King James Version Bible
6490       6490 King James Version Bible
6491       6491 King James Version Bible
6492       6492 King James Version Bible
6493       6493 King James Version Bible
6494       6494 King James Version Bible
6495       6495 King James Version Bible
6496       6496 King James Version Bible
6497       6497 King James Version Bible
6498       6498 King James Version Bible
6499       6499 King James Version Bible
6500       6500 King James Version Bible
6501       6501 King James Version Bible
6502       6502 King James Version Bible
6503       6503 King James Version Bible
6504       6504 King James Version Bible
6505       6505 King James Version Bible
6506       6506 King James Version Bible
6507       6507 King James Version Bible
6508       6508 King James Version Bible
6509       6509 King James Version Bible
6510       6510 King James Version Bible
6511       6511 King James Version Bible
6512       6512 King James Version Bible
6513       6513 King James Version Bible
6514       6514 King James Version Bible
6515       6515 King James Version Bible
6516       6516 King James Version Bible
6517       6517 King James Version Bible
6518       6518 King James Version Bible
6519       6519 King James Version Bible
6520       6520 King James Version Bible
6521       6521 King James Version Bible
6522       6522 King James Version Bible
6523       6523 King James Version Bible
6524       6524 King James Version Bible
6525       6525 King James Version Bible
6526       6526 King James Version Bible
6527       6527 King James Version Bible
6528       6528 King James Version Bible
6529       6529 King James Version Bible
6530       6530 King James Version Bible
6531       6531 King James Version Bible
6532       6532 King James Version Bible
6533       6533 King James Version Bible
6534       6534 King James Version Bible
6535       6535 King James Version Bible
6536       6536 King James Version Bible
6537       6537 King James Version Bible
6538       6538 King James Version Bible
6539       6539 King James Version Bible
6540       6540 King James Version Bible
6541       6541 King James Version Bible
6542       6542 King James Version Bible
6543       6543 King James Version Bible
6544       6544 King James Version Bible
6545       6545 King James Version Bible
6546       6546 King James Version Bible
6547       6547 King James Version Bible
6548       6548 King James Version Bible
6549       6549 King James Version Bible
6550       6550 King James Version Bible
6551       6551 King James Version Bible
6552       6552 King James Version Bible
6553       6553 King James Version Bible
6554       6554 King James Version Bible
6555       6555 King James Version Bible
6556       6556 King James Version Bible
6557       6557 King James Version Bible
6558       6558 King James Version Bible
6559       6559 King James Version Bible
6560       6560 King James Version Bible
6561       6561 King James Version Bible
6562       6562 King James Version Bible
6563       6563 King James Version Bible
6564       6564 King James Version Bible
6565       6565 King James Version Bible
6566       6566 King James Version Bible
6567       6567 King James Version Bible
6568       6568 King James Version Bible
6569       6569 King James Version Bible
6570       6570 King James Version Bible
6571       6571 King James Version Bible
6572       6572 King James Version Bible
6573       6573 King James Version Bible
6574       6574 King James Version Bible
6575       6575 King James Version Bible
6576       6576 King James Version Bible
6577       6577 King James Version Bible
6578       6578 King James Version Bible
6579       6579 King James Version Bible
6580       6580 King James Version Bible
6581       6581 King James Version Bible
6582       6582 King James Version Bible
6583       6583 King James Version Bible
6584       6584 King James Version Bible
6585       6585 King James Version Bible
6586       6586 King James Version Bible
6587       6587 King James Version Bible
6588       6588 King James Version Bible
6589       6589 King James Version Bible
6590       6590 King James Version Bible
6591       6591 King James Version Bible
6592       6592 King James Version Bible
6593       6593 King James Version Bible
6594       6594 King James Version Bible
6595       6595 King James Version Bible
6596       6596 King James Version Bible
6597       6597 King James Version Bible
6598       6598 King James Version Bible
6599       6599 King James Version Bible
6600       6600 King James Version Bible
6601       6601 King James Version Bible
6602       6602 King James Version Bible
6603       6603 King James Version Bible
6604       6604 King James Version Bible
6605       6605 King James Version Bible
6606       6606 King James Version Bible
6607       6607 King James Version Bible
6608       6608 King James Version Bible
6609       6609 King James Version Bible
6610       6610 King James Version Bible
6611       6611 King James Version Bible
6612       6612 King James Version Bible
6613       6613 King James Version Bible
6614       6614 King James Version Bible
6615       6615 King James Version Bible
6616       6616 King James Version Bible
6617       6617 King James Version Bible
6618       6618 King James Version Bible
6619       6619 King James Version Bible
6620       6620 King James Version Bible
6621       6621 King James Version Bible
6622       6622 King James Version Bible
6623       6623 King James Version Bible
6624       6624 King James Version Bible
6625       6625 King James Version Bible
6626       6626 King James Version Bible
6627       6627 King James Version Bible
6628       6628 King James Version Bible
6629       6629 King James Version Bible
6630       6630 King James Version Bible
6631       6631 King James Version Bible
6632       6632 King James Version Bible
6633       6633 King James Version Bible
6634       6634 King James Version Bible
6635       6635 King James Version Bible
6636       6636 King James Version Bible
6637       6637 King James Version Bible
6638       6638 King James Version Bible
6639       6639 King James Version Bible
6640       6640 King James Version Bible
6641       6641 King James Version Bible
6642       6642 King James Version Bible
6643       6643 King James Version Bible
6644       6644 King James Version Bible
6645       6645 King James Version Bible
6646       6646 King James Version Bible
6647       6647 King James Version Bible
6648       6648 King James Version Bible
6649       6649 King James Version Bible
6650       6650 King James Version Bible
6651       6651 King James Version Bible
6652       6652 King James Version Bible
6653       6653 King James Version Bible
6654       6654 King James Version Bible
6655       6655 King James Version Bible
6656       6656 King James Version Bible
6657       6657 King James Version Bible
6658       6658 King James Version Bible
6659       6659 King James Version Bible
6660       6660 King James Version Bible
6661       6661 King James Version Bible
6662       6662 King James Version Bible
6663       6663 King James Version Bible
6664       6664 King James Version Bible
6665       6665 King James Version Bible
6666       6666 King James Version Bible
6667       6667 King James Version Bible
6668       6668 King James Version Bible
6669       6669 King James Version Bible
6670       6670 King James Version Bible
6671       6671 King James Version Bible
6672       6672 King James Version Bible
6673       6673 King James Version Bible
6674       6674 King James Version Bible
6675       6675 King James Version Bible
6676       6676 King James Version Bible
6677       6677 King James Version Bible
6678       6678 King James Version Bible
6679       6679 King James Version Bible
6680       6680 King James Version Bible
6681       6681 King James Version Bible
6682       6682 King James Version Bible
6683       6683 King James Version Bible
6684       6684 King James Version Bible
6685       6685 King James Version Bible
6686       6686 King James Version Bible
6687       6687 King James Version Bible
6688       6688 King James Version Bible
6689       6689 King James Version Bible
6690       6690 King James Version Bible
6691       6691 King James Version Bible
6692       6692 King James Version Bible
6693       6693 King James Version Bible
6694       6694 King James Version Bible
6695       6695 King James Version Bible
6696       6696 King James Version Bible
6697       6697 King James Version Bible
6698       6698 King James Version Bible
6699       6699 King James Version Bible
6700       6700 King James Version Bible
6701       6701 King James Version Bible
6702       6702 King James Version Bible
6703       6703 King James Version Bible
6704       6704 King James Version Bible
6705       6705 King James Version Bible
6706       6706 King James Version Bible
6707       6707 King James Version Bible
6708       6708 King James Version Bible
6709       6709 King James Version Bible
6710       6710 King James Version Bible
6711       6711 King James Version Bible
6712       6712 King James Version Bible
6713       6713 King James Version Bible
6714       6714 King James Version Bible
6715       6715 King James Version Bible
6716       6716 King James Version Bible
6717       6717 King James Version Bible
6718       6718 King James Version Bible
6719       6719 King James Version Bible
6720       6720 King James Version Bible
6721       6721 King James Version Bible
6722       6722 King James Version Bible
6723       6723 King James Version Bible
6724       6724 King James Version Bible
6725       6725 King James Version Bible
6726       6726 King James Version Bible
6727       6727 King James Version Bible
6728       6728 King James Version Bible
6729       6729 King James Version Bible
6730       6730 King James Version Bible
6731       6731 King James Version Bible
6732       6732 King James Version Bible
6733       6733 King James Version Bible
6734       6734 King James Version Bible
6735       6735 King James Version Bible
6736       6736 King James Version Bible
6737       6737 King James Version Bible
6738       6738 King James Version Bible
6739       6739 King James Version Bible
6740       6740 King James Version Bible
6741       6741 King James Version Bible
6742       6742 King James Version Bible
6743       6743 King James Version Bible
6744       6744 King James Version Bible
6745       6745 King James Version Bible
6746       6746 King James Version Bible
6747       6747 King James Version Bible
6748       6748 King James Version Bible
6749       6749 King James Version Bible
6750       6750 King James Version Bible
6751       6751 King James Version Bible
6752       6752 King James Version Bible
6753       6753 King James Version Bible
6754       6754 King James Version Bible
6755       6755 King James Version Bible
6756       6756 King James Version Bible
6757       6757 King James Version Bible
6758       6758 King James Version Bible
6759       6759 King James Version Bible
6760       6760 King James Version Bible
6761       6761 King James Version Bible
6762       6762 King James Version Bible
6763       6763 King James Version Bible
6764       6764 King James Version Bible
6765       6765 King James Version Bible
6766       6766 King James Version Bible
6767       6767 King James Version Bible
6768       6768 King James Version Bible
6769       6769 King James Version Bible
6770       6770 King James Version Bible
6771       6771 King James Version Bible
6772       6772 King James Version Bible
6773       6773 King James Version Bible
6774       6774 King James Version Bible
6775       6775 King James Version Bible
6776       6776 King James Version Bible
6777       6777 King James Version Bible
6778       6778 King James Version Bible
6779       6779 King James Version Bible
6780       6780 King James Version Bible
6781       6781 King James Version Bible
6782       6782 King James Version Bible
6783       6783 King James Version Bible
6784       6784 King James Version Bible
6785       6785 King James Version Bible
6786       6786 King James Version Bible
6787       6787 King James Version Bible
6788       6788 King James Version Bible
6789       6789 King James Version Bible
6790       6790 King James Version Bible
6791       6791 King James Version Bible
6792       6792 King James Version Bible
6793       6793 King James Version Bible
6794       6794 King James Version Bible
6795       6795 King James Version Bible
6796       6796 King James Version Bible
6797       6797 King James Version Bible
6798       6798 King James Version Bible
6799       6799 King James Version Bible
6800       6800 King James Version Bible
6801       6801 King James Version Bible
6802       6802 King James Version Bible
6803       6803 King James Version Bible
6804       6804 King James Version Bible
6805       6805 King James Version Bible
6806       6806 King James Version Bible
6807       6807 King James Version Bible
6808       6808 King James Version Bible
6809       6809 King James Version Bible
6810       6810 King James Version Bible
6811       6811 King James Version Bible
6812       6812 King James Version Bible
6813       6813 King James Version Bible
6814       6814 King James Version Bible
6815       6815 King James Version Bible
6816       6816 King James Version Bible
6817       6817 King James Version Bible
6818       6818 King James Version Bible
6819       6819 King James Version Bible
6820       6820 King James Version Bible
6821       6821 King James Version Bible
6822       6822 King James Version Bible
6823       6823 King James Version Bible
6824       6824 King James Version Bible
6825       6825 King James Version Bible
6826       6826 King James Version Bible
6827       6827 King James Version Bible
6828       6828 King James Version Bible
6829       6829 King James Version Bible
6830       6830 King James Version Bible
6831       6831 King James Version Bible
6832       6832 King James Version Bible
6833       6833 King James Version Bible
6834       6834 King James Version Bible
6835       6835 King James Version Bible
6836       6836 King James Version Bible
6837       6837 King James Version Bible
6838       6838 King James Version Bible
6839       6839 King James Version Bible
6840       6840 King James Version Bible
6841       6841 King James Version Bible
6842       6842 King James Version Bible
6843       6843 King James Version Bible
6844       6844 King James Version Bible
6845       6845 King James Version Bible
6846       6846 King James Version Bible
6847       6847 King James Version Bible
6848       6848 King James Version Bible
6849       6849 King James Version Bible
6850       6850 King James Version Bible
6851       6851 King James Version Bible
6852       6852 King James Version Bible
6853       6853 King James Version Bible
6854       6854 King James Version Bible
6855       6855 King James Version Bible
6856       6856 King James Version Bible
6857       6857 King James Version Bible
6858       6858 King James Version Bible
6859       6859 King James Version Bible
6860       6860 King James Version Bible
6861       6861 King James Version Bible
6862       6862 King James Version Bible
6863       6863 King James Version Bible
6864       6864 King James Version Bible
6865       6865 King James Version Bible
6866       6866 King James Version Bible
6867       6867 King James Version Bible
6868       6868 King James Version Bible
6869       6869 King James Version Bible
6870       6870 King James Version Bible
6871       6871 King James Version Bible
6872       6872 King James Version Bible
6873       6873 King James Version Bible
6874       6874 King James Version Bible
6875       6875 King James Version Bible
6876       6876 King James Version Bible
6877       6877 King James Version Bible
6878       6878 King James Version Bible
6879       6879 King James Version Bible
6880       6880 King James Version Bible
6881       6881 King James Version Bible
6882       6882 King James Version Bible
6883       6883 King James Version Bible
6884       6884 King James Version Bible
6885       6885 King James Version Bible
6886       6886 King James Version Bible
6887       6887 King James Version Bible
6888       6888 King James Version Bible
6889       6889 King James Version Bible
6890       6890 King James Version Bible
6891       6891 King James Version Bible
6892       6892 King James Version Bible
6893       6893 King James Version Bible
6894       6894 King James Version Bible
6895       6895 King James Version Bible
6896       6896 King James Version Bible
6897       6897 King James Version Bible
6898       6898 King James Version Bible
6899       6899 King James Version Bible
6900       6900 King James Version Bible
6901       6901 King James Version Bible
6902       6902 King James Version Bible
6903       6903 King James Version Bible
6904       6904 King James Version Bible
6905       6905 King James Version Bible
6906       6906 King James Version Bible
6907       6907 King James Version Bible
6908       6908 King James Version Bible
6909       6909 King James Version Bible
6910       6910 King James Version Bible
6911       6911 King James Version Bible
6912       6912 King James Version Bible
6913       6913 King James Version Bible
6914       6914 King James Version Bible
6915       6915 King James Version Bible
6916       6916 King James Version Bible
6917       6917 King James Version Bible
6918       6918 King James Version Bible
6919       6919 King James Version Bible
6920       6920 King James Version Bible
6921       6921 King James Version Bible
6922       6922 King James Version Bible
6923       6923 King James Version Bible
6924       6924 King James Version Bible
6925       6925 King James Version Bible
6926       6926 King James Version Bible
6927       6927 King James Version Bible
6928       6928 King James Version Bible
6929       6929 King James Version Bible
6930       6930 King James Version Bible
6931       6931 King James Version Bible
6932       6932 King James Version Bible
6933       6933 King James Version Bible
6934       6934 King James Version Bible
6935       6935 King James Version Bible
6936       6936 King James Version Bible
6937       6937 King James Version Bible
6938       6938 King James Version Bible
6939       6939 King James Version Bible
6940       6940 King James Version Bible
6941       6941 King James Version Bible
6942       6942 King James Version Bible
6943       6943 King James Version Bible
6944       6944 King James Version Bible
6945       6945 King James Version Bible
6946       6946 King James Version Bible
6947       6947 King James Version Bible
6948       6948 King James Version Bible
6949       6949 King James Version Bible
6950       6950 King James Version Bible
6951       6951 King James Version Bible
6952       6952 King James Version Bible
6953       6953 King James Version Bible
6954       6954 King James Version Bible
6955       6955 King James Version Bible
6956       6956 King James Version Bible
6957       6957 King James Version Bible
6958       6958 King James Version Bible
6959       6959 King James Version Bible
6960       6960 King James Version Bible
6961       6961 King James Version Bible
6962       6962 King James Version Bible
6963       6963 King James Version Bible
6964       6964 King James Version Bible
6965       6965 King James Version Bible
6966       6966 King James Version Bible
6967       6967 King James Version Bible
6968       6968 King James Version Bible
6969       6969 King James Version Bible
6970       6970 King James Version Bible
6971       6971 King James Version Bible
6972       6972 King James Version Bible
6973       6973 King James Version Bible
6974       6974 King James Version Bible
6975       6975 King James Version Bible
6976       6976 King James Version Bible
6977       6977 King James Version Bible
6978       6978 King James Version Bible
6979       6979 King James Version Bible
6980       6980 King James Version Bible
6981       6981 King James Version Bible
6982       6982 King James Version Bible
6983       6983 King James Version Bible
6984       6984 King James Version Bible
6985       6985 King James Version Bible
6986       6986 King James Version Bible
6987       6987 King James Version Bible
6988       6988 King James Version Bible
6989       6989 King James Version Bible
6990       6990 King James Version Bible
6991       6991 King James Version Bible
6992       6992 King James Version Bible
6993       6993 King James Version Bible
6994       6994 King James Version Bible
6995       6995 King James Version Bible
6996       6996 King James Version Bible
6997       6997 King James Version Bible
6998       6998 King James Version Bible
6999       6999 King James Version Bible
7000       7000 King James Version Bible
7001       7001 King James Version Bible
7002       7002 King James Version Bible
7003       7003 King James Version Bible
7004       7004 King James Version Bible
7005       7005 King James Version Bible
7006       7006 King James Version Bible
7007       7007 King James Version Bible
7008       7008 King James Version Bible
7009       7009 King James Version Bible
7010       7010 King James Version Bible
7011       7011 King James Version Bible
7012       7012 King James Version Bible
7013       7013 King James Version Bible
7014       7014 King James Version Bible
7015       7015 King James Version Bible
7016       7016 King James Version Bible
7017       7017 King James Version Bible
7018       7018 King James Version Bible
7019       7019 King James Version Bible
7020       7020 King James Version Bible
7021       7021 King James Version Bible
7022       7022 King James Version Bible
7023       7023 King James Version Bible
7024       7024 King James Version Bible
7025       7025 King James Version Bible
7026       7026 King James Version Bible
7027       7027 King James Version Bible
7028       7028 King James Version Bible
7029       7029 King James Version Bible
7030       7030 King James Version Bible
7031       7031 King James Version Bible
7032       7032 King James Version Bible
7033       7033 King James Version Bible
7034       7034 King James Version Bible
7035       7035 King James Version Bible
7036       7036 King James Version Bible
7037       7037 King James Version Bible
7038       7038 King James Version Bible
7039       7039 King James Version Bible
7040       7040 King James Version Bible
7041       7041 King James Version Bible
7042       7042 King James Version Bible
7043       7043 King James Version Bible
7044       7044 King James Version Bible
7045       7045 King James Version Bible
7046       7046 King James Version Bible
7047       7047 King James Version Bible
7048       7048 King James Version Bible
7049       7049 King James Version Bible
7050       7050 King James Version Bible
7051       7051 King James Version Bible
7052       7052 King James Version Bible
7053       7053 King James Version Bible
7054       7054 King James Version Bible
7055       7055 King James Version Bible
7056       7056 King James Version Bible
7057       7057 King James Version Bible
7058       7058 King James Version Bible
7059       7059 King James Version Bible
7060       7060 King James Version Bible
7061       7061 King James Version Bible
7062       7062 King James Version Bible
7063       7063 King James Version Bible
7064       7064 King James Version Bible
7065       7065 King James Version Bible
7066       7066 King James Version Bible
7067       7067 King James Version Bible
7068       7068 King James Version Bible
7069       7069 King James Version Bible
7070       7070 King James Version Bible
7071       7071 King James Version Bible
7072       7072 King James Version Bible
7073       7073 King James Version Bible
7074       7074 King James Version Bible
7075       7075 King James Version Bible
7076       7076 King James Version Bible
7077       7077 King James Version Bible
7078       7078 King James Version Bible
7079       7079 King James Version Bible
7080       7080 King James Version Bible
7081       7081 King James Version Bible
7082       7082 King James Version Bible
7083       7083 King James Version Bible
7084       7084 King James Version Bible
7085       7085 King James Version Bible
7086       7086 King James Version Bible
7087       7087 King James Version Bible
7088       7088 King James Version Bible
7089       7089 King James Version Bible
7090       7090 King James Version Bible
7091       7091 King James Version Bible
7092       7092 King James Version Bible
7093       7093 King James Version Bible
7094       7094 King James Version Bible
7095       7095 King James Version Bible
7096       7096 King James Version Bible
7097       7097 King James Version Bible
7098       7098 King James Version Bible
7099       7099 King James Version Bible
7100       7100 King James Version Bible
7101       7101 King James Version Bible
7102       7102 King James Version Bible
7103       7103 King James Version Bible
7104       7104 King James Version Bible
7105       7105 King James Version Bible
7106       7106 King James Version Bible
7107       7107 King James Version Bible
7108       7108 King James Version Bible
7109       7109 King James Version Bible
7110       7110 King James Version Bible
7111       7111 King James Version Bible
7112       7112 King James Version Bible
7113       7113 King James Version Bible
7114       7114 King James Version Bible
7115       7115 King James Version Bible
7116       7116 King James Version Bible
7117       7117 King James Version Bible
7118       7118 King James Version Bible
7119       7119 King James Version Bible
7120       7120 King James Version Bible
7121       7121 King James Version Bible
7122       7122 King James Version Bible
7123       7123 King James Version Bible
7124       7124 King James Version Bible
7125       7125 King James Version Bible
7126       7126 King James Version Bible
7127       7127 King James Version Bible
7128       7128 King James Version Bible
7129       7129 King James Version Bible
7130       7130 King James Version Bible
7131       7131 King James Version Bible
7132       7132 King James Version Bible
7133       7133 King James Version Bible
7134       7134 King James Version Bible
7135       7135 King James Version Bible
7136       7136 King James Version Bible
7137       7137 King James Version Bible
7138       7138 King James Version Bible
7139       7139 King James Version Bible
7140       7140 King James Version Bible
7141       7141 King James Version Bible
7142       7142 King James Version Bible
7143       7143 King James Version Bible
7144       7144 King James Version Bible
7145       7145 King James Version Bible
7146       7146 King James Version Bible
7147       7147 King James Version Bible
7148       7148 King James Version Bible
7149       7149 King James Version Bible
7150       7150 King James Version Bible
7151       7151 King James Version Bible
7152       7152 King James Version Bible
7153       7153 King James Version Bible
7154       7154 King James Version Bible
7155       7155 King James Version Bible
7156       7156 King James Version Bible
7157       7157 King James Version Bible
7158       7158 King James Version Bible
7159       7159 King James Version Bible
7160       7160 King James Version Bible
7161       7161 King James Version Bible
7162       7162 King James Version Bible
7163       7163 King James Version Bible
7164       7164 King James Version Bible
7165       7165 King James Version Bible
7166       7166 King James Version Bible
7167       7167 King James Version Bible
7168       7168 King James Version Bible
7169       7169 King James Version Bible
7170       7170 King James Version Bible
7171       7171 King James Version Bible
7172       7172 King James Version Bible
7173       7173 King James Version Bible
7174       7174 King James Version Bible
7175       7175 King James Version Bible
7176       7176 King James Version Bible
7177       7177 King James Version Bible
7178       7178 King James Version Bible
7179       7179 King James Version Bible
7180       7180 King James Version Bible
7181       7181 King James Version Bible
7182       7182 King James Version Bible
7183       7183 King James Version Bible
7184       7184 King James Version Bible
7185       7185 King James Version Bible
7186       7186 King James Version Bible
7187       7187 King James Version Bible
7188       7188 King James Version Bible
7189       7189 King James Version Bible
7190       7190 King James Version Bible
7191       7191 King James Version Bible
7192       7192 King James Version Bible
7193       7193 King James Version Bible
7194       7194 King James Version Bible
7195       7195 King James Version Bible
7196       7196 King James Version Bible
7197       7197 King James Version Bible
7198       7198 King James Version Bible
7199       7199 King James Version Bible
7200       7200 King James Version Bible
7201       7201 King James Version Bible
7202       7202 King James Version Bible
7203       7203 King James Version Bible
7204       7204 King James Version Bible
7205       7205 King James Version Bible
7206       7206 King James Version Bible
7207       7207 King James Version Bible
7208       7208 King James Version Bible
7209       7209 King James Version Bible
7210       7210 King James Version Bible
7211       7211 King James Version Bible
7212       7212 King James Version Bible
7213       7213 King James Version Bible
7214       7214 King James Version Bible
7215       7215 King James Version Bible
7216       7216 King James Version Bible
7217       7217 King James Version Bible
7218       7218 King James Version Bible
7219       7219 King James Version Bible
7220       7220 King James Version Bible
7221       7221 King James Version Bible
7222       7222 King James Version Bible
7223       7223 King James Version Bible
7224       7224 King James Version Bible
7225       7225 King James Version Bible
7226       7226 King James Version Bible
7227       7227 King James Version Bible
7228       7228 King James Version Bible
7229       7229 King James Version Bible
7230       7230 King James Version Bible
7231       7231 King James Version Bible
7232       7232 King James Version Bible
7233       7233 King James Version Bible
7234       7234 King James Version Bible
7235       7235 King James Version Bible
7236       7236 King James Version Bible
7237       7237 King James Version Bible
7238       7238 King James Version Bible
7239       7239 King James Version Bible
7240       7240 King James Version Bible
7241       7241 King James Version Bible
7242       7242 King James Version Bible
7243       7243 King James Version Bible
7244       7244 King James Version Bible
7245       7245 King James Version Bible
7246       7246 King James Version Bible
7247       7247 King James Version Bible
7248       7248 King James Version Bible
7249       7249 King James Version Bible
7250       7250 King James Version Bible
7251       7251 King James Version Bible
7252       7252 King James Version Bible
7253       7253 King James Version Bible
7254       7254 King James Version Bible
7255       7255 King James Version Bible
7256       7256 King James Version Bible
7257       7257 King James Version Bible
7258       7258 King James Version Bible
7259       7259 King James Version Bible
7260       7260 King James Version Bible
7261       7261 King James Version Bible
7262       7262 King James Version Bible
7263       7263 King James Version Bible
7264       7264 King James Version Bible
7265       7265 King James Version Bible
7266       7266 King James Version Bible
7267       7267 King James Version Bible
7268       7268 King James Version Bible
7269       7269 King James Version Bible
7270       7270 King James Version Bible
7271       7271 King James Version Bible
7272       7272 King James Version Bible
7273       7273 King James Version Bible
7274       7274 King James Version Bible
7275       7275 King James Version Bible
7276       7276 King James Version Bible
7277       7277 King James Version Bible
7278       7278 King James Version Bible
7279       7279 King James Version Bible
7280       7280 King James Version Bible
7281       7281 King James Version Bible
7282       7282 King James Version Bible
7283       7283 King James Version Bible
7284       7284 King James Version Bible
7285       7285 King James Version Bible
7286       7286 King James Version Bible
7287       7287 King James Version Bible
7288       7288 King James Version Bible
7289       7289 King James Version Bible
7290       7290 King James Version Bible
7291       7291 King James Version Bible
7292       7292 King James Version Bible
7293       7293 King James Version Bible
7294       7294 King James Version Bible
7295       7295 King James Version Bible
7296       7296 King James Version Bible
7297       7297 King James Version Bible
7298       7298 King James Version Bible
7299       7299 King James Version Bible
7300       7300 King James Version Bible
7301       7301 King James Version Bible
7302       7302 King James Version Bible
7303       7303 King James Version Bible
7304       7304 King James Version Bible
7305       7305 King James Version Bible
7306       7306 King James Version Bible
7307       7307 King James Version Bible
7308       7308 King James Version Bible
7309       7309 King James Version Bible
7310       7310 King James Version Bible
7311       7311 King James Version Bible
7312       7312 King James Version Bible
7313       7313 King James Version Bible
7314       7314 King James Version Bible
7315       7315 King James Version Bible
7316       7316 King James Version Bible
7317       7317 King James Version Bible
7318       7318 King James Version Bible
7319       7319 King James Version Bible
7320       7320 King James Version Bible
7321       7321 King James Version Bible
7322       7322 King James Version Bible
7323       7323 King James Version Bible
7324       7324 King James Version Bible
7325       7325 King James Version Bible
7326       7326 King James Version Bible
7327       7327 King James Version Bible
7328       7328 King James Version Bible
7329       7329 King James Version Bible
7330       7330 King James Version Bible
7331       7331 King James Version Bible
7332       7332 King James Version Bible
7333       7333 King James Version Bible
7334       7334 King James Version Bible
7335       7335 King James Version Bible
7336       7336 King James Version Bible
7337       7337 King James Version Bible
7338       7338 King James Version Bible
7339       7339 King James Version Bible
7340       7340 King James Version Bible
7341       7341 King James Version Bible
7342       7342 King James Version Bible
7343       7343 King James Version Bible
7344       7344 King James Version Bible
7345       7345 King James Version Bible
7346       7346 King James Version Bible
7347       7347 King James Version Bible
7348       7348 King James Version Bible
7349       7349 King James Version Bible
7350       7350 King James Version Bible
7351       7351 King James Version Bible
7352       7352 King James Version Bible
7353       7353 King James Version Bible
7354       7354 King James Version Bible
7355       7355 King James Version Bible
7356       7356 King James Version Bible
7357       7357 King James Version Bible
7358       7358 King James Version Bible
7359       7359 King James Version Bible
7360       7360 King James Version Bible
7361       7361 King James Version Bible
7362       7362 King James Version Bible
7363       7363 King James Version Bible
7364       7364 King James Version Bible
7365       7365 King James Version Bible
7366       7366 King James Version Bible
7367       7367 King James Version Bible
7368       7368 King James Version Bible
7369       7369 King James Version Bible
7370       7370 King James Version Bible
7371       7371 King James Version Bible
7372       7372 King James Version Bible
7373       7373 King James Version Bible
7374       7374 King James Version Bible
7375       7375 King James Version Bible
7376       7376 King James Version Bible
7377       7377 King James Version Bible
7378       7378 King James Version Bible
7379       7379 King James Version Bible
7380       7380 King James Version Bible
7381       7381 King James Version Bible
7382       7382 King James Version Bible
7383       7383 King James Version Bible
7384       7384 King James Version Bible
7385       7385 King James Version Bible
7386       7386 King James Version Bible
7387       7387 King James Version Bible
7388       7388 King James Version Bible
7389       7389 King James Version Bible
7390       7390 King James Version Bible
7391       7391 King James Version Bible
7392       7392 King James Version Bible
7393       7393 King James Version Bible
7394       7394 King James Version Bible
7395       7395 King James Version Bible
7396       7396 King James Version Bible
7397       7397 King James Version Bible
7398       7398 King James Version Bible
7399       7399 King James Version Bible
7400       7400 King James Version Bible
7401       7401 King James Version Bible
7402       7402 King James Version Bible
7403       7403 King James Version Bible
7404       7404 King James Version Bible
7405       7405 King James Version Bible
7406       7406 King James Version Bible
7407       7407 King James Version Bible
7408       7408 King James Version Bible
7409       7409 King James Version Bible
7410       7410 King James Version Bible
7411       7411 King James Version Bible
7412       7412 King James Version Bible
7413       7413 King James Version Bible
7414       7414 King James Version Bible
7415       7415 King James Version Bible
7416       7416 King James Version Bible
7417       7417 King James Version Bible
7418       7418 King James Version Bible
7419       7419 King James Version Bible
7420       7420 King James Version Bible
7421       7421 King James Version Bible
7422       7422 King James Version Bible
7423       7423 King James Version Bible
7424       7424 King James Version Bible
7425       7425 King James Version Bible
7426       7426 King James Version Bible
7427       7427 King James Version Bible
7428       7428 King James Version Bible
7429       7429 King James Version Bible
7430       7430 King James Version Bible
7431       7431 King James Version Bible
7432       7432 King James Version Bible
7433       7433 King James Version Bible
7434       7434 King James Version Bible
7435       7435 King James Version Bible
7436       7436 King James Version Bible
7437       7437 King James Version Bible
7438       7438 King James Version Bible
7439       7439 King James Version Bible
7440       7440 King James Version Bible
7441       7441 King James Version Bible
7442       7442 King James Version Bible
7443       7443 King James Version Bible
7444       7444 King James Version Bible
7445       7445 King James Version Bible
7446       7446 King James Version Bible
7447       7447 King James Version Bible
7448       7448 King James Version Bible
7449       7449 King James Version Bible
7450       7450 King James Version Bible
7451       7451 King James Version Bible
7452       7452 King James Version Bible
7453       7453 King James Version Bible
7454       7454 King James Version Bible
7455       7455 King James Version Bible
7456       7456 King James Version Bible
7457       7457 King James Version Bible
7458       7458 King James Version Bible
7459       7459 King James Version Bible
7460       7460 King James Version Bible
7461       7461 King James Version Bible
7462       7462 King James Version Bible
7463       7463 King James Version Bible
7464       7464 King James Version Bible
7465       7465 King James Version Bible
7466       7466 King James Version Bible
7467       7467 King James Version Bible
7468       7468 King James Version Bible
7469       7469 King James Version Bible
7470       7470 King James Version Bible
7471       7471 King James Version Bible
7472       7472 King James Version Bible
7473       7473 King James Version Bible
7474       7474 King James Version Bible
7475       7475 King James Version Bible
7476       7476 King James Version Bible
7477       7477 King James Version Bible
7478       7478 King James Version Bible
7479       7479 King James Version Bible
7480       7480 King James Version Bible
7481       7481 King James Version Bible
7482       7482 King James Version Bible
7483       7483 King James Version Bible
7484       7484 King James Version Bible
7485       7485 King James Version Bible
7486       7486 King James Version Bible
7487       7487 King James Version Bible
7488       7488 King James Version Bible
7489       7489 King James Version Bible
7490       7490 King James Version Bible
7491       7491 King James Version Bible
7492       7492 King James Version Bible
7493       7493 King James Version Bible
7494       7494 King James Version Bible
7495       7495 King James Version Bible
7496       7496 King James Version Bible
7497       7497 King James Version Bible
7498       7498 King James Version Bible
7499       7499 King James Version Bible
7500       7500 King James Version Bible
7501       7501 King James Version Bible
7502       7502 King James Version Bible
7503       7503 King James Version Bible
7504       7504 King James Version Bible
7505       7505 King James Version Bible
7506       7506 King James Version Bible
7507       7507 King James Version Bible
7508       7508 King James Version Bible
7509       7509 King James Version Bible
7510       7510 King James Version Bible
7511       7511 King James Version Bible
7512       7512 King James Version Bible
7513       7513 King James Version Bible
7514       7514 King James Version Bible
7515       7515 King James Version Bible
7516       7516 King James Version Bible
7517       7517 King James Version Bible
7518       7518 King James Version Bible
7519       7519 King James Version Bible
7520       7520 King James Version Bible
7521       7521 King James Version Bible
7522       7522 King James Version Bible
7523       7523 King James Version Bible
7524       7524 King James Version Bible
7525       7525 King James Version Bible
7526       7526 King James Version Bible
7527       7527 King James Version Bible
7528       7528 King James Version Bible
7529       7529 King James Version Bible
7530       7530 King James Version Bible
7531       7531 King James Version Bible
7532       7532 King James Version Bible
7533       7533 King James Version Bible
7534       7534 King James Version Bible
7535       7535 King James Version Bible
7536       7536 King James Version Bible
7537       7537 King James Version Bible
7538       7538 King James Version Bible
7539       7539 King James Version Bible
7540       7540 King James Version Bible
7541       7541 King James Version Bible
7542       7542 King James Version Bible
7543       7543 King James Version Bible
7544       7544 King James Version Bible
7545       7545 King James Version Bible
7546       7546 King James Version Bible
7547       7547 King James Version Bible
7548       7548 King James Version Bible
7549       7549 King James Version Bible
7550       7550 King James Version Bible
7551       7551 King James Version Bible
7552       7552 King James Version Bible
7553       7553 King James Version Bible
7554       7554 King James Version Bible
7555       7555 King James Version Bible
7556       7556 King James Version Bible
7557       7557 King James Version Bible
7558       7558 King James Version Bible
7559       7559 King James Version Bible
7560       7560 King James Version Bible
7561       7561 King James Version Bible
7562       7562 King James Version Bible
7563       7563 King James Version Bible
7564       7564 King James Version Bible
7565       7565 King James Version Bible
7566       7566 King James Version Bible
7567       7567 King James Version Bible
7568       7568 King James Version Bible
7569       7569 King James Version Bible
7570       7570 King James Version Bible
7571       7571 King James Version Bible
7572       7572 King James Version Bible
7573       7573 King James Version Bible
7574       7574 King James Version Bible
7575       7575 King James Version Bible
7576       7576 King James Version Bible
7577       7577 King James Version Bible
7578       7578 King James Version Bible
7579       7579 King James Version Bible
7580       7580 King James Version Bible
7581       7581 King James Version Bible
7582       7582 King James Version Bible
7583       7583 King James Version Bible
7584       7584 King James Version Bible
7585       7585 King James Version Bible
7586       7586 King James Version Bible
7587       7587 King James Version Bible
7588       7588 King James Version Bible
7589       7589 King James Version Bible
7590       7590 King James Version Bible
7591       7591 King James Version Bible
7592       7592 King James Version Bible
7593       7593 King James Version Bible
7594       7594 King James Version Bible
7595       7595 King James Version Bible
7596       7596 King James Version Bible
7597       7597 King James Version Bible
7598       7598 King James Version Bible
7599       7599 King James Version Bible
7600       7600 King James Version Bible
7601       7601 King James Version Bible
7602       7602 King James Version Bible
7603       7603 King James Version Bible
7604       7604 King James Version Bible
7605       7605 King James Version Bible
7606       7606 King James Version Bible
7607       7607 King James Version Bible
7608       7608 King James Version Bible
7609       7609 King James Version Bible
7610       7610 King James Version Bible
7611       7611 King James Version Bible
7612       7612 King James Version Bible
7613       7613 King James Version Bible
7614       7614 King James Version Bible
7615       7615 King James Version Bible
7616       7616 King James Version Bible
7617       7617 King James Version Bible
7618       7618 King James Version Bible
7619       7619 King James Version Bible
7620       7620 King James Version Bible
7621       7621 King James Version Bible
7622       7622 King James Version Bible
7623       7623 King James Version Bible
7624       7624 King James Version Bible
7625       7625 King James Version Bible
7626       7626 King James Version Bible
7627       7627 King James Version Bible
7628       7628 King James Version Bible
7629       7629 King James Version Bible
7630       7630 King James Version Bible
7631       7631 King James Version Bible
7632       7632 King James Version Bible
7633       7633 King James Version Bible
7634       7634 King James Version Bible
7635       7635 King James Version Bible
7636       7636 King James Version Bible
7637       7637 King James Version Bible
7638       7638 King James Version Bible
7639       7639 King James Version Bible
7640       7640 King James Version Bible
7641       7641 King James Version Bible
7642       7642 King James Version Bible
7643       7643 King James Version Bible
7644       7644 King James Version Bible
7645       7645 King James Version Bible
7646       7646 King James Version Bible
7647       7647 King James Version Bible
7648       7648 King James Version Bible
7649       7649 King James Version Bible
7650       7650 King James Version Bible
7651       7651 King James Version Bible
7652       7652 King James Version Bible
7653       7653 King James Version Bible
7654       7654 King James Version Bible
7655       7655 King James Version Bible
7656       7656 King James Version Bible
7657       7657 King James Version Bible
7658       7658 King James Version Bible
7659       7659 King James Version Bible
7660       7660 King James Version Bible
7661       7661 King James Version Bible
7662       7662 King James Version Bible
7663       7663 King James Version Bible
7664       7664 King James Version Bible
7665       7665 King James Version Bible
7666       7666 King James Version Bible
7667       7667 King James Version Bible
7668       7668 King James Version Bible
7669       7669 King James Version Bible
7670       7670 King James Version Bible
7671       7671 King James Version Bible
7672       7672 King James Version Bible
7673       7673 King James Version Bible
7674       7674 King James Version Bible
7675       7675 King James Version Bible
7676       7676 King James Version Bible
7677       7677 King James Version Bible
7678       7678 King James Version Bible
7679       7679 King James Version Bible
7680       7680 King James Version Bible
7681       7681 King James Version Bible
7682       7682 King James Version Bible
7683       7683 King James Version Bible
7684       7684 King James Version Bible
7685       7685 King James Version Bible
7686       7686 King James Version Bible
7687       7687 King James Version Bible
7688       7688 King James Version Bible
7689       7689 King James Version Bible
7690       7690 King James Version Bible
7691       7691 King James Version Bible
7692       7692 King James Version Bible
7693       7693 King James Version Bible
7694       7694 King James Version Bible
7695       7695 King James Version Bible
7696       7696 King James Version Bible
7697       7697 King James Version Bible
7698       7698 King James Version Bible
7699       7699 King James Version Bible
7700       7700 King James Version Bible
7701       7701 King James Version Bible
7702       7702 King James Version Bible
7703       7703 King James Version Bible
7704       7704 King James Version Bible
7705       7705 King James Version Bible
7706       7706 King James Version Bible
7707       7707 King James Version Bible
7708       7708 King James Version Bible
7709       7709 King James Version Bible
7710       7710 King James Version Bible
7711       7711 King James Version Bible
7712       7712 King James Version Bible
7713       7713 King James Version Bible
7714       7714 King James Version Bible
7715       7715 King James Version Bible
7716       7716 King James Version Bible
7717       7717 King James Version Bible
7718       7718 King James Version Bible
7719       7719 King James Version Bible
7720       7720 King James Version Bible
7721       7721 King James Version Bible
7722       7722 King James Version Bible
7723       7723 King James Version Bible
7724       7724 King James Version Bible
7725       7725 King James Version Bible
7726       7726 King James Version Bible
7727       7727 King James Version Bible
7728       7728 King James Version Bible
7729       7729 King James Version Bible
7730       7730 King James Version Bible
7731       7731 King James Version Bible
7732       7732 King James Version Bible
7733       7733 King James Version Bible
7734       7734 King James Version Bible
7735       7735 King James Version Bible
7736       7736 King James Version Bible
7737       7737 King James Version Bible
7738       7738 King James Version Bible
7739       7739 King James Version Bible
7740       7740 King James Version Bible
7741       7741 King James Version Bible
7742       7742 King James Version Bible
7743       7743 King James Version Bible
7744       7744 King James Version Bible
7745       7745 King James Version Bible
7746       7746 King James Version Bible
7747       7747 King James Version Bible
7748       7748 King James Version Bible
7749       7749 King James Version Bible
7750       7750 King James Version Bible
7751       7751 King James Version Bible
7752       7752 King James Version Bible
7753       7753 King James Version Bible
7754       7754 King James Version Bible
7755       7755 King James Version Bible
7756       7756 King James Version Bible
7757       7757 King James Version Bible
7758       7758 King James Version Bible
7759       7759 King James Version Bible
7760       7760 King James Version Bible
7761       7761 King James Version Bible
7762       7762 King James Version Bible
7763       7763 King James Version Bible
7764       7764 King James Version Bible
7765       7765 King James Version Bible
7766       7766 King James Version Bible
7767       7767 King James Version Bible
7768       7768 King James Version Bible
7769       7769 King James Version Bible
7770       7770 King James Version Bible
7771       7771 King James Version Bible
7772       7772 King James Version Bible
7773       7773 King James Version Bible
7774       7774 King James Version Bible
7775       7775 King James Version Bible
7776       7776 King James Version Bible
7777       7777 King James Version Bible
7778       7778 King James Version Bible
7779       7779 King James Version Bible
7780       7780 King James Version Bible
7781       7781 King James Version Bible
7782       7782 King James Version Bible
7783       7783 King James Version Bible
7784       7784 King James Version Bible
7785       7785 King James Version Bible
7786       7786 King James Version Bible
7787       7787 King James Version Bible
7788       7788 King James Version Bible
7789       7789 King James Version Bible
7790       7790 King James Version Bible
7791       7791 King James Version Bible
7792       7792 King James Version Bible
7793       7793 King James Version Bible
7794       7794 King James Version Bible
7795       7795 King James Version Bible
7796       7796 King James Version Bible
7797       7797 King James Version Bible
7798       7798 King James Version Bible
7799       7799 King James Version Bible
7800       7800 King James Version Bible
7801       7801 King James Version Bible
7802       7802 King James Version Bible
7803       7803 King James Version Bible
7804       7804 King James Version Bible
7805       7805 King James Version Bible
7806       7806 King James Version Bible
7807       7807 King James Version Bible
7808       7808 King James Version Bible
7809       7809 King James Version Bible
7810       7810 King James Version Bible
7811       7811 King James Version Bible
7812       7812 King James Version Bible
7813       7813 King James Version Bible
7814       7814 King James Version Bible
7815       7815 King James Version Bible
7816       7816 King James Version Bible
7817       7817 King James Version Bible
7818       7818 King James Version Bible
7819       7819 King James Version Bible
7820       7820 King James Version Bible
7821       7821 King James Version Bible
7822       7822 King James Version Bible
7823       7823 King James Version Bible
7824       7824 King James Version Bible
7825       7825 King James Version Bible
7826       7826 King James Version Bible
7827       7827 King James Version Bible
7828       7828 King James Version Bible
7829       7829 King James Version Bible
7830       7830 King James Version Bible
7831       7831 King James Version Bible
7832       7832 King James Version Bible
7833       7833 King James Version Bible
7834       7834 King James Version Bible
7835       7835 King James Version Bible
7836       7836 King James Version Bible
7837       7837 King James Version Bible
7838       7838 King James Version Bible
7839       7839 King James Version Bible
7840       7840 King James Version Bible
7841       7841 King James Version Bible
7842       7842 King James Version Bible
7843       7843 King James Version Bible
7844       7844 King James Version Bible
7845       7845 King James Version Bible
7846       7846 King James Version Bible
7847       7847 King James Version Bible
7848       7848 King James Version Bible
7849       7849 King James Version Bible
7850       7850 King James Version Bible
7851       7851 King James Version Bible
7852       7852 King James Version Bible
7853       7853 King James Version Bible
7854       7854 King James Version Bible
7855       7855 King James Version Bible
7856       7856 King James Version Bible
7857       7857 King James Version Bible
7858       7858 King James Version Bible
7859       7859 King James Version Bible
7860       7860 King James Version Bible
7861       7861 King James Version Bible
7862       7862 King James Version Bible
7863       7863 King James Version Bible
7864       7864 King James Version Bible
7865       7865 King James Version Bible
7866       7866 King James Version Bible
7867       7867 King James Version Bible
7868       7868 King James Version Bible
7869       7869 King James Version Bible
7870       7870 King James Version Bible
7871       7871 King James Version Bible
7872       7872 King James Version Bible
7873       7873 King James Version Bible
7874       7874 King James Version Bible
7875       7875 King James Version Bible
7876       7876 King James Version Bible
7877       7877 King James Version Bible
7878       7878 King James Version Bible
7879       7879 King James Version Bible
7880       7880 King James Version Bible
7881       7881 King James Version Bible
7882       7882 King James Version Bible
7883       7883 King James Version Bible
7884       7884 King James Version Bible
7885       7885 King James Version Bible
7886       7886 King James Version Bible
7887       7887 King James Version Bible
7888       7888 King James Version Bible
7889       7889 King James Version Bible
7890       7890 King James Version Bible
7891       7891 King James Version Bible
7892       7892 King James Version Bible
7893       7893 King James Version Bible
7894       7894 King James Version Bible
7895       7895 King James Version Bible
7896       7896 King James Version Bible
7897       7897 King James Version Bible
7898       7898 King James Version Bible
7899       7899 King James Version Bible
7900       7900 King James Version Bible
7901       7901 King James Version Bible
7902       7902 King James Version Bible
7903       7903 King James Version Bible
7904       7904 King James Version Bible
7905       7905 King James Version Bible
7906       7906 King James Version Bible
7907       7907 King James Version Bible
7908       7908 King James Version Bible
7909       7909 King James Version Bible
7910       7910 King James Version Bible
7911       7911 King James Version Bible
7912       7912 King James Version Bible
7913       7913 King James Version Bible
7914       7914 King James Version Bible
7915       7915 King James Version Bible
7916       7916 King James Version Bible
7917       7917 King James Version Bible
7918       7918 King James Version Bible
7919       7919 King James Version Bible
7920       7920 King James Version Bible
7921       7921 King James Version Bible
7922       7922 King James Version Bible
7923       7923 King James Version Bible
7924       7924 King James Version Bible
7925       7925 King James Version Bible
7926       7926 King James Version Bible
7927       7927 King James Version Bible
7928       7928 King James Version Bible
7929       7929 King James Version Bible
7930       7930 King James Version Bible
7931       7931 King James Version Bible
7932       7932 King James Version Bible
7933       7933 King James Version Bible
7934       7934 King James Version Bible
7935       7935 King James Version Bible
7936       7936 King James Version Bible
7937       7937 King James Version Bible
7938       7938 King James Version Bible
7939       7939 King James Version Bible
7940       7940 King James Version Bible
7941       7941 King James Version Bible
7942       7942 King James Version Bible
7943       7943 King James Version Bible
7944       7944 King James Version Bible
7945       7945 King James Version Bible
7946       7946 King James Version Bible
7947       7947 King James Version Bible
7948       7948 King James Version Bible
7949       7949 King James Version Bible
7950       7950 King James Version Bible
7951       7951 King James Version Bible
7952       7952 King James Version Bible
7953       7953 King James Version Bible
7954       7954 King James Version Bible
7955       7955 King James Version Bible
7956       7956 King James Version Bible
7957       7957 King James Version Bible
7958       7958 King James Version Bible
7959       7959 King James Version Bible
7960       7960 King James Version Bible
7961       7961 King James Version Bible
7962       7962 King James Version Bible
7963       7963 King James Version Bible
7964       7964 King James Version Bible
7965       7965 King James Version Bible
7966       7966 King James Version Bible
7967       7967 King James Version Bible
7968       7968 King James Version Bible
7969       7969 King James Version Bible
7970       7970 King James Version Bible
7971       7971 King James Version Bible
7972       7972 King James Version Bible
7973       7973 King James Version Bible
7974       7974 King James Version Bible
7975       7975 King James Version Bible
7976       7976 King James Version Bible
7977       7977 King James Version Bible
7978       7978 King James Version Bible
7979       7979 King James Version Bible
7980       7980 King James Version Bible
7981       7981 King James Version Bible
7982       7982 King James Version Bible
7983       7983 King James Version Bible
7984       7984 King James Version Bible
7985       7985 King James Version Bible
7986       7986 King James Version Bible
7987       7987 King James Version Bible
7988       7988 King James Version Bible
7989       7989 King James Version Bible
7990       7990 King James Version Bible
7991       7991 King James Version Bible
7992       7992 King James Version Bible
7993       7993 King James Version Bible
7994       7994 King James Version Bible
7995       7995 King James Version Bible
7996       7996 King James Version Bible
7997       7997 King James Version Bible
7998       7998 King James Version Bible
7999       7999 King James Version Bible
8000       8000 King James Version Bible
8001       8001 King James Version Bible
8002       8002 King James Version Bible
8003       8003 King James Version Bible
8004       8004 King James Version Bible
8005       8005 King James Version Bible
8006       8006 King James Version Bible
8007       8007 King James Version Bible
8008       8008 King James Version Bible
8009       8009 King James Version Bible
8010       8010 King James Version Bible
8011       8011 King James Version Bible
8012       8012 King James Version Bible
8013       8013 King James Version Bible
8014       8014 King James Version Bible
8015       8015 King James Version Bible
8016       8016 King James Version Bible
8017       8017 King James Version Bible
8018       8018 King James Version Bible
8019       8019 King James Version Bible
8020       8020 King James Version Bible
8021       8021 King James Version Bible
8022       8022 King James Version Bible
8023       8023 King James Version Bible
8024       8024 King James Version Bible
8025       8025 King James Version Bible
8026       8026 King James Version Bible
8027       8027 King James Version Bible
8028       8028 King James Version Bible
8029       8029 King James Version Bible
8030       8030 King James Version Bible
8031       8031 King James Version Bible
8032       8032 King James Version Bible
8033       8033 King James Version Bible
8034       8034 King James Version Bible
8035       8035 King James Version Bible
8036       8036 King James Version Bible
8037       8037 King James Version Bible
8038       8038 King James Version Bible
8039       8039 King James Version Bible
8040       8040 King James Version Bible
8041       8041 King James Version Bible
8042       8042 King James Version Bible
8043       8043 King James Version Bible
8044       8044 King James Version Bible
8045       8045 King James Version Bible
8046       8046 King James Version Bible
8047       8047 King James Version Bible
8048       8048 King James Version Bible
8049       8049 King James Version Bible
8050       8050 King James Version Bible
8051       8051 King James Version Bible
8052       8052 King James Version Bible
8053       8053 King James Version Bible
8054       8054 King James Version Bible
8055       8055 King James Version Bible
8056       8056 King James Version Bible
8057       8057 King James Version Bible
8058       8058 King James Version Bible
8059       8059 King James Version Bible
8060       8060 King James Version Bible
8061       8061 King James Version Bible
8062       8062 King James Version Bible
8063       8063 King James Version Bible
8064       8064 King James Version Bible
8065       8065 King James Version Bible
8066       8066 King James Version Bible
8067       8067 King James Version Bible
8068       8068 King James Version Bible
8069       8069 King James Version Bible
8070       8070 King James Version Bible
8071       8071 King James Version Bible
8072       8072 King James Version Bible
8073       8073 King James Version Bible
8074       8074 King James Version Bible
8075       8075 King James Version Bible
8076       8076 King James Version Bible
8077       8077 King James Version Bible
8078       8078 King James Version Bible
8079       8079 King James Version Bible
8080       8080 King James Version Bible
8081       8081 King James Version Bible
8082       8082 King James Version Bible
8083       8083 King James Version Bible
8084       8084 King James Version Bible
8085       8085 King James Version Bible
8086       8086 King James Version Bible
8087       8087 King James Version Bible
8088       8088 King James Version Bible
8089       8089 King James Version Bible
8090       8090 King James Version Bible
8091       8091 King James Version Bible
8092       8092 King James Version Bible
8093       8093 King James Version Bible
8094       8094 King James Version Bible
8095       8095 King James Version Bible
8096       8096 King James Version Bible
8097       8097 King James Version Bible
8098       8098 King James Version Bible
8099       8099 King James Version Bible
8100       8100 King James Version Bible
8101       8101 King James Version Bible
8102       8102 King James Version Bible
8103       8103 King James Version Bible
8104       8104 King James Version Bible
8105       8105 King James Version Bible
8106       8106 King James Version Bible
8107       8107 King James Version Bible
8108       8108 King James Version Bible
8109       8109 King James Version Bible
8110       8110 King James Version Bible
8111       8111 King James Version Bible
8112       8112 King James Version Bible
8113       8113 King James Version Bible
8114       8114 King James Version Bible
8115       8115 King James Version Bible
8116       8116 King James Version Bible
8117       8117 King James Version Bible
8118       8118 King James Version Bible
8119       8119 King James Version Bible
8120       8120 King James Version Bible
8121       8121 King James Version Bible
8122       8122 King James Version Bible
8123       8123 King James Version Bible
8124       8124 King James Version Bible
8125       8125 King James Version Bible
8126       8126 King James Version Bible
8127       8127 King James Version Bible
8128       8128 King James Version Bible
8129       8129 King James Version Bible
8130       8130 King James Version Bible
8131       8131 King James Version Bible
8132       8132 King James Version Bible
8133       8133 King James Version Bible
8134       8134 King James Version Bible
8135       8135 King James Version Bible
8136       8136 King James Version Bible
8137       8137 King James Version Bible
8138       8138 King James Version Bible
8139       8139 King James Version Bible
8140       8140 King James Version Bible
8141       8141 King James Version Bible
8142       8142 King James Version Bible
8143       8143 King James Version Bible
8144       8144 King James Version Bible
8145       8145 King James Version Bible
8146       8146 King James Version Bible
8147       8147 King James Version Bible
8148       8148 King James Version Bible
8149       8149 King James Version Bible
8150       8150 King James Version Bible
8151       8151 King James Version Bible
8152       8152 King James Version Bible
8153       8153 King James Version Bible
8154       8154 King James Version Bible
8155       8155 King James Version Bible
8156       8156 King James Version Bible
8157       8157 King James Version Bible
8158       8158 King James Version Bible
8159       8159 King James Version Bible
8160       8160 King James Version Bible
8161       8161 King James Version Bible
8162       8162 King James Version Bible
8163       8163 King James Version Bible
8164       8164 King James Version Bible
8165       8165 King James Version Bible
8166       8166 King James Version Bible
8167       8167 King James Version Bible
8168       8168 King James Version Bible
8169       8169 King James Version Bible
8170       8170 King James Version Bible
8171       8171 King James Version Bible
8172       8172 King James Version Bible
8173       8173 King James Version Bible
8174       8174 King James Version Bible
8175       8175 King James Version Bible
8176       8176 King James Version Bible
8177       8177 King James Version Bible
8178       8178 King James Version Bible
8179       8179 King James Version Bible
8180       8180 King James Version Bible
8181       8181 King James Version Bible
8182       8182 King James Version Bible
8183       8183 King James Version Bible
8184       8184 King James Version Bible
8185       8185 King James Version Bible
8186       8186 King James Version Bible
8187       8187 King James Version Bible
8188       8188 King James Version Bible
8189       8189 King James Version Bible
8190       8190 King James Version Bible
8191       8191 King James Version Bible
8192       8192 King James Version Bible
8193       8193 King James Version Bible
8194       8194 King James Version Bible
8195       8195 King James Version Bible
8196       8196 King James Version Bible
8197       8197 King James Version Bible
8198       8198 King James Version Bible
8199       8199 King James Version Bible
8200       8200 King James Version Bible
8201       8201 King James Version Bible
8202       8202 King James Version Bible
8203       8203 King James Version Bible
8204       8204 King James Version Bible
8205       8205 King James Version Bible
8206       8206 King James Version Bible
8207       8207 King James Version Bible
8208       8208 King James Version Bible
8209       8209 King James Version Bible
8210       8210 King James Version Bible
8211       8211 King James Version Bible
8212       8212 King James Version Bible
8213       8213 King James Version Bible
8214       8214 King James Version Bible
8215       8215 King James Version Bible
8216       8216 King James Version Bible
8217       8217 King James Version Bible
8218       8218 King James Version Bible
8219       8219 King James Version Bible
8220       8220 King James Version Bible
8221       8221 King James Version Bible
8222       8222 King James Version Bible
8223       8223 King James Version Bible
8224       8224 King James Version Bible
8225       8225 King James Version Bible
8226       8226 King James Version Bible
8227       8227 King James Version Bible
8228       8228 King James Version Bible
8229       8229 King James Version Bible
8230       8230 King James Version Bible
8231       8231 King James Version Bible
8232       8232 King James Version Bible
8233       8233 King James Version Bible
8234       8234 King James Version Bible
8235       8235 King James Version Bible
8236       8236 King James Version Bible
8237       8237 King James Version Bible
8238       8238 King James Version Bible
8239       8239 King James Version Bible
8240       8240 King James Version Bible
8241       8241 King James Version Bible
8242       8242 King James Version Bible
8243       8243 King James Version Bible
8244       8244 King James Version Bible
8245       8245 King James Version Bible
8246       8246 King James Version Bible
8247       8247 King James Version Bible
8248       8248 King James Version Bible
8249       8249 King James Version Bible
8250       8250 King James Version Bible
8251       8251 King James Version Bible
8252       8252 King James Version Bible
8253       8253 King James Version Bible
8254       8254 King James Version Bible
8255       8255 King James Version Bible
8256       8256 King James Version Bible
8257       8257 King James Version Bible
8258       8258 King James Version Bible
8259       8259 King James Version Bible
8260       8260 King James Version Bible
8261       8261 King James Version Bible
8262       8262 King James Version Bible
8263       8263 King James Version Bible
8264       8264 King James Version Bible
8265       8265 King James Version Bible
8266       8266 King James Version Bible
8267       8267 King James Version Bible
8268       8268 King James Version Bible
8269       8269 King James Version Bible
8270       8270 King James Version Bible
8271       8271 King James Version Bible
8272       8272 King James Version Bible
8273       8273 King James Version Bible
8274       8274 King James Version Bible
8275       8275 King James Version Bible
8276       8276 King James Version Bible
8277       8277 King James Version Bible
8278       8278 King James Version Bible
8279       8279 King James Version Bible
8280       8280 King James Version Bible
8281       8281 King James Version Bible
8282       8282 King James Version Bible
8283       8283 King James Version Bible
8284       8284 King James Version Bible
8285       8285 King James Version Bible
8286       8286 King James Version Bible
8287       8287 King James Version Bible
8288       8288 King James Version Bible
8289       8289 King James Version Bible
8290       8290 King James Version Bible
8291       8291 King James Version Bible
8292       8292 King James Version Bible
8293       8293 King James Version Bible
8294       8294 King James Version Bible
8295       8295 King James Version Bible
8296       8296 King James Version Bible
8297       8297 King James Version Bible
8298       8298 King James Version Bible
8299       8299 King James Version Bible
8300       8300 King James Version Bible
8301       8301 King James Version Bible
8302       8302 King James Version Bible
8303       8303 King James Version Bible
8304       8304 King James Version Bible
8305       8305 King James Version Bible
8306       8306 King James Version Bible
8307       8307 King James Version Bible
8308       8308 King James Version Bible
8309       8309 King James Version Bible
8310       8310 King James Version Bible
8311       8311 King James Version Bible
8312       8312 King James Version Bible
8313       8313 King James Version Bible
8314       8314 King James Version Bible
8315       8315 King James Version Bible
8316       8316 King James Version Bible
8317       8317 King James Version Bible
8318       8318 King James Version Bible
8319       8319 King James Version Bible
8320       8320 King James Version Bible
8321       8321 King James Version Bible
8322       8322 King James Version Bible
8323       8323 King James Version Bible
8324       8324 King James Version Bible
8325       8325 King James Version Bible
8326       8326 King James Version Bible
8327       8327 King James Version Bible
8328       8328 King James Version Bible
8329       8329 King James Version Bible
8330       8330 King James Version Bible
8331       8331 King James Version Bible
8332       8332 King James Version Bible
8333       8333 King James Version Bible
8334       8334 King James Version Bible
8335       8335 King James Version Bible
8336       8336 King James Version Bible
8337       8337 King James Version Bible
8338       8338 King James Version Bible
8339       8339 King James Version Bible
8340       8340 King James Version Bible
8341       8341 King James Version Bible
8342       8342 King James Version Bible
8343       8343 King James Version Bible
8344       8344 King James Version Bible
8345       8345 King James Version Bible
8346       8346 King James Version Bible
8347       8347 King James Version Bible
8348       8348 King James Version Bible
8349       8349 King James Version Bible
8350       8350 King James Version Bible
8351       8351 King James Version Bible
8352       8352 King James Version Bible
8353       8353 King James Version Bible
8354       8354 King James Version Bible
8355       8355 King James Version Bible
8356       8356 King James Version Bible
8357       8357 King James Version Bible
8358       8358 King James Version Bible
8359       8359 King James Version Bible
8360       8360 King James Version Bible
8361       8361 King James Version Bible
8362       8362 King James Version Bible
8363       8363 King James Version Bible
8364       8364 King James Version Bible
8365       8365 King James Version Bible
8366       8366 King James Version Bible
8367       8367 King James Version Bible
8368       8368 King James Version Bible
8369       8369 King James Version Bible
8370       8370 King James Version Bible
8371       8371 King James Version Bible
8372       8372 King James Version Bible
8373       8373 King James Version Bible
8374       8374 King James Version Bible
8375       8375 King James Version Bible
8376       8376 King James Version Bible
8377       8377 King James Version Bible
8378       8378 King James Version Bible
8379       8379 King James Version Bible
8380       8380 King James Version Bible
8381       8381 King James Version Bible
8382       8382 King James Version Bible
8383       8383 King James Version Bible
8384       8384 King James Version Bible
8385       8385 King James Version Bible
8386       8386 King James Version Bible
8387       8387 King James Version Bible
8388       8388 King James Version Bible
8389       8389 King James Version Bible
8390       8390 King James Version Bible
8391       8391 King James Version Bible
8392       8392 King James Version Bible
8393       8393 King James Version Bible
8394       8394 King James Version Bible
8395       8395 King James Version Bible
8396       8396 King James Version Bible
8397       8397 King James Version Bible
8398       8398 King James Version Bible
8399       8399 King James Version Bible
8400       8400 King James Version Bible
8401       8401 King James Version Bible
8402       8402 King James Version Bible
8403       8403 King James Version Bible
8404       8404 King James Version Bible
8405       8405 King James Version Bible
8406       8406 King James Version Bible
8407       8407 King James Version Bible
8408       8408 King James Version Bible
8409       8409 King James Version Bible
8410       8410 King James Version Bible
8411       8411 King James Version Bible
8412       8412 King James Version Bible
8413       8413 King James Version Bible
8414       8414 King James Version Bible
8415       8415 King James Version Bible
8416       8416 King James Version Bible
8417       8417 King James Version Bible
8418       8418 King James Version Bible
8419       8419 King James Version Bible
8420       8420 King James Version Bible
8421       8421 King James Version Bible
8422       8422 King James Version Bible
8423       8423 King James Version Bible
8424       8424 King James Version Bible
8425       8425 King James Version Bible
8426       8426 King James Version Bible
8427       8427 King James Version Bible
8428       8428 King James Version Bible
8429       8429 King James Version Bible
8430       8430 King James Version Bible
8431       8431 King James Version Bible
8432       8432 King James Version Bible
8433       8433 King James Version Bible
8434       8434 King James Version Bible
8435       8435 King James Version Bible
8436       8436 King James Version Bible
8437       8437 King James Version Bible
8438       8438 King James Version Bible
8439       8439 King James Version Bible
8440       8440 King James Version Bible
8441       8441 King James Version Bible
8442       8442 King James Version Bible
8443       8443 King James Version Bible
8444       8444 King James Version Bible
8445       8445 King James Version Bible
8446       8446 King James Version Bible
8447       8447 King James Version Bible
8448       8448 King James Version Bible
8449       8449 King James Version Bible
8450       8450 King James Version Bible
8451       8451 King James Version Bible
8452       8452 King James Version Bible
8453       8453 King James Version Bible
8454       8454 King James Version Bible
8455       8455 King James Version Bible
8456       8456 King James Version Bible
8457       8457 King James Version Bible
8458       8458 King James Version Bible
8459       8459 King James Version Bible
8460       8460 King James Version Bible
8461       8461 King James Version Bible
8462       8462 King James Version Bible
8463       8463 King James Version Bible
8464       8464 King James Version Bible
8465       8465 King James Version Bible
8466       8466 King James Version Bible
8467       8467 King James Version Bible
8468       8468 King James Version Bible
8469       8469 King James Version Bible
8470       8470 King James Version Bible
8471       8471 King James Version Bible
8472       8472 King James Version Bible
8473       8473 King James Version Bible
8474       8474 King James Version Bible
8475       8475 King James Version Bible
8476       8476 King James Version Bible
8477       8477 King James Version Bible
8478       8478 King James Version Bible
8479       8479 King James Version Bible
8480       8480 King James Version Bible
8481       8481 King James Version Bible
8482       8482 King James Version Bible
8483       8483 King James Version Bible
8484       8484 King James Version Bible
8485       8485 King James Version Bible
8486       8486 King James Version Bible
8487       8487 King James Version Bible
8488       8488 King James Version Bible
8489       8489 King James Version Bible
8490       8490 King James Version Bible
8491       8491 King James Version Bible
8492       8492 King James Version Bible
8493       8493 King James Version Bible
8494       8494 King James Version Bible
8495       8495 King James Version Bible
8496       8496 King James Version Bible
8497       8497 King James Version Bible
8498       8498 King James Version Bible
8499       8499 King James Version Bible
8500       8500 King James Version Bible
8501       8501 King James Version Bible
8502       8502 King James Version Bible
8503       8503 King James Version Bible
8504       8504 King James Version Bible
8505       8505 King James Version Bible
8506       8506 King James Version Bible
8507       8507 King James Version Bible
8508       8508 King James Version Bible
8509       8509 King James Version Bible
8510       8510 King James Version Bible
8511       8511 King James Version Bible
8512       8512 King James Version Bible
8513       8513 King James Version Bible
8514       8514 King James Version Bible
8515       8515 King James Version Bible
8516       8516 King James Version Bible
8517       8517 King James Version Bible
8518       8518 King James Version Bible
8519       8519 King James Version Bible
8520       8520 King James Version Bible
8521       8521 King James Version Bible
8522       8522 King James Version Bible
8523       8523 King James Version Bible
8524       8524 King James Version Bible
8525       8525 King James Version Bible
8526       8526 King James Version Bible
8527       8527 King James Version Bible
8528       8528 King James Version Bible
8529       8529 King James Version Bible
8530       8530 King James Version Bible
8531       8531 King James Version Bible
8532       8532 King James Version Bible
8533       8533 King James Version Bible
8534       8534 King James Version Bible
8535       8535 King James Version Bible
8536       8536 King James Version Bible
8537       8537 King James Version Bible
8538       8538 King James Version Bible
8539       8539 King James Version Bible
8540       8540 King James Version Bible
8541       8541 King James Version Bible
8542       8542 King James Version Bible
8543       8543 King James Version Bible
8544       8544 King James Version Bible
8545       8545 King James Version Bible
8546       8546 King James Version Bible
8547       8547 King James Version Bible
8548       8548 King James Version Bible
8549       8549 King James Version Bible
8550       8550 King James Version Bible
8551       8551 King James Version Bible
8552       8552 King James Version Bible
8553       8553 King James Version Bible
8554       8554 King James Version Bible
8555       8555 King James Version Bible
8556       8556 King James Version Bible
8557       8557 King James Version Bible
8558       8558 King James Version Bible
8559       8559 King James Version Bible
8560       8560 King James Version Bible
8561       8561 King James Version Bible
8562       8562 King James Version Bible
8563       8563 King James Version Bible
8564       8564 King James Version Bible
8565       8565 King James Version Bible
8566       8566 King James Version Bible
8567       8567 King James Version Bible
8568       8568 King James Version Bible
8569       8569 King James Version Bible
8570       8570 King James Version Bible
8571       8571 King James Version Bible
8572       8572 King James Version Bible
8573       8573 King James Version Bible
8574       8574 King James Version Bible
8575       8575 King James Version Bible
8576       8576 King James Version Bible
8577       8577 King James Version Bible
8578       8578 King James Version Bible
8579       8579 King James Version Bible
8580       8580 King James Version Bible
8581       8581 King James Version Bible
8582       8582 King James Version Bible
8583       8583 King James Version Bible
8584       8584 King James Version Bible
8585       8585 King James Version Bible
8586       8586 King James Version Bible
8587       8587 King James Version Bible
8588       8588 King James Version Bible
8589       8589 King James Version Bible
8590       8590 King James Version Bible
8591       8591 King James Version Bible
8592       8592 King James Version Bible
8593       8593 King James Version Bible
8594       8594 King James Version Bible
8595       8595 King James Version Bible
8596       8596 King James Version Bible
8597       8597 King James Version Bible
8598       8598 King James Version Bible
8599       8599 King James Version Bible
8600       8600 King James Version Bible
8601       8601 King James Version Bible
8602       8602 King James Version Bible
8603       8603 King James Version Bible
8604       8604 King James Version Bible
8605       8605 King James Version Bible
8606       8606 King James Version Bible
8607       8607 King James Version Bible
8608       8608 King James Version Bible
8609       8609 King James Version Bible
8610       8610 King James Version Bible
8611       8611 King James Version Bible
8612       8612 King James Version Bible
8613       8613 King James Version Bible
8614       8614 King James Version Bible
8615       8615 King James Version Bible
8616       8616 King James Version Bible
8617       8617 King James Version Bible
8618       8618 King James Version Bible
8619       8619 King James Version Bible
8620       8620 King James Version Bible
8621       8621 King James Version Bible
8622       8622 King James Version Bible
8623       8623 King James Version Bible
8624       8624 King James Version Bible
8625       8625 King James Version Bible
8626       8626 King James Version Bible
8627       8627 King James Version Bible
8628       8628 King James Version Bible
8629       8629 King James Version Bible
8630       8630 King James Version Bible
8631       8631 King James Version Bible
8632       8632 King James Version Bible
8633       8633 King James Version Bible
8634       8634 King James Version Bible
8635       8635 King James Version Bible
8636       8636 King James Version Bible
8637       8637 King James Version Bible
8638       8638 King James Version Bible
8639       8639 King James Version Bible
8640       8640 King James Version Bible
8641       8641 King James Version Bible
8642       8642 King James Version Bible
8643       8643 King James Version Bible
8644       8644 King James Version Bible
8645       8645 King James Version Bible
8646       8646 King James Version Bible
8647       8647 King James Version Bible
8648       8648 King James Version Bible
8649       8649 King James Version Bible
8650       8650 King James Version Bible
8651       8651 King James Version Bible
8652       8652 King James Version Bible
8653       8653 King James Version Bible
8654       8654 King James Version Bible
8655       8655 King James Version Bible
8656       8656 King James Version Bible
8657       8657 King James Version Bible
8658       8658 King James Version Bible
8659       8659 King James Version Bible
8660       8660 King James Version Bible
8661       8661 King James Version Bible
8662       8662 King James Version Bible
8663       8663 King James Version Bible
8664       8664 King James Version Bible
8665       8665 King James Version Bible
8666       8666 King James Version Bible
8667       8667 King James Version Bible
8668       8668 King James Version Bible
8669       8669 King James Version Bible
8670       8670 King James Version Bible
8671       8671 King James Version Bible
8672       8672 King James Version Bible
8673       8673 King James Version Bible
8674       8674 King James Version Bible
8675       8675 King James Version Bible
8676       8676 King James Version Bible
8677       8677 King James Version Bible
8678       8678 King James Version Bible
8679       8679 King James Version Bible
8680       8680 King James Version Bible
8681       8681 King James Version Bible
8682       8682 King James Version Bible
8683       8683 King James Version Bible
8684       8684 King James Version Bible
8685       8685 King James Version Bible
8686       8686 King James Version Bible
8687       8687 King James Version Bible
8688       8688 King James Version Bible
8689       8689 King James Version Bible
8690       8690 King James Version Bible
8691       8691 King James Version Bible
8692       8692 King James Version Bible
8693       8693 King James Version Bible
8694       8694 King James Version Bible
8695       8695 King James Version Bible
8696       8696 King James Version Bible
8697       8697 King James Version Bible
8698       8698 King James Version Bible
8699       8699 King James Version Bible
8700       8700 King James Version Bible
8701       8701 King James Version Bible
8702       8702 King James Version Bible
8703       8703 King James Version Bible
8704       8704 King James Version Bible
8705       8705 King James Version Bible
8706       8706 King James Version Bible
8707       8707 King James Version Bible
8708       8708 King James Version Bible
8709       8709 King James Version Bible
8710       8710 King James Version Bible
8711       8711 King James Version Bible
8712       8712 King James Version Bible
8713       8713 King James Version Bible
8714       8714 King James Version Bible
8715       8715 King James Version Bible
8716       8716 King James Version Bible
8717       8717 King James Version Bible
8718       8718 King James Version Bible
8719       8719 King James Version Bible
8720       8720 King James Version Bible
8721       8721 King James Version Bible
8722       8722 King James Version Bible
8723       8723 King James Version Bible
8724       8724 King James Version Bible
8725       8725 King James Version Bible
8726       8726 King James Version Bible
8727       8727 King James Version Bible
8728       8728 King James Version Bible
8729       8729 King James Version Bible
8730       8730 King James Version Bible
8731       8731 King James Version Bible
8732       8732 King James Version Bible
8733       8733 King James Version Bible
8734       8734 King James Version Bible
8735       8735 King James Version Bible
8736       8736 King James Version Bible
8737       8737 King James Version Bible
8738       8738 King James Version Bible
8739       8739 King James Version Bible
8740       8740 King James Version Bible
8741       8741 King James Version Bible
8742       8742 King James Version Bible
8743       8743 King James Version Bible
8744       8744 King James Version Bible
8745       8745 King James Version Bible
8746       8746 King James Version Bible
8747       8747 King James Version Bible
8748       8748 King James Version Bible
8749       8749 King James Version Bible
8750       8750 King James Version Bible
8751       8751 King James Version Bible
8752       8752 King James Version Bible
8753       8753 King James Version Bible
8754       8754 King James Version Bible
8755       8755 King James Version Bible
8756       8756 King James Version Bible
8757       8757 King James Version Bible
8758       8758 King James Version Bible
8759       8759 King James Version Bible
8760       8760 King James Version Bible
8761       8761 King James Version Bible
8762       8762 King James Version Bible
8763       8763 King James Version Bible
8764       8764 King James Version Bible
8765       8765 King James Version Bible
8766       8766 King James Version Bible
8767       8767 King James Version Bible
8768       8768 King James Version Bible
8769       8769 King James Version Bible
8770       8770 King James Version Bible
8771       8771 King James Version Bible
8772       8772 King James Version Bible
8773       8773 King James Version Bible
8774       8774 King James Version Bible
8775       8775 King James Version Bible
8776       8776 King James Version Bible
8777       8777 King James Version Bible
8778       8778 King James Version Bible
8779       8779 King James Version Bible
8780       8780 King James Version Bible
8781       8781 King James Version Bible
8782       8782 King James Version Bible
8783       8783 King James Version Bible
8784       8784 King James Version Bible
8785       8785 King James Version Bible
8786       8786 King James Version Bible
8787       8787 King James Version Bible
8788       8788 King James Version Bible
8789       8789 King James Version Bible
8790       8790 King James Version Bible
8791       8791 King James Version Bible
8792       8792 King James Version Bible
8793       8793 King James Version Bible
8794       8794 King James Version Bible
8795       8795 King James Version Bible
8796       8796 King James Version Bible
8797       8797 King James Version Bible
8798       8798 King James Version Bible
8799       8799 King James Version Bible
8800       8800 King James Version Bible
8801       8801 King James Version Bible
8802       8802 King James Version Bible
8803       8803 King James Version Bible
8804       8804 King James Version Bible
8805       8805 King James Version Bible
8806       8806 King James Version Bible
8807       8807 King James Version Bible
8808       8808 King James Version Bible
8809       8809 King James Version Bible
8810       8810 King James Version Bible
8811       8811 King James Version Bible
8812       8812 King James Version Bible
8813       8813 King James Version Bible
8814       8814 King James Version Bible
8815       8815 King James Version Bible
8816       8816 King James Version Bible
8817       8817 King James Version Bible
8818       8818 King James Version Bible
8819       8819 King James Version Bible
8820       8820 King James Version Bible
8821       8821 King James Version Bible
8822       8822 King James Version Bible
8823       8823 King James Version Bible
8824       8824 King James Version Bible
8825       8825 King James Version Bible
8826       8826 King James Version Bible
8827       8827 King James Version Bible
8828       8828 King James Version Bible
8829       8829 King James Version Bible
8830       8830 King James Version Bible
8831       8831 King James Version Bible
8832       8832 King James Version Bible
8833       8833 King James Version Bible
8834       8834 King James Version Bible
8835       8835 King James Version Bible
8836       8836 King James Version Bible
8837       8837 King James Version Bible
8838       8838 King James Version Bible
8839       8839 King James Version Bible
8840       8840 King James Version Bible
8841       8841 King James Version Bible
8842       8842 King James Version Bible
8843       8843 King James Version Bible
8844       8844 King James Version Bible
8845       8845 King James Version Bible
8846       8846 King James Version Bible
8847       8847 King James Version Bible
8848       8848 King James Version Bible
8849       8849 King James Version Bible
8850       8850 King James Version Bible
8851       8851 King James Version Bible
8852       8852 King James Version Bible
8853       8853 King James Version Bible
8854       8854 King James Version Bible
8855       8855 King James Version Bible
8856       8856 King James Version Bible
8857       8857 King James Version Bible
8858       8858 King James Version Bible
8859       8859 King James Version Bible
8860       8860 King James Version Bible
8861       8861 King James Version Bible
8862       8862 King James Version Bible
8863       8863 King James Version Bible
8864       8864 King James Version Bible
8865       8865 King James Version Bible
8866       8866 King James Version Bible
8867       8867 King James Version Bible
8868       8868 King James Version Bible
8869       8869 King James Version Bible
8870       8870 King James Version Bible
8871       8871 King James Version Bible
8872       8872 King James Version Bible
8873       8873 King James Version Bible
8874       8874 King James Version Bible
8875       8875 King James Version Bible
8876       8876 King James Version Bible
8877       8877 King James Version Bible
8878       8878 King James Version Bible
8879       8879 King James Version Bible
8880       8880 King James Version Bible
8881       8881 King James Version Bible
8882       8882 King James Version Bible
8883       8883 King James Version Bible
8884       8884 King James Version Bible
8885       8885 King James Version Bible
8886       8886 King James Version Bible
8887       8887 King James Version Bible
8888       8888 King James Version Bible
8889       8889 King James Version Bible
8890       8890 King James Version Bible
8891       8891 King James Version Bible
8892       8892 King James Version Bible
8893       8893 King James Version Bible
8894       8894 King James Version Bible
8895       8895 King James Version Bible
8896       8896 King James Version Bible
8897       8897 King James Version Bible
8898       8898 King James Version Bible
8899       8899 King James Version Bible
8900       8900 King James Version Bible
8901       8901 King James Version Bible
8902       8902 King James Version Bible
8903       8903 King James Version Bible
8904       8904 King James Version Bible
8905       8905 King James Version Bible
8906       8906 King James Version Bible
8907       8907 King James Version Bible
8908       8908 King James Version Bible
8909       8909 King James Version Bible
8910       8910 King James Version Bible
8911       8911 King James Version Bible
8912       8912 King James Version Bible
8913       8913 King James Version Bible
8914       8914 King James Version Bible
8915       8915 King James Version Bible
8916       8916 King James Version Bible
8917       8917 King James Version Bible
8918       8918 King James Version Bible
8919       8919 King James Version Bible
8920       8920 King James Version Bible
8921       8921 King James Version Bible
8922       8922 King James Version Bible
8923       8923 King James Version Bible
8924       8924 King James Version Bible
8925       8925 King James Version Bible
8926       8926 King James Version Bible
8927       8927 King James Version Bible
8928       8928 King James Version Bible
8929       8929 King James Version Bible
8930       8930 King James Version Bible
8931       8931 King James Version Bible
8932       8932 King James Version Bible
8933       8933 King James Version Bible
8934       8934 King James Version Bible
8935       8935 King James Version Bible
8936       8936 King James Version Bible
8937       8937 King James Version Bible
8938       8938 King James Version Bible
8939       8939 King James Version Bible
8940       8940 King James Version Bible
8941       8941 King James Version Bible
8942       8942 King James Version Bible
8943       8943 King James Version Bible
8944       8944 King James Version Bible
8945       8945 King James Version Bible
8946       8946 King James Version Bible
8947       8947 King James Version Bible
8948       8948 King James Version Bible
8949       8949 King James Version Bible
8950       8950 King James Version Bible
8951       8951 King James Version Bible
8952       8952 King James Version Bible
8953       8953 King James Version Bible
8954       8954 King James Version Bible
8955       8955 King James Version Bible
8956       8956 King James Version Bible
8957       8957 King James Version Bible
8958       8958 King James Version Bible
8959       8959 King James Version Bible
8960       8960 King James Version Bible
8961       8961 King James Version Bible
8962       8962 King James Version Bible
8963       8963 King James Version Bible
8964       8964 King James Version Bible
8965       8965 King James Version Bible
8966       8966 King James Version Bible
8967       8967 King James Version Bible
8968       8968 King James Version Bible
8969       8969 King James Version Bible
8970       8970 King James Version Bible
8971       8971 King James Version Bible
8972       8972 King James Version Bible
8973       8973 King James Version Bible
8974       8974 King James Version Bible
8975       8975 King James Version Bible
8976       8976 King James Version Bible
8977       8977 King James Version Bible
8978       8978 King James Version Bible
8979       8979 King James Version Bible
8980       8980 King James Version Bible
8981       8981 King James Version Bible
8982       8982 King James Version Bible
8983       8983 King James Version Bible
8984       8984 King James Version Bible
8985       8985 King James Version Bible
8986       8986 King James Version Bible
8987       8987 King James Version Bible
8988       8988 King James Version Bible
8989       8989 King James Version Bible
8990       8990 King James Version Bible
8991       8991 King James Version Bible
8992       8992 King James Version Bible
8993       8993 King James Version Bible
8994       8994 King James Version Bible
8995       8995 King James Version Bible
8996       8996 King James Version Bible
8997       8997 King James Version Bible
8998       8998 King James Version Bible
8999       8999 King James Version Bible
9000       9000 King James Version Bible
9001       9001 King James Version Bible
9002       9002 King James Version Bible
9003       9003 King James Version Bible
9004       9004 King James Version Bible
9005       9005 King James Version Bible
9006       9006 King James Version Bible
9007       9007 King James Version Bible
9008       9008 King James Version Bible
9009       9009 King James Version Bible
9010       9010 King James Version Bible
9011       9011 King James Version Bible
9012       9012 King James Version Bible
9013       9013 King James Version Bible
9014       9014 King James Version Bible
9015       9015 King James Version Bible
9016       9016 King James Version Bible
9017       9017 King James Version Bible
9018       9018 King James Version Bible
9019       9019 King James Version Bible
9020       9020 King James Version Bible
9021       9021 King James Version Bible
9022       9022 King James Version Bible
9023       9023 King James Version Bible
9024       9024 King James Version Bible
9025       9025 King James Version Bible
9026       9026 King James Version Bible
9027       9027 King James Version Bible
9028       9028 King James Version Bible
9029       9029 King James Version Bible
9030       9030 King James Version Bible
9031       9031 King James Version Bible
9032       9032 King James Version Bible
9033       9033 King James Version Bible
9034       9034 King James Version Bible
9035       9035 King James Version Bible
9036       9036 King James Version Bible
9037       9037 King James Version Bible
9038       9038 King James Version Bible
9039       9039 King James Version Bible
9040       9040 King James Version Bible
9041       9041 King James Version Bible
9042       9042 King James Version Bible
9043       9043 King James Version Bible
9044       9044 King James Version Bible
9045       9045 King James Version Bible
9046       9046 King James Version Bible
9047       9047 King James Version Bible
9048       9048 King James Version Bible
9049       9049 King James Version Bible
9050       9050 King James Version Bible
9051       9051 King James Version Bible
9052       9052 King James Version Bible
9053       9053 King James Version Bible
9054       9054 King James Version Bible
9055       9055 King James Version Bible
9056       9056 King James Version Bible
9057       9057 King James Version Bible
9058       9058 King James Version Bible
9059       9059 King James Version Bible
9060       9060 King James Version Bible
9061       9061 King James Version Bible
9062       9062 King James Version Bible
9063       9063 King James Version Bible
9064       9064 King James Version Bible
9065       9065 King James Version Bible
9066       9066 King James Version Bible
9067       9067 King James Version Bible
9068       9068 King James Version Bible
9069       9069 King James Version Bible
9070       9070 King James Version Bible
9071       9071 King James Version Bible
9072       9072 King James Version Bible
9073       9073 King James Version Bible
9074       9074 King James Version Bible
9075       9075 King James Version Bible
9076       9076 King James Version Bible
9077       9077 King James Version Bible
9078       9078 King James Version Bible
9079       9079 King James Version Bible
9080       9080 King James Version Bible
9081       9081 King James Version Bible
9082       9082 King James Version Bible
9083       9083 King James Version Bible
9084       9084 King James Version Bible
9085       9085 King James Version Bible
9086       9086 King James Version Bible
9087       9087 King James Version Bible
9088       9088 King James Version Bible
9089       9089 King James Version Bible
9090       9090 King James Version Bible
9091       9091 King James Version Bible
9092       9092 King James Version Bible
9093       9093 King James Version Bible
9094       9094 King James Version Bible
9095       9095 King James Version Bible
9096       9096 King James Version Bible
9097       9097 King James Version Bible
9098       9098 King James Version Bible
9099       9099 King James Version Bible
9100       9100 King James Version Bible
9101       9101 King James Version Bible
9102       9102 King James Version Bible
9103       9103 King James Version Bible
9104       9104 King James Version Bible
9105       9105 King James Version Bible
9106       9106 King James Version Bible
9107       9107 King James Version Bible
9108       9108 King James Version Bible
9109       9109 King James Version Bible
9110       9110 King James Version Bible
9111       9111 King James Version Bible
9112       9112 King James Version Bible
9113       9113 King James Version Bible
9114       9114 King James Version Bible
9115       9115 King James Version Bible
9116       9116 King James Version Bible
9117       9117 King James Version Bible
9118       9118 King James Version Bible
9119       9119 King James Version Bible
9120       9120 King James Version Bible
9121       9121 King James Version Bible
9122       9122 King James Version Bible
9123       9123 King James Version Bible
9124       9124 King James Version Bible
9125       9125 King James Version Bible
9126       9126 King James Version Bible
9127       9127 King James Version Bible
9128       9128 King James Version Bible
9129       9129 King James Version Bible
9130       9130 King James Version Bible
9131       9131 King James Version Bible
9132       9132 King James Version Bible
9133       9133 King James Version Bible
9134       9134 King James Version Bible
9135       9135 King James Version Bible
9136       9136 King James Version Bible
9137       9137 King James Version Bible
9138       9138 King James Version Bible
9139       9139 King James Version Bible
9140       9140 King James Version Bible
9141       9141 King James Version Bible
9142       9142 King James Version Bible
9143       9143 King James Version Bible
9144       9144 King James Version Bible
9145       9145 King James Version Bible
9146       9146 King James Version Bible
9147       9147 King James Version Bible
9148       9148 King James Version Bible
9149       9149 King James Version Bible
9150       9150 King James Version Bible
9151       9151 King James Version Bible
9152       9152 King James Version Bible
9153       9153 King James Version Bible
9154       9154 King James Version Bible
9155       9155 King James Version Bible
9156       9156 King James Version Bible
9157       9157 King James Version Bible
9158       9158 King James Version Bible
9159       9159 King James Version Bible
9160       9160 King James Version Bible
9161       9161 King James Version Bible
9162       9162 King James Version Bible
9163       9163 King James Version Bible
9164       9164 King James Version Bible
9165       9165 King James Version Bible
9166       9166 King James Version Bible
9167       9167 King James Version Bible
9168       9168 King James Version Bible
9169       9169 King James Version Bible
9170       9170 King James Version Bible
9171       9171 King James Version Bible
9172       9172 King James Version Bible
9173       9173 King James Version Bible
9174       9174 King James Version Bible
9175       9175 King James Version Bible
9176       9176 King James Version Bible
9177       9177 King James Version Bible
9178       9178 King James Version Bible
9179       9179 King James Version Bible
9180       9180 King James Version Bible
9181       9181 King James Version Bible
9182       9182 King James Version Bible
9183       9183 King James Version Bible
9184       9184 King James Version Bible
9185       9185 King James Version Bible
9186       9186 King James Version Bible
9187       9187 King James Version Bible
9188       9188 King James Version Bible
9189       9189 King James Version Bible
9190       9190 King James Version Bible
9191       9191 King James Version Bible
9192       9192 King James Version Bible
9193       9193 King James Version Bible
9194       9194 King James Version Bible
9195       9195 King James Version Bible
9196       9196 King James Version Bible
9197       9197 King James Version Bible
9198       9198 King James Version Bible
9199       9199 King James Version Bible
9200       9200 King James Version Bible
9201       9201 King James Version Bible
9202       9202 King James Version Bible
9203       9203 King James Version Bible
9204       9204 King James Version Bible
9205       9205 King James Version Bible
9206       9206 King James Version Bible
9207       9207 King James Version Bible
9208       9208 King James Version Bible
9209       9209 King James Version Bible
9210       9210 King James Version Bible
9211       9211 King James Version Bible
9212       9212 King James Version Bible
9213       9213 King James Version Bible
9214       9214 King James Version Bible
9215       9215 King James Version Bible
9216       9216 King James Version Bible
9217       9217 King James Version Bible
9218       9218 King James Version Bible
9219       9219 King James Version Bible
9220       9220 King James Version Bible
9221       9221 King James Version Bible
9222       9222 King James Version Bible
9223       9223 King James Version Bible
9224       9224 King James Version Bible
9225       9225 King James Version Bible
9226       9226 King James Version Bible
9227       9227 King James Version Bible
9228       9228 King James Version Bible
9229       9229 King James Version Bible
9230       9230 King James Version Bible
9231       9231 King James Version Bible
9232       9232 King James Version Bible
9233       9233 King James Version Bible
9234       9234 King James Version Bible
9235       9235 King James Version Bible
9236       9236 King James Version Bible
9237       9237 King James Version Bible
9238       9238 King James Version Bible
9239       9239 King James Version Bible
9240       9240 King James Version Bible
9241       9241 King James Version Bible
9242       9242 King James Version Bible
9243       9243 King James Version Bible
9244       9244 King James Version Bible
9245       9245 King James Version Bible
9246       9246 King James Version Bible
9247       9247 King James Version Bible
9248       9248 King James Version Bible
9249       9249 King James Version Bible
9250       9250 King James Version Bible
9251       9251 King James Version Bible
9252       9252 King James Version Bible
9253       9253 King James Version Bible
9254       9254 King James Version Bible
9255       9255 King James Version Bible
9256       9256 King James Version Bible
9257       9257 King James Version Bible
9258       9258 King James Version Bible
9259       9259 King James Version Bible
9260       9260 King James Version Bible
9261       9261 King James Version Bible
9262       9262 King James Version Bible
9263       9263 King James Version Bible
9264       9264 King James Version Bible
9265       9265 King James Version Bible
9266       9266 King James Version Bible
9267       9267 King James Version Bible
9268       9268 King James Version Bible
9269       9269 King James Version Bible
9270       9270 King James Version Bible
9271       9271 King James Version Bible
9272       9272 King James Version Bible
9273       9273 King James Version Bible
9274       9274 King James Version Bible
9275       9275 King James Version Bible
9276       9276 King James Version Bible
9277       9277 King James Version Bible
9278       9278 King James Version Bible
9279       9279 King James Version Bible
9280       9280 King James Version Bible
9281       9281 King James Version Bible
9282       9282 King James Version Bible
9283       9283 King James Version Bible
9284       9284 King James Version Bible
9285       9285 King James Version Bible
9286       9286 King James Version Bible
9287       9287 King James Version Bible
9288       9288 King James Version Bible
9289       9289 King James Version Bible
9290       9290 King James Version Bible
9291       9291 King James Version Bible
9292       9292 King James Version Bible
9293       9293 King James Version Bible
9294       9294 King James Version Bible
9295       9295 King James Version Bible
9296       9296 King James Version Bible
9297       9297 King James Version Bible
9298       9298 King James Version Bible
9299       9299 King James Version Bible
9300       9300 King James Version Bible
9301       9301 King James Version Bible
9302       9302 King James Version Bible
9303       9303 King James Version Bible
9304       9304 King James Version Bible
9305       9305 King James Version Bible
9306       9306 King James Version Bible
9307       9307 King James Version Bible
9308       9308 King James Version Bible
9309       9309 King James Version Bible
9310       9310 King James Version Bible
9311       9311 King James Version Bible
9312       9312 King James Version Bible
9313       9313 King James Version Bible
9314       9314 King James Version Bible
9315       9315 King James Version Bible
9316       9316 King James Version Bible
9317       9317 King James Version Bible
9318       9318 King James Version Bible
9319       9319 King James Version Bible
9320       9320 King James Version Bible
9321       9321 King James Version Bible
9322       9322 King James Version Bible
9323       9323 King James Version Bible
9324       9324 King James Version Bible
9325       9325 King James Version Bible
9326       9326 King James Version Bible
9327       9327 King James Version Bible
9328       9328 King James Version Bible
9329       9329 King James Version Bible
9330       9330 King James Version Bible
9331       9331 King James Version Bible
9332       9332 King James Version Bible
9333       9333 King James Version Bible
9334       9334 King James Version Bible
9335       9335 King James Version Bible
9336       9336 King James Version Bible
9337       9337 King James Version Bible
9338       9338 King James Version Bible
9339       9339 King James Version Bible
9340       9340 King James Version Bible
9341       9341 King James Version Bible
9342       9342 King James Version Bible
9343       9343 King James Version Bible
9344       9344 King James Version Bible
9345       9345 King James Version Bible
9346       9346 King James Version Bible
9347       9347 King James Version Bible
9348       9348 King James Version Bible
9349       9349 King James Version Bible
9350       9350 King James Version Bible
9351       9351 King James Version Bible
9352       9352 King James Version Bible
9353       9353 King James Version Bible
9354       9354 King James Version Bible
9355       9355 King James Version Bible
9356       9356 King James Version Bible
9357       9357 King James Version Bible
9358       9358 King James Version Bible
9359       9359 King James Version Bible
9360       9360 King James Version Bible
9361       9361 King James Version Bible
9362       9362 King James Version Bible
9363       9363 King James Version Bible
9364       9364 King James Version Bible
9365       9365 King James Version Bible
9366       9366 King James Version Bible
9367       9367 King James Version Bible
9368       9368 King James Version Bible
9369       9369 King James Version Bible
9370       9370 King James Version Bible
9371       9371 King James Version Bible
9372       9372 King James Version Bible
9373       9373 King James Version Bible
9374       9374 King James Version Bible
9375       9375 King James Version Bible
9376       9376 King James Version Bible
9377       9377 King James Version Bible
9378       9378 King James Version Bible
9379       9379 King James Version Bible
9380       9380 King James Version Bible
9381       9381 King James Version Bible
9382       9382 King James Version Bible
9383       9383 King James Version Bible
9384       9384 King James Version Bible
9385       9385 King James Version Bible
9386       9386 King James Version Bible
9387       9387 King James Version Bible
9388       9388 King James Version Bible
9389       9389 King James Version Bible
9390       9390 King James Version Bible
9391       9391 King James Version Bible
9392       9392 King James Version Bible
9393       9393 King James Version Bible
9394       9394 King James Version Bible
9395       9395 King James Version Bible
9396       9396 King James Version Bible
9397       9397 King James Version Bible
9398       9398 King James Version Bible
9399       9399 King James Version Bible
9400       9400 King James Version Bible
9401       9401 King James Version Bible
9402       9402 King James Version Bible
9403       9403 King James Version Bible
9404       9404 King James Version Bible
9405       9405 King James Version Bible
9406       9406 King James Version Bible
9407       9407 King James Version Bible
9408       9408 King James Version Bible
9409       9409 King James Version Bible
9410       9410 King James Version Bible
9411       9411 King James Version Bible
9412       9412 King James Version Bible
9413       9413 King James Version Bible
9414       9414 King James Version Bible
9415       9415 King James Version Bible
9416       9416 King James Version Bible
9417       9417 King James Version Bible
9418       9418 King James Version Bible
9419       9419 King James Version Bible
9420       9420 King James Version Bible
9421       9421 King James Version Bible
9422       9422 King James Version Bible
9423       9423 King James Version Bible
9424       9424 King James Version Bible
9425       9425 King James Version Bible
9426       9426 King James Version Bible
9427       9427 King James Version Bible
9428       9428 King James Version Bible
9429       9429 King James Version Bible
9430       9430 King James Version Bible
9431       9431 King James Version Bible
9432       9432 King James Version Bible
9433       9433 King James Version Bible
9434       9434 King James Version Bible
9435       9435 King James Version Bible
9436       9436 King James Version Bible
9437       9437 King James Version Bible
9438       9438 King James Version Bible
9439       9439 King James Version Bible
9440       9440 King James Version Bible
9441       9441 King James Version Bible
9442       9442 King James Version Bible
9443       9443 King James Version Bible
9444       9444 King James Version Bible
9445       9445 King James Version Bible
9446       9446 King James Version Bible
9447       9447 King James Version Bible
9448       9448 King James Version Bible
9449       9449 King James Version Bible
9450       9450 King James Version Bible
9451       9451 King James Version Bible
9452       9452 King James Version Bible
9453       9453 King James Version Bible
9454       9454 King James Version Bible
9455       9455 King James Version Bible
9456       9456 King James Version Bible
9457       9457 King James Version Bible
9458       9458 King James Version Bible
9459       9459 King James Version Bible
9460       9460 King James Version Bible
9461       9461 King James Version Bible
9462       9462 King James Version Bible
9463       9463 King James Version Bible
9464       9464 King James Version Bible
9465       9465 King James Version Bible
9466       9466 King James Version Bible
9467       9467 King James Version Bible
9468       9468 King James Version Bible
9469       9469 King James Version Bible
9470       9470 King James Version Bible
9471       9471 King James Version Bible
9472       9472 King James Version Bible
9473       9473 King James Version Bible
9474       9474 King James Version Bible
9475       9475 King James Version Bible
9476       9476 King James Version Bible
9477       9477 King James Version Bible
9478       9478 King James Version Bible
9479       9479 King James Version Bible
9480       9480 King James Version Bible
9481       9481 King James Version Bible
9482       9482 King James Version Bible
9483       9483 King James Version Bible
9484       9484 King James Version Bible
9485       9485 King James Version Bible
9486       9486 King James Version Bible
9487       9487 King James Version Bible
9488       9488 King James Version Bible
9489       9489 King James Version Bible
9490       9490 King James Version Bible
9491       9491 King James Version Bible
9492       9492 King James Version Bible
9493       9493 King James Version Bible
9494       9494 King James Version Bible
9495       9495 King James Version Bible
9496       9496 King James Version Bible
9497       9497 King James Version Bible
9498       9498 King James Version Bible
9499       9499 King James Version Bible
9500       9500 King James Version Bible
9501       9501 King James Version Bible
9502       9502 King James Version Bible
9503       9503 King James Version Bible
9504       9504 King James Version Bible
9505       9505 King James Version Bible
9506       9506 King James Version Bible
9507       9507 King James Version Bible
9508       9508 King James Version Bible
9509       9509 King James Version Bible
9510       9510 King James Version Bible
9511       9511 King James Version Bible
9512       9512 King James Version Bible
9513       9513 King James Version Bible
9514       9514 King James Version Bible
9515       9515 King James Version Bible
9516       9516 King James Version Bible
9517       9517 King James Version Bible
9518       9518 King James Version Bible
9519       9519 King James Version Bible
9520       9520 King James Version Bible
9521       9521 King James Version Bible
9522       9522 King James Version Bible
9523       9523 King James Version Bible
9524       9524 King James Version Bible
9525       9525 King James Version Bible
9526       9526 King James Version Bible
9527       9527 King James Version Bible
9528       9528 King James Version Bible
9529       9529 King James Version Bible
9530       9530 King James Version Bible
9531       9531 King James Version Bible
9532       9532 King James Version Bible
9533       9533 King James Version Bible
9534       9534 King James Version Bible
9535       9535 King James Version Bible
9536       9536 King James Version Bible
9537       9537 King James Version Bible
9538       9538 King James Version Bible
9539       9539 King James Version Bible
9540       9540 King James Version Bible
9541       9541 King James Version Bible
9542       9542 King James Version Bible
9543       9543 King James Version Bible
9544       9544 King James Version Bible
9545       9545 King James Version Bible
9546       9546 King James Version Bible
9547       9547 King James Version Bible
9548       9548 King James Version Bible
9549       9549 King James Version Bible
9550       9550 King James Version Bible
9551       9551 King James Version Bible
9552       9552 King James Version Bible
9553       9553 King James Version Bible
9554       9554 King James Version Bible
9555       9555 King James Version Bible
9556       9556 King James Version Bible
9557       9557 King James Version Bible
9558       9558 King James Version Bible
9559       9559 King James Version Bible
9560       9560 King James Version Bible
9561       9561 King James Version Bible
9562       9562 King James Version Bible
9563       9563 King James Version Bible
9564       9564 King James Version Bible
9565       9565 King James Version Bible
9566       9566 King James Version Bible
9567       9567 King James Version Bible
9568       9568 King James Version Bible
9569       9569 King James Version Bible
9570       9570 King James Version Bible
9571       9571 King James Version Bible
9572       9572 King James Version Bible
9573       9573 King James Version Bible
9574       9574 King James Version Bible
9575       9575 King James Version Bible
9576       9576 King James Version Bible
9577       9577 King James Version Bible
9578       9578 King James Version Bible
9579       9579 King James Version Bible
9580       9580 King James Version Bible
9581       9581 King James Version Bible
9582       9582 King James Version Bible
9583       9583 King James Version Bible
9584       9584 King James Version Bible
9585       9585 King James Version Bible
9586       9586 King James Version Bible
9587       9587 King James Version Bible
9588       9588 King James Version Bible
9589       9589 King James Version Bible
9590       9590 King James Version Bible
9591       9591 King James Version Bible
9592       9592 King James Version Bible
9593       9593 King James Version Bible
9594       9594 King James Version Bible
9595       9595 King James Version Bible
9596       9596 King James Version Bible
9597       9597 King James Version Bible
9598       9598 King James Version Bible
9599       9599 King James Version Bible
9600       9600 King James Version Bible
9601       9601 King James Version Bible
9602       9602 King James Version Bible
9603       9603 King James Version Bible
9604       9604 King James Version Bible
9605       9605 King James Version Bible
9606       9606 King James Version Bible
9607       9607 King James Version Bible
9608       9608 King James Version Bible
9609       9609 King James Version Bible
9610       9610 King James Version Bible
9611       9611 King James Version Bible
9612       9612 King James Version Bible
9613       9613 King James Version Bible
9614       9614 King James Version Bible
9615       9615 King James Version Bible
9616       9616 King James Version Bible
9617       9617 King James Version Bible
9618       9618 King James Version Bible
9619       9619 King James Version Bible
9620       9620 King James Version Bible
9621       9621 King James Version Bible
9622       9622 King James Version Bible
9623       9623 King James Version Bible
9624       9624 King James Version Bible
9625       9625 King James Version Bible
9626       9626 King James Version Bible
9627       9627 King James Version Bible
9628       9628 King James Version Bible
9629       9629 King James Version Bible
9630       9630 King James Version Bible
9631       9631 King James Version Bible
9632       9632 King James Version Bible
9633       9633 King James Version Bible
9634       9634 King James Version Bible
9635       9635 King James Version Bible
9636       9636 King James Version Bible
9637       9637 King James Version Bible
9638       9638 King James Version Bible
9639       9639 King James Version Bible
9640       9640 King James Version Bible
9641       9641 King James Version Bible
9642       9642 King James Version Bible
9643       9643 King James Version Bible
9644       9644 King James Version Bible
9645       9645 King James Version Bible
9646       9646 King James Version Bible
9647       9647 King James Version Bible
9648       9648 King James Version Bible
9649       9649 King James Version Bible
9650       9650 King James Version Bible
9651       9651 King James Version Bible
9652       9652 King James Version Bible
9653       9653 King James Version Bible
9654       9654 King James Version Bible
9655       9655 King James Version Bible
9656       9656 King James Version Bible
9657       9657 King James Version Bible
9658       9658 King James Version Bible
9659       9659 King James Version Bible
9660       9660 King James Version Bible
9661       9661 King James Version Bible
9662       9662 King James Version Bible
9663       9663 King James Version Bible
9664       9664 King James Version Bible
9665       9665 King James Version Bible
9666       9666 King James Version Bible
9667       9667 King James Version Bible
9668       9668 King James Version Bible
9669       9669 King James Version Bible
9670       9670 King James Version Bible
9671       9671 King James Version Bible
9672       9672 King James Version Bible
9673       9673 King James Version Bible
9674       9674 King James Version Bible
9675       9675 King James Version Bible
9676       9676 King James Version Bible
9677       9677 King James Version Bible
9678       9678 King James Version Bible
9679       9679 King James Version Bible
9680       9680 King James Version Bible
9681       9681 King James Version Bible
9682       9682 King James Version Bible
9683       9683 King James Version Bible
9684       9684 King James Version Bible
9685       9685 King James Version Bible
9686       9686 King James Version Bible
9687       9687 King James Version Bible
9688       9688 King James Version Bible
9689       9689 King James Version Bible
9690       9690 King James Version Bible
9691       9691 King James Version Bible
9692       9692 King James Version Bible
9693       9693 King James Version Bible
9694       9694 King James Version Bible
9695       9695 King James Version Bible
9696       9696 King James Version Bible
9697       9697 King James Version Bible
9698       9698 King James Version Bible
9699       9699 King James Version Bible
9700       9700 King James Version Bible
9701       9701 King James Version Bible
9702       9702 King James Version Bible
9703       9703 King James Version Bible
9704       9704 King James Version Bible
9705       9705 King James Version Bible
9706       9706 King James Version Bible
9707       9707 King James Version Bible
9708       9708 King James Version Bible
9709       9709 King James Version Bible
9710       9710 King James Version Bible
9711       9711 King James Version Bible
9712       9712 King James Version Bible
9713       9713 King James Version Bible
9714       9714 King James Version Bible
9715       9715 King James Version Bible
9716       9716 King James Version Bible
9717       9717 King James Version Bible
9718       9718 King James Version Bible
9719       9719 King James Version Bible
9720       9720 King James Version Bible
9721       9721 King James Version Bible
9722       9722 King James Version Bible
9723       9723 King James Version Bible
9724       9724 King James Version Bible
9725       9725 King James Version Bible
9726       9726 King James Version Bible
9727       9727 King James Version Bible
9728       9728 King James Version Bible
9729       9729 King James Version Bible
9730       9730 King James Version Bible
9731       9731 King James Version Bible
9732       9732 King James Version Bible
9733       9733 King James Version Bible
9734       9734 King James Version Bible
9735       9735 King James Version Bible
9736       9736 King James Version Bible
9737       9737 King James Version Bible
9738       9738 King James Version Bible
9739       9739 King James Version Bible
9740       9740 King James Version Bible
9741       9741 King James Version Bible
9742       9742 King James Version Bible
9743       9743 King James Version Bible
9744       9744 King James Version Bible
9745       9745 King James Version Bible
9746       9746 King James Version Bible
9747       9747 King James Version Bible
9748       9748 King James Version Bible
9749       9749 King James Version Bible
9750       9750 King James Version Bible
9751       9751 King James Version Bible
9752       9752 King James Version Bible
9753       9753 King James Version Bible
9754       9754 King James Version Bible
9755       9755 King James Version Bible
9756       9756 King James Version Bible
9757       9757 King James Version Bible
9758       9758 King James Version Bible
9759       9759 King James Version Bible
9760       9760 King James Version Bible
9761       9761 King James Version Bible
9762       9762 King James Version Bible
9763       9763 King James Version Bible
9764       9764 King James Version Bible
9765       9765 King James Version Bible
9766       9766 King James Version Bible
9767       9767 King James Version Bible
9768       9768 King James Version Bible
9769       9769 King James Version Bible
9770       9770 King James Version Bible
9771       9771 King James Version Bible
9772       9772 King James Version Bible
9773       9773 King James Version Bible
9774       9774 King James Version Bible
9775       9775 King James Version Bible
9776       9776 King James Version Bible
9777       9777 King James Version Bible
9778       9778 King James Version Bible
9779       9779 King James Version Bible
9780       9780 King James Version Bible
9781       9781 King James Version Bible
9782       9782 King James Version Bible
9783       9783 King James Version Bible
9784       9784 King James Version Bible
9785       9785 King James Version Bible
9786       9786 King James Version Bible
9787       9787 King James Version Bible
9788       9788 King James Version Bible
9789       9789 King James Version Bible
9790       9790 King James Version Bible
9791       9791 King James Version Bible
9792       9792 King James Version Bible
9793       9793 King James Version Bible
9794       9794 King James Version Bible
9795       9795 King James Version Bible
9796       9796 King James Version Bible
9797       9797 King James Version Bible
9798       9798 King James Version Bible
9799       9799 King James Version Bible
9800       9800 King James Version Bible
9801       9801 King James Version Bible
9802       9802 King James Version Bible
9803       9803 King James Version Bible
9804       9804 King James Version Bible
9805       9805 King James Version Bible
9806       9806 King James Version Bible
9807       9807 King James Version Bible
9808       9808 King James Version Bible
9809       9809 King James Version Bible
9810       9810 King James Version Bible
9811       9811 King James Version Bible
9812       9812 King James Version Bible
9813       9813 King James Version Bible
9814       9814 King James Version Bible
9815       9815 King James Version Bible
9816       9816 King James Version Bible
9817       9817 King James Version Bible
9818       9818 King James Version Bible
9819       9819 King James Version Bible
9820       9820 King James Version Bible
9821       9821 King James Version Bible
9822       9822 King James Version Bible
9823       9823 King James Version Bible
9824       9824 King James Version Bible
9825       9825 King James Version Bible
9826       9826 King James Version Bible
9827       9827 King James Version Bible
9828       9828 King James Version Bible
9829       9829 King James Version Bible
9830       9830 King James Version Bible
9831       9831 King James Version Bible
9832       9832 King James Version Bible
9833       9833 King James Version Bible
9834       9834 King James Version Bible
9835       9835 King James Version Bible
9836       9836 King James Version Bible
9837       9837 King James Version Bible
9838       9838 King James Version Bible
9839       9839 King James Version Bible
9840       9840 King James Version Bible
9841       9841 King James Version Bible
9842       9842 King James Version Bible
9843       9843 King James Version Bible
9844       9844 King James Version Bible
9845       9845 King James Version Bible
9846       9846 King James Version Bible
9847       9847 King James Version Bible
9848       9848 King James Version Bible
9849       9849 King James Version Bible
9850       9850 King James Version Bible
9851       9851 King James Version Bible
9852       9852 King James Version Bible
9853       9853 King James Version Bible
9854       9854 King James Version Bible
9855       9855 King James Version Bible
9856       9856 King James Version Bible
9857       9857 King James Version Bible
9858       9858 King James Version Bible
9859       9859 King James Version Bible
9860       9860 King James Version Bible
9861       9861 King James Version Bible
9862       9862 King James Version Bible
9863       9863 King James Version Bible
9864       9864 King James Version Bible
9865       9865 King James Version Bible
9866       9866 King James Version Bible
9867       9867 King James Version Bible
9868       9868 King James Version Bible
9869       9869 King James Version Bible
9870       9870 King James Version Bible
9871       9871 King James Version Bible
9872       9872 King James Version Bible
9873       9873 King James Version Bible
9874       9874 King James Version Bible
9875       9875 King James Version Bible
9876       9876 King James Version Bible
9877       9877 King James Version Bible
9878       9878 King James Version Bible
9879       9879 King James Version Bible
9880       9880 King James Version Bible
9881       9881 King James Version Bible
9882       9882 King James Version Bible
9883       9883 King James Version Bible
9884       9884 King James Version Bible
9885       9885 King James Version Bible
9886       9886 King James Version Bible
9887       9887 King James Version Bible
9888       9888 King James Version Bible
9889       9889 King James Version Bible
9890       9890 King James Version Bible
9891       9891 King James Version Bible
9892       9892 King James Version Bible
9893       9893 King James Version Bible
9894       9894 King James Version Bible
9895       9895 King James Version Bible
9896       9896 King James Version Bible
9897       9897 King James Version Bible
9898       9898 King James Version Bible
9899       9899 King James Version Bible
9900       9900 King James Version Bible
9901       9901 King James Version Bible
9902       9902 King James Version Bible
9903       9903 King James Version Bible
9904       9904 King James Version Bible
9905       9905 King James Version Bible
9906       9906 King James Version Bible
9907       9907 King James Version Bible
9908       9908 King James Version Bible
9909       9909 King James Version Bible
9910       9910 King James Version Bible
9911       9911 King James Version Bible
9912       9912 King James Version Bible
9913       9913 King James Version Bible
9914       9914 King James Version Bible
9915       9915 King James Version Bible
9916       9916 King James Version Bible
9917       9917 King James Version Bible
9918       9918 King James Version Bible
9919       9919 King James Version Bible
9920       9920 King James Version Bible
9921       9921 King James Version Bible
9922       9922 King James Version Bible
9923       9923 King James Version Bible
9924       9924 King James Version Bible
9925       9925 King James Version Bible
9926       9926 King James Version Bible
9927       9927 King James Version Bible
9928       9928 King James Version Bible
9929       9929 King James Version Bible
9930       9930 King James Version Bible
9931       9931 King James Version Bible
9932       9932 King James Version Bible
9933       9933 King James Version Bible
9934       9934 King James Version Bible
9935       9935 King James Version Bible
9936       9936 King James Version Bible
9937       9937 King James Version Bible
9938       9938 King James Version Bible
9939       9939 King James Version Bible
9940       9940 King James Version Bible
9941       9941 King James Version Bible
9942       9942 King James Version Bible
9943       9943 King James Version Bible
9944       9944 King James Version Bible
9945       9945 King James Version Bible
9946       9946 King James Version Bible
9947       9947 King James Version Bible
9948       9948 King James Version Bible
9949       9949 King James Version Bible
9950       9950 King James Version Bible
9951       9951 King James Version Bible
9952       9952 King James Version Bible
9953       9953 King James Version Bible
9954       9954 King James Version Bible
9955       9955 King James Version Bible
9956       9956 King James Version Bible
9957       9957 King James Version Bible
9958       9958 King James Version Bible
9959       9959 King James Version Bible
9960       9960 King James Version Bible
9961       9961 King James Version Bible
9962       9962 King James Version Bible
9963       9963 King James Version Bible
9964       9964 King James Version Bible
9965       9965 King James Version Bible
9966       9966 King James Version Bible
9967       9967 King James Version Bible
9968       9968 King James Version Bible
9969       9969 King James Version Bible
9970       9970 King James Version Bible
9971       9971 King James Version Bible
9972       9972 King James Version Bible
9973       9973 King James Version Bible
9974       9974 King James Version Bible
9975       9975 King James Version Bible
9976       9976 King James Version Bible
9977       9977 King James Version Bible
9978       9978 King James Version Bible
9979       9979 King James Version Bible
9980       9980 King James Version Bible
9981       9981 King James Version Bible
9982       9982 King James Version Bible
9983       9983 King James Version Bible
9984       9984 King James Version Bible
9985       9985 King James Version Bible
9986       9986 King James Version Bible
9987       9987 King James Version Bible
9988       9988 King James Version Bible
9989       9989 King James Version Bible
9990       9990 King James Version Bible
9991       9991 King James Version Bible
9992       9992 King James Version Bible
9993       9993 King James Version Bible
9994       9994 King James Version Bible
9995       9995 King James Version Bible
9996       9996 King James Version Bible
9997       9997 King James Version Bible
9998       9998 King James Version Bible
9999       9999 King James Version Bible
10000     10000 King James Version Bible
10001     10001 King James Version Bible
10002     10002 King James Version Bible
10003     10003 King James Version Bible
10004     10004 King James Version Bible
10005     10005 King James Version Bible
10006     10006 King James Version Bible
10007     10007 King James Version Bible
10008     10008 King James Version Bible
10009     10009 King James Version Bible
10010     10010 King James Version Bible
10011     10011 King James Version Bible
10012     10012 King James Version Bible
10013     10013 King James Version Bible
10014     10014 King James Version Bible
10015     10015 King James Version Bible
10016     10016 King James Version Bible
10017     10017 King James Version Bible
10018     10018 King James Version Bible
10019     10019 King James Version Bible
10020     10020 King James Version Bible
10021     10021 King James Version Bible
10022     10022 King James Version Bible
10023     10023 King James Version Bible
10024     10024 King James Version Bible
10025     10025 King James Version Bible
10026     10026 King James Version Bible
10027     10027 King James Version Bible
10028     10028 King James Version Bible
10029     10029 King James Version Bible
10030     10030 King James Version Bible
10031     10031 King James Version Bible
10032     10032 King James Version Bible
10033     10033 King James Version Bible
10034     10034 King James Version Bible
10035     10035 King James Version Bible
10036     10036 King James Version Bible
10037     10037 King James Version Bible
10038     10038 King James Version Bible
10039     10039 King James Version Bible
10040     10040 King James Version Bible
10041     10041 King James Version Bible
10042     10042 King James Version Bible
10043     10043 King James Version Bible
10044     10044 King James Version Bible
10045     10045 King James Version Bible
10046     10046 King James Version Bible
10047     10047 King James Version Bible
10048     10048 King James Version Bible
10049     10049 King James Version Bible
10050     10050 King James Version Bible
10051     10051 King James Version Bible
10052     10052 King James Version Bible
10053     10053 King James Version Bible
10054     10054 King James Version Bible
10055     10055 King James Version Bible
10056     10056 King James Version Bible
10057     10057 King James Version Bible
10058     10058 King James Version Bible
10059     10059 King James Version Bible
10060     10060 King James Version Bible
10061     10061 King James Version Bible
10062     10062 King James Version Bible
10063     10063 King James Version Bible
10064     10064 King James Version Bible
10065     10065 King James Version Bible
10066     10066 King James Version Bible
10067     10067 King James Version Bible
10068     10068 King James Version Bible
10069     10069 King James Version Bible
10070     10070 King James Version Bible
10071     10071 King James Version Bible
10072     10072 King James Version Bible
10073     10073 King James Version Bible
10074     10074 King James Version Bible
10075     10075 King James Version Bible
10076     10076 King James Version Bible
10077     10077 King James Version Bible
10078     10078 King James Version Bible
10079     10079 King James Version Bible
10080     10080 King James Version Bible
10081     10081 King James Version Bible
10082     10082 King James Version Bible
10083     10083 King James Version Bible
10084     10084 King James Version Bible
10085     10085 King James Version Bible
10086     10086 King James Version Bible
10087     10087 King James Version Bible
10088     10088 King James Version Bible
10089     10089 King James Version Bible
10090     10090 King James Version Bible
10091     10091 King James Version Bible
10092     10092 King James Version Bible
10093     10093 King James Version Bible
10094     10094 King James Version Bible
10095     10095 King James Version Bible
10096     10096 King James Version Bible
10097     10097 King James Version Bible
10098     10098 King James Version Bible
10099     10099 King James Version Bible
10100     10100 King James Version Bible
10101     10101 King James Version Bible
10102     10102 King James Version Bible
10103     10103 King James Version Bible
10104     10104 King James Version Bible
10105     10105 King James Version Bible
10106     10106 King James Version Bible
10107     10107 King James Version Bible
10108     10108 King James Version Bible
10109     10109 King James Version Bible
10110     10110 King James Version Bible
10111     10111 King James Version Bible
10112     10112 King James Version Bible
10113     10113 King James Version Bible
10114     10114 King James Version Bible
10115     10115 King James Version Bible
10116     10116 King James Version Bible
10117     10117 King James Version Bible
10118     10118 King James Version Bible
10119     10119 King James Version Bible
10120     10120 King James Version Bible
10121     10121 King James Version Bible
10122     10122 King James Version Bible
10123     10123 King James Version Bible
10124     10124 King James Version Bible
10125     10125 King James Version Bible
10126     10126 King James Version Bible
10127     10127 King James Version Bible
10128     10128 King James Version Bible
10129     10129 King James Version Bible
10130     10130 King James Version Bible
10131     10131 King James Version Bible
10132     10132 King James Version Bible
10133     10133 King James Version Bible
10134     10134 King James Version Bible
10135     10135 King James Version Bible
10136     10136 King James Version Bible
10137     10137 King James Version Bible
10138     10138 King James Version Bible
10139     10139 King James Version Bible
10140     10140 King James Version Bible
10141     10141 King James Version Bible
10142     10142 King James Version Bible
10143     10143 King James Version Bible
10144     10144 King James Version Bible
10145     10145 King James Version Bible
10146     10146 King James Version Bible
10147     10147 King James Version Bible
10148     10148 King James Version Bible
10149     10149 King James Version Bible
10150     10150 King James Version Bible
10151     10151 King James Version Bible
10152     10152 King James Version Bible
10153     10153 King James Version Bible
10154     10154 King James Version Bible
10155     10155 King James Version Bible
10156     10156 King James Version Bible
10157     10157 King James Version Bible
10158     10158 King James Version Bible
10159     10159 King James Version Bible
10160     10160 King James Version Bible
10161     10161 King James Version Bible
10162     10162 King James Version Bible
10163     10163 King James Version Bible
10164     10164 King James Version Bible
10165     10165 King James Version Bible
10166     10166 King James Version Bible
10167     10167 King James Version Bible
10168     10168 King James Version Bible
10169     10169 King James Version Bible
10170     10170 King James Version Bible
10171     10171 King James Version Bible
10172     10172 King James Version Bible
10173     10173 King James Version Bible
10174     10174 King James Version Bible
10175     10175 King James Version Bible
10176     10176 King James Version Bible
10177     10177 King James Version Bible
10178     10178 King James Version Bible
10179     10179 King James Version Bible
10180     10180 King James Version Bible
10181     10181 King James Version Bible
10182     10182 King James Version Bible
10183     10183 King James Version Bible
10184     10184 King James Version Bible
10185     10185 King James Version Bible
10186     10186 King James Version Bible
10187     10187 King James Version Bible
10188     10188 King James Version Bible
10189     10189 King James Version Bible
10190     10190 King James Version Bible
10191     10191 King James Version Bible
10192     10192 King James Version Bible
10193     10193 King James Version Bible
10194     10194 King James Version Bible
10195     10195 King James Version Bible
10196     10196 King James Version Bible
10197     10197 King James Version Bible
10198     10198 King James Version Bible
10199     10199 King James Version Bible
10200     10200 King James Version Bible
10201     10201 King James Version Bible
10202     10202 King James Version Bible
10203     10203 King James Version Bible
10204     10204 King James Version Bible
10205     10205 King James Version Bible
10206     10206 King James Version Bible
10207     10207 King James Version Bible
10208     10208 King James Version Bible
10209     10209 King James Version Bible
10210     10210 King James Version Bible
10211     10211 King James Version Bible
10212     10212 King James Version Bible
10213     10213 King James Version Bible
10214     10214 King James Version Bible
10215     10215 King James Version Bible
10216     10216 King James Version Bible
10217     10217 King James Version Bible
10218     10218 King James Version Bible
10219     10219 King James Version Bible
10220     10220 King James Version Bible
10221     10221 King James Version Bible
10222     10222 King James Version Bible
10223     10223 King James Version Bible
10224     10224 King James Version Bible
10225     10225 King James Version Bible
10226     10226 King James Version Bible
10227     10227 King James Version Bible
10228     10228 King James Version Bible
10229     10229 King James Version Bible
10230     10230 King James Version Bible
10231     10231 King James Version Bible
10232     10232 King James Version Bible
10233     10233 King James Version Bible
10234     10234 King James Version Bible
10235     10235 King James Version Bible
10236     10236 King James Version Bible
10237     10237 King James Version Bible
10238     10238 King James Version Bible
10239     10239 King James Version Bible
10240     10240 King James Version Bible
10241     10241 King James Version Bible
10242     10242 King James Version Bible
10243     10243 King James Version Bible
10244     10244 King James Version Bible
10245     10245 King James Version Bible
10246     10246 King James Version Bible
10247     10247 King James Version Bible
10248     10248 King James Version Bible
10249     10249 King James Version Bible
10250     10250 King James Version Bible
10251     10251 King James Version Bible
10252     10252 King James Version Bible
10253     10253 King James Version Bible
10254     10254 King James Version Bible
10255     10255 King James Version Bible
10256     10256 King James Version Bible
10257     10257 King James Version Bible
10258     10258 King James Version Bible
10259     10259 King James Version Bible
10260     10260 King James Version Bible
10261     10261 King James Version Bible
10262     10262 King James Version Bible
10263     10263 King James Version Bible
10264     10264 King James Version Bible
10265     10265 King James Version Bible
10266     10266 King James Version Bible
10267     10267 King James Version Bible
10268     10268 King James Version Bible
10269     10269 King James Version Bible
10270     10270 King James Version Bible
10271     10271 King James Version Bible
10272     10272 King James Version Bible
10273     10273 King James Version Bible
10274     10274 King James Version Bible
10275     10275 King James Version Bible
10276     10276 King James Version Bible
10277     10277 King James Version Bible
10278     10278 King James Version Bible
10279     10279 King James Version Bible
10280     10280 King James Version Bible
10281     10281 King James Version Bible
10282     10282 King James Version Bible
10283     10283 King James Version Bible
10284     10284 King James Version Bible
10285     10285 King James Version Bible
10286     10286 King James Version Bible
10287     10287 King James Version Bible
10288     10288 King James Version Bible
10289     10289 King James Version Bible
10290     10290 King James Version Bible
10291     10291 King James Version Bible
10292     10292 King James Version Bible
10293     10293 King James Version Bible
10294     10294 King James Version Bible
10295     10295 King James Version Bible
10296     10296 King James Version Bible
10297     10297 King James Version Bible
10298     10298 King James Version Bible
10299     10299 King James Version Bible
10300     10300 King James Version Bible
10301     10301 King James Version Bible
10302     10302 King James Version Bible
10303     10303 King James Version Bible
10304     10304 King James Version Bible
10305     10305 King James Version Bible
10306     10306 King James Version Bible
10307     10307 King James Version Bible
10308     10308 King James Version Bible
10309     10309 King James Version Bible
10310     10310 King James Version Bible
10311     10311 King James Version Bible
10312     10312 King James Version Bible
10313     10313 King James Version Bible
10314     10314 King James Version Bible
10315     10315 King James Version Bible
10316     10316 King James Version Bible
10317     10317 King James Version Bible
10318     10318 King James Version Bible
10319     10319 King James Version Bible
10320     10320 King James Version Bible
10321     10321 King James Version Bible
10322     10322 King James Version Bible
10323     10323 King James Version Bible
10324     10324 King James Version Bible
10325     10325 King James Version Bible
10326     10326 King James Version Bible
10327     10327 King James Version Bible
10328     10328 King James Version Bible
10329     10329 King James Version Bible
10330     10330 King James Version Bible
10331     10331 King James Version Bible
10332     10332 King James Version Bible
10333     10333 King James Version Bible
10334     10334 King James Version Bible
10335     10335 King James Version Bible
10336     10336 King James Version Bible
10337     10337 King James Version Bible
10338     10338 King James Version Bible
10339     10339 King James Version Bible
10340     10340 King James Version Bible
10341     10341 King James Version Bible
10342     10342 King James Version Bible
10343     10343 King James Version Bible
10344     10344 King James Version Bible
10345     10345 King James Version Bible
10346     10346 King James Version Bible
10347     10347 King James Version Bible
10348     10348 King James Version Bible
10349     10349 King James Version Bible
10350     10350 King James Version Bible
10351     10351 King James Version Bible
10352     10352 King James Version Bible
10353     10353 King James Version Bible
10354     10354 King James Version Bible
10355     10355 King James Version Bible
10356     10356 King James Version Bible
10357     10357 King James Version Bible
10358     10358 King James Version Bible
10359     10359 King James Version Bible
10360     10360 King James Version Bible
10361     10361 King James Version Bible
10362     10362 King James Version Bible
10363     10363 King James Version Bible
10364     10364 King James Version Bible
10365     10365 King James Version Bible
10366     10366 King James Version Bible
10367     10367 King James Version Bible
10368     10368 King James Version Bible
10369     10369 King James Version Bible
10370     10370 King James Version Bible
10371     10371 King James Version Bible
10372     10372 King James Version Bible
10373     10373 King James Version Bible
10374     10374 King James Version Bible
10375     10375 King James Version Bible
10376     10376 King James Version Bible
10377     10377 King James Version Bible
10378     10378 King James Version Bible
10379     10379 King James Version Bible
10380     10380 King James Version Bible
10381     10381 King James Version Bible
10382     10382 King James Version Bible
10383     10383 King James Version Bible
10384     10384 King James Version Bible
10385     10385 King James Version Bible
10386     10386 King James Version Bible
10387     10387 King James Version Bible
10388     10388 King James Version Bible
10389     10389 King James Version Bible
10390     10390 King James Version Bible
10391     10391 King James Version Bible
10392     10392 King James Version Bible
10393     10393 King James Version Bible
10394     10394 King James Version Bible
10395     10395 King James Version Bible
10396     10396 King James Version Bible
10397     10397 King James Version Bible
10398     10398 King James Version Bible
10399     10399 King James Version Bible
10400     10400 King James Version Bible
10401     10401 King James Version Bible
10402     10402 King James Version Bible
10403     10403 King James Version Bible
10404     10404 King James Version Bible
10405     10405 King James Version Bible
10406     10406 King James Version Bible
10407     10407 King James Version Bible
10408     10408 King James Version Bible
10409     10409 King James Version Bible
10410     10410 King James Version Bible
10411     10411 King James Version Bible
10412     10412 King James Version Bible
10413     10413 King James Version Bible
10414     10414 King James Version Bible
10415     10415 King James Version Bible
10416     10416 King James Version Bible
10417     10417 King James Version Bible
10418     10418 King James Version Bible
10419     10419 King James Version Bible
10420     10420 King James Version Bible
10421     10421 King James Version Bible
10422     10422 King James Version Bible
10423     10423 King James Version Bible
10424     10424 King James Version Bible
10425     10425 King James Version Bible
10426     10426 King James Version Bible
10427     10427 King James Version Bible
10428     10428 King James Version Bible
10429     10429 King James Version Bible
10430     10430 King James Version Bible
10431     10431 King James Version Bible
10432     10432 King James Version Bible
10433     10433 King James Version Bible
10434     10434 King James Version Bible
10435     10435 King James Version Bible
10436     10436 King James Version Bible
10437     10437 King James Version Bible
10438     10438 King James Version Bible
10439     10439 King James Version Bible
10440     10440 King James Version Bible
10441     10441 King James Version Bible
10442     10442 King James Version Bible
10443     10443 King James Version Bible
10444     10444 King James Version Bible
10445     10445 King James Version Bible
10446     10446 King James Version Bible
10447     10447 King James Version Bible
10448     10448 King James Version Bible
10449     10449 King James Version Bible
10450     10450 King James Version Bible
10451     10451 King James Version Bible
10452     10452 King James Version Bible
10453     10453 King James Version Bible
10454     10454 King James Version Bible
10455     10455 King James Version Bible
10456     10456 King James Version Bible
10457     10457 King James Version Bible
10458     10458 King James Version Bible
10459     10459 King James Version Bible
10460     10460 King James Version Bible
10461     10461 King James Version Bible
10462     10462 King James Version Bible
10463     10463 King James Version Bible
10464     10464 King James Version Bible
10465     10465 King James Version Bible
10466     10466 King James Version Bible
10467     10467 King James Version Bible
10468     10468 King James Version Bible
10469     10469 King James Version Bible
10470     10470 King James Version Bible
10471     10471 King James Version Bible
10472     10472 King James Version Bible
10473     10473 King James Version Bible
10474     10474 King James Version Bible
10475     10475 King James Version Bible
10476     10476 King James Version Bible
10477     10477 King James Version Bible
10478     10478 King James Version Bible
10479     10479 King James Version Bible
10480     10480 King James Version Bible
10481     10481 King James Version Bible
10482     10482 King James Version Bible
10483     10483 King James Version Bible
10484     10484 King James Version Bible
10485     10485 King James Version Bible
10486     10486 King James Version Bible
10487     10487 King James Version Bible
10488     10488 King James Version Bible
10489     10489 King James Version Bible
10490     10490 King James Version Bible
10491     10491 King James Version Bible
10492     10492 King James Version Bible
10493     10493 King James Version Bible
10494     10494 King James Version Bible
10495     10495 King James Version Bible
10496     10496 King James Version Bible
10497     10497 King James Version Bible
10498     10498 King James Version Bible
10499     10499 King James Version Bible
10500     10500 King James Version Bible
10501     10501 King James Version Bible
10502     10502 King James Version Bible
10503     10503 King James Version Bible
10504     10504 King James Version Bible
10505     10505 King James Version Bible
10506     10506 King James Version Bible
10507     10507 King James Version Bible
10508     10508 King James Version Bible
10509     10509 King James Version Bible
10510     10510 King James Version Bible
10511     10511 King James Version Bible
10512     10512 King James Version Bible
10513     10513 King James Version Bible
10514     10514 King James Version Bible
10515     10515 King James Version Bible
10516     10516 King James Version Bible
10517     10517 King James Version Bible
10518     10518 King James Version Bible
10519     10519 King James Version Bible
10520     10520 King James Version Bible
10521     10521 King James Version Bible
10522     10522 King James Version Bible
10523     10523 King James Version Bible
10524     10524 King James Version Bible
10525     10525 King James Version Bible
10526     10526 King James Version Bible
10527     10527 King James Version Bible
10528     10528 King James Version Bible
10529     10529 King James Version Bible
10530     10530 King James Version Bible
10531     10531 King James Version Bible
10532     10532 King James Version Bible
10533     10533 King James Version Bible
10534     10534 King James Version Bible
10535     10535 King James Version Bible
10536     10536 King James Version Bible
10537     10537 King James Version Bible
10538     10538 King James Version Bible
10539     10539 King James Version Bible
10540     10540 King James Version Bible
10541     10541 King James Version Bible
10542     10542 King James Version Bible
10543     10543 King James Version Bible
10544     10544 King James Version Bible
10545     10545 King James Version Bible
10546     10546 King James Version Bible
10547     10547 King James Version Bible
10548     10548 King James Version Bible
10549     10549 King James Version Bible
10550     10550 King James Version Bible
10551     10551 King James Version Bible
10552     10552 King James Version Bible
10553     10553 King James Version Bible
10554     10554 King James Version Bible
10555     10555 King James Version Bible
10556     10556 King James Version Bible
10557     10557 King James Version Bible
10558     10558 King James Version Bible
10559     10559 King James Version Bible
10560     10560 King James Version Bible
10561     10561 King James Version Bible
10562     10562 King James Version Bible
10563     10563 King James Version Bible
10564     10564 King James Version Bible
10565     10565 King James Version Bible
10566     10566 King James Version Bible
10567     10567 King James Version Bible
10568     10568 King James Version Bible
10569     10569 King James Version Bible
10570     10570 King James Version Bible
10571     10571 King James Version Bible
10572     10572 King James Version Bible
10573     10573 King James Version Bible
10574     10574 King James Version Bible
10575     10575 King James Version Bible
10576     10576 King James Version Bible
10577     10577 King James Version Bible
10578     10578 King James Version Bible
10579     10579 King James Version Bible
10580     10580 King James Version Bible
10581     10581 King James Version Bible
10582     10582 King James Version Bible
10583     10583 King James Version Bible
10584     10584 King James Version Bible
10585     10585 King James Version Bible
10586     10586 King James Version Bible
10587     10587 King James Version Bible
10588     10588 King James Version Bible
10589     10589 King James Version Bible
10590     10590 King James Version Bible
10591     10591 King James Version Bible
10592     10592 King James Version Bible
10593     10593 King James Version Bible
10594     10594 King James Version Bible
10595     10595 King James Version Bible
10596     10596 King James Version Bible
10597     10597 King James Version Bible
10598     10598 King James Version Bible
10599     10599 King James Version Bible
10600     10600 King James Version Bible
10601     10601 King James Version Bible
10602     10602 King James Version Bible
10603     10603 King James Version Bible
10604     10604 King James Version Bible
10605     10605 King James Version Bible
10606     10606 King James Version Bible
10607     10607 King James Version Bible
10608     10608 King James Version Bible
10609     10609 King James Version Bible
10610     10610 King James Version Bible
10611     10611 King James Version Bible
10612     10612 King James Version Bible
10613     10613 King James Version Bible
10614     10614 King James Version Bible
10615     10615 King James Version Bible
10616     10616 King James Version Bible
10617     10617 King James Version Bible
10618     10618 King James Version Bible
10619     10619 King James Version Bible
10620     10620 King James Version Bible
10621     10621 King James Version Bible
10622     10622 King James Version Bible
10623     10623 King James Version Bible
10624     10624 King James Version Bible
10625     10625 King James Version Bible
10626     10626 King James Version Bible
10627     10627 King James Version Bible
10628     10628 King James Version Bible
10629     10629 King James Version Bible
10630     10630 King James Version Bible
10631     10631 King James Version Bible
10632     10632 King James Version Bible
10633     10633 King James Version Bible
10634     10634 King James Version Bible
10635     10635 King James Version Bible
10636     10636 King James Version Bible
10637     10637 King James Version Bible
10638     10638 King James Version Bible
10639     10639 King James Version Bible
10640     10640 King James Version Bible
10641     10641 King James Version Bible
10642     10642 King James Version Bible
10643     10643 King James Version Bible
10644     10644 King James Version Bible
10645     10645 King James Version Bible
10646     10646 King James Version Bible
10647     10647 King James Version Bible
10648     10648 King James Version Bible
10649     10649 King James Version Bible
10650     10650 King James Version Bible
10651     10651 King James Version Bible
10652     10652 King James Version Bible
10653     10653 King James Version Bible
10654     10654 King James Version Bible
10655     10655 King James Version Bible
10656     10656 King James Version Bible
10657     10657 King James Version Bible
10658     10658 King James Version Bible
10659     10659 King James Version Bible
10660     10660 King James Version Bible
10661     10661 King James Version Bible
10662     10662 King James Version Bible
10663     10663 King James Version Bible
10664     10664 King James Version Bible
10665     10665 King James Version Bible
10666     10666 King James Version Bible
10667     10667 King James Version Bible
10668     10668 King James Version Bible
10669     10669 King James Version Bible
10670     10670 King James Version Bible
10671     10671 King James Version Bible
10672     10672 King James Version Bible
10673     10673 King James Version Bible
10674     10674 King James Version Bible
10675     10675 King James Version Bible
10676     10676 King James Version Bible
10677     10677 King James Version Bible
10678     10678 King James Version Bible
10679     10679 King James Version Bible
10680     10680 King James Version Bible
10681     10681 King James Version Bible
10682     10682 King James Version Bible
10683     10683 King James Version Bible
10684     10684 King James Version Bible
10685     10685 King James Version Bible
10686     10686 King James Version Bible
10687     10687 King James Version Bible
10688     10688 King James Version Bible
10689     10689 King James Version Bible
10690     10690 King James Version Bible
10691     10691 King James Version Bible
10692     10692 King James Version Bible
10693     10693 King James Version Bible
10694     10694 King James Version Bible
10695     10695 King James Version Bible
10696     10696 King James Version Bible
10697     10697 King James Version Bible
10698     10698 King James Version Bible
10699     10699 King James Version Bible
10700     10700 King James Version Bible
10701     10701 King James Version Bible
10702     10702 King James Version Bible
10703     10703 King James Version Bible
10704     10704 King James Version Bible
10705     10705 King James Version Bible
10706     10706 King James Version Bible
10707     10707 King James Version Bible
10708     10708 King James Version Bible
10709     10709 King James Version Bible
10710     10710 King James Version Bible
10711     10711 King James Version Bible
10712     10712 King James Version Bible
10713     10713 King James Version Bible
10714     10714 King James Version Bible
10715     10715 King James Version Bible
10716     10716 King James Version Bible
10717     10717 King James Version Bible
10718     10718 King James Version Bible
10719     10719 King James Version Bible
10720     10720 King James Version Bible
10721     10721 King James Version Bible
10722     10722 King James Version Bible
10723     10723 King James Version Bible
10724     10724 King James Version Bible
10725     10725 King James Version Bible
10726     10726 King James Version Bible
10727     10727 King James Version Bible
10728     10728 King James Version Bible
10729     10729 King James Version Bible
10730     10730 King James Version Bible
10731     10731 King James Version Bible
10732     10732 King James Version Bible
10733     10733 King James Version Bible
10734     10734 King James Version Bible
10735     10735 King James Version Bible
10736     10736 King James Version Bible
10737     10737 King James Version Bible
10738     10738 King James Version Bible
10739     10739 King James Version Bible
10740     10740 King James Version Bible
10741     10741 King James Version Bible
10742     10742 King James Version Bible
10743     10743 King James Version Bible
10744     10744 King James Version Bible
10745     10745 King James Version Bible
10746     10746 King James Version Bible
10747     10747 King James Version Bible
10748     10748 King James Version Bible
10749     10749 King James Version Bible
10750     10750 King James Version Bible
10751     10751 King James Version Bible
10752     10752 King James Version Bible
10753     10753 King James Version Bible
10754     10754 King James Version Bible
10755     10755 King James Version Bible
10756     10756 King James Version Bible
10757     10757 King James Version Bible
10758     10758 King James Version Bible
10759     10759 King James Version Bible
10760     10760 King James Version Bible
10761     10761 King James Version Bible
10762     10762 King James Version Bible
10763     10763 King James Version Bible
10764     10764 King James Version Bible
10765     10765 King James Version Bible
10766     10766 King James Version Bible
10767     10767 King James Version Bible
10768     10768 King James Version Bible
10769     10769 King James Version Bible
10770     10770 King James Version Bible
10771     10771 King James Version Bible
10772     10772 King James Version Bible
10773     10773 King James Version Bible
10774     10774 King James Version Bible
10775     10775 King James Version Bible
10776     10776 King James Version Bible
10777     10777 King James Version Bible
10778     10778 King James Version Bible
10779     10779 King James Version Bible
10780     10780 King James Version Bible
10781     10781 King James Version Bible
10782     10782 King James Version Bible
10783     10783 King James Version Bible
10784     10784 King James Version Bible
10785     10785 King James Version Bible
10786     10786 King James Version Bible
10787     10787 King James Version Bible
10788     10788 King James Version Bible
10789     10789 King James Version Bible
10790     10790 King James Version Bible
10791     10791 King James Version Bible
10792     10792 King James Version Bible
10793     10793 King James Version Bible
10794     10794 King James Version Bible
10795     10795 King James Version Bible
10796     10796 King James Version Bible
10797     10797 King James Version Bible
10798     10798 King James Version Bible
10799     10799 King James Version Bible
10800     10800 King James Version Bible
10801     10801 King James Version Bible
10802     10802 King James Version Bible
10803     10803 King James Version Bible
10804     10804 King James Version Bible
10805     10805 King James Version Bible
10806     10806 King James Version Bible
10807     10807 King James Version Bible
10808     10808 King James Version Bible
10809     10809 King James Version Bible
10810     10810 King James Version Bible
10811     10811 King James Version Bible
10812     10812 King James Version Bible
10813     10813 King James Version Bible
10814     10814 King James Version Bible
10815     10815 King James Version Bible
10816     10816 King James Version Bible
10817     10817 King James Version Bible
10818     10818 King James Version Bible
10819     10819 King James Version Bible
10820     10820 King James Version Bible
10821     10821 King James Version Bible
10822     10822 King James Version Bible
10823     10823 King James Version Bible
10824     10824 King James Version Bible
10825     10825 King James Version Bible
10826     10826 King James Version Bible
10827     10827 King James Version Bible
10828     10828 King James Version Bible
10829     10829 King James Version Bible
10830     10830 King James Version Bible
10831     10831 King James Version Bible
10832     10832 King James Version Bible
10833     10833 King James Version Bible
10834     10834 King James Version Bible
10835     10835 King James Version Bible
10836     10836 King James Version Bible
10837     10837 King James Version Bible
10838     10838 King James Version Bible
10839     10839 King James Version Bible
10840     10840 King James Version Bible
10841     10841 King James Version Bible
10842     10842 King James Version Bible
10843     10843 King James Version Bible
10844     10844 King James Version Bible
10845     10845 King James Version Bible
10846     10846 King James Version Bible
10847     10847 King James Version Bible
10848     10848 King James Version Bible
10849     10849 King James Version Bible
10850     10850 King James Version Bible
10851     10851 King James Version Bible
10852     10852 King James Version Bible
10853     10853 King James Version Bible
10854     10854 King James Version Bible
10855     10855 King James Version Bible
10856     10856 King James Version Bible
10857     10857 King James Version Bible
10858     10858 King James Version Bible
10859     10859 King James Version Bible
10860     10860 King James Version Bible
10861     10861 King James Version Bible
10862     10862 King James Version Bible
10863     10863 King James Version Bible
10864     10864 King James Version Bible
10865     10865 King James Version Bible
10866     10866 King James Version Bible
10867     10867 King James Version Bible
10868     10868 King James Version Bible
10869     10869 King James Version Bible
10870     10870 King James Version Bible
10871     10871 King James Version Bible
10872     10872 King James Version Bible
10873     10873 King James Version Bible
10874     10874 King James Version Bible
10875     10875 King James Version Bible
10876     10876 King James Version Bible
10877     10877 King James Version Bible
10878     10878 King James Version Bible
10879     10879 King James Version Bible
10880     10880 King James Version Bible
10881     10881 King James Version Bible
10882     10882 King James Version Bible
10883     10883 King James Version Bible
10884     10884 King James Version Bible
10885     10885 King James Version Bible
10886     10886 King James Version Bible
10887     10887 King James Version Bible
10888     10888 King James Version Bible
10889     10889 King James Version Bible
10890     10890 King James Version Bible
10891     10891 King James Version Bible
10892     10892 King James Version Bible
10893     10893 King James Version Bible
10894     10894 King James Version Bible
10895     10895 King James Version Bible
10896     10896 King James Version Bible
10897     10897 King James Version Bible
10898     10898 King James Version Bible
10899     10899 King James Version Bible
10900     10900 King James Version Bible
10901     10901 King James Version Bible
10902     10902 King James Version Bible
10903     10903 King James Version Bible
10904     10904 King James Version Bible
10905     10905 King James Version Bible
10906     10906 King James Version Bible
10907     10907 King James Version Bible
10908     10908 King James Version Bible
10909     10909 King James Version Bible
10910     10910 King James Version Bible
10911     10911 King James Version Bible
10912     10912 King James Version Bible
10913     10913 King James Version Bible
10914     10914 King James Version Bible
10915     10915 King James Version Bible
10916     10916 King James Version Bible
10917     10917 King James Version Bible
10918     10918 King James Version Bible
10919     10919 King James Version Bible
10920     10920 King James Version Bible
10921     10921 King James Version Bible
10922     10922 King James Version Bible
10923     10923 King James Version Bible
10924     10924 King James Version Bible
10925     10925 King James Version Bible
10926     10926 King James Version Bible
10927     10927 King James Version Bible
10928     10928 King James Version Bible
10929     10929 King James Version Bible
10930     10930 King James Version Bible
10931     10931 King James Version Bible
10932     10932 King James Version Bible
10933     10933 King James Version Bible
10934     10934 King James Version Bible
10935     10935 King James Version Bible
10936     10936 King James Version Bible
10937     10937 King James Version Bible
10938     10938 King James Version Bible
10939     10939 King James Version Bible
10940     10940 King James Version Bible
10941     10941 King James Version Bible
10942     10942 King James Version Bible
10943     10943 King James Version Bible
10944     10944 King James Version Bible
10945     10945 King James Version Bible
10946     10946 King James Version Bible
10947     10947 King James Version Bible
10948     10948 King James Version Bible
10949     10949 King James Version Bible
10950     10950 King James Version Bible
10951     10951 King James Version Bible
10952     10952 King James Version Bible
10953     10953 King James Version Bible
10954     10954 King James Version Bible
10955     10955 King James Version Bible
10956     10956 King James Version Bible
10957     10957 King James Version Bible
10958     10958 King James Version Bible
10959     10959 King James Version Bible
10960     10960 King James Version Bible
10961     10961 King James Version Bible
10962     10962 King James Version Bible
10963     10963 King James Version Bible
10964     10964 King James Version Bible
10965     10965 King James Version Bible
10966     10966 King James Version Bible
10967     10967 King James Version Bible
10968     10968 King James Version Bible
10969     10969 King James Version Bible
10970     10970 King James Version Bible
10971     10971 King James Version Bible
10972     10972 King James Version Bible
10973     10973 King James Version Bible
10974     10974 King James Version Bible
10975     10975 King James Version Bible
10976     10976 King James Version Bible
10977     10977 King James Version Bible
10978     10978 King James Version Bible
10979     10979 King James Version Bible
10980     10980 King James Version Bible
10981     10981 King James Version Bible
10982     10982 King James Version Bible
10983     10983 King James Version Bible
10984     10984 King James Version Bible
10985     10985 King James Version Bible
10986     10986 King James Version Bible
10987     10987 King James Version Bible
10988     10988 King James Version Bible
10989     10989 King James Version Bible
10990     10990 King James Version Bible
10991     10991 King James Version Bible
10992     10992 King James Version Bible
10993     10993 King James Version Bible
10994     10994 King James Version Bible
10995     10995 King James Version Bible
10996     10996 King James Version Bible
10997     10997 King James Version Bible
10998     10998 King James Version Bible
10999     10999 King James Version Bible
11000     11000 King James Version Bible
11001     11001 King James Version Bible
11002     11002 King James Version Bible
11003     11003 King James Version Bible
11004     11004 King James Version Bible
11005     11005 King James Version Bible
11006     11006 King James Version Bible
11007     11007 King James Version Bible
11008     11008 King James Version Bible
11009     11009 King James Version Bible
11010     11010 King James Version Bible
11011     11011 King James Version Bible
11012     11012 King James Version Bible
11013     11013 King James Version Bible
11014     11014 King James Version Bible
11015     11015 King James Version Bible
11016     11016 King James Version Bible
11017     11017 King James Version Bible
11018     11018 King James Version Bible
11019     11019 King James Version Bible
11020     11020 King James Version Bible
11021     11021 King James Version Bible
11022     11022 King James Version Bible
11023     11023 King James Version Bible
11024     11024 King James Version Bible
11025     11025 King James Version Bible
11026     11026 King James Version Bible
11027     11027 King James Version Bible
11028     11028 King James Version Bible
11029     11029 King James Version Bible
11030     11030 King James Version Bible
11031     11031 King James Version Bible
11032     11032 King James Version Bible
11033     11033 King James Version Bible
11034     11034 King James Version Bible
11035     11035 King James Version Bible
11036     11036 King James Version Bible
11037     11037 King James Version Bible
11038     11038 King James Version Bible
11039     11039 King James Version Bible
11040     11040 King James Version Bible
11041     11041 King James Version Bible
11042     11042 King James Version Bible
11043     11043 King James Version Bible
11044     11044 King James Version Bible
11045     11045 King James Version Bible
11046     11046 King James Version Bible
11047     11047 King James Version Bible
11048     11048 King James Version Bible
11049     11049 King James Version Bible
11050     11050 King James Version Bible
11051     11051 King James Version Bible
11052     11052 King James Version Bible
11053     11053 King James Version Bible
11054     11054 King James Version Bible
11055     11055 King James Version Bible
11056     11056 King James Version Bible
11057     11057 King James Version Bible
11058     11058 King James Version Bible
11059     11059 King James Version Bible
11060     11060 King James Version Bible
11061     11061 King James Version Bible
11062     11062 King James Version Bible
11063     11063 King James Version Bible
11064     11064 King James Version Bible
11065     11065 King James Version Bible
11066     11066 King James Version Bible
11067     11067 King James Version Bible
11068     11068 King James Version Bible
11069     11069 King James Version Bible
11070     11070 King James Version Bible
11071     11071 King James Version Bible
11072     11072 King James Version Bible
11073     11073 King James Version Bible
11074     11074 King James Version Bible
11075     11075 King James Version Bible
11076     11076 King James Version Bible
11077     11077 King James Version Bible
11078     11078 King James Version Bible
11079     11079 King James Version Bible
11080     11080 King James Version Bible
11081     11081 King James Version Bible
11082     11082 King James Version Bible
11083     11083 King James Version Bible
11084     11084 King James Version Bible
11085     11085 King James Version Bible
11086     11086 King James Version Bible
11087     11087 King James Version Bible
11088     11088 King James Version Bible
11089     11089 King James Version Bible
11090     11090 King James Version Bible
11091     11091 King James Version Bible
11092     11092 King James Version Bible
11093     11093 King James Version Bible
11094     11094 King James Version Bible
11095     11095 King James Version Bible
11096     11096 King James Version Bible
11097     11097 King James Version Bible
11098     11098 King James Version Bible
11099     11099 King James Version Bible
11100     11100 King James Version Bible
11101     11101 King James Version Bible
11102     11102 King James Version Bible
11103     11103 King James Version Bible
11104     11104 King James Version Bible
11105     11105 King James Version Bible
11106     11106 King James Version Bible
11107     11107 King James Version Bible
11108     11108 King James Version Bible
11109     11109 King James Version Bible
11110     11110 King James Version Bible
11111     11111 King James Version Bible
11112     11112 King James Version Bible
11113     11113 King James Version Bible
11114     11114 King James Version Bible
11115     11115 King James Version Bible
11116     11116 King James Version Bible
11117     11117 King James Version Bible
11118     11118 King James Version Bible
11119     11119 King James Version Bible
11120     11120 King James Version Bible
11121     11121 King James Version Bible
11122     11122 King James Version Bible
11123     11123 King James Version Bible
11124     11124 King James Version Bible
11125     11125 King James Version Bible
11126     11126 King James Version Bible
11127     11127 King James Version Bible
11128     11128 King James Version Bible
11129     11129 King James Version Bible
11130     11130 King James Version Bible
11131     11131 King James Version Bible
11132     11132 King James Version Bible
11133     11133 King James Version Bible
11134     11134 King James Version Bible
11135     11135 King James Version Bible
11136     11136 King James Version Bible
11137     11137 King James Version Bible
11138     11138 King James Version Bible
11139     11139 King James Version Bible
11140     11140 King James Version Bible
11141     11141 King James Version Bible
11142     11142 King James Version Bible
11143     11143 King James Version Bible
11144     11144 King James Version Bible
11145     11145 King James Version Bible
11146     11146 King James Version Bible
11147     11147 King James Version Bible
11148     11148 King James Version Bible
11149     11149 King James Version Bible
11150     11150 King James Version Bible
11151     11151 King James Version Bible
11152     11152 King James Version Bible
11153     11153 King James Version Bible
11154     11154 King James Version Bible
11155     11155 King James Version Bible
11156     11156 King James Version Bible
11157     11157 King James Version Bible
11158     11158 King James Version Bible
11159     11159 King James Version Bible
11160     11160 King James Version Bible
11161     11161 King James Version Bible
11162     11162 King James Version Bible
11163     11163 King James Version Bible
11164     11164 King James Version Bible
11165     11165 King James Version Bible
11166     11166 King James Version Bible
11167     11167 King James Version Bible
11168     11168 King James Version Bible
11169     11169 King James Version Bible
11170     11170 King James Version Bible
11171     11171 King James Version Bible
11172     11172 King James Version Bible
11173     11173 King James Version Bible
11174     11174 King James Version Bible
11175     11175 King James Version Bible
11176     11176 King James Version Bible
11177     11177 King James Version Bible
11178     11178 King James Version Bible
11179     11179 King James Version Bible
11180     11180 King James Version Bible
11181     11181 King James Version Bible
11182     11182 King James Version Bible
11183     11183 King James Version Bible
11184     11184 King James Version Bible
11185     11185 King James Version Bible
11186     11186 King James Version Bible
11187     11187 King James Version Bible
11188     11188 King James Version Bible
11189     11189 King James Version Bible
11190     11190 King James Version Bible
11191     11191 King James Version Bible
11192     11192 King James Version Bible
11193     11193 King James Version Bible
11194     11194 King James Version Bible
11195     11195 King James Version Bible
11196     11196 King James Version Bible
11197     11197 King James Version Bible
11198     11198 King James Version Bible
11199     11199 King James Version Bible
11200     11200 King James Version Bible
11201     11201 King James Version Bible
11202     11202 King James Version Bible
11203     11203 King James Version Bible
11204     11204 King James Version Bible
11205     11205 King James Version Bible
11206     11206 King James Version Bible
11207     11207 King James Version Bible
11208     11208 King James Version Bible
11209     11209 King James Version Bible
11210     11210 King James Version Bible
11211     11211 King James Version Bible
11212     11212 King James Version Bible
11213     11213 King James Version Bible
11214     11214 King James Version Bible
11215     11215 King James Version Bible
11216     11216 King James Version Bible
11217     11217 King James Version Bible
11218     11218 King James Version Bible
11219     11219 King James Version Bible
11220     11220 King James Version Bible
11221     11221 King James Version Bible
11222     11222 King James Version Bible
11223     11223 King James Version Bible
11224     11224 King James Version Bible
11225     11225 King James Version Bible
11226     11226 King James Version Bible
11227     11227 King James Version Bible
11228     11228 King James Version Bible
11229     11229 King James Version Bible
11230     11230 King James Version Bible
11231     11231 King James Version Bible
11232     11232 King James Version Bible
11233     11233 King James Version Bible
11234     11234 King James Version Bible
11235     11235 King James Version Bible
11236     11236 King James Version Bible
11237     11237 King James Version Bible
11238     11238 King James Version Bible
11239     11239 King James Version Bible
11240     11240 King James Version Bible
11241     11241 King James Version Bible
11242     11242 King James Version Bible
11243     11243 King James Version Bible
11244     11244 King James Version Bible
11245     11245 King James Version Bible
11246     11246 King James Version Bible
11247     11247 King James Version Bible
11248     11248 King James Version Bible
11249     11249 King James Version Bible
11250     11250 King James Version Bible
11251     11251 King James Version Bible
11252     11252 King James Version Bible
11253     11253 King James Version Bible
11254     11254 King James Version Bible
11255     11255 King James Version Bible
11256     11256 King James Version Bible
11257     11257 King James Version Bible
11258     11258 King James Version Bible
11259     11259 King James Version Bible
11260     11260 King James Version Bible
11261     11261 King James Version Bible
11262     11262 King James Version Bible
11263     11263 King James Version Bible
11264     11264 King James Version Bible
11265     11265 King James Version Bible
11266     11266 King James Version Bible
11267     11267 King James Version Bible
11268     11268 King James Version Bible
11269     11269 King James Version Bible
11270     11270 King James Version Bible
11271     11271 King James Version Bible
11272     11272 King James Version Bible
11273     11273 King James Version Bible
11274     11274 King James Version Bible
11275     11275 King James Version Bible
11276     11276 King James Version Bible
11277     11277 King James Version Bible
11278     11278 King James Version Bible
11279     11279 King James Version Bible
11280     11280 King James Version Bible
11281     11281 King James Version Bible
11282     11282 King James Version Bible
11283     11283 King James Version Bible
11284     11284 King James Version Bible
11285     11285 King James Version Bible
11286     11286 King James Version Bible
11287     11287 King James Version Bible
11288     11288 King James Version Bible
11289     11289 King James Version Bible
11290     11290 King James Version Bible
11291     11291 King James Version Bible
11292     11292 King James Version Bible
11293     11293 King James Version Bible
11294     11294 King James Version Bible
11295     11295 King James Version Bible
11296     11296 King James Version Bible
11297     11297 King James Version Bible
11298     11298 King James Version Bible
11299     11299 King James Version Bible
11300     11300 King James Version Bible
11301     11301 King James Version Bible
11302     11302 King James Version Bible
11303     11303 King James Version Bible
11304     11304 King James Version Bible
11305     11305 King James Version Bible
11306     11306 King James Version Bible
11307     11307 King James Version Bible
11308     11308 King James Version Bible
11309     11309 King James Version Bible
11310     11310 King James Version Bible
11311     11311 King James Version Bible
11312     11312 King James Version Bible
11313     11313 King James Version Bible
11314     11314 King James Version Bible
11315     11315 King James Version Bible
11316     11316 King James Version Bible
11317     11317 King James Version Bible
11318     11318 King James Version Bible
11319     11319 King James Version Bible
11320     11320 King James Version Bible
11321     11321 King James Version Bible
11322     11322 King James Version Bible
11323     11323 King James Version Bible
11324     11324 King James Version Bible
11325     11325 King James Version Bible
11326     11326 King James Version Bible
11327     11327 King James Version Bible
11328     11328 King James Version Bible
11329     11329 King James Version Bible
11330     11330 King James Version Bible
11331     11331 King James Version Bible
11332     11332 King James Version Bible
11333     11333 King James Version Bible
11334     11334 King James Version Bible
11335     11335 King James Version Bible
11336     11336 King James Version Bible
11337     11337 King James Version Bible
11338     11338 King James Version Bible
11339     11339 King James Version Bible
11340     11340 King James Version Bible
11341     11341 King James Version Bible
11342     11342 King James Version Bible
11343     11343 King James Version Bible
11344     11344 King James Version Bible
11345     11345 King James Version Bible
11346     11346 King James Version Bible
11347     11347 King James Version Bible
11348     11348 King James Version Bible
11349     11349 King James Version Bible
11350     11350 King James Version Bible
11351     11351 King James Version Bible
11352     11352 King James Version Bible
11353     11353 King James Version Bible
11354     11354 King James Version Bible
11355     11355 King James Version Bible
11356     11356 King James Version Bible
11357     11357 King James Version Bible
11358     11358 King James Version Bible
11359     11359 King James Version Bible
11360     11360 King James Version Bible
11361     11361 King James Version Bible
11362     11362 King James Version Bible
11363     11363 King James Version Bible
11364     11364 King James Version Bible
11365     11365 King James Version Bible
11366     11366 King James Version Bible
11367     11367 King James Version Bible
11368     11368 King James Version Bible
11369     11369 King James Version Bible
11370     11370 King James Version Bible
11371     11371 King James Version Bible
11372     11372 King James Version Bible
11373     11373 King James Version Bible
11374     11374 King James Version Bible
11375     11375 King James Version Bible
11376     11376 King James Version Bible
11377     11377 King James Version Bible
11378     11378 King James Version Bible
11379     11379 King James Version Bible
11380     11380 King James Version Bible
11381     11381 King James Version Bible
11382     11382 King James Version Bible
11383     11383 King James Version Bible
11384     11384 King James Version Bible
11385     11385 King James Version Bible
11386     11386 King James Version Bible
11387     11387 King James Version Bible
11388     11388 King James Version Bible
11389     11389 King James Version Bible
11390     11390 King James Version Bible
11391     11391 King James Version Bible
11392     11392 King James Version Bible
11393     11393 King James Version Bible
11394     11394 King James Version Bible
11395     11395 King James Version Bible
11396     11396 King James Version Bible
11397     11397 King James Version Bible
11398     11398 King James Version Bible
11399     11399 King James Version Bible
11400     11400 King James Version Bible
11401     11401 King James Version Bible
11402     11402 King James Version Bible
11403     11403 King James Version Bible
11404     11404 King James Version Bible
11405     11405 King James Version Bible
11406     11406 King James Version Bible
11407     11407 King James Version Bible
11408     11408 King James Version Bible
11409     11409 King James Version Bible
11410     11410 King James Version Bible
11411     11411 King James Version Bible
11412     11412 King James Version Bible
11413     11413 King James Version Bible
11414     11414 King James Version Bible
11415     11415 King James Version Bible
11416     11416 King James Version Bible
11417     11417 King James Version Bible
11418     11418 King James Version Bible
11419     11419 King James Version Bible
11420     11420 King James Version Bible
11421     11421 King James Version Bible
11422     11422 King James Version Bible
11423     11423 King James Version Bible
11424     11424 King James Version Bible
11425     11425 King James Version Bible
11426     11426 King James Version Bible
11427     11427 King James Version Bible
11428     11428 King James Version Bible
11429     11429 King James Version Bible
11430     11430 King James Version Bible
11431     11431 King James Version Bible
11432     11432 King James Version Bible
11433     11433 King James Version Bible
11434     11434 King James Version Bible
11435     11435 King James Version Bible
11436     11436 King James Version Bible
11437     11437 King James Version Bible
11438     11438 King James Version Bible
11439     11439 King James Version Bible
11440     11440 King James Version Bible
11441     11441 King James Version Bible
11442     11442 King James Version Bible
11443     11443 King James Version Bible
11444     11444 King James Version Bible
11445     11445 King James Version Bible
11446     11446 King James Version Bible
11447     11447 King James Version Bible
11448     11448 King James Version Bible
11449     11449 King James Version Bible
11450     11450 King James Version Bible
11451     11451 King James Version Bible
11452     11452 King James Version Bible
11453     11453 King James Version Bible
11454     11454 King James Version Bible
11455     11455 King James Version Bible
11456     11456 King James Version Bible
11457     11457 King James Version Bible
11458     11458 King James Version Bible
11459     11459 King James Version Bible
11460     11460 King James Version Bible
11461     11461 King James Version Bible
11462     11462 King James Version Bible
11463     11463 King James Version Bible
11464     11464 King James Version Bible
11465     11465 King James Version Bible
11466     11466 King James Version Bible
11467     11467 King James Version Bible
11468     11468 King James Version Bible
11469     11469 King James Version Bible
11470     11470 King James Version Bible
11471     11471 King James Version Bible
11472     11472 King James Version Bible
11473     11473 King James Version Bible
11474     11474 King James Version Bible
11475     11475 King James Version Bible
11476     11476 King James Version Bible
11477     11477 King James Version Bible
11478     11478 King James Version Bible
11479     11479 King James Version Bible
11480     11480 King James Version Bible
11481     11481 King James Version Bible
11482     11482 King James Version Bible
11483     11483 King James Version Bible
11484     11484 King James Version Bible
11485     11485 King James Version Bible
11486     11486 King James Version Bible
11487     11487 King James Version Bible
11488     11488 King James Version Bible
11489     11489 King James Version Bible
11490     11490 King James Version Bible
11491     11491 King James Version Bible
11492     11492 King James Version Bible
11493     11493 King James Version Bible
11494     11494 King James Version Bible
11495     11495 King James Version Bible
11496     11496 King James Version Bible
11497     11497 King James Version Bible
11498     11498 King James Version Bible
11499     11499 King James Version Bible
11500     11500 King James Version Bible
11501     11501 King James Version Bible
11502     11502 King James Version Bible
11503     11503 King James Version Bible
11504     11504 King James Version Bible
11505     11505 King James Version Bible
11506     11506 King James Version Bible
11507     11507 King James Version Bible
11508     11508 King James Version Bible
11509     11509 King James Version Bible
11510     11510 King James Version Bible
11511     11511 King James Version Bible
11512     11512 King James Version Bible
11513     11513 King James Version Bible
11514     11514 King James Version Bible
11515     11515 King James Version Bible
11516     11516 King James Version Bible
11517     11517 King James Version Bible
11518     11518 King James Version Bible
11519     11519 King James Version Bible
11520     11520 King James Version Bible
11521     11521 King James Version Bible
11522     11522 King James Version Bible
11523     11523 King James Version Bible
11524     11524 King James Version Bible
11525     11525 King James Version Bible
11526     11526 King James Version Bible
11527     11527 King James Version Bible
11528     11528 King James Version Bible
11529     11529 King James Version Bible
11530     11530 King James Version Bible
11531     11531 King James Version Bible
11532     11532 King James Version Bible
11533     11533 King James Version Bible
11534     11534 King James Version Bible
11535     11535 King James Version Bible
11536     11536 King James Version Bible
11537     11537 King James Version Bible
11538     11538 King James Version Bible
11539     11539 King James Version Bible
11540     11540 King James Version Bible
11541     11541 King James Version Bible
11542     11542 King James Version Bible
11543     11543 King James Version Bible
11544     11544 King James Version Bible
11545     11545 King James Version Bible
11546     11546 King James Version Bible
11547     11547 King James Version Bible
11548     11548 King James Version Bible
11549     11549 King James Version Bible
11550     11550 King James Version Bible
11551     11551 King James Version Bible
11552     11552 King James Version Bible
11553     11553 King James Version Bible
11554     11554 King James Version Bible
11555     11555 King James Version Bible
11556     11556 King James Version Bible
11557     11557 King James Version Bible
11558     11558 King James Version Bible
11559     11559 King James Version Bible
11560     11560 King James Version Bible
11561     11561 King James Version Bible
11562     11562 King James Version Bible
11563     11563 King James Version Bible
11564     11564 King James Version Bible
11565     11565 King James Version Bible
11566     11566 King James Version Bible
11567     11567 King James Version Bible
11568     11568 King James Version Bible
11569     11569 King James Version Bible
11570     11570 King James Version Bible
11571     11571 King James Version Bible
11572     11572 King James Version Bible
11573     11573 King James Version Bible
11574     11574 King James Version Bible
11575     11575 King James Version Bible
11576     11576 King James Version Bible
11577     11577 King James Version Bible
11578     11578 King James Version Bible
11579     11579 King James Version Bible
11580     11580 King James Version Bible
11581     11581 King James Version Bible
11582     11582 King James Version Bible
11583     11583 King James Version Bible
11584     11584 King James Version Bible
11585     11585 King James Version Bible
11586     11586 King James Version Bible
11587     11587 King James Version Bible
11588     11588 King James Version Bible
11589     11589 King James Version Bible
11590     11590 King James Version Bible
11591     11591 King James Version Bible
11592     11592 King James Version Bible
11593     11593 King James Version Bible
11594     11594 King James Version Bible
11595     11595 King James Version Bible
11596     11596 King James Version Bible
11597     11597 King James Version Bible
11598     11598 King James Version Bible
11599     11599 King James Version Bible
11600     11600 King James Version Bible
11601     11601 King James Version Bible
11602     11602 King James Version Bible
11603     11603 King James Version Bible
11604     11604 King James Version Bible
11605     11605 King James Version Bible
11606     11606 King James Version Bible
11607     11607 King James Version Bible
11608     11608 King James Version Bible
11609     11609 King James Version Bible
11610     11610 King James Version Bible
11611     11611 King James Version Bible
11612     11612 King James Version Bible
11613     11613 King James Version Bible
11614     11614 King James Version Bible
11615     11615 King James Version Bible
11616     11616 King James Version Bible
11617     11617 King James Version Bible
11618     11618 King James Version Bible
11619     11619 King James Version Bible
11620     11620 King James Version Bible
11621     11621 King James Version Bible
11622     11622 King James Version Bible
11623     11623 King James Version Bible
11624     11624 King James Version Bible
11625     11625 King James Version Bible
11626     11626 King James Version Bible
11627     11627 King James Version Bible
11628     11628 King James Version Bible
11629     11629 King James Version Bible
11630     11630 King James Version Bible
11631     11631 King James Version Bible
11632     11632 King James Version Bible
11633     11633 King James Version Bible
11634     11634 King James Version Bible
11635     11635 King James Version Bible
11636     11636 King James Version Bible
11637     11637 King James Version Bible
11638     11638 King James Version Bible
11639     11639 King James Version Bible
11640     11640 King James Version Bible
11641     11641 King James Version Bible
11642     11642 King James Version Bible
11643     11643 King James Version Bible
11644     11644 King James Version Bible
11645     11645 King James Version Bible
11646     11646 King James Version Bible
11647     11647 King James Version Bible
11648     11648 King James Version Bible
11649     11649 King James Version Bible
11650     11650 King James Version Bible
11651     11651 King James Version Bible
11652     11652 King James Version Bible
11653     11653 King James Version Bible
11654     11654 King James Version Bible
11655     11655 King James Version Bible
11656     11656 King James Version Bible
11657     11657 King James Version Bible
11658     11658 King James Version Bible
11659     11659 King James Version Bible
11660     11660 King James Version Bible
11661     11661 King James Version Bible
11662     11662 King James Version Bible
11663     11663 King James Version Bible
11664     11664 King James Version Bible
11665     11665 King James Version Bible
11666     11666 King James Version Bible
11667     11667 King James Version Bible
11668     11668 King James Version Bible
11669     11669 King James Version Bible
11670     11670 King James Version Bible
11671     11671 King James Version Bible
11672     11672 King James Version Bible
11673     11673 King James Version Bible
11674     11674 King James Version Bible
11675     11675 King James Version Bible
11676     11676 King James Version Bible
11677     11677 King James Version Bible
11678     11678 King James Version Bible
11679     11679 King James Version Bible
11680     11680 King James Version Bible
11681     11681 King James Version Bible
11682     11682 King James Version Bible
11683     11683 King James Version Bible
11684     11684 King James Version Bible
11685     11685 King James Version Bible
11686     11686 King James Version Bible
11687     11687 King James Version Bible
11688     11688 King James Version Bible
11689     11689 King James Version Bible
11690     11690 King James Version Bible
11691     11691 King James Version Bible
11692     11692 King James Version Bible
11693     11693 King James Version Bible
11694     11694 King James Version Bible
11695     11695 King James Version Bible
11696     11696 King James Version Bible
11697     11697 King James Version Bible
11698     11698 King James Version Bible
11699     11699 King James Version Bible
11700     11700 King James Version Bible
11701     11701 King James Version Bible
11702     11702 King James Version Bible
11703     11703 King James Version Bible
11704     11704 King James Version Bible
11705     11705 King James Version Bible
11706     11706 King James Version Bible
11707     11707 King James Version Bible
11708     11708 King James Version Bible
11709     11709 King James Version Bible
11710     11710 King James Version Bible
11711     11711 King James Version Bible
11712     11712 King James Version Bible
11713     11713 King James Version Bible
11714     11714 King James Version Bible
11715     11715 King James Version Bible
11716     11716 King James Version Bible
11717     11717 King James Version Bible
11718     11718 King James Version Bible
11719     11719 King James Version Bible
11720     11720 King James Version Bible
11721     11721 King James Version Bible
11722     11722 King James Version Bible
11723     11723 King James Version Bible
11724     11724 King James Version Bible
11725     11725 King James Version Bible
11726     11726 King James Version Bible
11727     11727 King James Version Bible
11728     11728 King James Version Bible
11729     11729 King James Version Bible
11730     11730 King James Version Bible
11731     11731 King James Version Bible
11732     11732 King James Version Bible
11733     11733 King James Version Bible
11734     11734 King James Version Bible
11735     11735 King James Version Bible
11736     11736 King James Version Bible
11737     11737 King James Version Bible
11738     11738 King James Version Bible
11739     11739 King James Version Bible
11740     11740 King James Version Bible
11741     11741 King James Version Bible
11742     11742 King James Version Bible
11743     11743 King James Version Bible
11744     11744 King James Version Bible
11745     11745 King James Version Bible
11746     11746 King James Version Bible
11747     11747 King James Version Bible
11748     11748 King James Version Bible
11749     11749 King James Version Bible
11750     11750 King James Version Bible
11751     11751 King James Version Bible
11752     11752 King James Version Bible
11753     11753 King James Version Bible
11754     11754 King James Version Bible
11755     11755 King James Version Bible
11756     11756 King James Version Bible
11757     11757 King James Version Bible
11758     11758 King James Version Bible
11759     11759 King James Version Bible
11760     11760 King James Version Bible
11761     11761 King James Version Bible
11762     11762 King James Version Bible
11763     11763 King James Version Bible
11764     11764 King James Version Bible
11765     11765 King James Version Bible
11766     11766 King James Version Bible
11767     11767 King James Version Bible
11768     11768 King James Version Bible
11769     11769 King James Version Bible
11770     11770 King James Version Bible
11771     11771 King James Version Bible
11772     11772 King James Version Bible
11773     11773 King James Version Bible
11774     11774 King James Version Bible
11775     11775 King James Version Bible
11776     11776 King James Version Bible
11777     11777 King James Version Bible
11778     11778 King James Version Bible
11779     11779 King James Version Bible
11780     11780 King James Version Bible
11781     11781 King James Version Bible
11782     11782 King James Version Bible
11783     11783 King James Version Bible
11784     11784 King James Version Bible
11785     11785 King James Version Bible
11786     11786 King James Version Bible
11787     11787 King James Version Bible
11788     11788 King James Version Bible
11789     11789 King James Version Bible
11790     11790 King James Version Bible
11791     11791 King James Version Bible
11792     11792 King James Version Bible
11793     11793 King James Version Bible
11794     11794 King James Version Bible
11795     11795 King James Version Bible
11796     11796 King James Version Bible
11797     11797 King James Version Bible
11798     11798 King James Version Bible
11799     11799 King James Version Bible
11800     11800 King James Version Bible
11801     11801 King James Version Bible
11802     11802 King James Version Bible
11803     11803 King James Version Bible
11804     11804 King James Version Bible
11805     11805 King James Version Bible
11806     11806 King James Version Bible
11807     11807 King James Version Bible
11808     11808 King James Version Bible
11809     11809 King James Version Bible
11810     11810 King James Version Bible
11811     11811 King James Version Bible
11812     11812 King James Version Bible
11813     11813 King James Version Bible
11814     11814 King James Version Bible
11815     11815 King James Version Bible
11816     11816 King James Version Bible
11817     11817 King James Version Bible
11818     11818 King James Version Bible
11819     11819 King James Version Bible
11820     11820 King James Version Bible
11821     11821 King James Version Bible
11822     11822 King James Version Bible
11823     11823 King James Version Bible
11824     11824 King James Version Bible
11825     11825 King James Version Bible
11826     11826 King James Version Bible
11827     11827 King James Version Bible
11828     11828 King James Version Bible
11829     11829 King James Version Bible
11830     11830 King James Version Bible
11831     11831 King James Version Bible
11832     11832 King James Version Bible
11833     11833 King James Version Bible
11834     11834 King James Version Bible
11835     11835 King James Version Bible
11836     11836 King James Version Bible
11837     11837 King James Version Bible
11838     11838 King James Version Bible
11839     11839 King James Version Bible
11840     11840 King James Version Bible
11841     11841 King James Version Bible
11842     11842 King James Version Bible
11843     11843 King James Version Bible
11844     11844 King James Version Bible
11845     11845 King James Version Bible
11846     11846 King James Version Bible
11847     11847 King James Version Bible
11848     11848 King James Version Bible
11849     11849 King James Version Bible
11850     11850 King James Version Bible
11851     11851 King James Version Bible
11852     11852 King James Version Bible
11853     11853 King James Version Bible
11854     11854 King James Version Bible
11855     11855 King James Version Bible
11856     11856 King James Version Bible
11857     11857 King James Version Bible
11858     11858 King James Version Bible
11859     11859 King James Version Bible
11860     11860 King James Version Bible
11861     11861 King James Version Bible
11862     11862 King James Version Bible
11863     11863 King James Version Bible
11864     11864 King James Version Bible
11865     11865 King James Version Bible
11866     11866 King James Version Bible
11867     11867 King James Version Bible
11868     11868 King James Version Bible
11869     11869 King James Version Bible
11870     11870 King James Version Bible
11871     11871 King James Version Bible
11872     11872 King James Version Bible
11873     11873 King James Version Bible
11874     11874 King James Version Bible
11875     11875 King James Version Bible
11876     11876 King James Version Bible
11877     11877 King James Version Bible
11878     11878 King James Version Bible
11879     11879 King James Version Bible
11880     11880 King James Version Bible
11881     11881 King James Version Bible
11882     11882 King James Version Bible
11883     11883 King James Version Bible
11884     11884 King James Version Bible
11885     11885 King James Version Bible
11886     11886 King James Version Bible
11887     11887 King James Version Bible
11888     11888 King James Version Bible
11889     11889 King James Version Bible
11890     11890 King James Version Bible
11891     11891 King James Version Bible
11892     11892 King James Version Bible
11893     11893 King James Version Bible
11894     11894 King James Version Bible
11895     11895 King James Version Bible
11896     11896 King James Version Bible
11897     11897 King James Version Bible
11898     11898 King James Version Bible
11899     11899 King James Version Bible
11900     11900 King James Version Bible
11901     11901 King James Version Bible
11902     11902 King James Version Bible
11903     11903 King James Version Bible
11904     11904 King James Version Bible
11905     11905 King James Version Bible
11906     11906 King James Version Bible
11907     11907 King James Version Bible
11908     11908 King James Version Bible
11909     11909 King James Version Bible
11910     11910 King James Version Bible
11911     11911 King James Version Bible
11912     11912 King James Version Bible
11913     11913 King James Version Bible
11914     11914 King James Version Bible
11915     11915 King James Version Bible
11916     11916 King James Version Bible
11917     11917 King James Version Bible
11918     11918 King James Version Bible
11919     11919 King James Version Bible
11920     11920 King James Version Bible
11921     11921 King James Version Bible
11922     11922 King James Version Bible
11923     11923 King James Version Bible
11924     11924 King James Version Bible
11925     11925 King James Version Bible
11926     11926 King James Version Bible
11927     11927 King James Version Bible
11928     11928 King James Version Bible
11929     11929 King James Version Bible
11930     11930 King James Version Bible
11931     11931 King James Version Bible
11932     11932 King James Version Bible
11933     11933 King James Version Bible
11934     11934 King James Version Bible
11935     11935 King James Version Bible
11936     11936 King James Version Bible
11937     11937 King James Version Bible
11938     11938 King James Version Bible
11939     11939 King James Version Bible
11940     11940 King James Version Bible
11941     11941 King James Version Bible
11942     11942 King James Version Bible
11943     11943 King James Version Bible
11944     11944 King James Version Bible
11945     11945 King James Version Bible
11946     11946 King James Version Bible
11947     11947 King James Version Bible
11948     11948 King James Version Bible
11949     11949 King James Version Bible
11950     11950 King James Version Bible
11951     11951 King James Version Bible
11952     11952 King James Version Bible
11953     11953 King James Version Bible
11954     11954 King James Version Bible
11955     11955 King James Version Bible
11956     11956 King James Version Bible
11957     11957 King James Version Bible
11958     11958 King James Version Bible
11959     11959 King James Version Bible
11960     11960 King James Version Bible
11961     11961 King James Version Bible
11962     11962 King James Version Bible
11963     11963 King James Version Bible
11964     11964 King James Version Bible
11965     11965 King James Version Bible
11966     11966 King James Version Bible
11967     11967 King James Version Bible
11968     11968 King James Version Bible
11969     11969 King James Version Bible
11970     11970 King James Version Bible
11971     11971 King James Version Bible
11972     11972 King James Version Bible
11973     11973 King James Version Bible
11974     11974 King James Version Bible
11975     11975 King James Version Bible
11976     11976 King James Version Bible
11977     11977 King James Version Bible
11978     11978 King James Version Bible
11979     11979 King James Version Bible
11980     11980 King James Version Bible
11981     11981 King James Version Bible
11982     11982 King James Version Bible
11983     11983 King James Version Bible
11984     11984 King James Version Bible
11985     11985 King James Version Bible
11986     11986 King James Version Bible
11987     11987 King James Version Bible
11988     11988 King James Version Bible
11989     11989 King James Version Bible
11990     11990 King James Version Bible
11991     11991 King James Version Bible
11992     11992 King James Version Bible
11993     11993 King James Version Bible
11994     11994 King James Version Bible
11995     11995 King James Version Bible
11996     11996 King James Version Bible
11997     11997 King James Version Bible
11998     11998 King James Version Bible
11999     11999 King James Version Bible
12000     12000 King James Version Bible
12001     12001 King James Version Bible
12002     12002 King James Version Bible
12003     12003 King James Version Bible
12004     12004 King James Version Bible
12005     12005 King James Version Bible
12006     12006 King James Version Bible
12007     12007 King James Version Bible
12008     12008 King James Version Bible
12009     12009 King James Version Bible
12010     12010 King James Version Bible
12011     12011 King James Version Bible
12012     12012 King James Version Bible
12013     12013 King James Version Bible
12014     12014 King James Version Bible
12015     12015 King James Version Bible
12016     12016 King James Version Bible
12017     12017 King James Version Bible
12018     12018 King James Version Bible
12019     12019 King James Version Bible
12020     12020 King James Version Bible
12021     12021 King James Version Bible
12022     12022 King James Version Bible
12023     12023 King James Version Bible
12024     12024 King James Version Bible
12025     12025 King James Version Bible
12026     12026 King James Version Bible
12027     12027 King James Version Bible
12028     12028 King James Version Bible
12029     12029 King James Version Bible
12030     12030 King James Version Bible
12031     12031 King James Version Bible
12032     12032 King James Version Bible
12033     12033 King James Version Bible
12034     12034 King James Version Bible
12035     12035 King James Version Bible
12036     12036 King James Version Bible
12037     12037 King James Version Bible
12038     12038 King James Version Bible
12039     12039 King James Version Bible
12040     12040 King James Version Bible
12041     12041 King James Version Bible
12042     12042 King James Version Bible
12043     12043 King James Version Bible
12044     12044 King James Version Bible
12045     12045 King James Version Bible
12046     12046 King James Version Bible
12047     12047 King James Version Bible
12048     12048 King James Version Bible
12049     12049 King James Version Bible
12050     12050 King James Version Bible
12051     12051 King James Version Bible
12052     12052 King James Version Bible
12053     12053 King James Version Bible
12054     12054 King James Version Bible
12055     12055 King James Version Bible
12056     12056 King James Version Bible
12057     12057 King James Version Bible
12058     12058 King James Version Bible
12059     12059 King James Version Bible
12060     12060 King James Version Bible
12061     12061 King James Version Bible
12062     12062 King James Version Bible
12063     12063 King James Version Bible
12064     12064 King James Version Bible
12065     12065 King James Version Bible
12066     12066 King James Version Bible
12067     12067 King James Version Bible
12068     12068 King James Version Bible
12069     12069 King James Version Bible
12070     12070 King James Version Bible
12071     12071 King James Version Bible
12072     12072 King James Version Bible
12073     12073 King James Version Bible
12074     12074 King James Version Bible
12075     12075 King James Version Bible
12076     12076 King James Version Bible
12077     12077 King James Version Bible
12078     12078 King James Version Bible
12079     12079 King James Version Bible
12080     12080 King James Version Bible
12081     12081 King James Version Bible
12082     12082 King James Version Bible
12083     12083 King James Version Bible
12084     12084 King James Version Bible
12085     12085 King James Version Bible
12086     12086 King James Version Bible
12087     12087 King James Version Bible
12088     12088 King James Version Bible
12089     12089 King James Version Bible
12090     12090 King James Version Bible
12091     12091 King James Version Bible
12092     12092 King James Version Bible
12093     12093 King James Version Bible
12094     12094 King James Version Bible
12095     12095 King James Version Bible
12096     12096 King James Version Bible
12097     12097 King James Version Bible
12098     12098 King James Version Bible
12099     12099 King James Version Bible
12100     12100 King James Version Bible
12101     12101 King James Version Bible
12102     12102 King James Version Bible
12103     12103 King James Version Bible
12104     12104 King James Version Bible
12105     12105 King James Version Bible
12106     12106 King James Version Bible
12107     12107 King James Version Bible
12108     12108 King James Version Bible
12109     12109 King James Version Bible
12110     12110 King James Version Bible
12111     12111 King James Version Bible
12112     12112 King James Version Bible
12113     12113 King James Version Bible
12114     12114 King James Version Bible
12115     12115 King James Version Bible
12116     12116 King James Version Bible
12117     12117 King James Version Bible
12118     12118 King James Version Bible
12119     12119 King James Version Bible
12120     12120 King James Version Bible
12121     12121 King James Version Bible
12122     12122 King James Version Bible
12123     12123 King James Version Bible
12124     12124 King James Version Bible
12125     12125 King James Version Bible
12126     12126 King James Version Bible
12127     12127 King James Version Bible
12128     12128 King James Version Bible
12129     12129 King James Version Bible
12130     12130 King James Version Bible
12131     12131 King James Version Bible
12132     12132 King James Version Bible
12133     12133 King James Version Bible
12134     12134 King James Version Bible
12135     12135 King James Version Bible
12136     12136 King James Version Bible
12137     12137 King James Version Bible
12138     12138 King James Version Bible
12139     12139 King James Version Bible
12140     12140 King James Version Bible
12141     12141 King James Version Bible
12142     12142 King James Version Bible
12143     12143 King James Version Bible
12144     12144 King James Version Bible
12145     12145 King James Version Bible
12146     12146 King James Version Bible
12147     12147 King James Version Bible
12148     12148 King James Version Bible
12149     12149 King James Version Bible
12150     12150 King James Version Bible
12151     12151 King James Version Bible
12152     12152 King James Version Bible
12153     12153 King James Version Bible
12154     12154 King James Version Bible
12155     12155 King James Version Bible
12156     12156 King James Version Bible
12157     12157 King James Version Bible
12158     12158 King James Version Bible
12159     12159 King James Version Bible
12160     12160 King James Version Bible
12161     12161 King James Version Bible
12162     12162 King James Version Bible
12163     12163 King James Version Bible
12164     12164 King James Version Bible
12165     12165 King James Version Bible
12166     12166 King James Version Bible
12167     12167 King James Version Bible
12168     12168 King James Version Bible
12169     12169 King James Version Bible
12170     12170 King James Version Bible
12171     12171 King James Version Bible
12172     12172 King James Version Bible
12173     12173 King James Version Bible
12174     12174 King James Version Bible
12175     12175 King James Version Bible
12176     12176 King James Version Bible
12177     12177 King James Version Bible
12178     12178 King James Version Bible
12179     12179 King James Version Bible
12180     12180 King James Version Bible
12181     12181 King James Version Bible
12182     12182 King James Version Bible
12183     12183 King James Version Bible
12184     12184 King James Version Bible
12185     12185 King James Version Bible
12186     12186 King James Version Bible
12187     12187 King James Version Bible
12188     12188 King James Version Bible
12189     12189 King James Version Bible
12190     12190 King James Version Bible
12191     12191 King James Version Bible
12192     12192 King James Version Bible
12193     12193 King James Version Bible
12194     12194 King James Version Bible
12195     12195 King James Version Bible
12196     12196 King James Version Bible
12197     12197 King James Version Bible
12198     12198 King James Version Bible
12199     12199 King James Version Bible
12200     12200 King James Version Bible
12201     12201 King James Version Bible
12202     12202 King James Version Bible
12203     12203 King James Version Bible
12204     12204 King James Version Bible
12205     12205 King James Version Bible
12206     12206 King James Version Bible
12207     12207 King James Version Bible
12208     12208 King James Version Bible
12209     12209 King James Version Bible
12210     12210 King James Version Bible
12211     12211 King James Version Bible
12212     12212 King James Version Bible
12213     12213 King James Version Bible
12214     12214 King James Version Bible
12215     12215 King James Version Bible
12216     12216 King James Version Bible
12217     12217 King James Version Bible
12218     12218 King James Version Bible
12219     12219 King James Version Bible
12220     12220 King James Version Bible
12221     12221 King James Version Bible
12222     12222 King James Version Bible
12223     12223 King James Version Bible
12224     12224 King James Version Bible
12225     12225 King James Version Bible
12226     12226 King James Version Bible
12227     12227 King James Version Bible
12228     12228 King James Version Bible
12229     12229 King James Version Bible
12230     12230 King James Version Bible
12231     12231 King James Version Bible
12232     12232 King James Version Bible
12233     12233 King James Version Bible
12234     12234 King James Version Bible
12235     12235 King James Version Bible
12236     12236 King James Version Bible
12237     12237 King James Version Bible
12238     12238 King James Version Bible
12239     12239 King James Version Bible
12240     12240 King James Version Bible
12241     12241 King James Version Bible
12242     12242 King James Version Bible
12243     12243 King James Version Bible
12244     12244 King James Version Bible
12245     12245 King James Version Bible
12246     12246 King James Version Bible
12247     12247 King James Version Bible
12248     12248 King James Version Bible
12249     12249 King James Version Bible
12250     12250 King James Version Bible
12251     12251 King James Version Bible
12252     12252 King James Version Bible
12253     12253 King James Version Bible
12254     12254 King James Version Bible
12255     12255 King James Version Bible
12256     12256 King James Version Bible
12257     12257 King James Version Bible
12258     12258 King James Version Bible
12259     12259 King James Version Bible
12260     12260 King James Version Bible
12261     12261 King James Version Bible
12262     12262 King James Version Bible
12263     12263 King James Version Bible
12264     12264 King James Version Bible
12265     12265 King James Version Bible
12266     12266 King James Version Bible
12267     12267 King James Version Bible
12268     12268 King James Version Bible
12269     12269 King James Version Bible
12270     12270 King James Version Bible
12271     12271 King James Version Bible
12272     12272 King James Version Bible
12273     12273 King James Version Bible
12274     12274 King James Version Bible
12275     12275 King James Version Bible
12276     12276 King James Version Bible
12277     12277 King James Version Bible
12278     12278 King James Version Bible
12279     12279 King James Version Bible
12280     12280 King James Version Bible
12281     12281 King James Version Bible
12282     12282 King James Version Bible
12283     12283 King James Version Bible
12284     12284 King James Version Bible
12285     12285 King James Version Bible
12286     12286 King James Version Bible
12287     12287 King James Version Bible
12288     12288 King James Version Bible
12289     12289 King James Version Bible
12290     12290 King James Version Bible
12291     12291 King James Version Bible
12292     12292 King James Version Bible
12293     12293 King James Version Bible
12294     12294 King James Version Bible
12295     12295 King James Version Bible
12296     12296 King James Version Bible
12297     12297 King James Version Bible
12298     12298 King James Version Bible
12299     12299 King James Version Bible
12300     12300 King James Version Bible
12301     12301 King James Version Bible
12302     12302 King James Version Bible
12303     12303 King James Version Bible
12304     12304 King James Version Bible
12305     12305 King James Version Bible
12306     12306 King James Version Bible
12307     12307 King James Version Bible
12308     12308 King James Version Bible
12309     12309 King James Version Bible
12310     12310 King James Version Bible
12311     12311 King James Version Bible
12312     12312 King James Version Bible
12313     12313 King James Version Bible
12314     12314 King James Version Bible
12315     12315 King James Version Bible
12316     12316 King James Version Bible
12317     12317 King James Version Bible
12318     12318 King James Version Bible
12319     12319 King James Version Bible
12320     12320 King James Version Bible
12321     12321 King James Version Bible
12322     12322 King James Version Bible
12323     12323 King James Version Bible
12324     12324 King James Version Bible
12325     12325 King James Version Bible
12326     12326 King James Version Bible
12327     12327 King James Version Bible
12328     12328 King James Version Bible
12329     12329 King James Version Bible
12330     12330 King James Version Bible
12331     12331 King James Version Bible
12332     12332 King James Version Bible
12333     12333 King James Version Bible
12334     12334 King James Version Bible
12335     12335 King James Version Bible
12336     12336 King James Version Bible
12337     12337 King James Version Bible
12338     12338 King James Version Bible
12339     12339 King James Version Bible
12340     12340 King James Version Bible
12341     12341 King James Version Bible
12342     12342 King James Version Bible
12343     12343 King James Version Bible
12344     12344 King James Version Bible
12345     12345 King James Version Bible
12346     12346 King James Version Bible
12347     12347 King James Version Bible
12348     12348 King James Version Bible
12349     12349 King James Version Bible
12350     12350 King James Version Bible
12351     12351 King James Version Bible
12352     12352 King James Version Bible
12353     12353 King James Version Bible
12354     12354 King James Version Bible
12355     12355 King James Version Bible
12356     12356 King James Version Bible
12357     12357 King James Version Bible
12358     12358 King James Version Bible
12359     12359 King James Version Bible
12360     12360 King James Version Bible
12361     12361 King James Version Bible
12362     12362 King James Version Bible
12363     12363 King James Version Bible
12364     12364 King James Version Bible
12365     12365 King James Version Bible
12366     12366 King James Version Bible
12367     12367 King James Version Bible
12368     12368 King James Version Bible
12369     12369 King James Version Bible
12370     12370 King James Version Bible
12371     12371 King James Version Bible
12372     12372 King James Version Bible
12373     12373 King James Version Bible
12374     12374 King James Version Bible
12375     12375 King James Version Bible
12376     12376 King James Version Bible
12377     12377 King James Version Bible
12378     12378 King James Version Bible
12379     12379 King James Version Bible
12380     12380 King James Version Bible
12381     12381 King James Version Bible
12382     12382 King James Version Bible
12383     12383 King James Version Bible
12384     12384 King James Version Bible
12385     12385 King James Version Bible
12386     12386 King James Version Bible
12387     12387 King James Version Bible
12388     12388 King James Version Bible
12389     12389 King James Version Bible
12390     12390 King James Version Bible
12391     12391 King James Version Bible
12392     12392 King James Version Bible
12393     12393 King James Version Bible
12394     12394 King James Version Bible
12395     12395 King James Version Bible
12396     12396 King James Version Bible
12397     12397 King James Version Bible
12398     12398 King James Version Bible
12399     12399 King James Version Bible
12400     12400 King James Version Bible
12401     12401 King James Version Bible
12402     12402 King James Version Bible
12403     12403 King James Version Bible
12404     12404 King James Version Bible
12405     12405 King James Version Bible
12406     12406 King James Version Bible
12407     12407 King James Version Bible
12408     12408 King James Version Bible
12409     12409 King James Version Bible
12410     12410 King James Version Bible
12411     12411 King James Version Bible
12412     12412 King James Version Bible
12413     12413 King James Version Bible
12414     12414 King James Version Bible
12415     12415 King James Version Bible
12416     12416 King James Version Bible
12417     12417 King James Version Bible
12418     12418 King James Version Bible
12419     12419 King James Version Bible
12420     12420 King James Version Bible
12421     12421 King James Version Bible
12422     12422 King James Version Bible
12423     12423 King James Version Bible
12424     12424 King James Version Bible
12425     12425 King James Version Bible
12426     12426 King James Version Bible
12427     12427 King James Version Bible
12428     12428 King James Version Bible
12429     12429 King James Version Bible
12430     12430 King James Version Bible
12431     12431 King James Version Bible
12432     12432 King James Version Bible
12433     12433 King James Version Bible
12434     12434 King James Version Bible
12435     12435 King James Version Bible
12436     12436 King James Version Bible
12437     12437 King James Version Bible
12438     12438 King James Version Bible
12439     12439 King James Version Bible
12440     12440 King James Version Bible
12441     12441 King James Version Bible
12442     12442 King James Version Bible
12443     12443 King James Version Bible
12444     12444 King James Version Bible
12445     12445 King James Version Bible
12446     12446 King James Version Bible
12447     12447 King James Version Bible
12448     12448 King James Version Bible
12449     12449 King James Version Bible
12450     12450 King James Version Bible
12451     12451 King James Version Bible
12452     12452 King James Version Bible
12453     12453 King James Version Bible
12454     12454 King James Version Bible
12455     12455 King James Version Bible
12456     12456 King James Version Bible
12457     12457 King James Version Bible
12458     12458 King James Version Bible
12459     12459 King James Version Bible
12460     12460 King James Version Bible
12461     12461 King James Version Bible
12462     12462 King James Version Bible
12463     12463 King James Version Bible
12464     12464 King James Version Bible
12465     12465 King James Version Bible
12466     12466 King James Version Bible
12467     12467 King James Version Bible
12468     12468 King James Version Bible
12469     12469 King James Version Bible
12470     12470 King James Version Bible
12471     12471 King James Version Bible
12472     12472 King James Version Bible
12473     12473 King James Version Bible
12474     12474 King James Version Bible
12475     12475 King James Version Bible
12476     12476 King James Version Bible
12477     12477 King James Version Bible
12478     12478 King James Version Bible
12479     12479 King James Version Bible
12480     12480 King James Version Bible
12481     12481 King James Version Bible
12482     12482 King James Version Bible
12483     12483 King James Version Bible
12484     12484 King James Version Bible
12485     12485 King James Version Bible
12486     12486 King James Version Bible
12487     12487 King James Version Bible
12488     12488 King James Version Bible
12489     12489 King James Version Bible
12490     12490 King James Version Bible
12491     12491 King James Version Bible
12492     12492 King James Version Bible
12493     12493 King James Version Bible
12494     12494 King James Version Bible
12495     12495 King James Version Bible
12496     12496 King James Version Bible
12497     12497 King James Version Bible
12498     12498 King James Version Bible
12499     12499 King James Version Bible
12500     12500 King James Version Bible
12501     12501 King James Version Bible
12502     12502 King James Version Bible
12503     12503 King James Version Bible
12504     12504 King James Version Bible
12505     12505 King James Version Bible
12506     12506 King James Version Bible
12507     12507 King James Version Bible
12508     12508 King James Version Bible
12509     12509 King James Version Bible
12510     12510 King James Version Bible
12511     12511 King James Version Bible
12512     12512 King James Version Bible
12513     12513 King James Version Bible
12514     12514 King James Version Bible
12515     12515 King James Version Bible
12516     12516 King James Version Bible
12517     12517 King James Version Bible
12518     12518 King James Version Bible
12519     12519 King James Version Bible
12520     12520 King James Version Bible
12521     12521 King James Version Bible
12522     12522 King James Version Bible
12523     12523 King James Version Bible
12524     12524 King James Version Bible
12525     12525 King James Version Bible
12526     12526 King James Version Bible
12527     12527 King James Version Bible
12528     12528 King James Version Bible
12529     12529 King James Version Bible
12530     12530 King James Version Bible
12531     12531 King James Version Bible
12532     12532 King James Version Bible
12533     12533 King James Version Bible
12534     12534 King James Version Bible
12535     12535 King James Version Bible
12536     12536 King James Version Bible
12537     12537 King James Version Bible
12538     12538 King James Version Bible
12539     12539 King James Version Bible
12540     12540 King James Version Bible
12541     12541 King James Version Bible
12542     12542 King James Version Bible
12543     12543 King James Version Bible
12544     12544 King James Version Bible
12545     12545 King James Version Bible
12546     12546 King James Version Bible
12547     12547 King James Version Bible
12548     12548 King James Version Bible
12549     12549 King James Version Bible
12550     12550 King James Version Bible
12551     12551 King James Version Bible
12552     12552 King James Version Bible
12553     12553 King James Version Bible
12554     12554 King James Version Bible
12555     12555 King James Version Bible
12556     12556 King James Version Bible
12557     12557 King James Version Bible
12558     12558 King James Version Bible
12559     12559 King James Version Bible
12560     12560 King James Version Bible
12561     12561 King James Version Bible
12562     12562 King James Version Bible
12563     12563 King James Version Bible
12564     12564 King James Version Bible
12565     12565 King James Version Bible
12566     12566 King James Version Bible
12567     12567 King James Version Bible
12568     12568 King James Version Bible
12569     12569 King James Version Bible
12570     12570 King James Version Bible
12571     12571 King James Version Bible
12572     12572 King James Version Bible
12573     12573 King James Version Bible
12574     12574 King James Version Bible
12575     12575 King James Version Bible
12576     12576 King James Version Bible
12577     12577 King James Version Bible
12578     12578 King James Version Bible
12579     12579 King James Version Bible
12580     12580 King James Version Bible
12581     12581 King James Version Bible
12582     12582 King James Version Bible
12583     12583 King James Version Bible
12584     12584 King James Version Bible
12585     12585 King James Version Bible
12586     12586 King James Version Bible
12587     12587 King James Version Bible
12588     12588 King James Version Bible
12589     12589 King James Version Bible
12590     12590 King James Version Bible
12591     12591 King James Version Bible
12592     12592 King James Version Bible
12593     12593 King James Version Bible
12594     12594 King James Version Bible
12595     12595 King James Version Bible
12596     12596 King James Version Bible
12597     12597 King James Version Bible
12598     12598 King James Version Bible
12599     12599 King James Version Bible
12600     12600 King James Version Bible
12601     12601 King James Version Bible
12602     12602 King James Version Bible
12603     12603 King James Version Bible
12604     12604 King James Version Bible
12605     12605 King James Version Bible
12606     12606 King James Version Bible
12607     12607 King James Version Bible
12608     12608 King James Version Bible
12609     12609 King James Version Bible
12610     12610 King James Version Bible
12611     12611 King James Version Bible
12612     12612 King James Version Bible
12613     12613 King James Version Bible
12614     12614 King James Version Bible
12615     12615 King James Version Bible
12616     12616 King James Version Bible
12617     12617 King James Version Bible
12618     12618 King James Version Bible
12619     12619 King James Version Bible
12620     12620 King James Version Bible
12621     12621 King James Version Bible
12622     12622 King James Version Bible
12623     12623 King James Version Bible
12624     12624 King James Version Bible
12625     12625 King James Version Bible
12626     12626 King James Version Bible
12627     12627 King James Version Bible
12628     12628 King James Version Bible
12629     12629 King James Version Bible
12630     12630 King James Version Bible
12631     12631 King James Version Bible
12632     12632 King James Version Bible
12633     12633 King James Version Bible
12634     12634 King James Version Bible
12635     12635 King James Version Bible
12636     12636 King James Version Bible
12637     12637 King James Version Bible
12638     12638 King James Version Bible
12639     12639 King James Version Bible
12640     12640 King James Version Bible
12641     12641 King James Version Bible
12642     12642 King James Version Bible
12643     12643 King James Version Bible
12644     12644 King James Version Bible
12645     12645 King James Version Bible
12646     12646 King James Version Bible
12647     12647 King James Version Bible
12648     12648 King James Version Bible
12649     12649 King James Version Bible
12650     12650 King James Version Bible
12651     12651 King James Version Bible
12652     12652 King James Version Bible
12653     12653 King James Version Bible
12654     12654 King James Version Bible
12655     12655 King James Version Bible
12656     12656 King James Version Bible
12657     12657 King James Version Bible
12658     12658 King James Version Bible
12659     12659 King James Version Bible
12660     12660 King James Version Bible
12661     12661 King James Version Bible
12662     12662 King James Version Bible
12663     12663 King James Version Bible
12664     12664 King James Version Bible
12665     12665 King James Version Bible
12666     12666 King James Version Bible
12667     12667 King James Version Bible
12668     12668 King James Version Bible
12669     12669 King James Version Bible
12670     12670 King James Version Bible
12671     12671 King James Version Bible
12672     12672 King James Version Bible
12673     12673 King James Version Bible
12674     12674 King James Version Bible
12675     12675 King James Version Bible
12676     12676 King James Version Bible
12677     12677 King James Version Bible
12678     12678 King James Version Bible
12679     12679 King James Version Bible
12680     12680 King James Version Bible
12681     12681 King James Version Bible
12682     12682 King James Version Bible
12683     12683 King James Version Bible
12684     12684 King James Version Bible
12685     12685 King James Version Bible
12686     12686 King James Version Bible
12687     12687 King James Version Bible
12688     12688 King James Version Bible
12689     12689 King James Version Bible
12690     12690 King James Version Bible
12691     12691 King James Version Bible
12692     12692 King James Version Bible
12693     12693 King James Version Bible
12694     12694 King James Version Bible
12695     12695 King James Version Bible
12696     12696 King James Version Bible
12697     12697 King James Version Bible
12698     12698 King James Version Bible
12699     12699 King James Version Bible
12700     12700 King James Version Bible
12701     12701 King James Version Bible
12702     12702 King James Version Bible
12703     12703 King James Version Bible
12704     12704 King James Version Bible
12705     12705 King James Version Bible
12706     12706 King James Version Bible
12707     12707 King James Version Bible
12708     12708 King James Version Bible
12709     12709 King James Version Bible
12710     12710 King James Version Bible
12711     12711 King James Version Bible
12712     12712 King James Version Bible
12713     12713 King James Version Bible
12714     12714 King James Version Bible
12715     12715 King James Version Bible
12716     12716 King James Version Bible
12717     12717 King James Version Bible
12718     12718 King James Version Bible
12719     12719 King James Version Bible
12720     12720 King James Version Bible
12721     12721 King James Version Bible
12722     12722 King James Version Bible
12723     12723 King James Version Bible
12724     12724 King James Version Bible
12725     12725 King James Version Bible
12726     12726 King James Version Bible
12727     12727 King James Version Bible
12728     12728 King James Version Bible
12729     12729 King James Version Bible
12730     12730 King James Version Bible
12731     12731 King James Version Bible
12732     12732 King James Version Bible
12733     12733 King James Version Bible
12734     12734 King James Version Bible
12735     12735 King James Version Bible
12736     12736 King James Version Bible
12737     12737 King James Version Bible
12738     12738 King James Version Bible
12739     12739 King James Version Bible
12740     12740 King James Version Bible
12741     12741 King James Version Bible
12742     12742 King James Version Bible
12743     12743 King James Version Bible
12744     12744 King James Version Bible
12745     12745 King James Version Bible
12746     12746 King James Version Bible
12747     12747 King James Version Bible
12748     12748 King James Version Bible
12749     12749 King James Version Bible
12750     12750 King James Version Bible
12751     12751 King James Version Bible
12752     12752 King James Version Bible
12753     12753 King James Version Bible
12754     12754 King James Version Bible
12755     12755 King James Version Bible
12756     12756 King James Version Bible
12757     12757 King James Version Bible
12758     12758 King James Version Bible
12759     12759 King James Version Bible
12760     12760 King James Version Bible
12761     12761 King James Version Bible
12762     12762 King James Version Bible
12763     12763 King James Version Bible
12764     12764 King James Version Bible
12765     12765 King James Version Bible
12766     12766 King James Version Bible
12767     12767 King James Version Bible
12768     12768 King James Version Bible
12769     12769 King James Version Bible
12770     12770 King James Version Bible
12771     12771 King James Version Bible
12772     12772 King James Version Bible
12773     12773 King James Version Bible
12774     12774 King James Version Bible
12775     12775 King James Version Bible
12776     12776 King James Version Bible
12777     12777 King James Version Bible
12778     12778 King James Version Bible
12779     12779 King James Version Bible
12780     12780 King James Version Bible
12781     12781 King James Version Bible
12782     12782 King James Version Bible
12783     12783 King James Version Bible
12784     12784 King James Version Bible
12785     12785 King James Version Bible
12786     12786 King James Version Bible
12787     12787 King James Version Bible
12788     12788 King James Version Bible
12789     12789 King James Version Bible
12790     12790 King James Version Bible
12791     12791 King James Version Bible
12792     12792 King James Version Bible
12793     12793 King James Version Bible
12794     12794 King James Version Bible
12795     12795 King James Version Bible
12796     12796 King James Version Bible
12797     12797 King James Version Bible
12798     12798 King James Version Bible
12799     12799 King James Version Bible
12800     12800 King James Version Bible
12801     12801 King James Version Bible
12802     12802 King James Version Bible
12803     12803 King James Version Bible
12804     12804 King James Version Bible
12805     12805 King James Version Bible
12806     12806 King James Version Bible
12807     12807 King James Version Bible
12808     12808 King James Version Bible
12809     12809 King James Version Bible
12810     12810 King James Version Bible
12811     12811 King James Version Bible
12812     12812 King James Version Bible
12813     12813 King James Version Bible
12814     12814 King James Version Bible
12815     12815 King James Version Bible
12816     12816 King James Version Bible
12817     12817 King James Version Bible
12818     12818 King James Version Bible
12819     12819 King James Version Bible
12820     12820 King James Version Bible
12821     12821 King James Version Bible
12822     12822 King James Version Bible
12823     12823 King James Version Bible
12824     12824 King James Version Bible
12825     12825 King James Version Bible
12826     12826 King James Version Bible
12827     12827 King James Version Bible
12828     12828 King James Version Bible
12829     12829 King James Version Bible
12830     12830 King James Version Bible
12831     12831 King James Version Bible
12832     12832 King James Version Bible
12833     12833 King James Version Bible
12834     12834 King James Version Bible
12835     12835 King James Version Bible
12836     12836 King James Version Bible
12837     12837 King James Version Bible
12838     12838 King James Version Bible
12839     12839 King James Version Bible
12840     12840 King James Version Bible
12841     12841 King James Version Bible
12842     12842 King James Version Bible
12843     12843 King James Version Bible
12844     12844 King James Version Bible
12845     12845 King James Version Bible
12846     12846 King James Version Bible
12847     12847 King James Version Bible
12848     12848 King James Version Bible
12849     12849 King James Version Bible
12850     12850 King James Version Bible
12851     12851 King James Version Bible
12852     12852 King James Version Bible
12853     12853 King James Version Bible
12854     12854 King James Version Bible
12855     12855 King James Version Bible
12856     12856 King James Version Bible
12857     12857 King James Version Bible
12858     12858 King James Version Bible
12859     12859 King James Version Bible
12860     12860 King James Version Bible
12861     12861 King James Version Bible
12862     12862 King James Version Bible
12863     12863 King James Version Bible
12864     12864 King James Version Bible
12865     12865 King James Version Bible
12866     12866 King James Version Bible
12867     12867 King James Version Bible
12868     12868 King James Version Bible
12869     12869 King James Version Bible
12870     12870 King James Version Bible
12871     12871 King James Version Bible
12872     12872 King James Version Bible
12873     12873 King James Version Bible
12874     12874 King James Version Bible
12875     12875 King James Version Bible
12876     12876 King James Version Bible
12877     12877 King James Version Bible
12878     12878 King James Version Bible
12879     12879 King James Version Bible
12880     12880 King James Version Bible
12881     12881 King James Version Bible
12882     12882 King James Version Bible
12883     12883 King James Version Bible
12884     12884 King James Version Bible
12885     12885 King James Version Bible
12886     12886 King James Version Bible
12887     12887 King James Version Bible
12888     12888 King James Version Bible
12889     12889 King James Version Bible
12890     12890 King James Version Bible
12891     12891 King James Version Bible
12892     12892 King James Version Bible
12893     12893 King James Version Bible
12894     12894 King James Version Bible
12895     12895 King James Version Bible
12896     12896 King James Version Bible
12897     12897 King James Version Bible
12898     12898 King James Version Bible
12899     12899 King James Version Bible
12900     12900 King James Version Bible
12901     12901 King James Version Bible
12902     12902 King James Version Bible
12903     12903 King James Version Bible
12904     12904 King James Version Bible
12905     12905 King James Version Bible
12906     12906 King James Version Bible
12907     12907 King James Version Bible
12908     12908 King James Version Bible
12909     12909 King James Version Bible
12910     12910 King James Version Bible
12911     12911 King James Version Bible
12912     12912 King James Version Bible
12913     12913 King James Version Bible
12914     12914 King James Version Bible
12915     12915 King James Version Bible
12916     12916 King James Version Bible
12917     12917 King James Version Bible
12918     12918 King James Version Bible
12919     12919 King James Version Bible
12920     12920 King James Version Bible
12921     12921 King James Version Bible
12922     12922 King James Version Bible
12923     12923 King James Version Bible
12924     12924 King James Version Bible
12925     12925 King James Version Bible
12926     12926 King James Version Bible
12927     12927 King James Version Bible
12928     12928 King James Version Bible
12929     12929 King James Version Bible
12930     12930 King James Version Bible
12931     12931 King James Version Bible
12932     12932 King James Version Bible
12933     12933 King James Version Bible
12934     12934 King James Version Bible
12935     12935 King James Version Bible
12936     12936 King James Version Bible
12937     12937 King James Version Bible
12938     12938 King James Version Bible
12939     12939 King James Version Bible
12940     12940 King James Version Bible
12941     12941 King James Version Bible
12942     12942 King James Version Bible
12943     12943 King James Version Bible
12944     12944 King James Version Bible
12945     12945 King James Version Bible
12946     12946 King James Version Bible
12947     12947 King James Version Bible
12948     12948 King James Version Bible
12949     12949 King James Version Bible
12950     12950 King James Version Bible
12951     12951 King James Version Bible
12952     12952 King James Version Bible
12953     12953 King James Version Bible
12954     12954 King James Version Bible
12955     12955 King James Version Bible
12956     12956 King James Version Bible
12957     12957 King James Version Bible
12958     12958 King James Version Bible
12959     12959 King James Version Bible
12960     12960 King James Version Bible
12961     12961 King James Version Bible
12962     12962 King James Version Bible
12963     12963 King James Version Bible
12964     12964 King James Version Bible
12965     12965 King James Version Bible
12966     12966 King James Version Bible
12967     12967 King James Version Bible
12968     12968 King James Version Bible
12969     12969 King James Version Bible
12970     12970 King James Version Bible
12971     12971 King James Version Bible
12972     12972 King James Version Bible
12973     12973 King James Version Bible
12974     12974 King James Version Bible
12975     12975 King James Version Bible
12976     12976 King James Version Bible
12977     12977 King James Version Bible
12978     12978 King James Version Bible
12979     12979 King James Version Bible
12980     12980 King James Version Bible
12981     12981 King James Version Bible
12982     12982 King James Version Bible
12983     12983 King James Version Bible
12984     12984 King James Version Bible
12985     12985 King James Version Bible
12986     12986 King James Version Bible
12987     12987 King James Version Bible
12988     12988 King James Version Bible
12989     12989 King James Version Bible
12990     12990 King James Version Bible
12991     12991 King James Version Bible
12992     12992 King James Version Bible
12993     12993 King James Version Bible
12994     12994 King James Version Bible
12995     12995 King James Version Bible
12996     12996 King James Version Bible
12997     12997 King James Version Bible
12998     12998 King James Version Bible
12999     12999 King James Version Bible
13000     13000 King James Version Bible
13001     13001 King James Version Bible
13002     13002 King James Version Bible
13003     13003 King James Version Bible
13004     13004 King James Version Bible
13005     13005 King James Version Bible
13006     13006 King James Version Bible
13007     13007 King James Version Bible
13008     13008 King James Version Bible
13009     13009 King James Version Bible
13010     13010 King James Version Bible
13011     13011 King James Version Bible
13012     13012 King James Version Bible
13013     13013 King James Version Bible
13014     13014 King James Version Bible
13015     13015 King James Version Bible
13016     13016 King James Version Bible
13017     13017 King James Version Bible
13018     13018 King James Version Bible
13019     13019 King James Version Bible
13020     13020 King James Version Bible
13021     13021 King James Version Bible
13022     13022 King James Version Bible
13023     13023 King James Version Bible
13024     13024 King James Version Bible
13025     13025 King James Version Bible
13026     13026 King James Version Bible
13027     13027 King James Version Bible
13028     13028 King James Version Bible
13029     13029 King James Version Bible
13030     13030 King James Version Bible
13031     13031 King James Version Bible
13032     13032 King James Version Bible
13033     13033 King James Version Bible
13034     13034 King James Version Bible
13035     13035 King James Version Bible
13036     13036 King James Version Bible
13037     13037 King James Version Bible
13038     13038 King James Version Bible
13039     13039 King James Version Bible
13040     13040 King James Version Bible
13041     13041 King James Version Bible
13042     13042 King James Version Bible
13043     13043 King James Version Bible
13044     13044 King James Version Bible
13045     13045 King James Version Bible
13046     13046 King James Version Bible
13047     13047 King James Version Bible
13048     13048 King James Version Bible
13049     13049 King James Version Bible
13050     13050 King James Version Bible
13051     13051 King James Version Bible
13052     13052 King James Version Bible
13053     13053 King James Version Bible
13054     13054 King James Version Bible
13055     13055 King James Version Bible
13056     13056 King James Version Bible
13057     13057 King James Version Bible
13058     13058 King James Version Bible
13059     13059 King James Version Bible
13060     13060 King James Version Bible
13061     13061 King James Version Bible
13062     13062 King James Version Bible
13063     13063 King James Version Bible
13064     13064 King James Version Bible
13065     13065 King James Version Bible
13066     13066 King James Version Bible
13067     13067 King James Version Bible
13068     13068 King James Version Bible
13069     13069 King James Version Bible
13070     13070 King James Version Bible
13071     13071 King James Version Bible
13072     13072 King James Version Bible
13073     13073 King James Version Bible
13074     13074 King James Version Bible
13075     13075 King James Version Bible
13076     13076 King James Version Bible
13077     13077 King James Version Bible
13078     13078 King James Version Bible
13079     13079 King James Version Bible
13080     13080 King James Version Bible
13081     13081 King James Version Bible
13082     13082 King James Version Bible
13083     13083 King James Version Bible
13084     13084 King James Version Bible
13085     13085 King James Version Bible
13086     13086 King James Version Bible
13087     13087 King James Version Bible
13088     13088 King James Version Bible
13089     13089 King James Version Bible
13090     13090 King James Version Bible
13091     13091 King James Version Bible
13092     13092 King James Version Bible
13093     13093 King James Version Bible
13094     13094 King James Version Bible
13095     13095 King James Version Bible
13096     13096 King James Version Bible
13097     13097 King James Version Bible
13098     13098 King James Version Bible
13099     13099 King James Version Bible
13100     13100 King James Version Bible
13101     13101 King James Version Bible
13102     13102 King James Version Bible
13103     13103 King James Version Bible
13104     13104 King James Version Bible
13105     13105 King James Version Bible
13106     13106 King James Version Bible
13107     13107 King James Version Bible
13108     13108 King James Version Bible
13109     13109 King James Version Bible
13110     13110 King James Version Bible
13111     13111 King James Version Bible
13112     13112 King James Version Bible
13113     13113 King James Version Bible
13114     13114 King James Version Bible
13115     13115 King James Version Bible
13116     13116 King James Version Bible
13117     13117 King James Version Bible
13118     13118 King James Version Bible
13119     13119 King James Version Bible
13120     13120 King James Version Bible
13121     13121 King James Version Bible
13122     13122 King James Version Bible
13123     13123 King James Version Bible
13124     13124 King James Version Bible
13125     13125 King James Version Bible
13126     13126 King James Version Bible
13127     13127 King James Version Bible
13128     13128 King James Version Bible
13129     13129 King James Version Bible
13130     13130 King James Version Bible
13131     13131 King James Version Bible
13132     13132 King James Version Bible
13133     13133 King James Version Bible
13134     13134 King James Version Bible
13135     13135 King James Version Bible
13136     13136 King James Version Bible
13137     13137 King James Version Bible
13138     13138 King James Version Bible
13139     13139 King James Version Bible
13140     13140 King James Version Bible
13141     13141 King James Version Bible
13142     13142 King James Version Bible
13143     13143 King James Version Bible
13144     13144 King James Version Bible
13145     13145 King James Version Bible
13146     13146 King James Version Bible
13147     13147 King James Version Bible
13148     13148 King James Version Bible
13149     13149 King James Version Bible
13150     13150 King James Version Bible
13151     13151 King James Version Bible
13152     13152 King James Version Bible
13153     13153 King James Version Bible
13154     13154 King James Version Bible
13155     13155 King James Version Bible
13156     13156 King James Version Bible
13157     13157 King James Version Bible
13158     13158 King James Version Bible
13159     13159 King James Version Bible
13160     13160 King James Version Bible
13161     13161 King James Version Bible
13162     13162 King James Version Bible
13163     13163 King James Version Bible
13164     13164 King James Version Bible
13165     13165 King James Version Bible
13166     13166 King James Version Bible
13167     13167 King James Version Bible
13168     13168 King James Version Bible
13169     13169 King James Version Bible
13170     13170 King James Version Bible
13171     13171 King James Version Bible
13172     13172 King James Version Bible
13173     13173 King James Version Bible
13174     13174 King James Version Bible
13175     13175 King James Version Bible
13176     13176 King James Version Bible
13177     13177 King James Version Bible
13178     13178 King James Version Bible
13179     13179 King James Version Bible
13180     13180 King James Version Bible
13181     13181 King James Version Bible
13182     13182 King James Version Bible
13183     13183 King James Version Bible
13184     13184 King James Version Bible
13185     13185 King James Version Bible
13186     13186 King James Version Bible
13187     13187 King James Version Bible
13188     13188 King James Version Bible
13189     13189 King James Version Bible
13190     13190 King James Version Bible
13191     13191 King James Version Bible
13192     13192 King James Version Bible
13193     13193 King James Version Bible
13194     13194 King James Version Bible
13195     13195 King James Version Bible
13196     13196 King James Version Bible
13197     13197 King James Version Bible
13198     13198 King James Version Bible
13199     13199 King James Version Bible
13200     13200 King James Version Bible
13201     13201 King James Version Bible
13202     13202 King James Version Bible
13203     13203 King James Version Bible
13204     13204 King James Version Bible
13205     13205 King James Version Bible
13206     13206 King James Version Bible
13207     13207 King James Version Bible
13208     13208 King James Version Bible
13209     13209 King James Version Bible
13210     13210 King James Version Bible
13211     13211 King James Version Bible
13212     13212 King James Version Bible
13213     13213 King James Version Bible
13214     13214 King James Version Bible
13215     13215 King James Version Bible
13216     13216 King James Version Bible
13217     13217 King James Version Bible
13218     13218 King James Version Bible
13219     13219 King James Version Bible
13220     13220 King James Version Bible
13221     13221 King James Version Bible
13222     13222 King James Version Bible
13223     13223 King James Version Bible
13224     13224 King James Version Bible
13225     13225 King James Version Bible
13226     13226 King James Version Bible
13227     13227 King James Version Bible
13228     13228 King James Version Bible
13229     13229 King James Version Bible
13230     13230 King James Version Bible
13231     13231 King James Version Bible
13232     13232 King James Version Bible
13233     13233 King James Version Bible
13234     13234 King James Version Bible
13235     13235 King James Version Bible
13236     13236 King James Version Bible
13237     13237 King James Version Bible
13238     13238 King James Version Bible
13239     13239 King James Version Bible
13240     13240 King James Version Bible
13241     13241 King James Version Bible
13242     13242 King James Version Bible
13243     13243 King James Version Bible
13244     13244 King James Version Bible
13245     13245 King James Version Bible
13246     13246 King James Version Bible
13247     13247 King James Version Bible
13248     13248 King James Version Bible
13249     13249 King James Version Bible
13250     13250 King James Version Bible
13251     13251 King James Version Bible
13252     13252 King James Version Bible
13253     13253 King James Version Bible
13254     13254 King James Version Bible
13255     13255 King James Version Bible
13256     13256 King James Version Bible
13257     13257 King James Version Bible
13258     13258 King James Version Bible
13259     13259 King James Version Bible
13260     13260 King James Version Bible
13261     13261 King James Version Bible
13262     13262 King James Version Bible
13263     13263 King James Version Bible
13264     13264 King James Version Bible
13265     13265 King James Version Bible
13266     13266 King James Version Bible
13267     13267 King James Version Bible
13268     13268 King James Version Bible
13269     13269 King James Version Bible
13270     13270 King James Version Bible
13271     13271 King James Version Bible
13272     13272 King James Version Bible
13273     13273 King James Version Bible
13274     13274 King James Version Bible
13275     13275 King James Version Bible
13276     13276 King James Version Bible
13277     13277 King James Version Bible
13278     13278 King James Version Bible
13279     13279 King James Version Bible
13280     13280 King James Version Bible
13281     13281 King James Version Bible
13282     13282 King James Version Bible
13283     13283 King James Version Bible
13284     13284 King James Version Bible
13285     13285 King James Version Bible
13286     13286 King James Version Bible
13287     13287 King James Version Bible
13288     13288 King James Version Bible
13289     13289 King James Version Bible
13290     13290 King James Version Bible
13291     13291 King James Version Bible
13292     13292 King James Version Bible
13293     13293 King James Version Bible
13294     13294 King James Version Bible
13295     13295 King James Version Bible
13296     13296 King James Version Bible
13297     13297 King James Version Bible
13298     13298 King James Version Bible
13299     13299 King James Version Bible
13300     13300 King James Version Bible
13301     13301 King James Version Bible
13302     13302 King James Version Bible
13303     13303 King James Version Bible
13304     13304 King James Version Bible
13305     13305 King James Version Bible
13306     13306 King James Version Bible
13307     13307 King James Version Bible
13308     13308 King James Version Bible
13309     13309 King James Version Bible
13310     13310 King James Version Bible
13311     13311 King James Version Bible
13312     13312 King James Version Bible
13313     13313 King James Version Bible
13314     13314 King James Version Bible
13315     13315 King James Version Bible
13316     13316 King James Version Bible
13317     13317 King James Version Bible
13318     13318 King James Version Bible
13319     13319 King James Version Bible
13320     13320 King James Version Bible
13321     13321 King James Version Bible
13322     13322 King James Version Bible
13323     13323 King James Version Bible
13324     13324 King James Version Bible
13325     13325 King James Version Bible
13326     13326 King James Version Bible
13327     13327 King James Version Bible
13328     13328 King James Version Bible
13329     13329 King James Version Bible
13330     13330 King James Version Bible
13331     13331 King James Version Bible
13332     13332 King James Version Bible
13333     13333 King James Version Bible
13334     13334 King James Version Bible
13335     13335 King James Version Bible
13336     13336 King James Version Bible
13337     13337 King James Version Bible
13338     13338 King James Version Bible
13339     13339 King James Version Bible
13340     13340 King James Version Bible
13341     13341 King James Version Bible
13342     13342 King James Version Bible
13343     13343 King James Version Bible
13344     13344 King James Version Bible
13345     13345 King James Version Bible
13346     13346 King James Version Bible
13347     13347 King James Version Bible
13348     13348 King James Version Bible
13349     13349 King James Version Bible
13350     13350 King James Version Bible
13351     13351 King James Version Bible
13352     13352 King James Version Bible
13353     13353 King James Version Bible
13354     13354 King James Version Bible
13355     13355 King James Version Bible
13356     13356 King James Version Bible
13357     13357 King James Version Bible
13358     13358 King James Version Bible
13359     13359 King James Version Bible
13360     13360 King James Version Bible
13361     13361 King James Version Bible
13362     13362 King James Version Bible
13363     13363 King James Version Bible
13364     13364 King James Version Bible
13365     13365 King James Version Bible
13366     13366 King James Version Bible
13367     13367 King James Version Bible
13368     13368 King James Version Bible
13369     13369 King James Version Bible
13370     13370 King James Version Bible
13371     13371 King James Version Bible
13372     13372 King James Version Bible
13373     13373 King James Version Bible
13374     13374 King James Version Bible
13375     13375 King James Version Bible
13376     13376 King James Version Bible
13377     13377 King James Version Bible
13378     13378 King James Version Bible
13379     13379 King James Version Bible
13380     13380 King James Version Bible
13381     13381 King James Version Bible
13382     13382 King James Version Bible
13383     13383 King James Version Bible
13384     13384 King James Version Bible
13385     13385 King James Version Bible
13386     13386 King James Version Bible
13387     13387 King James Version Bible
13388     13388 King James Version Bible
13389     13389 King James Version Bible
13390     13390 King James Version Bible
13391     13391 King James Version Bible
13392     13392 King James Version Bible
13393     13393 King James Version Bible
13394     13394 King James Version Bible
13395     13395 King James Version Bible
13396     13396 King James Version Bible
13397     13397 King James Version Bible
13398     13398 King James Version Bible
13399     13399 King James Version Bible
13400     13400 King James Version Bible
13401     13401 King James Version Bible
13402     13402 King James Version Bible
13403     13403 King James Version Bible
13404     13404 King James Version Bible
13405     13405 King James Version Bible
13406     13406 King James Version Bible
13407     13407 King James Version Bible
13408     13408 King James Version Bible
13409     13409 King James Version Bible
13410     13410 King James Version Bible
13411     13411 King James Version Bible
13412     13412 King James Version Bible
13413     13413 King James Version Bible
13414     13414 King James Version Bible
13415     13415 King James Version Bible
13416     13416 King James Version Bible
13417     13417 King James Version Bible
13418     13418 King James Version Bible
13419     13419 King James Version Bible
13420     13420 King James Version Bible
13421     13421 King James Version Bible
13422     13422 King James Version Bible
13423     13423 King James Version Bible
13424     13424 King James Version Bible
13425     13425 King James Version Bible
13426     13426 King James Version Bible
13427     13427 King James Version Bible
13428     13428 King James Version Bible
13429     13429 King James Version Bible
13430     13430 King James Version Bible
13431     13431 King James Version Bible
13432     13432 King James Version Bible
13433     13433 King James Version Bible
13434     13434 King James Version Bible
13435     13435 King James Version Bible
13436     13436 King James Version Bible
13437     13437 King James Version Bible
13438     13438 King James Version Bible
13439     13439 King James Version Bible
13440     13440 King James Version Bible
13441     13441 King James Version Bible
13442     13442 King James Version Bible
13443     13443 King James Version Bible
13444     13444 King James Version Bible
13445     13445 King James Version Bible
13446     13446 King James Version Bible
13447     13447 King James Version Bible
13448     13448 King James Version Bible
13449     13449 King James Version Bible
13450     13450 King James Version Bible
13451     13451 King James Version Bible
13452     13452 King James Version Bible
13453     13453 King James Version Bible
13454     13454 King James Version Bible
13455     13455 King James Version Bible
13456     13456 King James Version Bible
13457     13457 King James Version Bible
13458     13458 King James Version Bible
13459     13459 King James Version Bible
13460     13460 King James Version Bible
13461     13461 King James Version Bible
13462     13462 King James Version Bible
13463     13463 King James Version Bible
13464     13464 King James Version Bible
13465     13465 King James Version Bible
13466     13466 King James Version Bible
13467     13467 King James Version Bible
13468     13468 King James Version Bible
13469     13469 King James Version Bible
13470     13470 King James Version Bible
13471     13471 King James Version Bible
13472     13472 King James Version Bible
13473     13473 King James Version Bible
13474     13474 King James Version Bible
13475     13475 King James Version Bible
13476     13476 King James Version Bible
13477     13477 King James Version Bible
13478     13478 King James Version Bible
13479     13479 King James Version Bible
13480     13480 King James Version Bible
13481     13481 King James Version Bible
13482     13482 King James Version Bible
13483     13483 King James Version Bible
13484     13484 King James Version Bible
13485     13485 King James Version Bible
13486     13486 King James Version Bible
13487     13487 King James Version Bible
13488     13488 King James Version Bible
13489     13489 King James Version Bible
13490     13490 King James Version Bible
13491     13491 King James Version Bible
13492     13492 King James Version Bible
13493     13493 King James Version Bible
13494     13494 King James Version Bible
13495     13495 King James Version Bible
13496     13496 King James Version Bible
13497     13497 King James Version Bible
13498     13498 King James Version Bible
13499     13499 King James Version Bible
13500     13500 King James Version Bible
13501     13501 King James Version Bible
13502     13502 King James Version Bible
13503     13503 King James Version Bible
13504     13504 King James Version Bible
13505     13505 King James Version Bible
13506     13506 King James Version Bible
13507     13507 King James Version Bible
13508     13508 King James Version Bible
13509     13509 King James Version Bible
13510     13510 King James Version Bible
13511     13511 King James Version Bible
13512     13512 King James Version Bible
13513     13513 King James Version Bible
13514     13514 King James Version Bible
13515     13515 King James Version Bible
13516     13516 King James Version Bible
13517     13517 King James Version Bible
13518     13518 King James Version Bible
13519     13519 King James Version Bible
13520     13520 King James Version Bible
13521     13521 King James Version Bible
13522     13522 King James Version Bible
13523     13523 King James Version Bible
13524     13524 King James Version Bible
13525     13525 King James Version Bible
13526     13526 King James Version Bible
13527     13527 King James Version Bible
13528     13528 King James Version Bible
13529     13529 King James Version Bible
13530     13530 King James Version Bible
13531     13531 King James Version Bible
13532     13532 King James Version Bible
13533     13533 King James Version Bible
13534     13534 King James Version Bible
13535     13535 King James Version Bible
13536     13536 King James Version Bible
13537     13537 King James Version Bible
13538     13538 King James Version Bible
13539     13539 King James Version Bible
13540     13540 King James Version Bible
13541     13541 King James Version Bible
13542     13542 King James Version Bible
13543     13543 King James Version Bible
13544     13544 King James Version Bible
13545     13545 King James Version Bible
13546     13546 King James Version Bible
13547     13547 King James Version Bible
13548     13548 King James Version Bible
13549     13549 King James Version Bible
13550     13550 King James Version Bible
13551     13551 King James Version Bible
13552     13552 King James Version Bible
13553     13553 King James Version Bible
13554     13554 King James Version Bible
13555     13555 King James Version Bible
13556     13556 King James Version Bible
13557     13557 King James Version Bible
13558     13558 King James Version Bible
13559     13559 King James Version Bible
13560     13560 King James Version Bible
13561     13561 King James Version Bible
13562     13562 King James Version Bible
13563     13563 King James Version Bible
13564     13564 King James Version Bible
13565     13565 King James Version Bible
13566     13566 King James Version Bible
13567     13567 King James Version Bible
13568     13568 King James Version Bible
13569     13569 King James Version Bible
13570     13570 King James Version Bible
13571     13571 King James Version Bible
13572     13572 King James Version Bible
13573     13573 King James Version Bible
13574     13574 King James Version Bible
13575     13575 King James Version Bible
13576     13576 King James Version Bible
13577     13577 King James Version Bible
13578     13578 King James Version Bible
13579     13579 King James Version Bible
13580     13580 King James Version Bible
13581     13581 King James Version Bible
13582     13582 King James Version Bible
13583     13583 King James Version Bible
13584     13584 King James Version Bible
13585     13585 King James Version Bible
13586     13586 King James Version Bible
13587     13587 King James Version Bible
13588     13588 King James Version Bible
13589     13589 King James Version Bible
13590     13590 King James Version Bible
13591     13591 King James Version Bible
13592     13592 King James Version Bible
13593     13593 King James Version Bible
13594     13594 King James Version Bible
13595     13595 King James Version Bible
13596     13596 King James Version Bible
13597     13597 King James Version Bible
13598     13598 King James Version Bible
13599     13599 King James Version Bible
13600     13600 King James Version Bible
13601     13601 King James Version Bible
13602     13602 King James Version Bible
13603     13603 King James Version Bible
13604     13604 King James Version Bible
13605     13605 King James Version Bible
13606     13606 King James Version Bible
13607     13607 King James Version Bible
13608     13608 King James Version Bible
13609     13609 King James Version Bible
13610     13610 King James Version Bible
13611     13611 King James Version Bible
13612     13612 King James Version Bible
13613     13613 King James Version Bible
13614     13614 King James Version Bible
13615     13615 King James Version Bible
13616     13616 King James Version Bible
13617     13617 King James Version Bible
13618     13618 King James Version Bible
13619     13619 King James Version Bible
13620     13620 King James Version Bible
13621     13621 King James Version Bible
13622     13622 King James Version Bible
13623     13623 King James Version Bible
13624     13624 King James Version Bible
13625     13625 King James Version Bible
13626     13626 King James Version Bible
13627     13627 King James Version Bible
13628     13628 King James Version Bible
13629     13629 King James Version Bible
13630     13630 King James Version Bible
13631     13631 King James Version Bible
13632     13632 King James Version Bible
13633     13633 King James Version Bible
13634     13634 King James Version Bible
13635     13635 King James Version Bible
13636     13636 King James Version Bible
13637     13637 King James Version Bible
13638     13638 King James Version Bible
13639     13639 King James Version Bible
13640     13640 King James Version Bible
13641     13641 King James Version Bible
13642     13642 King James Version Bible
13643     13643 King James Version Bible
13644     13644 King James Version Bible
13645     13645 King James Version Bible
13646     13646 King James Version Bible
13647     13647 King James Version Bible
13648     13648 King James Version Bible
13649     13649 King James Version Bible
13650     13650 King James Version Bible
13651     13651 King James Version Bible
13652     13652 King James Version Bible
13653     13653 King James Version Bible
13654     13654 King James Version Bible
13655     13655 King James Version Bible
13656     13656 King James Version Bible
13657     13657 King James Version Bible
13658     13658 King James Version Bible
13659     13659 King James Version Bible
13660     13660 King James Version Bible
13661     13661 King James Version Bible
13662     13662 King James Version Bible
13663     13663 King James Version Bible
13664     13664 King James Version Bible
13665     13665 King James Version Bible
13666     13666 King James Version Bible
13667     13667 King James Version Bible
13668     13668 King James Version Bible
13669     13669 King James Version Bible
13670     13670 King James Version Bible
13671     13671 King James Version Bible
13672     13672 King James Version Bible
13673     13673 King James Version Bible
13674     13674 King James Version Bible
13675     13675 King James Version Bible
13676     13676 King James Version Bible
13677     13677 King James Version Bible
13678     13678 King James Version Bible
13679     13679 King James Version Bible
13680     13680 King James Version Bible
13681     13681 King James Version Bible
13682     13682 King James Version Bible
13683     13683 King James Version Bible
13684     13684 King James Version Bible
13685     13685 King James Version Bible
13686     13686 King James Version Bible
13687     13687 King James Version Bible
13688     13688 King James Version Bible
13689     13689 King James Version Bible
13690     13690 King James Version Bible
13691     13691 King James Version Bible
13692     13692 King James Version Bible
13693     13693 King James Version Bible
13694     13694 King James Version Bible
13695     13695 King James Version Bible
13696     13696 King James Version Bible
13697     13697 King James Version Bible
13698     13698 King James Version Bible
13699     13699 King James Version Bible
13700     13700 King James Version Bible
13701     13701 King James Version Bible
13702     13702 King James Version Bible
13703     13703 King James Version Bible
13704     13704 King James Version Bible
13705     13705 King James Version Bible
13706     13706 King James Version Bible
13707     13707 King James Version Bible
13708     13708 King James Version Bible
13709     13709 King James Version Bible
13710     13710 King James Version Bible
13711     13711 King James Version Bible
13712     13712 King James Version Bible
13713     13713 King James Version Bible
13714     13714 King James Version Bible
13715     13715 King James Version Bible
13716     13716 King James Version Bible
13717     13717 King James Version Bible
13718     13718 King James Version Bible
13719     13719 King James Version Bible
13720     13720 King James Version Bible
13721     13721 King James Version Bible
13722     13722 King James Version Bible
13723     13723 King James Version Bible
13724     13724 King James Version Bible
13725     13725 King James Version Bible
13726     13726 King James Version Bible
13727     13727 King James Version Bible
13728     13728 King James Version Bible
13729     13729 King James Version Bible
13730     13730 King James Version Bible
13731     13731 King James Version Bible
13732     13732 King James Version Bible
13733     13733 King James Version Bible
13734     13734 King James Version Bible
13735     13735 King James Version Bible
13736     13736 King James Version Bible
13737     13737 King James Version Bible
13738     13738 King James Version Bible
13739     13739 King James Version Bible
13740     13740 King James Version Bible
13741     13741 King James Version Bible
13742     13742 King James Version Bible
13743     13743 King James Version Bible
13744     13744 King James Version Bible
13745     13745 King James Version Bible
13746     13746 King James Version Bible
13747     13747 King James Version Bible
13748     13748 King James Version Bible
13749     13749 King James Version Bible
13750     13750 King James Version Bible
13751     13751 King James Version Bible
13752     13752 King James Version Bible
13753     13753 King James Version Bible
13754     13754 King James Version Bible
13755     13755 King James Version Bible
13756     13756 King James Version Bible
13757     13757 King James Version Bible
13758     13758 King James Version Bible
13759     13759 King James Version Bible
13760     13760 King James Version Bible
13761     13761 King James Version Bible
13762     13762 King James Version Bible
13763     13763 King James Version Bible
13764     13764 King James Version Bible
13765     13765 King James Version Bible
13766     13766 King James Version Bible
13767     13767 King James Version Bible
13768     13768 King James Version Bible
13769     13769 King James Version Bible
13770     13770 King James Version Bible
13771     13771 King James Version Bible
13772     13772 King James Version Bible
13773     13773 King James Version Bible
13774     13774 King James Version Bible
13775     13775 King James Version Bible
13776     13776 King James Version Bible
13777     13777 King James Version Bible
13778     13778 King James Version Bible
13779     13779 King James Version Bible
13780     13780 King James Version Bible
13781     13781 King James Version Bible
13782     13782 King James Version Bible
13783     13783 King James Version Bible
13784     13784 King James Version Bible
13785     13785 King James Version Bible
13786     13786 King James Version Bible
13787     13787 King James Version Bible
13788     13788 King James Version Bible
13789     13789 King James Version Bible
13790     13790 King James Version Bible
13791     13791 King James Version Bible
13792     13792 King James Version Bible
13793     13793 King James Version Bible
13794     13794 King James Version Bible
13795     13795 King James Version Bible
13796     13796 King James Version Bible
13797     13797 King James Version Bible
13798     13798 King James Version Bible
13799     13799 King James Version Bible
13800     13800 King James Version Bible
13801     13801 King James Version Bible
13802     13802 King James Version Bible
13803     13803 King James Version Bible
13804     13804 King James Version Bible
13805     13805 King James Version Bible
13806     13806 King James Version Bible
13807     13807 King James Version Bible
13808     13808 King James Version Bible
13809     13809 King James Version Bible
13810     13810 King James Version Bible
13811     13811 King James Version Bible
13812     13812 King James Version Bible
13813     13813 King James Version Bible
13814     13814 King James Version Bible
13815     13815 King James Version Bible
13816     13816 King James Version Bible
13817     13817 King James Version Bible
13818     13818 King James Version Bible
13819     13819 King James Version Bible
13820     13820 King James Version Bible
13821     13821 King James Version Bible
13822     13822 King James Version Bible
13823     13823 King James Version Bible
13824     13824 King James Version Bible
13825     13825 King James Version Bible
13826     13826 King James Version Bible
13827     13827 King James Version Bible
13828     13828 King James Version Bible
13829     13829 King James Version Bible
13830     13830 King James Version Bible
13831     13831 King James Version Bible
13832     13832 King James Version Bible
13833     13833 King James Version Bible
13834     13834 King James Version Bible
13835     13835 King James Version Bible
13836     13836 King James Version Bible
13837     13837 King James Version Bible
13838     13838 King James Version Bible
13839     13839 King James Version Bible
13840     13840 King James Version Bible
13841     13841 King James Version Bible
13842     13842 King James Version Bible
13843     13843 King James Version Bible
13844     13844 King James Version Bible
13845     13845 King James Version Bible
13846     13846 King James Version Bible
13847     13847 King James Version Bible
13848     13848 King James Version Bible
13849     13849 King James Version Bible
13850     13850 King James Version Bible
13851     13851 King James Version Bible
13852     13852 King James Version Bible
13853     13853 King James Version Bible
13854     13854 King James Version Bible
13855     13855 King James Version Bible
13856     13856 King James Version Bible
13857     13857 King James Version Bible
13858     13858 King James Version Bible
13859     13859 King James Version Bible
13860     13860 King James Version Bible
13861     13861 King James Version Bible
13862     13862 King James Version Bible
13863     13863 King James Version Bible
13864     13864 King James Version Bible
13865     13865 King James Version Bible
13866     13866 King James Version Bible
13867     13867 King James Version Bible
13868     13868 King James Version Bible
13869     13869 King James Version Bible
13870     13870 King James Version Bible
13871     13871 King James Version Bible
13872     13872 King James Version Bible
13873     13873 King James Version Bible
13874     13874 King James Version Bible
13875     13875 King James Version Bible
13876     13876 King James Version Bible
13877     13877 King James Version Bible
13878     13878 King James Version Bible
13879     13879 King James Version Bible
13880     13880 King James Version Bible
13881     13881 King James Version Bible
13882     13882 King James Version Bible
13883     13883 King James Version Bible
13884     13884 King James Version Bible
13885     13885 King James Version Bible
13886     13886 King James Version Bible
13887     13887 King James Version Bible
13888     13888 King James Version Bible
13889     13889 King James Version Bible
13890     13890 King James Version Bible
13891     13891 King James Version Bible
13892     13892 King James Version Bible
13893     13893 King James Version Bible
13894     13894 King James Version Bible
13895     13895 King James Version Bible
13896     13896 King James Version Bible
13897     13897 King James Version Bible
13898     13898 King James Version Bible
13899     13899 King James Version Bible
13900     13900 King James Version Bible
13901     13901 King James Version Bible
13902     13902 King James Version Bible
13903     13903 King James Version Bible
13904     13904 King James Version Bible
13905     13905 King James Version Bible
13906     13906 King James Version Bible
13907     13907 King James Version Bible
13908     13908 King James Version Bible
13909     13909 King James Version Bible
13910     13910 King James Version Bible
13911     13911 King James Version Bible
13912     13912 King James Version Bible
13913     13913 King James Version Bible
13914     13914 King James Version Bible
13915     13915 King James Version Bible
13916     13916 King James Version Bible
13917     13917 King James Version Bible
13918     13918 King James Version Bible
13919     13919 King James Version Bible
13920     13920 King James Version Bible
13921     13921 King James Version Bible
13922     13922 King James Version Bible
13923     13923 King James Version Bible
13924     13924 King James Version Bible
13925     13925 King James Version Bible
13926     13926 King James Version Bible
13927     13927 King James Version Bible
13928     13928 King James Version Bible
13929     13929 King James Version Bible
13930     13930 King James Version Bible
13931     13931 King James Version Bible
13932     13932 King James Version Bible
13933     13933 King James Version Bible
13934     13934 King James Version Bible
13935     13935 King James Version Bible
13936     13936 King James Version Bible
13937     13937 King James Version Bible
13938     13938 King James Version Bible
13939     13939 King James Version Bible
13940     13940 King James Version Bible
13941     13941 King James Version Bible
13942     13942 King James Version Bible
13943     13943 King James Version Bible
13944     13944 King James Version Bible
13945     13945 King James Version Bible
13946     13946 King James Version Bible
13947     13947 King James Version Bible
13948     13948 King James Version Bible
13949     13949 King James Version Bible
13950     13950 King James Version Bible
13951     13951 King James Version Bible
13952     13952 King James Version Bible
13953     13953 King James Version Bible
13954     13954 King James Version Bible
13955     13955 King James Version Bible
13956     13956 King James Version Bible
13957     13957 King James Version Bible
13958     13958 King James Version Bible
13959     13959 King James Version Bible
13960     13960 King James Version Bible
13961     13961 King James Version Bible
13962     13962 King James Version Bible
13963     13963 King James Version Bible
13964     13964 King James Version Bible
13965     13965 King James Version Bible
13966     13966 King James Version Bible
13967     13967 King James Version Bible
13968     13968 King James Version Bible
13969     13969 King James Version Bible
13970     13970 King James Version Bible
13971     13971 King James Version Bible
13972     13972 King James Version Bible
13973     13973 King James Version Bible
13974     13974 King James Version Bible
13975     13975 King James Version Bible
13976     13976 King James Version Bible
13977     13977 King James Version Bible
13978     13978 King James Version Bible
13979     13979 King James Version Bible
13980     13980 King James Version Bible
13981     13981 King James Version Bible
13982     13982 King James Version Bible
13983     13983 King James Version Bible
13984     13984 King James Version Bible
13985     13985 King James Version Bible
13986     13986 King James Version Bible
13987     13987 King James Version Bible
13988     13988 King James Version Bible
13989     13989 King James Version Bible
13990     13990 King James Version Bible
13991     13991 King James Version Bible
13992     13992 King James Version Bible
13993     13993 King James Version Bible
13994     13994 King James Version Bible
13995     13995 King James Version Bible
13996     13996 King James Version Bible
13997     13997 King James Version Bible
13998     13998 King James Version Bible
13999     13999 King James Version Bible
14000     14000 King James Version Bible
14001     14001 King James Version Bible
14002     14002 King James Version Bible
14003     14003 King James Version Bible
14004     14004 King James Version Bible
14005     14005 King James Version Bible
14006     14006 King James Version Bible
14007     14007 King James Version Bible
14008     14008 King James Version Bible
14009     14009 King James Version Bible
14010     14010 King James Version Bible
14011     14011 King James Version Bible
14012     14012 King James Version Bible
14013     14013 King James Version Bible
14014     14014 King James Version Bible
14015     14015 King James Version Bible
14016     14016 King James Version Bible
14017     14017 King James Version Bible
14018     14018 King James Version Bible
14019     14019 King James Version Bible
14020     14020 King James Version Bible
14021     14021 King James Version Bible
14022     14022 King James Version Bible
14023     14023 King James Version Bible
14024     14024 King James Version Bible
14025     14025 King James Version Bible
14026     14026 King James Version Bible
14027     14027 King James Version Bible
14028     14028 King James Version Bible
14029     14029 King James Version Bible
14030     14030 King James Version Bible
14031     14031 King James Version Bible
14032     14032 King James Version Bible
14033     14033 King James Version Bible
14034     14034 King James Version Bible
14035     14035 King James Version Bible
14036     14036 King James Version Bible
14037     14037 King James Version Bible
14038     14038 King James Version Bible
14039     14039 King James Version Bible
14040     14040 King James Version Bible
14041     14041 King James Version Bible
14042     14042 King James Version Bible
14043     14043 King James Version Bible
14044     14044 King James Version Bible
14045     14045 King James Version Bible
14046     14046 King James Version Bible
14047     14047 King James Version Bible
14048     14048 King James Version Bible
14049     14049 King James Version Bible
14050     14050 King James Version Bible
14051     14051 King James Version Bible
14052     14052 King James Version Bible
14053     14053 King James Version Bible
14054     14054 King James Version Bible
14055     14055 King James Version Bible
14056     14056 King James Version Bible
14057     14057 King James Version Bible
14058     14058 King James Version Bible
14059     14059 King James Version Bible
14060     14060 King James Version Bible
14061     14061 King James Version Bible
14062     14062 King James Version Bible
14063     14063 King James Version Bible
14064     14064 King James Version Bible
14065     14065 King James Version Bible
14066     14066 King James Version Bible
14067     14067 King James Version Bible
14068     14068 King James Version Bible
14069     14069 King James Version Bible
14070     14070 King James Version Bible
14071     14071 King James Version Bible
14072     14072 King James Version Bible
14073     14073 King James Version Bible
14074     14074 King James Version Bible
14075     14075 King James Version Bible
14076     14076 King James Version Bible
14077     14077 King James Version Bible
14078     14078 King James Version Bible
14079     14079 King James Version Bible
14080     14080 King James Version Bible
14081     14081 King James Version Bible
14082     14082 King James Version Bible
14083     14083 King James Version Bible
14084     14084 King James Version Bible
14085     14085 King James Version Bible
14086     14086 King James Version Bible
14087     14087 King James Version Bible
14088     14088 King James Version Bible
14089     14089 King James Version Bible
14090     14090 King James Version Bible
14091     14091 King James Version Bible
14092     14092 King James Version Bible
14093     14093 King James Version Bible
14094     14094 King James Version Bible
14095     14095 King James Version Bible
14096     14096 King James Version Bible
14097     14097 King James Version Bible
14098     14098 King James Version Bible
14099     14099 King James Version Bible
14100     14100 King James Version Bible
14101     14101 King James Version Bible
14102     14102 King James Version Bible
14103     14103 King James Version Bible
14104     14104 King James Version Bible
14105     14105 King James Version Bible
14106     14106 King James Version Bible
14107     14107 King James Version Bible
14108     14108 King James Version Bible
14109     14109 King James Version Bible
14110     14110 King James Version Bible
14111     14111 King James Version Bible
14112     14112 King James Version Bible
14113     14113 King James Version Bible
14114     14114 King James Version Bible
14115     14115 King James Version Bible
14116     14116 King James Version Bible
14117     14117 King James Version Bible
14118     14118 King James Version Bible
14119     14119 King James Version Bible
14120     14120 King James Version Bible
14121     14121 King James Version Bible
14122     14122 King James Version Bible
14123     14123 King James Version Bible
14124     14124 King James Version Bible
14125     14125 King James Version Bible
14126     14126 King James Version Bible
14127     14127 King James Version Bible
14128     14128 King James Version Bible
14129     14129 King James Version Bible
14130     14130 King James Version Bible
14131     14131 King James Version Bible
14132     14132 King James Version Bible
14133     14133 King James Version Bible
14134     14134 King James Version Bible
14135     14135 King James Version Bible
14136     14136 King James Version Bible
14137     14137 King James Version Bible
14138     14138 King James Version Bible
14139     14139 King James Version Bible
14140     14140 King James Version Bible
14141     14141 King James Version Bible
14142     14142 King James Version Bible
14143     14143 King James Version Bible
14144     14144 King James Version Bible
14145     14145 King James Version Bible
14146     14146 King James Version Bible
14147     14147 King James Version Bible
14148     14148 King James Version Bible
14149     14149 King James Version Bible
14150     14150 King James Version Bible
14151     14151 King James Version Bible
14152     14152 King James Version Bible
14153     14153 King James Version Bible
14154     14154 King James Version Bible
14155     14155 King James Version Bible
14156     14156 King James Version Bible
14157     14157 King James Version Bible
14158     14158 King James Version Bible
14159     14159 King James Version Bible
14160     14160 King James Version Bible
14161     14161 King James Version Bible
14162     14162 King James Version Bible
14163     14163 King James Version Bible
14164     14164 King James Version Bible
14165     14165 King James Version Bible
14166     14166 King James Version Bible
14167     14167 King James Version Bible
14168     14168 King James Version Bible
14169     14169 King James Version Bible
14170     14170 King James Version Bible
14171     14171 King James Version Bible
14172     14172 King James Version Bible
14173     14173 King James Version Bible
14174     14174 King James Version Bible
14175     14175 King James Version Bible
14176     14176 King James Version Bible
14177     14177 King James Version Bible
14178     14178 King James Version Bible
14179     14179 King James Version Bible
14180     14180 King James Version Bible
14181     14181 King James Version Bible
14182     14182 King James Version Bible
14183     14183 King James Version Bible
14184     14184 King James Version Bible
14185     14185 King James Version Bible
14186     14186 King James Version Bible
14187     14187 King James Version Bible
14188     14188 King James Version Bible
14189     14189 King James Version Bible
14190     14190 King James Version Bible
14191     14191 King James Version Bible
14192     14192 King James Version Bible
14193     14193 King James Version Bible
14194     14194 King James Version Bible
14195     14195 King James Version Bible
14196     14196 King James Version Bible
14197     14197 King James Version Bible
14198     14198 King James Version Bible
14199     14199 King James Version Bible
14200     14200 King James Version Bible
14201     14201 King James Version Bible
14202     14202 King James Version Bible
14203     14203 King James Version Bible
14204     14204 King James Version Bible
14205     14205 King James Version Bible
14206     14206 King James Version Bible
14207     14207 King James Version Bible
14208     14208 King James Version Bible
14209     14209 King James Version Bible
14210     14210 King James Version Bible
14211     14211 King James Version Bible
14212     14212 King James Version Bible
14213     14213 King James Version Bible
14214     14214 King James Version Bible
14215     14215 King James Version Bible
14216     14216 King James Version Bible
14217     14217 King James Version Bible
14218     14218 King James Version Bible
14219     14219 King James Version Bible
14220     14220 King James Version Bible
14221     14221 King James Version Bible
14222     14222 King James Version Bible
14223     14223 King James Version Bible
14224     14224 King James Version Bible
14225     14225 King James Version Bible
14226     14226 King James Version Bible
14227     14227 King James Version Bible
14228     14228 King James Version Bible
14229     14229 King James Version Bible
14230     14230 King James Version Bible
14231     14231 King James Version Bible
14232     14232 King James Version Bible
14233     14233 King James Version Bible
14234     14234 King James Version Bible
14235     14235 King James Version Bible
14236     14236 King James Version Bible
14237     14237 King James Version Bible
14238     14238 King James Version Bible
14239     14239 King James Version Bible
14240     14240 King James Version Bible
14241     14241 King James Version Bible
14242     14242 King James Version Bible
14243     14243 King James Version Bible
14244     14244 King James Version Bible
14245     14245 King James Version Bible
14246     14246 King James Version Bible
14247     14247 King James Version Bible
14248     14248 King James Version Bible
14249     14249 King James Version Bible
14250     14250 King James Version Bible
14251     14251 King James Version Bible
14252     14252 King James Version Bible
14253     14253 King James Version Bible
14254     14254 King James Version Bible
14255     14255 King James Version Bible
14256     14256 King James Version Bible
14257     14257 King James Version Bible
14258     14258 King James Version Bible
14259     14259 King James Version Bible
14260     14260 King James Version Bible
14261     14261 King James Version Bible
14262     14262 King James Version Bible
14263     14263 King James Version Bible
14264     14264 King James Version Bible
14265     14265 King James Version Bible
14266     14266 King James Version Bible
14267     14267 King James Version Bible
14268     14268 King James Version Bible
14269     14269 King James Version Bible
14270     14270 King James Version Bible
14271     14271 King James Version Bible
14272     14272 King James Version Bible
14273     14273 King James Version Bible
14274     14274 King James Version Bible
14275     14275 King James Version Bible
14276     14276 King James Version Bible
14277     14277 King James Version Bible
14278     14278 King James Version Bible
14279     14279 King James Version Bible
14280     14280 King James Version Bible
14281     14281 King James Version Bible
14282     14282 King James Version Bible
14283     14283 King James Version Bible
14284     14284 King James Version Bible
14285     14285 King James Version Bible
14286     14286 King James Version Bible
14287     14287 King James Version Bible
14288     14288 King James Version Bible
14289     14289 King James Version Bible
14290     14290 King James Version Bible
14291     14291 King James Version Bible
14292     14292 King James Version Bible
14293     14293 King James Version Bible
14294     14294 King James Version Bible
14295     14295 King James Version Bible
14296     14296 King James Version Bible
14297     14297 King James Version Bible
14298     14298 King James Version Bible
14299     14299 King James Version Bible
14300     14300 King James Version Bible
14301     14301 King James Version Bible
14302     14302 King James Version Bible
14303     14303 King James Version Bible
14304     14304 King James Version Bible
14305     14305 King James Version Bible
14306     14306 King James Version Bible
14307     14307 King James Version Bible
14308     14308 King James Version Bible
14309     14309 King James Version Bible
14310     14310 King James Version Bible
14311     14311 King James Version Bible
14312     14312 King James Version Bible
14313     14313 King James Version Bible
14314     14314 King James Version Bible
14315     14315 King James Version Bible
14316     14316 King James Version Bible
14317     14317 King James Version Bible
14318     14318 King James Version Bible
14319     14319 King James Version Bible
14320     14320 King James Version Bible
14321     14321 King James Version Bible
14322     14322 King James Version Bible
14323     14323 King James Version Bible
14324     14324 King James Version Bible
14325     14325 King James Version Bible
14326     14326 King James Version Bible
14327     14327 King James Version Bible
14328     14328 King James Version Bible
14329     14329 King James Version Bible
14330     14330 King James Version Bible
14331     14331 King James Version Bible
14332     14332 King James Version Bible
14333     14333 King James Version Bible
14334     14334 King James Version Bible
14335     14335 King James Version Bible
14336     14336 King James Version Bible
14337     14337 King James Version Bible
14338     14338 King James Version Bible
14339     14339 King James Version Bible
14340     14340 King James Version Bible
14341     14341 King James Version Bible
14342     14342 King James Version Bible
14343     14343 King James Version Bible
14344     14344 King James Version Bible
14345     14345 King James Version Bible
14346     14346 King James Version Bible
14347     14347 King James Version Bible
14348     14348 King James Version Bible
14349     14349 King James Version Bible
14350     14350 King James Version Bible
14351     14351 King James Version Bible
14352     14352 King James Version Bible
14353     14353 King James Version Bible
14354     14354 King James Version Bible
14355     14355 King James Version Bible
14356     14356 King James Version Bible
14357     14357 King James Version Bible
14358     14358 King James Version Bible
14359     14359 King James Version Bible
14360     14360 King James Version Bible
14361     14361 King James Version Bible
14362     14362 King James Version Bible
14363     14363 King James Version Bible
14364     14364 King James Version Bible
14365     14365 King James Version Bible
14366     14366 King James Version Bible
14367     14367 King James Version Bible
14368     14368 King James Version Bible
14369     14369 King James Version Bible
14370     14370 King James Version Bible
14371     14371 King James Version Bible
14372     14372 King James Version Bible
14373     14373 King James Version Bible
14374     14374 King James Version Bible
14375     14375 King James Version Bible
14376     14376 King James Version Bible
14377     14377 King James Version Bible
14378     14378 King James Version Bible
14379     14379 King James Version Bible
14380     14380 King James Version Bible
14381     14381 King James Version Bible
14382     14382 King James Version Bible
14383     14383 King James Version Bible
14384     14384 King James Version Bible
14385     14385 King James Version Bible
14386     14386 King James Version Bible
14387     14387 King James Version Bible
14388     14388 King James Version Bible
14389     14389 King James Version Bible
14390     14390 King James Version Bible
14391     14391 King James Version Bible
14392     14392 King James Version Bible
14393     14393 King James Version Bible
14394     14394 King James Version Bible
14395     14395 King James Version Bible
14396     14396 King James Version Bible
14397     14397 King James Version Bible
14398     14398 King James Version Bible
14399     14399 King James Version Bible
14400     14400 King James Version Bible
14401     14401 King James Version Bible
14402     14402 King James Version Bible
14403     14403 King James Version Bible
14404     14404 King James Version Bible
14405     14405 King James Version Bible
14406     14406 King James Version Bible
14407     14407 King James Version Bible
14408     14408 King James Version Bible
14409     14409 King James Version Bible
14410     14410 King James Version Bible
14411     14411 King James Version Bible
14412     14412 King James Version Bible
14413     14413 King James Version Bible
14414     14414 King James Version Bible
14415     14415 King James Version Bible
14416     14416 King James Version Bible
14417     14417 King James Version Bible
14418     14418 King James Version Bible
14419     14419 King James Version Bible
14420     14420 King James Version Bible
14421     14421 King James Version Bible
14422     14422 King James Version Bible
14423     14423 King James Version Bible
14424     14424 King James Version Bible
14425     14425 King James Version Bible
14426     14426 King James Version Bible
14427     14427 King James Version Bible
14428     14428 King James Version Bible
14429     14429 King James Version Bible
14430     14430 King James Version Bible
14431     14431 King James Version Bible
14432     14432 King James Version Bible
14433     14433 King James Version Bible
14434     14434 King James Version Bible
14435     14435 King James Version Bible
14436     14436 King James Version Bible
14437     14437 King James Version Bible
14438     14438 King James Version Bible
14439     14439 King James Version Bible
14440     14440 King James Version Bible
14441     14441 King James Version Bible
14442     14442 King James Version Bible
14443     14443 King James Version Bible
14444     14444 King James Version Bible
14445     14445 King James Version Bible
14446     14446 King James Version Bible
14447     14447 King James Version Bible
14448     14448 King James Version Bible
14449     14449 King James Version Bible
14450     14450 King James Version Bible
14451     14451 King James Version Bible
14452     14452 King James Version Bible
14453     14453 King James Version Bible
14454     14454 King James Version Bible
14455     14455 King James Version Bible
14456     14456 King James Version Bible
14457     14457 King James Version Bible
14458     14458 King James Version Bible
14459     14459 King James Version Bible
14460     14460 King James Version Bible
14461     14461 King James Version Bible
14462     14462 King James Version Bible
14463     14463 King James Version Bible
14464     14464 King James Version Bible
14465     14465 King James Version Bible
14466     14466 King James Version Bible
14467     14467 King James Version Bible
14468     14468 King James Version Bible
14469     14469 King James Version Bible
14470     14470 King James Version Bible
14471     14471 King James Version Bible
14472     14472 King James Version Bible
14473     14473 King James Version Bible
14474     14474 King James Version Bible
14475     14475 King James Version Bible
14476     14476 King James Version Bible
14477     14477 King James Version Bible
14478     14478 King James Version Bible
14479     14479 King James Version Bible
14480     14480 King James Version Bible
14481     14481 King James Version Bible
14482     14482 King James Version Bible
14483     14483 King James Version Bible
14484     14484 King James Version Bible
14485     14485 King James Version Bible
14486     14486 King James Version Bible
14487     14487 King James Version Bible
14488     14488 King James Version Bible
14489     14489 King James Version Bible
14490     14490 King James Version Bible
14491     14491 King James Version Bible
14492     14492 King James Version Bible
14493     14493 King James Version Bible
14494     14494 King James Version Bible
14495     14495 King James Version Bible
14496     14496 King James Version Bible
14497     14497 King James Version Bible
14498     14498 King James Version Bible
14499     14499 King James Version Bible
14500     14500 King James Version Bible
14501     14501 King James Version Bible
14502     14502 King James Version Bible
14503     14503 King James Version Bible
14504     14504 King James Version Bible
14505     14505 King James Version Bible
14506     14506 King James Version Bible
14507     14507 King James Version Bible
14508     14508 King James Version Bible
14509     14509 King James Version Bible
14510     14510 King James Version Bible
14511     14511 King James Version Bible
14512     14512 King James Version Bible
14513     14513 King James Version Bible
14514     14514 King James Version Bible
14515     14515 King James Version Bible
14516     14516 King James Version Bible
14517     14517 King James Version Bible
14518     14518 King James Version Bible
14519     14519 King James Version Bible
14520     14520 King James Version Bible
14521     14521 King James Version Bible
14522     14522 King James Version Bible
14523     14523 King James Version Bible
14524     14524 King James Version Bible
14525     14525 King James Version Bible
14526     14526 King James Version Bible
14527     14527 King James Version Bible
14528     14528 King James Version Bible
14529     14529 King James Version Bible
14530     14530 King James Version Bible
14531     14531 King James Version Bible
14532     14532 King James Version Bible
14533     14533 King James Version Bible
14534     14534 King James Version Bible
14535     14535 King James Version Bible
14536     14536 King James Version Bible
14537     14537 King James Version Bible
14538     14538 King James Version Bible
14539     14539 King James Version Bible
14540     14540 King James Version Bible
14541     14541 King James Version Bible
14542     14542 King James Version Bible
14543     14543 King James Version Bible
14544     14544 King James Version Bible
14545     14545 King James Version Bible
14546     14546 King James Version Bible
14547     14547 King James Version Bible
14548     14548 King James Version Bible
14549     14549 King James Version Bible
14550     14550 King James Version Bible
14551     14551 King James Version Bible
14552     14552 King James Version Bible
14553     14553 King James Version Bible
14554     14554 King James Version Bible
14555     14555 King James Version Bible
14556     14556 King James Version Bible
14557     14557 King James Version Bible
14558     14558 King James Version Bible
14559     14559 King James Version Bible
14560     14560 King James Version Bible
14561     14561 King James Version Bible
14562     14562 King James Version Bible
14563     14563 King James Version Bible
14564     14564 King James Version Bible
14565     14565 King James Version Bible
14566     14566 King James Version Bible
14567     14567 King James Version Bible
14568     14568 King James Version Bible
14569     14569 King James Version Bible
14570     14570 King James Version Bible
14571     14571 King James Version Bible
14572     14572 King James Version Bible
14573     14573 King James Version Bible
14574     14574 King James Version Bible
14575     14575 King James Version Bible
14576     14576 King James Version Bible
14577     14577 King James Version Bible
14578     14578 King James Version Bible
14579     14579 King James Version Bible
14580     14580 King James Version Bible
14581     14581 King James Version Bible
14582     14582 King James Version Bible
14583     14583 King James Version Bible
14584     14584 King James Version Bible
14585     14585 King James Version Bible
14586     14586 King James Version Bible
14587     14587 King James Version Bible
14588     14588 King James Version Bible
14589     14589 King James Version Bible
14590     14590 King James Version Bible
14591     14591 King James Version Bible
14592     14592 King James Version Bible
14593     14593 King James Version Bible
14594     14594 King James Version Bible
14595     14595 King James Version Bible
14596     14596 King James Version Bible
14597     14597 King James Version Bible
14598     14598 King James Version Bible
14599     14599 King James Version Bible
14600     14600 King James Version Bible
14601     14601 King James Version Bible
14602     14602 King James Version Bible
14603     14603 King James Version Bible
14604     14604 King James Version Bible
14605     14605 King James Version Bible
14606     14606 King James Version Bible
14607     14607 King James Version Bible
14608     14608 King James Version Bible
14609     14609 King James Version Bible
14610     14610 King James Version Bible
14611     14611 King James Version Bible
14612     14612 King James Version Bible
14613     14613 King James Version Bible
14614     14614 King James Version Bible
14615     14615 King James Version Bible
14616     14616 King James Version Bible
14617     14617 King James Version Bible
14618     14618 King James Version Bible
14619     14619 King James Version Bible
14620     14620 King James Version Bible
14621     14621 King James Version Bible
14622     14622 King James Version Bible
14623     14623 King James Version Bible
14624     14624 King James Version Bible
14625     14625 King James Version Bible
14626     14626 King James Version Bible
14627     14627 King James Version Bible
14628     14628 King James Version Bible
14629     14629 King James Version Bible
14630     14630 King James Version Bible
14631     14631 King James Version Bible
14632     14632 King James Version Bible
14633     14633 King James Version Bible
14634     14634 King James Version Bible
14635     14635 King James Version Bible
14636     14636 King James Version Bible
14637     14637 King James Version Bible
14638     14638 King James Version Bible
14639     14639 King James Version Bible
14640     14640 King James Version Bible
14641     14641 King James Version Bible
14642     14642 King James Version Bible
14643     14643 King James Version Bible
14644     14644 King James Version Bible
14645     14645 King James Version Bible
14646     14646 King James Version Bible
14647     14647 King James Version Bible
14648     14648 King James Version Bible
14649     14649 King James Version Bible
14650     14650 King James Version Bible
14651     14651 King James Version Bible
14652     14652 King James Version Bible
14653     14653 King James Version Bible
14654     14654 King James Version Bible
14655     14655 King James Version Bible
14656     14656 King James Version Bible
14657     14657 King James Version Bible
14658     14658 King James Version Bible
14659     14659 King James Version Bible
14660     14660 King James Version Bible
14661     14661 King James Version Bible
14662     14662 King James Version Bible
14663     14663 King James Version Bible
14664     14664 King James Version Bible
14665     14665 King James Version Bible
14666     14666 King James Version Bible
14667     14667 King James Version Bible
14668     14668 King James Version Bible
14669     14669 King James Version Bible
14670     14670 King James Version Bible
14671     14671 King James Version Bible
14672     14672 King James Version Bible
14673     14673 King James Version Bible
14674     14674 King James Version Bible
14675     14675 King James Version Bible
14676     14676 King James Version Bible
14677     14677 King James Version Bible
14678     14678 King James Version Bible
14679     14679 King James Version Bible
14680     14680 King James Version Bible
14681     14681 King James Version Bible
14682     14682 King James Version Bible
14683     14683 King James Version Bible
14684     14684 King James Version Bible
14685     14685 King James Version Bible
14686     14686 King James Version Bible
14687     14687 King James Version Bible
14688     14688 King James Version Bible
14689     14689 King James Version Bible
14690     14690 King James Version Bible
14691     14691 King James Version Bible
14692     14692 King James Version Bible
14693     14693 King James Version Bible
14694     14694 King James Version Bible
14695     14695 King James Version Bible
14696     14696 King James Version Bible
14697     14697 King James Version Bible
14698     14698 King James Version Bible
14699     14699 King James Version Bible
14700     14700 King James Version Bible
14701     14701 King James Version Bible
14702     14702 King James Version Bible
14703     14703 King James Version Bible
14704     14704 King James Version Bible
14705     14705 King James Version Bible
14706     14706 King James Version Bible
14707     14707 King James Version Bible
14708     14708 King James Version Bible
14709     14709 King James Version Bible
14710     14710 King James Version Bible
14711     14711 King James Version Bible
14712     14712 King James Version Bible
14713     14713 King James Version Bible
14714     14714 King James Version Bible
14715     14715 King James Version Bible
14716     14716 King James Version Bible
14717     14717 King James Version Bible
14718     14718 King James Version Bible
14719     14719 King James Version Bible
14720     14720 King James Version Bible
14721     14721 King James Version Bible
14722     14722 King James Version Bible
14723     14723 King James Version Bible
14724     14724 King James Version Bible
14725     14725 King James Version Bible
14726     14726 King James Version Bible
14727     14727 King James Version Bible
14728     14728 King James Version Bible
14729     14729 King James Version Bible
14730     14730 King James Version Bible
14731     14731 King James Version Bible
14732     14732 King James Version Bible
14733     14733 King James Version Bible
14734     14734 King James Version Bible
14735     14735 King James Version Bible
14736     14736 King James Version Bible
14737     14737 King James Version Bible
14738     14738 King James Version Bible
14739     14739 King James Version Bible
14740     14740 King James Version Bible
14741     14741 King James Version Bible
14742     14742 King James Version Bible
14743     14743 King James Version Bible
14744     14744 King James Version Bible
14745     14745 King James Version Bible
14746     14746 King James Version Bible
14747     14747 King James Version Bible
14748     14748 King James Version Bible
14749     14749 King James Version Bible
14750     14750 King James Version Bible
14751     14751 King James Version Bible
14752     14752 King James Version Bible
14753     14753 King James Version Bible
14754     14754 King James Version Bible
14755     14755 King James Version Bible
14756     14756 King James Version Bible
14757     14757 King James Version Bible
14758     14758 King James Version Bible
14759     14759 King James Version Bible
14760     14760 King James Version Bible
14761     14761 King James Version Bible
14762     14762 King James Version Bible
14763     14763 King James Version Bible
14764     14764 King James Version Bible
14765     14765 King James Version Bible
14766     14766 King James Version Bible
14767     14767 King James Version Bible
14768     14768 King James Version Bible
14769     14769 King James Version Bible
14770     14770 King James Version Bible
14771     14771 King James Version Bible
14772     14772 King James Version Bible
14773     14773 King James Version Bible
14774     14774 King James Version Bible
14775     14775 King James Version Bible
14776     14776 King James Version Bible
14777     14777 King James Version Bible
14778     14778 King James Version Bible
14779     14779 King James Version Bible
14780     14780 King James Version Bible
14781     14781 King James Version Bible
14782     14782 King James Version Bible
14783     14783 King James Version Bible
14784     14784 King James Version Bible
14785     14785 King James Version Bible
14786     14786 King James Version Bible
14787     14787 King James Version Bible
14788     14788 King James Version Bible
14789     14789 King James Version Bible
14790     14790 King James Version Bible
14791     14791 King James Version Bible
14792     14792 King James Version Bible
14793     14793 King James Version Bible
14794     14794 King James Version Bible
14795     14795 King James Version Bible
14796     14796 King James Version Bible
14797     14797 King James Version Bible
14798     14798 King James Version Bible
14799     14799 King James Version Bible
14800     14800 King James Version Bible
14801     14801 King James Version Bible
14802     14802 King James Version Bible
14803     14803 King James Version Bible
14804     14804 King James Version Bible
14805     14805 King James Version Bible
14806     14806 King James Version Bible
14807     14807 King James Version Bible
14808     14808 King James Version Bible
14809     14809 King James Version Bible
14810     14810 King James Version Bible
14811     14811 King James Version Bible
14812     14812 King James Version Bible
14813     14813 King James Version Bible
14814     14814 King James Version Bible
14815     14815 King James Version Bible
14816     14816 King James Version Bible
14817     14817 King James Version Bible
14818     14818 King James Version Bible
14819     14819 King James Version Bible
14820     14820 King James Version Bible
14821     14821 King James Version Bible
14822     14822 King James Version Bible
14823     14823 King James Version Bible
14824     14824 King James Version Bible
14825     14825 King James Version Bible
14826     14826 King James Version Bible
14827     14827 King James Version Bible
14828     14828 King James Version Bible
14829     14829 King James Version Bible
14830     14830 King James Version Bible
14831     14831 King James Version Bible
14832     14832 King James Version Bible
14833     14833 King James Version Bible
14834     14834 King James Version Bible
14835     14835 King James Version Bible
14836     14836 King James Version Bible
14837     14837 King James Version Bible
14838     14838 King James Version Bible
14839     14839 King James Version Bible
14840     14840 King James Version Bible
14841     14841 King James Version Bible
14842     14842 King James Version Bible
14843     14843 King James Version Bible
14844     14844 King James Version Bible
14845     14845 King James Version Bible
14846     14846 King James Version Bible
14847     14847 King James Version Bible
14848     14848 King James Version Bible
14849     14849 King James Version Bible
14850     14850 King James Version Bible
14851     14851 King James Version Bible
14852     14852 King James Version Bible
14853     14853 King James Version Bible
14854     14854 King James Version Bible
14855     14855 King James Version Bible
14856     14856 King James Version Bible
14857     14857 King James Version Bible
14858     14858 King James Version Bible
14859     14859 King James Version Bible
14860     14860 King James Version Bible
14861     14861 King James Version Bible
14862     14862 King James Version Bible
14863     14863 King James Version Bible
14864     14864 King James Version Bible
14865     14865 King James Version Bible
14866     14866 King James Version Bible
14867     14867 King James Version Bible
14868     14868 King James Version Bible
14869     14869 King James Version Bible
14870     14870 King James Version Bible
14871     14871 King James Version Bible
14872     14872 King James Version Bible
14873     14873 King James Version Bible
14874     14874 King James Version Bible
14875     14875 King James Version Bible
14876     14876 King James Version Bible
14877     14877 King James Version Bible
14878     14878 King James Version Bible
14879     14879 King James Version Bible
14880     14880 King James Version Bible
14881     14881 King James Version Bible
14882     14882 King James Version Bible
14883     14883 King James Version Bible
14884     14884 King James Version Bible
14885     14885 King James Version Bible
14886     14886 King James Version Bible
14887     14887 King James Version Bible
14888     14888 King James Version Bible
14889     14889 King James Version Bible
14890     14890 King James Version Bible
14891     14891 King James Version Bible
14892     14892 King James Version Bible
14893     14893 King James Version Bible
14894     14894 King James Version Bible
14895     14895 King James Version Bible
14896     14896 King James Version Bible
14897     14897 King James Version Bible
14898     14898 King James Version Bible
14899     14899 King James Version Bible
14900     14900 King James Version Bible
14901     14901 King James Version Bible
14902     14902 King James Version Bible
14903     14903 King James Version Bible
14904     14904 King James Version Bible
14905     14905 King James Version Bible
14906     14906 King James Version Bible
14907     14907 King James Version Bible
14908     14908 King James Version Bible
14909     14909 King James Version Bible
14910     14910 King James Version Bible
14911     14911 King James Version Bible
14912     14912 King James Version Bible
14913     14913 King James Version Bible
14914     14914 King James Version Bible
14915     14915 King James Version Bible
14916     14916 King James Version Bible
14917     14917 King James Version Bible
14918     14918 King James Version Bible
14919     14919 King James Version Bible
14920     14920 King James Version Bible
14921     14921 King James Version Bible
14922     14922 King James Version Bible
14923     14923 King James Version Bible
14924     14924 King James Version Bible
14925     14925 King James Version Bible
14926     14926 King James Version Bible
14927     14927 King James Version Bible
14928     14928 King James Version Bible
14929     14929 King James Version Bible
14930     14930 King James Version Bible
14931     14931 King James Version Bible
14932     14932 King James Version Bible
14933     14933 King James Version Bible
14934     14934 King James Version Bible
14935     14935 King James Version Bible
14936     14936 King James Version Bible
14937     14937 King James Version Bible
14938     14938 King James Version Bible
14939     14939 King James Version Bible
14940     14940 King James Version Bible
14941     14941 King James Version Bible
14942     14942 King James Version Bible
14943     14943 King James Version Bible
14944     14944 King James Version Bible
14945     14945 King James Version Bible
14946     14946 King James Version Bible
14947     14947 King James Version Bible
14948     14948 King James Version Bible
14949     14949 King James Version Bible
14950     14950 King James Version Bible
14951     14951 King James Version Bible
14952     14952 King James Version Bible
14953     14953 King James Version Bible
14954     14954 King James Version Bible
14955     14955 King James Version Bible
14956     14956 King James Version Bible
14957     14957 King James Version Bible
14958     14958 King James Version Bible
14959     14959 King James Version Bible
14960     14960 King James Version Bible
14961     14961 King James Version Bible
14962     14962 King James Version Bible
14963     14963 King James Version Bible
14964     14964 King James Version Bible
14965     14965 King James Version Bible
14966     14966 King James Version Bible
14967     14967 King James Version Bible
14968     14968 King James Version Bible
14969     14969 King James Version Bible
14970     14970 King James Version Bible
14971     14971 King James Version Bible
14972     14972 King James Version Bible
14973     14973 King James Version Bible
14974     14974 King James Version Bible
14975     14975 King James Version Bible
14976     14976 King James Version Bible
14977     14977 King James Version Bible
14978     14978 King James Version Bible
14979     14979 King James Version Bible
14980     14980 King James Version Bible
14981     14981 King James Version Bible
14982     14982 King James Version Bible
14983     14983 King James Version Bible
14984     14984 King James Version Bible
14985     14985 King James Version Bible
14986     14986 King James Version Bible
14987     14987 King James Version Bible
14988     14988 King James Version Bible
14989     14989 King James Version Bible
14990     14990 King James Version Bible
14991     14991 King James Version Bible
14992     14992 King James Version Bible
14993     14993 King James Version Bible
14994     14994 King James Version Bible
14995     14995 King James Version Bible
14996     14996 King James Version Bible
14997     14997 King James Version Bible
14998     14998 King James Version Bible
14999     14999 King James Version Bible
15000     15000 King James Version Bible
15001     15001 King James Version Bible
15002     15002 King James Version Bible
15003     15003 King James Version Bible
15004     15004 King James Version Bible
15005     15005 King James Version Bible
15006     15006 King James Version Bible
15007     15007 King James Version Bible
15008     15008 King James Version Bible
15009     15009 King James Version Bible
15010     15010 King James Version Bible
15011     15011 King James Version Bible
15012     15012 King James Version Bible
15013     15013 King James Version Bible
15014     15014 King James Version Bible
15015     15015 King James Version Bible
15016     15016 King James Version Bible
15017     15017 King James Version Bible
15018     15018 King James Version Bible
15019     15019 King James Version Bible
15020     15020 King James Version Bible
15021     15021 King James Version Bible
15022     15022 King James Version Bible
15023     15023 King James Version Bible
15024     15024 King James Version Bible
15025     15025 King James Version Bible
15026     15026 King James Version Bible
15027     15027 King James Version Bible
15028     15028 King James Version Bible
15029     15029 King James Version Bible
15030     15030 King James Version Bible
15031     15031 King James Version Bible
15032     15032 King James Version Bible
15033     15033 King James Version Bible
15034     15034 King James Version Bible
15035     15035 King James Version Bible
15036     15036 King James Version Bible
15037     15037 King James Version Bible
15038     15038 King James Version Bible
15039     15039 King James Version Bible
15040     15040 King James Version Bible
15041     15041 King James Version Bible
15042     15042 King James Version Bible
15043     15043 King James Version Bible
15044     15044 King James Version Bible
15045     15045 King James Version Bible
15046     15046 King James Version Bible
15047     15047 King James Version Bible
15048     15048 King James Version Bible
15049     15049 King James Version Bible
15050     15050 King James Version Bible
15051     15051 King James Version Bible
15052     15052 King James Version Bible
15053     15053 King James Version Bible
15054     15054 King James Version Bible
15055     15055 King James Version Bible
15056     15056 King James Version Bible
15057     15057 King James Version Bible
15058     15058 King James Version Bible
15059     15059 King James Version Bible
15060     15060 King James Version Bible
15061     15061 King James Version Bible
15062     15062 King James Version Bible
15063     15063 King James Version Bible
15064     15064 King James Version Bible
15065     15065 King James Version Bible
15066     15066 King James Version Bible
15067     15067 King James Version Bible
15068     15068 King James Version Bible
15069     15069 King James Version Bible
15070     15070 King James Version Bible
15071     15071 King James Version Bible
15072     15072 King James Version Bible
15073     15073 King James Version Bible
15074     15074 King James Version Bible
15075     15075 King James Version Bible
15076     15076 King James Version Bible
15077     15077 King James Version Bible
15078     15078 King James Version Bible
15079     15079 King James Version Bible
15080     15080 King James Version Bible
15081     15081 King James Version Bible
15082     15082 King James Version Bible
15083     15083 King James Version Bible
15084     15084 King James Version Bible
15085     15085 King James Version Bible
15086     15086 King James Version Bible
15087     15087 King James Version Bible
15088     15088 King James Version Bible
15089     15089 King James Version Bible
15090     15090 King James Version Bible
15091     15091 King James Version Bible
15092     15092 King James Version Bible
15093     15093 King James Version Bible
15094     15094 King James Version Bible
15095     15095 King James Version Bible
15096     15096 King James Version Bible
15097     15097 King James Version Bible
15098     15098 King James Version Bible
15099     15099 King James Version Bible
15100     15100 King James Version Bible
15101     15101 King James Version Bible
15102     15102 King James Version Bible
15103     15103 King James Version Bible
15104     15104 King James Version Bible
15105     15105 King James Version Bible
15106     15106 King James Version Bible
15107     15107 King James Version Bible
15108     15108 King James Version Bible
15109     15109 King James Version Bible
15110     15110 King James Version Bible
15111     15111 King James Version Bible
15112     15112 King James Version Bible
15113     15113 King James Version Bible
15114     15114 King James Version Bible
15115     15115 King James Version Bible
15116     15116 King James Version Bible
15117     15117 King James Version Bible
15118     15118 King James Version Bible
15119     15119 King James Version Bible
15120     15120 King James Version Bible
15121     15121 King James Version Bible
15122     15122 King James Version Bible
15123     15123 King James Version Bible
15124     15124 King James Version Bible
15125     15125 King James Version Bible
15126     15126 King James Version Bible
15127     15127 King James Version Bible
15128     15128 King James Version Bible
15129     15129 King James Version Bible
15130     15130 King James Version Bible
15131     15131 King James Version Bible
15132     15132 King James Version Bible
15133     15133 King James Version Bible
15134     15134 King James Version Bible
15135     15135 King James Version Bible
15136     15136 King James Version Bible
15137     15137 King James Version Bible
15138     15138 King James Version Bible
15139     15139 King James Version Bible
15140     15140 King James Version Bible
15141     15141 King James Version Bible
15142     15142 King James Version Bible
15143     15143 King James Version Bible
15144     15144 King James Version Bible
15145     15145 King James Version Bible
15146     15146 King James Version Bible
15147     15147 King James Version Bible
15148     15148 King James Version Bible
15149     15149 King James Version Bible
15150     15150 King James Version Bible
15151     15151 King James Version Bible
15152     15152 King James Version Bible
15153     15153 King James Version Bible
15154     15154 King James Version Bible
15155     15155 King James Version Bible
15156     15156 King James Version Bible
15157     15157 King James Version Bible
15158     15158 King James Version Bible
15159     15159 King James Version Bible
15160     15160 King James Version Bible
15161     15161 King James Version Bible
15162     15162 King James Version Bible
15163     15163 King James Version Bible
15164     15164 King James Version Bible
15165     15165 King James Version Bible
15166     15166 King James Version Bible
15167     15167 King James Version Bible
15168     15168 King James Version Bible
15169     15169 King James Version Bible
15170     15170 King James Version Bible
15171     15171 King James Version Bible
15172     15172 King James Version Bible
15173     15173 King James Version Bible
15174     15174 King James Version Bible
15175     15175 King James Version Bible
15176     15176 King James Version Bible
15177     15177 King James Version Bible
15178     15178 King James Version Bible
15179     15179 King James Version Bible
15180     15180 King James Version Bible
15181     15181 King James Version Bible
15182     15182 King James Version Bible
15183     15183 King James Version Bible
15184     15184 King James Version Bible
15185     15185 King James Version Bible
15186     15186 King James Version Bible
15187     15187 King James Version Bible
15188     15188 King James Version Bible
15189     15189 King James Version Bible
15190     15190 King James Version Bible
15191     15191 King James Version Bible
15192     15192 King James Version Bible
15193     15193 King James Version Bible
15194     15194 King James Version Bible
15195     15195 King James Version Bible
15196     15196 King James Version Bible
15197     15197 King James Version Bible
15198     15198 King James Version Bible
15199     15199 King James Version Bible
15200     15200 King James Version Bible
15201     15201 King James Version Bible
15202     15202 King James Version Bible
15203     15203 King James Version Bible
15204     15204 King James Version Bible
15205     15205 King James Version Bible
15206     15206 King James Version Bible
15207     15207 King James Version Bible
15208     15208 King James Version Bible
15209     15209 King James Version Bible
15210     15210 King James Version Bible
15211     15211 King James Version Bible
15212     15212 King James Version Bible
15213     15213 King James Version Bible
15214     15214 King James Version Bible
15215     15215 King James Version Bible
15216     15216 King James Version Bible
15217     15217 King James Version Bible
15218     15218 King James Version Bible
15219     15219 King James Version Bible
15220     15220 King James Version Bible
15221     15221 King James Version Bible
15222     15222 King James Version Bible
15223     15223 King James Version Bible
15224     15224 King James Version Bible
15225     15225 King James Version Bible
15226     15226 King James Version Bible
15227     15227 King James Version Bible
15228     15228 King James Version Bible
15229     15229 King James Version Bible
15230     15230 King James Version Bible
15231     15231 King James Version Bible
15232     15232 King James Version Bible
15233     15233 King James Version Bible
15234     15234 King James Version Bible
15235     15235 King James Version Bible
15236     15236 King James Version Bible
15237     15237 King James Version Bible
15238     15238 King James Version Bible
15239     15239 King James Version Bible
15240     15240 King James Version Bible
15241     15241 King James Version Bible
15242     15242 King James Version Bible
15243     15243 King James Version Bible
15244     15244 King James Version Bible
15245     15245 King James Version Bible
15246     15246 King James Version Bible
15247     15247 King James Version Bible
15248     15248 King James Version Bible
15249     15249 King James Version Bible
15250     15250 King James Version Bible
15251     15251 King James Version Bible
15252     15252 King James Version Bible
15253     15253 King James Version Bible
15254     15254 King James Version Bible
15255     15255 King James Version Bible
15256     15256 King James Version Bible
15257     15257 King James Version Bible
15258     15258 King James Version Bible
15259     15259 King James Version Bible
15260     15260 King James Version Bible
15261     15261 King James Version Bible
15262     15262 King James Version Bible
15263     15263 King James Version Bible
15264     15264 King James Version Bible
15265     15265 King James Version Bible
15266     15266 King James Version Bible
15267     15267 King James Version Bible
15268     15268 King James Version Bible
15269     15269 King James Version Bible
15270     15270 King James Version Bible
15271     15271 King James Version Bible
15272     15272 King James Version Bible
15273     15273 King James Version Bible
15274     15274 King James Version Bible
15275     15275 King James Version Bible
15276     15276 King James Version Bible
15277     15277 King James Version Bible
15278     15278 King James Version Bible
15279     15279 King James Version Bible
15280     15280 King James Version Bible
15281     15281 King James Version Bible
15282     15282 King James Version Bible
15283     15283 King James Version Bible
15284     15284 King James Version Bible
15285     15285 King James Version Bible
15286     15286 King James Version Bible
15287     15287 King James Version Bible
15288     15288 King James Version Bible
15289     15289 King James Version Bible
15290     15290 King James Version Bible
15291     15291 King James Version Bible
15292     15292 King James Version Bible
15293     15293 King James Version Bible
15294     15294 King James Version Bible
15295     15295 King James Version Bible
15296     15296 King James Version Bible
15297     15297 King James Version Bible
15298     15298 King James Version Bible
15299     15299 King James Version Bible
15300     15300 King James Version Bible
15301     15301 King James Version Bible
15302     15302 King James Version Bible
15303     15303 King James Version Bible
15304     15304 King James Version Bible
15305     15305 King James Version Bible
15306     15306 King James Version Bible
15307     15307 King James Version Bible
15308     15308 King James Version Bible
15309     15309 King James Version Bible
15310     15310 King James Version Bible
15311     15311 King James Version Bible
15312     15312 King James Version Bible
15313     15313 King James Version Bible
15314     15314 King James Version Bible
15315     15315 King James Version Bible
15316     15316 King James Version Bible
15317     15317 King James Version Bible
15318     15318 King James Version Bible
15319     15319 King James Version Bible
15320     15320 King James Version Bible
15321     15321 King James Version Bible
15322     15322 King James Version Bible
15323     15323 King James Version Bible
15324     15324 King James Version Bible
15325     15325 King James Version Bible
15326     15326 King James Version Bible
15327     15327 King James Version Bible
15328     15328 King James Version Bible
15329     15329 King James Version Bible
15330     15330 King James Version Bible
15331     15331 King James Version Bible
15332     15332 King James Version Bible
15333     15333 King James Version Bible
15334     15334 King James Version Bible
15335     15335 King James Version Bible
15336     15336 King James Version Bible
15337     15337 King James Version Bible
15338     15338 King James Version Bible
15339     15339 King James Version Bible
15340     15340 King James Version Bible
15341     15341 King James Version Bible
15342     15342 King James Version Bible
15343     15343 King James Version Bible
15344     15344 King James Version Bible
15345     15345 King James Version Bible
15346     15346 King James Version Bible
15347     15347 King James Version Bible
15348     15348 King James Version Bible
15349     15349 King James Version Bible
15350     15350 King James Version Bible
15351     15351 King James Version Bible
15352     15352 King James Version Bible
15353     15353 King James Version Bible
15354     15354 King James Version Bible
15355     15355 King James Version Bible
15356     15356 King James Version Bible
15357     15357 King James Version Bible
15358     15358 King James Version Bible
15359     15359 King James Version Bible
15360     15360 King James Version Bible
15361     15361 King James Version Bible
15362     15362 King James Version Bible
15363     15363 King James Version Bible
15364     15364 King James Version Bible
15365     15365 King James Version Bible
15366     15366 King James Version Bible
15367     15367 King James Version Bible
15368     15368 King James Version Bible
15369     15369 King James Version Bible
15370     15370 King James Version Bible
15371     15371 King James Version Bible
15372     15372 King James Version Bible
15373     15373 King James Version Bible
15374     15374 King James Version Bible
15375     15375 King James Version Bible
15376     15376 King James Version Bible
15377     15377 King James Version Bible
15378     15378 King James Version Bible
15379     15379 King James Version Bible
15380     15380 King James Version Bible
15381     15381 King James Version Bible
15382     15382 King James Version Bible
15383     15383 King James Version Bible
15384     15384 King James Version Bible
15385     15385 King James Version Bible
15386     15386 King James Version Bible
15387     15387 King James Version Bible
15388     15388 King James Version Bible
15389     15389 King James Version Bible
15390     15390 King James Version Bible
15391     15391 King James Version Bible
15392     15392 King James Version Bible
15393     15393 King James Version Bible
15394     15394 King James Version Bible
15395     15395 King James Version Bible
15396     15396 King James Version Bible
15397     15397 King James Version Bible
15398     15398 King James Version Bible
15399     15399 King James Version Bible
15400     15400 King James Version Bible
15401     15401 King James Version Bible
15402     15402 King James Version Bible
15403     15403 King James Version Bible
15404     15404 King James Version Bible
15405     15405 King James Version Bible
15406     15406 King James Version Bible
15407     15407 King James Version Bible
15408     15408 King James Version Bible
15409     15409 King James Version Bible
15410     15410 King James Version Bible
15411     15411 King James Version Bible
15412     15412 King James Version Bible
15413     15413 King James Version Bible
15414     15414 King James Version Bible
15415     15415 King James Version Bible
15416     15416 King James Version Bible
15417     15417 King James Version Bible
15418     15418 King James Version Bible
15419     15419 King James Version Bible
15420     15420 King James Version Bible
15421     15421 King James Version Bible
15422     15422 King James Version Bible
15423     15423 King James Version Bible
15424     15424 King James Version Bible
15425     15425 King James Version Bible
15426     15426 King James Version Bible
15427     15427 King James Version Bible
15428     15428 King James Version Bible
15429     15429 King James Version Bible
15430     15430 King James Version Bible
15431     15431 King James Version Bible
15432     15432 King James Version Bible
15433     15433 King James Version Bible
15434     15434 King James Version Bible
15435     15435 King James Version Bible
15436     15436 King James Version Bible
15437     15437 King James Version Bible
15438     15438 King James Version Bible
15439     15439 King James Version Bible
15440     15440 King James Version Bible
15441     15441 King James Version Bible
15442     15442 King James Version Bible
15443     15443 King James Version Bible
15444     15444 King James Version Bible
15445     15445 King James Version Bible
15446     15446 King James Version Bible
15447     15447 King James Version Bible
15448     15448 King James Version Bible
15449     15449 King James Version Bible
15450     15450 King James Version Bible
15451     15451 King James Version Bible
15452     15452 King James Version Bible
15453     15453 King James Version Bible
15454     15454 King James Version Bible
15455     15455 King James Version Bible
15456     15456 King James Version Bible
15457     15457 King James Version Bible
15458     15458 King James Version Bible
15459     15459 King James Version Bible
15460     15460 King James Version Bible
15461     15461 King James Version Bible
15462     15462 King James Version Bible
15463     15463 King James Version Bible
15464     15464 King James Version Bible
15465     15465 King James Version Bible
15466     15466 King James Version Bible
15467     15467 King James Version Bible
15468     15468 King James Version Bible
15469     15469 King James Version Bible
15470     15470 King James Version Bible
15471     15471 King James Version Bible
15472     15472 King James Version Bible
15473     15473 King James Version Bible
15474     15474 King James Version Bible
15475     15475 King James Version Bible
15476     15476 King James Version Bible
15477     15477 King James Version Bible
15478     15478 King James Version Bible
15479     15479 King James Version Bible
15480     15480 King James Version Bible
15481     15481 King James Version Bible
15482     15482 King James Version Bible
15483     15483 King James Version Bible
15484     15484 King James Version Bible
15485     15485 King James Version Bible
15486     15486 King James Version Bible
15487     15487 King James Version Bible
15488     15488 King James Version Bible
15489     15489 King James Version Bible
15490     15490 King James Version Bible
15491     15491 King James Version Bible
15492     15492 King James Version Bible
15493     15493 King James Version Bible
15494     15494 King James Version Bible
15495     15495 King James Version Bible
15496     15496 King James Version Bible
15497     15497 King James Version Bible
15498     15498 King James Version Bible
15499     15499 King James Version Bible
15500     15500 King James Version Bible
15501     15501 King James Version Bible
15502     15502 King James Version Bible
15503     15503 King James Version Bible
15504     15504 King James Version Bible
15505     15505 King James Version Bible
15506     15506 King James Version Bible
15507     15507 King James Version Bible
15508     15508 King James Version Bible
15509     15509 King James Version Bible
15510     15510 King James Version Bible
15511     15511 King James Version Bible
15512     15512 King James Version Bible
15513     15513 King James Version Bible
15514     15514 King James Version Bible
15515     15515 King James Version Bible
15516     15516 King James Version Bible
15517     15517 King James Version Bible
15518     15518 King James Version Bible
15519     15519 King James Version Bible
15520     15520 King James Version Bible
15521     15521 King James Version Bible
15522     15522 King James Version Bible
15523     15523 King James Version Bible
15524     15524 King James Version Bible
15525     15525 King James Version Bible
15526     15526 King James Version Bible
15527     15527 King James Version Bible
15528     15528 King James Version Bible
15529     15529 King James Version Bible
15530     15530 King James Version Bible
15531     15531 King James Version Bible
15532     15532 King James Version Bible
15533     15533 King James Version Bible
15534     15534 King James Version Bible
15535     15535 King James Version Bible
15536     15536 King James Version Bible
15537     15537 King James Version Bible
15538     15538 King James Version Bible
15539     15539 King James Version Bible
15540     15540 King James Version Bible
15541     15541 King James Version Bible
15542     15542 King James Version Bible
15543     15543 King James Version Bible
15544     15544 King James Version Bible
15545     15545 King James Version Bible
15546     15546 King James Version Bible
15547     15547 King James Version Bible
15548     15548 King James Version Bible
15549     15549 King James Version Bible
15550     15550 King James Version Bible
15551     15551 King James Version Bible
15552     15552 King James Version Bible
15553     15553 King James Version Bible
15554     15554 King James Version Bible
15555     15555 King James Version Bible
15556     15556 King James Version Bible
15557     15557 King James Version Bible
15558     15558 King James Version Bible
15559     15559 King James Version Bible
15560     15560 King James Version Bible
15561     15561 King James Version Bible
15562     15562 King James Version Bible
15563     15563 King James Version Bible
15564     15564 King James Version Bible
15565     15565 King James Version Bible
15566     15566 King James Version Bible
15567     15567 King James Version Bible
15568     15568 King James Version Bible
15569     15569 King James Version Bible
15570     15570 King James Version Bible
15571     15571 King James Version Bible
15572     15572 King James Version Bible
15573     15573 King James Version Bible
15574     15574 King James Version Bible
15575     15575 King James Version Bible
15576     15576 King James Version Bible
15577     15577 King James Version Bible
15578     15578 King James Version Bible
15579     15579 King James Version Bible
15580     15580 King James Version Bible
15581     15581 King James Version Bible
15582     15582 King James Version Bible
15583     15583 King James Version Bible
15584     15584 King James Version Bible
15585     15585 King James Version Bible
15586     15586 King James Version Bible
15587     15587 King James Version Bible
15588     15588 King James Version Bible
15589     15589 King James Version Bible
15590     15590 King James Version Bible
15591     15591 King James Version Bible
15592     15592 King James Version Bible
15593     15593 King James Version Bible
15594     15594 King James Version Bible
15595     15595 King James Version Bible
15596     15596 King James Version Bible
15597     15597 King James Version Bible
15598     15598 King James Version Bible
15599     15599 King James Version Bible
15600     15600 King James Version Bible
15601     15601 King James Version Bible
15602     15602 King James Version Bible
15603     15603 King James Version Bible
15604     15604 King James Version Bible
15605     15605 King James Version Bible
15606     15606 King James Version Bible
15607     15607 King James Version Bible
15608     15608 King James Version Bible
15609     15609 King James Version Bible
15610     15610 King James Version Bible
15611     15611 King James Version Bible
15612     15612 King James Version Bible
15613     15613 King James Version Bible
15614     15614 King James Version Bible
15615     15615 King James Version Bible
15616     15616 King James Version Bible
15617     15617 King James Version Bible
15618     15618 King James Version Bible
15619     15619 King James Version Bible
15620     15620 King James Version Bible
15621     15621 King James Version Bible
15622     15622 King James Version Bible
15623     15623 King James Version Bible
15624     15624 King James Version Bible
15625     15625 King James Version Bible
15626     15626 King James Version Bible
15627     15627 King James Version Bible
15628     15628 King James Version Bible
15629     15629 King James Version Bible
15630     15630 King James Version Bible
15631     15631 King James Version Bible
15632     15632 King James Version Bible
15633     15633 King James Version Bible
15634     15634 King James Version Bible
15635     15635 King James Version Bible
15636     15636 King James Version Bible
15637     15637 King James Version Bible
15638     15638 King James Version Bible
15639     15639 King James Version Bible
15640     15640 King James Version Bible
15641     15641 King James Version Bible
15642     15642 King James Version Bible
15643     15643 King James Version Bible
15644     15644 King James Version Bible
15645     15645 King James Version Bible
15646     15646 King James Version Bible
15647     15647 King James Version Bible
15648     15648 King James Version Bible
15649     15649 King James Version Bible
15650     15650 King James Version Bible
15651     15651 King James Version Bible
15652     15652 King James Version Bible
15653     15653 King James Version Bible
15654     15654 King James Version Bible
15655     15655 King James Version Bible
15656     15656 King James Version Bible
15657     15657 King James Version Bible
15658     15658 King James Version Bible
15659     15659 King James Version Bible
15660     15660 King James Version Bible
15661     15661 King James Version Bible
15662     15662 King James Version Bible
15663     15663 King James Version Bible
15664     15664 King James Version Bible
15665     15665 King James Version Bible
15666     15666 King James Version Bible
15667     15667 King James Version Bible
15668     15668 King James Version Bible
15669     15669 King James Version Bible
15670     15670 King James Version Bible
15671     15671 King James Version Bible
15672     15672 King James Version Bible
15673     15673 King James Version Bible
15674     15674 King James Version Bible
15675     15675 King James Version Bible
15676     15676 King James Version Bible
15677     15677 King James Version Bible
15678     15678 King James Version Bible
15679     15679 King James Version Bible
15680     15680 King James Version Bible
15681     15681 King James Version Bible
15682     15682 King James Version Bible
15683     15683 King James Version Bible
15684     15684 King James Version Bible
15685     15685 King James Version Bible
15686     15686 King James Version Bible
15687     15687 King James Version Bible
15688     15688 King James Version Bible
15689     15689 King James Version Bible
15690     15690 King James Version Bible
15691     15691 King James Version Bible
15692     15692 King James Version Bible
15693     15693 King James Version Bible
15694     15694 King James Version Bible
15695     15695 King James Version Bible
15696     15696 King James Version Bible
15697     15697 King James Version Bible
15698     15698 King James Version Bible
15699     15699 King James Version Bible
15700     15700 King James Version Bible
15701     15701 King James Version Bible
15702     15702 King James Version Bible
15703     15703 King James Version Bible
15704     15704 King James Version Bible
15705     15705 King James Version Bible
15706     15706 King James Version Bible
15707     15707 King James Version Bible
15708     15708 King James Version Bible
15709     15709 King James Version Bible
15710     15710 King James Version Bible
15711     15711 King James Version Bible
15712     15712 King James Version Bible
15713     15713 King James Version Bible
15714     15714 King James Version Bible
15715     15715 King James Version Bible
15716     15716 King James Version Bible
15717     15717 King James Version Bible
15718     15718 King James Version Bible
15719     15719 King James Version Bible
15720     15720 King James Version Bible
15721     15721 King James Version Bible
15722     15722 King James Version Bible
15723     15723 King James Version Bible
15724     15724 King James Version Bible
15725     15725 King James Version Bible
15726     15726 King James Version Bible
15727     15727 King James Version Bible
15728     15728 King James Version Bible
15729     15729 King James Version Bible
15730     15730 King James Version Bible
15731     15731 King James Version Bible
15732     15732 King James Version Bible
15733     15733 King James Version Bible
15734     15734 King James Version Bible
15735     15735 King James Version Bible
15736     15736 King James Version Bible
15737     15737 King James Version Bible
15738     15738 King James Version Bible
15739     15739 King James Version Bible
15740     15740 King James Version Bible
15741     15741 King James Version Bible
15742     15742 King James Version Bible
15743     15743 King James Version Bible
15744     15744 King James Version Bible
15745     15745 King James Version Bible
15746     15746 King James Version Bible
15747     15747 King James Version Bible
15748     15748 King James Version Bible
15749     15749 King James Version Bible
15750     15750 King James Version Bible
15751     15751 King James Version Bible
15752     15752 King James Version Bible
15753     15753 King James Version Bible
15754     15754 King James Version Bible
15755     15755 King James Version Bible
15756     15756 King James Version Bible
15757     15757 King James Version Bible
15758     15758 King James Version Bible
15759     15759 King James Version Bible
15760     15760 King James Version Bible
15761     15761 King James Version Bible
15762     15762 King James Version Bible
15763     15763 King James Version Bible
15764     15764 King James Version Bible
15765     15765 King James Version Bible
15766     15766 King James Version Bible
15767     15767 King James Version Bible
15768     15768 King James Version Bible
15769     15769 King James Version Bible
15770     15770 King James Version Bible
15771     15771 King James Version Bible
15772     15772 King James Version Bible
15773     15773 King James Version Bible
15774     15774 King James Version Bible
15775     15775 King James Version Bible
15776     15776 King James Version Bible
15777     15777 King James Version Bible
15778     15778 King James Version Bible
15779     15779 King James Version Bible
15780     15780 King James Version Bible
15781     15781 King James Version Bible
15782     15782 King James Version Bible
15783     15783 King James Version Bible
15784     15784 King James Version Bible
15785     15785 King James Version Bible
15786     15786 King James Version Bible
15787     15787 King James Version Bible
15788     15788 King James Version Bible
15789     15789 King James Version Bible
15790     15790 King James Version Bible
15791     15791 King James Version Bible
15792     15792 King James Version Bible
15793     15793 King James Version Bible
15794     15794 King James Version Bible
15795     15795 King James Version Bible
15796     15796 King James Version Bible
15797     15797 King James Version Bible
15798     15798 King James Version Bible
15799     15799 King James Version Bible
15800     15800 King James Version Bible
15801     15801 King James Version Bible
15802     15802 King James Version Bible
15803     15803 King James Version Bible
15804     15804 King James Version Bible
15805     15805 King James Version Bible
15806     15806 King James Version Bible
15807     15807 King James Version Bible
15808     15808 King James Version Bible
15809     15809 King James Version Bible
15810     15810 King James Version Bible
15811     15811 King James Version Bible
15812     15812 King James Version Bible
15813     15813 King James Version Bible
15814     15814 King James Version Bible
15815     15815 King James Version Bible
15816     15816 King James Version Bible
15817     15817 King James Version Bible
15818     15818 King James Version Bible
15819     15819 King James Version Bible
15820     15820 King James Version Bible
15821     15821 King James Version Bible
15822     15822 King James Version Bible
15823     15823 King James Version Bible
15824     15824 King James Version Bible
15825     15825 King James Version Bible
15826     15826 King James Version Bible
15827     15827 King James Version Bible
15828     15828 King James Version Bible
15829     15829 King James Version Bible
15830     15830 King James Version Bible
15831     15831 King James Version Bible
15832     15832 King James Version Bible
15833     15833 King James Version Bible
15834     15834 King James Version Bible
15835     15835 King James Version Bible
15836     15836 King James Version Bible
15837     15837 King James Version Bible
15838     15838 King James Version Bible
15839     15839 King James Version Bible
15840     15840 King James Version Bible
15841     15841 King James Version Bible
15842     15842 King James Version Bible
15843     15843 King James Version Bible
15844     15844 King James Version Bible
15845     15845 King James Version Bible
15846     15846 King James Version Bible
15847     15847 King James Version Bible
15848     15848 King James Version Bible
15849     15849 King James Version Bible
15850     15850 King James Version Bible
15851     15851 King James Version Bible
15852     15852 King James Version Bible
15853     15853 King James Version Bible
15854     15854 King James Version Bible
15855     15855 King James Version Bible
15856     15856 King James Version Bible
15857     15857 King James Version Bible
15858     15858 King James Version Bible
15859     15859 King James Version Bible
15860     15860 King James Version Bible
15861     15861 King James Version Bible
15862     15862 King James Version Bible
15863     15863 King James Version Bible
15864     15864 King James Version Bible
15865     15865 King James Version Bible
15866     15866 King James Version Bible
15867     15867 King James Version Bible
15868     15868 King James Version Bible
15869     15869 King James Version Bible
15870     15870 King James Version Bible
15871     15871 King James Version Bible
15872     15872 King James Version Bible
15873     15873 King James Version Bible
15874     15874 King James Version Bible
15875     15875 King James Version Bible
15876     15876 King James Version Bible
15877     15877 King James Version Bible
15878     15878 King James Version Bible
15879     15879 King James Version Bible
15880     15880 King James Version Bible
15881     15881 King James Version Bible
15882     15882 King James Version Bible
15883     15883 King James Version Bible
15884     15884 King James Version Bible
15885     15885 King James Version Bible
15886     15886 King James Version Bible
15887     15887 King James Version Bible
15888     15888 King James Version Bible
15889     15889 King James Version Bible
15890     15890 King James Version Bible
15891     15891 King James Version Bible
15892     15892 King James Version Bible
15893     15893 King James Version Bible
15894     15894 King James Version Bible
15895     15895 King James Version Bible
15896     15896 King James Version Bible
15897     15897 King James Version Bible
15898     15898 King James Version Bible
15899     15899 King James Version Bible
15900     15900 King James Version Bible
15901     15901 King James Version Bible
15902     15902 King James Version Bible
15903     15903 King James Version Bible
15904     15904 King James Version Bible
15905     15905 King James Version Bible
15906     15906 King James Version Bible
15907     15907 King James Version Bible
15908     15908 King James Version Bible
15909     15909 King James Version Bible
15910     15910 King James Version Bible
15911     15911 King James Version Bible
15912     15912 King James Version Bible
15913     15913 King James Version Bible
15914     15914 King James Version Bible
15915     15915 King James Version Bible
15916     15916 King James Version Bible
15917     15917 King James Version Bible
15918     15918 King James Version Bible
15919     15919 King James Version Bible
15920     15920 King James Version Bible
15921     15921 King James Version Bible
15922     15922 King James Version Bible
15923     15923 King James Version Bible
15924     15924 King James Version Bible
15925     15925 King James Version Bible
15926     15926 King James Version Bible
15927     15927 King James Version Bible
15928     15928 King James Version Bible
15929     15929 King James Version Bible
15930     15930 King James Version Bible
15931     15931 King James Version Bible
15932     15932 King James Version Bible
15933     15933 King James Version Bible
15934     15934 King James Version Bible
15935     15935 King James Version Bible
15936     15936 King James Version Bible
15937     15937 King James Version Bible
15938     15938 King James Version Bible
15939     15939 King James Version Bible
15940     15940 King James Version Bible
15941     15941 King James Version Bible
15942     15942 King James Version Bible
15943     15943 King James Version Bible
15944     15944 King James Version Bible
15945     15945 King James Version Bible
15946     15946 King James Version Bible
15947     15947 King James Version Bible
15948     15948 King James Version Bible
15949     15949 King James Version Bible
15950     15950 King James Version Bible
15951     15951 King James Version Bible
15952     15952 King James Version Bible
15953     15953 King James Version Bible
15954     15954 King James Version Bible
15955     15955 King James Version Bible
15956     15956 King James Version Bible
15957     15957 King James Version Bible
15958     15958 King James Version Bible
15959     15959 King James Version Bible
15960     15960 King James Version Bible
15961     15961 King James Version Bible
15962     15962 King James Version Bible
15963     15963 King James Version Bible
15964     15964 King James Version Bible
15965     15965 King James Version Bible
15966     15966 King James Version Bible
15967     15967 King James Version Bible
15968     15968 King James Version Bible
15969     15969 King James Version Bible
15970     15970 King James Version Bible
15971     15971 King James Version Bible
15972     15972 King James Version Bible
15973     15973 King James Version Bible
15974     15974 King James Version Bible
15975     15975 King James Version Bible
15976     15976 King James Version Bible
15977     15977 King James Version Bible
15978     15978 King James Version Bible
15979     15979 King James Version Bible
15980     15980 King James Version Bible
15981     15981 King James Version Bible
15982     15982 King James Version Bible
15983     15983 King James Version Bible
15984     15984 King James Version Bible
15985     15985 King James Version Bible
15986     15986 King James Version Bible
15987     15987 King James Version Bible
15988     15988 King James Version Bible
15989     15989 King James Version Bible
15990     15990 King James Version Bible
15991     15991 King James Version Bible
15992     15992 King James Version Bible
15993     15993 King James Version Bible
15994     15994 King James Version Bible
15995     15995 King James Version Bible
15996     15996 King James Version Bible
15997     15997 King James Version Bible
15998     15998 King James Version Bible
15999     15999 King James Version Bible
16000     16000 King James Version Bible
16001     16001 King James Version Bible
16002     16002 King James Version Bible
16003     16003 King James Version Bible
16004     16004 King James Version Bible
16005     16005 King James Version Bible
16006     16006 King James Version Bible
16007     16007 King James Version Bible
16008     16008 King James Version Bible
16009     16009 King James Version Bible
16010     16010 King James Version Bible
16011     16011 King James Version Bible
16012     16012 King James Version Bible
16013     16013 King James Version Bible
16014     16014 King James Version Bible
16015     16015 King James Version Bible
16016     16016 King James Version Bible
16017     16017 King James Version Bible
16018     16018 King James Version Bible
16019     16019 King James Version Bible
16020     16020 King James Version Bible
16021     16021 King James Version Bible
16022     16022 King James Version Bible
16023     16023 King James Version Bible
16024     16024 King James Version Bible
16025     16025 King James Version Bible
16026     16026 King James Version Bible
16027     16027 King James Version Bible
16028     16028 King James Version Bible
16029     16029 King James Version Bible
16030     16030 King James Version Bible
16031     16031 King James Version Bible
16032     16032 King James Version Bible
16033     16033 King James Version Bible
16034     16034 King James Version Bible
16035     16035 King James Version Bible
16036     16036 King James Version Bible
16037     16037 King James Version Bible
16038     16038 King James Version Bible
16039     16039 King James Version Bible
16040     16040 King James Version Bible
16041     16041 King James Version Bible
16042     16042 King James Version Bible
16043     16043 King James Version Bible
16044     16044 King James Version Bible
16045     16045 King James Version Bible
16046     16046 King James Version Bible
16047     16047 King James Version Bible
16048     16048 King James Version Bible
16049     16049 King James Version Bible
16050     16050 King James Version Bible
16051     16051 King James Version Bible
16052     16052 King James Version Bible
16053     16053 King James Version Bible
16054     16054 King James Version Bible
16055     16055 King James Version Bible
16056     16056 King James Version Bible
16057     16057 King James Version Bible
16058     16058 King James Version Bible
16059     16059 King James Version Bible
16060     16060 King James Version Bible
16061     16061 King James Version Bible
16062     16062 King James Version Bible
16063     16063 King James Version Bible
16064     16064 King James Version Bible
16065     16065 King James Version Bible
16066     16066 King James Version Bible
16067     16067 King James Version Bible
16068     16068 King James Version Bible
16069     16069 King James Version Bible
16070     16070 King James Version Bible
16071     16071 King James Version Bible
16072     16072 King James Version Bible
16073     16073 King James Version Bible
16074     16074 King James Version Bible
16075     16075 King James Version Bible
16076     16076 King James Version Bible
16077     16077 King James Version Bible
16078     16078 King James Version Bible
16079     16079 King James Version Bible
16080     16080 King James Version Bible
16081     16081 King James Version Bible
16082     16082 King James Version Bible
16083     16083 King James Version Bible
16084     16084 King James Version Bible
16085     16085 King James Version Bible
16086     16086 King James Version Bible
16087     16087 King James Version Bible
16088     16088 King James Version Bible
16089     16089 King James Version Bible
16090     16090 King James Version Bible
16091     16091 King James Version Bible
16092     16092 King James Version Bible
16093     16093 King James Version Bible
16094     16094 King James Version Bible
16095     16095 King James Version Bible
16096     16096 King James Version Bible
16097     16097 King James Version Bible
16098     16098 King James Version Bible
16099     16099 King James Version Bible
16100     16100 King James Version Bible
16101     16101 King James Version Bible
16102     16102 King James Version Bible
16103     16103 King James Version Bible
16104     16104 King James Version Bible
16105     16105 King James Version Bible
16106     16106 King James Version Bible
16107     16107 King James Version Bible
16108     16108 King James Version Bible
16109     16109 King James Version Bible
16110     16110 King James Version Bible
16111     16111 King James Version Bible
16112     16112 King James Version Bible
16113     16113 King James Version Bible
16114     16114 King James Version Bible
16115     16115 King James Version Bible
16116     16116 King James Version Bible
16117     16117 King James Version Bible
16118     16118 King James Version Bible
16119     16119 King James Version Bible
16120     16120 King James Version Bible
16121     16121 King James Version Bible
16122     16122 King James Version Bible
16123     16123 King James Version Bible
16124     16124 King James Version Bible
16125     16125 King James Version Bible
16126     16126 King James Version Bible
16127     16127 King James Version Bible
16128     16128 King James Version Bible
16129     16129 King James Version Bible
16130     16130 King James Version Bible
16131     16131 King James Version Bible
16132     16132 King James Version Bible
16133     16133 King James Version Bible
16134     16134 King James Version Bible
16135     16135 King James Version Bible
16136     16136 King James Version Bible
16137     16137 King James Version Bible
16138     16138 King James Version Bible
16139     16139 King James Version Bible
16140     16140 King James Version Bible
16141     16141 King James Version Bible
16142     16142 King James Version Bible
16143     16143 King James Version Bible
16144     16144 King James Version Bible
16145     16145 King James Version Bible
16146     16146 King James Version Bible
16147     16147 King James Version Bible
16148     16148 King James Version Bible
16149     16149 King James Version Bible
16150     16150 King James Version Bible
16151     16151 King James Version Bible
16152     16152 King James Version Bible
16153     16153 King James Version Bible
16154     16154 King James Version Bible
16155     16155 King James Version Bible
16156     16156 King James Version Bible
16157     16157 King James Version Bible
16158     16158 King James Version Bible
16159     16159 King James Version Bible
16160     16160 King James Version Bible
16161     16161 King James Version Bible
16162     16162 King James Version Bible
16163     16163 King James Version Bible
16164     16164 King James Version Bible
16165     16165 King James Version Bible
16166     16166 King James Version Bible
16167     16167 King James Version Bible
16168     16168 King James Version Bible
16169     16169 King James Version Bible
16170     16170 King James Version Bible
16171     16171 King James Version Bible
16172     16172 King James Version Bible
16173     16173 King James Version Bible
16174     16174 King James Version Bible
16175     16175 King James Version Bible
16176     16176 King James Version Bible
16177     16177 King James Version Bible
16178     16178 King James Version Bible
16179     16179 King James Version Bible
16180     16180 King James Version Bible
16181     16181 King James Version Bible
16182     16182 King James Version Bible
16183     16183 King James Version Bible
16184     16184 King James Version Bible
16185     16185 King James Version Bible
16186     16186 King James Version Bible
16187     16187 King James Version Bible
16188     16188 King James Version Bible
16189     16189 King James Version Bible
16190     16190 King James Version Bible
16191     16191 King James Version Bible
16192     16192 King James Version Bible
16193     16193 King James Version Bible
16194     16194 King James Version Bible
16195     16195 King James Version Bible
16196     16196 King James Version Bible
16197     16197 King James Version Bible
16198     16198 King James Version Bible
16199     16199 King James Version Bible
16200     16200 King James Version Bible
16201     16201 King James Version Bible
16202     16202 King James Version Bible
16203     16203 King James Version Bible
16204     16204 King James Version Bible
16205     16205 King James Version Bible
16206     16206 King James Version Bible
16207     16207 King James Version Bible
16208     16208 King James Version Bible
16209     16209 King James Version Bible
16210     16210 King James Version Bible
16211     16211 King James Version Bible
16212     16212 King James Version Bible
16213     16213 King James Version Bible
16214     16214 King James Version Bible
16215     16215 King James Version Bible
16216     16216 King James Version Bible
16217     16217 King James Version Bible
16218     16218 King James Version Bible
16219     16219 King James Version Bible
16220     16220 King James Version Bible
16221     16221 King James Version Bible
16222     16222 King James Version Bible
16223     16223 King James Version Bible
16224     16224 King James Version Bible
16225     16225 King James Version Bible
16226     16226 King James Version Bible
16227     16227 King James Version Bible
16228     16228 King James Version Bible
16229     16229 King James Version Bible
16230     16230 King James Version Bible
16231     16231 King James Version Bible
16232     16232 King James Version Bible
16233     16233 King James Version Bible
16234     16234 King James Version Bible
16235     16235 King James Version Bible
16236     16236 King James Version Bible
16237     16237 King James Version Bible
16238     16238 King James Version Bible
16239     16239 King James Version Bible
16240     16240 King James Version Bible
16241     16241 King James Version Bible
16242     16242 King James Version Bible
16243     16243 King James Version Bible
16244     16244 King James Version Bible
16245     16245 King James Version Bible
16246     16246 King James Version Bible
16247     16247 King James Version Bible
16248     16248 King James Version Bible
16249     16249 King James Version Bible
16250     16250 King James Version Bible
16251     16251 King James Version Bible
16252     16252 King James Version Bible
16253     16253 King James Version Bible
16254     16254 King James Version Bible
16255     16255 King James Version Bible
16256     16256 King James Version Bible
16257     16257 King James Version Bible
16258     16258 King James Version Bible
16259     16259 King James Version Bible
16260     16260 King James Version Bible
16261     16261 King James Version Bible
16262     16262 King James Version Bible
16263     16263 King James Version Bible
16264     16264 King James Version Bible
16265     16265 King James Version Bible
16266     16266 King James Version Bible
16267     16267 King James Version Bible
16268     16268 King James Version Bible
16269     16269 King James Version Bible
16270     16270 King James Version Bible
16271     16271 King James Version Bible
16272     16272 King James Version Bible
16273     16273 King James Version Bible
16274     16274 King James Version Bible
16275     16275 King James Version Bible
16276     16276 King James Version Bible
16277     16277 King James Version Bible
16278     16278 King James Version Bible
16279     16279 King James Version Bible
16280     16280 King James Version Bible
16281     16281 King James Version Bible
16282     16282 King James Version Bible
16283     16283 King James Version Bible
16284     16284 King James Version Bible
16285     16285 King James Version Bible
16286     16286 King James Version Bible
16287     16287 King James Version Bible
16288     16288 King James Version Bible
16289     16289 King James Version Bible
16290     16290 King James Version Bible
16291     16291 King James Version Bible
16292     16292 King James Version Bible
16293     16293 King James Version Bible
16294     16294 King James Version Bible
16295     16295 King James Version Bible
16296     16296 King James Version Bible
16297     16297 King James Version Bible
16298     16298 King James Version Bible
16299     16299 King James Version Bible
16300     16300 King James Version Bible
16301     16301 King James Version Bible
16302     16302 King James Version Bible
16303     16303 King James Version Bible
16304     16304 King James Version Bible
16305     16305 King James Version Bible
16306     16306 King James Version Bible
16307     16307 King James Version Bible
16308     16308 King James Version Bible
16309     16309 King James Version Bible
16310     16310 King James Version Bible
16311     16311 King James Version Bible
16312     16312 King James Version Bible
16313     16313 King James Version Bible
16314     16314 King James Version Bible
16315     16315 King James Version Bible
16316     16316 King James Version Bible
16317     16317 King James Version Bible
16318     16318 King James Version Bible
16319     16319 King James Version Bible
16320     16320 King James Version Bible
16321     16321 King James Version Bible
16322     16322 King James Version Bible
16323     16323 King James Version Bible
16324     16324 King James Version Bible
16325     16325 King James Version Bible
16326     16326 King James Version Bible
16327     16327 King James Version Bible
16328     16328 King James Version Bible
16329     16329 King James Version Bible
16330     16330 King James Version Bible
16331     16331 King James Version Bible
16332     16332 King James Version Bible
16333     16333 King James Version Bible
16334     16334 King James Version Bible
16335     16335 King James Version Bible
16336     16336 King James Version Bible
16337     16337 King James Version Bible
16338     16338 King James Version Bible
16339     16339 King James Version Bible
16340     16340 King James Version Bible
16341     16341 King James Version Bible
16342     16342 King James Version Bible
16343     16343 King James Version Bible
16344     16344 King James Version Bible
16345     16345 King James Version Bible
16346     16346 King James Version Bible
16347     16347 King James Version Bible
16348     16348 King James Version Bible
16349     16349 King James Version Bible
16350     16350 King James Version Bible
16351     16351 King James Version Bible
16352     16352 King James Version Bible
16353     16353 King James Version Bible
16354     16354 King James Version Bible
16355     16355 King James Version Bible
16356     16356 King James Version Bible
16357     16357 King James Version Bible
16358     16358 King James Version Bible
16359     16359 King James Version Bible
16360     16360 King James Version Bible
16361     16361 King James Version Bible
16362     16362 King James Version Bible
16363     16363 King James Version Bible
16364     16364 King James Version Bible
16365     16365 King James Version Bible
16366     16366 King James Version Bible
16367     16367 King James Version Bible
16368     16368 King James Version Bible
16369     16369 King James Version Bible
16370     16370 King James Version Bible
16371     16371 King James Version Bible
16372     16372 King James Version Bible
16373     16373 King James Version Bible
16374     16374 King James Version Bible
16375     16375 King James Version Bible
16376     16376 King James Version Bible
16377     16377 King James Version Bible
16378     16378 King James Version Bible
16379     16379 King James Version Bible
16380     16380 King James Version Bible
16381     16381 King James Version Bible
16382     16382 King James Version Bible
16383     16383 King James Version Bible
16384     16384 King James Version Bible
16385     16385 King James Version Bible
16386     16386 King James Version Bible
16387     16387 King James Version Bible
16388     16388 King James Version Bible
16389     16389 King James Version Bible
16390     16390 King James Version Bible
16391     16391 King James Version Bible
16392     16392 King James Version Bible
16393     16393 King James Version Bible
16394     16394 King James Version Bible
16395     16395 King James Version Bible
16396     16396 King James Version Bible
16397     16397 King James Version Bible
16398     16398 King James Version Bible
16399     16399 King James Version Bible
16400     16400 King James Version Bible
16401     16401 King James Version Bible
16402     16402 King James Version Bible
16403     16403 King James Version Bible
16404     16404 King James Version Bible
16405     16405 King James Version Bible
16406     16406 King James Version Bible
16407     16407 King James Version Bible
16408     16408 King James Version Bible
16409     16409 King James Version Bible
16410     16410 King James Version Bible
16411     16411 King James Version Bible
16412     16412 King James Version Bible
16413     16413 King James Version Bible
16414     16414 King James Version Bible
16415     16415 King James Version Bible
16416     16416 King James Version Bible
16417     16417 King James Version Bible
16418     16418 King James Version Bible
16419     16419 King James Version Bible
16420     16420 King James Version Bible
16421     16421 King James Version Bible
16422     16422 King James Version Bible
16423     16423 King James Version Bible
16424     16424 King James Version Bible
16425     16425 King James Version Bible
16426     16426 King James Version Bible
16427     16427 King James Version Bible
16428     16428 King James Version Bible
16429     16429 King James Version Bible
16430     16430 King James Version Bible
16431     16431 King James Version Bible
16432     16432 King James Version Bible
16433     16433 King James Version Bible
16434     16434 King James Version Bible
16435     16435 King James Version Bible
16436     16436 King James Version Bible
16437     16437 King James Version Bible
16438     16438 King James Version Bible
16439     16439 King James Version Bible
16440     16440 King James Version Bible
16441     16441 King James Version Bible
16442     16442 King James Version Bible
16443     16443 King James Version Bible
16444     16444 King James Version Bible
16445     16445 King James Version Bible
16446     16446 King James Version Bible
16447     16447 King James Version Bible
16448     16448 King James Version Bible
16449     16449 King James Version Bible
16450     16450 King James Version Bible
16451     16451 King James Version Bible
16452     16452 King James Version Bible
16453     16453 King James Version Bible
16454     16454 King James Version Bible
16455     16455 King James Version Bible
16456     16456 King James Version Bible
16457     16457 King James Version Bible
16458     16458 King James Version Bible
16459     16459 King James Version Bible
16460     16460 King James Version Bible
16461     16461 King James Version Bible
16462     16462 King James Version Bible
16463     16463 King James Version Bible
16464     16464 King James Version Bible
16465     16465 King James Version Bible
16466     16466 King James Version Bible
16467     16467 King James Version Bible
16468     16468 King James Version Bible
16469     16469 King James Version Bible
16470     16470 King James Version Bible
16471     16471 King James Version Bible
16472     16472 King James Version Bible
16473     16473 King James Version Bible
16474     16474 King James Version Bible
16475     16475 King James Version Bible
16476     16476 King James Version Bible
16477     16477 King James Version Bible
16478     16478 King James Version Bible
16479     16479 King James Version Bible
16480     16480 King James Version Bible
16481     16481 King James Version Bible
16482     16482 King James Version Bible
16483     16483 King James Version Bible
16484     16484 King James Version Bible
16485     16485 King James Version Bible
16486     16486 King James Version Bible
16487     16487 King James Version Bible
16488     16488 King James Version Bible
16489     16489 King James Version Bible
16490     16490 King James Version Bible
16491     16491 King James Version Bible
16492     16492 King James Version Bible
16493     16493 King James Version Bible
16494     16494 King James Version Bible
16495     16495 King James Version Bible
16496     16496 King James Version Bible
16497     16497 King James Version Bible
16498     16498 King James Version Bible
16499     16499 King James Version Bible
16500     16500 King James Version Bible
16501     16501 King James Version Bible
16502     16502 King James Version Bible
16503     16503 King James Version Bible
16504     16504 King James Version Bible
16505     16505 King James Version Bible
16506     16506 King James Version Bible
16507     16507 King James Version Bible
16508     16508 King James Version Bible
16509     16509 King James Version Bible
16510     16510 King James Version Bible
16511     16511 King James Version Bible
16512     16512 King James Version Bible
16513     16513 King James Version Bible
16514     16514 King James Version Bible
16515     16515 King James Version Bible
16516     16516 King James Version Bible
16517     16517 King James Version Bible
16518     16518 King James Version Bible
16519     16519 King James Version Bible
16520     16520 King James Version Bible
16521     16521 King James Version Bible
16522     16522 King James Version Bible
16523     16523 King James Version Bible
16524     16524 King James Version Bible
16525     16525 King James Version Bible
16526     16526 King James Version Bible
16527     16527 King James Version Bible
16528     16528 King James Version Bible
16529     16529 King James Version Bible
16530     16530 King James Version Bible
16531     16531 King James Version Bible
16532     16532 King James Version Bible
16533     16533 King James Version Bible
16534     16534 King James Version Bible
16535     16535 King James Version Bible
16536     16536 King James Version Bible
16537     16537 King James Version Bible
16538     16538 King James Version Bible
16539     16539 King James Version Bible
16540     16540 King James Version Bible
16541     16541 King James Version Bible
16542     16542 King James Version Bible
16543     16543 King James Version Bible
16544     16544 King James Version Bible
16545     16545 King James Version Bible
16546     16546 King James Version Bible
16547     16547 King James Version Bible
16548     16548 King James Version Bible
16549     16549 King James Version Bible
16550     16550 King James Version Bible
16551     16551 King James Version Bible
16552     16552 King James Version Bible
16553     16553 King James Version Bible
16554     16554 King James Version Bible
16555     16555 King James Version Bible
16556     16556 King James Version Bible
16557     16557 King James Version Bible
16558     16558 King James Version Bible
16559     16559 King James Version Bible
16560     16560 King James Version Bible
16561     16561 King James Version Bible
16562     16562 King James Version Bible
16563     16563 King James Version Bible
16564     16564 King James Version Bible
16565     16565 King James Version Bible
16566     16566 King James Version Bible
16567     16567 King James Version Bible
16568     16568 King James Version Bible
16569     16569 King James Version Bible
16570     16570 King James Version Bible
16571     16571 King James Version Bible
16572     16572 King James Version Bible
16573     16573 King James Version Bible
16574     16574 King James Version Bible
16575     16575 King James Version Bible
16576     16576 King James Version Bible
16577     16577 King James Version Bible
16578     16578 King James Version Bible
16579     16579 King James Version Bible
16580     16580 King James Version Bible
16581     16581 King James Version Bible
16582     16582 King James Version Bible
16583     16583 King James Version Bible
16584     16584 King James Version Bible
16585     16585 King James Version Bible
16586     16586 King James Version Bible
16587     16587 King James Version Bible
16588     16588 King James Version Bible
16589     16589 King James Version Bible
16590     16590 King James Version Bible
16591     16591 King James Version Bible
16592     16592 King James Version Bible
16593     16593 King James Version Bible
16594     16594 King James Version Bible
16595     16595 King James Version Bible
16596     16596 King James Version Bible
16597     16597 King James Version Bible
16598     16598 King James Version Bible
16599     16599 King James Version Bible
16600     16600 King James Version Bible
16601     16601 King James Version Bible
16602     16602 King James Version Bible
16603     16603 King James Version Bible
16604     16604 King James Version Bible
16605     16605 King James Version Bible
16606     16606 King James Version Bible
16607     16607 King James Version Bible
16608     16608 King James Version Bible
16609     16609 King James Version Bible
16610     16610 King James Version Bible
16611     16611 King James Version Bible
16612     16612 King James Version Bible
16613     16613 King James Version Bible
16614     16614 King James Version Bible
16615     16615 King James Version Bible
16616     16616 King James Version Bible
16617     16617 King James Version Bible
16618     16618 King James Version Bible
16619     16619 King James Version Bible
16620     16620 King James Version Bible
16621     16621 King James Version Bible
16622     16622 King James Version Bible
16623     16623 King James Version Bible
16624     16624 King James Version Bible
16625     16625 King James Version Bible
16626     16626 King James Version Bible
16627     16627 King James Version Bible
16628     16628 King James Version Bible
16629     16629 King James Version Bible
16630     16630 King James Version Bible
16631     16631 King James Version Bible
16632     16632 King James Version Bible
16633     16633 King James Version Bible
16634     16634 King James Version Bible
16635     16635 King James Version Bible
16636     16636 King James Version Bible
16637     16637 King James Version Bible
16638     16638 King James Version Bible
16639     16639 King James Version Bible
16640     16640 King James Version Bible
16641     16641 King James Version Bible
16642     16642 King James Version Bible
16643     16643 King James Version Bible
16644     16644 King James Version Bible
16645     16645 King James Version Bible
16646     16646 King James Version Bible
16647     16647 King James Version Bible
16648     16648 King James Version Bible
16649     16649 King James Version Bible
16650     16650 King James Version Bible
16651     16651 King James Version Bible
16652     16652 King James Version Bible
16653     16653 King James Version Bible
16654     16654 King James Version Bible
16655     16655 King James Version Bible
16656     16656 King James Version Bible
16657     16657 King James Version Bible
16658     16658 King James Version Bible
16659     16659 King James Version Bible
16660     16660 King James Version Bible
16661     16661 King James Version Bible
16662     16662 King James Version Bible
16663     16663 King James Version Bible
16664     16664 King James Version Bible
16665     16665 King James Version Bible
16666     16666 King James Version Bible
 [ reached 'max' / getOption("max.print") -- omitted 14437 rows ]
# joining the two datasets to make a combined dataset
holy_books <- quran |>
  full_join(bible) |>
  relocate(book)
Joining with `by = join_by(surah_chapter, ayah_verse, text, overall_n, title)`
holy_books
      book surah_chapter ayah_verse
1       NA             1          1
2       NA             1          2
3       NA             1          3
4       NA             1          4
5       NA             1          5
6       NA             1          6
7       NA             1          7
8       NA             2          1
9       NA             2          2
10      NA             2          3
11      NA             2          4
12      NA             2          5
13      NA             2          6
14      NA             2          7
15      NA             2          8
16      NA             2          9
17      NA             2         10
18      NA             2         11
19      NA             2         12
20      NA             2         13
21      NA             2         14
22      NA             2         15
23      NA             2         16
24      NA             2         17
25      NA             2         18
26      NA             2         19
27      NA             2         20
28      NA             2         21
29      NA             2         22
30      NA             2         23
31      NA             2         24
32      NA             2         25
33      NA             2         26
34      NA             2         27
35      NA             2         28
36      NA             2         29
37      NA             2         30
38      NA             2         31
39      NA             2         32
40      NA             2         33
41      NA             2         34
42      NA             2         35
43      NA             2         36
44      NA             2         37
45      NA             2         38
46      NA             2         39
47      NA             2         40
48      NA             2         41
49      NA             2         42
50      NA             2         43
51      NA             2         44
52      NA             2         45
53      NA             2         46
54      NA             2         47
55      NA             2         48
56      NA             2         49
57      NA             2         50
58      NA             2         51
59      NA             2         52
60      NA             2         53
61      NA             2         54
62      NA             2         55
63      NA             2         56
64      NA             2         57
65      NA             2         58
66      NA             2         59
67      NA             2         60
68      NA             2         61
69      NA             2         62
70      NA             2         63
71      NA             2         64
72      NA             2         65
73      NA             2         66
74      NA             2         67
75      NA             2         68
76      NA             2         69
77      NA             2         70
78      NA             2         71
79      NA             2         72
80      NA             2         73
81      NA             2         74
82      NA             2         75
83      NA             2         76
84      NA             2         77
85      NA             2         78
86      NA             2         79
87      NA             2         80
88      NA             2         81
89      NA             2         82
90      NA             2         83
91      NA             2         84
92      NA             2         85
93      NA             2         86
94      NA             2         87
95      NA             2         88
96      NA             2         89
97      NA             2         90
98      NA             2         91
99      NA             2         92
100     NA             2         93
101     NA             2         94
102     NA             2         95
103     NA             2         96
104     NA             2         97
105     NA             2         98
106     NA             2         99
107     NA             2        100
108     NA             2        101
109     NA             2        102
110     NA             2        103
111     NA             2        104
112     NA             2        105
113     NA             2        106
114     NA             2        107
115     NA             2        108
116     NA             2        109
117     NA             2        110
118     NA             2        111
119     NA             2        112
120     NA             2        113
121     NA             2        114
122     NA             2        115
123     NA             2        116
124     NA             2        117
125     NA             2        118
126     NA             2        119
127     NA             2        120
128     NA             2        121
129     NA             2        122
130     NA             2        123
131     NA             2        124
132     NA             2        125
133     NA             2        126
134     NA             2        127
135     NA             2        128
136     NA             2        129
137     NA             2        130
138     NA             2        131
139     NA             2        132
140     NA             2        133
141     NA             2        134
142     NA             2        135
143     NA             2        136
144     NA             2        137
145     NA             2        138
146     NA             2        139
147     NA             2        140
148     NA             2        141
149     NA             2        142
150     NA             2        143
151     NA             2        144
152     NA             2        145
153     NA             2        146
154     NA             2        147
155     NA             2        148
156     NA             2        149
157     NA             2        150
158     NA             2        151
159     NA             2        152
160     NA             2        153
161     NA             2        154
162     NA             2        155
163     NA             2        156
164     NA             2        157
165     NA             2        158
166     NA             2        159
167     NA             2        160
168     NA             2        161
169     NA             2        162
170     NA             2        163
171     NA             2        164
172     NA             2        165
173     NA             2        166
174     NA             2        167
175     NA             2        168
176     NA             2        169
177     NA             2        170
178     NA             2        171
179     NA             2        172
180     NA             2        173
181     NA             2        174
182     NA             2        175
183     NA             2        176
184     NA             2        177
185     NA             2        178
186     NA             2        179
187     NA             2        180
188     NA             2        181
189     NA             2        182
190     NA             2        183
191     NA             2        184
192     NA             2        185
193     NA             2        186
194     NA             2        187
195     NA             2        188
196     NA             2        189
197     NA             2        190
198     NA             2        191
199     NA             2        192
200     NA             2        193
201     NA             2        194
202     NA             2        195
203     NA             2        196
204     NA             2        197
205     NA             2        198
206     NA             2        199
207     NA             2        200
208     NA             2        201
209     NA             2        202
210     NA             2        203
211     NA             2        204
212     NA             2        205
213     NA             2        206
214     NA             2        207
215     NA             2        208
216     NA             2        209
217     NA             2        210
218     NA             2        211
219     NA             2        212
220     NA             2        213
221     NA             2        214
222     NA             2        215
223     NA             2        216
224     NA             2        217
225     NA             2        218
226     NA             2        219
227     NA             2        220
228     NA             2        221
229     NA             2        222
230     NA             2        223
231     NA             2        224
232     NA             2        225
233     NA             2        226
234     NA             2        227
235     NA             2        228
236     NA             2        229
237     NA             2        230
238     NA             2        231
239     NA             2        232
240     NA             2        233
241     NA             2        234
242     NA             2        235
243     NA             2        236
244     NA             2        237
245     NA             2        238
246     NA             2        239
247     NA             2        240
248     NA             2        241
249     NA             2        242
250     NA             2        243
251     NA             2        244
252     NA             2        245
253     NA             2        246
254     NA             2        247
255     NA             2        248
256     NA             2        249
257     NA             2        250
258     NA             2        251
259     NA             2        252
260     NA             2        253
261     NA             2        254
262     NA             2        255
263     NA             2        256
264     NA             2        257
265     NA             2        258
266     NA             2        259
267     NA             2        260
268     NA             2        261
269     NA             2        262
270     NA             2        263
271     NA             2        264
272     NA             2        265
273     NA             2        266
274     NA             2        267
275     NA             2        268
276     NA             2        269
277     NA             2        270
278     NA             2        271
279     NA             2        272
280     NA             2        273
281     NA             2        274
282     NA             2        275
283     NA             2        276
284     NA             2        277
285     NA             2        278
286     NA             2        279
287     NA             2        280
288     NA             2        281
289     NA             2        282
290     NA             2        283
291     NA             2        284
292     NA             2        285
293     NA             2        286
294     NA             3          1
295     NA             3          2
296     NA             3          3
297     NA             3          4
298     NA             3          5
299     NA             3          6
300     NA             3          7
301     NA             3          8
302     NA             3          9
303     NA             3         10
304     NA             3         11
305     NA             3         12
306     NA             3         13
307     NA             3         14
308     NA             3         15
309     NA             3         16
310     NA             3         17
311     NA             3         18
312     NA             3         19
313     NA             3         20
314     NA             3         21
315     NA             3         22
316     NA             3         23
317     NA             3         24
318     NA             3         25
319     NA             3         26
320     NA             3         27
321     NA             3         28
322     NA             3         29
323     NA             3         30
324     NA             3         31
325     NA             3         32
326     NA             3         33
327     NA             3         34
328     NA             3         35
329     NA             3         36
330     NA             3         37
331     NA             3         38
332     NA             3         39
333     NA             3         40
334     NA             3         41
335     NA             3         42
336     NA             3         43
337     NA             3         44
338     NA             3         45
339     NA             3         46
340     NA             3         47
341     NA             3         48
342     NA             3         49
343     NA             3         50
344     NA             3         51
345     NA             3         52
346     NA             3         53
347     NA             3         54
348     NA             3         55
349     NA             3         56
350     NA             3         57
351     NA             3         58
352     NA             3         59
353     NA             3         60
354     NA             3         61
355     NA             3         62
356     NA             3         63
357     NA             3         64
358     NA             3         65
359     NA             3         66
360     NA             3         67
361     NA             3         68
362     NA             3         69
363     NA             3         70
364     NA             3         71
365     NA             3         72
366     NA             3         73
367     NA             3         74
368     NA             3         75
369     NA             3         76
370     NA             3         77
371     NA             3         78
372     NA             3         79
373     NA             3         80
374     NA             3         81
375     NA             3         82
376     NA             3         83
377     NA             3         84
378     NA             3         85
379     NA             3         86
380     NA             3         87
381     NA             3         88
382     NA             3         89
383     NA             3         90
384     NA             3         91
385     NA             3         92
386     NA             3         93
387     NA             3         94
388     NA             3         95
389     NA             3         96
390     NA             3         97
391     NA             3         98
392     NA             3         99
393     NA             3        100
394     NA             3        101
395     NA             3        102
396     NA             3        103
397     NA             3        104
398     NA             3        105
399     NA             3        106
400     NA             3        107
401     NA             3        108
402     NA             3        109
403     NA             3        110
404     NA             3        111
405     NA             3        112
406     NA             3        113
407     NA             3        114
408     NA             3        115
409     NA             3        116
410     NA             3        117
411     NA             3        118
412     NA             3        119
413     NA             3        120
414     NA             3        121
415     NA             3        122
416     NA             3        123
417     NA             3        124
418     NA             3        125
419     NA             3        126
420     NA             3        127
421     NA             3        128
422     NA             3        129
423     NA             3        130
424     NA             3        131
425     NA             3        132
426     NA             3        133
427     NA             3        134
428     NA             3        135
429     NA             3        136
430     NA             3        137
431     NA             3        138
432     NA             3        139
433     NA             3        140
434     NA             3        141
435     NA             3        142
436     NA             3        143
437     NA             3        144
438     NA             3        145
439     NA             3        146
440     NA             3        147
441     NA             3        148
442     NA             3        149
443     NA             3        150
444     NA             3        151
445     NA             3        152
446     NA             3        153
447     NA             3        154
448     NA             3        155
449     NA             3        156
450     NA             3        157
451     NA             3        158
452     NA             3        159
453     NA             3        160
454     NA             3        161
455     NA             3        162
456     NA             3        163
457     NA             3        164
458     NA             3        165
459     NA             3        166
460     NA             3        167
461     NA             3        168
462     NA             3        169
463     NA             3        170
464     NA             3        171
465     NA             3        172
466     NA             3        173
467     NA             3        174
468     NA             3        175
469     NA             3        176
470     NA             3        177
471     NA             3        178
472     NA             3        179
473     NA             3        180
474     NA             3        181
475     NA             3        182
476     NA             3        183
477     NA             3        184
478     NA             3        185
479     NA             3        186
480     NA             3        187
481     NA             3        188
482     NA             3        189
483     NA             3        190
484     NA             3        191
485     NA             3        192
486     NA             3        193
487     NA             3        194
488     NA             3        195
489     NA             3        196
490     NA             3        197
491     NA             3        198
492     NA             3        199
493     NA             3        200
494     NA             4          1
495     NA             4          2
496     NA             4          3
497     NA             4          4
498     NA             4          5
499     NA             4          6
500     NA             4          7
501     NA             4          8
502     NA             4          9
503     NA             4         10
504     NA             4         11
505     NA             4         12
506     NA             4         13
507     NA             4         14
508     NA             4         15
509     NA             4         16
510     NA             4         17
511     NA             4         18
512     NA             4         19
513     NA             4         20
514     NA             4         21
515     NA             4         22
516     NA             4         23
517     NA             4         24
518     NA             4         25
519     NA             4         26
520     NA             4         27
521     NA             4         28
522     NA             4         29
523     NA             4         30
524     NA             4         31
525     NA             4         32
526     NA             4         33
527     NA             4         34
528     NA             4         35
529     NA             4         36
530     NA             4         37
531     NA             4         38
532     NA             4         39
533     NA             4         40
534     NA             4         41
535     NA             4         42
536     NA             4         43
537     NA             4         44
538     NA             4         45
539     NA             4         46
540     NA             4         47
541     NA             4         48
542     NA             4         49
543     NA             4         50
544     NA             4         51
545     NA             4         52
546     NA             4         53
547     NA             4         54
548     NA             4         55
549     NA             4         56
550     NA             4         57
551     NA             4         58
552     NA             4         59
553     NA             4         60
554     NA             4         61
555     NA             4         62
556     NA             4         63
557     NA             4         64
558     NA             4         65
559     NA             4         66
560     NA             4         67
561     NA             4         68
562     NA             4         69
563     NA             4         70
564     NA             4         71
565     NA             4         72
566     NA             4         73
567     NA             4         74
568     NA             4         75
569     NA             4         76
570     NA             4         77
571     NA             4         78
572     NA             4         79
573     NA             4         80
574     NA             4         81
575     NA             4         82
576     NA             4         83
577     NA             4         84
578     NA             4         85
579     NA             4         86
580     NA             4         87
581     NA             4         88
582     NA             4         89
583     NA             4         90
584     NA             4         91
585     NA             4         92
586     NA             4         93
587     NA             4         94
588     NA             4         95
589     NA             4         96
590     NA             4         97
591     NA             4         98
592     NA             4         99
593     NA             4        100
594     NA             4        101
595     NA             4        102
596     NA             4        103
597     NA             4        104
598     NA             4        105
599     NA             4        106
600     NA             4        107
601     NA             4        108
602     NA             4        109
603     NA             4        110
604     NA             4        111
605     NA             4        112
606     NA             4        113
607     NA             4        114
608     NA             4        115
609     NA             4        116
610     NA             4        117
611     NA             4        118
612     NA             4        119
613     NA             4        120
614     NA             4        121
615     NA             4        122
616     NA             4        123
617     NA             4        124
618     NA             4        125
619     NA             4        126
620     NA             4        127
621     NA             4        128
622     NA             4        129
623     NA             4        130
624     NA             4        131
625     NA             4        132
626     NA             4        133
627     NA             4        134
628     NA             4        135
629     NA             4        136
630     NA             4        137
631     NA             4        138
632     NA             4        139
633     NA             4        140
634     NA             4        141
635     NA             4        142
636     NA             4        143
637     NA             4        144
638     NA             4        145
639     NA             4        146
640     NA             4        147
641     NA             4        148
642     NA             4        149
643     NA             4        150
644     NA             4        151
645     NA             4        152
646     NA             4        153
647     NA             4        154
648     NA             4        155
649     NA             4        156
650     NA             4        157
651     NA             4        158
652     NA             4        159
653     NA             4        160
654     NA             4        161
655     NA             4        162
656     NA             4        163
657     NA             4        164
658     NA             4        165
659     NA             4        166
660     NA             4        167
661     NA             4        168
662     NA             4        169
663     NA             4        170
664     NA             4        171
665     NA             4        172
666     NA             4        173
667     NA             4        174
668     NA             4        175
669     NA             4        176
670     NA             5          1
671     NA             5          2
672     NA             5          3
673     NA             5          4
674     NA             5          5
675     NA             5          6
676     NA             5          7
677     NA             5          8
678     NA             5          9
679     NA             5         10
680     NA             5         11
681     NA             5         12
682     NA             5         13
683     NA             5         14
684     NA             5         15
685     NA             5         16
686     NA             5         17
687     NA             5         18
688     NA             5         19
689     NA             5         20
690     NA             5         21
691     NA             5         22
692     NA             5         23
693     NA             5         24
694     NA             5         25
695     NA             5         26
696     NA             5         27
697     NA             5         28
698     NA             5         29
699     NA             5         30
700     NA             5         31
701     NA             5         32
702     NA             5         33
703     NA             5         34
704     NA             5         35
705     NA             5         36
706     NA             5         37
707     NA             5         38
708     NA             5         39
709     NA             5         40
710     NA             5         41
711     NA             5         42
712     NA             5         43
713     NA             5         44
714     NA             5         45
715     NA             5         46
716     NA             5         47
717     NA             5         48
718     NA             5         49
719     NA             5         50
720     NA             5         51
721     NA             5         52
722     NA             5         53
723     NA             5         54
724     NA             5         55
725     NA             5         56
726     NA             5         57
727     NA             5         58
728     NA             5         59
729     NA             5         60
730     NA             5         61
731     NA             5         62
732     NA             5         63
733     NA             5         64
734     NA             5         65
735     NA             5         66
736     NA             5         67
737     NA             5         68
738     NA             5         69
739     NA             5         70
740     NA             5         71
741     NA             5         72
742     NA             5         73
743     NA             5         74
744     NA             5         75
745     NA             5         76
746     NA             5         77
747     NA             5         78
748     NA             5         79
749     NA             5         80
750     NA             5         81
751     NA             5         82
752     NA             5         83
753     NA             5         84
754     NA             5         85
755     NA             5         86
756     NA             5         87
757     NA             5         88
758     NA             5         89
759     NA             5         90
760     NA             5         91
761     NA             5         92
762     NA             5         93
763     NA             5         94
764     NA             5         95
765     NA             5         96
766     NA             5         97
767     NA             5         98
768     NA             5         99
769     NA             5        100
770     NA             5        101
771     NA             5        102
772     NA             5        103
773     NA             5        104
774     NA             5        105
775     NA             5        106
776     NA             5        107
777     NA             5        108
778     NA             5        109
779     NA             5        110
780     NA             5        111
781     NA             5        112
782     NA             5        113
783     NA             5        114
784     NA             5        115
785     NA             5        116
786     NA             5        117
787     NA             5        118
788     NA             5        119
789     NA             5        120
790     NA             6          1
791     NA             6          2
792     NA             6          3
793     NA             6          4
794     NA             6          5
795     NA             6          6
796     NA             6          7
797     NA             6          8
798     NA             6          9
799     NA             6         10
800     NA             6         11
801     NA             6         12
802     NA             6         13
803     NA             6         14
804     NA             6         15
805     NA             6         16
806     NA             6         17
807     NA             6         18
808     NA             6         19
809     NA             6         20
810     NA             6         21
811     NA             6         22
812     NA             6         23
813     NA             6         24
814     NA             6         25
815     NA             6         26
816     NA             6         27
817     NA             6         28
818     NA             6         29
819     NA             6         30
820     NA             6         31
821     NA             6         32
822     NA             6         33
823     NA             6         34
824     NA             6         35
825     NA             6         36
826     NA             6         37
827     NA             6         38
828     NA             6         39
829     NA             6         40
830     NA             6         41
831     NA             6         42
832     NA             6         43
833     NA             6         44
834     NA             6         45
835     NA             6         46
836     NA             6         47
837     NA             6         48
838     NA             6         49
839     NA             6         50
840     NA             6         51
841     NA             6         52
842     NA             6         53
843     NA             6         54
844     NA             6         55
845     NA             6         56
846     NA             6         57
847     NA             6         58
848     NA             6         59
849     NA             6         60
850     NA             6         61
851     NA             6         62
852     NA             6         63
853     NA             6         64
854     NA             6         65
855     NA             6         66
856     NA             6         67
857     NA             6         68
858     NA             6         69
859     NA             6         70
860     NA             6         71
861     NA             6         72
862     NA             6         73
863     NA             6         74
864     NA             6         75
865     NA             6         76
866     NA             6         77
867     NA             6         78
868     NA             6         79
869     NA             6         80
870     NA             6         81
871     NA             6         82
872     NA             6         83
873     NA             6         84
874     NA             6         85
875     NA             6         86
876     NA             6         87
877     NA             6         88
878     NA             6         89
879     NA             6         90
880     NA             6         91
881     NA             6         92
882     NA             6         93
883     NA             6         94
884     NA             6         95
885     NA             6         96
886     NA             6         97
887     NA             6         98
888     NA             6         99
889     NA             6        100
890     NA             6        101
891     NA             6        102
892     NA             6        103
893     NA             6        104
894     NA             6        105
895     NA             6        106
896     NA             6        107
897     NA             6        108
898     NA             6        109
899     NA             6        110
900     NA             6        111
901     NA             6        112
902     NA             6        113
903     NA             6        114
904     NA             6        115
905     NA             6        116
906     NA             6        117
907     NA             6        118
908     NA             6        119
909     NA             6        120
910     NA             6        121
911     NA             6        122
912     NA             6        123
913     NA             6        124
914     NA             6        125
915     NA             6        126
916     NA             6        127
917     NA             6        128
918     NA             6        129
919     NA             6        130
920     NA             6        131
921     NA             6        132
922     NA             6        133
923     NA             6        134
924     NA             6        135
925     NA             6        136
926     NA             6        137
927     NA             6        138
928     NA             6        139
929     NA             6        140
930     NA             6        141
931     NA             6        142
932     NA             6        143
933     NA             6        144
934     NA             6        145
935     NA             6        146
936     NA             6        147
937     NA             6        148
938     NA             6        149
939     NA             6        150
940     NA             6        151
941     NA             6        152
942     NA             6        153
943     NA             6        154
944     NA             6        155
945     NA             6        156
946     NA             6        157
947     NA             6        158
948     NA             6        159
949     NA             6        160
950     NA             6        161
951     NA             6        162
952     NA             6        163
953     NA             6        164
954     NA             6        165
955     NA             7          1
956     NA             7          2
957     NA             7          3
958     NA             7          4
959     NA             7          5
960     NA             7          6
961     NA             7          7
962     NA             7          8
963     NA             7          9
964     NA             7         10
965     NA             7         11
966     NA             7         12
967     NA             7         13
968     NA             7         14
969     NA             7         15
970     NA             7         16
971     NA             7         17
972     NA             7         18
973     NA             7         19
974     NA             7         20
975     NA             7         21
976     NA             7         22
977     NA             7         23
978     NA             7         24
979     NA             7         25
980     NA             7         26
981     NA             7         27
982     NA             7         28
983     NA             7         29
984     NA             7         30
985     NA             7         31
986     NA             7         32
987     NA             7         33
988     NA             7         34
989     NA             7         35
990     NA             7         36
991     NA             7         37
992     NA             7         38
993     NA             7         39
994     NA             7         40
995     NA             7         41
996     NA             7         42
997     NA             7         43
998     NA             7         44
999     NA             7         45
1000    NA             7         46
1001    NA             7         47
1002    NA             7         48
1003    NA             7         49
1004    NA             7         50
1005    NA             7         51
1006    NA             7         52
1007    NA             7         53
1008    NA             7         54
1009    NA             7         55
1010    NA             7         56
1011    NA             7         57
1012    NA             7         58
1013    NA             7         59
1014    NA             7         60
1015    NA             7         61
1016    NA             7         62
1017    NA             7         63
1018    NA             7         64
1019    NA             7         65
1020    NA             7         66
1021    NA             7         67
1022    NA             7         68
1023    NA             7         69
1024    NA             7         70
1025    NA             7         71
1026    NA             7         72
1027    NA             7         73
1028    NA             7         74
1029    NA             7         75
1030    NA             7         76
1031    NA             7         77
1032    NA             7         78
1033    NA             7         79
1034    NA             7         80
1035    NA             7         81
1036    NA             7         82
1037    NA             7         83
1038    NA             7         84
1039    NA             7         85
1040    NA             7         86
1041    NA             7         87
1042    NA             7         88
1043    NA             7         89
1044    NA             7         90
1045    NA             7         91
1046    NA             7         92
1047    NA             7         93
1048    NA             7         94
1049    NA             7         95
1050    NA             7         96
1051    NA             7         97
1052    NA             7         98
1053    NA             7         99
1054    NA             7        100
1055    NA             7        101
1056    NA             7        102
1057    NA             7        103
1058    NA             7        104
1059    NA             7        105
1060    NA             7        106
1061    NA             7        107
1062    NA             7        108
1063    NA             7        109
1064    NA             7        110
1065    NA             7        111
1066    NA             7        112
1067    NA             7        113
1068    NA             7        114
1069    NA             7        115
1070    NA             7        116
1071    NA             7        117
1072    NA             7        118
1073    NA             7        119
1074    NA             7        120
1075    NA             7        121
1076    NA             7        122
1077    NA             7        123
1078    NA             7        124
1079    NA             7        125
1080    NA             7        126
1081    NA             7        127
1082    NA             7        128
1083    NA             7        129
1084    NA             7        130
1085    NA             7        131
1086    NA             7        132
1087    NA             7        133
1088    NA             7        134
1089    NA             7        135
1090    NA             7        136
1091    NA             7        137
1092    NA             7        138
1093    NA             7        139
1094    NA             7        140
1095    NA             7        141
1096    NA             7        142
1097    NA             7        143
1098    NA             7        144
1099    NA             7        145
1100    NA             7        146
1101    NA             7        147
1102    NA             7        148
1103    NA             7        149
1104    NA             7        150
1105    NA             7        151
1106    NA             7        152
1107    NA             7        153
1108    NA             7        154
1109    NA             7        155
1110    NA             7        156
1111    NA             7        157
1112    NA             7        158
1113    NA             7        159
1114    NA             7        160
1115    NA             7        161
1116    NA             7        162
1117    NA             7        163
1118    NA             7        164
1119    NA             7        165
1120    NA             7        166
1121    NA             7        167
1122    NA             7        168
1123    NA             7        169
1124    NA             7        170
1125    NA             7        171
1126    NA             7        172
1127    NA             7        173
1128    NA             7        174
1129    NA             7        175
1130    NA             7        176
1131    NA             7        177
1132    NA             7        178
1133    NA             7        179
1134    NA             7        180
1135    NA             7        181
1136    NA             7        182
1137    NA             7        183
1138    NA             7        184
1139    NA             7        185
1140    NA             7        186
1141    NA             7        187
1142    NA             7        188
1143    NA             7        189
1144    NA             7        190
1145    NA             7        191
1146    NA             7        192
1147    NA             7        193
1148    NA             7        194
1149    NA             7        195
1150    NA             7        196
1151    NA             7        197
1152    NA             7        198
1153    NA             7        199
1154    NA             7        200
1155    NA             7        201
1156    NA             7        202
1157    NA             7        203
1158    NA             7        204
1159    NA             7        205
1160    NA             7        206
1161    NA             8          1
1162    NA             8          2
1163    NA             8          3
1164    NA             8          4
1165    NA             8          5
1166    NA             8          6
1167    NA             8          7
1168    NA             8          8
1169    NA             8          9
1170    NA             8         10
1171    NA             8         11
1172    NA             8         12
1173    NA             8         13
1174    NA             8         14
1175    NA             8         15
1176    NA             8         16
1177    NA             8         17
1178    NA             8         18
1179    NA             8         19
1180    NA             8         20
1181    NA             8         21
1182    NA             8         22
1183    NA             8         23
1184    NA             8         24
1185    NA             8         25
1186    NA             8         26
1187    NA             8         27
1188    NA             8         28
1189    NA             8         29
1190    NA             8         30
1191    NA             8         31
1192    NA             8         32
1193    NA             8         33
1194    NA             8         34
1195    NA             8         35
1196    NA             8         36
1197    NA             8         37
1198    NA             8         38
1199    NA             8         39
1200    NA             8         40
1201    NA             8         41
1202    NA             8         42
1203    NA             8         43
1204    NA             8         44
1205    NA             8         45
1206    NA             8         46
1207    NA             8         47
1208    NA             8         48
1209    NA             8         49
1210    NA             8         50
1211    NA             8         51
1212    NA             8         52
1213    NA             8         53
1214    NA             8         54
1215    NA             8         55
1216    NA             8         56
1217    NA             8         57
1218    NA             8         58
1219    NA             8         59
1220    NA             8         60
1221    NA             8         61
1222    NA             8         62
1223    NA             8         63
1224    NA             8         64
1225    NA             8         65
1226    NA             8         66
1227    NA             8         67
1228    NA             8         68
1229    NA             8         69
1230    NA             8         70
1231    NA             8         71
1232    NA             8         72
1233    NA             8         73
1234    NA             8         74
1235    NA             8         75
1236    NA             9          1
1237    NA             9          2
1238    NA             9          3
1239    NA             9          4
1240    NA             9          5
1241    NA             9          6
1242    NA             9          7
1243    NA             9          8
1244    NA             9          9
1245    NA             9         10
1246    NA             9         11
1247    NA             9         12
1248    NA             9         13
1249    NA             9         14
1250    NA             9         15
1251    NA             9         16
1252    NA             9         17
1253    NA             9         18
1254    NA             9         19
1255    NA             9         20
1256    NA             9         21
1257    NA             9         22
1258    NA             9         23
1259    NA             9         24
1260    NA             9         25
1261    NA             9         26
1262    NA             9         27
1263    NA             9         28
1264    NA             9         29
1265    NA             9         30
1266    NA             9         31
1267    NA             9         32
1268    NA             9         33
1269    NA             9         34
1270    NA             9         35
1271    NA             9         36
1272    NA             9         37
1273    NA             9         38
1274    NA             9         39
1275    NA             9         40
1276    NA             9         41
1277    NA             9         42
1278    NA             9         43
1279    NA             9         44
1280    NA             9         45
1281    NA             9         46
1282    NA             9         47
1283    NA             9         48
1284    NA             9         49
1285    NA             9         50
1286    NA             9         51
1287    NA             9         52
1288    NA             9         53
1289    NA             9         54
1290    NA             9         55
1291    NA             9         56
1292    NA             9         57
1293    NA             9         58
1294    NA             9         59
1295    NA             9         60
1296    NA             9         61
1297    NA             9         62
1298    NA             9         63
1299    NA             9         64
1300    NA             9         65
1301    NA             9         66
1302    NA             9         67
1303    NA             9         68
1304    NA             9         69
1305    NA             9         70
1306    NA             9         71
1307    NA             9         72
1308    NA             9         73
1309    NA             9         74
1310    NA             9         75
1311    NA             9         76
1312    NA             9         77
1313    NA             9         78
1314    NA             9         79
1315    NA             9         80
1316    NA             9         81
1317    NA             9         82
1318    NA             9         83
1319    NA             9         84
1320    NA             9         85
1321    NA             9         86
1322    NA             9         87
1323    NA             9         88
1324    NA             9         89
1325    NA             9         90
1326    NA             9         91
1327    NA             9         92
1328    NA             9         93
1329    NA             9         94
1330    NA             9         95
1331    NA             9         96
1332    NA             9         97
1333    NA             9         98
1334    NA             9         99
1335    NA             9        100
1336    NA             9        101
1337    NA             9        102
1338    NA             9        103
1339    NA             9        104
1340    NA             9        105
1341    NA             9        106
1342    NA             9        107
1343    NA             9        108
1344    NA             9        109
1345    NA             9        110
1346    NA             9        111
1347    NA             9        112
1348    NA             9        113
1349    NA             9        114
1350    NA             9        115
1351    NA             9        116
1352    NA             9        117
1353    NA             9        118
1354    NA             9        119
1355    NA             9        120
1356    NA             9        121
1357    NA             9        122
1358    NA             9        123
1359    NA             9        124
1360    NA             9        125
1361    NA             9        126
1362    NA             9        127
1363    NA             9        128
1364    NA             9        129
1365    NA            10          1
1366    NA            10          2
1367    NA            10          3
1368    NA            10          4
1369    NA            10          5
1370    NA            10          6
1371    NA            10          7
1372    NA            10          8
1373    NA            10          9
1374    NA            10         10
1375    NA            10         11
1376    NA            10         12
1377    NA            10         13
1378    NA            10         14
1379    NA            10         15
1380    NA            10         16
1381    NA            10         17
1382    NA            10         18
1383    NA            10         19
1384    NA            10         20
1385    NA            10         21
1386    NA            10         22
1387    NA            10         23
1388    NA            10         24
1389    NA            10         25
1390    NA            10         26
1391    NA            10         27
1392    NA            10         28
1393    NA            10         29
1394    NA            10         30
1395    NA            10         31
1396    NA            10         32
1397    NA            10         33
1398    NA            10         34
1399    NA            10         35
1400    NA            10         36
1401    NA            10         37
1402    NA            10         38
1403    NA            10         39
1404    NA            10         40
1405    NA            10         41
1406    NA            10         42
1407    NA            10         43
1408    NA            10         44
1409    NA            10         45
1410    NA            10         46
1411    NA            10         47
1412    NA            10         48
1413    NA            10         49
1414    NA            10         50
1415    NA            10         51
1416    NA            10         52
1417    NA            10         53
1418    NA            10         54
1419    NA            10         55
1420    NA            10         56
1421    NA            10         57
1422    NA            10         58
1423    NA            10         59
1424    NA            10         60
1425    NA            10         61
1426    NA            10         62
1427    NA            10         63
1428    NA            10         64
1429    NA            10         65
1430    NA            10         66
1431    NA            10         67
1432    NA            10         68
1433    NA            10         69
1434    NA            10         70
1435    NA            10         71
1436    NA            10         72
1437    NA            10         73
1438    NA            10         74
1439    NA            10         75
1440    NA            10         76
1441    NA            10         77
1442    NA            10         78
1443    NA            10         79
1444    NA            10         80
1445    NA            10         81
1446    NA            10         82
1447    NA            10         83
1448    NA            10         84
1449    NA            10         85
1450    NA            10         86
1451    NA            10         87
1452    NA            10         88
1453    NA            10         89
1454    NA            10         90
1455    NA            10         91
1456    NA            10         92
1457    NA            10         93
1458    NA            10         94
1459    NA            10         95
1460    NA            10         96
1461    NA            10         97
1462    NA            10         98
1463    NA            10         99
1464    NA            10        100
1465    NA            10        101
1466    NA            10        102
1467    NA            10        103
1468    NA            10        104
1469    NA            10        105
1470    NA            10        106
1471    NA            10        107
1472    NA            10        108
1473    NA            10        109
1474    NA            11          1
1475    NA            11          2
1476    NA            11          3
1477    NA            11          4
1478    NA            11          5
1479    NA            11          6
1480    NA            11          7
1481    NA            11          8
1482    NA            11          9
1483    NA            11         10
1484    NA            11         11
1485    NA            11         12
1486    NA            11         13
1487    NA            11         14
1488    NA            11         15
1489    NA            11         16
1490    NA            11         17
1491    NA            11         18
1492    NA            11         19
1493    NA            11         20
1494    NA            11         21
1495    NA            11         22
1496    NA            11         23
1497    NA            11         24
1498    NA            11         25
1499    NA            11         26
1500    NA            11         27
1501    NA            11         28
1502    NA            11         29
1503    NA            11         30
1504    NA            11         31
1505    NA            11         32
1506    NA            11         33
1507    NA            11         34
1508    NA            11         35
1509    NA            11         36
1510    NA            11         37
1511    NA            11         38
1512    NA            11         39
1513    NA            11         40
1514    NA            11         41
1515    NA            11         42
1516    NA            11         43
1517    NA            11         44
1518    NA            11         45
1519    NA            11         46
1520    NA            11         47
1521    NA            11         48
1522    NA            11         49
1523    NA            11         50
1524    NA            11         51
1525    NA            11         52
1526    NA            11         53
1527    NA            11         54
1528    NA            11         55
1529    NA            11         56
1530    NA            11         57
1531    NA            11         58
1532    NA            11         59
1533    NA            11         60
1534    NA            11         61
1535    NA            11         62
1536    NA            11         63
1537    NA            11         64
1538    NA            11         65
1539    NA            11         66
1540    NA            11         67
1541    NA            11         68
1542    NA            11         69
1543    NA            11         70
1544    NA            11         71
1545    NA            11         72
1546    NA            11         73
1547    NA            11         74
1548    NA            11         75
1549    NA            11         76
1550    NA            11         77
1551    NA            11         78
1552    NA            11         79
1553    NA            11         80
1554    NA            11         81
1555    NA            11         82
1556    NA            11         83
1557    NA            11         84
1558    NA            11         85
1559    NA            11         86
1560    NA            11         87
1561    NA            11         88
1562    NA            11         89
1563    NA            11         90
1564    NA            11         91
1565    NA            11         92
1566    NA            11         93
1567    NA            11         94
1568    NA            11         95
1569    NA            11         96
1570    NA            11         97
1571    NA            11         98
1572    NA            11         99
1573    NA            11        100
1574    NA            11        101
1575    NA            11        102
1576    NA            11        103
1577    NA            11        104
1578    NA            11        105
1579    NA            11        106
1580    NA            11        107
1581    NA            11        108
1582    NA            11        109
1583    NA            11        110
1584    NA            11        111
1585    NA            11        112
1586    NA            11        113
1587    NA            11        114
1588    NA            11        115
1589    NA            11        116
1590    NA            11        117
1591    NA            11        118
1592    NA            11        119
1593    NA            11        120
1594    NA            11        121
1595    NA            11        122
1596    NA            11        123
1597    NA            12          1
1598    NA            12          2
1599    NA            12          3
1600    NA            12          4
1601    NA            12          5
1602    NA            12          6
1603    NA            12          7
1604    NA            12          8
1605    NA            12          9
1606    NA            12         10
1607    NA            12         11
1608    NA            12         12
1609    NA            12         13
1610    NA            12         14
1611    NA            12         15
1612    NA            12         16
1613    NA            12         17
1614    NA            12         18
1615    NA            12         19
1616    NA            12         20
1617    NA            12         21
1618    NA            12         22
1619    NA            12         23
1620    NA            12         24
1621    NA            12         25
1622    NA            12         26
1623    NA            12         27
1624    NA            12         28
1625    NA            12         29
1626    NA            12         30
1627    NA            12         31
1628    NA            12         32
1629    NA            12         33
1630    NA            12         34
1631    NA            12         35
1632    NA            12         36
1633    NA            12         37
1634    NA            12         38
1635    NA            12         39
1636    NA            12         40
1637    NA            12         41
1638    NA            12         42
1639    NA            12         43
1640    NA            12         44
1641    NA            12         45
1642    NA            12         46
1643    NA            12         47
1644    NA            12         48
1645    NA            12         49
1646    NA            12         50
1647    NA            12         51
1648    NA            12         52
1649    NA            12         53
1650    NA            12         54
1651    NA            12         55
1652    NA            12         56
1653    NA            12         57
1654    NA            12         58
1655    NA            12         59
1656    NA            12         60
1657    NA            12         61
1658    NA            12         62
1659    NA            12         63
1660    NA            12         64
1661    NA            12         65
1662    NA            12         66
1663    NA            12         67
1664    NA            12         68
1665    NA            12         69
1666    NA            12         70
1667    NA            12         71
1668    NA            12         72
1669    NA            12         73
1670    NA            12         74
1671    NA            12         75
1672    NA            12         76
1673    NA            12         77
1674    NA            12         78
1675    NA            12         79
1676    NA            12         80
1677    NA            12         81
1678    NA            12         82
1679    NA            12         83
1680    NA            12         84
1681    NA            12         85
1682    NA            12         86
1683    NA            12         87
1684    NA            12         88
1685    NA            12         89
1686    NA            12         90
1687    NA            12         91
1688    NA            12         92
1689    NA            12         93
1690    NA            12         94
1691    NA            12         95
1692    NA            12         96
1693    NA            12         97
1694    NA            12         98
1695    NA            12         99
1696    NA            12        100
1697    NA            12        101
1698    NA            12        102
1699    NA            12        103
1700    NA            12        104
1701    NA            12        105
1702    NA            12        106
1703    NA            12        107
1704    NA            12        108
1705    NA            12        109
1706    NA            12        110
1707    NA            12        111
1708    NA            13          1
1709    NA            13          2
1710    NA            13          3
1711    NA            13          4
1712    NA            13          5
1713    NA            13          6
1714    NA            13          7
1715    NA            13          8
1716    NA            13          9
1717    NA            13         10
1718    NA            13         11
1719    NA            13         12
1720    NA            13         13
1721    NA            13         14
1722    NA            13         15
1723    NA            13         16
1724    NA            13         17
1725    NA            13         18
1726    NA            13         19
1727    NA            13         20
1728    NA            13         21
1729    NA            13         22
1730    NA            13         23
1731    NA            13         24
1732    NA            13         25
1733    NA            13         26
1734    NA            13         27
1735    NA            13         28
1736    NA            13         29
1737    NA            13         30
1738    NA            13         31
1739    NA            13         32
1740    NA            13         33
1741    NA            13         34
1742    NA            13         35
1743    NA            13         36
1744    NA            13         37
1745    NA            13         38
1746    NA            13         39
1747    NA            13         40
1748    NA            13         41
1749    NA            13         42
1750    NA            13         43
1751    NA            14          1
1752    NA            14          2
1753    NA            14          3
1754    NA            14          4
1755    NA            14          5
1756    NA            14          6
1757    NA            14          7
1758    NA            14          8
1759    NA            14          9
1760    NA            14         10
1761    NA            14         11
1762    NA            14         12
1763    NA            14         13
1764    NA            14         14
1765    NA            14         15
1766    NA            14         16
1767    NA            14         17
1768    NA            14         18
1769    NA            14         19
1770    NA            14         20
1771    NA            14         21
1772    NA            14         22
1773    NA            14         23
1774    NA            14         24
1775    NA            14         25
1776    NA            14         26
1777    NA            14         27
1778    NA            14         28
1779    NA            14         29
1780    NA            14         30
1781    NA            14         31
1782    NA            14         32
1783    NA            14         33
1784    NA            14         34
1785    NA            14         35
1786    NA            14         36
1787    NA            14         37
1788    NA            14         38
1789    NA            14         39
1790    NA            14         40
1791    NA            14         41
1792    NA            14         42
1793    NA            14         43
1794    NA            14         44
1795    NA            14         45
1796    NA            14         46
1797    NA            14         47
1798    NA            14         48
1799    NA            14         49
1800    NA            14         50
1801    NA            14         51
1802    NA            14         52
1803    NA            15          1
1804    NA            15          2
1805    NA            15          3
1806    NA            15          4
1807    NA            15          5
1808    NA            15          6
1809    NA            15          7
1810    NA            15          8
1811    NA            15          9
1812    NA            15         10
1813    NA            15         11
1814    NA            15         12
1815    NA            15         13
1816    NA            15         14
1817    NA            15         15
1818    NA            15         16
1819    NA            15         17
1820    NA            15         18
1821    NA            15         19
1822    NA            15         20
1823    NA            15         21
1824    NA            15         22
1825    NA            15         23
1826    NA            15         24
1827    NA            15         25
1828    NA            15         26
1829    NA            15         27
1830    NA            15         28
1831    NA            15         29
1832    NA            15         30
1833    NA            15         31
1834    NA            15         32
1835    NA            15         33
1836    NA            15         34
1837    NA            15         35
1838    NA            15         36
1839    NA            15         37
1840    NA            15         38
1841    NA            15         39
1842    NA            15         40
1843    NA            15         41
1844    NA            15         42
1845    NA            15         43
1846    NA            15         44
1847    NA            15         45
1848    NA            15         46
1849    NA            15         47
1850    NA            15         48
1851    NA            15         49
1852    NA            15         50
1853    NA            15         51
1854    NA            15         52
1855    NA            15         53
1856    NA            15         54
1857    NA            15         55
1858    NA            15         56
1859    NA            15         57
1860    NA            15         58
1861    NA            15         59
1862    NA            15         60
1863    NA            15         61
1864    NA            15         62
1865    NA            15         63
1866    NA            15         64
1867    NA            15         65
1868    NA            15         66
1869    NA            15         67
1870    NA            15         68
1871    NA            15         69
1872    NA            15         70
1873    NA            15         71
1874    NA            15         72
1875    NA            15         73
1876    NA            15         74
1877    NA            15         75
1878    NA            15         76
1879    NA            15         77
1880    NA            15         78
1881    NA            15         79
1882    NA            15         80
1883    NA            15         81
1884    NA            15         82
1885    NA            15         83
1886    NA            15         84
1887    NA            15         85
1888    NA            15         86
1889    NA            15         87
1890    NA            15         88
1891    NA            15         89
1892    NA            15         90
1893    NA            15         91
1894    NA            15         92
1895    NA            15         93
1896    NA            15         94
1897    NA            15         95
1898    NA            15         96
1899    NA            15         97
1900    NA            15         98
1901    NA            15         99
1902    NA            16          1
1903    NA            16          2
1904    NA            16          3
1905    NA            16          4
1906    NA            16          5
1907    NA            16          6
1908    NA            16          7
1909    NA            16          8
1910    NA            16          9
1911    NA            16         10
1912    NA            16         11
1913    NA            16         12
1914    NA            16         13
1915    NA            16         14
1916    NA            16         15
1917    NA            16         16
1918    NA            16         17
1919    NA            16         18
1920    NA            16         19
1921    NA            16         20
1922    NA            16         21
1923    NA            16         22
1924    NA            16         23
1925    NA            16         24
1926    NA            16         25
1927    NA            16         26
1928    NA            16         27
1929    NA            16         28
1930    NA            16         29
1931    NA            16         30
1932    NA            16         31
1933    NA            16         32
1934    NA            16         33
1935    NA            16         34
1936    NA            16         35
1937    NA            16         36
1938    NA            16         37
1939    NA            16         38
1940    NA            16         39
1941    NA            16         40
1942    NA            16         41
1943    NA            16         42
1944    NA            16         43
1945    NA            16         44
1946    NA            16         45
1947    NA            16         46
1948    NA            16         47
1949    NA            16         48
1950    NA            16         49
1951    NA            16         50
1952    NA            16         51
1953    NA            16         52
1954    NA            16         53
1955    NA            16         54
1956    NA            16         55
1957    NA            16         56
1958    NA            16         57
1959    NA            16         58
1960    NA            16         59
1961    NA            16         60
1962    NA            16         61
1963    NA            16         62
1964    NA            16         63
1965    NA            16         64
1966    NA            16         65
1967    NA            16         66
1968    NA            16         67
1969    NA            16         68
1970    NA            16         69
1971    NA            16         70
1972    NA            16         71
1973    NA            16         72
1974    NA            16         73
1975    NA            16         74
1976    NA            16         75
1977    NA            16         76
1978    NA            16         77
1979    NA            16         78
1980    NA            16         79
1981    NA            16         80
1982    NA            16         81
1983    NA            16         82
1984    NA            16         83
1985    NA            16         84
1986    NA            16         85
1987    NA            16         86
1988    NA            16         87
1989    NA            16         88
1990    NA            16         89
1991    NA            16         90
1992    NA            16         91
1993    NA            16         92
1994    NA            16         93
1995    NA            16         94
1996    NA            16         95
1997    NA            16         96
1998    NA            16         97
1999    NA            16         98
2000    NA            16         99
2001    NA            16        100
2002    NA            16        101
2003    NA            16        102
2004    NA            16        103
2005    NA            16        104
2006    NA            16        105
2007    NA            16        106
2008    NA            16        107
2009    NA            16        108
2010    NA            16        109
2011    NA            16        110
2012    NA            16        111
2013    NA            16        112
2014    NA            16        113
2015    NA            16        114
2016    NA            16        115
2017    NA            16        116
2018    NA            16        117
2019    NA            16        118
2020    NA            16        119
2021    NA            16        120
2022    NA            16        121
2023    NA            16        122
2024    NA            16        123
2025    NA            16        124
2026    NA            16        125
2027    NA            16        126
2028    NA            16        127
2029    NA            16        128
2030    NA            17          1
2031    NA            17          2
2032    NA            17          3
2033    NA            17          4
2034    NA            17          5
2035    NA            17          6
2036    NA            17          7
2037    NA            17          8
2038    NA            17          9
2039    NA            17         10
2040    NA            17         11
2041    NA            17         12
2042    NA            17         13
2043    NA            17         14
2044    NA            17         15
2045    NA            17         16
2046    NA            17         17
2047    NA            17         18
2048    NA            17         19
2049    NA            17         20
2050    NA            17         21
2051    NA            17         22
2052    NA            17         23
2053    NA            17         24
2054    NA            17         25
2055    NA            17         26
2056    NA            17         27
2057    NA            17         28
2058    NA            17         29
2059    NA            17         30
2060    NA            17         31
2061    NA            17         32
2062    NA            17         33
2063    NA            17         34
2064    NA            17         35
2065    NA            17         36
2066    NA            17         37
2067    NA            17         38
2068    NA            17         39
2069    NA            17         40
2070    NA            17         41
2071    NA            17         42
2072    NA            17         43
2073    NA            17         44
2074    NA            17         45
2075    NA            17         46
2076    NA            17         47
2077    NA            17         48
2078    NA            17         49
2079    NA            17         50
2080    NA            17         51
2081    NA            17         52
2082    NA            17         53
2083    NA            17         54
2084    NA            17         55
2085    NA            17         56
2086    NA            17         57
2087    NA            17         58
2088    NA            17         59
2089    NA            17         60
2090    NA            17         61
2091    NA            17         62
2092    NA            17         63
2093    NA            17         64
2094    NA            17         65
2095    NA            17         66
2096    NA            17         67
2097    NA            17         68
2098    NA            17         69
2099    NA            17         70
2100    NA            17         71
2101    NA            17         72
2102    NA            17         73
2103    NA            17         74
2104    NA            17         75
2105    NA            17         76
2106    NA            17         77
2107    NA            17         78
2108    NA            17         79
2109    NA            17         80
2110    NA            17         81
2111    NA            17         82
2112    NA            17         83
2113    NA            17         84
2114    NA            17         85
2115    NA            17         86
2116    NA            17         87
2117    NA            17         88
2118    NA            17         89
2119    NA            17         90
2120    NA            17         91
2121    NA            17         92
2122    NA            17         93
2123    NA            17         94
2124    NA            17         95
2125    NA            17         96
2126    NA            17         97
2127    NA            17         98
2128    NA            17         99
2129    NA            17        100
2130    NA            17        101
2131    NA            17        102
2132    NA            17        103
2133    NA            17        104
2134    NA            17        105
2135    NA            17        106
2136    NA            17        107
2137    NA            17        108
2138    NA            17        109
2139    NA            17        110
2140    NA            17        111
2141    NA            18          1
2142    NA            18          2
2143    NA            18          3
2144    NA            18          4
2145    NA            18          5
2146    NA            18          6
2147    NA            18          7
2148    NA            18          8
2149    NA            18          9
2150    NA            18         10
2151    NA            18         11
2152    NA            18         12
2153    NA            18         13
2154    NA            18         14
2155    NA            18         15
2156    NA            18         16
2157    NA            18         17
2158    NA            18         18
2159    NA            18         19
2160    NA            18         20
2161    NA            18         21
2162    NA            18         22
2163    NA            18         23
2164    NA            18         24
2165    NA            18         25
2166    NA            18         26
2167    NA            18         27
2168    NA            18         28
2169    NA            18         29
2170    NA            18         30
2171    NA            18         31
2172    NA            18         32
2173    NA            18         33
2174    NA            18         34
2175    NA            18         35
2176    NA            18         36
2177    NA            18         37
2178    NA            18         38
2179    NA            18         39
2180    NA            18         40
2181    NA            18         41
2182    NA            18         42
2183    NA            18         43
2184    NA            18         44
2185    NA            18         45
2186    NA            18         46
2187    NA            18         47
2188    NA            18         48
2189    NA            18         49
2190    NA            18         50
2191    NA            18         51
2192    NA            18         52
2193    NA            18         53
2194    NA            18         54
2195    NA            18         55
2196    NA            18         56
2197    NA            18         57
2198    NA            18         58
2199    NA            18         59
2200    NA            18         60
2201    NA            18         61
2202    NA            18         62
2203    NA            18         63
2204    NA            18         64
2205    NA            18         65
2206    NA            18         66
2207    NA            18         67
2208    NA            18         68
2209    NA            18         69
2210    NA            18         70
2211    NA            18         71
2212    NA            18         72
2213    NA            18         73
2214    NA            18         74
2215    NA            18         75
2216    NA            18         76
2217    NA            18         77
2218    NA            18         78
2219    NA            18         79
2220    NA            18         80
2221    NA            18         81
2222    NA            18         82
2223    NA            18         83
2224    NA            18         84
2225    NA            18         85
2226    NA            18         86
2227    NA            18         87
2228    NA            18         88
2229    NA            18         89
2230    NA            18         90
2231    NA            18         91
2232    NA            18         92
2233    NA            18         93
2234    NA            18         94
2235    NA            18         95
2236    NA            18         96
2237    NA            18         97
2238    NA            18         98
2239    NA            18         99
2240    NA            18        100
2241    NA            18        101
2242    NA            18        102
2243    NA            18        103
2244    NA            18        104
2245    NA            18        105
2246    NA            18        106
2247    NA            18        107
2248    NA            18        108
2249    NA            18        109
2250    NA            18        110
2251    NA            19          1
2252    NA            19          2
2253    NA            19          3
2254    NA            19          4
2255    NA            19          5
2256    NA            19          6
2257    NA            19          7
2258    NA            19          8
2259    NA            19          9
2260    NA            19         10
2261    NA            19         11
2262    NA            19         12
2263    NA            19         13
2264    NA            19         14
2265    NA            19         15
2266    NA            19         16
2267    NA            19         17
2268    NA            19         18
2269    NA            19         19
2270    NA            19         20
2271    NA            19         21
2272    NA            19         22
2273    NA            19         23
2274    NA            19         24
2275    NA            19         25
2276    NA            19         26
2277    NA            19         27
2278    NA            19         28
2279    NA            19         29
2280    NA            19         30
2281    NA            19         31
2282    NA            19         32
2283    NA            19         33
2284    NA            19         34
2285    NA            19         35
2286    NA            19         36
2287    NA            19         37
2288    NA            19         38
2289    NA            19         39
2290    NA            19         40
2291    NA            19         41
2292    NA            19         42
2293    NA            19         43
2294    NA            19         44
2295    NA            19         45
2296    NA            19         46
2297    NA            19         47
2298    NA            19         48
2299    NA            19         49
2300    NA            19         50
2301    NA            19         51
2302    NA            19         52
2303    NA            19         53
2304    NA            19         54
2305    NA            19         55
2306    NA            19         56
2307    NA            19         57
2308    NA            19         58
2309    NA            19         59
2310    NA            19         60
2311    NA            19         61
2312    NA            19         62
2313    NA            19         63
2314    NA            19         64
2315    NA            19         65
2316    NA            19         66
2317    NA            19         67
2318    NA            19         68
2319    NA            19         69
2320    NA            19         70
2321    NA            19         71
2322    NA            19         72
2323    NA            19         73
2324    NA            19         74
2325    NA            19         75
2326    NA            19         76
2327    NA            19         77
2328    NA            19         78
2329    NA            19         79
2330    NA            19         80
2331    NA            19         81
2332    NA            19         82
2333    NA            19         83
2334    NA            19         84
2335    NA            19         85
2336    NA            19         86
2337    NA            19         87
2338    NA            19         88
2339    NA            19         89
2340    NA            19         90
2341    NA            19         91
2342    NA            19         92
2343    NA            19         93
2344    NA            19         94
2345    NA            19         95
2346    NA            19         96
2347    NA            19         97
2348    NA            19         98
2349    NA            20          1
2350    NA            20          2
2351    NA            20          3
2352    NA            20          4
2353    NA            20          5
2354    NA            20          6
2355    NA            20          7
2356    NA            20          8
2357    NA            20          9
2358    NA            20         10
2359    NA            20         11
2360    NA            20         12
2361    NA            20         13
2362    NA            20         14
2363    NA            20         15
2364    NA            20         16
2365    NA            20         17
2366    NA            20         18
2367    NA            20         19
2368    NA            20         20
2369    NA            20         21
2370    NA            20         22
2371    NA            20         23
2372    NA            20         24
2373    NA            20         25
2374    NA            20         26
2375    NA            20         27
2376    NA            20         28
2377    NA            20         29
2378    NA            20         30
2379    NA            20         31
2380    NA            20         32
2381    NA            20         33
2382    NA            20         34
2383    NA            20         35
2384    NA            20         36
2385    NA            20         37
2386    NA            20         38
2387    NA            20         39
2388    NA            20         40
2389    NA            20         41
2390    NA            20         42
2391    NA            20         43
2392    NA            20         44
2393    NA            20         45
2394    NA            20         46
2395    NA            20         47
2396    NA            20         48
2397    NA            20         49
2398    NA            20         50
2399    NA            20         51
2400    NA            20         52
2401    NA            20         53
2402    NA            20         54
2403    NA            20         55
2404    NA            20         56
2405    NA            20         57
2406    NA            20         58
2407    NA            20         59
2408    NA            20         60
2409    NA            20         61
2410    NA            20         62
2411    NA            20         63
2412    NA            20         64
2413    NA            20         65
2414    NA            20         66
2415    NA            20         67
2416    NA            20         68
2417    NA            20         69
2418    NA            20         70
2419    NA            20         71
2420    NA            20         72
2421    NA            20         73
2422    NA            20         74
2423    NA            20         75
2424    NA            20         76
2425    NA            20         77
2426    NA            20         78
2427    NA            20         79
2428    NA            20         80
2429    NA            20         81
2430    NA            20         82
2431    NA            20         83
2432    NA            20         84
2433    NA            20         85
2434    NA            20         86
2435    NA            20         87
2436    NA            20         88
2437    NA            20         89
2438    NA            20         90
2439    NA            20         91
2440    NA            20         92
2441    NA            20         93
2442    NA            20         94
2443    NA            20         95
2444    NA            20         96
2445    NA            20         97
2446    NA            20         98
2447    NA            20         99
2448    NA            20        100
2449    NA            20        101
2450    NA            20        102
2451    NA            20        103
2452    NA            20        104
2453    NA            20        105
2454    NA            20        106
2455    NA            20        107
2456    NA            20        108
2457    NA            20        109
2458    NA            20        110
2459    NA            20        111
2460    NA            20        112
2461    NA            20        113
2462    NA            20        114
2463    NA            20        115
2464    NA            20        116
2465    NA            20        117
2466    NA            20        118
2467    NA            20        119
2468    NA            20        120
2469    NA            20        121
2470    NA            20        122
2471    NA            20        123
2472    NA            20        124
2473    NA            20        125
2474    NA            20        126
2475    NA            20        127
2476    NA            20        128
2477    NA            20        129
2478    NA            20        130
2479    NA            20        131
2480    NA            20        132
2481    NA            20        133
2482    NA            20        134
2483    NA            20        135
2484    NA            21          1
2485    NA            21          2
2486    NA            21          3
2487    NA            21          4
2488    NA            21          5
2489    NA            21          6
2490    NA            21          7
2491    NA            21          8
2492    NA            21          9
2493    NA            21         10
2494    NA            21         11
2495    NA            21         12
2496    NA            21         13
2497    NA            21         14
2498    NA            21         15
2499    NA            21         16
2500    NA            21         17
2501    NA            21         18
2502    NA            21         19
2503    NA            21         20
2504    NA            21         21
2505    NA            21         22
2506    NA            21         23
2507    NA            21         24
2508    NA            21         25
2509    NA            21         26
2510    NA            21         27
2511    NA            21         28
2512    NA            21         29
2513    NA            21         30
2514    NA            21         31
2515    NA            21         32
2516    NA            21         33
2517    NA            21         34
2518    NA            21         35
2519    NA            21         36
2520    NA            21         37
2521    NA            21         38
2522    NA            21         39
2523    NA            21         40
2524    NA            21         41
2525    NA            21         42
2526    NA            21         43
2527    NA            21         44
2528    NA            21         45
2529    NA            21         46
2530    NA            21         47
2531    NA            21         48
2532    NA            21         49
2533    NA            21         50
2534    NA            21         51
2535    NA            21         52
2536    NA            21         53
2537    NA            21         54
2538    NA            21         55
2539    NA            21         56
2540    NA            21         57
2541    NA            21         58
2542    NA            21         59
2543    NA            21         60
2544    NA            21         61
2545    NA            21         62
2546    NA            21         63
2547    NA            21         64
2548    NA            21         65
2549    NA            21         66
2550    NA            21         67
2551    NA            21         68
2552    NA            21         69
2553    NA            21         70
2554    NA            21         71
2555    NA            21         72
2556    NA            21         73
2557    NA            21         74
2558    NA            21         75
2559    NA            21         76
2560    NA            21         77
2561    NA            21         78
2562    NA            21         79
2563    NA            21         80
2564    NA            21         81
2565    NA            21         82
2566    NA            21         83
2567    NA            21         84
2568    NA            21         85
2569    NA            21         86
2570    NA            21         87
2571    NA            21         88
2572    NA            21         89
2573    NA            21         90
2574    NA            21         91
2575    NA            21         92
2576    NA            21         93
2577    NA            21         94
2578    NA            21         95
2579    NA            21         96
2580    NA            21         97
2581    NA            21         98
2582    NA            21         99
2583    NA            21        100
2584    NA            21        101
2585    NA            21        102
2586    NA            21        103
2587    NA            21        104
2588    NA            21        105
2589    NA            21        106
2590    NA            21        107
2591    NA            21        108
2592    NA            21        109
2593    NA            21        110
2594    NA            21        111
2595    NA            21        112
2596    NA            22          1
2597    NA            22          2
2598    NA            22          3
2599    NA            22          4
2600    NA            22          5
2601    NA            22          6
2602    NA            22          7
2603    NA            22          8
2604    NA            22          9
2605    NA            22         10
2606    NA            22         11
2607    NA            22         12
2608    NA            22         13
2609    NA            22         14
2610    NA            22         15
2611    NA            22         16
2612    NA            22         17
2613    NA            22         18
2614    NA            22         19
2615    NA            22         20
2616    NA            22         21
2617    NA            22         22
2618    NA            22         23
2619    NA            22         24
2620    NA            22         25
2621    NA            22         26
2622    NA            22         27
2623    NA            22         28
2624    NA            22         29
2625    NA            22         30
2626    NA            22         31
2627    NA            22         32
2628    NA            22         33
2629    NA            22         34
2630    NA            22         35
2631    NA            22         36
2632    NA            22         37
2633    NA            22         38
2634    NA            22         39
2635    NA            22         40
2636    NA            22         41
2637    NA            22         42
2638    NA            22         43
2639    NA            22         44
2640    NA            22         45
2641    NA            22         46
2642    NA            22         47
2643    NA            22         48
2644    NA            22         49
2645    NA            22         50
2646    NA            22         51
2647    NA            22         52
2648    NA            22         53
2649    NA            22         54
2650    NA            22         55
2651    NA            22         56
2652    NA            22         57
2653    NA            22         58
2654    NA            22         59
2655    NA            22         60
2656    NA            22         61
2657    NA            22         62
2658    NA            22         63
2659    NA            22         64
2660    NA            22         65
2661    NA            22         66
2662    NA            22         67
2663    NA            22         68
2664    NA            22         69
2665    NA            22         70
2666    NA            22         71
2667    NA            22         72
2668    NA            22         73
2669    NA            22         74
2670    NA            22         75
2671    NA            22         76
2672    NA            22         77
2673    NA            22         78
2674    NA            23          1
2675    NA            23          2
2676    NA            23          3
2677    NA            23          4
2678    NA            23          5
2679    NA            23          6
2680    NA            23          7
2681    NA            23          8
2682    NA            23          9
2683    NA            23         10
2684    NA            23         11
2685    NA            23         12
2686    NA            23         13
2687    NA            23         14
2688    NA            23         15
2689    NA            23         16
2690    NA            23         17
2691    NA            23         18
2692    NA            23         19
2693    NA            23         20
2694    NA            23         21
2695    NA            23         22
2696    NA            23         23
2697    NA            23         24
2698    NA            23         25
2699    NA            23         26
2700    NA            23         27
2701    NA            23         28
2702    NA            23         29
2703    NA            23         30
2704    NA            23         31
2705    NA            23         32
2706    NA            23         33
2707    NA            23         34
2708    NA            23         35
2709    NA            23         36
2710    NA            23         37
2711    NA            23         38
2712    NA            23         39
2713    NA            23         40
2714    NA            23         41
2715    NA            23         42
2716    NA            23         43
2717    NA            23         44
2718    NA            23         45
2719    NA            23         46
2720    NA            23         47
2721    NA            23         48
2722    NA            23         49
2723    NA            23         50
2724    NA            23         51
2725    NA            23         52
2726    NA            23         53
2727    NA            23         54
2728    NA            23         55
2729    NA            23         56
2730    NA            23         57
2731    NA            23         58
2732    NA            23         59
2733    NA            23         60
2734    NA            23         61
2735    NA            23         62
2736    NA            23         63
2737    NA            23         64
2738    NA            23         65
2739    NA            23         66
2740    NA            23         67
2741    NA            23         68
2742    NA            23         69
2743    NA            23         70
2744    NA            23         71
2745    NA            23         72
2746    NA            23         73
2747    NA            23         74
2748    NA            23         75
2749    NA            23         76
2750    NA            23         77
2751    NA            23         78
2752    NA            23         79
2753    NA            23         80
2754    NA            23         81
2755    NA            23         82
2756    NA            23         83
2757    NA            23         84
2758    NA            23         85
2759    NA            23         86
2760    NA            23         87
2761    NA            23         88
2762    NA            23         89
2763    NA            23         90
2764    NA            23         91
2765    NA            23         92
2766    NA            23         93
2767    NA            23         94
2768    NA            23         95
2769    NA            23         96
2770    NA            23         97
2771    NA            23         98
2772    NA            23         99
2773    NA            23        100
2774    NA            23        101
2775    NA            23        102
2776    NA            23        103
2777    NA            23        104
2778    NA            23        105
2779    NA            23        106
2780    NA            23        107
2781    NA            23        108
2782    NA            23        109
2783    NA            23        110
2784    NA            23        111
2785    NA            23        112
2786    NA            23        113
2787    NA            23        114
2788    NA            23        115
2789    NA            23        116
2790    NA            23        117
2791    NA            23        118
2792    NA            24          1
2793    NA            24          2
2794    NA            24          3
2795    NA            24          4
2796    NA            24          5
2797    NA            24          6
2798    NA            24          7
2799    NA            24          8
2800    NA            24          9
2801    NA            24         10
2802    NA            24         11
2803    NA            24         12
2804    NA            24         13
2805    NA            24         14
2806    NA            24         15
2807    NA            24         16
2808    NA            24         17
2809    NA            24         18
2810    NA            24         19
2811    NA            24         20
2812    NA            24         21
2813    NA            24         22
2814    NA            24         23
2815    NA            24         24
2816    NA            24         25
2817    NA            24         26
2818    NA            24         27
2819    NA            24         28
2820    NA            24         29
2821    NA            24         30
2822    NA            24         31
2823    NA            24         32
2824    NA            24         33
2825    NA            24         34
2826    NA            24         35
2827    NA            24         36
2828    NA            24         37
2829    NA            24         38
2830    NA            24         39
2831    NA            24         40
2832    NA            24         41
2833    NA            24         42
2834    NA            24         43
2835    NA            24         44
2836    NA            24         45
2837    NA            24         46
2838    NA            24         47
2839    NA            24         48
2840    NA            24         49
2841    NA            24         50
2842    NA            24         51
2843    NA            24         52
2844    NA            24         53
2845    NA            24         54
2846    NA            24         55
2847    NA            24         56
2848    NA            24         57
2849    NA            24         58
2850    NA            24         59
2851    NA            24         60
2852    NA            24         61
2853    NA            24         62
2854    NA            24         63
2855    NA            24         64
2856    NA            25          1
2857    NA            25          2
2858    NA            25          3
2859    NA            25          4
2860    NA            25          5
2861    NA            25          6
2862    NA            25          7
2863    NA            25          8
2864    NA            25          9
2865    NA            25         10
2866    NA            25         11
2867    NA            25         12
2868    NA            25         13
2869    NA            25         14
2870    NA            25         15
2871    NA            25         16
2872    NA            25         17
2873    NA            25         18
2874    NA            25         19
2875    NA            25         20
2876    NA            25         21
2877    NA            25         22
2878    NA            25         23
2879    NA            25         24
2880    NA            25         25
2881    NA            25         26
2882    NA            25         27
2883    NA            25         28
2884    NA            25         29
2885    NA            25         30
2886    NA            25         31
2887    NA            25         32
2888    NA            25         33
2889    NA            25         34
2890    NA            25         35
2891    NA            25         36
2892    NA            25         37
2893    NA            25         38
2894    NA            25         39
2895    NA            25         40
2896    NA            25         41
2897    NA            25         42
2898    NA            25         43
2899    NA            25         44
2900    NA            25         45
2901    NA            25         46
2902    NA            25         47
2903    NA            25         48
2904    NA            25         49
2905    NA            25         50
2906    NA            25         51
2907    NA            25         52
2908    NA            25         53
2909    NA            25         54
2910    NA            25         55
2911    NA            25         56
2912    NA            25         57
2913    NA            25         58
2914    NA            25         59
2915    NA            25         60
2916    NA            25         61
2917    NA            25         62
2918    NA            25         63
2919    NA            25         64
2920    NA            25         65
2921    NA            25         66
2922    NA            25         67
2923    NA            25         68
2924    NA            25         69
2925    NA            25         70
2926    NA            25         71
2927    NA            25         72
2928    NA            25         73
2929    NA            25         74
2930    NA            25         75
2931    NA            25         76
2932    NA            25         77
2933    NA            26          1
2934    NA            26          2
2935    NA            26          3
2936    NA            26          4
2937    NA            26          5
2938    NA            26          6
2939    NA            26          7
2940    NA            26          8
2941    NA            26          9
2942    NA            26         10
2943    NA            26         11
2944    NA            26         12
2945    NA            26         13
2946    NA            26         14
2947    NA            26         15
2948    NA            26         16
2949    NA            26         17
2950    NA            26         18
2951    NA            26         19
2952    NA            26         20
2953    NA            26         21
2954    NA            26         22
2955    NA            26         23
2956    NA            26         24
2957    NA            26         25
2958    NA            26         26
2959    NA            26         27
2960    NA            26         28
2961    NA            26         29
2962    NA            26         30
2963    NA            26         31
2964    NA            26         32
2965    NA            26         33
2966    NA            26         34
2967    NA            26         35
2968    NA            26         36
2969    NA            26         37
2970    NA            26         38
2971    NA            26         39
2972    NA            26         40
2973    NA            26         41
2974    NA            26         42
2975    NA            26         43
2976    NA            26         44
2977    NA            26         45
2978    NA            26         46
2979    NA            26         47
2980    NA            26         48
2981    NA            26         49
2982    NA            26         50
2983    NA            26         51
2984    NA            26         52
2985    NA            26         53
2986    NA            26         54
2987    NA            26         55
2988    NA            26         56
2989    NA            26         57
2990    NA            26         58
2991    NA            26         59
2992    NA            26         60
2993    NA            26         61
2994    NA            26         62
2995    NA            26         63
2996    NA            26         64
2997    NA            26         65
2998    NA            26         66
2999    NA            26         67
3000    NA            26         68
3001    NA            26         69
3002    NA            26         70
3003    NA            26         71
3004    NA            26         72
3005    NA            26         73
3006    NA            26         74
3007    NA            26         75
3008    NA            26         76
3009    NA            26         77
3010    NA            26         78
3011    NA            26         79
3012    NA            26         80
3013    NA            26         81
3014    NA            26         82
3015    NA            26         83
3016    NA            26         84
3017    NA            26         85
3018    NA            26         86
3019    NA            26         87
3020    NA            26         88
3021    NA            26         89
3022    NA            26         90
3023    NA            26         91
3024    NA            26         92
3025    NA            26         93
3026    NA            26         94
3027    NA            26         95
3028    NA            26         96
3029    NA            26         97
3030    NA            26         98
3031    NA            26         99
3032    NA            26        100
3033    NA            26        101
3034    NA            26        102
3035    NA            26        103
3036    NA            26        104
3037    NA            26        105
3038    NA            26        106
3039    NA            26        107
3040    NA            26        108
3041    NA            26        109
3042    NA            26        110
3043    NA            26        111
3044    NA            26        112
3045    NA            26        113
3046    NA            26        114
3047    NA            26        115
3048    NA            26        116
3049    NA            26        117
3050    NA            26        118
3051    NA            26        119
3052    NA            26        120
3053    NA            26        121
3054    NA            26        122
3055    NA            26        123
3056    NA            26        124
3057    NA            26        125
3058    NA            26        126
3059    NA            26        127
3060    NA            26        128
3061    NA            26        129
3062    NA            26        130
3063    NA            26        131
3064    NA            26        132
3065    NA            26        133
3066    NA            26        134
3067    NA            26        135
3068    NA            26        136
3069    NA            26        137
3070    NA            26        138
3071    NA            26        139
3072    NA            26        140
3073    NA            26        141
3074    NA            26        142
3075    NA            26        143
3076    NA            26        144
3077    NA            26        145
3078    NA            26        146
3079    NA            26        147
3080    NA            26        148
3081    NA            26        149
3082    NA            26        150
3083    NA            26        151
3084    NA            26        152
3085    NA            26        153
3086    NA            26        154
3087    NA            26        155
3088    NA            26        156
3089    NA            26        157
3090    NA            26        158
3091    NA            26        159
3092    NA            26        160
3093    NA            26        161
3094    NA            26        162
3095    NA            26        163
3096    NA            26        164
3097    NA            26        165
3098    NA            26        166
3099    NA            26        167
3100    NA            26        168
3101    NA            26        169
3102    NA            26        170
3103    NA            26        171
3104    NA            26        172
3105    NA            26        173
3106    NA            26        174
3107    NA            26        175
3108    NA            26        176
3109    NA            26        177
3110    NA            26        178
3111    NA            26        179
3112    NA            26        180
3113    NA            26        181
3114    NA            26        182
3115    NA            26        183
3116    NA            26        184
3117    NA            26        185
3118    NA            26        186
3119    NA            26        187
3120    NA            26        188
3121    NA            26        189
3122    NA            26        190
3123    NA            26        191
3124    NA            26        192
3125    NA            26        193
3126    NA            26        194
3127    NA            26        195
3128    NA            26        196
3129    NA            26        197
3130    NA            26        198
3131    NA            26        199
3132    NA            26        200
3133    NA            26        201
3134    NA            26        202
3135    NA            26        203
3136    NA            26        204
3137    NA            26        205
3138    NA            26        206
3139    NA            26        207
3140    NA            26        208
3141    NA            26        209
3142    NA            26        210
3143    NA            26        211
3144    NA            26        212
3145    NA            26        213
3146    NA            26        214
3147    NA            26        215
3148    NA            26        216
3149    NA            26        217
3150    NA            26        218
3151    NA            26        219
3152    NA            26        220
3153    NA            26        221
3154    NA            26        222
3155    NA            26        223
3156    NA            26        224
3157    NA            26        225
3158    NA            26        226
3159    NA            26        227
3160    NA            27          1
3161    NA            27          2
3162    NA            27          3
3163    NA            27          4
3164    NA            27          5
3165    NA            27          6
3166    NA            27          7
3167    NA            27          8
3168    NA            27          9
3169    NA            27         10
3170    NA            27         11
3171    NA            27         12
3172    NA            27         13
3173    NA            27         14
3174    NA            27         15
3175    NA            27         16
3176    NA            27         17
3177    NA            27         18
3178    NA            27         19
3179    NA            27         20
3180    NA            27         21
3181    NA            27         22
3182    NA            27         23
3183    NA            27         24
3184    NA            27         25
3185    NA            27         26
3186    NA            27         27
3187    NA            27         28
3188    NA            27         29
3189    NA            27         30
3190    NA            27         31
3191    NA            27         32
3192    NA            27         33
3193    NA            27         34
3194    NA            27         35
3195    NA            27         36
3196    NA            27         37
3197    NA            27         38
3198    NA            27         39
3199    NA            27         40
3200    NA            27         41
3201    NA            27         42
3202    NA            27         43
3203    NA            27         44
3204    NA            27         45
3205    NA            27         46
3206    NA            27         47
3207    NA            27         48
3208    NA            27         49
3209    NA            27         50
3210    NA            27         51
3211    NA            27         52
3212    NA            27         53
3213    NA            27         54
3214    NA            27         55
3215    NA            27         56
3216    NA            27         57
3217    NA            27         58
3218    NA            27         59
3219    NA            27         60
3220    NA            27         61
3221    NA            27         62
3222    NA            27         63
3223    NA            27         64
3224    NA            27         65
3225    NA            27         66
3226    NA            27         67
3227    NA            27         68
3228    NA            27         69
3229    NA            27         70
3230    NA            27         71
3231    NA            27         72
3232    NA            27         73
3233    NA            27         74
3234    NA            27         75
3235    NA            27         76
3236    NA            27         77
3237    NA            27         78
3238    NA            27         79
3239    NA            27         80
3240    NA            27         81
3241    NA            27         82
3242    NA            27         83
3243    NA            27         84
3244    NA            27         85
3245    NA            27         86
3246    NA            27         87
3247    NA            27         88
3248    NA            27         89
3249    NA            27         90
3250    NA            27         91
3251    NA            27         92
3252    NA            27         93
3253    NA            28          1
3254    NA            28          2
3255    NA            28          3
3256    NA            28          4
3257    NA            28          5
3258    NA            28          6
3259    NA            28          7
3260    NA            28          8
3261    NA            28          9
3262    NA            28         10
3263    NA            28         11
3264    NA            28         12
3265    NA            28         13
3266    NA            28         14
3267    NA            28         15
3268    NA            28         16
3269    NA            28         17
3270    NA            28         18
3271    NA            28         19
3272    NA            28         20
3273    NA            28         21
3274    NA            28         22
3275    NA            28         23
3276    NA            28         24
3277    NA            28         25
3278    NA            28         26
3279    NA            28         27
3280    NA            28         28
3281    NA            28         29
3282    NA            28         30
3283    NA            28         31
3284    NA            28         32
3285    NA            28         33
3286    NA            28         34
3287    NA            28         35
3288    NA            28         36
3289    NA            28         37
3290    NA            28         38
3291    NA            28         39
3292    NA            28         40
3293    NA            28         41
3294    NA            28         42
3295    NA            28         43
3296    NA            28         44
3297    NA            28         45
3298    NA            28         46
3299    NA            28         47
3300    NA            28         48
3301    NA            28         49
3302    NA            28         50
3303    NA            28         51
3304    NA            28         52
3305    NA            28         53
3306    NA            28         54
3307    NA            28         55
3308    NA            28         56
3309    NA            28         57
3310    NA            28         58
3311    NA            28         59
3312    NA            28         60
3313    NA            28         61
3314    NA            28         62
3315    NA            28         63
3316    NA            28         64
3317    NA            28         65
3318    NA            28         66
3319    NA            28         67
3320    NA            28         68
3321    NA            28         69
3322    NA            28         70
3323    NA            28         71
3324    NA            28         72
3325    NA            28         73
3326    NA            28         74
3327    NA            28         75
3328    NA            28         76
3329    NA            28         77
3330    NA            28         78
3331    NA            28         79
3332    NA            28         80
3333    NA            28         81
3334    NA            28         82
3335    NA            28         83
3336    NA            28         84
3337    NA            28         85
3338    NA            28         86
3339    NA            28         87
3340    NA            28         88
3341    NA            29          1
3342    NA            29          2
3343    NA            29          3
3344    NA            29          4
3345    NA            29          5
3346    NA            29          6
3347    NA            29          7
3348    NA            29          8
3349    NA            29          9
3350    NA            29         10
3351    NA            29         11
3352    NA            29         12
3353    NA            29         13
3354    NA            29         14
3355    NA            29         15
3356    NA            29         16
3357    NA            29         17
3358    NA            29         18
3359    NA            29         19
3360    NA            29         20
3361    NA            29         21
3362    NA            29         22
3363    NA            29         23
3364    NA            29         24
3365    NA            29         25
3366    NA            29         26
3367    NA            29         27
3368    NA            29         28
3369    NA            29         29
3370    NA            29         30
3371    NA            29         31
3372    NA            29         32
3373    NA            29         33
3374    NA            29         34
3375    NA            29         35
3376    NA            29         36
3377    NA            29         37
3378    NA            29         38
3379    NA            29         39
3380    NA            29         40
3381    NA            29         41
3382    NA            29         42
3383    NA            29         43
3384    NA            29         44
3385    NA            29         45
3386    NA            29         46
3387    NA            29         47
3388    NA            29         48
3389    NA            29         49
3390    NA            29         50
3391    NA            29         51
3392    NA            29         52
3393    NA            29         53
3394    NA            29         54
3395    NA            29         55
3396    NA            29         56
3397    NA            29         57
3398    NA            29         58
3399    NA            29         59
3400    NA            29         60
3401    NA            29         61
3402    NA            29         62
3403    NA            29         63
3404    NA            29         64
3405    NA            29         65
3406    NA            29         66
3407    NA            29         67
3408    NA            29         68
3409    NA            29         69
3410    NA            30          1
3411    NA            30          2
3412    NA            30          3
3413    NA            30          4
3414    NA            30          5
3415    NA            30          6
3416    NA            30          7
3417    NA            30          8
3418    NA            30          9
3419    NA            30         10
3420    NA            30         11
3421    NA            30         12
3422    NA            30         13
3423    NA            30         14
3424    NA            30         15
3425    NA            30         16
3426    NA            30         17
3427    NA            30         18
3428    NA            30         19
3429    NA            30         20
3430    NA            30         21
3431    NA            30         22
3432    NA            30         23
3433    NA            30         24
3434    NA            30         25
3435    NA            30         26
3436    NA            30         27
3437    NA            30         28
3438    NA            30         29
3439    NA            30         30
3440    NA            30         31
3441    NA            30         32
3442    NA            30         33
3443    NA            30         34
3444    NA            30         35
3445    NA            30         36
3446    NA            30         37
3447    NA            30         38
3448    NA            30         39
3449    NA            30         40
3450    NA            30         41
3451    NA            30         42
3452    NA            30         43
3453    NA            30         44
3454    NA            30         45
3455    NA            30         46
3456    NA            30         47
3457    NA            30         48
3458    NA            30         49
3459    NA            30         50
3460    NA            30         51
3461    NA            30         52
3462    NA            30         53
3463    NA            30         54
3464    NA            30         55
3465    NA            30         56
3466    NA            30         57
3467    NA            30         58
3468    NA            30         59
3469    NA            30         60
3470    NA            31          1
3471    NA            31          2
3472    NA            31          3
3473    NA            31          4
3474    NA            31          5
3475    NA            31          6
3476    NA            31          7
3477    NA            31          8
3478    NA            31          9
3479    NA            31         10
3480    NA            31         11
3481    NA            31         12
3482    NA            31         13
3483    NA            31         14
3484    NA            31         15
3485    NA            31         16
3486    NA            31         17
3487    NA            31         18
3488    NA            31         19
3489    NA            31         20
3490    NA            31         21
3491    NA            31         22
3492    NA            31         23
3493    NA            31         24
3494    NA            31         25
3495    NA            31         26
3496    NA            31         27
3497    NA            31         28
3498    NA            31         29
3499    NA            31         30
3500    NA            31         31
3501    NA            31         32
3502    NA            31         33
3503    NA            31         34
3504    NA            32          1
3505    NA            32          2
3506    NA            32          3
3507    NA            32          4
3508    NA            32          5
3509    NA            32          6
3510    NA            32          7
3511    NA            32          8
3512    NA            32          9
3513    NA            32         10
3514    NA            32         11
3515    NA            32         12
3516    NA            32         13
3517    NA            32         14
3518    NA            32         15
3519    NA            32         16
3520    NA            32         17
3521    NA            32         18
3522    NA            32         19
3523    NA            32         20
3524    NA            32         21
3525    NA            32         22
3526    NA            32         23
3527    NA            32         24
3528    NA            32         25
3529    NA            32         26
3530    NA            32         27
3531    NA            32         28
3532    NA            32         29
3533    NA            32         30
3534    NA            33          1
3535    NA            33          2
3536    NA            33          3
3537    NA            33          4
3538    NA            33          5
3539    NA            33          6
3540    NA            33          7
3541    NA            33          8
3542    NA            33          9
3543    NA            33         10
3544    NA            33         11
3545    NA            33         12
3546    NA            33         13
3547    NA            33         14
3548    NA            33         15
3549    NA            33         16
3550    NA            33         17
3551    NA            33         18
3552    NA            33         19
3553    NA            33         20
3554    NA            33         21
3555    NA            33         22
3556    NA            33         23
3557    NA            33         24
3558    NA            33         25
3559    NA            33         26
3560    NA            33         27
3561    NA            33         28
3562    NA            33         29
3563    NA            33         30
3564    NA            33         31
3565    NA            33         32
3566    NA            33         33
3567    NA            33         34
3568    NA            33         35
3569    NA            33         36
3570    NA            33         37
3571    NA            33         38
3572    NA            33         39
3573    NA            33         40
3574    NA            33         41
3575    NA            33         42
3576    NA            33         43
3577    NA            33         44
3578    NA            33         45
3579    NA            33         46
3580    NA            33         47
3581    NA            33         48
3582    NA            33         49
3583    NA            33         50
3584    NA            33         51
3585    NA            33         52
3586    NA            33         53
3587    NA            33         54
3588    NA            33         55
3589    NA            33         56
3590    NA            33         57
3591    NA            33         58
3592    NA            33         59
3593    NA            33         60
3594    NA            33         61
3595    NA            33         62
3596    NA            33         63
3597    NA            33         64
3598    NA            33         65
3599    NA            33         66
3600    NA            33         67
3601    NA            33         68
3602    NA            33         69
3603    NA            33         70
3604    NA            33         71
3605    NA            33         72
3606    NA            33         73
3607    NA            34          1
3608    NA            34          2
3609    NA            34          3
3610    NA            34          4
3611    NA            34          5
3612    NA            34          6
3613    NA            34          7
3614    NA            34          8
3615    NA            34          9
3616    NA            34         10
3617    NA            34         11
3618    NA            34         12
3619    NA            34         13
3620    NA            34         14
3621    NA            34         15
3622    NA            34         16
3623    NA            34         17
3624    NA            34         18
3625    NA            34         19
3626    NA            34         20
3627    NA            34         21
3628    NA            34         22
3629    NA            34         23
3630    NA            34         24
3631    NA            34         25
3632    NA            34         26
3633    NA            34         27
3634    NA            34         28
3635    NA            34         29
3636    NA            34         30
3637    NA            34         31
3638    NA            34         32
3639    NA            34         33
3640    NA            34         34
3641    NA            34         35
3642    NA            34         36
3643    NA            34         37
3644    NA            34         38
3645    NA            34         39
3646    NA            34         40
3647    NA            34         41
3648    NA            34         42
3649    NA            34         43
3650    NA            34         44
3651    NA            34         45
3652    NA            34         46
3653    NA            34         47
3654    NA            34         48
3655    NA            34         49
3656    NA            34         50
3657    NA            34         51
3658    NA            34         52
3659    NA            34         53
3660    NA            34         54
3661    NA            35          1
3662    NA            35          2
3663    NA            35          3
3664    NA            35          4
3665    NA            35          5
3666    NA            35          6
3667    NA            35          7
3668    NA            35          8
3669    NA            35          9
3670    NA            35         10
3671    NA            35         11
3672    NA            35         12
3673    NA            35         13
3674    NA            35         14
3675    NA            35         15
3676    NA            35         16
3677    NA            35         17
3678    NA            35         18
3679    NA            35         19
3680    NA            35         20
3681    NA            35         21
3682    NA            35         22
3683    NA            35         23
3684    NA            35         24
3685    NA            35         25
3686    NA            35         26
3687    NA            35         27
3688    NA            35         28
3689    NA            35         29
3690    NA            35         30
3691    NA            35         31
3692    NA            35         32
3693    NA            35         33
3694    NA            35         34
3695    NA            35         35
3696    NA            35         36
3697    NA            35         37
3698    NA            35         38
3699    NA            35         39
3700    NA            35         40
3701    NA            35         41
3702    NA            35         42
3703    NA            35         43
3704    NA            35         44
3705    NA            35         45
3706    NA            36          1
3707    NA            36          2
3708    NA            36          3
3709    NA            36          4
3710    NA            36          5
3711    NA            36          6
3712    NA            36          7
3713    NA            36          8
3714    NA            36          9
3715    NA            36         10
3716    NA            36         11
3717    NA            36         12
3718    NA            36         13
3719    NA            36         14
3720    NA            36         15
3721    NA            36         16
3722    NA            36         17
3723    NA            36         18
3724    NA            36         19
3725    NA            36         20
3726    NA            36         21
3727    NA            36         22
3728    NA            36         23
3729    NA            36         24
3730    NA            36         25
3731    NA            36         26
3732    NA            36         27
3733    NA            36         28
3734    NA            36         29
3735    NA            36         30
3736    NA            36         31
3737    NA            36         32
3738    NA            36         33
3739    NA            36         34
3740    NA            36         35
3741    NA            36         36
3742    NA            36         37
3743    NA            36         38
3744    NA            36         39
3745    NA            36         40
3746    NA            36         41
3747    NA            36         42
3748    NA            36         43
3749    NA            36         44
3750    NA            36         45
3751    NA            36         46
3752    NA            36         47
3753    NA            36         48
3754    NA            36         49
3755    NA            36         50
3756    NA            36         51
3757    NA            36         52
3758    NA            36         53
3759    NA            36         54
3760    NA            36         55
3761    NA            36         56
3762    NA            36         57
3763    NA            36         58
3764    NA            36         59
3765    NA            36         60
3766    NA            36         61
3767    NA            36         62
3768    NA            36         63
3769    NA            36         64
3770    NA            36         65
3771    NA            36         66
3772    NA            36         67
3773    NA            36         68
3774    NA            36         69
3775    NA            36         70
3776    NA            36         71
3777    NA            36         72
3778    NA            36         73
3779    NA            36         74
3780    NA            36         75
3781    NA            36         76
3782    NA            36         77
3783    NA            36         78
3784    NA            36         79
3785    NA            36         80
3786    NA            36         81
3787    NA            36         82
3788    NA            36         83
3789    NA            37          1
3790    NA            37          2
3791    NA            37          3
3792    NA            37          4
3793    NA            37          5
3794    NA            37          6
3795    NA            37          7
3796    NA            37          8
3797    NA            37          9
3798    NA            37         10
3799    NA            37         11
3800    NA            37         12
3801    NA            37         13
3802    NA            37         14
3803    NA            37         15
3804    NA            37         16
3805    NA            37         17
3806    NA            37         18
3807    NA            37         19
3808    NA            37         20
3809    NA            37         21
3810    NA            37         22
3811    NA            37         23
3812    NA            37         24
3813    NA            37         25
3814    NA            37         26
3815    NA            37         27
3816    NA            37         28
3817    NA            37         29
3818    NA            37         30
3819    NA            37         31
3820    NA            37         32
3821    NA            37         33
3822    NA            37         34
3823    NA            37         35
3824    NA            37         36
3825    NA            37         37
3826    NA            37         38
3827    NA            37         39
3828    NA            37         40
3829    NA            37         41
3830    NA            37         42
3831    NA            37         43
3832    NA            37         44
3833    NA            37         45
3834    NA            37         46
3835    NA            37         47
3836    NA            37         48
3837    NA            37         49
3838    NA            37         50
3839    NA            37         51
3840    NA            37         52
3841    NA            37         53
3842    NA            37         54
3843    NA            37         55
3844    NA            37         56
3845    NA            37         57
3846    NA            37         58
3847    NA            37         59
3848    NA            37         60
3849    NA            37         61
3850    NA            37         62
3851    NA            37         63
3852    NA            37         64
3853    NA            37         65
3854    NA            37         66
3855    NA            37         67
3856    NA            37         68
3857    NA            37         69
3858    NA            37         70
3859    NA            37         71
3860    NA            37         72
3861    NA            37         73
3862    NA            37         74
3863    NA            37         75
3864    NA            37         76
3865    NA            37         77
3866    NA            37         78
3867    NA            37         79
3868    NA            37         80
3869    NA            37         81
3870    NA            37         82
3871    NA            37         83
3872    NA            37         84
3873    NA            37         85
3874    NA            37         86
3875    NA            37         87
3876    NA            37         88
3877    NA            37         89
3878    NA            37         90
3879    NA            37         91
3880    NA            37         92
3881    NA            37         93
3882    NA            37         94
3883    NA            37         95
3884    NA            37         96
3885    NA            37         97
3886    NA            37         98
3887    NA            37         99
3888    NA            37        100
3889    NA            37        101
3890    NA            37        102
3891    NA            37        103
3892    NA            37        104
3893    NA            37        105
3894    NA            37        106
3895    NA            37        107
3896    NA            37        108
3897    NA            37        109
3898    NA            37        110
3899    NA            37        111
3900    NA            37        112
3901    NA            37        113
3902    NA            37        114
3903    NA            37        115
3904    NA            37        116
3905    NA            37        117
3906    NA            37        118
3907    NA            37        119
3908    NA            37        120
3909    NA            37        121
3910    NA            37        122
3911    NA            37        123
3912    NA            37        124
3913    NA            37        125
3914    NA            37        126
3915    NA            37        127
3916    NA            37        128
3917    NA            37        129
3918    NA            37        130
3919    NA            37        131
3920    NA            37        132
3921    NA            37        133
3922    NA            37        134
3923    NA            37        135
3924    NA            37        136
3925    NA            37        137
3926    NA            37        138
3927    NA            37        139
3928    NA            37        140
3929    NA            37        141
3930    NA            37        142
3931    NA            37        143
3932    NA            37        144
3933    NA            37        145
3934    NA            37        146
3935    NA            37        147
3936    NA            37        148
3937    NA            37        149
3938    NA            37        150
3939    NA            37        151
3940    NA            37        152
3941    NA            37        153
3942    NA            37        154
3943    NA            37        155
3944    NA            37        156
3945    NA            37        157
3946    NA            37        158
3947    NA            37        159
3948    NA            37        160
3949    NA            37        161
3950    NA            37        162
3951    NA            37        163
3952    NA            37        164
3953    NA            37        165
3954    NA            37        166
3955    NA            37        167
3956    NA            37        168
3957    NA            37        169
3958    NA            37        170
3959    NA            37        171
3960    NA            37        172
3961    NA            37        173
3962    NA            37        174
3963    NA            37        175
3964    NA            37        176
3965    NA            37        177
3966    NA            37        178
3967    NA            37        179
3968    NA            37        180
3969    NA            37        181
3970    NA            37        182
3971    NA            38          1
3972    NA            38          2
3973    NA            38          3
3974    NA            38          4
3975    NA            38          5
3976    NA            38          6
3977    NA            38          7
3978    NA            38          8
3979    NA            38          9
3980    NA            38         10
3981    NA            38         11
3982    NA            38         12
3983    NA            38         13
3984    NA            38         14
3985    NA            38         15
3986    NA            38         16
3987    NA            38         17
3988    NA            38         18
3989    NA            38         19
3990    NA            38         20
3991    NA            38         21
3992    NA            38         22
3993    NA            38         23
3994    NA            38         24
3995    NA            38         25
3996    NA            38         26
3997    NA            38         27
3998    NA            38         28
3999    NA            38         29
4000    NA            38         30
4001    NA            38         31
4002    NA            38         32
4003    NA            38         33
4004    NA            38         34
4005    NA            38         35
4006    NA            38         36
4007    NA            38         37
4008    NA            38         38
4009    NA            38         39
4010    NA            38         40
4011    NA            38         41
4012    NA            38         42
4013    NA            38         43
4014    NA            38         44
4015    NA            38         45
4016    NA            38         46
4017    NA            38         47
4018    NA            38         48
4019    NA            38         49
4020    NA            38         50
4021    NA            38         51
4022    NA            38         52
4023    NA            38         53
4024    NA            38         54
4025    NA            38         55
4026    NA            38         56
4027    NA            38         57
4028    NA            38         58
4029    NA            38         59
4030    NA            38         60
4031    NA            38         61
4032    NA            38         62
4033    NA            38         63
4034    NA            38         64
4035    NA            38         65
4036    NA            38         66
4037    NA            38         67
4038    NA            38         68
4039    NA            38         69
4040    NA            38         70
4041    NA            38         71
4042    NA            38         72
4043    NA            38         73
4044    NA            38         74
4045    NA            38         75
4046    NA            38         76
4047    NA            38         77
4048    NA            38         78
4049    NA            38         79
4050    NA            38         80
4051    NA            38         81
4052    NA            38         82
4053    NA            38         83
4054    NA            38         84
4055    NA            38         85
4056    NA            38         86
4057    NA            38         87
4058    NA            38         88
4059    NA            39          1
4060    NA            39          2
4061    NA            39          3
4062    NA            39          4
4063    NA            39          5
4064    NA            39          6
4065    NA            39          7
4066    NA            39          8
4067    NA            39          9
4068    NA            39         10
4069    NA            39         11
4070    NA            39         12
4071    NA            39         13
4072    NA            39         14
4073    NA            39         15
4074    NA            39         16
4075    NA            39         17
4076    NA            39         18
4077    NA            39         19
4078    NA            39         20
4079    NA            39         21
4080    NA            39         22
4081    NA            39         23
4082    NA            39         24
4083    NA            39         25
4084    NA            39         26
4085    NA            39         27
4086    NA            39         28
4087    NA            39         29
4088    NA            39         30
4089    NA            39         31
4090    NA            39         32
4091    NA            39         33
4092    NA            39         34
4093    NA            39         35
4094    NA            39         36
4095    NA            39         37
4096    NA            39         38
4097    NA            39         39
4098    NA            39         40
4099    NA            39         41
4100    NA            39         42
4101    NA            39         43
4102    NA            39         44
4103    NA            39         45
4104    NA            39         46
4105    NA            39         47
4106    NA            39         48
4107    NA            39         49
4108    NA            39         50
4109    NA            39         51
4110    NA            39         52
4111    NA            39         53
4112    NA            39         54
4113    NA            39         55
4114    NA            39         56
4115    NA            39         57
4116    NA            39         58
4117    NA            39         59
4118    NA            39         60
4119    NA            39         61
4120    NA            39         62
4121    NA            39         63
4122    NA            39         64
4123    NA            39         65
4124    NA            39         66
4125    NA            39         67
4126    NA            39         68
4127    NA            39         69
4128    NA            39         70
4129    NA            39         71
4130    NA            39         72
4131    NA            39         73
4132    NA            39         74
4133    NA            39         75
4134    NA            40          1
4135    NA            40          2
4136    NA            40          3
4137    NA            40          4
4138    NA            40          5
4139    NA            40          6
4140    NA            40          7
4141    NA            40          8
4142    NA            40          9
4143    NA            40         10
4144    NA            40         11
4145    NA            40         12
4146    NA            40         13
4147    NA            40         14
4148    NA            40         15
4149    NA            40         16
4150    NA            40         17
4151    NA            40         18
4152    NA            40         19
4153    NA            40         20
4154    NA            40         21
4155    NA            40         22
4156    NA            40         23
4157    NA            40         24
4158    NA            40         25
4159    NA            40         26
4160    NA            40         27
4161    NA            40         28
4162    NA            40         29
4163    NA            40         30
4164    NA            40         31
4165    NA            40         32
4166    NA            40         33
4167    NA            40         34
4168    NA            40         35
4169    NA            40         36
4170    NA            40         37
4171    NA            40         38
4172    NA            40         39
4173    NA            40         40
4174    NA            40         41
4175    NA            40         42
4176    NA            40         43
4177    NA            40         44
4178    NA            40         45
4179    NA            40         46
4180    NA            40         47
4181    NA            40         48
4182    NA            40         49
4183    NA            40         50
4184    NA            40         51
4185    NA            40         52
4186    NA            40         53
4187    NA            40         54
4188    NA            40         55
4189    NA            40         56
4190    NA            40         57
4191    NA            40         58
4192    NA            40         59
4193    NA            40         60
4194    NA            40         61
4195    NA            40         62
4196    NA            40         63
4197    NA            40         64
4198    NA            40         65
4199    NA            40         66
4200    NA            40         67
4201    NA            40         68
4202    NA            40         69
4203    NA            40         70
4204    NA            40         71
4205    NA            40         72
4206    NA            40         73
4207    NA            40         74
4208    NA            40         75
4209    NA            40         76
4210    NA            40         77
4211    NA            40         78
4212    NA            40         79
4213    NA            40         80
4214    NA            40         81
4215    NA            40         82
4216    NA            40         83
4217    NA            40         84
4218    NA            40         85
4219    NA            41          1
4220    NA            41          2
4221    NA            41          3
4222    NA            41          4
4223    NA            41          5
4224    NA            41          6
4225    NA            41          7
4226    NA            41          8
4227    NA            41          9
4228    NA            41         10
4229    NA            41         11
4230    NA            41         12
4231    NA            41         13
4232    NA            41         14
4233    NA            41         15
4234    NA            41         16
4235    NA            41         17
4236    NA            41         18
4237    NA            41         19
4238    NA            41         20
4239    NA            41         21
4240    NA            41         22
4241    NA            41         23
4242    NA            41         24
4243    NA            41         25
4244    NA            41         26
4245    NA            41         27
4246    NA            41         28
4247    NA            41         29
4248    NA            41         30
4249    NA            41         31
4250    NA            41         32
4251    NA            41         33
4252    NA            41         34
4253    NA            41         35
4254    NA            41         36
4255    NA            41         37
4256    NA            41         38
4257    NA            41         39
4258    NA            41         40
4259    NA            41         41
4260    NA            41         42
4261    NA            41         43
4262    NA            41         44
4263    NA            41         45
4264    NA            41         46
4265    NA            41         47
4266    NA            41         48
4267    NA            41         49
4268    NA            41         50
4269    NA            41         51
4270    NA            41         52
4271    NA            41         53
4272    NA            41         54
4273    NA            42          1
4274    NA            42          2
4275    NA            42          3
4276    NA            42          4
4277    NA            42          5
4278    NA            42          6
4279    NA            42          7
4280    NA            42          8
4281    NA            42          9
4282    NA            42         10
4283    NA            42         11
4284    NA            42         12
4285    NA            42         13
4286    NA            42         14
4287    NA            42         15
4288    NA            42         16
4289    NA            42         17
4290    NA            42         18
4291    NA            42         19
4292    NA            42         20
4293    NA            42         21
4294    NA            42         22
4295    NA            42         23
4296    NA            42         24
4297    NA            42         25
4298    NA            42         26
4299    NA            42         27
4300    NA            42         28
4301    NA            42         29
4302    NA            42         30
4303    NA            42         31
4304    NA            42         32
4305    NA            42         33
4306    NA            42         34
4307    NA            42         35
4308    NA            42         36
4309    NA            42         37
4310    NA            42         38
4311    NA            42         39
4312    NA            42         40
4313    NA            42         41
4314    NA            42         42
4315    NA            42         43
4316    NA            42         44
4317    NA            42         45
4318    NA            42         46
4319    NA            42         47
4320    NA            42         48
4321    NA            42         49
4322    NA            42         50
4323    NA            42         51
4324    NA            42         52
4325    NA            42         53
4326    NA            43          1
4327    NA            43          2
4328    NA            43          3
4329    NA            43          4
4330    NA            43          5
4331    NA            43          6
4332    NA            43          7
4333    NA            43          8
4334    NA            43          9
4335    NA            43         10
4336    NA            43         11
4337    NA            43         12
4338    NA            43         13
4339    NA            43         14
4340    NA            43         15
4341    NA            43         16
4342    NA            43         17
4343    NA            43         18
4344    NA            43         19
4345    NA            43         20
4346    NA            43         21
4347    NA            43         22
4348    NA            43         23
4349    NA            43         24
4350    NA            43         25
4351    NA            43         26
4352    NA            43         27
4353    NA            43         28
4354    NA            43         29
4355    NA            43         30
4356    NA            43         31
4357    NA            43         32
4358    NA            43         33
4359    NA            43         34
4360    NA            43         35
4361    NA            43         36
4362    NA            43         37
4363    NA            43         38
4364    NA            43         39
4365    NA            43         40
4366    NA            43         41
4367    NA            43         42
4368    NA            43         43
4369    NA            43         44
4370    NA            43         45
4371    NA            43         46
4372    NA            43         47
4373    NA            43         48
4374    NA            43         49
4375    NA            43         50
4376    NA            43         51
4377    NA            43         52
4378    NA            43         53
4379    NA            43         54
4380    NA            43         55
4381    NA            43         56
4382    NA            43         57
4383    NA            43         58
4384    NA            43         59
4385    NA            43         60
4386    NA            43         61
4387    NA            43         62
4388    NA            43         63
4389    NA            43         64
4390    NA            43         65
4391    NA            43         66
4392    NA            43         67
4393    NA            43         68
4394    NA            43         69
4395    NA            43         70
4396    NA            43         71
4397    NA            43         72
4398    NA            43         73
4399    NA            43         74
4400    NA            43         75
4401    NA            43         76
4402    NA            43         77
4403    NA            43         78
4404    NA            43         79
4405    NA            43         80
4406    NA            43         81
4407    NA            43         82
4408    NA            43         83
4409    NA            43         84
4410    NA            43         85
4411    NA            43         86
4412    NA            43         87
4413    NA            43         88
4414    NA            43         89
4415    NA            44          1
4416    NA            44          2
4417    NA            44          3
4418    NA            44          4
4419    NA            44          5
4420    NA            44          6
4421    NA            44          7
4422    NA            44          8
4423    NA            44          9
4424    NA            44         10
4425    NA            44         11
4426    NA            44         12
4427    NA            44         13
4428    NA            44         14
4429    NA            44         15
4430    NA            44         16
4431    NA            44         17
4432    NA            44         18
4433    NA            44         19
4434    NA            44         20
4435    NA            44         21
4436    NA            44         22
4437    NA            44         23
4438    NA            44         24
4439    NA            44         25
4440    NA            44         26
4441    NA            44         27
4442    NA            44         28
4443    NA            44         29
4444    NA            44         30
4445    NA            44         31
4446    NA            44         32
4447    NA            44         33
4448    NA            44         34
4449    NA            44         35
4450    NA            44         36
4451    NA            44         37
4452    NA            44         38
4453    NA            44         39
4454    NA            44         40
4455    NA            44         41
4456    NA            44         42
4457    NA            44         43
4458    NA            44         44
4459    NA            44         45
4460    NA            44         46
4461    NA            44         47
4462    NA            44         48
4463    NA            44         49
4464    NA            44         50
4465    NA            44         51
4466    NA            44         52
4467    NA            44         53
4468    NA            44         54
4469    NA            44         55
4470    NA            44         56
4471    NA            44         57
4472    NA            44         58
4473    NA            44         59
4474    NA            45          1
4475    NA            45          2
4476    NA            45          3
4477    NA            45          4
4478    NA            45          5
4479    NA            45          6
4480    NA            45          7
4481    NA            45          8
4482    NA            45          9
4483    NA            45         10
4484    NA            45         11
4485    NA            45         12
4486    NA            45         13
4487    NA            45         14
4488    NA            45         15
4489    NA            45         16
4490    NA            45         17
4491    NA            45         18
4492    NA            45         19
4493    NA            45         20
4494    NA            45         21
4495    NA            45         22
4496    NA            45         23
4497    NA            45         24
4498    NA            45         25
4499    NA            45         26
4500    NA            45         27
4501    NA            45         28
4502    NA            45         29
4503    NA            45         30
4504    NA            45         31
4505    NA            45         32
4506    NA            45         33
4507    NA            45         34
4508    NA            45         35
4509    NA            45         36
4510    NA            45         37
4511    NA            46          1
4512    NA            46          2
4513    NA            46          3
4514    NA            46          4
4515    NA            46          5
4516    NA            46          6
4517    NA            46          7
4518    NA            46          8
4519    NA            46          9
4520    NA            46         10
4521    NA            46         11
4522    NA            46         12
4523    NA            46         13
4524    NA            46         14
4525    NA            46         15
4526    NA            46         16
4527    NA            46         17
4528    NA            46         18
4529    NA            46         19
4530    NA            46         20
4531    NA            46         21
4532    NA            46         22
4533    NA            46         23
4534    NA            46         24
4535    NA            46         25
4536    NA            46         26
4537    NA            46         27
4538    NA            46         28
4539    NA            46         29
4540    NA            46         30
4541    NA            46         31
4542    NA            46         32
4543    NA            46         33
4544    NA            46         34
4545    NA            46         35
4546    NA            47          1
4547    NA            47          2
4548    NA            47          3
4549    NA            47          4
4550    NA            47          5
4551    NA            47          6
4552    NA            47          7
4553    NA            47          8
4554    NA            47          9
4555    NA            47         10
4556    NA            47         11
4557    NA            47         12
4558    NA            47         13
4559    NA            47         14
4560    NA            47         15
4561    NA            47         16
4562    NA            47         17
4563    NA            47         18
4564    NA            47         19
4565    NA            47         20
4566    NA            47         21
4567    NA            47         22
4568    NA            47         23
4569    NA            47         24
4570    NA            47         25
4571    NA            47         26
4572    NA            47         27
4573    NA            47         28
4574    NA            47         29
4575    NA            47         30
4576    NA            47         31
4577    NA            47         32
4578    NA            47         33
4579    NA            47         34
4580    NA            47         35
4581    NA            47         36
4582    NA            47         37
4583    NA            47         38
4584    NA            48          1
4585    NA            48          2
4586    NA            48          3
4587    NA            48          4
4588    NA            48          5
4589    NA            48          6
4590    NA            48          7
4591    NA            48          8
4592    NA            48          9
4593    NA            48         10
4594    NA            48         11
4595    NA            48         12
4596    NA            48         13
4597    NA            48         14
4598    NA            48         15
4599    NA            48         16
4600    NA            48         17
4601    NA            48         18
4602    NA            48         19
4603    NA            48         20
4604    NA            48         21
4605    NA            48         22
4606    NA            48         23
4607    NA            48         24
4608    NA            48         25
4609    NA            48         26
4610    NA            48         27
4611    NA            48         28
4612    NA            48         29
4613    NA            49          1
4614    NA            49          2
4615    NA            49          3
4616    NA            49          4
4617    NA            49          5
4618    NA            49          6
4619    NA            49          7
4620    NA            49          8
4621    NA            49          9
4622    NA            49         10
4623    NA            49         11
4624    NA            49         12
4625    NA            49         13
4626    NA            49         14
4627    NA            49         15
4628    NA            49         16
4629    NA            49         17
4630    NA            49         18
4631    NA            50          1
4632    NA            50          2
4633    NA            50          3
4634    NA            50          4
4635    NA            50          5
4636    NA            50          6
4637    NA            50          7
4638    NA            50          8
4639    NA            50          9
4640    NA            50         10
4641    NA            50         11
4642    NA            50         12
4643    NA            50         13
4644    NA            50         14
4645    NA            50         15
4646    NA            50         16
4647    NA            50         17
4648    NA            50         18
4649    NA            50         19
4650    NA            50         20
4651    NA            50         21
4652    NA            50         22
4653    NA            50         23
4654    NA            50         24
4655    NA            50         25
4656    NA            50         26
4657    NA            50         27
4658    NA            50         28
4659    NA            50         29
4660    NA            50         30
4661    NA            50         31
4662    NA            50         32
4663    NA            50         33
4664    NA            50         34
4665    NA            50         35
4666    NA            50         36
4667    NA            50         37
4668    NA            50         38
4669    NA            50         39
4670    NA            50         40
4671    NA            50         41
4672    NA            50         42
4673    NA            50         43
4674    NA            50         44
4675    NA            50         45
4676    NA            51          1
4677    NA            51          2
4678    NA            51          3
4679    NA            51          4
4680    NA            51          5
4681    NA            51          6
4682    NA            51          7
4683    NA            51          8
4684    NA            51          9
4685    NA            51         10
4686    NA            51         11
4687    NA            51         12
4688    NA            51         13
4689    NA            51         14
4690    NA            51         15
4691    NA            51         16
4692    NA            51         17
4693    NA            51         18
4694    NA            51         19
4695    NA            51         20
4696    NA            51         21
4697    NA            51         22
4698    NA            51         23
4699    NA            51         24
4700    NA            51         25
4701    NA            51         26
4702    NA            51         27
4703    NA            51         28
4704    NA            51         29
4705    NA            51         30
4706    NA            51         31
4707    NA            51         32
4708    NA            51         33
4709    NA            51         34
4710    NA            51         35
4711    NA            51         36
4712    NA            51         37
4713    NA            51         38
4714    NA            51         39
4715    NA            51         40
4716    NA            51         41
4717    NA            51         42
4718    NA            51         43
4719    NA            51         44
4720    NA            51         45
4721    NA            51         46
4722    NA            51         47
4723    NA            51         48
4724    NA            51         49
4725    NA            51         50
4726    NA            51         51
4727    NA            51         52
4728    NA            51         53
4729    NA            51         54
4730    NA            51         55
4731    NA            51         56
4732    NA            51         57
4733    NA            51         58
4734    NA            51         59
4735    NA            51         60
4736    NA            52          1
4737    NA            52          2
4738    NA            52          3
4739    NA            52          4
4740    NA            52          5
4741    NA            52          6
4742    NA            52          7
4743    NA            52          8
4744    NA            52          9
4745    NA            52         10
4746    NA            52         11
4747    NA            52         12
4748    NA            52         13
4749    NA            52         14
4750    NA            52         15
4751    NA            52         16
4752    NA            52         17
4753    NA            52         18
4754    NA            52         19
4755    NA            52         20
4756    NA            52         21
4757    NA            52         22
4758    NA            52         23
4759    NA            52         24
4760    NA            52         25
4761    NA            52         26
4762    NA            52         27
4763    NA            52         28
4764    NA            52         29
4765    NA            52         30
4766    NA            52         31
4767    NA            52         32
4768    NA            52         33
4769    NA            52         34
4770    NA            52         35
4771    NA            52         36
4772    NA            52         37
4773    NA            52         38
4774    NA            52         39
4775    NA            52         40
4776    NA            52         41
4777    NA            52         42
4778    NA            52         43
4779    NA            52         44
4780    NA            52         45
4781    NA            52         46
4782    NA            52         47
4783    NA            52         48
4784    NA            52         49
4785    NA            53          1
4786    NA            53          2
4787    NA            53          3
4788    NA            53          4
4789    NA            53          5
4790    NA            53          6
4791    NA            53          7
4792    NA            53          8
4793    NA            53          9
4794    NA            53         10
4795    NA            53         11
4796    NA            53         12
4797    NA            53         13
4798    NA            53         14
4799    NA            53         15
4800    NA            53         16
4801    NA            53         17
4802    NA            53         18
4803    NA            53         19
4804    NA            53         20
4805    NA            53         21
4806    NA            53         22
4807    NA            53         23
4808    NA            53         24
4809    NA            53         25
4810    NA            53         26
4811    NA            53         27
4812    NA            53         28
4813    NA            53         29
4814    NA            53         30
4815    NA            53         31
4816    NA            53         32
4817    NA            53         33
4818    NA            53         34
4819    NA            53         35
4820    NA            53         36
4821    NA            53         37
4822    NA            53         38
4823    NA            53         39
4824    NA            53         40
4825    NA            53         41
4826    NA            53         42
4827    NA            53         43
4828    NA            53         44
4829    NA            53         45
4830    NA            53         46
4831    NA            53         47
4832    NA            53         48
4833    NA            53         49
4834    NA            53         50
4835    NA            53         51
4836    NA            53         52
4837    NA            53         53
4838    NA            53         54
4839    NA            53         55
4840    NA            53         56
4841    NA            53         57
4842    NA            53         58
4843    NA            53         59
4844    NA            53         60
4845    NA            53         61
4846    NA            53         62
4847    NA            54          1
4848    NA            54          2
4849    NA            54          3
4850    NA            54          4
4851    NA            54          5
4852    NA            54          6
4853    NA            54          7
4854    NA            54          8
4855    NA            54          9
4856    NA            54         10
4857    NA            54         11
4858    NA            54         12
4859    NA            54         13
4860    NA            54         14
4861    NA            54         15
4862    NA            54         16
4863    NA            54         17
4864    NA            54         18
4865    NA            54         19
4866    NA            54         20
4867    NA            54         21
4868    NA            54         22
4869    NA            54         23
4870    NA            54         24
4871    NA            54         25
4872    NA            54         26
4873    NA            54         27
4874    NA            54         28
4875    NA            54         29
4876    NA            54         30
4877    NA            54         31
4878    NA            54         32
4879    NA            54         33
4880    NA            54         34
4881    NA            54         35
4882    NA            54         36
4883    NA            54         37
4884    NA            54         38
4885    NA            54         39
4886    NA            54         40
4887    NA            54         41
4888    NA            54         42
4889    NA            54         43
4890    NA            54         44
4891    NA            54         45
4892    NA            54         46
4893    NA            54         47
4894    NA            54         48
4895    NA            54         49
4896    NA            54         50
4897    NA            54         51
4898    NA            54         52
4899    NA            54         53
4900    NA            54         54
4901    NA            54         55
4902    NA            55          1
4903    NA            55          2
4904    NA            55          3
4905    NA            55          4
4906    NA            55          5
4907    NA            55          6
4908    NA            55          7
4909    NA            55          8
4910    NA            55          9
4911    NA            55         10
4912    NA            55         11
4913    NA            55         12
4914    NA            55         13
4915    NA            55         14
4916    NA            55         15
4917    NA            55         16
4918    NA            55         17
4919    NA            55         18
4920    NA            55         19
4921    NA            55         20
4922    NA            55         21
4923    NA            55         22
4924    NA            55         23
4925    NA            55         24
4926    NA            55         25
4927    NA            55         26
4928    NA            55         27
4929    NA            55         28
4930    NA            55         29
4931    NA            55         30
4932    NA            55         31
4933    NA            55         32
4934    NA            55         33
4935    NA            55         34
4936    NA            55         35
4937    NA            55         36
4938    NA            55         37
4939    NA            55         38
4940    NA            55         39
4941    NA            55         40
4942    NA            55         41
4943    NA            55         42
4944    NA            55         43
4945    NA            55         44
4946    NA            55         45
4947    NA            55         46
4948    NA            55         47
4949    NA            55         48
4950    NA            55         49
4951    NA            55         50
4952    NA            55         51
4953    NA            55         52
4954    NA            55         53
4955    NA            55         54
4956    NA            55         55
4957    NA            55         56
4958    NA            55         57
4959    NA            55         58
4960    NA            55         59
4961    NA            55         60
4962    NA            55         61
4963    NA            55         62
4964    NA            55         63
4965    NA            55         64
4966    NA            55         65
4967    NA            55         66
4968    NA            55         67
4969    NA            55         68
4970    NA            55         69
4971    NA            55         70
4972    NA            55         71
4973    NA            55         72
4974    NA            55         73
4975    NA            55         74
4976    NA            55         75
4977    NA            55         76
4978    NA            55         77
4979    NA            55         78
4980    NA            56          1
4981    NA            56          2
4982    NA            56          3
4983    NA            56          4
4984    NA            56          5
4985    NA            56          6
4986    NA            56          7
4987    NA            56          8
4988    NA            56          9
4989    NA            56         10
4990    NA            56         11
4991    NA            56         12
4992    NA            56         13
4993    NA            56         14
4994    NA            56         15
4995    NA            56         16
4996    NA            56         17
4997    NA            56         18
4998    NA            56         19
4999    NA            56         20
5000    NA            56         21
5001    NA            56         22
5002    NA            56         23
5003    NA            56         24
5004    NA            56         25
5005    NA            56         26
5006    NA            56         27
5007    NA            56         28
5008    NA            56         29
5009    NA            56         30
5010    NA            56         31
5011    NA            56         32
5012    NA            56         33
5013    NA            56         34
5014    NA            56         35
5015    NA            56         36
5016    NA            56         37
5017    NA            56         38
5018    NA            56         39
5019    NA            56         40
5020    NA            56         41
5021    NA            56         42
5022    NA            56         43
5023    NA            56         44
5024    NA            56         45
5025    NA            56         46
5026    NA            56         47
5027    NA            56         48
5028    NA            56         49
5029    NA            56         50
5030    NA            56         51
5031    NA            56         52
5032    NA            56         53
5033    NA            56         54
5034    NA            56         55
5035    NA            56         56
5036    NA            56         57
5037    NA            56         58
5038    NA            56         59
5039    NA            56         60
5040    NA            56         61
5041    NA            56         62
5042    NA            56         63
5043    NA            56         64
5044    NA            56         65
5045    NA            56         66
5046    NA            56         67
5047    NA            56         68
5048    NA            56         69
5049    NA            56         70
5050    NA            56         71
5051    NA            56         72
5052    NA            56         73
5053    NA            56         74
5054    NA            56         75
5055    NA            56         76
5056    NA            56         77
5057    NA            56         78
5058    NA            56         79
5059    NA            56         80
5060    NA            56         81
5061    NA            56         82
5062    NA            56         83
5063    NA            56         84
5064    NA            56         85
5065    NA            56         86
5066    NA            56         87
5067    NA            56         88
5068    NA            56         89
5069    NA            56         90
5070    NA            56         91
5071    NA            56         92
5072    NA            56         93
5073    NA            56         94
5074    NA            56         95
5075    NA            56         96
5076    NA            57          1
5077    NA            57          2
5078    NA            57          3
5079    NA            57          4
5080    NA            57          5
5081    NA            57          6
5082    NA            57          7
5083    NA            57          8
5084    NA            57          9
5085    NA            57         10
5086    NA            57         11
5087    NA            57         12
5088    NA            57         13
5089    NA            57         14
5090    NA            57         15
5091    NA            57         16
5092    NA            57         17
5093    NA            57         18
5094    NA            57         19
5095    NA            57         20
5096    NA            57         21
5097    NA            57         22
5098    NA            57         23
5099    NA            57         24
5100    NA            57         25
5101    NA            57         26
5102    NA            57         27
5103    NA            57         28
5104    NA            57         29
5105    NA            58          1
5106    NA            58          2
5107    NA            58          3
5108    NA            58          4
5109    NA            58          5
5110    NA            58          6
5111    NA            58          7
5112    NA            58          8
5113    NA            58          9
5114    NA            58         10
5115    NA            58         11
5116    NA            58         12
5117    NA            58         13
5118    NA            58         14
5119    NA            58         15
5120    NA            58         16
5121    NA            58         17
5122    NA            58         18
5123    NA            58         19
5124    NA            58         20
5125    NA            58         21
5126    NA            58         22
5127    NA            59          1
5128    NA            59          2
5129    NA            59          3
5130    NA            59          4
5131    NA            59          5
5132    NA            59          6
5133    NA            59          7
5134    NA            59          8
5135    NA            59          9
5136    NA            59         10
5137    NA            59         11
5138    NA            59         12
5139    NA            59         13
5140    NA            59         14
5141    NA            59         15
5142    NA            59         16
5143    NA            59         17
5144    NA            59         18
5145    NA            59         19
5146    NA            59         20
5147    NA            59         21
5148    NA            59         22
5149    NA            59         23
5150    NA            59         24
5151    NA            60          1
5152    NA            60          2
5153    NA            60          3
5154    NA            60          4
5155    NA            60          5
5156    NA            60          6
5157    NA            60          7
5158    NA            60          8
5159    NA            60          9
5160    NA            60         10
5161    NA            60         11
5162    NA            60         12
5163    NA            60         13
5164    NA            61          1
5165    NA            61          2
5166    NA            61          3
5167    NA            61          4
5168    NA            61          5
5169    NA            61          6
5170    NA            61          7
5171    NA            61          8
5172    NA            61          9
5173    NA            61         10
5174    NA            61         11
5175    NA            61         12
5176    NA            61         13
5177    NA            61         14
5178    NA            62          1
5179    NA            62          2
5180    NA            62          3
5181    NA            62          4
5182    NA            62          5
5183    NA            62          6
5184    NA            62          7
5185    NA            62          8
5186    NA            62          9
5187    NA            62         10
5188    NA            62         11
5189    NA            63          1
5190    NA            63          2
5191    NA            63          3
5192    NA            63          4
5193    NA            63          5
5194    NA            63          6
5195    NA            63          7
5196    NA            63          8
5197    NA            63          9
5198    NA            63         10
5199    NA            63         11
5200    NA            64          1
5201    NA            64          2
5202    NA            64          3
5203    NA            64          4
5204    NA            64          5
5205    NA            64          6
5206    NA            64          7
5207    NA            64          8
5208    NA            64          9
5209    NA            64         10
5210    NA            64         11
5211    NA            64         12
5212    NA            64         13
5213    NA            64         14
5214    NA            64         15
5215    NA            64         16
5216    NA            64         17
5217    NA            64         18
5218    NA            65          1
5219    NA            65          2
5220    NA            65          3
5221    NA            65          4
5222    NA            65          5
5223    NA            65          6
5224    NA            65          7
5225    NA            65          8
5226    NA            65          9
5227    NA            65         10
5228    NA            65         11
5229    NA            65         12
5230    NA            66          1
5231    NA            66          2
5232    NA            66          3
5233    NA            66          4
5234    NA            66          5
5235    NA            66          6
5236    NA            66          7
5237    NA            66          8
5238    NA            66          9
5239    NA            66         10
5240    NA            66         11
5241    NA            66         12
5242    NA            67          1
5243    NA            67          2
5244    NA            67          3
5245    NA            67          4
5246    NA            67          5
5247    NA            67          6
5248    NA            67          7
5249    NA            67          8
5250    NA            67          9
5251    NA            67         10
5252    NA            67         11
5253    NA            67         12
5254    NA            67         13
5255    NA            67         14
5256    NA            67         15
5257    NA            67         16
5258    NA            67         17
5259    NA            67         18
5260    NA            67         19
5261    NA            67         20
5262    NA            67         21
5263    NA            67         22
5264    NA            67         23
5265    NA            67         24
5266    NA            67         25
5267    NA            67         26
5268    NA            67         27
5269    NA            67         28
5270    NA            67         29
5271    NA            67         30
5272    NA            68          1
5273    NA            68          2
5274    NA            68          3
5275    NA            68          4
5276    NA            68          5
5277    NA            68          6
5278    NA            68          7
5279    NA            68          8
5280    NA            68          9
5281    NA            68         10
5282    NA            68         11
5283    NA            68         12
5284    NA            68         13
5285    NA            68         14
5286    NA            68         15
5287    NA            68         16
5288    NA            68         17
5289    NA            68         18
5290    NA            68         19
5291    NA            68         20
5292    NA            68         21
5293    NA            68         22
5294    NA            68         23
5295    NA            68         24
5296    NA            68         25
5297    NA            68         26
5298    NA            68         27
5299    NA            68         28
5300    NA            68         29
5301    NA            68         30
5302    NA            68         31
5303    NA            68         32
5304    NA            68         33
5305    NA            68         34
5306    NA            68         35
5307    NA            68         36
5308    NA            68         37
5309    NA            68         38
5310    NA            68         39
5311    NA            68         40
5312    NA            68         41
5313    NA            68         42
5314    NA            68         43
5315    NA            68         44
5316    NA            68         45
5317    NA            68         46
5318    NA            68         47
5319    NA            68         48
5320    NA            68         49
5321    NA            68         50
5322    NA            68         51
5323    NA            68         52
5324    NA            69          1
5325    NA            69          2
5326    NA            69          3
5327    NA            69          4
5328    NA            69          5
5329    NA            69          6
5330    NA            69          7
5331    NA            69          8
5332    NA            69          9
5333    NA            69         10
5334    NA            69         11
5335    NA            69         12
5336    NA            69         13
5337    NA            69         14
5338    NA            69         15
5339    NA            69         16
5340    NA            69         17
5341    NA            69         18
5342    NA            69         19
5343    NA            69         20
5344    NA            69         21
5345    NA            69         22
5346    NA            69         23
5347    NA            69         24
5348    NA            69         25
5349    NA            69         26
5350    NA            69         27
5351    NA            69         28
5352    NA            69         29
5353    NA            69         30
5354    NA            69         31
5355    NA            69         32
5356    NA            69         33
5357    NA            69         34
5358    NA            69         35
5359    NA            69         36
5360    NA            69         37
5361    NA            69         38
5362    NA            69         39
5363    NA            69         40
5364    NA            69         41
5365    NA            69         42
5366    NA            69         43
5367    NA            69         44
5368    NA            69         45
5369    NA            69         46
5370    NA            69         47
5371    NA            69         48
5372    NA            69         49
5373    NA            69         50
5374    NA            69         51
5375    NA            69         52
5376    NA            70          1
5377    NA            70          2
5378    NA            70          3
5379    NA            70          4
5380    NA            70          5
5381    NA            70          6
5382    NA            70          7
5383    NA            70          8
5384    NA            70          9
5385    NA            70         10
5386    NA            70         11
5387    NA            70         12
5388    NA            70         13
5389    NA            70         14
5390    NA            70         15
5391    NA            70         16
5392    NA            70         17
5393    NA            70         18
5394    NA            70         19
5395    NA            70         20
5396    NA            70         21
5397    NA            70         22
5398    NA            70         23
5399    NA            70         24
5400    NA            70         25
5401    NA            70         26
5402    NA            70         27
5403    NA            70         28
5404    NA            70         29
5405    NA            70         30
5406    NA            70         31
5407    NA            70         32
5408    NA            70         33
5409    NA            70         34
5410    NA            70         35
5411    NA            70         36
5412    NA            70         37
5413    NA            70         38
5414    NA            70         39
5415    NA            70         40
5416    NA            70         41
5417    NA            70         42
5418    NA            70         43
5419    NA            70         44
5420    NA            71          1
5421    NA            71          2
5422    NA            71          3
5423    NA            71          4
5424    NA            71          5
5425    NA            71          6
5426    NA            71          7
5427    NA            71          8
5428    NA            71          9
5429    NA            71         10
5430    NA            71         11
5431    NA            71         12
5432    NA            71         13
5433    NA            71         14
5434    NA            71         15
5435    NA            71         16
5436    NA            71         17
5437    NA            71         18
5438    NA            71         19
5439    NA            71         20
5440    NA            71         21
5441    NA            71         22
5442    NA            71         23
5443    NA            71         24
5444    NA            71         25
5445    NA            71         26
5446    NA            71         27
5447    NA            71         28
5448    NA            72          1
5449    NA            72          2
5450    NA            72          3
5451    NA            72          4
5452    NA            72          5
5453    NA            72          6
5454    NA            72          7
5455    NA            72          8
5456    NA            72          9
5457    NA            72         10
5458    NA            72         11
5459    NA            72         12
5460    NA            72         13
5461    NA            72         14
5462    NA            72         15
5463    NA            72         16
5464    NA            72         17
5465    NA            72         18
5466    NA            72         19
5467    NA            72         20
5468    NA            72         21
5469    NA            72         22
5470    NA            72         23
5471    NA            72         24
5472    NA            72         25
5473    NA            72         26
5474    NA            72         27
5475    NA            72         28
5476    NA            73          1
5477    NA            73          2
5478    NA            73          3
5479    NA            73          4
5480    NA            73          5
5481    NA            73          6
5482    NA            73          7
5483    NA            73          8
5484    NA            73          9
5485    NA            73         10
5486    NA            73         11
5487    NA            73         12
5488    NA            73         13
5489    NA            73         14
5490    NA            73         15
5491    NA            73         16
5492    NA            73         17
5493    NA            73         18
5494    NA            73         19
5495    NA            73         20
5496    NA            74          1
5497    NA            74          2
5498    NA            74          3
5499    NA            74          4
5500    NA            74          5
5501    NA            74          6
5502    NA            74          7
5503    NA            74          8
5504    NA            74          9
5505    NA            74         10
5506    NA            74         11
5507    NA            74         12
5508    NA            74         13
5509    NA            74         14
5510    NA            74         15
5511    NA            74         16
5512    NA            74         17
5513    NA            74         18
5514    NA            74         19
5515    NA            74         20
5516    NA            74         21
5517    NA            74         22
5518    NA            74         23
5519    NA            74         24
5520    NA            74         25
5521    NA            74         26
5522    NA            74         27
5523    NA            74         28
5524    NA            74         29
5525    NA            74         30
5526    NA            74         31
5527    NA            74         32
5528    NA            74         33
5529    NA            74         34
5530    NA            74         35
5531    NA            74         36
5532    NA            74         37
5533    NA            74         38
5534    NA            74         39
5535    NA            74         40
5536    NA            74         41
5537    NA            74         42
5538    NA            74         43
5539    NA            74         44
5540    NA            74         45
5541    NA            74         46
5542    NA            74         47
5543    NA            74         48
5544    NA            74         49
5545    NA            74         50
5546    NA            74         51
5547    NA            74         52
5548    NA            74         53
5549    NA            74         54
5550    NA            74         55
5551    NA            74         56
5552    NA            75          1
5553    NA            75          2
5554    NA            75          3
5555    NA            75          4
5556    NA            75          5
5557    NA            75          6
5558    NA            75          7
5559    NA            75          8
5560    NA            75          9
5561    NA            75         10
5562    NA            75         11
5563    NA            75         12
5564    NA            75         13
5565    NA            75         14
5566    NA            75         15
5567    NA            75         16
5568    NA            75         17
5569    NA            75         18
5570    NA            75         19
5571    NA            75         20
5572    NA            75         21
5573    NA            75         22
5574    NA            75         23
5575    NA            75         24
5576    NA            75         25
5577    NA            75         26
5578    NA            75         27
5579    NA            75         28
5580    NA            75         29
5581    NA            75         30
5582    NA            75         31
5583    NA            75         32
5584    NA            75         33
5585    NA            75         34
5586    NA            75         35
5587    NA            75         36
5588    NA            75         37
5589    NA            75         38
5590    NA            75         39
5591    NA            75         40
5592    NA            76          1
5593    NA            76          2
5594    NA            76          3
5595    NA            76          4
5596    NA            76          5
5597    NA            76          6
5598    NA            76          7
5599    NA            76          8
5600    NA            76          9
5601    NA            76         10
5602    NA            76         11
5603    NA            76         12
5604    NA            76         13
5605    NA            76         14
5606    NA            76         15
5607    NA            76         16
5608    NA            76         17
5609    NA            76         18
5610    NA            76         19
5611    NA            76         20
5612    NA            76         21
5613    NA            76         22
5614    NA            76         23
5615    NA            76         24
5616    NA            76         25
5617    NA            76         26
5618    NA            76         27
5619    NA            76         28
5620    NA            76         29
5621    NA            76         30
5622    NA            76         31
5623    NA            77          1
5624    NA            77          2
5625    NA            77          3
5626    NA            77          4
5627    NA            77          5
5628    NA            77          6
5629    NA            77          7
5630    NA            77          8
5631    NA            77          9
5632    NA            77         10
5633    NA            77         11
5634    NA            77         12
5635    NA            77         13
5636    NA            77         14
5637    NA            77         15
5638    NA            77         16
5639    NA            77         17
5640    NA            77         18
5641    NA            77         19
5642    NA            77         20
5643    NA            77         21
5644    NA            77         22
5645    NA            77         23
5646    NA            77         24
5647    NA            77         25
5648    NA            77         26
5649    NA            77         27
5650    NA            77         28
5651    NA            77         29
5652    NA            77         30
5653    NA            77         31
5654    NA            77         32
5655    NA            77         33
5656    NA            77         34
5657    NA            77         35
5658    NA            77         36
5659    NA            77         37
5660    NA            77         38
5661    NA            77         39
5662    NA            77         40
5663    NA            77         41
5664    NA            77         42
5665    NA            77         43
5666    NA            77         44
5667    NA            77         45
5668    NA            77         46
5669    NA            77         47
5670    NA            77         48
5671    NA            77         49
5672    NA            77         50
5673    NA            78          1
5674    NA            78          2
5675    NA            78          3
5676    NA            78          4
5677    NA            78          5
5678    NA            78          6
5679    NA            78          7
5680    NA            78          8
5681    NA            78          9
5682    NA            78         10
5683    NA            78         11
5684    NA            78         12
5685    NA            78         13
5686    NA            78         14
5687    NA            78         15
5688    NA            78         16
5689    NA            78         17
5690    NA            78         18
5691    NA            78         19
5692    NA            78         20
5693    NA            78         21
5694    NA            78         22
5695    NA            78         23
5696    NA            78         24
5697    NA            78         25
5698    NA            78         26
5699    NA            78         27
5700    NA            78         28
5701    NA            78         29
5702    NA            78         30
5703    NA            78         31
5704    NA            78         32
5705    NA            78         33
5706    NA            78         34
5707    NA            78         35
5708    NA            78         36
5709    NA            78         37
5710    NA            78         38
5711    NA            78         39
5712    NA            78         40
5713    NA            79          1
5714    NA            79          2
5715    NA            79          3
5716    NA            79          4
5717    NA            79          5
5718    NA            79          6
5719    NA            79          7
5720    NA            79          8
5721    NA            79          9
5722    NA            79         10
5723    NA            79         11
5724    NA            79         12
5725    NA            79         13
5726    NA            79         14
5727    NA            79         15
5728    NA            79         16
5729    NA            79         17
5730    NA            79         18
5731    NA            79         19
5732    NA            79         20
5733    NA            79         21
5734    NA            79         22
5735    NA            79         23
5736    NA            79         24
5737    NA            79         25
5738    NA            79         26
5739    NA            79         27
5740    NA            79         28
5741    NA            79         29
5742    NA            79         30
5743    NA            79         31
5744    NA            79         32
5745    NA            79         33
5746    NA            79         34
5747    NA            79         35
5748    NA            79         36
5749    NA            79         37
5750    NA            79         38
5751    NA            79         39
5752    NA            79         40
5753    NA            79         41
5754    NA            79         42
5755    NA            79         43
5756    NA            79         44
5757    NA            79         45
5758    NA            79         46
5759    NA            80          1
5760    NA            80          2
5761    NA            80          3
5762    NA            80          4
5763    NA            80          5
5764    NA            80          6
5765    NA            80          7
5766    NA            80          8
5767    NA            80          9
5768    NA            80         10
5769    NA            80         11
5770    NA            80         12
5771    NA            80         13
5772    NA            80         14
5773    NA            80         15
5774    NA            80         16
5775    NA            80         17
5776    NA            80         18
5777    NA            80         19
5778    NA            80         20
5779    NA            80         21
5780    NA            80         22
5781    NA            80         23
5782    NA            80         24
5783    NA            80         25
5784    NA            80         26
5785    NA            80         27
5786    NA            80         28
5787    NA            80         29
5788    NA            80         30
5789    NA            80         31
5790    NA            80         32
5791    NA            80         33
5792    NA            80         34
5793    NA            80         35
5794    NA            80         36
5795    NA            80         37
5796    NA            80         38
5797    NA            80         39
5798    NA            80         40
5799    NA            80         41
5800    NA            80         42
5801    NA            81          1
5802    NA            81          2
5803    NA            81          3
5804    NA            81          4
5805    NA            81          5
5806    NA            81          6
5807    NA            81          7
5808    NA            81          8
5809    NA            81          9
5810    NA            81         10
5811    NA            81         11
5812    NA            81         12
5813    NA            81         13
5814    NA            81         14
5815    NA            81         15
5816    NA            81         16
5817    NA            81         17
5818    NA            81         18
5819    NA            81         19
5820    NA            81         20
5821    NA            81         21
5822    NA            81         22
5823    NA            81         23
5824    NA            81         24
5825    NA            81         25
5826    NA            81         26
5827    NA            81         27
5828    NA            81         28
5829    NA            81         29
5830    NA            82          1
5831    NA            82          2
5832    NA            82          3
5833    NA            82          4
5834    NA            82          5
5835    NA            82          6
5836    NA            82          7
5837    NA            82          8
5838    NA            82          9
5839    NA            82         10
5840    NA            82         11
5841    NA            82         12
5842    NA            82         13
5843    NA            82         14
5844    NA            82         15
5845    NA            82         16
5846    NA            82         17
5847    NA            82         18
5848    NA            82         19
5849    NA            83          1
5850    NA            83          2
5851    NA            83          3
5852    NA            83          4
5853    NA            83          5
5854    NA            83          6
5855    NA            83          7
5856    NA            83          8
5857    NA            83          9
5858    NA            83         10
5859    NA            83         11
5860    NA            83         12
5861    NA            83         13
5862    NA            83         14
5863    NA            83         15
5864    NA            83         16
5865    NA            83         17
5866    NA            83         18
5867    NA            83         19
5868    NA            83         20
5869    NA            83         21
5870    NA            83         22
5871    NA            83         23
5872    NA            83         24
5873    NA            83         25
5874    NA            83         26
5875    NA            83         27
5876    NA            83         28
5877    NA            83         29
5878    NA            83         30
5879    NA            83         31
5880    NA            83         32
5881    NA            83         33
5882    NA            83         34
5883    NA            83         35
5884    NA            83         36
5885    NA            84          1
5886    NA            84          2
5887    NA            84          3
5888    NA            84          4
5889    NA            84          5
5890    NA            84          6
5891    NA            84          7
5892    NA            84          8
5893    NA            84          9
5894    NA            84         10
5895    NA            84         11
5896    NA            84         12
5897    NA            84         13
5898    NA            84         14
5899    NA            84         15
5900    NA            84         16
5901    NA            84         17
5902    NA            84         18
5903    NA            84         19
5904    NA            84         20
5905    NA            84         21
5906    NA            84         22
5907    NA            84         23
5908    NA            84         24
5909    NA            84         25
5910    NA            85          1
5911    NA            85          2
5912    NA            85          3
5913    NA            85          4
5914    NA            85          5
5915    NA            85          6
5916    NA            85          7
5917    NA            85          8
5918    NA            85          9
5919    NA            85         10
5920    NA            85         11
5921    NA            85         12
5922    NA            85         13
5923    NA            85         14
5924    NA            85         15
5925    NA            85         16
5926    NA            85         17
5927    NA            85         18
5928    NA            85         19
5929    NA            85         20
5930    NA            85         21
5931    NA            85         22
5932    NA            86          1
5933    NA            86          2
5934    NA            86          3
5935    NA            86          4
5936    NA            86          5
5937    NA            86          6
5938    NA            86          7
5939    NA            86          8
5940    NA            86          9
5941    NA            86         10
5942    NA            86         11
5943    NA            86         12
5944    NA            86         13
5945    NA            86         14
5946    NA            86         15
5947    NA            86         16
5948    NA            86         17
5949    NA            87          1
5950    NA            87          2
5951    NA            87          3
5952    NA            87          4
5953    NA            87          5
5954    NA            87          6
5955    NA            87          7
5956    NA            87          8
5957    NA            87          9
5958    NA            87         10
5959    NA            87         11
5960    NA            87         12
5961    NA            87         13
5962    NA            87         14
5963    NA            87         15
5964    NA            87         16
5965    NA            87         17
5966    NA            87         18
5967    NA            87         19
5968    NA            88          1
5969    NA            88          2
5970    NA            88          3
5971    NA            88          4
5972    NA            88          5
5973    NA            88          6
5974    NA            88          7
5975    NA            88          8
5976    NA            88          9
5977    NA            88         10
5978    NA            88         11
5979    NA            88         12
5980    NA            88         13
5981    NA            88         14
5982    NA            88         15
5983    NA            88         16
5984    NA            88         17
5985    NA            88         18
5986    NA            88         19
5987    NA            88         20
5988    NA            88         21
5989    NA            88         22
5990    NA            88         23
5991    NA            88         24
5992    NA            88         25
5993    NA            88         26
5994    NA            89          1
5995    NA            89          2
5996    NA            89          3
5997    NA            89          4
5998    NA            89          5
5999    NA            89          6
6000    NA            89          7
6001    NA            89          8
6002    NA            89          9
6003    NA            89         10
6004    NA            89         11
6005    NA            89         12
6006    NA            89         13
6007    NA            89         14
6008    NA            89         15
6009    NA            89         16
6010    NA            89         17
6011    NA            89         18
6012    NA            89         19
6013    NA            89         20
6014    NA            89         21
6015    NA            89         22
6016    NA            89         23
6017    NA            89         24
6018    NA            89         25
6019    NA            89         26
6020    NA            89         27
6021    NA            89         28
6022    NA            89         29
6023    NA            89         30
6024    NA            90          1
6025    NA            90          2
6026    NA            90          3
6027    NA            90          4
6028    NA            90          5
6029    NA            90          6
6030    NA            90          7
6031    NA            90          8
6032    NA            90          9
6033    NA            90         10
6034    NA            90         11
6035    NA            90         12
6036    NA            90         13
6037    NA            90         14
6038    NA            90         15
6039    NA            90         16
6040    NA            90         17
6041    NA            90         18
6042    NA            90         19
6043    NA            90         20
6044    NA            91          1
6045    NA            91          2
6046    NA            91          3
6047    NA            91          4
6048    NA            91          5
6049    NA            91          6
6050    NA            91          7
6051    NA            91          8
6052    NA            91          9
6053    NA            91         10
6054    NA            91         11
6055    NA            91         12
6056    NA            91         13
6057    NA            91         14
6058    NA            91         15
6059    NA            92          1
6060    NA            92          2
6061    NA            92          3
6062    NA            92          4
6063    NA            92          5
6064    NA            92          6
6065    NA            92          7
6066    NA            92          8
6067    NA            92          9
6068    NA            92         10
6069    NA            92         11
6070    NA            92         12
6071    NA            92         13
6072    NA            92         14
6073    NA            92         15
6074    NA            92         16
6075    NA            92         17
6076    NA            92         18
6077    NA            92         19
6078    NA            92         20
6079    NA            92         21
6080    NA            93          1
6081    NA            93          2
6082    NA            93          3
6083    NA            93          4
6084    NA            93          5
6085    NA            93          6
6086    NA            93          7
6087    NA            93          8
6088    NA            93          9
6089    NA            93         10
6090    NA            93         11
6091    NA            94          1
6092    NA            94          2
6093    NA            94          3
6094    NA            94          4
6095    NA            94          5
6096    NA            94          6
6097    NA            94          7
6098    NA            94          8
6099    NA            95          1
6100    NA            95          2
6101    NA            95          3
6102    NA            95          4
6103    NA            95          5
6104    NA            95          6
6105    NA            95          7
6106    NA            95          8
6107    NA            96          1
6108    NA            96          2
6109    NA            96          3
6110    NA            96          4
6111    NA            96          5
6112    NA            96          6
6113    NA            96          7
6114    NA            96          8
6115    NA            96          9
6116    NA            96         10
6117    NA            96         11
6118    NA            96         12
6119    NA            96         13
6120    NA            96         14
6121    NA            96         15
6122    NA            96         16
6123    NA            96         17
6124    NA            96         18
6125    NA            96         19
6126    NA            97          1
6127    NA            97          2
6128    NA            97          3
6129    NA            97          4
6130    NA            97          5
6131    NA            98          1
6132    NA            98          2
6133    NA            98          3
6134    NA            98          4
6135    NA            98          5
6136    NA            98          6
6137    NA            98          7
6138    NA            98          8
6139    NA            99          1
6140    NA            99          2
6141    NA            99          3
6142    NA            99          4
6143    NA            99          5
6144    NA            99          6
6145    NA            99          7
6146    NA            99          8
6147    NA           100          1
6148    NA           100          2
6149    NA           100          3
6150    NA           100          4
6151    NA           100          5
6152    NA           100          6
6153    NA           100          7
6154    NA           100          8
6155    NA           100          9
6156    NA           100         10
6157    NA           100         11
6158    NA           101          1
6159    NA           101          2
6160    NA           101          3
6161    NA           101          4
6162    NA           101          5
6163    NA           101          6
6164    NA           101          7
6165    NA           101          8
6166    NA           101          9
6167    NA           101         10
6168    NA           101         11
6169    NA           102          1
6170    NA           102          2
6171    NA           102          3
6172    NA           102          4
6173    NA           102          5
6174    NA           102          6
6175    NA           102          7
6176    NA           102          8
6177    NA           103          1
6178    NA           103          2
6179    NA           103          3
6180    NA           104          1
6181    NA           104          2
6182    NA           104          3
6183    NA           104          4
6184    NA           104          5
6185    NA           104          6
6186    NA           104          7
6187    NA           104          8
6188    NA           104          9
6189    NA           105          1
6190    NA           105          2
6191    NA           105          3
6192    NA           105          4
6193    NA           105          5
6194    NA           106          1
6195    NA           106          2
6196    NA           106          3
6197    NA           106          4
6198    NA           107          1
6199    NA           107          2
6200    NA           107          3
6201    NA           107          4
6202    NA           107          5
6203    NA           107          6
6204    NA           107          7
6205    NA           108          1
6206    NA           108          2
6207    NA           108          3
6208    NA           109          1
6209    NA           109          2
6210    NA           109          3
6211    NA           109          4
6212    NA           109          5
6213    NA           109          6
6214    NA           110          1
6215    NA           110          2
6216    NA           110          3
6217    NA           111          1
6218    NA           111          2
6219    NA           111          3
6220    NA           111          4
6221    NA           111          5
6222    NA           112          1
6223    NA           112          2
6224    NA           112          3
6225    NA           112          4
6226    NA           113          1
6227    NA           113          2
6228    NA           113          3
6229    NA           113          4
6230    NA           113          5
6231    NA           114          1
6232    NA           114          2
6233    NA           114          3
6234    NA           114          4
6235    NA           114          5
6236    NA           114          6
6237     1             1          1
6238     1             1          2
6239     1             1          3
6240     1             1          4
6241     1             1          5
6242     1             1          6
6243     1             1          7
6244     1             1          8
6245     1             1          9
6246     1             1         10
6247     1             1         11
6248     1             1         12
6249     1             1         13
6250     1             1         14
6251     1             1         15
6252     1             1         16
6253     1             1         17
6254     1             1         18
6255     1             1         19
6256     1             1         20
6257     1             1         21
6258     1             1         22
6259     1             1         23
6260     1             1         24
6261     1             1         25
6262     1             1         26
6263     1             1         27
6264     1             1         28
6265     1             1         29
6266     1             1         30
6267     1             1         31
6268     1             2          1
6269     1             2          2
6270     1             2          3
6271     1             2          4
6272     1             2          5
6273     1             2          6
6274     1             2          7
6275     1             2          8
6276     1             2          9
6277     1             2         10
6278     1             2         11
6279     1             2         12
6280     1             2         13
6281     1             2         14
6282     1             2         15
6283     1             2         16
6284     1             2         17
6285     1             2         18
6286     1             2         19
6287     1             2         20
6288     1             2         21
6289     1             2         22
6290     1             2         23
6291     1             2         24
6292     1             2         25
6293     1             3          1
6294     1             3          2
6295     1             3          3
6296     1             3          4
6297     1             3          5
6298     1             3          6
6299     1             3          7
6300     1             3          8
6301     1             3          9
6302     1             3         10
6303     1             3         11
6304     1             3         12
6305     1             3         13
6306     1             3         14
6307     1             3         15
6308     1             3         16
6309     1             3         17
6310     1             3         18
6311     1             3         19
6312     1             3         20
6313     1             3         21
6314     1             3         22
6315     1             3         23
6316     1             3         24
6317     1             4          1
6318     1             4          2
6319     1             4          3
6320     1             4          4
6321     1             4          5
6322     1             4          6
6323     1             4          7
6324     1             4          8
6325     1             4          9
6326     1             4         10
6327     1             4         11
6328     1             4         12
6329     1             4         13
6330     1             4         14
6331     1             4         15
6332     1             4         16
6333     1             4         17
6334     1             4         18
6335     1             4         19
6336     1             4         20
6337     1             4         21
6338     1             4         22
6339     1             4         23
6340     1             4         24
6341     1             4         25
6342     1             4         26
6343     1             5          1
6344     1             5          2
6345     1             5          3
6346     1             5          4
6347     1             5          5
6348     1             5          6
6349     1             5          7
6350     1             5          8
6351     1             5          9
6352     1             5         10
6353     1             5         11
6354     1             5         12
6355     1             5         13
6356     1             5         14
6357     1             5         15
6358     1             5         16
6359     1             5         17
6360     1             5         18
6361     1             5         19
6362     1             5         20
6363     1             5         21
6364     1             5         22
6365     1             5         23
6366     1             5         24
6367     1             5         25
6368     1             5         26
6369     1             5         27
6370     1             5         28
6371     1             5         29
6372     1             5         30
6373     1             5         31
6374     1             5         32
6375     1             6          1
6376     1             6          2
6377     1             6          3
6378     1             6          4
6379     1             6          5
6380     1             6          6
6381     1             6          7
6382     1             6          8
6383     1             6          9
6384     1             6         10
6385     1             6         11
6386     1             6         12
6387     1             6         13
6388     1             6         14
6389     1             6         15
6390     1             6         16
6391     1             6         17
6392     1             6         18
6393     1             6         19
6394     1             6         20
6395     1             6         21
6396     1             6         22
6397     1             7          1
6398     1             7          2
6399     1             7          3
6400     1             7          4
6401     1             7          5
6402     1             7          6
6403     1             7          7
6404     1             7          8
6405     1             7          9
6406     1             7         10
6407     1             7         11
6408     1             7         12
6409     1             7         13
6410     1             7         14
6411     1             7         15
6412     1             7         16
6413     1             7         17
6414     1             7         18
6415     1             7         19
6416     1             7         20
6417     1             7         21
6418     1             7         22
6419     1             7         23
6420     1             7         24
6421     1             8          1
6422     1             8          2
6423     1             8          3
6424     1             8          4
6425     1             8          5
6426     1             8          6
6427     1             8          7
6428     1             8          8
6429     1             8          9
6430     1             8         10
6431     1             8         11
6432     1             8         12
6433     1             8         13
6434     1             8         14
6435     1             8         15
6436     1             8         16
6437     1             8         17
6438     1             8         18
6439     1             8         19
6440     1             8         20
6441     1             8         21
6442     1             8         22
6443     1             9          1
6444     1             9          2
6445     1             9          3
6446     1             9          4
6447     1             9          5
6448     1             9          6
6449     1             9          7
6450     1             9          8
6451     1             9          9
6452     1             9         10
6453     1             9         11
6454     1             9         12
6455     1             9         13
6456     1             9         14
6457     1             9         15
6458     1             9         16
6459     1             9         17
6460     1             9         18
6461     1             9         19
6462     1             9         20
6463     1             9         21
6464     1             9         22
6465     1             9         23
6466     1             9         24
6467     1             9         25
6468     1             9         26
6469     1             9         27
6470     1             9         28
6471     1             9         29
6472     1            10          1
6473     1            10          2
6474     1            10          3
6475     1            10          4
6476     1            10          5
6477     1            10          6
6478     1            10          7
6479     1            10          8
6480     1            10          9
6481     1            10         10
6482     1            10         11
6483     1            10         12
6484     1            10         13
6485     1            10         14
6486     1            10         15
6487     1            10         16
6488     1            10         17
6489     1            10         18
6490     1            10         19
6491     1            10         20
6492     1            10         21
6493     1            10         22
6494     1            10         23
6495     1            10         24
6496     1            10         25
6497     1            10         26
6498     1            10         27
6499     1            10         28
6500     1            10         29
6501     1            10         30
6502     1            10         31
6503     1            10         32
6504     1            11          1
6505     1            11          2
6506     1            11          3
6507     1            11          4
6508     1            11          5
6509     1            11          6
6510     1            11          7
6511     1            11          8
6512     1            11          9
6513     1            11         10
6514     1            11         11
6515     1            11         12
6516     1            11         13
6517     1            11         14
6518     1            11         15
6519     1            11         16
6520     1            11         17
6521     1            11         18
6522     1            11         19
6523     1            11         20
6524     1            11         21
6525     1            11         22
6526     1            11         23
6527     1            11         24
6528     1            11         25
6529     1            11         26
6530     1            11         27
6531     1            11         28
6532     1            11         29
6533     1            11         30
6534     1            11         31
6535     1            11         32
6536     1            12          1
6537     1            12          2
6538     1            12          3
6539     1            12          4
6540     1            12          5
6541     1            12          6
6542     1            12          7
6543     1            12          8
6544     1            12          9
6545     1            12         10
6546     1            12         11
6547     1            12         12
6548     1            12         13
6549     1            12         14
6550     1            12         15
6551     1            12         16
6552     1            12         17
6553     1            12         18
6554     1            12         19
6555     1            12         20
6556     1            13          1
6557     1            13          2
6558     1            13          3
6559     1            13          4
6560     1            13          5
6561     1            13          6
6562     1            13          7
6563     1            13          8
6564     1            13          9
6565     1            13         10
6566     1            13         11
6567     1            13         12
6568     1            13         13
6569     1            13         14
6570     1            13         15
6571     1            13         16
6572     1            13         17
6573     1            13         18
6574     1            14          1
6575     1            14          2
6576     1            14          3
6577     1            14          4
6578     1            14          5
6579     1            14          6
6580     1            14          7
6581     1            14          8
6582     1            14          9
6583     1            14         10
6584     1            14         11
6585     1            14         12
6586     1            14         13
6587     1            14         14
6588     1            14         15
6589     1            14         16
6590     1            14         17
6591     1            14         18
6592     1            14         19
6593     1            14         20
6594     1            14         21
6595     1            14         22
6596     1            14         23
6597     1            14         24
6598     1            15          1
6599     1            15          2
6600     1            15          3
6601     1            15          4
6602     1            15          5
6603     1            15          6
6604     1            15          7
6605     1            15          8
6606     1            15          9
6607     1            15         10
6608     1            15         11
6609     1            15         12
6610     1            15         13
6611     1            15         14
6612     1            15         15
6613     1            15         16
6614     1            15         17
6615     1            15         18
6616     1            15         19
6617     1            15         20
6618     1            15         21
6619     1            16          1
6620     1            16          2
6621     1            16          3
6622     1            16          4
6623     1            16          5
6624     1            16          6
6625     1            16          7
6626     1            16          8
6627     1            16          9
6628     1            16         10
6629     1            16         11
6630     1            16         12
6631     1            16         13
6632     1            16         14
6633     1            16         15
6634     1            16         16
6635     1            17          1
6636     1            17          2
6637     1            17          3
6638     1            17          4
6639     1            17          5
6640     1            17          6
6641     1            17          7
6642     1            17          8
6643     1            17          9
6644     1            17         10
6645     1            17         11
6646     1            17         12
6647     1            17         13
6648     1            17         14
6649     1            17         15
6650     1            17         16
6651     1            17         17
6652     1            17         18
6653     1            17         19
6654     1            17         20
6655     1            17         21
6656     1            17         22
6657     1            17         23
6658     1            17         24
6659     1            17         25
6660     1            17         26
6661     1            17         27
6662     1            18          1
6663     1            18          2
6664     1            18          3
6665     1            18          4
6666     1            18          5
6667     1            18          6
6668     1            18          7
6669     1            18          8
6670     1            18          9
6671     1            18         10
6672     1            18         11
6673     1            18         12
6674     1            18         13
6675     1            18         14
6676     1            18         15
6677     1            18         16
6678     1            18         17
6679     1            18         18
6680     1            18         19
6681     1            18         20
6682     1            18         21
6683     1            18         22
6684     1            18         23
6685     1            18         24
6686     1            18         25
6687     1            18         26
6688     1            18         27
6689     1            18         28
6690     1            18         29
6691     1            18         30
6692     1            18         31
6693     1            18         32
6694     1            18         33
6695     1            19          1
6696     1            19          2
6697     1            19          3
6698     1            19          4
6699     1            19          5
6700     1            19          6
6701     1            19          7
6702     1            19          8
6703     1            19          9
6704     1            19         10
6705     1            19         11
6706     1            19         12
6707     1            19         13
6708     1            19         14
6709     1            19         15
6710     1            19         16
6711     1            19         17
6712     1            19         18
6713     1            19         19
6714     1            19         20
6715     1            19         21
6716     1            19         22
6717     1            19         23
6718     1            19         24
6719     1            19         25
6720     1            19         26
6721     1            19         27
6722     1            19         28
6723     1            19         29
6724     1            19         30
6725     1            19         31
6726     1            19         32
6727     1            19         33
6728     1            19         34
6729     1            19         35
6730     1            19         36
6731     1            19         37
6732     1            19         38
6733     1            20          1
6734     1            20          2
6735     1            20          3
6736     1            20          4
6737     1            20          5
6738     1            20          6
6739     1            20          7
6740     1            20          8
6741     1            20          9
6742     1            20         10
6743     1            20         11
6744     1            20         12
6745     1            20         13
6746     1            20         14
6747     1            20         15
6748     1            20         16
6749     1            20         17
6750     1            20         18
6751     1            21          1
6752     1            21          2
6753     1            21          3
6754     1            21          4
6755     1            21          5
6756     1            21          6
6757     1            21          7
6758     1            21          8
6759     1            21          9
6760     1            21         10
6761     1            21         11
6762     1            21         12
6763     1            21         13
6764     1            21         14
6765     1            21         15
6766     1            21         16
6767     1            21         17
6768     1            21         18
6769     1            21         19
6770     1            21         20
6771     1            21         21
6772     1            21         22
6773     1            21         23
6774     1            21         24
6775     1            21         25
6776     1            21         26
6777     1            21         27
6778     1            21         28
6779     1            21         29
6780     1            21         30
6781     1            21         31
6782     1            21         32
6783     1            21         33
6784     1            21         34
6785     1            22          1
6786     1            22          2
6787     1            22          3
6788     1            22          4
6789     1            22          5
6790     1            22          6
6791     1            22          7
6792     1            22          8
6793     1            22          9
6794     1            22         10
6795     1            22         11
6796     1            22         12
6797     1            22         13
6798     1            22         14
6799     1            22         15
6800     1            22         16
6801     1            22         17
6802     1            22         18
6803     1            22         19
6804     1            22         20
6805     1            22         21
6806     1            22         22
6807     1            22         23
6808     1            22         24
6809     1            23          1
6810     1            23          2
6811     1            23          3
6812     1            23          4
6813     1            23          5
6814     1            23          6
6815     1            23          7
6816     1            23          8
6817     1            23          9
6818     1            23         10
6819     1            23         11
6820     1            23         12
6821     1            23         13
6822     1            23         14
6823     1            23         15
6824     1            23         16
6825     1            23         17
6826     1            23         18
6827     1            23         19
6828     1            23         20
6829     1            24          1
6830     1            24          2
6831     1            24          3
6832     1            24          4
6833     1            24          5
6834     1            24          6
6835     1            24          7
6836     1            24          8
6837     1            24          9
6838     1            24         10
6839     1            24         11
6840     1            24         12
6841     1            24         13
6842     1            24         14
6843     1            24         15
6844     1            24         16
6845     1            24         17
6846     1            24         18
6847     1            24         19
6848     1            24         20
6849     1            24         21
6850     1            24         22
6851     1            24         23
6852     1            24         24
6853     1            24         25
6854     1            24         26
6855     1            24         27
6856     1            24         28
6857     1            24         29
6858     1            24         30
6859     1            24         31
6860     1            24         32
6861     1            24         33
6862     1            24         34
6863     1            24         35
6864     1            24         36
6865     1            24         37
6866     1            24         38
6867     1            24         39
6868     1            24         40
6869     1            24         41
6870     1            24         42
6871     1            24         43
6872     1            24         44
6873     1            24         45
6874     1            24         46
6875     1            24         47
6876     1            24         48
6877     1            24         49
6878     1            24         50
6879     1            24         51
6880     1            24         52
6881     1            24         53
6882     1            24         54
6883     1            24         55
6884     1            24         56
6885     1            24         57
6886     1            24         58
6887     1            24         59
6888     1            24         60
6889     1            24         61
6890     1            24         62
6891     1            24         63
6892     1            24         64
6893     1            24         65
6894     1            24         66
6895     1            24         67
6896     1            25          1
6897     1            25          2
6898     1            25          3
6899     1            25          4
6900     1            25          5
6901     1            25          6
6902     1            25          7
6903     1            25          8
6904     1            25          9
6905     1            25         10
6906     1            25         11
6907     1            25         12
6908     1            25         13
6909     1            25         14
6910     1            25         15
6911     1            25         16
6912     1            25         17
6913     1            25         18
6914     1            25         19
6915     1            25         20
6916     1            25         21
6917     1            25         22
6918     1            25         23
6919     1            25         24
6920     1            25         25
6921     1            25         26
6922     1            25         27
6923     1            25         28
6924     1            25         29
6925     1            25         30
6926     1            25         31
6927     1            25         32
6928     1            25         33
6929     1            25         34
6930     1            26          1
6931     1            26          2
6932     1            26          3
6933     1            26          4
6934     1            26          5
6935     1            26          6
6936     1            26          7
6937     1            26          8
6938     1            26          9
6939     1            26         10
6940     1            26         11
6941     1            26         12
6942     1            26         13
6943     1            26         14
6944     1            26         15
6945     1            26         16
6946     1            26         17
6947     1            26         18
6948     1            26         19
6949     1            26         20
6950     1            26         21
6951     1            26         22
6952     1            26         23
6953     1            26         24
6954     1            26         25
6955     1            26         26
6956     1            26         27
6957     1            26         28
6958     1            26         29
6959     1            26         30
6960     1            26         31
6961     1            26         32
6962     1            26         33
6963     1            26         34
6964     1            26         35
6965     1            27          1
6966     1            27          2
6967     1            27          3
6968     1            27          4
6969     1            27          5
6970     1            27          6
6971     1            27          7
6972     1            27          8
6973     1            27          9
6974     1            27         10
6975     1            27         11
6976     1            27         12
6977     1            27         13
6978     1            27         14
6979     1            27         15
6980     1            27         16
6981     1            27         17
6982     1            27         18
6983     1            27         19
6984     1            27         20
6985     1            27         21
6986     1            27         22
6987     1            27         23
6988     1            27         24
6989     1            27         25
6990     1            27         26
6991     1            27         27
6992     1            27         28
6993     1            27         29
6994     1            27         30
6995     1            27         31
6996     1            27         32
6997     1            27         33
6998     1            27         34
6999     1            27         35
7000     1            27         36
7001     1            27         37
7002     1            27         38
7003     1            27         39
7004     1            27         40
7005     1            27         41
7006     1            27         42
7007     1            27         43
7008     1            27         44
7009     1            27         45
7010     1            27         46
7011     1            28          1
7012     1            28          2
7013     1            28          3
7014     1            28          4
7015     1            28          5
7016     1            28          6
7017     1            28          7
7018     1            28          8
7019     1            28          9
7020     1            28         10
7021     1            28         11
7022     1            28         12
7023     1            28         13
7024     1            28         14
7025     1            28         15
7026     1            28         16
7027     1            28         17
7028     1            28         18
7029     1            28         19
7030     1            28         20
7031     1            28         21
7032     1            28         22
7033     1            29          1
7034     1            29          2
7035     1            29          3
7036     1            29          4
7037     1            29          5
7038     1            29          6
7039     1            29          7
7040     1            29          8
7041     1            29          9
7042     1            29         10
7043     1            29         11
7044     1            29         12
7045     1            29         13
7046     1            29         14
7047     1            29         15
7048     1            29         16
7049     1            29         17
7050     1            29         18
7051     1            29         19
7052     1            29         20
7053     1            29         21
7054     1            29         22
7055     1            29         23
7056     1            29         24
7057     1            29         25
7058     1            29         26
7059     1            29         27
7060     1            29         28
7061     1            29         29
7062     1            29         30
7063     1            29         31
7064     1            29         32
7065     1            29         33
7066     1            29         34
7067     1            29         35
7068     1            30          1
7069     1            30          2
7070     1            30          3
7071     1            30          4
7072     1            30          5
7073     1            30          6
7074     1            30          7
7075     1            30          8
7076     1            30          9
7077     1            30         10
7078     1            30         11
7079     1            30         12
7080     1            30         13
7081     1            30         14
7082     1            30         15
7083     1            30         16
7084     1            30         17
7085     1            30         18
7086     1            30         19
7087     1            30         20
7088     1            30         21
7089     1            30         22
7090     1            30         23
7091     1            30         24
7092     1            30         25
7093     1            30         26
7094     1            30         27
7095     1            30         28
7096     1            30         29
7097     1            30         30
7098     1            30         31
7099     1            30         32
7100     1            30         33
7101     1            30         34
7102     1            30         35
7103     1            30         36
7104     1            30         37
7105     1            30         38
7106     1            30         39
7107     1            30         40
7108     1            30         41
7109     1            30         42
7110     1            30         43
7111     1            31          1
7112     1            31          2
7113     1            31          3
7114     1            31          4
7115     1            31          5
7116     1            31          6
7117     1            31          7
7118     1            31          8
7119     1            31          9
7120     1            31         10
7121     1            31         11
7122     1            31         12
7123     1            31         13
7124     1            31         14
7125     1            31         15
7126     1            31         16
7127     1            31         17
7128     1            31         18
7129     1            31         19
7130     1            31         20
7131     1            31         21
7132     1            31         22
7133     1            31         23
7134     1            31         24
7135     1            31         25
7136     1            31         26
7137     1            31         27
7138     1            31         28
7139     1            31         29
7140     1            31         30
7141     1            31         31
7142     1            31         32
7143     1            31         33
7144     1            31         34
7145     1            31         35
7146     1            31         36
7147     1            31         37
7148     1            31         38
7149     1            31         39
7150     1            31         40
7151     1            31         41
7152     1            31         42
7153     1            31         43
7154     1            31         44
7155     1            31         45
7156     1            31         46
7157     1            31         47
7158     1            31         48
7159     1            31         49
7160     1            31         50
7161     1            31         51
7162     1            31         52
7163     1            31         53
7164     1            31         54
7165     1            31         55
7166     1            32          1
7167     1            32          2
7168     1            32          3
7169     1            32          4
7170     1            32          5
7171     1            32          6
7172     1            32          7
7173     1            32          8
7174     1            32          9
7175     1            32         10
7176     1            32         11
7177     1            32         12
7178     1            32         13
7179     1            32         14
7180     1            32         15
7181     1            32         16
7182     1            32         17
7183     1            32         18
7184     1            32         19
7185     1            32         20
7186     1            32         21
7187     1            32         22
7188     1            32         23
7189     1            32         24
7190     1            32         25
7191     1            32         26
7192     1            32         27
7193     1            32         28
7194     1            32         29
7195     1            32         30
7196     1            32         31
7197     1            32         32
7198     1            33          1
7199     1            33          2
7200     1            33          3
7201     1            33          4
7202     1            33          5
7203     1            33          6
7204     1            33          7
7205     1            33          8
7206     1            33          9
7207     1            33         10
7208     1            33         11
7209     1            33         12
7210     1            33         13
7211     1            33         14
7212     1            33         15
7213     1            33         16
7214     1            33         17
7215     1            33         18
7216     1            33         19
7217     1            33         20
7218     1            34          1
7219     1            34          2
7220     1            34          3
7221     1            34          4
7222     1            34          5
7223     1            34          6
7224     1            34          7
7225     1            34          8
7226     1            34          9
7227     1            34         10
7228     1            34         11
7229     1            34         12
7230     1            34         13
7231     1            34         14
7232     1            34         15
7233     1            34         16
7234     1            34         17
7235     1            34         18
7236     1            34         19
7237     1            34         20
7238     1            34         21
7239     1            34         22
7240     1            34         23
7241     1            34         24
7242     1            34         25
7243     1            34         26
7244     1            34         27
7245     1            34         28
7246     1            34         29
7247     1            34         30
7248     1            34         31
7249     1            35          1
7250     1            35          2
7251     1            35          3
7252     1            35          4
7253     1            35          5
7254     1            35          6
7255     1            35          7
7256     1            35          8
7257     1            35          9
7258     1            35         10
7259     1            35         11
7260     1            35         12
7261     1            35         13
7262     1            35         14
7263     1            35         15
7264     1            35         16
7265     1            35         17
7266     1            35         18
7267     1            35         19
7268     1            35         20
7269     1            35         21
7270     1            35         22
7271     1            35         23
7272     1            35         24
7273     1            35         25
7274     1            35         26
7275     1            35         27
7276     1            35         28
7277     1            35         29
7278     1            36          1
7279     1            36          2
7280     1            36          3
7281     1            36          4
7282     1            36          5
7283     1            36          6
7284     1            36          7
7285     1            36          8
7286     1            36          9
7287     1            36         10
7288     1            36         11
7289     1            36         12
7290     1            36         13
7291     1            36         14
7292     1            36         15
7293     1            36         16
7294     1            36         17
7295     1            36         18
7296     1            36         19
7297     1            36         20
7298     1            36         21
7299     1            36         22
7300     1            36         23
7301     1            36         24
7302     1            36         25
7303     1            36         26
7304     1            36         27
7305     1            36         28
7306     1            36         29
7307     1            36         30
7308     1            36         31
7309     1            36         32
7310     1            36         33
7311     1            36         34
7312     1            36         35
7313     1            36         36
7314     1            36         37
7315     1            36         38
7316     1            36         39
7317     1            36         40
7318     1            36         41
7319     1            36         42
7320     1            36         43
7321     1            37          1
7322     1            37          2
7323     1            37          3
7324     1            37          4
7325     1            37          5
7326     1            37          6
7327     1            37          7
7328     1            37          8
7329     1            37          9
7330     1            37         10
7331     1            37         11
7332     1            37         12
7333     1            37         13
7334     1            37         14
7335     1            37         15
7336     1            37         16
7337     1            37         17
7338     1            37         18
7339     1            37         19
7340     1            37         20
7341     1            37         21
7342     1            37         22
7343     1            37         23
7344     1            37         24
7345     1            37         25
7346     1            37         26
7347     1            37         27
7348     1            37         28
7349     1            37         29
7350     1            37         30
7351     1            37         31
7352     1            37         32
7353     1            37         33
7354     1            37         34
7355     1            37         35
7356     1            37         36
7357     1            38          1
7358     1            38          2
7359     1            38          3
7360     1            38          4
7361     1            38          5
7362     1            38          6
7363     1            38          7
7364     1            38          8
7365     1            38          9
7366     1            38         10
7367     1            38         11
7368     1            38         12
7369     1            38         13
7370     1            38         14
7371     1            38         15
7372     1            38         16
7373     1            38         17
7374     1            38         18
7375     1            38         19
7376     1            38         20
7377     1            38         21
7378     1            38         22
7379     1            38         23
7380     1            38         24
7381     1            38         25
7382     1            38         26
7383     1            38         27
7384     1            38         28
7385     1            38         29
7386     1            38         30
7387     1            39          1
7388     1            39          2
7389     1            39          3
7390     1            39          4
7391     1            39          5
7392     1            39          6
7393     1            39          7
7394     1            39          8
7395     1            39          9
7396     1            39         10
7397     1            39         11
7398     1            39         12
7399     1            39         13
7400     1            39         14
7401     1            39         15
7402     1            39         16
7403     1            39         17
7404     1            39         18
7405     1            39         19
7406     1            39         20
7407     1            39         21
7408     1            39         22
7409     1            39         23
7410     1            40          1
7411     1            40          2
7412     1            40          3
7413     1            40          4
7414     1            40          5
7415     1            40          6
7416     1            40          7
7417     1            40          8
7418     1            40          9
7419     1            40         10
7420     1            40         11
7421     1            40         12
7422     1            40         13
7423     1            40         14
7424     1            40         15
7425     1            40         16
7426     1            40         17
7427     1            40         18
7428     1            40         19
7429     1            40         20
7430     1            40         21
7431     1            40         22
7432     1            40         23
7433     1            41          1
7434     1            41          2
7435     1            41          3
7436     1            41          4
7437     1            41          5
7438     1            41          6
7439     1            41          7
7440     1            41          8
7441     1            41          9
7442     1            41         10
7443     1            41         11
7444     1            41         12
7445     1            41         13
7446     1            41         14
7447     1            41         15
7448     1            41         16
7449     1            41         17
7450     1            41         18
7451     1            41         19
7452     1            41         20
7453     1            41         21
7454     1            41         22
7455     1            41         23
7456     1            41         24
7457     1            41         25
7458     1            41         26
7459     1            41         27
7460     1            41         28
7461     1            41         29
7462     1            41         30
7463     1            41         31
7464     1            41         32
7465     1            41         33
7466     1            41         34
7467     1            41         35
7468     1            41         36
7469     1            41         37
7470     1            41         38
7471     1            41         39
7472     1            41         40
7473     1            41         41
7474     1            41         42
7475     1            41         43
7476     1            41         44
7477     1            41         45
7478     1            41         46
7479     1            41         47
7480     1            41         48
7481     1            41         49
7482     1            41         50
7483     1            41         51
7484     1            41         52
7485     1            41         53
7486     1            41         54
7487     1            41         55
7488     1            41         56
7489     1            41         57
7490     1            42          1
7491     1            42          2
7492     1            42          3
7493     1            42          4
7494     1            42          5
7495     1            42          6
7496     1            42          7
7497     1            42          8
7498     1            42          9
7499     1            42         10
7500     1            42         11
7501     1            42         12
7502     1            42         13
7503     1            42         14
7504     1            42         15
7505     1            42         16
7506     1            42         17
7507     1            42         18
7508     1            42         19
7509     1            42         20
7510     1            42         21
7511     1            42         22
7512     1            42         23
7513     1            42         24
7514     1            42         25
7515     1            42         26
7516     1            42         27
7517     1            42         28
7518     1            42         29
7519     1            42         30
7520     1            42         31
7521     1            42         32
7522     1            42         33
7523     1            42         34
7524     1            42         35
7525     1            42         36
7526     1            42         37
7527     1            42         38
7528     1            43          1
7529     1            43          2
7530     1            43          3
7531     1            43          4
7532     1            43          5
7533     1            43          6
7534     1            43          7
7535     1            43          8
7536     1            43          9
7537     1            43         10
7538     1            43         11
7539     1            43         12
7540     1            43         13
7541     1            43         14
7542     1            43         15
7543     1            43         16
7544     1            43         17
7545     1            43         18
7546     1            43         19
7547     1            43         20
7548     1            43         21
7549     1            43         22
7550     1            43         23
7551     1            43         24
7552     1            43         25
7553     1            43         26
7554     1            43         27
7555     1            43         28
7556     1            43         29
7557     1            43         30
7558     1            43         31
7559     1            43         32
7560     1            43         33
7561     1            43         34
7562     1            44          1
7563     1            44          2
7564     1            44          3
7565     1            44          4
7566     1            44          5
7567     1            44          6
7568     1            44          7
7569     1            44          8
7570     1            44          9
7571     1            44         10
7572     1            44         11
7573     1            44         12
7574     1            44         13
7575     1            44         14
7576     1            44         15
7577     1            44         16
7578     1            44         17
7579     1            44         18
7580     1            44         19
7581     1            44         20
7582     1            44         21
7583     1            44         22
7584     1            44         23
7585     1            44         24
7586     1            44         25
7587     1            44         26
7588     1            44         27
7589     1            44         28
7590     1            44         29
7591     1            44         30
7592     1            44         31
7593     1            44         32
7594     1            44         33
7595     1            44         34
7596     1            45          1
7597     1            45          2
7598     1            45          3
7599     1            45          4
7600     1            45          5
7601     1            45          6
7602     1            45          7
7603     1            45          8
7604     1            45          9
7605     1            45         10
7606     1            45         11
7607     1            45         12
7608     1            45         13
7609     1            45         14
7610     1            45         15
7611     1            45         16
7612     1            45         17
7613     1            45         18
7614     1            45         19
7615     1            45         20
7616     1            45         21
7617     1            45         22
7618     1            45         23
7619     1            45         24
7620     1            45         25
7621     1            45         26
7622     1            45         27
7623     1            45         28
7624     1            46          1
7625     1            46          2
7626     1            46          3
7627     1            46          4
7628     1            46          5
7629     1            46          6
7630     1            46          7
7631     1            46          8
7632     1            46          9
7633     1            46         10
7634     1            46         11
7635     1            46         12
7636     1            46         13
7637     1            46         14
7638     1            46         15
7639     1            46         16
7640     1            46         17
7641     1            46         18
7642     1            46         19
7643     1            46         20
7644     1            46         21
7645     1            46         22
7646     1            46         23
7647     1            46         24
7648     1            46         25
7649     1            46         26
7650     1            46         27
7651     1            46         28
7652     1            46         29
7653     1            46         30
7654     1            46         31
7655     1            46         32
7656     1            46         33
7657     1            46         34
7658     1            47          1
7659     1            47          2
7660     1            47          3
7661     1            47          4
7662     1            47          5
7663     1            47          6
7664     1            47          7
7665     1            47          8
7666     1            47          9
7667     1            47         10
7668     1            47         11
7669     1            47         12
7670     1            47         13
7671     1            47         14
7672     1            47         15
7673     1            47         16
7674     1            47         17
7675     1            47         18
7676     1            47         19
7677     1            47         20
7678     1            47         21
7679     1            47         22
7680     1            47         23
7681     1            47         24
7682     1            47         25
7683     1            47         26
7684     1            47         27
7685     1            47         28
7686     1            47         29
7687     1            47         30
7688     1            47         31
7689     1            48          1
7690     1            48          2
7691     1            48          3
7692     1            48          4
7693     1            48          5
7694     1            48          6
7695     1            48          7
7696     1            48          8
7697     1            48          9
7698     1            48         10
7699     1            48         11
7700     1            48         12
7701     1            48         13
7702     1            48         14
7703     1            48         15
7704     1            48         16
7705     1            48         17
7706     1            48         18
7707     1            48         19
7708     1            48         20
7709     1            48         21
7710     1            48         22
7711     1            49          1
7712     1            49          2
7713     1            49          3
7714     1            49          4
7715     1            49          5
7716     1            49          6
7717     1            49          7
7718     1            49          8
7719     1            49          9
7720     1            49         10
7721     1            49         11
7722     1            49         12
7723     1            49         13
7724     1            49         14
7725     1            49         15
7726     1            49         16
7727     1            49         17
7728     1            49         18
7729     1            49         19
7730     1            49         20
7731     1            49         21
7732     1            49         22
7733     1            49         23
7734     1            49         24
7735     1            49         25
7736     1            49         26
7737     1            49         27
7738     1            49         28
7739     1            49         29
7740     1            49         30
7741     1            49         31
7742     1            49         32
7743     1            49         33
7744     1            50          1
7745     1            50          2
7746     1            50          3
7747     1            50          4
7748     1            50          5
7749     1            50          6
7750     1            50          7
7751     1            50          8
7752     1            50          9
7753     1            50         10
7754     1            50         11
7755     1            50         12
7756     1            50         13
7757     1            50         14
7758     1            50         15
7759     1            50         16
7760     1            50         17
7761     1            50         18
7762     1            50         19
7763     1            50         20
7764     1            50         21
7765     1            50         22
7766     1            50         23
7767     1            50         24
7768     1            50         25
7769     1            50         26
7770     2             1          1
7771     2             1          2
7772     2             1          3
7773     2             1          4
7774     2             1          5
7775     2             1          6
7776     2             1          7
7777     2             1          8
7778     2             1          9
7779     2             1         10
7780     2             1         11
7781     2             1         12
7782     2             1         13
7783     2             1         14
7784     2             1         15
7785     2             1         16
7786     2             1         17
7787     2             1         18
7788     2             1         19
7789     2             1         20
7790     2             1         21
7791     2             1         22
7792     2             2          1
7793     2             2          2
7794     2             2          3
7795     2             2          4
7796     2             2          5
7797     2             2          6
7798     2             2          7
7799     2             2          8
7800     2             2          9
7801     2             2         10
7802     2             2         11
7803     2             2         12
7804     2             2         13
7805     2             2         14
7806     2             2         15
7807     2             2         16
7808     2             2         17
7809     2             2         18
7810     2             2         19
7811     2             2         20
7812     2             2         21
7813     2             2         22
7814     2             2         23
7815     2             2         24
7816     2             2         25
7817     2             3          1
7818     2             3          2
7819     2             3          3
7820     2             3          4
7821     2             3          5
7822     2             3          6
7823     2             3          7
7824     2             3          8
7825     2             3          9
7826     2             3         10
7827     2             3         11
7828     2             3         12
7829     2             3         13
7830     2             3         14
7831     2             3         15
7832     2             3         16
7833     2             3         17
7834     2             3         18
7835     2             3         19
7836     2             3         20
7837     2             3         21
7838     2             3         22
7839     2             4          1
7840     2             4          2
7841     2             4          3
7842     2             4          4
7843     2             4          5
7844     2             4          6
7845     2             4          7
7846     2             4          8
7847     2             4          9
7848     2             4         10
7849     2             4         11
7850     2             4         12
7851     2             4         13
7852     2             4         14
7853     2             4         15
7854     2             4         16
7855     2             4         17
7856     2             4         18
7857     2             4         19
7858     2             4         20
7859     2             4         21
7860     2             4         22
7861     2             4         23
7862     2             4         24
7863     2             4         25
7864     2             4         26
7865     2             4         27
7866     2             4         28
7867     2             4         29
7868     2             4         30
7869     2             4         31
7870     2             5          1
7871     2             5          2
7872     2             5          3
7873     2             5          4
7874     2             5          5
7875     2             5          6
7876     2             5          7
7877     2             5          8
7878     2             5          9
7879     2             5         10
7880     2             5         11
7881     2             5         12
7882     2             5         13
7883     2             5         14
7884     2             5         15
7885     2             5         16
7886     2             5         17
7887     2             5         18
7888     2             5         19
7889     2             5         20
7890     2             5         21
7891     2             5         22
7892     2             5         23
7893     2             6          1
7894     2             6          2
7895     2             6          3
7896     2             6          4
7897     2             6          5
7898     2             6          6
7899     2             6          7
7900     2             6          8
7901     2             6          9
7902     2             6         10
7903     2             6         11
7904     2             6         12
7905     2             6         13
7906     2             6         14
7907     2             6         15
7908     2             6         16
7909     2             6         17
7910     2             6         18
7911     2             6         19
7912     2             6         20
7913     2             6         21
7914     2             6         22
7915     2             6         23
7916     2             6         24
7917     2             6         25
7918     2             6         26
7919     2             6         27
7920     2             6         28
7921     2             6         29
7922     2             6         30
7923     2             7          1
7924     2             7          2
7925     2             7          3
7926     2             7          4
7927     2             7          5
7928     2             7          6
7929     2             7          7
7930     2             7          8
7931     2             7          9
7932     2             7         10
7933     2             7         11
7934     2             7         12
7935     2             7         13
7936     2             7         14
7937     2             7         15
7938     2             7         16
7939     2             7         17
7940     2             7         18
7941     2             7         19
7942     2             7         20
7943     2             7         21
7944     2             7         22
7945     2             7         23
7946     2             7         24
7947     2             7         25
7948     2             8          1
7949     2             8          2
7950     2             8          3
7951     2             8          4
7952     2             8          5
7953     2             8          6
7954     2             8          7
7955     2             8          8
7956     2             8          9
7957     2             8         10
7958     2             8         11
7959     2             8         12
7960     2             8         13
7961     2             8         14
7962     2             8         15
7963     2             8         16
7964     2             8         17
7965     2             8         18
7966     2             8         19
7967     2             8         20
7968     2             8         21
7969     2             8         22
7970     2             8         23
7971     2             8         24
7972     2             8         25
7973     2             8         26
7974     2             8         27
7975     2             8         28
7976     2             8         29
7977     2             8         30
7978     2             8         31
7979     2             8         32
7980     2             9          1
7981     2             9          2
7982     2             9          3
7983     2             9          4
7984     2             9          5
7985     2             9          6
7986     2             9          7
7987     2             9          8
7988     2             9          9
7989     2             9         10
7990     2             9         11
7991     2             9         12
7992     2             9         13
7993     2             9         14
7994     2             9         15
7995     2             9         16
7996     2             9         17
7997     2             9         18
7998     2             9         19
7999     2             9         20
8000     2             9         21
8001     2             9         22
8002     2             9         23
8003     2             9         24
8004     2             9         25
8005     2             9         26
8006     2             9         27
8007     2             9         28
8008     2             9         29
8009     2             9         30
8010     2             9         31
8011     2             9         32
8012     2             9         33
8013     2             9         34
8014     2             9         35
8015     2            10          1
8016     2            10          2
8017     2            10          3
8018     2            10          4
8019     2            10          5
8020     2            10          6
8021     2            10          7
8022     2            10          8
8023     2            10          9
8024     2            10         10
8025     2            10         11
8026     2            10         12
8027     2            10         13
8028     2            10         14
8029     2            10         15
8030     2            10         16
8031     2            10         17
8032     2            10         18
8033     2            10         19
8034     2            10         20
8035     2            10         21
8036     2            10         22
8037     2            10         23
8038     2            10         24
8039     2            10         25
8040     2            10         26
8041     2            10         27
8042     2            10         28
8043     2            10         29
8044     2            11          1
8045     2            11          2
8046     2            11          3
8047     2            11          4
8048     2            11          5
8049     2            11          6
8050     2            11          7
8051     2            11          8
8052     2            11          9
8053     2            11         10
8054     2            12          1
8055     2            12          2
8056     2            12          3
8057     2            12          4
8058     2            12          5
8059     2            12          6
8060     2            12          7
8061     2            12          8
8062     2            12          9
8063     2            12         10
8064     2            12         11
8065     2            12         12
8066     2            12         13
8067     2            12         14
8068     2            12         15
8069     2            12         16
8070     2            12         17
8071     2            12         18
8072     2            12         19
8073     2            12         20
8074     2            12         21
8075     2            12         22
8076     2            12         23
8077     2            12         24
8078     2            12         25
8079     2            12         26
8080     2            12         27
8081     2            12         28
8082     2            12         29
8083     2            12         30
8084     2            12         31
8085     2            12         32
8086     2            12         33
8087     2            12         34
8088     2            12         35
8089     2            12         36
8090     2            12         37
8091     2            12         38
8092     2            12         39
8093     2            12         40
8094     2            12         41
8095     2            12         42
8096     2            12         43
8097     2            12         44
8098     2            12         45
8099     2            12         46
8100     2            12         47
8101     2            12         48
8102     2            12         49
8103     2            12         50
8104     2            12         51
8105     2            13          1
8106     2            13          2
8107     2            13          3
8108     2            13          4
8109     2            13          5
8110     2            13          6
8111     2            13          7
8112     2            13          8
8113     2            13          9
8114     2            13         10
8115     2            13         11
8116     2            13         12
8117     2            13         13
8118     2            13         14
8119     2            13         15
8120     2            13         16
8121     2            13         17
8122     2            13         18
8123     2            13         19
8124     2            13         20
8125     2            13         21
8126     2            13         22
8127     2            14          1
8128     2            14          2
8129     2            14          3
8130     2            14          4
8131     2            14          5
8132     2            14          6
8133     2            14          7
8134     2            14          8
8135     2            14          9
8136     2            14         10
8137     2            14         11
8138     2            14         12
8139     2            14         13
8140     2            14         14
8141     2            14         15
8142     2            14         16
8143     2            14         17
8144     2            14         18
8145     2            14         19
8146     2            14         20
8147     2            14         21
8148     2            14         22
8149     2            14         23
8150     2            14         24
8151     2            14         25
8152     2            14         26
8153     2            14         27
8154     2            14         28
8155     2            14         29
8156     2            14         30
8157     2            14         31
8158     2            15          1
8159     2            15          2
8160     2            15          3
8161     2            15          4
8162     2            15          5
8163     2            15          6
8164     2            15          7
8165     2            15          8
8166     2            15          9
8167     2            15         10
8168     2            15         11
8169     2            15         12
8170     2            15         13
8171     2            15         14
8172     2            15         15
8173     2            15         16
8174     2            15         17
8175     2            15         18
8176     2            15         19
8177     2            15         20
8178     2            15         21
8179     2            15         22
8180     2            15         23
8181     2            15         24
8182     2            15         25
8183     2            15         26
8184     2            15         27
8185     2            16          1
8186     2            16          2
8187     2            16          3
8188     2            16          4
8189     2            16          5
8190     2            16          6
8191     2            16          7
8192     2            16          8
8193     2            16          9
8194     2            16         10
8195     2            16         11
8196     2            16         12
8197     2            16         13
8198     2            16         14
8199     2            16         15
8200     2            16         16
8201     2            16         17
8202     2            16         18
8203     2            16         19
8204     2            16         20
8205     2            16         21
8206     2            16         22
8207     2            16         23
8208     2            16         24
8209     2            16         25
8210     2            16         26
8211     2            16         27
8212     2            16         28
8213     2            16         29
8214     2            16         30
8215     2            16         31
8216     2            16         32
8217     2            16         33
8218     2            16         34
8219     2            16         35
8220     2            16         36
8221     2            17          1
8222     2            17          2
8223     2            17          3
8224     2            17          4
8225     2            17          5
8226     2            17          6
8227     2            17          7
8228     2            17          8
8229     2            17          9
8230     2            17         10
8231     2            17         11
8232     2            17         12
8233     2            17         13
8234     2            17         14
8235     2            17         15
8236     2            17         16
8237     2            18          1
8238     2            18          2
8239     2            18          3
8240     2            18          4
8241     2            18          5
8242     2            18          6
8243     2            18          7
8244     2            18          8
8245     2            18          9
8246     2            18         10
8247     2            18         11
8248     2            18         12
8249     2            18         13
8250     2            18         14
8251     2            18         15
8252     2            18         16
8253     2            18         17
8254     2            18         18
8255     2            18         19
8256     2            18         20
8257     2            18         21
8258     2            18         22
8259     2            18         23
8260     2            18         24
8261     2            18         25
8262     2            18         26
8263     2            18         27
8264     2            19          1
8265     2            19          2
8266     2            19          3
8267     2            19          4
8268     2            19          5
8269     2            19          6
8270     2            19          7
8271     2            19          8
8272     2            19          9
8273     2            19         10
8274     2            19         11
8275     2            19         12
8276     2            19         13
8277     2            19         14
8278     2            19         15
8279     2            19         16
8280     2            19         17
8281     2            19         18
8282     2            19         19
8283     2            19         20
8284     2            19         21
8285     2            19         22
8286     2            19         23
8287     2            19         24
8288     2            19         25
8289     2            20          1
8290     2            20          2
8291     2            20          3
8292     2            20          4
8293     2            20          5
8294     2            20          6
8295     2            20          7
8296     2            20          8
8297     2            20          9
8298     2            20         10
8299     2            20         11
8300     2            20         12
8301     2            20         13
8302     2            20         14
8303     2            20         15
8304     2            20         16
8305     2            20         17
8306     2            20         18
8307     2            20         19
8308     2            20         20
8309     2            20         21
8310     2            20         22
8311     2            20         23
8312     2            20         24
8313     2            20         25
8314     2            20         26
8315     2            21          1
8316     2            21          2
8317     2            21          3
8318     2            21          4
8319     2            21          5
8320     2            21          6
8321     2            21          7
8322     2            21          8
8323     2            21          9
8324     2            21         10
8325     2            21         11
8326     2            21         12
8327     2            21         13
8328     2            21         14
8329     2            21         15
8330     2            21         16
8331     2            21         17
8332     2            21         18
8333     2            21         19
8334     2            21         20
8335     2            21         21
8336     2            21         22
8337     2            21         23
8338     2            21         24
8339     2            21         25
8340     2            21         26
8341     2            21         27
8342     2            21         28
8343     2            21         29
8344     2            21         30
8345     2            21         31
8346     2            21         32
8347     2            21         33
8348     2            21         34
8349     2            21         35
8350     2            21         36
8351     2            22          1
8352     2            22          2
8353     2            22          3
8354     2            22          4
8355     2            22          5
8356     2            22          6
8357     2            22          7
8358     2            22          8
8359     2            22          9
8360     2            22         10
8361     2            22         11
8362     2            22         12
8363     2            22         13
8364     2            22         14
8365     2            22         15
8366     2            22         16
8367     2            22         17
8368     2            22         18
8369     2            22         19
8370     2            22         20
8371     2            22         21
8372     2            22         22
8373     2            22         23
8374     2            22         24
8375     2            22         25
8376     2            22         26
8377     2            22         27
8378     2            22         28
8379     2            22         29
8380     2            22         30
8381     2            22         31
8382     2            23          1
8383     2            23          2
8384     2            23          3
8385     2            23          4
8386     2            23          5
8387     2            23          6
8388     2            23          7
8389     2            23          8
8390     2            23          9
8391     2            23         10
8392     2            23         11
8393     2            23         12
8394     2            23         13
8395     2            23         14
8396     2            23         15
8397     2            23         16
8398     2            23         17
8399     2            23         18
8400     2            23         19
8401     2            23         20
8402     2            23         21
8403     2            23         22
8404     2            23         23
8405     2            23         24
8406     2            23         25
8407     2            23         26
8408     2            23         27
8409     2            23         28
8410     2            23         29
8411     2            23         30
8412     2            23         31
8413     2            23         32
8414     2            23         33
8415     2            24          1
8416     2            24          2
8417     2            24          3
8418     2            24          4
8419     2            24          5
8420     2            24          6
8421     2            24          7
8422     2            24          8
8423     2            24          9
8424     2            24         10
8425     2            24         11
8426     2            24         12
8427     2            24         13
8428     2            24         14
8429     2            24         15
8430     2            24         16
8431     2            24         17
8432     2            24         18
8433     2            25          1
8434     2            25          2
8435     2            25          3
8436     2            25          4
8437     2            25          5
8438     2            25          6
8439     2            25          7
8440     2            25          8
8441     2            25          9
8442     2            25         10
8443     2            25         11
8444     2            25         12
8445     2            25         13
8446     2            25         14
8447     2            25         15
8448     2            25         16
8449     2            25         17
8450     2            25         18
8451     2            25         19
8452     2            25         20
8453     2            25         21
8454     2            25         22
8455     2            25         23
8456     2            25         24
8457     2            25         25
8458     2            25         26
8459     2            25         27
8460     2            25         28
8461     2            25         29
8462     2            25         30
8463     2            25         31
8464     2            25         32
8465     2            25         33
8466     2            25         34
8467     2            25         35
8468     2            25         36
8469     2            25         37
8470     2            25         38
8471     2            25         39
8472     2            25         40
8473     2            26          1
8474     2            26          2
8475     2            26          3
8476     2            26          4
8477     2            26          5
8478     2            26          6
8479     2            26          7
8480     2            26          8
8481     2            26          9
8482     2            26         10
8483     2            26         11
8484     2            26         12
8485     2            26         13
8486     2            26         14
8487     2            26         15
8488     2            26         16
8489     2            26         17
8490     2            26         18
8491     2            26         19
8492     2            26         20
8493     2            26         21
8494     2            26         22
8495     2            26         23
8496     2            26         24
8497     2            26         25
8498     2            26         26
8499     2            26         27
8500     2            26         28
8501     2            26         29
8502     2            26         30
8503     2            26         31
8504     2            26         32
8505     2            26         33
8506     2            26         34
8507     2            26         35
8508     2            26         36
8509     2            26         37
8510     2            27          1
8511     2            27          2
8512     2            27          3
8513     2            27          4
8514     2            27          5
8515     2            27          6
8516     2            27          7
8517     2            27          8
8518     2            27          9
8519     2            27         10
8520     2            27         11
8521     2            27         12
8522     2            27         13
8523     2            27         14
8524     2            27         15
8525     2            27         16
8526     2            27         17
8527     2            27         18
8528     2            27         19
8529     2            27         20
8530     2            27         21
8531     2            28          1
8532     2            28          2
8533     2            28          3
8534     2            28          4
8535     2            28          5
8536     2            28          6
8537     2            28          7
8538     2            28          8
8539     2            28          9
8540     2            28         10
8541     2            28         11
8542     2            28         12
8543     2            28         13
8544     2            28         14
8545     2            28         15
8546     2            28         16
8547     2            28         17
8548     2            28         18
8549     2            28         19
8550     2            28         20
8551     2            28         21
8552     2            28         22
8553     2            28         23
8554     2            28         24
8555     2            28         25
8556     2            28         26
8557     2            28         27
8558     2            28         28
8559     2            28         29
8560     2            28         30
8561     2            28         31
8562     2            28         32
8563     2            28         33
8564     2            28         34
8565     2            28         35
8566     2            28         36
8567     2            28         37
8568     2            28         38
8569     2            28         39
8570     2            28         40
8571     2            28         41
8572     2            28         42
8573     2            28         43
8574     2            29          1
8575     2            29          2
8576     2            29          3
8577     2            29          4
8578     2            29          5
8579     2            29          6
8580     2            29          7
8581     2            29          8
8582     2            29          9
8583     2            29         10
8584     2            29         11
8585     2            29         12
8586     2            29         13
8587     2            29         14
8588     2            29         15
8589     2            29         16
8590     2            29         17
8591     2            29         18
8592     2            29         19
8593     2            29         20
8594     2            29         21
8595     2            29         22
8596     2            29         23
8597     2            29         24
8598     2            29         25
8599     2            29         26
8600     2            29         27
8601     2            29         28
8602     2            29         29
8603     2            29         30
8604     2            29         31
8605     2            29         32
8606     2            29         33
8607     2            29         34
8608     2            29         35
8609     2            29         36
8610     2            29         37
8611     2            29         38
8612     2            29         39
8613     2            29         40
8614     2            29         41
8615     2            29         42
8616     2            29         43
8617     2            29         44
8618     2            29         45
8619     2            29         46
8620     2            30          1
8621     2            30          2
8622     2            30          3
8623     2            30          4
8624     2            30          5
8625     2            30          6
8626     2            30          7
8627     2            30          8
8628     2            30          9
8629     2            30         10
8630     2            30         11
8631     2            30         12
8632     2            30         13
8633     2            30         14
8634     2            30         15
8635     2            30         16
8636     2            30         17
8637     2            30         18
8638     2            30         19
8639     2            30         20
8640     2            30         21
8641     2            30         22
8642     2            30         23
8643     2            30         24
8644     2            30         25
8645     2            30         26
8646     2            30         27
8647     2            30         28
8648     2            30         29
8649     2            30         30
8650     2            30         31
8651     2            30         32
8652     2            30         33
8653     2            30         34
8654     2            30         35
8655     2            30         36
8656     2            30         37
8657     2            30         38
8658     2            31          1
8659     2            31          2
8660     2            31          3
8661     2            31          4
8662     2            31          5
8663     2            31          6
8664     2            31          7
8665     2            31          8
8666     2            31          9
8667     2            31         10
8668     2            31         11
8669     2            31         12
8670     2            31         13
8671     2            31         14
8672     2            31         15
8673     2            31         16
8674     2            31         17
8675     2            31         18
8676     2            32          1
8677     2            32          2
8678     2            32          3
8679     2            32          4
8680     2            32          5
8681     2            32          6
8682     2            32          7
8683     2            32          8
8684     2            32          9
8685     2            32         10
8686     2            32         11
8687     2            32         12
8688     2            32         13
8689     2            32         14
8690     2            32         15
8691     2            32         16
8692     2            32         17
8693     2            32         18
8694     2            32         19
8695     2            32         20
8696     2            32         21
8697     2            32         22
8698     2            32         23
8699     2            32         24
8700     2            32         25
8701     2            32         26
8702     2            32         27
8703     2            32         28
8704     2            32         29
8705     2            32         30
8706     2            32         31
8707     2            32         32
8708     2            32         33
8709     2            32         34
8710     2            32         35
8711     2            33          1
8712     2            33          2
8713     2            33          3
8714     2            33          4
8715     2            33          5
8716     2            33          6
8717     2            33          7
8718     2            33          8
8719     2            33          9
8720     2            33         10
8721     2            33         11
8722     2            33         12
8723     2            33         13
8724     2            33         14
8725     2            33         15
8726     2            33         16
8727     2            33         17
8728     2            33         18
8729     2            33         19
8730     2            33         20
8731     2            33         21
8732     2            33         22
8733     2            33         23
8734     2            34          1
8735     2            34          2
8736     2            34          3
8737     2            34          4
8738     2            34          5
8739     2            34          6
8740     2            34          7
8741     2            34          8
8742     2            34          9
8743     2            34         10
8744     2            34         11
8745     2            34         12
8746     2            34         13
8747     2            34         14
8748     2            34         15
8749     2            34         16
8750     2            34         17
8751     2            34         18
8752     2            34         19
8753     2            34         20
8754     2            34         21
8755     2            34         22
8756     2            34         23
8757     2            34         24
8758     2            34         25
8759     2            34         26
8760     2            34         27
8761     2            34         28
8762     2            34         29
8763     2            34         30
8764     2            34         31
8765     2            34         32
8766     2            34         33
8767     2            34         34
8768     2            34         35
8769     2            35          1
8770     2            35          2
8771     2            35          3
8772     2            35          4
8773     2            35          5
8774     2            35          6
8775     2            35          7
8776     2            35          8
8777     2            35          9
8778     2            35         10
8779     2            35         11
8780     2            35         12
8781     2            35         13
8782     2            35         14
8783     2            35         15
8784     2            35         16
8785     2            35         17
8786     2            35         18
8787     2            35         19
8788     2            35         20
8789     2            35         21
8790     2            35         22
8791     2            35         23
8792     2            35         24
8793     2            35         25
8794     2            35         26
8795     2            35         27
8796     2            35         28
8797     2            35         29
8798     2            35         30
8799     2            35         31
8800     2            35         32
8801     2            35         33
8802     2            35         34
8803     2            35         35
8804     2            36          1
8805     2            36          2
8806     2            36          3
8807     2            36          4
8808     2            36          5
8809     2            36          6
8810     2            36          7
8811     2            36          8
8812     2            36          9
8813     2            36         10
8814     2            36         11
8815     2            36         12
8816     2            36         13
8817     2            36         14
8818     2            36         15
8819     2            36         16
8820     2            36         17
8821     2            36         18
8822     2            36         19
8823     2            36         20
8824     2            36         21
8825     2            36         22
8826     2            36         23
8827     2            36         24
8828     2            36         25
8829     2            36         26
8830     2            36         27
8831     2            36         28
8832     2            36         29
8833     2            36         30
8834     2            36         31
8835     2            36         32
8836     2            36         33
8837     2            36         34
8838     2            36         35
8839     2            36         36
8840     2            36         37
8841     2            36         38
8842     2            37          1
8843     2            37          2
8844     2            37          3
8845     2            37          4
8846     2            37          5
8847     2            37          6
8848     2            37          7
8849     2            37          8
8850     2            37          9
8851     2            37         10
8852     2            37         11
8853     2            37         12
8854     2            37         13
8855     2            37         14
8856     2            37         15
8857     2            37         16
8858     2            37         17
8859     2            37         18
8860     2            37         19
8861     2            37         20
8862     2            37         21
8863     2            37         22
8864     2            37         23
8865     2            37         24
8866     2            37         25
8867     2            37         26
8868     2            37         27
8869     2            37         28
8870     2            37         29
8871     2            38          1
8872     2            38          2
8873     2            38          3
8874     2            38          4
8875     2            38          5
8876     2            38          6
8877     2            38          7
8878     2            38          8
8879     2            38          9
8880     2            38         10
8881     2            38         11
8882     2            38         12
8883     2            38         13
8884     2            38         14
8885     2            38         15
8886     2            38         16
8887     2            38         17
8888     2            38         18
8889     2            38         19
8890     2            38         20
8891     2            38         21
8892     2            38         22
8893     2            38         23
8894     2            38         24
8895     2            38         25
8896     2            38         26
8897     2            38         27
8898     2            38         28
8899     2            38         29
8900     2            38         30
8901     2            38         31
8902     2            39          1
8903     2            39          2
8904     2            39          3
8905     2            39          4
8906     2            39          5
8907     2            39          6
8908     2            39          7
8909     2            39          8
8910     2            39          9
8911     2            39         10
8912     2            39         11
8913     2            39         12
8914     2            39         13
8915     2            39         14
8916     2            39         15
8917     2            39         16
8918     2            39         17
8919     2            39         18
8920     2            39         19
8921     2            39         20
8922     2            39         21
8923     2            39         22
8924     2            39         23
8925     2            39         24
8926     2            39         25
8927     2            39         26
8928     2            39         27
8929     2            39         28
8930     2            39         29
8931     2            39         30
8932     2            39         31
8933     2            39         32
8934     2            39         33
8935     2            39         34
8936     2            39         35
8937     2            39         36
8938     2            39         37
8939     2            39         38
8940     2            39         39
8941     2            39         40
8942     2            39         41
8943     2            39         42
8944     2            39         43
8945     2            40          1
8946     2            40          2
8947     2            40          3
8948     2            40          4
8949     2            40          5
8950     2            40          6
8951     2            40          7
8952     2            40          8
8953     2            40          9
8954     2            40         10
8955     2            40         11
8956     2            40         12
8957     2            40         13
8958     2            40         14
8959     2            40         15
8960     2            40         16
8961     2            40         17
8962     2            40         18
8963     2            40         19
8964     2            40         20
8965     2            40         21
8966     2            40         22
8967     2            40         23
8968     2            40         24
8969     2            40         25
8970     2            40         26
8971     2            40         27
8972     2            40         28
8973     2            40         29
8974     2            40         30
8975     2            40         31
8976     2            40         32
8977     2            40         33
8978     2            40         34
8979     2            40         35
8980     2            40         36
8981     2            40         37
8982     2            40         38
8983     3             1          1
8984     3             1          2
8985     3             1          3
8986     3             1          4
8987     3             1          5
8988     3             1          6
8989     3             1          7
8990     3             1          8
8991     3             1          9
8992     3             1         10
8993     3             1         11
8994     3             1         12
8995     3             1         13
8996     3             1         14
8997     3             1         15
8998     3             1         16
8999     3             1         17
9000     3             2          1
9001     3             2          2
9002     3             2          3
9003     3             2          4
9004     3             2          5
9005     3             2          6
9006     3             2          7
9007     3             2          8
9008     3             2          9
9009     3             2         10
9010     3             2         11
9011     3             2         12
9012     3             2         13
9013     3             2         14
9014     3             2         15
9015     3             2         16
9016     3             3          1
9017     3             3          2
9018     3             3          3
9019     3             3          4
9020     3             3          5
9021     3             3          6
9022     3             3          7
9023     3             3          8
9024     3             3          9
9025     3             3         10
9026     3             3         11
9027     3             3         12
9028     3             3         13
9029     3             3         14
9030     3             3         15
9031     3             3         16
9032     3             3         17
9033     3             4          1
9034     3             4          2
9035     3             4          3
9036     3             4          4
9037     3             4          5
9038     3             4          6
9039     3             4          7
9040     3             4          8
9041     3             4          9
9042     3             4         10
9043     3             4         11
9044     3             4         12
9045     3             4         13
9046     3             4         14
9047     3             4         15
9048     3             4         16
9049     3             4         17
9050     3             4         18
9051     3             4         19
9052     3             4         20
9053     3             4         21
9054     3             4         22
9055     3             4         23
9056     3             4         24
9057     3             4         25
9058     3             4         26
9059     3             4         27
9060     3             4         28
9061     3             4         29
9062     3             4         30
9063     3             4         31
9064     3             4         32
9065     3             4         33
9066     3             4         34
9067     3             4         35
9068     3             5          1
9069     3             5          2
9070     3             5          3
9071     3             5          4
9072     3             5          5
9073     3             5          6
9074     3             5          7
9075     3             5          8
9076     3             5          9
9077     3             5         10
9078     3             5         11
9079     3             5         12
9080     3             5         13
9081     3             5         14
9082     3             5         15
9083     3             5         16
9084     3             5         17
9085     3             5         18
9086     3             5         19
9087     3             6          1
9088     3             6          2
9089     3             6          3
9090     3             6          4
9091     3             6          5
9092     3             6          6
9093     3             6          7
9094     3             6          8
9095     3             6          9
9096     3             6         10
9097     3             6         11
9098     3             6         12
9099     3             6         13
9100     3             6         14
9101     3             6         15
9102     3             6         16
9103     3             6         17
9104     3             6         18
9105     3             6         19
9106     3             6         20
9107     3             6         21
9108     3             6         22
9109     3             6         23
9110     3             6         24
9111     3             6         25
9112     3             6         26
9113     3             6         27
9114     3             6         28
9115     3             6         29
9116     3             6         30
9117     3             7          1
9118     3             7          2
9119     3             7          3
9120     3             7          4
9121     3             7          5
9122     3             7          6
9123     3             7          7
9124     3             7          8
9125     3             7          9
9126     3             7         10
9127     3             7         11
9128     3             7         12
9129     3             7         13
9130     3             7         14
9131     3             7         15
9132     3             7         16
9133     3             7         17
9134     3             7         18
9135     3             7         19
9136     3             7         20
9137     3             7         21
9138     3             7         22
9139     3             7         23
9140     3             7         24
9141     3             7         25
9142     3             7         26
9143     3             7         27
9144     3             7         28
9145     3             7         29
9146     3             7         30
9147     3             7         31
9148     3             7         32
9149     3             7         33
9150     3             7         34
9151     3             7         35
9152     3             7         36
9153     3             7         37
9154     3             7         38
9155     3             8          1
9156     3             8          2
9157     3             8          3
9158     3             8          4
9159     3             8          5
9160     3             8          6
9161     3             8          7
9162     3             8          8
9163     3             8          9
9164     3             8         10
9165     3             8         11
9166     3             8         12
9167     3             8         13
9168     3             8         14
9169     3             8         15
9170     3             8         16
9171     3             8         17
9172     3             8         18
9173     3             8         19
9174     3             8         20
9175     3             8         21
9176     3             8         22
9177     3             8         23
9178     3             8         24
9179     3             8         25
9180     3             8         26
9181     3             8         27
9182     3             8         28
9183     3             8         29
9184     3             8         30
9185     3             8         31
9186     3             8         32
9187     3             8         33
9188     3             8         34
9189     3             8         35
9190     3             8         36
9191     3             9          1
9192     3             9          2
9193     3             9          3
9194     3             9          4
9195     3             9          5
9196     3             9          6
9197     3             9          7
9198     3             9          8
9199     3             9          9
9200     3             9         10
9201     3             9         11
9202     3             9         12
9203     3             9         13
9204     3             9         14
9205     3             9         15
9206     3             9         16
9207     3             9         17
9208     3             9         18
9209     3             9         19
9210     3             9         20
9211     3             9         21
9212     3             9         22
9213     3             9         23
9214     3             9         24
9215     3            10          1
9216     3            10          2
9217     3            10          3
9218     3            10          4
9219     3            10          5
9220     3            10          6
9221     3            10          7
9222     3            10          8
9223     3            10          9
9224     3            10         10
9225     3            10         11
9226     3            10         12
9227     3            10         13
9228     3            10         14
9229     3            10         15
9230     3            10         16
9231     3            10         17
9232     3            10         18
9233     3            10         19
9234     3            10         20
9235     3            11          1
9236     3            11          2
9237     3            11          3
9238     3            11          4
9239     3            11          5
9240     3            11          6
9241     3            11          7
9242     3            11          8
9243     3            11          9
9244     3            11         10
9245     3            11         11
9246     3            11         12
9247     3            11         13
9248     3            11         14
9249     3            11         15
9250     3            11         16
9251     3            11         17
9252     3            11         18
9253     3            11         19
9254     3            11         20
9255     3            11         21
9256     3            11         22
9257     3            11         23
9258     3            11         24
9259     3            11         25
9260     3            11         26
9261     3            11         27
9262     3            11         28
9263     3            11         29
9264     3            11         30
9265     3            11         31
9266     3            11         32
9267     3            11         33
9268     3            11         34
9269     3            11         35
9270     3            11         36
9271     3            11         37
9272     3            11         38
9273     3            11         39
9274     3            11         40
9275     3            11         41
9276     3            11         42
9277     3            11         43
9278     3            11         44
9279     3            11         45
9280     3            11         46
9281     3            11         47
9282     3            12          1
9283     3            12          2
9284     3            12          3
9285     3            12          4
9286     3            12          5
9287     3            12          6
9288     3            12          7
9289     3            12          8
9290     3            13          1
9291     3            13          2
9292     3            13          3
9293     3            13          4
9294     3            13          5
9295     3            13          6
9296     3            13          7
9297     3            13          8
9298     3            13          9
9299     3            13         10
9300     3            13         11
9301     3            13         12
9302     3            13         13
9303     3            13         14
9304     3            13         15
9305     3            13         16
9306     3            13         17
9307     3            13         18
9308     3            13         19
9309     3            13         20
9310     3            13         21
9311     3            13         22
9312     3            13         23
9313     3            13         24
9314     3            13         25
9315     3            13         26
9316     3            13         27
9317     3            13         28
9318     3            13         29
9319     3            13         30
9320     3            13         31
9321     3            13         32
9322     3            13         33
9323     3            13         34
9324     3            13         35
9325     3            13         36
9326     3            13         37
9327     3            13         38
9328     3            13         39
9329     3            13         40
9330     3            13         41
9331     3            13         42
9332     3            13         43
9333     3            13         44
9334     3            13         45
9335     3            13         46
9336     3            13         47
9337     3            13         48
9338     3            13         49
9339     3            13         50
9340     3            13         51
9341     3            13         52
9342     3            13         53
9343     3            13         54
9344     3            13         55
9345     3            13         56
9346     3            13         57
9347     3            13         58
9348     3            13         59
9349     3            14          1
9350     3            14          2
9351     3            14          3
9352     3            14          4
9353     3            14          5
9354     3            14          6
9355     3            14          7
9356     3            14          8
9357     3            14          9
9358     3            14         10
9359     3            14         11
9360     3            14         12
9361     3            14         13
9362     3            14         14
9363     3            14         15
9364     3            14         16
9365     3            14         17
9366     3            14         18
9367     3            14         19
9368     3            14         20
9369     3            14         21
9370     3            14         22
9371     3            14         23
9372     3            14         24
9373     3            14         25
9374     3            14         26
9375     3            14         27
9376     3            14         28
9377     3            14         29
9378     3            14         30
9379     3            14         31
9380     3            14         32
9381     3            14         33
9382     3            14         34
9383     3            14         35
9384     3            14         36
9385     3            14         37
9386     3            14         38
9387     3            14         39
9388     3            14         40
9389     3            14         41
9390     3            14         42
9391     3            14         43
9392     3            14         44
9393     3            14         45
9394     3            14         46
9395     3            14         47
9396     3            14         48
9397     3            14         49
9398     3            14         50
9399     3            14         51
9400     3            14         52
9401     3            14         53
9402     3            14         54
9403     3            14         55
9404     3            14         56
9405     3            14         57
9406     3            15          1
9407     3            15          2
9408     3            15          3
9409     3            15          4
9410     3            15          5
9411     3            15          6
9412     3            15          7
9413     3            15          8
9414     3            15          9
9415     3            15         10
9416     3            15         11
9417     3            15         12
9418     3            15         13
9419     3            15         14
9420     3            15         15
9421     3            15         16
9422     3            15         17
9423     3            15         18
9424     3            15         19
9425     3            15         20
9426     3            15         21
9427     3            15         22
9428     3            15         23
9429     3            15         24
9430     3            15         25
9431     3            15         26
9432     3            15         27
9433     3            15         28
9434     3            15         29
9435     3            15         30
9436     3            15         31
9437     3            15         32
9438     3            15         33
9439     3            16          1
9440     3            16          2
9441     3            16          3
9442     3            16          4
9443     3            16          5
9444     3            16          6
9445     3            16          7
9446     3            16          8
9447     3            16          9
9448     3            16         10
9449     3            16         11
9450     3            16         12
9451     3            16         13
9452     3            16         14
9453     3            16         15
9454     3            16         16
9455     3            16         17
9456     3            16         18
9457     3            16         19
9458     3            16         20
9459     3            16         21
9460     3            16         22
9461     3            16         23
9462     3            16         24
9463     3            16         25
9464     3            16         26
9465     3            16         27
9466     3            16         28
9467     3            16         29
9468     3            16         30
9469     3            16         31
9470     3            16         32
9471     3            16         33
9472     3            16         34
9473     3            17          1
9474     3            17          2
9475     3            17          3
9476     3            17          4
9477     3            17          5
9478     3            17          6
9479     3            17          7
9480     3            17          8
9481     3            17          9
9482     3            17         10
9483     3            17         11
9484     3            17         12
9485     3            17         13
9486     3            17         14
9487     3            17         15
9488     3            17         16
9489     3            18          1
9490     3            18          2
9491     3            18          3
9492     3            18          4
9493     3            18          5
9494     3            18          6
9495     3            18          7
9496     3            18          8
9497     3            18          9
9498     3            18         10
9499     3            18         11
9500     3            18         12
9501     3            18         13
9502     3            18         14
9503     3            18         15
9504     3            18         16
9505     3            18         17
9506     3            18         18
9507     3            18         19
9508     3            18         20
9509     3            18         21
9510     3            18         22
9511     3            18         23
9512     3            18         24
9513     3            18         25
9514     3            18         26
9515     3            18         27
9516     3            18         28
9517     3            18         29
9518     3            18         30
9519     3            19          1
9520     3            19          2
9521     3            19          3
9522     3            19          4
9523     3            19          5
9524     3            19          6
9525     3            19          7
9526     3            19          8
9527     3            19          9
9528     3            19         10
9529     3            19         11
9530     3            19         12
9531     3            19         13
9532     3            19         14
9533     3            19         15
9534     3            19         16
9535     3            19         17
9536     3            19         18
9537     3            19         19
9538     3            19         20
9539     3            19         21
9540     3            19         22
9541     3            19         23
9542     3            19         24
9543     3            19         25
9544     3            19         26
9545     3            19         27
9546     3            19         28
9547     3            19         29
9548     3            19         30
9549     3            19         31
9550     3            19         32
9551     3            19         33
9552     3            19         34
9553     3            19         35
9554     3            19         36
9555     3            19         37
9556     3            20          1
9557     3            20          2
9558     3            20          3
9559     3            20          4
9560     3            20          5
9561     3            20          6
9562     3            20          7
9563     3            20          8
9564     3            20          9
9565     3            20         10
9566     3            20         11
9567     3            20         12
9568     3            20         13
9569     3            20         14
9570     3            20         15
9571     3            20         16
9572     3            20         17
9573     3            20         18
9574     3            20         19
9575     3            20         20
9576     3            20         21
9577     3            20         22
9578     3            20         23
9579     3            20         24
9580     3            20         25
9581     3            20         26
9582     3            20         27
9583     3            21          1
9584     3            21          2
9585     3            21          3
9586     3            21          4
9587     3            21          5
9588     3            21          6
9589     3            21          7
9590     3            21          8
9591     3            21          9
9592     3            21         10
9593     3            21         11
9594     3            21         12
9595     3            21         13
9596     3            21         14
9597     3            21         15
9598     3            21         16
9599     3            21         17
9600     3            21         18
9601     3            21         19
9602     3            21         20
9603     3            21         21
9604     3            21         22
9605     3            21         23
9606     3            21         24
9607     3            22          1
9608     3            22          2
9609     3            22          3
9610     3            22          4
9611     3            22          5
9612     3            22          6
9613     3            22          7
9614     3            22          8
9615     3            22          9
9616     3            22         10
9617     3            22         11
9618     3            22         12
9619     3            22         13
9620     3            22         14
9621     3            22         15
9622     3            22         16
9623     3            22         17
9624     3            22         18
9625     3            22         19
9626     3            22         20
9627     3            22         21
9628     3            22         22
9629     3            22         23
9630     3            22         24
9631     3            22         25
9632     3            22         26
9633     3            22         27
9634     3            22         28
9635     3            22         29
9636     3            22         30
9637     3            22         31
9638     3            22         32
9639     3            22         33
9640     3            23          1
9641     3            23          2
9642     3            23          3
9643     3            23          4
9644     3            23          5
9645     3            23          6
9646     3            23          7
9647     3            23          8
9648     3            23          9
9649     3            23         10
9650     3            23         11
9651     3            23         12
9652     3            23         13
9653     3            23         14
9654     3            23         15
9655     3            23         16
9656     3            23         17
9657     3            23         18
9658     3            23         19
9659     3            23         20
9660     3            23         21
9661     3            23         22
9662     3            23         23
9663     3            23         24
9664     3            23         25
9665     3            23         26
9666     3            23         27
9667     3            23         28
9668     3            23         29
9669     3            23         30
9670     3            23         31
9671     3            23         32
9672     3            23         33
9673     3            23         34
9674     3            23         35
9675     3            23         36
9676     3            23         37
9677     3            23         38
9678     3            23         39
9679     3            23         40
9680     3            23         41
9681     3            23         42
9682     3            23         43
9683     3            23         44
9684     3            24          1
9685     3            24          2
9686     3            24          3
9687     3            24          4
9688     3            24          5
9689     3            24          6
9690     3            24          7
9691     3            24          8
9692     3            24          9
9693     3            24         10
9694     3            24         11
9695     3            24         12
9696     3            24         13
9697     3            24         14
9698     3            24         15
9699     3            24         16
9700     3            24         17
9701     3            24         18
9702     3            24         19
9703     3            24         20
9704     3            24         21
9705     3            24         22
9706     3            24         23
9707     3            25          1
9708     3            25          2
9709     3            25          3
9710     3            25          4
9711     3            25          5
9712     3            25          6
9713     3            25          7
9714     3            25          8
9715     3            25          9
9716     3            25         10
9717     3            25         11
9718     3            25         12
9719     3            25         13
9720     3            25         14
9721     3            25         15
9722     3            25         16
9723     3            25         17
9724     3            25         18
9725     3            25         19
9726     3            25         20
9727     3            25         21
9728     3            25         22
9729     3            25         23
9730     3            25         24
9731     3            25         25
9732     3            25         26
9733     3            25         27
9734     3            25         28
9735     3            25         29
9736     3            25         30
9737     3            25         31
9738     3            25         32
9739     3            25         33
9740     3            25         34
9741     3            25         35
9742     3            25         36
9743     3            25         37
9744     3            25         38
9745     3            25         39
9746     3            25         40
9747     3            25         41
9748     3            25         42
9749     3            25         43
9750     3            25         44
9751     3            25         45
9752     3            25         46
9753     3            25         47
9754     3            25         48
9755     3            25         49
9756     3            25         50
9757     3            25         51
9758     3            25         52
9759     3            25         53
9760     3            25         54
9761     3            25         55
9762     3            26          1
9763     3            26          2
9764     3            26          3
9765     3            26          4
9766     3            26          5
9767     3            26          6
9768     3            26          7
9769     3            26          8
9770     3            26          9
9771     3            26         10
9772     3            26         11
9773     3            26         12
9774     3            26         13
9775     3            26         14
9776     3            26         15
9777     3            26         16
9778     3            26         17
9779     3            26         18
9780     3            26         19
9781     3            26         20
9782     3            26         21
9783     3            26         22
9784     3            26         23
9785     3            26         24
9786     3            26         25
9787     3            26         26
9788     3            26         27
9789     3            26         28
9790     3            26         29
9791     3            26         30
9792     3            26         31
9793     3            26         32
9794     3            26         33
9795     3            26         34
9796     3            26         35
9797     3            26         36
9798     3            26         37
9799     3            26         38
9800     3            26         39
9801     3            26         40
9802     3            26         41
9803     3            26         42
9804     3            26         43
9805     3            26         44
9806     3            26         45
9807     3            26         46
9808     3            27          1
9809     3            27          2
9810     3            27          3
9811     3            27          4
9812     3            27          5
9813     3            27          6
9814     3            27          7
9815     3            27          8
9816     3            27          9
9817     3            27         10
9818     3            27         11
9819     3            27         12
9820     3            27         13
9821     3            27         14
9822     3            27         15
9823     3            27         16
9824     3            27         17
9825     3            27         18
9826     3            27         19
9827     3            27         20
9828     3            27         21
9829     3            27         22
9830     3            27         23
9831     3            27         24
9832     3            27         25
9833     3            27         26
9834     3            27         27
9835     3            27         28
9836     3            27         29
9837     3            27         30
9838     3            27         31
9839     3            27         32
9840     3            27         33
9841     3            27         34
9842     4             1          1
9843     4             1          2
9844     4             1          3
9845     4             1          4
9846     4             1          5
9847     4             1          6
9848     4             1          7
9849     4             1          8
9850     4             1          9
9851     4             1         10
9852     4             1         11
9853     4             1         12
9854     4             1         13
9855     4             1         14
9856     4             1         15
9857     4             1         16
9858     4             1         17
9859     4             1         18
9860     4             1         19
9861     4             1         20
9862     4             1         21
9863     4             1         22
9864     4             1         23
9865     4             1         24
9866     4             1         25
9867     4             1         26
9868     4             1         27
9869     4             1         28
9870     4             1         29
9871     4             1         30
9872     4             1         31
9873     4             1         32
9874     4             1         33
9875     4             1         34
9876     4             1         35
9877     4             1         36
9878     4             1         37
9879     4             1         38
9880     4             1         39
9881     4             1         40
9882     4             1         41
9883     4             1         42
9884     4             1         43
9885     4             1         44
9886     4             1         45
9887     4             1         46
9888     4             1         47
9889     4             1         48
9890     4             1         49
9891     4             1         50
9892     4             1         51
9893     4             1         52
9894     4             1         53
9895     4             1         54
9896     4             2          1
9897     4             2          2
9898     4             2          3
9899     4             2          4
9900     4             2          5
9901     4             2          6
9902     4             2          7
9903     4             2          8
9904     4             2          9
9905     4             2         10
9906     4             2         11
9907     4             2         12
9908     4             2         13
9909     4             2         14
9910     4             2         15
9911     4             2         16
9912     4             2         17
9913     4             2         18
9914     4             2         19
9915     4             2         20
9916     4             2         21
9917     4             2         22
9918     4             2         23
9919     4             2         24
9920     4             2         25
9921     4             2         26
9922     4             2         27
9923     4             2         28
9924     4             2         29
9925     4             2         30
9926     4             2         31
9927     4             2         32
9928     4             2         33
9929     4             2         34
9930     4             3          1
9931     4             3          2
9932     4             3          3
9933     4             3          4
9934     4             3          5
9935     4             3          6
9936     4             3          7
9937     4             3          8
9938     4             3          9
9939     4             3         10
9940     4             3         11
9941     4             3         12
9942     4             3         13
9943     4             3         14
9944     4             3         15
9945     4             3         16
9946     4             3         17
9947     4             3         18
9948     4             3         19
9949     4             3         20
9950     4             3         21
9951     4             3         22
9952     4             3         23
9953     4             3         24
9954     4             3         25
9955     4             3         26
9956     4             3         27
9957     4             3         28
9958     4             3         29
9959     4             3         30
9960     4             3         31
9961     4             3         32
9962     4             3         33
9963     4             3         34
9964     4             3         35
9965     4             3         36
9966     4             3         37
9967     4             3         38
9968     4             3         39
9969     4             3         40
9970     4             3         41
9971     4             3         42
9972     4             3         43
9973     4             3         44
9974     4             3         45
9975     4             3         46
9976     4             3         47
9977     4             3         48
9978     4             3         49
9979     4             3         50
9980     4             3         51
9981     4             4          1
9982     4             4          2
9983     4             4          3
9984     4             4          4
9985     4             4          5
9986     4             4          6
9987     4             4          7
9988     4             4          8
9989     4             4          9
9990     4             4         10
9991     4             4         11
9992     4             4         12
9993     4             4         13
9994     4             4         14
9995     4             4         15
9996     4             4         16
9997     4             4         17
9998     4             4         18
9999     4             4         19
10000    4             4         20
10001    4             4         21
10002    4             4         22
10003    4             4         23
10004    4             4         24
10005    4             4         25
10006    4             4         26
10007    4             4         27
10008    4             4         28
10009    4             4         29
10010    4             4         30
10011    4             4         31
10012    4             4         32
10013    4             4         33
10014    4             4         34
10015    4             4         35
10016    4             4         36
10017    4             4         37
10018    4             4         38
10019    4             4         39
10020    4             4         40
10021    4             4         41
10022    4             4         42
10023    4             4         43
10024    4             4         44
10025    4             4         45
10026    4             4         46
10027    4             4         47
10028    4             4         48
10029    4             4         49
10030    4             5          1
10031    4             5          2
10032    4             5          3
10033    4             5          4
10034    4             5          5
10035    4             5          6
10036    4             5          7
10037    4             5          8
10038    4             5          9
10039    4             5         10
10040    4             5         11
10041    4             5         12
10042    4             5         13
10043    4             5         14
10044    4             5         15
10045    4             5         16
10046    4             5         17
10047    4             5         18
10048    4             5         19
10049    4             5         20
10050    4             5         21
10051    4             5         22
10052    4             5         23
10053    4             5         24
10054    4             5         25
10055    4             5         26
10056    4             5         27
10057    4             5         28
10058    4             5         29
10059    4             5         30
10060    4             5         31
10061    4             6          1
10062    4             6          2
10063    4             6          3
10064    4             6          4
10065    4             6          5
10066    4             6          6
10067    4             6          7
10068    4             6          8
10069    4             6          9
10070    4             6         10
10071    4             6         11
10072    4             6         12
10073    4             6         13
10074    4             6         14
10075    4             6         15
10076    4             6         16
10077    4             6         17
10078    4             6         18
10079    4             6         19
10080    4             6         20
10081    4             6         21
10082    4             6         22
10083    4             6         23
10084    4             6         24
10085    4             6         25
10086    4             6         26
10087    4             6         27
10088    4             7          1
10089    4             7          2
10090    4             7          3
10091    4             7          4
10092    4             7          5
10093    4             7          6
10094    4             7          7
10095    4             7          8
10096    4             7          9
10097    4             7         10
10098    4             7         11
10099    4             7         12
10100    4             7         13
10101    4             7         14
10102    4             7         15
10103    4             7         16
10104    4             7         17
10105    4             7         18
10106    4             7         19
10107    4             7         20
10108    4             7         21
10109    4             7         22
10110    4             7         23
10111    4             7         24
10112    4             7         25
10113    4             7         26
10114    4             7         27
10115    4             7         28
10116    4             7         29
10117    4             7         30
10118    4             7         31
10119    4             7         32
10120    4             7         33
10121    4             7         34
10122    4             7         35
10123    4             7         36
10124    4             7         37
10125    4             7         38
10126    4             7         39
10127    4             7         40
10128    4             7         41
10129    4             7         42
10130    4             7         43
10131    4             7         44
10132    4             7         45
10133    4             7         46
10134    4             7         47
10135    4             7         48
10136    4             7         49
10137    4             7         50
10138    4             7         51
10139    4             7         52
10140    4             7         53
10141    4             7         54
10142    4             7         55
10143    4             7         56
10144    4             7         57
10145    4             7         58
10146    4             7         59
10147    4             7         60
10148    4             7         61
10149    4             7         62
10150    4             7         63
10151    4             7         64
10152    4             7         65
10153    4             7         66
10154    4             7         67
10155    4             7         68
10156    4             7         69
10157    4             7         70
10158    4             7         71
10159    4             7         72
10160    4             7         73
10161    4             7         74
10162    4             7         75
10163    4             7         76
10164    4             7         77
10165    4             7         78
10166    4             7         79
10167    4             7         80
10168    4             7         81
10169    4             7         82
10170    4             7         83
10171    4             7         84
10172    4             7         85
10173    4             7         86
10174    4             7         87
10175    4             7         88
10176    4             7         89
10177    4             8          1
10178    4             8          2
10179    4             8          3
10180    4             8          4
10181    4             8          5
10182    4             8          6
10183    4             8          7
10184    4             8          8
10185    4             8          9
10186    4             8         10
10187    4             8         11
10188    4             8         12
10189    4             8         13
10190    4             8         14
10191    4             8         15
10192    4             8         16
10193    4             8         17
10194    4             8         18
10195    4             8         19
10196    4             8         20
10197    4             8         21
10198    4             8         22
10199    4             8         23
10200    4             8         24
10201    4             8         25
10202    4             8         26
10203    4             9          1
10204    4             9          2
10205    4             9          3
10206    4             9          4
10207    4             9          5
10208    4             9          6
10209    4             9          7
10210    4             9          8
10211    4             9          9
10212    4             9         10
10213    4             9         11
10214    4             9         12
10215    4             9         13
10216    4             9         14
10217    4             9         15
10218    4             9         16
10219    4             9         17
10220    4             9         18
10221    4             9         19
10222    4             9         20
10223    4             9         21
10224    4             9         22
10225    4             9         23
10226    4            10          1
10227    4            10          2
10228    4            10          3
10229    4            10          4
10230    4            10          5
10231    4            10          6
10232    4            10          7
10233    4            10          8
10234    4            10          9
10235    4            10         10
10236    4            10         11
10237    4            10         12
10238    4            10         13
10239    4            10         14
10240    4            10         15
10241    4            10         16
10242    4            10         17
10243    4            10         18
10244    4            10         19
10245    4            10         20
10246    4            10         21
10247    4            10         22
10248    4            10         23
10249    4            10         24
10250    4            10         25
10251    4            10         26
10252    4            10         27
10253    4            10         28
10254    4            10         29
10255    4            10         30
10256    4            10         31
10257    4            10         32
10258    4            10         33
10259    4            10         34
10260    4            10         35
10261    4            10         36
10262    4            11          1
10263    4            11          2
10264    4            11          3
10265    4            11          4
10266    4            11          5
10267    4            11          6
10268    4            11          7
10269    4            11          8
10270    4            11          9
10271    4            11         10
10272    4            11         11
10273    4            11         12
10274    4            11         13
10275    4            11         14
10276    4            11         15
10277    4            11         16
10278    4            11         17
10279    4            11         18
10280    4            11         19
10281    4            11         20
10282    4            11         21
10283    4            11         22
10284    4            11         23
10285    4            11         24
10286    4            11         25
10287    4            11         26
10288    4            11         27
10289    4            11         28
10290    4            11         29
10291    4            11         30
10292    4            11         31
10293    4            11         32
10294    4            11         33
10295    4            11         34
10296    4            11         35
10297    4            12          1
10298    4            12          2
10299    4            12          3
10300    4            12          4
10301    4            12          5
10302    4            12          6
10303    4            12          7
10304    4            12          8
10305    4            12          9
10306    4            12         10
10307    4            12         11
10308    4            12         12
10309    4            12         13
10310    4            12         14
10311    4            12         15
10312    4            12         16
10313    4            13          1
10314    4            13          2
10315    4            13          3
10316    4            13          4
10317    4            13          5
10318    4            13          6
10319    4            13          7
10320    4            13          8
10321    4            13          9
10322    4            13         10
10323    4            13         11
10324    4            13         12
10325    4            13         13
10326    4            13         14
10327    4            13         15
10328    4            13         16
10329    4            13         17
10330    4            13         18
10331    4            13         19
10332    4            13         20
10333    4            13         21
10334    4            13         22
10335    4            13         23
10336    4            13         24
10337    4            13         25
10338    4            13         26
10339    4            13         27
10340    4            13         28
10341    4            13         29
10342    4            13         30
10343    4            13         31
10344    4            13         32
10345    4            13         33
10346    4            14          1
10347    4            14          2
10348    4            14          3
10349    4            14          4
10350    4            14          5
10351    4            14          6
10352    4            14          7
10353    4            14          8
10354    4            14          9
10355    4            14         10
10356    4            14         11
10357    4            14         12
10358    4            14         13
10359    4            14         14
10360    4            14         15
10361    4            14         16
10362    4            14         17
10363    4            14         18
10364    4            14         19
10365    4            14         20
10366    4            14         21
10367    4            14         22
10368    4            14         23
10369    4            14         24
10370    4            14         25
10371    4            14         26
10372    4            14         27
10373    4            14         28
10374    4            14         29
10375    4            14         30
10376    4            14         31
10377    4            14         32
10378    4            14         33
10379    4            14         34
10380    4            14         35
10381    4            14         36
10382    4            14         37
10383    4            14         38
10384    4            14         39
10385    4            14         40
10386    4            14         41
10387    4            14         42
10388    4            14         43
10389    4            14         44
10390    4            14         45
10391    4            15          1
10392    4            15          2
10393    4            15          3
10394    4            15          4
10395    4            15          5
10396    4            15          6
10397    4            15          7
10398    4            15          8
10399    4            15          9
10400    4            15         10
10401    4            15         11
10402    4            15         12
10403    4            15         13
10404    4            15         14
10405    4            15         15
10406    4            15         16
10407    4            15         17
10408    4            15         18
10409    4            15         19
10410    4            15         20
10411    4            15         21
10412    4            15         22
10413    4            15         23
10414    4            15         24
10415    4            15         25
10416    4            15         26
10417    4            15         27
10418    4            15         28
10419    4            15         29
10420    4            15         30
10421    4            15         31
10422    4            15         32
10423    4            15         33
10424    4            15         34
10425    4            15         35
10426    4            15         36
10427    4            15         37
10428    4            15         38
10429    4            15         39
10430    4            15         40
10431    4            15         41
10432    4            16          1
10433    4            16          2
10434    4            16          3
10435    4            16          4
10436    4            16          5
10437    4            16          6
10438    4            16          7
10439    4            16          8
10440    4            16          9
10441    4            16         10
10442    4            16         11
10443    4            16         12
10444    4            16         13
10445    4            16         14
10446    4            16         15
10447    4            16         16
10448    4            16         17
10449    4            16         18
10450    4            16         19
10451    4            16         20
10452    4            16         21
10453    4            16         22
10454    4            16         23
10455    4            16         24
10456    4            16         25
10457    4            16         26
10458    4            16         27
10459    4            16         28
10460    4            16         29
10461    4            16         30
10462    4            16         31
10463    4            16         32
10464    4            16         33
10465    4            16         34
10466    4            16         35
10467    4            16         36
10468    4            16         37
10469    4            16         38
10470    4            16         39
10471    4            16         40
10472    4            16         41
10473    4            16         42
10474    4            16         43
10475    4            16         44
10476    4            16         45
10477    4            16         46
10478    4            16         47
10479    4            16         48
10480    4            16         49
10481    4            16         50
10482    4            17          1
10483    4            17          2
10484    4            17          3
10485    4            17          4
10486    4            17          5
10487    4            17          6
10488    4            17          7
10489    4            17          8
10490    4            17          9
10491    4            17         10
10492    4            17         11
10493    4            17         12
10494    4            17         13
10495    4            18          1
10496    4            18          2
10497    4            18          3
10498    4            18          4
10499    4            18          5
10500    4            18          6
10501    4            18          7
10502    4            18          8
10503    4            18          9
10504    4            18         10
10505    4            18         11
10506    4            18         12
10507    4            18         13
10508    4            18         14
10509    4            18         15
10510    4            18         16
10511    4            18         17
10512    4            18         18
10513    4            18         19
10514    4            18         20
10515    4            18         21
10516    4            18         22
10517    4            18         23
10518    4            18         24
10519    4            18         25
10520    4            18         26
10521    4            18         27
10522    4            18         28
10523    4            18         29
10524    4            18         30
10525    4            18         31
10526    4            18         32
10527    4            19          1
10528    4            19          2
10529    4            19          3
10530    4            19          4
10531    4            19          5
10532    4            19          6
10533    4            19          7
10534    4            19          8
10535    4            19          9
10536    4            19         10
10537    4            19         11
10538    4            19         12
10539    4            19         13
10540    4            19         14
10541    4            19         15
10542    4            19         16
10543    4            19         17
10544    4            19         18
10545    4            19         19
10546    4            19         20
10547    4            19         21
10548    4            19         22
10549    4            20          1
10550    4            20          2
10551    4            20          3
10552    4            20          4
10553    4            20          5
10554    4            20          6
10555    4            20          7
10556    4            20          8
10557    4            20          9
10558    4            20         10
10559    4            20         11
10560    4            20         12
10561    4            20         13
10562    4            20         14
10563    4            20         15
10564    4            20         16
10565    4            20         17
10566    4            20         18
10567    4            20         19
10568    4            20         20
10569    4            20         21
10570    4            20         22
10571    4            20         23
10572    4            20         24
10573    4            20         25
10574    4            20         26
10575    4            20         27
10576    4            20         28
10577    4            20         29
10578    4            21          1
10579    4            21          2
10580    4            21          3
10581    4            21          4
10582    4            21          5
10583    4            21          6
10584    4            21          7
10585    4            21          8
10586    4            21          9
10587    4            21         10
10588    4            21         11
10589    4            21         12
10590    4            21         13
10591    4            21         14
10592    4            21         15
10593    4            21         16
10594    4            21         17
10595    4            21         18
10596    4            21         19
10597    4            21         20
10598    4            21         21
10599    4            21         22
10600    4            21         23
10601    4            21         24
10602    4            21         25
10603    4            21         26
10604    4            21         27
10605    4            21         28
10606    4            21         29
10607    4            21         30
10608    4            21         31
10609    4            21         32
10610    4            21         33
10611    4            21         34
10612    4            21         35
10613    4            22          1
10614    4            22          2
10615    4            22          3
10616    4            22          4
10617    4            22          5
10618    4            22          6
10619    4            22          7
10620    4            22          8
10621    4            22          9
10622    4            22         10
10623    4            22         11
10624    4            22         12
10625    4            22         13
10626    4            22         14
10627    4            22         15
10628    4            22         16
10629    4            22         17
10630    4            22         18
10631    4            22         19
10632    4            22         20
10633    4            22         21
10634    4            22         22
10635    4            22         23
10636    4            22         24
10637    4            22         25
10638    4            22         26
10639    4            22         27
10640    4            22         28
10641    4            22         29
10642    4            22         30
10643    4            22         31
10644    4            22         32
10645    4            22         33
10646    4            22         34
10647    4            22         35
10648    4            22         36
10649    4            22         37
10650    4            22         38
10651    4            22         39
10652    4            22         40
10653    4            22         41
10654    4            23          1
10655    4            23          2
10656    4            23          3
10657    4            23          4
10658    4            23          5
10659    4            23          6
10660    4            23          7
10661    4            23          8
10662    4            23          9
10663    4            23         10
10664    4            23         11
10665    4            23         12
10666    4            23         13
10667    4            23         14
10668    4            23         15
10669    4            23         16
10670    4            23         17
10671    4            23         18
10672    4            23         19
10673    4            23         20
10674    4            23         21
10675    4            23         22
10676    4            23         23
10677    4            23         24
10678    4            23         25
10679    4            23         26
10680    4            23         27
10681    4            23         28
10682    4            23         29
10683    4            23         30
10684    4            24          1
10685    4            24          2
10686    4            24          3
10687    4            24          4
10688    4            24          5
10689    4            24          6
10690    4            24          7
10691    4            24          8
10692    4            24          9
10693    4            24         10
10694    4            24         11
10695    4            24         12
10696    4            24         13
10697    4            24         14
10698    4            24         15
10699    4            24         16
10700    4            24         17
10701    4            24         18
10702    4            24         19
10703    4            24         20
10704    4            24         21
10705    4            24         22
10706    4            24         23
10707    4            24         24
10708    4            24         25
10709    4            25          1
10710    4            25          2
10711    4            25          3
10712    4            25          4
10713    4            25          5
10714    4            25          6
10715    4            25          7
10716    4            25          8
10717    4            25          9
10718    4            25         10
10719    4            25         11
10720    4            25         12
10721    4            25         13
10722    4            25         14
10723    4            25         15
10724    4            25         16
10725    4            25         17
10726    4            25         18
10727    4            26          1
10728    4            26          2
10729    4            26          3
10730    4            26          4
10731    4            26          5
10732    4            26          6
10733    4            26          7
10734    4            26          8
10735    4            26          9
10736    4            26         10
10737    4            26         11
10738    4            26         12
10739    4            26         13
10740    4            26         14
10741    4            26         15
10742    4            26         16
10743    4            26         17
10744    4            26         18
10745    4            26         19
10746    4            26         20
10747    4            26         21
10748    4            26         22
10749    4            26         23
10750    4            26         24
10751    4            26         25
10752    4            26         26
10753    4            26         27
10754    4            26         28
10755    4            26         29
10756    4            26         30
10757    4            26         31
10758    4            26         32
10759    4            26         33
10760    4            26         34
10761    4            26         35
10762    4            26         36
10763    4            26         37
10764    4            26         38
10765    4            26         39
10766    4            26         40
10767    4            26         41
10768    4            26         42
10769    4            26         43
10770    4            26         44
10771    4            26         45
10772    4            26         46
10773    4            26         47
10774    4            26         48
10775    4            26         49
10776    4            26         50
10777    4            26         51
10778    4            26         52
10779    4            26         53
10780    4            26         54
10781    4            26         55
10782    4            26         56
10783    4            26         57
10784    4            26         58
10785    4            26         59
10786    4            26         60
10787    4            26         61
10788    4            26         62
10789    4            26         63
10790    4            26         64
10791    4            26         65
10792    4            27          1
10793    4            27          2
10794    4            27          3
10795    4            27          4
10796    4            27          5
10797    4            27          6
10798    4            27          7
10799    4            27          8
10800    4            27          9
10801    4            27         10
10802    4            27         11
10803    4            27         12
10804    4            27         13
10805    4            27         14
10806    4            27         15
10807    4            27         16
10808    4            27         17
10809    4            27         18
10810    4            27         19
10811    4            27         20
10812    4            27         21
10813    4            27         22
10814    4            27         23
10815    4            28          1
10816    4            28          2
10817    4            28          3
10818    4            28          4
10819    4            28          5
10820    4            28          6
10821    4            28          7
10822    4            28          8
10823    4            28          9
10824    4            28         10
10825    4            28         11
10826    4            28         12
10827    4            28         13
10828    4            28         14
10829    4            28         15
10830    4            28         16
10831    4            28         17
10832    4            28         18
10833    4            28         19
10834    4            28         20
10835    4            28         21
10836    4            28         22
10837    4            28         23
10838    4            28         24
10839    4            28         25
10840    4            28         26
10841    4            28         27
10842    4            28         28
10843    4            28         29
10844    4            28         30
10845    4            28         31
10846    4            29          1
10847    4            29          2
10848    4            29          3
10849    4            29          4
10850    4            29          5
10851    4            29          6
10852    4            29          7
10853    4            29          8
10854    4            29          9
10855    4            29         10
10856    4            29         11
10857    4            29         12
10858    4            29         13
10859    4            29         14
10860    4            29         15
10861    4            29         16
10862    4            29         17
10863    4            29         18
10864    4            29         19
10865    4            29         20
10866    4            29         21
10867    4            29         22
10868    4            29         23
10869    4            29         24
10870    4            29         25
10871    4            29         26
10872    4            29         27
10873    4            29         28
10874    4            29         29
10875    4            29         30
10876    4            29         31
10877    4            29         32
10878    4            29         33
10879    4            29         34
10880    4            29         35
10881    4            29         36
10882    4            29         37
10883    4            29         38
10884    4            29         39
10885    4            29         40
10886    4            30          1
10887    4            30          2
10888    4            30          3
10889    4            30          4
10890    4            30          5
10891    4            30          6
10892    4            30          7
10893    4            30          8
10894    4            30          9
10895    4            30         10
10896    4            30         11
10897    4            30         12
10898    4            30         13
10899    4            30         14
10900    4            30         15
10901    4            30         16
10902    4            31          1
10903    4            31          2
10904    4            31          3
10905    4            31          4
10906    4            31          5
10907    4            31          6
10908    4            31          7
10909    4            31          8
10910    4            31          9
10911    4            31         10
10912    4            31         11
10913    4            31         12
10914    4            31         13
10915    4            31         14
10916    4            31         15
10917    4            31         16
10918    4            31         17
10919    4            31         18
10920    4            31         19
10921    4            31         20
10922    4            31         21
10923    4            31         22
10924    4            31         23
10925    4            31         24
10926    4            31         25
10927    4            31         26
10928    4            31         27
10929    4            31         28
10930    4            31         29
10931    4            31         30
10932    4            31         31
10933    4            31         32
10934    4            31         33
10935    4            31         34
10936    4            31         35
10937    4            31         36
10938    4            31         37
10939    4            31         38
10940    4            31         39
10941    4            31         40
10942    4            31         41
10943    4            31         42
10944    4            31         43
10945    4            31         44
10946    4            31         45
10947    4            31         46
10948    4            31         47
10949    4            31         48
10950    4            31         49
10951    4            31         50
10952    4            31         51
10953    4            31         52
10954    4            31         53
10955    4            31         54
10956    4            32          1
10957    4            32          2
10958    4            32          3
10959    4            32          4
10960    4            32          5
10961    4            32          6
10962    4            32          7
10963    4            32          8
10964    4            32          9
10965    4            32         10
10966    4            32         11
10967    4            32         12
10968    4            32         13
10969    4            32         14
10970    4            32         15
10971    4            32         16
10972    4            32         17
10973    4            32         18
10974    4            32         19
10975    4            32         20
10976    4            32         21
10977    4            32         22
10978    4            32         23
10979    4            32         24
10980    4            32         25
10981    4            32         26
10982    4            32         27
10983    4            32         28
10984    4            32         29
10985    4            32         30
10986    4            32         31
10987    4            32         32
10988    4            32         33
10989    4            32         34
10990    4            32         35
10991    4            32         36
10992    4            32         37
10993    4            32         38
10994    4            32         39
10995    4            32         40
10996    4            32         41
10997    4            32         42
10998    4            33          1
10999    4            33          2
11000    4            33          3
11001    4            33          4
11002    4            33          5
11003    4            33          6
11004    4            33          7
11005    4            33          8
11006    4            33          9
11007    4            33         10
11008    4            33         11
11009    4            33         12
11010    4            33         13
11011    4            33         14
11012    4            33         15
11013    4            33         16
11014    4            33         17
11015    4            33         18
11016    4            33         19
11017    4            33         20
11018    4            33         21
11019    4            33         22
11020    4            33         23
11021    4            33         24
11022    4            33         25
11023    4            33         26
11024    4            33         27
11025    4            33         28
11026    4            33         29
11027    4            33         30
11028    4            33         31
11029    4            33         32
11030    4            33         33
11031    4            33         34
11032    4            33         35
11033    4            33         36
11034    4            33         37
11035    4            33         38
11036    4            33         39
11037    4            33         40
11038    4            33         41
11039    4            33         42
11040    4            33         43
11041    4            33         44
11042    4            33         45
11043    4            33         46
11044    4            33         47
11045    4            33         48
11046    4            33         49
11047    4            33         50
11048    4            33         51
11049    4            33         52
11050    4            33         53
11051    4            33         54
11052    4            33         55
11053    4            33         56
11054    4            34          1
11055    4            34          2
11056    4            34          3
11057    4            34          4
11058    4            34          5
11059    4            34          6
11060    4            34          7
11061    4            34          8
11062    4            34          9
11063    4            34         10
11064    4            34         11
11065    4            34         12
11066    4            34         13
11067    4            34         14
11068    4            34         15
11069    4            34         16
11070    4            34         17
11071    4            34         18
11072    4            34         19
11073    4            34         20
11074    4            34         21
11075    4            34         22
11076    4            34         23
11077    4            34         24
11078    4            34         25
11079    4            34         26
11080    4            34         27
11081    4            34         28
11082    4            34         29
11083    4            35          1
11084    4            35          2
11085    4            35          3
11086    4            35          4
11087    4            35          5
11088    4            35          6
11089    4            35          7
11090    4            35          8
11091    4            35          9
11092    4            35         10
11093    4            35         11
11094    4            35         12
11095    4            35         13
11096    4            35         14
11097    4            35         15
11098    4            35         16
11099    4            35         17
11100    4            35         18
11101    4            35         19
11102    4            35         20
11103    4            35         21
11104    4            35         22
11105    4            35         23
11106    4            35         24
11107    4            35         25
11108    4            35         26
11109    4            35         27
11110    4            35         28
11111    4            35         29
11112    4            35         30
11113    4            35         31
11114    4            35         32
11115    4            35         33
11116    4            35         34
11117    4            36          1
11118    4            36          2
11119    4            36          3
11120    4            36          4
11121    4            36          5
11122    4            36          6
11123    4            36          7
11124    4            36          8
11125    4            36          9
11126    4            36         10
11127    4            36         11
11128    4            36         12
11129    4            36         13
11130    5             1          1
11131    5             1          2
11132    5             1          3
11133    5             1          4
11134    5             1          5
11135    5             1          6
11136    5             1          7
11137    5             1          8
11138    5             1          9
11139    5             1         10
11140    5             1         11
11141    5             1         12
11142    5             1         13
11143    5             1         14
11144    5             1         15
11145    5             1         16
11146    5             1         17
11147    5             1         18
11148    5             1         19
11149    5             1         20
11150    5             1         21
11151    5             1         22
11152    5             1         23
11153    5             1         24
11154    5             1         25
11155    5             1         26
11156    5             1         27
11157    5             1         28
11158    5             1         29
11159    5             1         30
11160    5             1         31
11161    5             1         32
11162    5             1         33
11163    5             1         34
11164    5             1         35
11165    5             1         36
11166    5             1         37
11167    5             1         38
11168    5             1         39
11169    5             1         40
11170    5             1         41
11171    5             1         42
11172    5             1         43
11173    5             1         44
11174    5             1         45
11175    5             1         46
11176    5             2          1
11177    5             2          2
11178    5             2          3
11179    5             2          4
11180    5             2          5
11181    5             2          6
11182    5             2          7
11183    5             2          8
11184    5             2          9
11185    5             2         10
11186    5             2         11
11187    5             2         12
11188    5             2         13
11189    5             2         14
11190    5             2         15
11191    5             2         16
11192    5             2         17
11193    5             2         18
11194    5             2         19
11195    5             2         20
11196    5             2         21
11197    5             2         22
11198    5             2         23
11199    5             2         24
11200    5             2         25
11201    5             2         26
11202    5             2         27
11203    5             2         28
11204    5             2         29
11205    5             2         30
11206    5             2         31
11207    5             2         32
11208    5             2         33
11209    5             2         34
11210    5             2         35
11211    5             2         36
11212    5             2         37
11213    5             3          1
11214    5             3          2
11215    5             3          3
11216    5             3          4
11217    5             3          5
11218    5             3          6
11219    5             3          7
11220    5             3          8
11221    5             3          9
11222    5             3         10
11223    5             3         11
11224    5             3         12
11225    5             3         13
11226    5             3         14
11227    5             3         15
11228    5             3         16
11229    5             3         17
11230    5             3         18
11231    5             3         19
11232    5             3         20
11233    5             3         21
11234    5             3         22
11235    5             3         23
11236    5             3         24
11237    5             3         25
11238    5             3         26
11239    5             3         27
11240    5             3         28
11241    5             3         29
11242    5             4          1
11243    5             4          2
11244    5             4          3
11245    5             4          4
11246    5             4          5
11247    5             4          6
11248    5             4          7
11249    5             4          8
11250    5             4          9
11251    5             4         10
11252    5             4         11
11253    5             4         12
11254    5             4         13
11255    5             4         14
11256    5             4         15
11257    5             4         16
11258    5             4         17
11259    5             4         18
11260    5             4         19
11261    5             4         20
11262    5             4         21
11263    5             4         22
11264    5             4         23
11265    5             4         24
11266    5             4         25
11267    5             4         26
11268    5             4         27
11269    5             4         28
11270    5             4         29
11271    5             4         30
11272    5             4         31
11273    5             4         32
11274    5             4         33
11275    5             4         34
11276    5             4         35
11277    5             4         36
11278    5             4         37
11279    5             4         38
11280    5             4         39
11281    5             4         40
11282    5             4         41
11283    5             4         42
11284    5             4         43
11285    5             4         44
11286    5             4         45
11287    5             4         46
11288    5             4         47
11289    5             4         48
11290    5             4         49
11291    5             5          1
11292    5             5          2
11293    5             5          3
11294    5             5          4
11295    5             5          5
11296    5             5          6
11297    5             5          7
11298    5             5          8
11299    5             5          9
11300    5             5         10
11301    5             5         11
11302    5             5         12
11303    5             5         13
11304    5             5         14
11305    5             5         15
11306    5             5         16
11307    5             5         17
11308    5             5         18
11309    5             5         19
11310    5             5         20
11311    5             5         21
11312    5             5         22
11313    5             5         23
11314    5             5         24
11315    5             5         25
11316    5             5         26
11317    5             5         27
11318    5             5         28
11319    5             5         29
11320    5             5         30
11321    5             5         31
11322    5             5         32
11323    5             5         33
11324    5             6          1
11325    5             6          2
11326    5             6          3
11327    5             6          4
11328    5             6          5
11329    5             6          6
11330    5             6          7
11331    5             6          8
11332    5             6          9
11333    5             6         10
11334    5             6         11
11335    5             6         12
11336    5             6         13
11337    5             6         14
11338    5             6         15
11339    5             6         16
11340    5             6         17
11341    5             6         18
11342    5             6         19
11343    5             6         20
11344    5             6         21
11345    5             6         22
11346    5             6         23
11347    5             6         24
11348    5             6         25
11349    5             7          1
11350    5             7          2
11351    5             7          3
11352    5             7          4
11353    5             7          5
11354    5             7          6
11355    5             7          7
11356    5             7          8
11357    5             7          9
11358    5             7         10
11359    5             7         11
11360    5             7         12
11361    5             7         13
11362    5             7         14
11363    5             7         15
11364    5             7         16
11365    5             7         17
11366    5             7         18
11367    5             7         19
11368    5             7         20
11369    5             7         21
11370    5             7         22
11371    5             7         23
11372    5             7         24
11373    5             7         25
11374    5             7         26
11375    5             8          1
11376    5             8          2
11377    5             8          3
11378    5             8          4
11379    5             8          5
11380    5             8          6
11381    5             8          7
11382    5             8          8
11383    5             8          9
11384    5             8         10
11385    5             8         11
11386    5             8         12
11387    5             8         13
11388    5             8         14
11389    5             8         15
11390    5             8         16
11391    5             8         17
11392    5             8         18
11393    5             8         19
11394    5             8         20
11395    5             9          1
11396    5             9          2
11397    5             9          3
11398    5             9          4
11399    5             9          5
11400    5             9          6
11401    5             9          7
11402    5             9          8
11403    5             9          9
11404    5             9         10
11405    5             9         11
11406    5             9         12
11407    5             9         13
11408    5             9         14
11409    5             9         15
11410    5             9         16
11411    5             9         17
11412    5             9         18
11413    5             9         19
11414    5             9         20
11415    5             9         21
11416    5             9         22
11417    5             9         23
11418    5             9         24
11419    5             9         25
11420    5             9         26
11421    5             9         27
11422    5             9         28
11423    5             9         29
11424    5            10          1
11425    5            10          2
11426    5            10          3
11427    5            10          4
11428    5            10          5
11429    5            10          6
11430    5            10          7
11431    5            10          8
11432    5            10          9
11433    5            10         10
11434    5            10         11
11435    5            10         12
11436    5            10         13
11437    5            10         14
11438    5            10         15
11439    5            10         16
11440    5            10         17
11441    5            10         18
11442    5            10         19
11443    5            10         20
11444    5            10         21
11445    5            10         22
11446    5            11          1
11447    5            11          2
11448    5            11          3
11449    5            11          4
11450    5            11          5
11451    5            11          6
11452    5            11          7
11453    5            11          8
11454    5            11          9
11455    5            11         10
11456    5            11         11
11457    5            11         12
11458    5            11         13
11459    5            11         14
11460    5            11         15
11461    5            11         16
11462    5            11         17
11463    5            11         18
11464    5            11         19
11465    5            11         20
11466    5            11         21
11467    5            11         22
11468    5            11         23
11469    5            11         24
11470    5            11         25
11471    5            11         26
11472    5            11         27
11473    5            11         28
11474    5            11         29
11475    5            11         30
11476    5            11         31
11477    5            11         32
11478    5            12          1
11479    5            12          2
11480    5            12          3
11481    5            12          4
11482    5            12          5
11483    5            12          6
11484    5            12          7
11485    5            12          8
11486    5            12          9
11487    5            12         10
11488    5            12         11
11489    5            12         12
11490    5            12         13
11491    5            12         14
11492    5            12         15
11493    5            12         16
11494    5            12         17
11495    5            12         18
11496    5            12         19
11497    5            12         20
11498    5            12         21
11499    5            12         22
11500    5            12         23
11501    5            12         24
11502    5            12         25
11503    5            12         26
11504    5            12         27
11505    5            12         28
11506    5            12         29
11507    5            12         30
11508    5            12         31
11509    5            12         32
11510    5            13          1
11511    5            13          2
11512    5            13          3
11513    5            13          4
11514    5            13          5
11515    5            13          6
11516    5            13          7
11517    5            13          8
11518    5            13          9
11519    5            13         10
11520    5            13         11
11521    5            13         12
11522    5            13         13
11523    5            13         14
11524    5            13         15
11525    5            13         16
11526    5            13         17
11527    5            13         18
11528    5            14          1
11529    5            14          2
11530    5            14          3
11531    5            14          4
11532    5            14          5
11533    5            14          6
11534    5            14          7
11535    5            14          8
11536    5            14          9
11537    5            14         10
11538    5            14         11
11539    5            14         12
11540    5            14         13
11541    5            14         14
11542    5            14         15
11543    5            14         16
11544    5            14         17
11545    5            14         18
11546    5            14         19
11547    5            14         20
11548    5            14         21
11549    5            14         22
11550    5            14         23
11551    5            14         24
11552    5            14         25
11553    5            14         26
11554    5            14         27
11555    5            14         28
11556    5            14         29
11557    5            15          1
11558    5            15          2
11559    5            15          3
11560    5            15          4
11561    5            15          5
11562    5            15          6
11563    5            15          7
11564    5            15          8
11565    5            15          9
11566    5            15         10
11567    5            15         11
11568    5            15         12
11569    5            15         13
11570    5            15         14
11571    5            15         15
11572    5            15         16
11573    5            15         17
11574    5            15         18
11575    5            15         19
11576    5            15         20
11577    5            15         21
11578    5            15         22
11579    5            15         23
11580    5            16          1
11581    5            16          2
11582    5            16          3
11583    5            16          4
11584    5            16          5
11585    5            16          6
11586    5            16          7
11587    5            16          8
11588    5            16          9
11589    5            16         10
11590    5            16         11
11591    5            16         12
11592    5            16         13
11593    5            16         14
11594    5            16         15
11595    5            16         16
11596    5            16         17
11597    5            16         18
11598    5            16         19
11599    5            16         20
11600    5            16         21
11601    5            16         22
11602    5            17          1
11603    5            17          2
11604    5            17          3
11605    5            17          4
11606    5            17          5
11607    5            17          6
11608    5            17          7
11609    5            17          8
11610    5            17          9
11611    5            17         10
11612    5            17         11
11613    5            17         12
11614    5            17         13
11615    5            17         14
11616    5            17         15
11617    5            17         16
11618    5            17         17
11619    5            17         18
11620    5            17         19
11621    5            17         20
11622    5            18          1
11623    5            18          2
11624    5            18          3
11625    5            18          4
11626    5            18          5
11627    5            18          6
11628    5            18          7
11629    5            18          8
11630    5            18          9
11631    5            18         10
11632    5            18         11
11633    5            18         12
11634    5            18         13
11635    5            18         14
11636    5            18         15
11637    5            18         16
11638    5            18         17
11639    5            18         18
11640    5            18         19
11641    5            18         20
11642    5            18         21
11643    5            18         22
11644    5            19          1
11645    5            19          2
11646    5            19          3
11647    5            19          4
11648    5            19          5
11649    5            19          6
11650    5            19          7
11651    5            19          8
11652    5            19          9
11653    5            19         10
11654    5            19         11
11655    5            19         12
11656    5            19         13
11657    5            19         14
11658    5            19         15
11659    5            19         16
11660    5            19         17
11661    5            19         18
11662    5            19         19
11663    5            19         20
11664    5            19         21
11665    5            20          1
11666    5            20          2
11667    5            20          3
11668    5            20          4
11669    5            20          5
11670    5            20          6
11671    5            20          7
11672    5            20          8
11673    5            20          9
11674    5            20         10
11675    5            20         11
11676    5            20         12
11677    5            20         13
11678    5            20         14
11679    5            20         15
11680    5            20         16
11681    5            20         17
11682    5            20         18
11683    5            20         19
11684    5            20         20
11685    5            21          1
11686    5            21          2
11687    5            21          3
11688    5            21          4
11689    5            21          5
11690    5            21          6
11691    5            21          7
11692    5            21          8
11693    5            21          9
11694    5            21         10
11695    5            21         11
11696    5            21         12
11697    5            21         13
11698    5            21         14
11699    5            21         15
11700    5            21         16
11701    5            21         17
11702    5            21         18
11703    5            21         19
11704    5            21         20
11705    5            21         21
11706    5            21         22
11707    5            21         23
11708    5            22          1
11709    5            22          2
11710    5            22          3
11711    5            22          4
11712    5            22          5
11713    5            22          6
11714    5            22          7
11715    5            22          8
11716    5            22          9
11717    5            22         10
11718    5            22         11
11719    5            22         12
11720    5            22         13
11721    5            22         14
11722    5            22         15
11723    5            22         16
11724    5            22         17
11725    5            22         18
11726    5            22         19
11727    5            22         20
11728    5            22         21
11729    5            22         22
11730    5            22         23
11731    5            22         24
11732    5            22         25
11733    5            22         26
11734    5            22         27
11735    5            22         28
11736    5            22         29
11737    5            22         30
11738    5            23          1
11739    5            23          2
11740    5            23          3
11741    5            23          4
11742    5            23          5
11743    5            23          6
11744    5            23          7
11745    5            23          8
11746    5            23          9
11747    5            23         10
11748    5            23         11
11749    5            23         12
11750    5            23         13
11751    5            23         14
11752    5            23         15
11753    5            23         16
11754    5            23         17
11755    5            23         18
11756    5            23         19
11757    5            23         20
11758    5            23         21
11759    5            23         22
11760    5            23         23
11761    5            23         24
11762    5            23         25
11763    5            24          1
11764    5            24          2
11765    5            24          3
11766    5            24          4
11767    5            24          5
11768    5            24          6
11769    5            24          7
11770    5            24          8
11771    5            24          9
11772    5            24         10
11773    5            24         11
11774    5            24         12
11775    5            24         13
11776    5            24         14
11777    5            24         15
11778    5            24         16
11779    5            24         17
11780    5            24         18
11781    5            24         19
11782    5            24         20
11783    5            24         21
11784    5            24         22
11785    5            25          1
11786    5            25          2
11787    5            25          3
11788    5            25          4
11789    5            25          5
11790    5            25          6
11791    5            25          7
11792    5            25          8
11793    5            25          9
11794    5            25         10
11795    5            25         11
11796    5            25         12
11797    5            25         13
11798    5            25         14
11799    5            25         15
11800    5            25         16
11801    5            25         17
11802    5            25         18
11803    5            25         19
11804    5            26          1
11805    5            26          2
11806    5            26          3
11807    5            26          4
11808    5            26          5
11809    5            26          6
11810    5            26          7
11811    5            26          8
11812    5            26          9
11813    5            26         10
11814    5            26         11
11815    5            26         12
11816    5            26         13
11817    5            26         14
11818    5            26         15
11819    5            26         16
11820    5            26         17
11821    5            26         18
11822    5            26         19
11823    5            27          1
11824    5            27          2
11825    5            27          3
11826    5            27          4
11827    5            27          5
11828    5            27          6
11829    5            27          7
11830    5            27          8
11831    5            27          9
11832    5            27         10
11833    5            27         11
11834    5            27         12
11835    5            27         13
11836    5            27         14
11837    5            27         15
11838    5            27         16
11839    5            27         17
11840    5            27         18
11841    5            27         19
11842    5            27         20
11843    5            27         21
11844    5            27         22
11845    5            27         23
11846    5            27         24
11847    5            27         25
11848    5            27         26
11849    5            28          1
11850    5            28          2
11851    5            28          3
11852    5            28          4
11853    5            28          5
11854    5            28          6
11855    5            28          7
11856    5            28          8
11857    5            28          9
11858    5            28         10
11859    5            28         11
11860    5            28         12
11861    5            28         13
11862    5            28         14
11863    5            28         15
11864    5            28         16
11865    5            28         17
11866    5            28         18
11867    5            28         19
11868    5            28         20
11869    5            28         21
11870    5            28         22
11871    5            28         23
11872    5            28         24
11873    5            28         25
11874    5            28         26
11875    5            28         27
11876    5            28         28
11877    5            28         29
11878    5            28         30
11879    5            28         31
11880    5            28         32
11881    5            28         33
11882    5            28         34
11883    5            28         35
11884    5            28         36
11885    5            28         37
11886    5            28         38
11887    5            28         39
11888    5            28         40
11889    5            28         41
11890    5            28         42
11891    5            28         43
11892    5            28         44
11893    5            28         45
11894    5            28         46
11895    5            28         47
11896    5            28         48
11897    5            28         49
11898    5            28         50
11899    5            28         51
11900    5            28         52
11901    5            28         53
11902    5            28         54
11903    5            28         55
11904    5            28         56
11905    5            28         57
11906    5            28         58
11907    5            28         59
11908    5            28         60
11909    5            28         61
11910    5            28         62
11911    5            28         63
11912    5            28         64
11913    5            28         65
11914    5            28         66
11915    5            28         67
11916    5            28         68
11917    5            29          1
11918    5            29          2
11919    5            29          3
11920    5            29          4
11921    5            29          5
11922    5            29          6
11923    5            29          7
11924    5            29          8
11925    5            29          9
11926    5            29         10
11927    5            29         11
11928    5            29         12
11929    5            29         13
11930    5            29         14
11931    5            29         15
11932    5            29         16
11933    5            29         17
11934    5            29         18
11935    5            29         19
11936    5            29         20
11937    5            29         21
11938    5            29         22
11939    5            29         23
11940    5            29         24
11941    5            29         25
11942    5            29         26
11943    5            29         27
11944    5            29         28
11945    5            29         29
11946    5            30          1
11947    5            30          2
11948    5            30          3
11949    5            30          4
11950    5            30          5
11951    5            30          6
11952    5            30          7
11953    5            30          8
11954    5            30          9
11955    5            30         10
11956    5            30         11
11957    5            30         12
11958    5            30         13
11959    5            30         14
11960    5            30         15
11961    5            30         16
11962    5            30         17
11963    5            30         18
11964    5            30         19
11965    5            30         20
11966    5            31          1
11967    5            31          2
11968    5            31          3
11969    5            31          4
11970    5            31          5
11971    5            31          6
11972    5            31          7
11973    5            31          8
11974    5            31          9
11975    5            31         10
11976    5            31         11
11977    5            31         12
11978    5            31         13
11979    5            31         14
11980    5            31         15
11981    5            31         16
11982    5            31         17
11983    5            31         18
11984    5            31         19
11985    5            31         20
11986    5            31         21
11987    5            31         22
11988    5            31         23
11989    5            31         24
11990    5            31         25
11991    5            31         26
11992    5            31         27
11993    5            31         28
11994    5            31         29
11995    5            31         30
11996    5            32          1
11997    5            32          2
11998    5            32          3
11999    5            32          4
12000    5            32          5
12001    5            32          6
12002    5            32          7
12003    5            32          8
12004    5            32          9
12005    5            32         10
12006    5            32         11
12007    5            32         12
12008    5            32         13
12009    5            32         14
12010    5            32         15
12011    5            32         16
12012    5            32         17
12013    5            32         18
12014    5            32         19
12015    5            32         20
12016    5            32         21
12017    5            32         22
12018    5            32         23
12019    5            32         24
12020    5            32         25
12021    5            32         26
12022    5            32         27
12023    5            32         28
12024    5            32         29
12025    5            32         30
12026    5            32         31
12027    5            32         32
12028    5            32         33
12029    5            32         34
12030    5            32         35
12031    5            32         36
12032    5            32         37
12033    5            32         38
12034    5            32         39
12035    5            32         40
12036    5            32         41
12037    5            32         42
12038    5            32         43
12039    5            32         44
12040    5            32         45
12041    5            32         46
12042    5            32         47
12043    5            32         48
12044    5            32         49
12045    5            32         50
12046    5            32         51
12047    5            32         52
12048    5            33          1
12049    5            33          2
12050    5            33          3
12051    5            33          4
12052    5            33          5
12053    5            33          6
12054    5            33          7
12055    5            33          8
12056    5            33          9
12057    5            33         10
12058    5            33         11
12059    5            33         12
12060    5            33         13
12061    5            33         14
12062    5            33         15
12063    5            33         16
12064    5            33         17
12065    5            33         18
12066    5            33         19
12067    5            33         20
12068    5            33         21
12069    5            33         22
12070    5            33         23
12071    5            33         24
12072    5            33         25
12073    5            33         26
12074    5            33         27
12075    5            33         28
12076    5            33         29
12077    5            34          1
12078    5            34          2
12079    5            34          3
12080    5            34          4
12081    5            34          5
12082    5            34          6
12083    5            34          7
12084    5            34          8
12085    5            34          9
12086    5            34         10
12087    5            34         11
12088    5            34         12
12089    6             1          1
12090    6             1          2
12091    6             1          3
12092    6             1          4
12093    6             1          5
12094    6             1          6
12095    6             1          7
12096    6             1          8
12097    6             1          9
12098    6             1         10
12099    6             1         11
12100    6             1         12
12101    6             1         13
12102    6             1         14
12103    6             1         15
12104    6             1         16
12105    6             1         17
12106    6             1         18
12107    6             2          1
12108    6             2          2
12109    6             2          3
12110    6             2          4
12111    6             2          5
12112    6             2          6
12113    6             2          7
12114    6             2          8
12115    6             2          9
12116    6             2         10
12117    6             2         11
12118    6             2         12
12119    6             2         13
12120    6             2         14
12121    6             2         15
12122    6             2         16
12123    6             2         17
12124    6             2         18
12125    6             2         19
12126    6             2         20
12127    6             2         21
12128    6             2         22
12129    6             2         23
12130    6             2         24
12131    6             3          1
12132    6             3          2
12133    6             3          3
12134    6             3          4
12135    6             3          5
12136    6             3          6
12137    6             3          7
12138    6             3          8
12139    6             3          9
12140    6             3         10
12141    6             3         11
12142    6             3         12
12143    6             3         13
12144    6             3         14
12145    6             3         15
12146    6             3         16
12147    6             3         17
12148    6             4          1
12149    6             4          2
12150    6             4          3
12151    6             4          4
12152    6             4          5
12153    6             4          6
12154    6             4          7
12155    6             4          8
12156    6             4          9
12157    6             4         10
12158    6             4         11
12159    6             4         12
12160    6             4         13
12161    6             4         14
12162    6             4         15
12163    6             4         16
12164    6             4         17
12165    6             4         18
12166    6             4         19
12167    6             4         20
12168    6             4         21
12169    6             4         22
12170    6             4         23
12171    6             4         24
12172    6             5          1
12173    6             5          2
12174    6             5          3
12175    6             5          4
12176    6             5          5
12177    6             5          6
12178    6             5          7
12179    6             5          8
12180    6             5          9
12181    6             5         10
12182    6             5         11
12183    6             5         12
12184    6             5         13
12185    6             5         14
12186    6             5         15
12187    6             6          1
12188    6             6          2
12189    6             6          3
12190    6             6          4
12191    6             6          5
12192    6             6          6
12193    6             6          7
12194    6             6          8
12195    6             6          9
12196    6             6         10
12197    6             6         11
12198    6             6         12
12199    6             6         13
12200    6             6         14
12201    6             6         15
12202    6             6         16
12203    6             6         17
12204    6             6         18
12205    6             6         19
12206    6             6         20
12207    6             6         21
12208    6             6         22
12209    6             6         23
12210    6             6         24
12211    6             6         25
12212    6             6         26
12213    6             6         27
12214    6             7          1
12215    6             7          2
12216    6             7          3
12217    6             7          4
12218    6             7          5
12219    6             7          6
12220    6             7          7
12221    6             7          8
12222    6             7          9
12223    6             7         10
12224    6             7         11
12225    6             7         12
12226    6             7         13
12227    6             7         14
12228    6             7         15
12229    6             7         16
12230    6             7         17
12231    6             7         18
12232    6             7         19
12233    6             7         20
12234    6             7         21
12235    6             7         22
12236    6             7         23
12237    6             7         24
12238    6             7         25
12239    6             7         26
12240    6             8          1
12241    6             8          2
12242    6             8          3
12243    6             8          4
12244    6             8          5
12245    6             8          6
12246    6             8          7
12247    6             8          8
12248    6             8          9
12249    6             8         10
12250    6             8         11
12251    6             8         12
12252    6             8         13
12253    6             8         14
12254    6             8         15
12255    6             8         16
12256    6             8         17
12257    6             8         18
12258    6             8         19
12259    6             8         20
12260    6             8         21
12261    6             8         22
12262    6             8         23
12263    6             8         24
12264    6             8         25
12265    6             8         26
12266    6             8         27
12267    6             8         28
12268    6             8         29
12269    6             8         30
12270    6             8         31
12271    6             8         32
12272    6             8         33
12273    6             8         34
12274    6             8         35
12275    6             9          1
12276    6             9          2
12277    6             9          3
12278    6             9          4
12279    6             9          5
12280    6             9          6
12281    6             9          7
12282    6             9          8
12283    6             9          9
12284    6             9         10
12285    6             9         11
12286    6             9         12
12287    6             9         13
12288    6             9         14
12289    6             9         15
12290    6             9         16
12291    6             9         17
12292    6             9         18
12293    6             9         19
12294    6             9         20
12295    6             9         21
12296    6             9         22
12297    6             9         23
12298    6             9         24
12299    6             9         25
12300    6             9         26
12301    6             9         27
12302    6            10          1
12303    6            10          2
12304    6            10          3
12305    6            10          4
12306    6            10          5
12307    6            10          6
12308    6            10          7
12309    6            10          8
12310    6            10          9
12311    6            10         10
12312    6            10         11
12313    6            10         12
12314    6            10         13
12315    6            10         14
12316    6            10         15
12317    6            10         16
12318    6            10         17
12319    6            10         18
12320    6            10         19
12321    6            10         20
12322    6            10         21
12323    6            10         22
12324    6            10         23
12325    6            10         24
12326    6            10         25
12327    6            10         26
12328    6            10         27
12329    6            10         28
12330    6            10         29
12331    6            10         30
12332    6            10         31
12333    6            10         32
12334    6            10         33
12335    6            10         34
12336    6            10         35
12337    6            10         36
12338    6            10         37
12339    6            10         38
12340    6            10         39
12341    6            10         40
12342    6            10         41
12343    6            10         42
12344    6            10         43
12345    6            11          1
12346    6            11          2
12347    6            11          3
12348    6            11          4
12349    6            11          5
12350    6            11          6
12351    6            11          7
12352    6            11          8
12353    6            11          9
12354    6            11         10
12355    6            11         11
12356    6            11         12
12357    6            11         13
12358    6            11         14
12359    6            11         15
12360    6            11         16
12361    6            11         17
12362    6            11         18
12363    6            11         19
12364    6            11         20
12365    6            11         21
12366    6            11         22
12367    6            11         23
12368    6            12          1
12369    6            12          2
12370    6            12          3
12371    6            12          4
12372    6            12          5
12373    6            12          6
12374    6            12          7
12375    6            12          8
12376    6            12          9
12377    6            12         10
12378    6            12         11
12379    6            12         12
12380    6            12         13
12381    6            12         14
12382    6            12         15
12383    6            12         16
12384    6            12         17
12385    6            12         18
12386    6            12         19
12387    6            12         20
12388    6            12         21
12389    6            12         22
12390    6            12         23
12391    6            12         24
12392    6            13          1
12393    6            13          2
12394    6            13          3
12395    6            13          4
12396    6            13          5
12397    6            13          6
12398    6            13          7
12399    6            13          8
12400    6            13          9
12401    6            13         10
12402    6            13         11
12403    6            13         12
12404    6            13         13
12405    6            13         14
12406    6            13         15
12407    6            13         16
12408    6            13         17
12409    6            13         18
12410    6            13         19
12411    6            13         20
12412    6            13         21
12413    6            13         22
12414    6            13         23
12415    6            13         24
12416    6            13         25
12417    6            13         26
12418    6            13         27
12419    6            13         28
12420    6            13         29
12421    6            13         30
12422    6            13         31
12423    6            13         32
12424    6            13         33
12425    6            14          1
12426    6            14          2
12427    6            14          3
12428    6            14          4
12429    6            14          5
12430    6            14          6
12431    6            14          7
12432    6            14          8
12433    6            14          9
12434    6            14         10
12435    6            14         11
12436    6            14         12
12437    6            14         13
12438    6            14         14
12439    6            14         15
12440    6            15          1
12441    6            15          2
12442    6            15          3
12443    6            15          4
12444    6            15          5
12445    6            15          6
12446    6            15          7
12447    6            15          8
12448    6            15          9
12449    6            15         10
12450    6            15         11
12451    6            15         12
12452    6            15         13
12453    6            15         14
12454    6            15         15
12455    6            15         16
12456    6            15         17
12457    6            15         18
12458    6            15         19
12459    6            15         20
12460    6            15         21
12461    6            15         22
12462    6            15         23
12463    6            15         24
12464    6            15         25
12465    6            15         26
12466    6            15         27
12467    6            15         28
12468    6            15         29
12469    6            15         30
12470    6            15         31
12471    6            15         32
12472    6            15         33
12473    6            15         34
12474    6            15         35
12475    6            15         36
12476    6            15         37
12477    6            15         38
12478    6            15         39
12479    6            15         40
12480    6            15         41
12481    6            15         42
12482    6            15         43
12483    6            15         44
12484    6            15         45
12485    6            15         46
12486    6            15         47
12487    6            15         48
12488    6            15         49
12489    6            15         50
12490    6            15         51
12491    6            15         52
12492    6            15         53
12493    6            15         54
12494    6            15         55
12495    6            15         56
12496    6            15         57
12497    6            15         58
12498    6            15         59
12499    6            15         60
12500    6            15         61
12501    6            15         62
12502    6            15         63
12503    6            16          1
12504    6            16          2
12505    6            16          3
12506    6            16          4
12507    6            16          5
12508    6            16          6
12509    6            16          7
12510    6            16          8
12511    6            16          9
12512    6            16         10
12513    6            17          1
12514    6            17          2
12515    6            17          3
12516    6            17          4
12517    6            17          5
12518    6            17          6
12519    6            17          7
12520    6            17          8
12521    6            17          9
12522    6            17         10
12523    6            17         11
12524    6            17         12
12525    6            17         13
12526    6            17         14
12527    6            17         15
12528    6            17         16
12529    6            17         17
12530    6            17         18
12531    6            18          1
12532    6            18          2
12533    6            18          3
12534    6            18          4
12535    6            18          5
12536    6            18          6
12537    6            18          7
12538    6            18          8
12539    6            18          9
12540    6            18         10
12541    6            18         11
12542    6            18         12
12543    6            18         13
12544    6            18         14
12545    6            18         15
12546    6            18         16
12547    6            18         17
12548    6            18         18
12549    6            18         19
12550    6            18         20
12551    6            18         21
12552    6            18         22
12553    6            18         23
12554    6            18         24
12555    6            18         25
12556    6            18         26
12557    6            18         27
12558    6            18         28
12559    6            19          1
12560    6            19          2
12561    6            19          3
12562    6            19          4
12563    6            19          5
12564    6            19          6
12565    6            19          7
12566    6            19          8
12567    6            19          9
12568    6            19         10
12569    6            19         11
12570    6            19         12
12571    6            19         13
12572    6            19         14
12573    6            19         15
12574    6            19         16
12575    6            19         17
12576    6            19         18
12577    6            19         19
12578    6            19         20
12579    6            19         21
12580    6            19         22
12581    6            19         23
12582    6            19         24
12583    6            19         25
12584    6            19         26
12585    6            19         27
12586    6            19         28
12587    6            19         29
12588    6            19         30
12589    6            19         31
12590    6            19         32
12591    6            19         33
12592    6            19         34
12593    6            19         35
12594    6            19         36
12595    6            19         37
12596    6            19         38
12597    6            19         39
12598    6            19         40
12599    6            19         41
12600    6            19         42
12601    6            19         43
12602    6            19         44
12603    6            19         45
12604    6            19         46
12605    6            19         47
12606    6            19         48
12607    6            19         49
12608    6            19         50
12609    6            19         51
12610    6            20          1
12611    6            20          2
12612    6            20          3
12613    6            20          4
12614    6            20          5
12615    6            20          6
12616    6            20          7
12617    6            20          8
12618    6            20          9
12619    6            21          1
12620    6            21          2
12621    6            21          3
12622    6            21          4
12623    6            21          5
12624    6            21          6
12625    6            21          7
12626    6            21          8
12627    6            21          9
12628    6            21         10
12629    6            21         11
12630    6            21         12
12631    6            21         13
12632    6            21         14
12633    6            21         15
12634    6            21         16
12635    6            21         17
12636    6            21         18
12637    6            21         19
12638    6            21         20
12639    6            21         21
12640    6            21         22
12641    6            21         23
12642    6            21         24
12643    6            21         25
12644    6            21         26
12645    6            21         27
12646    6            21         28
12647    6            21         29
12648    6            21         30
12649    6            21         31
12650    6            21         32
12651    6            21         33
12652    6            21         34
12653    6            21         35
12654    6            21         36
12655    6            21         37
12656    6            21         38
12657    6            21         39
12658    6            21         40
12659    6            21         41
12660    6            21         42
12661    6            21         43
12662    6            21         44
12663    6            21         45
12664    6            22          1
12665    6            22          2
12666    6            22          3
12667    6            22          4
12668    6            22          5
12669    6            22          6
12670    6            22          7
12671    6            22          8
12672    6            22          9
12673    6            22         10
12674    6            22         11
12675    6            22         12
12676    6            22         13
12677    6            22         14
12678    6            22         15
12679    6            22         16
12680    6            22         17
12681    6            22         18
12682    6            22         19
12683    6            22         20
12684    6            22         21
12685    6            22         22
12686    6            22         23
12687    6            22         24
12688    6            22         25
12689    6            22         26
12690    6            22         27
12691    6            22         28
12692    6            22         29
12693    6            22         30
12694    6            22         31
12695    6            22         32
12696    6            22         33
12697    6            22         34
12698    6            23          1
12699    6            23          2
12700    6            23          3
12701    6            23          4
12702    6            23          5
12703    6            23          6
12704    6            23          7
12705    6            23          8
12706    6            23          9
12707    6            23         10
12708    6            23         11
12709    6            23         12
12710    6            23         13
12711    6            23         14
12712    6            23         15
12713    6            23         16
12714    6            24          1
12715    6            24          2
12716    6            24          3
12717    6            24          4
12718    6            24          5
12719    6            24          6
12720    6            24          7
12721    6            24          8
12722    6            24          9
12723    6            24         10
12724    6            24         11
12725    6            24         12
12726    6            24         13
12727    6            24         14
12728    6            24         15
12729    6            24         16
12730    6            24         17
12731    6            24         18
12732    6            24         19
12733    6            24         20
12734    6            24         21
12735    6            24         22
12736    6            24         23
12737    6            24         24
12738    6            24         25
12739    6            24         26
12740    6            24         27
12741    6            24         28
12742    6            24         29
12743    6            24         30
12744    6            24         31
12745    6            24         32
12746    6            24         33
12747    7             1          1
12748    7             1          2
12749    7             1          3
12750    7             1          4
12751    7             1          5
12752    7             1          6
12753    7             1          7
12754    7             1          8
12755    7             1          9
12756    7             1         10
12757    7             1         11
12758    7             1         12
12759    7             1         13
12760    7             1         14
12761    7             1         15
12762    7             1         16
12763    7             1         17
12764    7             1         18
12765    7             1         19
12766    7             1         20
12767    7             1         21
12768    7             1         22
12769    7             1         23
12770    7             1         24
12771    7             1         25
12772    7             1         26
12773    7             1         27
12774    7             1         28
12775    7             1         29
12776    7             1         30
12777    7             1         31
12778    7             1         32
12779    7             1         33
12780    7             1         34
12781    7             1         35
12782    7             1         36
12783    7             2          1
12784    7             2          2
12785    7             2          3
12786    7             2          4
12787    7             2          5
12788    7             2          6
12789    7             2          7
12790    7             2          8
12791    7             2          9
12792    7             2         10
12793    7             2         11
12794    7             2         12
12795    7             2         13
12796    7             2         14
12797    7             2         15
12798    7             2         16
12799    7             2         17
12800    7             2         18
12801    7             2         19
12802    7             2         20
12803    7             2         21
12804    7             2         22
12805    7             2         23
12806    7             3          1
12807    7             3          2
12808    7             3          3
12809    7             3          4
12810    7             3          5
12811    7             3          6
12812    7             3          7
12813    7             3          8
12814    7             3          9
12815    7             3         10
12816    7             3         11
12817    7             3         12
12818    7             3         13
12819    7             3         14
12820    7             3         15
12821    7             3         16
12822    7             3         17
12823    7             3         18
12824    7             3         19
12825    7             3         20
12826    7             3         21
12827    7             3         22
12828    7             3         23
12829    7             3         24
12830    7             3         25
12831    7             3         26
12832    7             3         27
12833    7             3         28
12834    7             3         29
12835    7             3         30
12836    7             3         31
12837    7             4          1
12838    7             4          2
12839    7             4          3
12840    7             4          4
12841    7             4          5
12842    7             4          6
12843    7             4          7
12844    7             4          8
12845    7             4          9
12846    7             4         10
12847    7             4         11
12848    7             4         12
12849    7             4         13
12850    7             4         14
12851    7             4         15
12852    7             4         16
12853    7             4         17
12854    7             4         18
12855    7             4         19
12856    7             4         20
12857    7             4         21
12858    7             4         22
12859    7             4         23
12860    7             4         24
12861    7             5          1
12862    7             5          2
12863    7             5          3
12864    7             5          4
12865    7             5          5
12866    7             5          6
12867    7             5          7
12868    7             5          8
12869    7             5          9
12870    7             5         10
12871    7             5         11
12872    7             5         12
12873    7             5         13
12874    7             5         14
12875    7             5         15
12876    7             5         16
12877    7             5         17
12878    7             5         18
12879    7             5         19
12880    7             5         20
12881    7             5         21
12882    7             5         22
12883    7             5         23
12884    7             5         24
12885    7             5         25
12886    7             5         26
12887    7             5         27
12888    7             5         28
12889    7             5         29
12890    7             5         30
12891    7             5         31
12892    7             6          1
12893    7             6          2
12894    7             6          3
12895    7             6          4
12896    7             6          5
12897    7             6          6
12898    7             6          7
12899    7             6          8
12900    7             6          9
12901    7             6         10
12902    7             6         11
12903    7             6         12
12904    7             6         13
12905    7             6         14
12906    7             6         15
12907    7             6         16
12908    7             6         17
12909    7             6         18
12910    7             6         19
12911    7             6         20
12912    7             6         21
12913    7             6         22
12914    7             6         23
12915    7             6         24
12916    7             6         25
12917    7             6         26
12918    7             6         27
12919    7             6         28
12920    7             6         29
12921    7             6         30
12922    7             6         31
12923    7             6         32
12924    7             6         33
12925    7             6         34
12926    7             6         35
12927    7             6         36
12928    7             6         37
12929    7             6         38
12930    7             6         39
12931    7             6         40
12932    7             7          1
12933    7             7          2
12934    7             7          3
12935    7             7          4
12936    7             7          5
12937    7             7          6
12938    7             7          7
12939    7             7          8
12940    7             7          9
12941    7             7         10
12942    7             7         11
12943    7             7         12
12944    7             7         13
12945    7             7         14
12946    7             7         15
12947    7             7         16
12948    7             7         17
12949    7             7         18
12950    7             7         19
12951    7             7         20
12952    7             7         21
12953    7             7         22
12954    7             7         23
12955    7             7         24
12956    7             7         25
12957    7             8          1
12958    7             8          2
12959    7             8          3
12960    7             8          4
12961    7             8          5
12962    7             8          6
12963    7             8          7
12964    7             8          8
12965    7             8          9
12966    7             8         10
12967    7             8         11
12968    7             8         12
12969    7             8         13
12970    7             8         14
12971    7             8         15
12972    7             8         16
12973    7             8         17
12974    7             8         18
12975    7             8         19
12976    7             8         20
12977    7             8         21
12978    7             8         22
12979    7             8         23
12980    7             8         24
12981    7             8         25
12982    7             8         26
12983    7             8         27
12984    7             8         28
12985    7             8         29
12986    7             8         30
12987    7             8         31
12988    7             8         32
12989    7             8         33
12990    7             8         34
12991    7             8         35
12992    7             9          1
12993    7             9          2
12994    7             9          3
12995    7             9          4
12996    7             9          5
12997    7             9          6
12998    7             9          7
12999    7             9          8
13000    7             9          9
13001    7             9         10
13002    7             9         11
13003    7             9         12
13004    7             9         13
13005    7             9         14
13006    7             9         15
13007    7             9         16
13008    7             9         17
13009    7             9         18
13010    7             9         19
13011    7             9         20
13012    7             9         21
13013    7             9         22
13014    7             9         23
13015    7             9         24
13016    7             9         25
13017    7             9         26
13018    7             9         27
13019    7             9         28
13020    7             9         29
13021    7             9         30
13022    7             9         31
13023    7             9         32
13024    7             9         33
13025    7             9         34
13026    7             9         35
13027    7             9         36
13028    7             9         37
13029    7             9         38
13030    7             9         39
13031    7             9         40
13032    7             9         41
13033    7             9         42
13034    7             9         43
13035    7             9         44
13036    7             9         45
13037    7             9         46
13038    7             9         47
13039    7             9         48
13040    7             9         49
13041    7             9         50
13042    7             9         51
13043    7             9         52
13044    7             9         53
13045    7             9         54
13046    7             9         55
13047    7             9         56
13048    7             9         57
13049    7            10          1
13050    7            10          2
13051    7            10          3
13052    7            10          4
13053    7            10          5
13054    7            10          6
13055    7            10          7
13056    7            10          8
13057    7            10          9
13058    7            10         10
13059    7            10         11
13060    7            10         12
13061    7            10         13
13062    7            10         14
13063    7            10         15
13064    7            10         16
13065    7            10         17
13066    7            10         18
13067    7            11          1
13068    7            11          2
13069    7            11          3
13070    7            11          4
13071    7            11          5
13072    7            11          6
13073    7            11          7
13074    7            11          8
13075    7            11          9
13076    7            11         10
13077    7            11         11
13078    7            11         12
13079    7            11         13
13080    7            11         14
13081    7            11         15
13082    7            11         16
13083    7            11         17
13084    7            11         18
13085    7            11         19
13086    7            11         20
13087    7            11         21
13088    7            11         22
13089    7            11         23
13090    7            11         24
13091    7            11         25
13092    7            11         26
13093    7            11         27
13094    7            11         28
13095    7            11         29
13096    7            11         30
13097    7            11         31
13098    7            11         32
13099    7            11         33
13100    7            11         34
13101    7            11         35
13102    7            11         36
13103    7            11         37
13104    7            11         38
13105    7            11         39
13106    7            11         40
13107    7            12          1
13108    7            12          2
13109    7            12          3
13110    7            12          4
13111    7            12          5
13112    7            12          6
13113    7            12          7
13114    7            12          8
13115    7            12          9
13116    7            12         10
13117    7            12         11
13118    7            12         12
13119    7            12         13
13120    7            12         14
13121    7            12         15
13122    7            13          1
13123    7            13          2
13124    7            13          3
13125    7            13          4
13126    7            13          5
13127    7            13          6
13128    7            13          7
13129    7            13          8
13130    7            13          9
13131    7            13         10
13132    7            13         11
13133    7            13         12
13134    7            13         13
13135    7            13         14
13136    7            13         15
13137    7            13         16
13138    7            13         17
13139    7            13         18
13140    7            13         19
13141    7            13         20
13142    7            13         21
13143    7            13         22
13144    7            13         23
13145    7            13         24
13146    7            13         25
13147    7            14          1
13148    7            14          2
13149    7            14          3
13150    7            14          4
13151    7            14          5
13152    7            14          6
13153    7            14          7
13154    7            14          8
13155    7            14          9
13156    7            14         10
13157    7            14         11
13158    7            14         12
13159    7            14         13
13160    7            14         14
13161    7            14         15
13162    7            14         16
13163    7            14         17
13164    7            14         18
13165    7            14         19
13166    7            14         20
13167    7            15          1
13168    7            15          2
13169    7            15          3
13170    7            15          4
13171    7            15          5
13172    7            15          6
13173    7            15          7
13174    7            15          8
13175    7            15          9
13176    7            15         10
13177    7            15         11
13178    7            15         12
13179    7            15         13
13180    7            15         14
13181    7            15         15
13182    7            15         16
13183    7            15         17
13184    7            15         18
13185    7            15         19
13186    7            15         20
13187    7            16          1
13188    7            16          2
13189    7            16          3
13190    7            16          4
13191    7            16          5
13192    7            16          6
13193    7            16          7
13194    7            16          8
13195    7            16          9
13196    7            16         10
13197    7            16         11
13198    7            16         12
13199    7            16         13
13200    7            16         14
13201    7            16         15
13202    7            16         16
13203    7            16         17
13204    7            16         18
13205    7            16         19
13206    7            16         20
13207    7            16         21
13208    7            16         22
13209    7            16         23
13210    7            16         24
13211    7            16         25
13212    7            16         26
13213    7            16         27
13214    7            16         28
13215    7            16         29
13216    7            16         30
13217    7            16         31
13218    7            17          1
13219    7            17          2
13220    7            17          3
13221    7            17          4
13222    7            17          5
13223    7            17          6
13224    7            17          7
13225    7            17          8
13226    7            17          9
13227    7            17         10
13228    7            17         11
13229    7            17         12
13230    7            17         13
13231    7            18          1
13232    7            18          2
13233    7            18          3
13234    7            18          4
13235    7            18          5
13236    7            18          6
13237    7            18          7
13238    7            18          8
13239    7            18          9
13240    7            18         10
13241    7            18         11
13242    7            18         12
13243    7            18         13
13244    7            18         14
13245    7            18         15
13246    7            18         16
13247    7            18         17
13248    7            18         18
13249    7            18         19
13250    7            18         20
13251    7            18         21
13252    7            18         22
13253    7            18         23
13254    7            18         24
13255    7            18         25
13256    7            18         26
13257    7            18         27
13258    7            18         28
13259    7            18         29
13260    7            18         30
13261    7            18         31
13262    7            19          1
13263    7            19          2
13264    7            19          3
13265    7            19          4
13266    7            19          5
13267    7            19          6
13268    7            19          7
13269    7            19          8
13270    7            19          9
13271    7            19         10
13272    7            19         11
13273    7            19         12
13274    7            19         13
13275    7            19         14
13276    7            19         15
13277    7            19         16
13278    7            19         17
13279    7            19         18
13280    7            19         19
13281    7            19         20
13282    7            19         21
13283    7            19         22
13284    7            19         23
13285    7            19         24
13286    7            19         25
13287    7            19         26
13288    7            19         27
13289    7            19         28
13290    7            19         29
13291    7            19         30
13292    7            20          1
13293    7            20          2
13294    7            20          3
13295    7            20          4
13296    7            20          5
13297    7            20          6
13298    7            20          7
13299    7            20          8
13300    7            20          9
13301    7            20         10
13302    7            20         11
13303    7            20         12
13304    7            20         13
13305    7            20         14
13306    7            20         15
13307    7            20         16
13308    7            20         17
13309    7            20         18
13310    7            20         19
13311    7            20         20
13312    7            20         21
13313    7            20         22
13314    7            20         23
13315    7            20         24
13316    7            20         25
13317    7            20         26
13318    7            20         27
13319    7            20         28
13320    7            20         29
13321    7            20         30
13322    7            20         31
13323    7            20         32
13324    7            20         33
13325    7            20         34
13326    7            20         35
13327    7            20         36
13328    7            20         37
13329    7            20         38
13330    7            20         39
13331    7            20         40
13332    7            20         41
13333    7            20         42
13334    7            20         43
13335    7            20         44
13336    7            20         45
13337    7            20         46
13338    7            20         47
13339    7            20         48
13340    7            21          1
13341    7            21          2
13342    7            21          3
13343    7            21          4
13344    7            21          5
13345    7            21          6
13346    7            21          7
13347    7            21          8
13348    7            21          9
13349    7            21         10
13350    7            21         11
13351    7            21         12
13352    7            21         13
13353    7            21         14
13354    7            21         15
13355    7            21         16
13356    7            21         17
13357    7            21         18
13358    7            21         19
13359    7            21         20
13360    7            21         21
13361    7            21         22
13362    7            21         23
13363    7            21         24
13364    7            21         25
13365    8             1          1
13366    8             1          2
13367    8             1          3
13368    8             1          4
13369    8             1          5
13370    8             1          6
13371    8             1          7
13372    8             1          8
13373    8             1          9
13374    8             1         10
13375    8             1         11
13376    8             1         12
13377    8             1         13
13378    8             1         14
13379    8             1         15
13380    8             1         16
13381    8             1         17
13382    8             1         18
13383    8             1         19
13384    8             1         20
13385    8             1         21
13386    8             1         22
13387    8             2          1
13388    8             2          2
13389    8             2          3
13390    8             2          4
13391    8             2          5
13392    8             2          6
13393    8             2          7
13394    8             2          8
13395    8             2          9
13396    8             2         10
13397    8             2         11
13398    8             2         12
13399    8             2         13
13400    8             2         14
13401    8             2         15
13402    8             2         16
13403    8             2         17
13404    8             2         18
13405    8             2         19
13406    8             2         20
13407    8             2         21
13408    8             2         22
13409    8             2         23
13410    8             3          1
13411    8             3          2
13412    8             3          3
13413    8             3          4
13414    8             3          5
13415    8             3          6
13416    8             3          7
13417    8             3          8
13418    8             3          9
13419    8             3         10
13420    8             3         11
13421    8             3         12
13422    8             3         13
13423    8             3         14
13424    8             3         15
13425    8             3         16
13426    8             3         17
13427    8             3         18
13428    8             4          1
13429    8             4          2
13430    8             4          3
13431    8             4          4
13432    8             4          5
13433    8             4          6
13434    8             4          7
13435    8             4          8
13436    8             4          9
13437    8             4         10
13438    8             4         11
13439    8             4         12
13440    8             4         13
13441    8             4         14
13442    8             4         15
13443    8             4         16
13444    8             4         17
13445    8             4         18
13446    8             4         19
13447    8             4         20
13448    8             4         21
13449    8             4         22
13450    9             1          1
13451    9             1          2
13452    9             1          3
13453    9             1          4
13454    9             1          5
13455    9             1          6
13456    9             1          7
13457    9             1          8
13458    9             1          9
13459    9             1         10
13460    9             1         11
13461    9             1         12
13462    9             1         13
13463    9             1         14
13464    9             1         15
13465    9             1         16
13466    9             1         17
13467    9             1         18
13468    9             1         19
13469    9             1         20
13470    9             1         21
13471    9             1         22
13472    9             1         23
13473    9             1         24
13474    9             1         25
13475    9             1         26
13476    9             1         27
13477    9             1         28
13478    9             2          1
13479    9             2          2
13480    9             2          3
13481    9             2          4
13482    9             2          5
13483    9             2          6
13484    9             2          7
13485    9             2          8
13486    9             2          9
13487    9             2         10
13488    9             2         11
13489    9             2         12
13490    9             2         13
13491    9             2         14
13492    9             2         15
13493    9             2         16
13494    9             2         17
13495    9             2         18
13496    9             2         19
13497    9             2         20
13498    9             2         21
13499    9             2         22
13500    9             2         23
13501    9             2         24
13502    9             2         25
13503    9             2         26
13504    9             2         27
13505    9             2         28
13506    9             2         29
13507    9             2         30
13508    9             2         31
13509    9             2         32
13510    9             2         33
13511    9             2         34
13512    9             2         35
13513    9             2         36
13514    9             3          1
13515    9             3          2
13516    9             3          3
13517    9             3          4
13518    9             3          5
13519    9             3          6
13520    9             3          7
13521    9             3          8
13522    9             3          9
13523    9             3         10
13524    9             3         11
13525    9             3         12
13526    9             3         13
13527    9             3         14
13528    9             3         15
13529    9             3         16
13530    9             3         17
13531    9             3         18
13532    9             3         19
13533    9             3         20
13534    9             3         21
13535    9             4          1
13536    9             4          2
13537    9             4          3
13538    9             4          4
13539    9             4          5
13540    9             4          6
13541    9             4          7
13542    9             4          8
13543    9             4          9
13544    9             4         10
13545    9             4         11
13546    9             4         12
13547    9             4         13
13548    9             4         14
13549    9             4         15
13550    9             4         16
13551    9             4         17
13552    9             4         18
13553    9             4         19
13554    9             4         20
13555    9             4         21
13556    9             4         22
13557    9             5          1
13558    9             5          2
13559    9             5          3
13560    9             5          4
13561    9             5          5
13562    9             5          6
13563    9             5          7
13564    9             5          8
13565    9             5          9
13566    9             5         10
13567    9             5         11
13568    9             5         12
13569    9             6          1
13570    9             6          2
13571    9             6          3
13572    9             6          4
13573    9             6          5
13574    9             6          6
13575    9             6          7
13576    9             6          8
13577    9             6          9
13578    9             6         10
13579    9             6         11
13580    9             6         12
13581    9             6         13
13582    9             6         14
13583    9             6         15
13584    9             6         16
13585    9             6         17
13586    9             6         18
13587    9             6         19
13588    9             6         20
13589    9             6         21
13590    9             7          1
13591    9             7          2
13592    9             7          3
13593    9             7          4
13594    9             7          5
13595    9             7          6
13596    9             7          7
13597    9             7          8
13598    9             7          9
13599    9             7         10
13600    9             7         11
13601    9             7         12
13602    9             7         13
13603    9             7         14
13604    9             7         15
13605    9             7         16
13606    9             7         17
13607    9             8          1
13608    9             8          2
13609    9             8          3
13610    9             8          4
13611    9             8          5
13612    9             8          6
13613    9             8          7
13614    9             8          8
13615    9             8          9
13616    9             8         10
13617    9             8         11
13618    9             8         12
13619    9             8         13
13620    9             8         14
13621    9             8         15
13622    9             8         16
13623    9             8         17
13624    9             8         18
13625    9             8         19
13626    9             8         20
13627    9             8         21
13628    9             8         22
13629    9             9          1
13630    9             9          2
13631    9             9          3
13632    9             9          4
13633    9             9          5
13634    9             9          6
13635    9             9          7
13636    9             9          8
13637    9             9          9
13638    9             9         10
13639    9             9         11
13640    9             9         12
13641    9             9         13
13642    9             9         14
13643    9             9         15
13644    9             9         16
13645    9             9         17
13646    9             9         18
13647    9             9         19
13648    9             9         20
13649    9             9         21
13650    9             9         22
13651    9             9         23
13652    9             9         24
13653    9             9         25
13654    9             9         26
13655    9             9         27
13656    9            10          1
13657    9            10          2
13658    9            10          3
13659    9            10          4
13660    9            10          5
13661    9            10          6
13662    9            10          7
13663    9            10          8
13664    9            10          9
13665    9            10         10
13666    9            10         11
13667    9            10         12
13668    9            10         13
13669    9            10         14
13670    9            10         15
13671    9            10         16
13672    9            10         17
13673    9            10         18
13674    9            10         19
13675    9            10         20
13676    9            10         21
13677    9            10         22
13678    9            10         23
13679    9            10         24
13680    9            10         25
13681    9            10         26
13682    9            10         27
13683    9            11          1
13684    9            11          2
13685    9            11          3
13686    9            11          4
13687    9            11          5
13688    9            11          6
13689    9            11          7
13690    9            11          8
13691    9            11          9
13692    9            11         10
13693    9            11         11
13694    9            11         12
13695    9            11         13
13696    9            11         14
13697    9            11         15
13698    9            12          1
13699    9            12          2
13700    9            12          3
13701    9            12          4
13702    9            12          5
13703    9            12          6
13704    9            12          7
13705    9            12          8
13706    9            12          9
13707    9            12         10
13708    9            12         11
13709    9            12         12
13710    9            12         13
13711    9            12         14
13712    9            12         15
13713    9            12         16
13714    9            12         17
13715    9            12         18
13716    9            12         19
13717    9            12         20
13718    9            12         21
13719    9            12         22
13720    9            12         23
13721    9            12         24
13722    9            12         25
13723    9            13          1
13724    9            13          2
13725    9            13          3
13726    9            13          4
13727    9            13          5
13728    9            13          6
13729    9            13          7
13730    9            13          8
13731    9            13          9
13732    9            13         10
13733    9            13         11
13734    9            13         12
13735    9            13         13
13736    9            13         14
13737    9            13         15
13738    9            13         16
13739    9            13         17
13740    9            13         18
13741    9            13         19
13742    9            13         20
13743    9            13         21
13744    9            13         22
13745    9            13         23
13746    9            14          1
13747    9            14          2
13748    9            14          3
13749    9            14          4
13750    9            14          5
13751    9            14          6
13752    9            14          7
13753    9            14          8
13754    9            14          9
13755    9            14         10
13756    9            14         11
13757    9            14         12
13758    9            14         13
13759    9            14         14
13760    9            14         15
13761    9            14         16
13762    9            14         17
13763    9            14         18
13764    9            14         19
13765    9            14         20
13766    9            14         21
13767    9            14         22
13768    9            14         23
13769    9            14         24
13770    9            14         25
13771    9            14         26
13772    9            14         27
13773    9            14         28
13774    9            14         29
13775    9            14         30
13776    9            14         31
13777    9            14         32
13778    9            14         33
13779    9            14         34
13780    9            14         35
13781    9            14         36
13782    9            14         37
13783    9            14         38
13784    9            14         39
13785    9            14         40
13786    9            14         41
13787    9            14         42
13788    9            14         43
13789    9            14         44
13790    9            14         45
13791    9            14         46
13792    9            14         47
13793    9            14         48
13794    9            14         49
13795    9            14         50
13796    9            14         51
13797    9            14         52
13798    9            15          1
13799    9            15          2
13800    9            15          3
13801    9            15          4
13802    9            15          5
13803    9            15          6
13804    9            15          7
13805    9            15          8
13806    9            15          9
13807    9            15         10
13808    9            15         11
13809    9            15         12
13810    9            15         13
13811    9            15         14
13812    9            15         15
13813    9            15         16
13814    9            15         17
13815    9            15         18
13816    9            15         19
13817    9            15         20
13818    9            15         21
13819    9            15         22
13820    9            15         23
13821    9            15         24
13822    9            15         25
13823    9            15         26
13824    9            15         27
13825    9            15         28
13826    9            15         29
13827    9            15         30
13828    9            15         31
13829    9            15         32
13830    9            15         33
13831    9            15         34
13832    9            15         35
13833    9            16          1
13834    9            16          2
13835    9            16          3
13836    9            16          4
13837    9            16          5
13838    9            16          6
13839    9            16          7
13840    9            16          8
13841    9            16          9
13842    9            16         10
13843    9            16         11
13844    9            16         12
13845    9            16         13
13846    9            16         14
13847    9            16         15
13848    9            16         16
13849    9            16         17
13850    9            16         18
13851    9            16         19
13852    9            16         20
13853    9            16         21
13854    9            16         22
13855    9            16         23
13856    9            17          1
13857    9            17          2
13858    9            17          3
13859    9            17          4
13860    9            17          5
13861    9            17          6
13862    9            17          7
13863    9            17          8
13864    9            17          9
13865    9            17         10
13866    9            17         11
13867    9            17         12
13868    9            17         13
13869    9            17         14
13870    9            17         15
13871    9            17         16
13872    9            17         17
13873    9            17         18
13874    9            17         19
13875    9            17         20
13876    9            17         21
13877    9            17         22
13878    9            17         23
13879    9            17         24
13880    9            17         25
13881    9            17         26
13882    9            17         27
13883    9            17         28
13884    9            17         29
13885    9            17         30
13886    9            17         31
13887    9            17         32
13888    9            17         33
13889    9            17         34
13890    9            17         35
13891    9            17         36
13892    9            17         37
13893    9            17         38
13894    9            17         39
13895    9            17         40
13896    9            17         41
13897    9            17         42
13898    9            17         43
13899    9            17         44
13900    9            17         45
13901    9            17         46
13902    9            17         47
13903    9            17         48
13904    9            17         49
13905    9            17         50
13906    9            17         51
13907    9            17         52
13908    9            17         53
13909    9            17         54
13910    9            17         55
13911    9            17         56
13912    9            17         57
13913    9            17         58
13914    9            18          1
13915    9            18          2
13916    9            18          3
13917    9            18          4
13918    9            18          5
13919    9            18          6
13920    9            18          7
13921    9            18          8
13922    9            18          9
13923    9            18         10
13924    9            18         11
13925    9            18         12
13926    9            18         13
13927    9            18         14
13928    9            18         15
13929    9            18         16
13930    9            18         17
13931    9            18         18
13932    9            18         19
13933    9            18         20
13934    9            18         21
13935    9            18         22
13936    9            18         23
13937    9            18         24
13938    9            18         25
13939    9            18         26
13940    9            18         27
13941    9            18         28
13942    9            18         29
13943    9            18         30
13944    9            19          1
13945    9            19          2
13946    9            19          3
13947    9            19          4
13948    9            19          5
13949    9            19          6
13950    9            19          7
13951    9            19          8
13952    9            19          9
13953    9            19         10
13954    9            19         11
13955    9            19         12
13956    9            19         13
13957    9            19         14
13958    9            19         15
13959    9            19         16
13960    9            19         17
13961    9            19         18
13962    9            19         19
13963    9            19         20
13964    9            19         21
13965    9            19         22
13966    9            19         23
13967    9            19         24
13968    9            20          1
13969    9            20          2
13970    9            20          3
13971    9            20          4
13972    9            20          5
13973    9            20          6
13974    9            20          7
13975    9            20          8
13976    9            20          9
13977    9            20         10
13978    9            20         11
13979    9            20         12
13980    9            20         13
13981    9            20         14
13982    9            20         15
13983    9            20         16
13984    9            20         17
13985    9            20         18
13986    9            20         19
13987    9            20         20
13988    9            20         21
13989    9            20         22
13990    9            20         23
13991    9            20         24
13992    9            20         25
13993    9            20         26
13994    9            20         27
13995    9            20         28
13996    9            20         29
13997    9            20         30
13998    9            20         31
13999    9            20         32
14000    9            20         33
14001    9            20         34
14002    9            20         35
14003    9            20         36
14004    9            20         37
14005    9            20         38
14006    9            20         39
14007    9            20         40
14008    9            20         41
14009    9            20         42
14010    9            21          1
14011    9            21          2
14012    9            21          3
14013    9            21          4
14014    9            21          5
14015    9            21          6
14016    9            21          7
14017    9            21          8
14018    9            21          9
14019    9            21         10
14020    9            21         11
14021    9            21         12
14022    9            21         13
14023    9            21         14
14024    9            21         15
14025    9            22          1
14026    9            22          2
14027    9            22          3
14028    9            22          4
14029    9            22          5
14030    9            22          6
14031    9            22          7
14032    9            22          8
14033    9            22          9
14034    9            22         10
14035    9            22         11
14036    9            22         12
14037    9            22         13
14038    9            22         14
14039    9            22         15
14040    9            22         16
14041    9            22         17
14042    9            22         18
14043    9            22         19
14044    9            22         20
14045    9            22         21
14046    9            22         22
14047    9            22         23
14048    9            23          1
14049    9            23          2
14050    9            23          3
14051    9            23          4
14052    9            23          5
14053    9            23          6
14054    9            23          7
14055    9            23          8
14056    9            23          9
14057    9            23         10
14058    9            23         11
14059    9            23         12
14060    9            23         13
14061    9            23         14
14062    9            23         15
14063    9            23         16
14064    9            23         17
14065    9            23         18
14066    9            23         19
14067    9            23         20
14068    9            23         21
14069    9            23         22
14070    9            23         23
14071    9            23         24
14072    9            23         25
14073    9            23         26
14074    9            23         27
14075    9            23         28
14076    9            23         29
14077    9            24          1
14078    9            24          2
14079    9            24          3
14080    9            24          4
14081    9            24          5
14082    9            24          6
14083    9            24          7
14084    9            24          8
14085    9            24          9
14086    9            24         10
14087    9            24         11
14088    9            24         12
14089    9            24         13
14090    9            24         14
14091    9            24         15
14092    9            24         16
14093    9            24         17
14094    9            24         18
14095    9            24         19
14096    9            24         20
14097    9            24         21
14098    9            24         22
14099    9            25          1
14100    9            25          2
14101    9            25          3
14102    9            25          4
14103    9            25          5
14104    9            25          6
14105    9            25          7
14106    9            25          8
14107    9            25          9
14108    9            25         10
14109    9            25         11
14110    9            25         12
14111    9            25         13
14112    9            25         14
14113    9            25         15
14114    9            25         16
14115    9            25         17
14116    9            25         18
14117    9            25         19
14118    9            25         20
14119    9            25         21
14120    9            25         22
14121    9            25         23
14122    9            25         24
14123    9            25         25
14124    9            25         26
14125    9            25         27
14126    9            25         28
14127    9            25         29
14128    9            25         30
14129    9            25         31
14130    9            25         32
14131    9            25         33
14132    9            25         34
14133    9            25         35
14134    9            25         36
14135    9            25         37
14136    9            25         38
14137    9            25         39
14138    9            25         40
14139    9            25         41
14140    9            25         42
14141    9            25         43
14142    9            25         44
14143    9            26          1
14144    9            26          2
14145    9            26          3
14146    9            26          4
14147    9            26          5
14148    9            26          6
14149    9            26          7
14150    9            26          8
14151    9            26          9
14152    9            26         10
14153    9            26         11
14154    9            26         12
14155    9            26         13
14156    9            26         14
14157    9            26         15
14158    9            26         16
14159    9            26         17
14160    9            26         18
14161    9            26         19
14162    9            26         20
14163    9            26         21
14164    9            26         22
14165    9            26         23
14166    9            26         24
14167    9            26         25
14168    9            27          1
14169    9            27          2
14170    9            27          3
14171    9            27          4
14172    9            27          5
14173    9            27          6
14174    9            27          7
14175    9            27          8
14176    9            27          9
14177    9            27         10
14178    9            27         11
14179    9            27         12
14180    9            28          1
14181    9            28          2
14182    9            28          3
14183    9            28          4
14184    9            28          5
14185    9            28          6
14186    9            28          7
14187    9            28          8
14188    9            28          9
14189    9            28         10
14190    9            28         11
14191    9            28         12
14192    9            28         13
14193    9            28         14
14194    9            28         15
14195    9            28         16
14196    9            28         17
14197    9            28         18
14198    9            28         19
14199    9            28         20
14200    9            28         21
14201    9            28         22
14202    9            28         23
14203    9            28         24
14204    9            28         25
14205    9            29          1
14206    9            29          2
14207    9            29          3
14208    9            29          4
14209    9            29          5
14210    9            29          6
14211    9            29          7
14212    9            29          8
14213    9            29          9
14214    9            29         10
14215    9            29         11
14216    9            30          1
14217    9            30          2
14218    9            30          3
14219    9            30          4
14220    9            30          5
14221    9            30          6
14222    9            30          7
14223    9            30          8
14224    9            30          9
14225    9            30         10
14226    9            30         11
14227    9            30         12
14228    9            30         13
14229    9            30         14
14230    9            30         15
14231    9            30         16
14232    9            30         17
14233    9            30         18
14234    9            30         19
14235    9            30         20
14236    9            30         21
14237    9            30         22
14238    9            30         23
14239    9            30         24
14240    9            30         25
14241    9            30         26
14242    9            30         27
14243    9            30         28
14244    9            30         29
14245    9            30         30
14246    9            30         31
14247    9            31          1
14248    9            31          2
14249    9            31          3
14250    9            31          4
14251    9            31          5
14252    9            31          6
14253    9            31          7
14254    9            31          8
14255    9            31          9
14256    9            31         10
14257    9            31         11
14258    9            31         12
14259    9            31         13
14260   10             1          1
14261   10             1          2
14262   10             1          3
14263   10             1          4
14264   10             1          5
14265   10             1          6
14266   10             1          7
14267   10             1          8
14268   10             1          9
14269   10             1         10
14270   10             1         11
14271   10             1         12
14272   10             1         13
14273   10             1         14
14274   10             1         15
14275   10             1         16
14276   10             1         17
14277   10             1         18
14278   10             1         19
14279   10             1         20
14280   10             1         21
14281   10             1         22
14282   10             1         23
14283   10             1         24
14284   10             1         25
14285   10             1         26
14286   10             1         27
14287   10             2          1
14288   10             2          2
14289   10             2          3
14290   10             2          4
14291   10             2          5
14292   10             2          6
14293   10             2          7
14294   10             2          8
14295   10             2          9
14296   10             2         10
14297   10             2         11
14298   10             2         12
14299   10             2         13
14300   10             2         14
14301   10             2         15
14302   10             2         16
14303   10             2         17
14304   10             2         18
14305   10             2         19
14306   10             2         20
14307   10             2         21
14308   10             2         22
14309   10             2         23
14310   10             2         24
14311   10             2         25
14312   10             2         26
14313   10             2         27
14314   10             2         28
14315   10             2         29
14316   10             2         30
14317   10             2         31
14318   10             2         32
14319   10             3          1
14320   10             3          2
14321   10             3          3
14322   10             3          4
14323   10             3          5
14324   10             3          6
14325   10             3          7
14326   10             3          8
14327   10             3          9
14328   10             3         10
14329   10             3         11
14330   10             3         12
14331   10             3         13
14332   10             3         14
14333   10             3         15
14334   10             3         16
14335   10             3         17
14336   10             3         18
14337   10             3         19
14338   10             3         20
14339   10             3         21
14340   10             3         22
14341   10             3         23
14342   10             3         24
14343   10             3         25
14344   10             3         26
14345   10             3         27
14346   10             3         28
14347   10             3         29
14348   10             3         30
14349   10             3         31
14350   10             3         32
14351   10             3         33
14352   10             3         34
14353   10             3         35
14354   10             3         36
14355   10             3         37
14356   10             3         38
14357   10             3         39
14358   10             4          1
14359   10             4          2
14360   10             4          3
14361   10             4          4
14362   10             4          5
14363   10             4          6
14364   10             4          7
14365   10             4          8
14366   10             4          9
14367   10             4         10
14368   10             4         11
14369   10             4         12
14370   10             5          1
14371   10             5          2
14372   10             5          3
14373   10             5          4
14374   10             5          5
14375   10             5          6
14376   10             5          7
14377   10             5          8
14378   10             5          9
14379   10             5         10
14380   10             5         11
14381   10             5         12
14382   10             5         13
14383   10             5         14
14384   10             5         15
14385   10             5         16
14386   10             5         17
14387   10             5         18
14388   10             5         19
14389   10             5         20
14390   10             5         21
14391   10             5         22
14392   10             5         23
14393   10             5         24
14394   10             5         25
14395   10             6          1
14396   10             6          2
14397   10             6          3
14398   10             6          4
14399   10             6          5
14400   10             6          6
14401   10             6          7
14402   10             6          8
14403   10             6          9
14404   10             6         10
14405   10             6         11
14406   10             6         12
14407   10             6         13
14408   10             6         14
14409   10             6         15
14410   10             6         16
14411   10             6         17
14412   10             6         18
14413   10             6         19
14414   10             6         20
14415   10             6         21
14416   10             6         22
14417   10             6         23
14418   10             7          1
14419   10             7          2
14420   10             7          3
14421   10             7          4
14422   10             7          5
14423   10             7          6
14424   10             7          7
14425   10             7          8
14426   10             7          9
14427   10             7         10
14428   10             7         11
14429   10             7         12
14430   10             7         13
14431   10             7         14
14432   10             7         15
14433   10             7         16
14434   10             7         17
14435   10             7         18
14436   10             7         19
14437   10             7         20
14438   10             7         21
14439   10             7         22
14440   10             7         23
14441   10             7         24
14442   10             7         25
14443   10             7         26
14444   10             7         27
14445   10             7         28
14446   10             7         29
14447   10             8          1
14448   10             8          2
14449   10             8          3
14450   10             8          4
14451   10             8          5
14452   10             8          6
14453   10             8          7
14454   10             8          8
14455   10             8          9
14456   10             8         10
14457   10             8         11
14458   10             8         12
14459   10             8         13
14460   10             8         14
14461   10             8         15
14462   10             8         16
14463   10             8         17
14464   10             8         18
14465   10             9          1
14466   10             9          2
14467   10             9          3
14468   10             9          4
14469   10             9          5
14470   10             9          6
14471   10             9          7
14472   10             9          8
14473   10             9          9
14474   10             9         10
14475   10             9         11
14476   10             9         12
14477   10             9         13
14478   10            10          1
14479   10            10          2
14480   10            10          3
14481   10            10          4
14482   10            10          5
14483   10            10          6
14484   10            10          7
14485   10            10          8
14486   10            10          9
14487   10            10         10
14488   10            10         11
14489   10            10         12
14490   10            10         13
14491   10            10         14
14492   10            10         15
14493   10            10         16
14494   10            10         17
14495   10            10         18
14496   10            10         19
14497   10            11          1
14498   10            11          2
14499   10            11          3
14500   10            11          4
14501   10            11          5
14502   10            11          6
14503   10            11          7
14504   10            11          8
14505   10            11          9
14506   10            11         10
14507   10            11         11
14508   10            11         12
14509   10            11         13
14510   10            11         14
14511   10            11         15
14512   10            11         16
14513   10            11         17
14514   10            11         18
14515   10            11         19
14516   10            11         20
14517   10            11         21
14518   10            11         22
14519   10            11         23
14520   10            11         24
14521   10            11         25
14522   10            11         26
14523   10            11         27
14524   10            12          1
14525   10            12          2
14526   10            12          3
14527   10            12          4
14528   10            12          5
14529   10            12          6
14530   10            12          7
14531   10            12          8
14532   10            12          9
14533   10            12         10
14534   10            12         11
14535   10            12         12
14536   10            12         13
14537   10            12         14
14538   10            12         15
14539   10            12         16
14540   10            12         17
14541   10            12         18
14542   10            12         19
14543   10            12         20
14544   10            12         21
14545   10            12         22
14546   10            12         23
14547   10            12         24
14548   10            12         25
14549   10            12         26
14550   10            12         27
14551   10            12         28
14552   10            12         29
14553   10            12         30
14554   10            12         31
14555   10            13          1
14556   10            13          2
14557   10            13          3
14558   10            13          4
14559   10            13          5
14560   10            13          6
14561   10            13          7
14562   10            13          8
14563   10            13          9
14564   10            13         10
14565   10            13         11
14566   10            13         12
14567   10            13         13
14568   10            13         14
14569   10            13         15
14570   10            13         16
14571   10            13         17
14572   10            13         18
14573   10            13         19
14574   10            13         20
14575   10            13         21
14576   10            13         22
14577   10            13         23
14578   10            13         24
14579   10            13         25
14580   10            13         26
14581   10            13         27
14582   10            13         28
14583   10            13         29
14584   10            13         30
14585   10            13         31
14586   10            13         32
14587   10            13         33
14588   10            13         34
14589   10            13         35
14590   10            13         36
14591   10            13         37
14592   10            13         38
14593   10            13         39
14594   10            14          1
14595   10            14          2
14596   10            14          3
14597   10            14          4
14598   10            14          5
14599   10            14          6
14600   10            14          7
14601   10            14          8
14602   10            14          9
14603   10            14         10
14604   10            14         11
14605   10            14         12
14606   10            14         13
14607   10            14         14
14608   10            14         15
14609   10            14         16
14610   10            14         17
14611   10            14         18
14612   10            14         19
14613   10            14         20
14614   10            14         21
14615   10            14         22
14616   10            14         23
14617   10            14         24
14618   10            14         25
14619   10            14         26
14620   10            14         27
14621   10            14         28
14622   10            14         29
14623   10            14         30
14624   10            14         31
14625   10            14         32
14626   10            14         33
14627   10            15          1
14628   10            15          2
14629   10            15          3
14630   10            15          4
14631   10            15          5
14632   10            15          6
14633   10            15          7
14634   10            15          8
14635   10            15          9
14636   10            15         10
14637   10            15         11
14638   10            15         12
14639   10            15         13
14640   10            15         14
14641   10            15         15
14642   10            15         16
14643   10            15         17
14644   10            15         18
14645   10            15         19
14646   10            15         20
14647   10            15         21
14648   10            15         22
14649   10            15         23
14650   10            15         24
14651   10            15         25
14652   10            15         26
14653   10            15         27
14654   10            15         28
14655   10            15         29
14656   10            15         30
14657   10            15         31
14658   10            15         32
14659   10            15         33
14660   10            15         34
14661   10            15         35
14662   10            15         36
14663   10            15         37
14664   10            16          1
14665   10            16          2
14666   10            16          3
14667   10            16          4
14668   10            16          5
14669   10            16          6
14670   10            16          7
14671   10            16          8
14672   10            16          9
14673   10            16         10
14674   10            16         11
14675   10            16         12
14676   10            16         13
14677   10            16         14
14678   10            16         15
14679   10            16         16
14680   10            16         17
14681   10            16         18
14682   10            16         19
14683   10            16         20
14684   10            16         21
14685   10            16         22
14686   10            16         23
14687   10            17          1
14688   10            17          2
14689   10            17          3
14690   10            17          4
14691   10            17          5
14692   10            17          6
14693   10            17          7
14694   10            17          8
14695   10            17          9
14696   10            17         10
14697   10            17         11
14698   10            17         12
14699   10            17         13
14700   10            17         14
14701   10            17         15
14702   10            17         16
14703   10            17         17
14704   10            17         18
14705   10            17         19
14706   10            17         20
14707   10            17         21
14708   10            17         22
14709   10            17         23
14710   10            17         24
14711   10            17         25
14712   10            17         26
14713   10            17         27
14714   10            17         28
14715   10            17         29
14716   10            18          1
14717   10            18          2
14718   10            18          3
14719   10            18          4
14720   10            18          5
14721   10            18          6
14722   10            18          7
14723   10            18          8
14724   10            18          9
14725   10            18         10
14726   10            18         11
14727   10            18         12
14728   10            18         13
14729   10            18         14
14730   10            18         15
14731   10            18         16
14732   10            18         17
14733   10            18         18
14734   10            18         19
14735   10            18         20
14736   10            18         21
14737   10            18         22
14738   10            18         23
14739   10            18         24
14740   10            18         25
14741   10            18         26
14742   10            18         27
14743   10            18         28
14744   10            18         29
14745   10            18         30
14746   10            18         31
14747   10            18         32
14748   10            18         33
14749   10            19          1
14750   10            19          2
14751   10            19          3
14752   10            19          4
14753   10            19          5
14754   10            19          6
14755   10            19          7
14756   10            19          8
14757   10            19          9
14758   10            19         10
14759   10            19         11
14760   10            19         12
14761   10            19         13
14762   10            19         14
14763   10            19         15
14764   10            19         16
14765   10            19         17
14766   10            19         18
14767   10            19         19
14768   10            19         20
14769   10            19         21
14770   10            19         22
14771   10            19         23
14772   10            19         24
14773   10            19         25
14774   10            19         26
14775   10            19         27
14776   10            19         28
14777   10            19         29
14778   10            19         30
14779   10            19         31
14780   10            19         32
14781   10            19         33
14782   10            19         34
14783   10            19         35
14784   10            19         36
14785   10            19         37
14786   10            19         38
14787   10            19         39
14788   10            19         40
14789   10            19         41
14790   10            19         42
14791   10            19         43
14792   10            20          1
14793   10            20          2
14794   10            20          3
14795   10            20          4
14796   10            20          5
14797   10            20          6
14798   10            20          7
14799   10            20          8
14800   10            20          9
14801   10            20         10
14802   10            20         11
14803   10            20         12
14804   10            20         13
14805   10            20         14
14806   10            20         15
14807   10            20         16
14808   10            20         17
14809   10            20         18
14810   10            20         19
14811   10            20         20
14812   10            20         21
14813   10            20         22
14814   10            20         23
14815   10            20         24
14816   10            20         25
14817   10            20         26
14818   10            21          1
14819   10            21          2
14820   10            21          3
14821   10            21          4
14822   10            21          5
14823   10            21          6
14824   10            21          7
14825   10            21          8
14826   10            21          9
14827   10            21         10
14828   10            21         11
14829   10            21         12
14830   10            21         13
14831   10            21         14
14832   10            21         15
14833   10            21         16
14834   10            21         17
14835   10            21         18
14836   10            21         19
14837   10            21         20
14838   10            21         21
14839   10            21         22
14840   10            22          1
14841   10            22          2
14842   10            22          3
14843   10            22          4
14844   10            22          5
14845   10            22          6
14846   10            22          7
14847   10            22          8
14848   10            22          9
14849   10            22         10
14850   10            22         11
14851   10            22         12
14852   10            22         13
14853   10            22         14
14854   10            22         15
14855   10            22         16
14856   10            22         17
14857   10            22         18
14858   10            22         19
14859   10            22         20
14860   10            22         21
14861   10            22         22
14862   10            22         23
14863   10            22         24
14864   10            22         25
14865   10            22         26
14866   10            22         27
14867   10            22         28
14868   10            22         29
14869   10            22         30
14870   10            22         31
14871   10            22         32
14872   10            22         33
14873   10            22         34
14874   10            22         35
14875   10            22         36
14876   10            22         37
14877   10            22         38
14878   10            22         39
14879   10            22         40
14880   10            22         41
14881   10            22         42
14882   10            22         43
14883   10            22         44
14884   10            22         45
14885   10            22         46
14886   10            22         47
14887   10            22         48
14888   10            22         49
14889   10            22         50
14890   10            22         51
14891   10            23          1
14892   10            23          2
14893   10            23          3
14894   10            23          4
14895   10            23          5
14896   10            23          6
14897   10            23          7
14898   10            23          8
14899   10            23          9
14900   10            23         10
14901   10            23         11
14902   10            23         12
14903   10            23         13
14904   10            23         14
14905   10            23         15
14906   10            23         16
14907   10            23         17
14908   10            23         18
14909   10            23         19
14910   10            23         20
14911   10            23         21
14912   10            23         22
14913   10            23         23
14914   10            23         24
14915   10            23         25
14916   10            23         26
14917   10            23         27
14918   10            23         28
14919   10            23         29
14920   10            23         30
14921   10            23         31
14922   10            23         32
14923   10            23         33
14924   10            23         34
14925   10            23         35
14926   10            23         36
14927   10            23         37
14928   10            23         38
14929   10            23         39
14930   10            24          1
14931   10            24          2
14932   10            24          3
14933   10            24          4
14934   10            24          5
14935   10            24          6
14936   10            24          7
14937   10            24          8
14938   10            24          9
14939   10            24         10
14940   10            24         11
14941   10            24         12
14942   10            24         13
14943   10            24         14
14944   10            24         15
14945   10            24         16
14946   10            24         17
14947   10            24         18
14948   10            24         19
14949   10            24         20
14950   10            24         21
14951   10            24         22
14952   10            24         23
14953   10            24         24
14954   10            24         25
14955   11             1          1
14956   11             1          2
14957   11             1          3
14958   11             1          4
14959   11             1          5
14960   11             1          6
14961   11             1          7
14962   11             1          8
14963   11             1          9
14964   11             1         10
14965   11             1         11
14966   11             1         12
14967   11             1         13
14968   11             1         14
14969   11             1         15
14970   11             1         16
14971   11             1         17
14972   11             1         18
14973   11             1         19
14974   11             1         20
14975   11             1         21
14976   11             1         22
14977   11             1         23
14978   11             1         24
14979   11             1         25
14980   11             1         26
14981   11             1         27
14982   11             1         28
14983   11             1         29
14984   11             1         30
14985   11             1         31
14986   11             1         32
14987   11             1         33
14988   11             1         34
14989   11             1         35
14990   11             1         36
14991   11             1         37
14992   11             1         38
14993   11             1         39
14994   11             1         40
14995   11             1         41
14996   11             1         42
14997   11             1         43
14998   11             1         44
14999   11             1         45
15000   11             1         46
15001   11             1         47
15002   11             1         48
15003   11             1         49
15004   11             1         50
15005   11             1         51
15006   11             1         52
15007   11             1         53
15008   11             2          1
15009   11             2          2
15010   11             2          3
15011   11             2          4
15012   11             2          5
15013   11             2          6
15014   11             2          7
15015   11             2          8
15016   11             2          9
15017   11             2         10
15018   11             2         11
15019   11             2         12
15020   11             2         13
15021   11             2         14
15022   11             2         15
15023   11             2         16
15024   11             2         17
15025   11             2         18
15026   11             2         19
15027   11             2         20
15028   11             2         21
15029   11             2         22
15030   11             2         23
15031   11             2         24
15032   11             2         25
15033   11             2         26
15034   11             2         27
15035   11             2         28
15036   11             2         29
15037   11             2         30
15038   11             2         31
15039   11             2         32
15040   11             2         33
15041   11             2         34
15042   11             2         35
15043   11             2         36
15044   11             2         37
15045   11             2         38
15046   11             2         39
15047   11             2         40
15048   11             2         41
15049   11             2         42
15050   11             2         43
15051   11             2         44
15052   11             2         45
15053   11             2         46
15054   11             3          1
15055   11             3          2
15056   11             3          3
15057   11             3          4
15058   11             3          5
15059   11             3          6
15060   11             3          7
15061   11             3          8
15062   11             3          9
15063   11             3         10
15064   11             3         11
15065   11             3         12
15066   11             3         13
15067   11             3         14
15068   11             3         15
15069   11             3         16
15070   11             3         17
15071   11             3         18
15072   11             3         19
15073   11             3         20
15074   11             3         21
15075   11             3         22
15076   11             3         23
15077   11             3         24
15078   11             3         25
15079   11             3         26
15080   11             3         27
15081   11             3         28
15082   11             4          1
15083   11             4          2
15084   11             4          3
15085   11             4          4
15086   11             4          5
15087   11             4          6
15088   11             4          7
15089   11             4          8
15090   11             4          9
15091   11             4         10
15092   11             4         11
15093   11             4         12
15094   11             4         13
15095   11             4         14
15096   11             4         15
15097   11             4         16
15098   11             4         17
15099   11             4         18
15100   11             4         19
15101   11             4         20
15102   11             4         21
15103   11             4         22
15104   11             4         23
15105   11             4         24
15106   11             4         25
15107   11             4         26
15108   11             4         27
15109   11             4         28
15110   11             4         29
15111   11             4         30
15112   11             4         31
15113   11             4         32
15114   11             4         33
15115   11             4         34
15116   11             5          1
15117   11             5          2
15118   11             5          3
15119   11             5          4
15120   11             5          5
15121   11             5          6
15122   11             5          7
15123   11             5          8
15124   11             5          9
15125   11             5         10
15126   11             5         11
15127   11             5         12
15128   11             5         13
15129   11             5         14
15130   11             5         15
15131   11             5         16
15132   11             5         17
15133   11             5         18
15134   11             6          1
15135   11             6          2
15136   11             6          3
15137   11             6          4
15138   11             6          5
15139   11             6          6
15140   11             6          7
15141   11             6          8
15142   11             6          9
15143   11             6         10
15144   11             6         11
15145   11             6         12
15146   11             6         13
15147   11             6         14
15148   11             6         15
15149   11             6         16
15150   11             6         17
15151   11             6         18
15152   11             6         19
15153   11             6         20
15154   11             6         21
15155   11             6         22
15156   11             6         23
15157   11             6         24
15158   11             6         25
15159   11             6         26
15160   11             6         27
15161   11             6         28
15162   11             6         29
15163   11             6         30
15164   11             6         31
15165   11             6         32
15166   11             6         33
15167   11             6         34
15168   11             6         35
15169   11             6         36
15170   11             6         37
15171   11             6         38
15172   11             7          1
15173   11             7          2
15174   11             7          3
15175   11             7          4
15176   11             7          5
15177   11             7          6
15178   11             7          7
15179   11             7          8
15180   11             7          9
15181   11             7         10
15182   11             7         11
15183   11             7         12
15184   11             7         13
15185   11             7         14
15186   11             7         15
15187   11             7         16
15188   11             7         17
15189   11             7         18
15190   11             7         19
15191   11             7         20
15192   11             7         21
15193   11             7         22
15194   11             7         23
15195   11             7         24
15196   11             7         25
15197   11             7         26
15198   11             7         27
15199   11             7         28
15200   11             7         29
15201   11             7         30
15202   11             7         31
15203   11             7         32
15204   11             7         33
15205   11             7         34
15206   11             7         35
15207   11             7         36
15208   11             7         37
15209   11             7         38
15210   11             7         39
15211   11             7         40
15212   11             7         41
15213   11             7         42
15214   11             7         43
15215   11             7         44
15216   11             7         45
15217   11             7         46
15218   11             7         47
15219   11             7         48
15220   11             7         49
15221   11             7         50
15222   11             7         51
15223   11             8          1
15224   11             8          2
15225   11             8          3
15226   11             8          4
15227   11             8          5
15228   11             8          6
15229   11             8          7
15230   11             8          8
15231   11             8          9
15232   11             8         10
15233   11             8         11
15234   11             8         12
15235   11             8         13
15236   11             8         14
15237   11             8         15
15238   11             8         16
15239   11             8         17
15240   11             8         18
15241   11             8         19
15242   11             8         20
15243   11             8         21
15244   11             8         22
15245   11             8         23
15246   11             8         24
15247   11             8         25
15248   11             8         26
15249   11             8         27
15250   11             8         28
15251   11             8         29
15252   11             8         30
15253   11             8         31
15254   11             8         32
15255   11             8         33
15256   11             8         34
15257   11             8         35
15258   11             8         36
15259   11             8         37
15260   11             8         38
15261   11             8         39
15262   11             8         40
15263   11             8         41
15264   11             8         42
15265   11             8         43
15266   11             8         44
15267   11             8         45
15268   11             8         46
15269   11             8         47
15270   11             8         48
15271   11             8         49
15272   11             8         50
15273   11             8         51
15274   11             8         52
15275   11             8         53
15276   11             8         54
15277   11             8         55
15278   11             8         56
15279   11             8         57
15280   11             8         58
15281   11             8         59
15282   11             8         60
15283   11             8         61
15284   11             8         62
15285   11             8         63
15286   11             8         64
15287   11             8         65
15288   11             8         66
15289   11             9          1
15290   11             9          2
15291   11             9          3
15292   11             9          4
15293   11             9          5
15294   11             9          6
15295   11             9          7
15296   11             9          8
15297   11             9          9
15298   11             9         10
15299   11             9         11
15300   11             9         12
15301   11             9         13
15302   11             9         14
15303   11             9         15
15304   11             9         16
15305   11             9         17
15306   11             9         18
15307   11             9         19
15308   11             9         20
15309   11             9         21
15310   11             9         22
15311   11             9         23
15312   11             9         24
15313   11             9         25
15314   11             9         26
15315   11             9         27
15316   11             9         28
15317   11            10          1
15318   11            10          2
15319   11            10          3
15320   11            10          4
15321   11            10          5
15322   11            10          6
15323   11            10          7
15324   11            10          8
15325   11            10          9
15326   11            10         10
15327   11            10         11
15328   11            10         12
15329   11            10         13
15330   11            10         14
15331   11            10         15
15332   11            10         16
15333   11            10         17
15334   11            10         18
15335   11            10         19
15336   11            10         20
15337   11            10         21
15338   11            10         22
15339   11            10         23
15340   11            10         24
15341   11            10         25
15342   11            10         26
15343   11            10         27
15344   11            10         28
15345   11            10         29
15346   11            11          1
15347   11            11          2
15348   11            11          3
15349   11            11          4
15350   11            11          5
15351   11            11          6
15352   11            11          7
15353   11            11          8
15354   11            11          9
15355   11            11         10
15356   11            11         11
15357   11            11         12
15358   11            11         13
15359   11            11         14
15360   11            11         15
15361   11            11         16
15362   11            11         17
15363   11            11         18
15364   11            11         19
15365   11            11         20
15366   11            11         21
15367   11            11         22
15368   11            11         23
15369   11            11         24
15370   11            11         25
15371   11            11         26
15372   11            11         27
15373   11            11         28
15374   11            11         29
15375   11            11         30
15376   11            11         31
15377   11            11         32
15378   11            11         33
15379   11            11         34
15380   11            11         35
15381   11            11         36
15382   11            11         37
15383   11            11         38
15384   11            11         39
15385   11            11         40
15386   11            11         41
15387   11            11         42
15388   11            11         43
15389   11            12          1
15390   11            12          2
15391   11            12          3
15392   11            12          4
15393   11            12          5
15394   11            12          6
15395   11            12          7
15396   11            12          8
15397   11            12          9
15398   11            12         10
15399   11            12         11
15400   11            12         12
15401   11            12         13
15402   11            12         14
15403   11            12         15
15404   11            12         16
15405   11            12         17
15406   11            12         18
15407   11            12         19
15408   11            12         20
15409   11            12         21
15410   11            12         22
15411   11            12         23
15412   11            12         24
15413   11            12         25
15414   11            12         26
15415   11            12         27
15416   11            12         28
15417   11            12         29
15418   11            12         30
15419   11            12         31
15420   11            12         32
15421   11            12         33
15422   11            13          1
15423   11            13          2
15424   11            13          3
15425   11            13          4
15426   11            13          5
15427   11            13          6
15428   11            13          7
15429   11            13          8
15430   11            13          9
15431   11            13         10
15432   11            13         11
15433   11            13         12
15434   11            13         13
15435   11            13         14
15436   11            13         15
15437   11            13         16
15438   11            13         17
15439   11            13         18
15440   11            13         19
15441   11            13         20
15442   11            13         21
15443   11            13         22
15444   11            13         23
15445   11            13         24
15446   11            13         25
15447   11            13         26
15448   11            13         27
15449   11            13         28
15450   11            13         29
15451   11            13         30
15452   11            13         31
15453   11            13         32
15454   11            13         33
15455   11            13         34
15456   11            14          1
15457   11            14          2
15458   11            14          3
15459   11            14          4
15460   11            14          5
15461   11            14          6
15462   11            14          7
15463   11            14          8
15464   11            14          9
15465   11            14         10
15466   11            14         11
15467   11            14         12
15468   11            14         13
15469   11            14         14
15470   11            14         15
15471   11            14         16
15472   11            14         17
15473   11            14         18
15474   11            14         19
15475   11            14         20
15476   11            14         21
15477   11            14         22
15478   11            14         23
15479   11            14         24
15480   11            14         25
15481   11            14         26
15482   11            14         27
15483   11            14         28
15484   11            14         29
15485   11            14         30
15486   11            14         31
15487   11            15          1
15488   11            15          2
15489   11            15          3
15490   11            15          4
15491   11            15          5
15492   11            15          6
15493   11            15          7
15494   11            15          8
15495   11            15          9
15496   11            15         10
15497   11            15         11
15498   11            15         12
15499   11            15         13
15500   11            15         14
15501   11            15         15
15502   11            15         16
15503   11            15         17
15504   11            15         18
15505   11            15         19
15506   11            15         20
15507   11            15         21
15508   11            15         22
15509   11            15         23
15510   11            15         24
15511   11            15         25
15512   11            15         26
15513   11            15         27
15514   11            15         28
15515   11            15         29
15516   11            15         30
15517   11            15         31
15518   11            15         32
15519   11            15         33
15520   11            15         34
15521   11            16          1
15522   11            16          2
15523   11            16          3
15524   11            16          4
15525   11            16          5
15526   11            16          6
15527   11            16          7
15528   11            16          8
15529   11            16          9
15530   11            16         10
15531   11            16         11
15532   11            16         12
15533   11            16         13
15534   11            16         14
15535   11            16         15
15536   11            16         16
15537   11            16         17
15538   11            16         18
15539   11            16         19
15540   11            16         20
15541   11            16         21
15542   11            16         22
15543   11            16         23
15544   11            16         24
15545   11            16         25
15546   11            16         26
15547   11            16         27
15548   11            16         28
15549   11            16         29
15550   11            16         30
15551   11            16         31
15552   11            16         32
15553   11            16         33
15554   11            16         34
15555   11            17          1
15556   11            17          2
15557   11            17          3
15558   11            17          4
15559   11            17          5
15560   11            17          6
15561   11            17          7
15562   11            17          8
15563   11            17          9
15564   11            17         10
15565   11            17         11
15566   11            17         12
15567   11            17         13
15568   11            17         14
15569   11            17         15
15570   11            17         16
15571   11            17         17
15572   11            17         18
15573   11            17         19
15574   11            17         20
15575   11            17         21
15576   11            17         22
15577   11            17         23
15578   11            17         24
15579   11            18          1
15580   11            18          2
15581   11            18          3
15582   11            18          4
15583   11            18          5
15584   11            18          6
15585   11            18          7
15586   11            18          8
15587   11            18          9
15588   11            18         10
15589   11            18         11
15590   11            18         12
15591   11            18         13
15592   11            18         14
15593   11            18         15
15594   11            18         16
15595   11            18         17
15596   11            18         18
15597   11            18         19
15598   11            18         20
15599   11            18         21
15600   11            18         22
15601   11            18         23
15602   11            18         24
15603   11            18         25
15604   11            18         26
15605   11            18         27
15606   11            18         28
15607   11            18         29
15608   11            18         30
15609   11            18         31
15610   11            18         32
15611   11            18         33
15612   11            18         34
15613   11            18         35
15614   11            18         36
15615   11            18         37
15616   11            18         38
15617   11            18         39
15618   11            18         40
15619   11            18         41
15620   11            18         42
15621   11            18         43
15622   11            18         44
15623   11            18         45
15624   11            18         46
15625   11            19          1
15626   11            19          2
15627   11            19          3
15628   11            19          4
15629   11            19          5
15630   11            19          6
15631   11            19          7
15632   11            19          8
15633   11            19          9
15634   11            19         10
15635   11            19         11
15636   11            19         12
15637   11            19         13
15638   11            19         14
15639   11            19         15
15640   11            19         16
15641   11            19         17
15642   11            19         18
15643   11            19         19
15644   11            19         20
15645   11            19         21
15646   11            20          1
15647   11            20          2
15648   11            20          3
15649   11            20          4
15650   11            20          5
15651   11            20          6
15652   11            20          7
15653   11            20          8
15654   11            20          9
15655   11            20         10
15656   11            20         11
15657   11            20         12
15658   11            20         13
15659   11            20         14
15660   11            20         15
15661   11            20         16
15662   11            20         17
15663   11            20         18
15664   11            20         19
15665   11            20         20
15666   11            20         21
15667   11            20         22
15668   11            20         23
15669   11            20         24
15670   11            20         25
15671   11            20         26
15672   11            20         27
15673   11            20         28
15674   11            20         29
15675   11            20         30
15676   11            20         31
15677   11            20         32
15678   11            20         33
15679   11            20         34
15680   11            20         35
15681   11            20         36
15682   11            20         37
15683   11            20         38
15684   11            20         39
15685   11            20         40
15686   11            20         41
15687   11            20         42
15688   11            20         43
15689   11            21          1
15690   11            21          2
15691   11            21          3
15692   11            21          4
15693   11            21          5
15694   11            21          6
15695   11            21          7
15696   11            21          8
15697   11            21          9
15698   11            21         10
15699   11            21         11
15700   11            21         12
15701   11            21         13
15702   11            21         14
15703   11            21         15
15704   11            21         16
15705   11            21         17
15706   11            21         18
15707   11            21         19
15708   11            21         20
15709   11            21         21
15710   11            21         22
15711   11            21         23
15712   11            21         24
15713   11            21         25
15714   11            21         26
15715   11            21         27
15716   11            21         28
15717   11            21         29
15718   11            22          1
15719   11            22          2
15720   11            22          3
15721   11            22          4
15722   11            22          5
15723   11            22          6
15724   11            22          7
15725   11            22          8
15726   11            22          9
15727   11            22         10
15728   11            22         11
15729   11            22         12
15730   11            22         13
15731   11            22         14
15732   11            22         15
15733   11            22         16
15734   11            22         17
15735   11            22         18
15736   11            22         19
15737   11            22         20
15738   11            22         21
15739   11            22         22
15740   11            22         23
15741   11            22         24
15742   11            22         25
15743   11            22         26
15744   11            22         27
15745   11            22         28
15746   11            22         29
15747   11            22         30
15748   11            22         31
15749   11            22         32
15750   11            22         33
15751   11            22         34
15752   11            22         35
15753   11            22         36
15754   11            22         37
15755   11            22         38
15756   11            22         39
15757   11            22         40
15758   11            22         41
15759   11            22         42
15760   11            22         43
15761   11            22         44
15762   11            22         45
15763   11            22         46
15764   11            22         47
15765   11            22         48
15766   11            22         49
15767   11            22         50
15768   11            22         51
15769   11            22         52
15770   11            22         53
15771   12             1          1
15772   12             1          2
15773   12             1          3
15774   12             1          4
15775   12             1          5
15776   12             1          6
15777   12             1          7
15778   12             1          8
15779   12             1          9
15780   12             1         10
15781   12             1         11
15782   12             1         12
15783   12             1         13
15784   12             1         14
15785   12             1         15
15786   12             1         16
15787   12             1         17
15788   12             1         18
15789   12             2          1
15790   12             2          2
15791   12             2          3
15792   12             2          4
15793   12             2          5
15794   12             2          6
15795   12             2          7
15796   12             2          8
15797   12             2          9
15798   12             2         10
15799   12             2         11
15800   12             2         12
15801   12             2         13
15802   12             2         14
15803   12             2         15
15804   12             2         16
15805   12             2         17
15806   12             2         18
15807   12             2         19
15808   12             2         20
15809   12             2         21
15810   12             2         22
15811   12             2         23
15812   12             2         24
15813   12             2         25
15814   12             3          1
15815   12             3          2
15816   12             3          3
15817   12             3          4
15818   12             3          5
15819   12             3          6
15820   12             3          7
15821   12             3          8
15822   12             3          9
15823   12             3         10
15824   12             3         11
15825   12             3         12
15826   12             3         13
15827   12             3         14
15828   12             3         15
15829   12             3         16
15830   12             3         17
15831   12             3         18
15832   12             3         19
15833   12             3         20
15834   12             3         21
15835   12             3         22
15836   12             3         23
15837   12             3         24
15838   12             3         25
15839   12             3         26
15840   12             3         27
15841   12             4          1
15842   12             4          2
15843   12             4          3
15844   12             4          4
15845   12             4          5
15846   12             4          6
15847   12             4          7
15848   12             4          8
15849   12             4          9
15850   12             4         10
15851   12             4         11
15852   12             4         12
15853   12             4         13
15854   12             4         14
15855   12             4         15
15856   12             4         16
15857   12             4         17
15858   12             4         18
15859   12             4         19
15860   12             4         20
15861   12             4         21
15862   12             4         22
15863   12             4         23
15864   12             4         24
15865   12             4         25
15866   12             4         26
15867   12             4         27
15868   12             4         28
15869   12             4         29
15870   12             4         30
15871   12             4         31
15872   12             4         32
15873   12             4         33
15874   12             4         34
15875   12             4         35
15876   12             4         36
15877   12             4         37
15878   12             4         38
15879   12             4         39
15880   12             4         40
15881   12             4         41
15882   12             4         42
15883   12             4         43
15884   12             4         44
15885   12             5          1
15886   12             5          2
15887   12             5          3
15888   12             5          4
15889   12             5          5
15890   12             5          6
15891   12             5          7
15892   12             5          8
15893   12             5          9
15894   12             5         10
15895   12             5         11
15896   12             5         12
15897   12             5         13
15898   12             5         14
15899   12             5         15
15900   12             5         16
15901   12             5         17
15902   12             5         18
15903   12             5         19
15904   12             5         20
15905   12             5         21
15906   12             5         22
15907   12             5         23
15908   12             5         24
15909   12             5         25
15910   12             5         26
15911   12             5         27
15912   12             6          1
15913   12             6          2
15914   12             6          3
15915   12             6          4
15916   12             6          5
15917   12             6          6
15918   12             6          7
15919   12             6          8
15920   12             6          9
15921   12             6         10
15922   12             6         11
15923   12             6         12
15924   12             6         13
15925   12             6         14
15926   12             6         15
15927   12             6         16
15928   12             6         17
15929   12             6         18
15930   12             6         19
15931   12             6         20
15932   12             6         21
15933   12             6         22
15934   12             6         23
15935   12             6         24
15936   12             6         25
15937   12             6         26
15938   12             6         27
15939   12             6         28
15940   12             6         29
15941   12             6         30
15942   12             6         31
15943   12             6         32
15944   12             6         33
15945   12             7          1
15946   12             7          2
15947   12             7          3
15948   12             7          4
15949   12             7          5
15950   12             7          6
15951   12             7          7
15952   12             7          8
15953   12             7          9
15954   12             7         10
15955   12             7         11
15956   12             7         12
15957   12             7         13
15958   12             7         14
15959   12             7         15
15960   12             7         16
15961   12             7         17
15962   12             7         18
15963   12             7         19
15964   12             7         20
15965   12             8          1
15966   12             8          2
15967   12             8          3
15968   12             8          4
15969   12             8          5
15970   12             8          6
15971   12             8          7
15972   12             8          8
15973   12             8          9
15974   12             8         10
15975   12             8         11
15976   12             8         12
15977   12             8         13
15978   12             8         14
15979   12             8         15
15980   12             8         16
15981   12             8         17
15982   12             8         18
15983   12             8         19
15984   12             8         20
15985   12             8         21
15986   12             8         22
15987   12             8         23
15988   12             8         24
15989   12             8         25
15990   12             8         26
15991   12             8         27
15992   12             8         28
15993   12             8         29
15994   12             9          1
15995   12             9          2
15996   12             9          3
15997   12             9          4
15998   12             9          5
15999   12             9          6
16000   12             9          7
16001   12             9          8
16002   12             9          9
16003   12             9         10
16004   12             9         11
16005   12             9         12
16006   12             9         13
16007   12             9         14
16008   12             9         15
16009   12             9         16
16010   12             9         17
16011   12             9         18
16012   12             9         19
16013   12             9         20
16014   12             9         21
16015   12             9         22
16016   12             9         23
16017   12             9         24
16018   12             9         25
16019   12             9         26
16020   12             9         27
16021   12             9         28
16022   12             9         29
16023   12             9         30
16024   12             9         31
16025   12             9         32
16026   12             9         33
16027   12             9         34
16028   12             9         35
16029   12             9         36
16030   12             9         37
16031   12            10          1
16032   12            10          2
16033   12            10          3
16034   12            10          4
16035   12            10          5
16036   12            10          6
16037   12            10          7
16038   12            10          8
16039   12            10          9
16040   12            10         10
16041   12            10         11
16042   12            10         12
16043   12            10         13
16044   12            10         14
16045   12            10         15
16046   12            10         16
16047   12            10         17
16048   12            10         18
16049   12            10         19
16050   12            10         20
16051   12            10         21
16052   12            10         22
16053   12            10         23
16054   12            10         24
16055   12            10         25
16056   12            10         26
16057   12            10         27
16058   12            10         28
16059   12            10         29
16060   12            10         30
16061   12            10         31
16062   12            10         32
16063   12            10         33
16064   12            10         34
16065   12            10         35
16066   12            10         36
16067   12            11          1
16068   12            11          2
16069   12            11          3
16070   12            11          4
16071   12            11          5
16072   12            11          6
16073   12            11          7
16074   12            11          8
16075   12            11          9
16076   12            11         10
16077   12            11         11
16078   12            11         12
16079   12            11         13
16080   12            11         14
16081   12            11         15
16082   12            11         16
16083   12            11         17
16084   12            11         18
16085   12            11         19
16086   12            11         20
16087   12            11         21
16088   12            12          1
16089   12            12          2
16090   12            12          3
16091   12            12          4
16092   12            12          5
16093   12            12          6
16094   12            12          7
16095   12            12          8
16096   12            12          9
16097   12            12         10
16098   12            12         11
16099   12            12         12
16100   12            12         13
16101   12            12         14
16102   12            12         15
16103   12            12         16
16104   12            12         17
16105   12            12         18
16106   12            12         19
16107   12            12         20
16108   12            12         21
16109   12            13          1
16110   12            13          2
16111   12            13          3
16112   12            13          4
16113   12            13          5
16114   12            13          6
16115   12            13          7
16116   12            13          8
16117   12            13          9
16118   12            13         10
16119   12            13         11
16120   12            13         12
16121   12            13         13
16122   12            13         14
16123   12            13         15
16124   12            13         16
16125   12            13         17
16126   12            13         18
16127   12            13         19
16128   12            13         20
16129   12            13         21
16130   12            13         22
16131   12            13         23
16132   12            13         24
16133   12            13         25
16134   12            14          1
16135   12            14          2
16136   12            14          3
16137   12            14          4
16138   12            14          5
16139   12            14          6
16140   12            14          7
16141   12            14          8
16142   12            14          9
16143   12            14         10
16144   12            14         11
16145   12            14         12
16146   12            14         13
16147   12            14         14
16148   12            14         15
16149   12            14         16
16150   12            14         17
16151   12            14         18
16152   12            14         19
16153   12            14         20
16154   12            14         21
16155   12            14         22
16156   12            14         23
16157   12            14         24
16158   12            14         25
16159   12            14         26
16160   12            14         27
16161   12            14         28
16162   12            14         29
16163   12            15          1
16164   12            15          2
16165   12            15          3
16166   12            15          4
16167   12            15          5
16168   12            15          6
16169   12            15          7
16170   12            15          8
16171   12            15          9
16172   12            15         10
16173   12            15         11
16174   12            15         12
16175   12            15         13
16176   12            15         14
16177   12            15         15
16178   12            15         16
16179   12            15         17
16180   12            15         18
16181   12            15         19
16182   12            15         20
16183   12            15         21
16184   12            15         22
16185   12            15         23
16186   12            15         24
16187   12            15         25
16188   12            15         26
16189   12            15         27
16190   12            15         28
16191   12            15         29
16192   12            15         30
16193   12            15         31
16194   12            15         32
16195   12            15         33
16196   12            15         34
16197   12            15         35
16198   12            15         36
16199   12            15         37
16200   12            15         38
16201   12            16          1
16202   12            16          2
16203   12            16          3
16204   12            16          4
16205   12            16          5
16206   12            16          6
16207   12            16          7
16208   12            16          8
16209   12            16          9
16210   12            16         10
16211   12            16         11
16212   12            16         12
16213   12            16         13
16214   12            16         14
16215   12            16         15
16216   12            16         16
16217   12            16         17
16218   12            16         18
16219   12            16         19
16220   12            16         20
16221   12            17          1
16222   12            17          2
16223   12            17          3
16224   12            17          4
16225   12            17          5
16226   12            17          6
16227   12            17          7
16228   12            17          8
16229   12            17          9
16230   12            17         10
16231   12            17         11
16232   12            17         12
16233   12            17         13
16234   12            17         14
16235   12            17         15
16236   12            17         16
16237   12            17         17
16238   12            17         18
16239   12            17         19
16240   12            17         20
16241   12            17         21
16242   12            17         22
16243   12            17         23
16244   12            17         24
16245   12            17         25
16246   12            17         26
16247   12            17         27
16248   12            17         28
16249   12            17         29
16250   12            17         30
16251   12            17         31
16252   12            17         32
16253   12            17         33
16254   12            17         34
16255   12            17         35
16256   12            17         36
16257   12            17         37
16258   12            17         38
16259   12            17         39
16260   12            17         40
16261   12            17         41
16262   12            18          1
16263   12            18          2
16264   12            18          3
16265   12            18          4
16266   12            18          5
16267   12            18          6
16268   12            18          7
16269   12            18          8
16270   12            18          9
16271   12            18         10
16272   12            18         11
16273   12            18         12
16274   12            18         13
16275   12            18         14
16276   12            18         15
16277   12            18         16
16278   12            18         17
16279   12            18         18
16280   12            18         19
16281   12            18         20
16282   12            18         21
16283   12            18         22
16284   12            18         23
16285   12            18         24
16286   12            18         25
16287   12            18         26
16288   12            18         27
16289   12            18         28
16290   12            18         29
16291   12            18         30
16292   12            18         31
16293   12            18         32
16294   12            18         33
16295   12            18         34
16296   12            18         35
16297   12            18         36
16298   12            18         37
16299   12            19          1
16300   12            19          2
16301   12            19          3
16302   12            19          4
16303   12            19          5
16304   12            19          6
16305   12            19          7
16306   12            19          8
16307   12            19          9
16308   12            19         10
16309   12            19         11
16310   12            19         12
16311   12            19         13
16312   12            19         14
16313   12            19         15
16314   12            19         16
16315   12            19         17
16316   12            19         18
16317   12            19         19
16318   12            19         20
16319   12            19         21
16320   12            19         22
16321   12            19         23
16322   12            19         24
16323   12            19         25
16324   12            19         26
16325   12            19         27
16326   12            19         28
16327   12            19         29
16328   12            19         30
16329   12            19         31
16330   12            19         32
16331   12            19         33
16332   12            19         34
16333   12            19         35
16334   12            19         36
16335   12            19         37
16336   12            20          1
16337   12            20          2
16338   12            20          3
16339   12            20          4
16340   12            20          5
16341   12            20          6
16342   12            20          7
16343   12            20          8
16344   12            20          9
16345   12            20         10
16346   12            20         11
16347   12            20         12
16348   12            20         13
16349   12            20         14
16350   12            20         15
16351   12            20         16
16352   12            20         17
16353   12            20         18
16354   12            20         19
16355   12            20         20
16356   12            20         21
16357   12            21          1
16358   12            21          2
16359   12            21          3
16360   12            21          4
16361   12            21          5
16362   12            21          6
16363   12            21          7
16364   12            21          8
16365   12            21          9
16366   12            21         10
16367   12            21         11
16368   12            21         12
16369   12            21         13
16370   12            21         14
16371   12            21         15
16372   12            21         16
16373   12            21         17
16374   12            21         18
16375   12            21         19
16376   12            21         20
16377   12            21         21
16378   12            21         22
16379   12            21         23
16380   12            21         24
16381   12            21         25
16382   12            21         26
16383   12            22          1
16384   12            22          2
16385   12            22          3
16386   12            22          4
16387   12            22          5
16388   12            22          6
16389   12            22          7
16390   12            22          8
16391   12            22          9
16392   12            22         10
16393   12            22         11
16394   12            22         12
16395   12            22         13
16396   12            22         14
16397   12            22         15
16398   12            22         16
16399   12            22         17
16400   12            22         18
16401   12            22         19
16402   12            22         20
16403   12            23          1
16404   12            23          2
16405   12            23          3
16406   12            23          4
16407   12            23          5
16408   12            23          6
16409   12            23          7
16410   12            23          8
16411   12            23          9
16412   12            23         10
16413   12            23         11
16414   12            23         12
16415   12            23         13
16416   12            23         14
16417   12            23         15
16418   12            23         16
16419   12            23         17
16420   12            23         18
16421   12            23         19
16422   12            23         20
16423   12            23         21
16424   12            23         22
16425   12            23         23
16426   12            23         24
16427   12            23         25
16428   12            23         26
16429   12            23         27
16430   12            23         28
16431   12            23         29
16432   12            23         30
16433   12            23         31
16434   12            23         32
16435   12            23         33
16436   12            23         34
16437   12            23         35
16438   12            23         36
16439   12            23         37
16440   12            24          1
16441   12            24          2
16442   12            24          3
16443   12            24          4
16444   12            24          5
16445   12            24          6
16446   12            24          7
16447   12            24          8
16448   12            24          9
16449   12            24         10
16450   12            24         11
16451   12            24         12
16452   12            24         13
16453   12            24         14
16454   12            24         15
16455   12            24         16
16456   12            24         17
16457   12            24         18
16458   12            24         19
16459   12            24         20
16460   12            25          1
16461   12            25          2
16462   12            25          3
16463   12            25          4
16464   12            25          5
16465   12            25          6
16466   12            25          7
16467   12            25          8
16468   12            25          9
16469   12            25         10
16470   12            25         11
16471   12            25         12
16472   12            25         13
16473   12            25         14
16474   12            25         15
16475   12            25         16
16476   12            25         17
16477   12            25         18
16478   12            25         19
16479   12            25         20
16480   12            25         21
16481   12            25         22
16482   12            25         23
16483   12            25         24
16484   12            25         25
16485   12            25         26
16486   12            25         27
16487   12            25         28
16488   12            25         29
16489   12            25         30
16490   13             1          1
16491   13             1          2
16492   13             1          3
16493   13             1          4
16494   13             1          5
16495   13             1          6
16496   13             1          7
16497   13             1          8
16498   13             1          9
16499   13             1         10
16500   13             1         11
16501   13             1         12
16502   13             1         13
16503   13             1         14
16504   13             1         15
16505   13             1         16
16506   13             1         17
16507   13             1         18
16508   13             1         19
16509   13             1         20
16510   13             1         21
16511   13             1         22
16512   13             1         23
16513   13             1         24
16514   13             1         25
16515   13             1         26
16516   13             1         27
16517   13             1         28
16518   13             1         29
16519   13             1         30
16520   13             1         31
16521   13             1         32
16522   13             1         33
16523   13             1         34
16524   13             1         35
16525   13             1         36
16526   13             1         37
16527   13             1         38
16528   13             1         39
16529   13             1         40
16530   13             1         41
16531   13             1         42
16532   13             1         43
16533   13             1         44
16534   13             1         45
16535   13             1         46
16536   13             1         47
16537   13             1         48
16538   13             1         49
16539   13             1         50
16540   13             1         51
16541   13             1         52
16542   13             1         53
16543   13             1         54
16544   13             2          1
16545   13             2          2
16546   13             2          3
16547   13             2          4
16548   13             2          5
16549   13             2          6
16550   13             2          7
16551   13             2          8
16552   13             2          9
16553   13             2         10
16554   13             2         11
16555   13             2         12
16556   13             2         13
16557   13             2         14
16558   13             2         15
16559   13             2         16
16560   13             2         17
16561   13             2         18
16562   13             2         19
16563   13             2         20
16564   13             2         21
16565   13             2         22
16566   13             2         23
16567   13             2         24
16568   13             2         25
16569   13             2         26
16570   13             2         27
16571   13             2         28
16572   13             2         29
16573   13             2         30
16574   13             2         31
16575   13             2         32
16576   13             2         33
16577   13             2         34
16578   13             2         35
16579   13             2         36
16580   13             2         37
16581   13             2         38
16582   13             2         39
16583   13             2         40
16584   13             2         41
16585   13             2         42
16586   13             2         43
16587   13             2         44
16588   13             2         45
16589   13             2         46
16590   13             2         47
16591   13             2         48
16592   13             2         49
16593   13             2         50
16594   13             2         51
16595   13             2         52
16596   13             2         53
16597   13             2         54
16598   13             2         55
16599   13             3          1
16600   13             3          2
16601   13             3          3
16602   13             3          4
16603   13             3          5
16604   13             3          6
16605   13             3          7
16606   13             3          8
16607   13             3          9
16608   13             3         10
16609   13             3         11
16610   13             3         12
16611   13             3         13
16612   13             3         14
16613   13             3         15
16614   13             3         16
16615   13             3         17
16616   13             3         18
16617   13             3         19
16618   13             3         20
16619   13             3         21
16620   13             3         22
16621   13             3         23
16622   13             3         24
16623   13             4          1
16624   13             4          2
16625   13             4          3
16626   13             4          4
16627   13             4          5
16628   13             4          6
16629   13             4          7
16630   13             4          8
16631   13             4          9
16632   13             4         10
16633   13             4         11
16634   13             4         12
16635   13             4         13
16636   13             4         14
16637   13             4         15
16638   13             4         16
16639   13             4         17
16640   13             4         18
16641   13             4         19
16642   13             4         20
16643   13             4         21
16644   13             4         22
16645   13             4         23
16646   13             4         24
16647   13             4         25
16648   13             4         26
16649   13             4         27
16650   13             4         28
16651   13             4         29
16652   13             4         30
16653   13             4         31
16654   13             4         32
16655   13             4         33
16656   13             4         34
16657   13             4         35
16658   13             4         36
16659   13             4         37
16660   13             4         38
16661   13             4         39
16662   13             4         40
16663   13             4         41
16664   13             4         42
16665   13             4         43
16666   13             5          1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               text
1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the Name of Allah—the Most Compassionate, Most Merciful.
2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All praise is for Allah—Lord of all worlds,
3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            the Most Compassionate, Most Merciful,
4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Master of the Day of Judgment.
5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You ˹alone˺ we worship and You ˹alone˺ we ask for help.
6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Guide us along the Straight Path,
7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the Path of those You have blessed—not those You are displeased with, or those who are astray.
8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Alif-Lãm-Mĩm.
9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is the Book! There is no doubt about it
10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who believe in the unseen, establish prayer, and donate from what We have provided for them,
11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and who believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you, and have sure faith in the Hereafter.
12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful.
13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As for those who persist in disbelief, it is the same whether you warn them or not—they will never believe.
14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah has sealed their hearts and their hearing, and their sight is covered. They will suffer a tremendous punishment.
15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there are some who say, "We believe in Allah and the Last Day," yet they are not ˹true˺ believers.
16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They seek to deceive Allah and the believers, yet they only deceive themselves, but they fail to perceive it.
17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There is sickness in their hearts, and Allah ˹only˺ lets their sickness increase. They will suffer a painful punishment for their lies.
18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When they are told, "Do not spread corruption in the land," they reply, "We are only peace-makers!"
19                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, it is they who are the corruptors, but they fail to perceive it.
20                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when they are told, "Believe as others believe," they reply, "Will we believe as the fools believe?" Indeed, it is they who are fools, but they do not know.
21                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When they meet the believers they say, "We believe." But when alone with their evil associates they say, "We are definitely with you; we were only mocking."
22                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah will throw their mockery back at them, leaving them to continue wandering blindly in their defiance.
23                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They are the ones who trade guidance for misguidance. But this trade is profitless, and they are not ˹rightly˺ guided.
24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Their example is that of someone who kindles a fire, but when it lights up all around them, Allah takes away their light, leaving them in complete darkness—unable to see.
25                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They are ˹wilfully˺ deaf, dumb, and blind, so they will never return ˹to the Right Path˺.
26                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or ˹those caught in˺ a rainstorm from the sky with darkness, thunder, and lightning. They press their fingers into their ears at the sound of every thunder-clap for fear of death. And Allah encompasses the disbelievers ˹by His might˺.
27                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is as if the lightning were about to snatch away their sight. Whenever lightning strikes, they walk in its light, but when darkness covers them, they stand still. Had Allah willed, He could have taken away their hearing and sight. Surely Allah is Most Capable of everything.
28                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O humanity! Worship your Lord, Who created you and those before you, so that you may become mindful ˹of Him˺.
29                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹He is the One˺ Who has made the earth a place of settlement for you and the sky a canopy; and sends down rain from the sky, causing fruits to grow as a provision for you. So do not knowingly set up equals to Allah ˹in worship˺.
30                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if you are in doubt about what We have revealed to Our servant, then produce a sûrah like it and call your helpers other than Allah, if what you say is true.
31                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if you are unable to do so—and you will never be able to do so—then fear the Fire fuelled with people and stones, which is prepared for the disbelievers.
32                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Give good news ˹O Prophet˺ to those who believe and do good that they will have Gardens under which rivers flow. Whenever provided with fruit, they will say, "This is what we were given before," for they will be served fruit that looks similar ˹but tastes different˺. They will have pure spouses, and they will be there forever.
33                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely Allah does not shy away from using the parable of a mosquito or what is even smaller. As for the believers, they know that it is the truth from their Lord. And as for the disbelievers, they argue, "What does Allah mean by such a parable?" Through this ˹test˺, He leaves many to stray, and guides many. And He leaves none to stray except the rebellious—
34                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land. It is they who are the ˹true˺ losers.
35                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           How can you deny Allah? You were lifeless and He gave you life, then He will cause you to die and again bring you to life, and then to Him you will ˹all˺ be returned.
36                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the One Who created everything in the earth for you. Then He turned towards the heaven, forming it into seven heavens. And He has ˹perfect˺ knowledge of all things.
37                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when your Lord said to the angels, "I am going to place a successive ˹human˺ authority on earth." They asked ˹Allah˺, "Will You place in it someone who will spread corruption there and shed blood while we glorify Your praises and proclaim Your holiness?" Allah responded, "I know what you do not know."
38                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He taught Adam the names of all things, then He presented them to the angels and said, "Tell Me the names of these, if what you say is true?"
39                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They replied, "Glory be to You! We have no knowledge except what You have taught us. You are truly the All-Knowing, All-Wise."
40                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah said, "O Adam! Inform them of their names." Then when Adam did, Allah said, "Did I not tell you that I know the secrets of the heavens and the earth, and I know what you reveal and what you conceal?"
41                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when We said to the angels, "Prostrate before Adam," becoming unfaithful.
42                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We cautioned, "O Adam! Live with your wife in Paradise and eat as freely as you please, but do not approach this tree, or else you will be wrongdoers."
43                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But Satan deceived them—leading to their fall from the ˹blissful˺ state they were in, You will find in the earth a residence and provision for your appointed stay."
44                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Adam was inspired with words ˹of prayer˺ by his Lord, so He accepted his repentance. Surely He is the Accepter of Repentance, Most Merciful.
45                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We said, "Descend all of you! Then when guidance comes to you from Me, whoever follows it, there will be no fear for them, nor will they grieve.
46                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But those who disbelieve and deny Our signs will be the residents of the Fire. They will be there forever."
47                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O children of Israel! Remember My favours upon you. Fulfil your covenant and I will fulfil Mine, and stand in awe of Me ˹alone˺.
48                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Believe in My revelations which confirm your Scriptures. And be mindful of Me.
49                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do not mix truth with falsehood or hide the truth knowingly.
50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Establish prayer, pay alms-tax, and bow down with those who bow down.
51                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you preach righteousness and fail to practice it yourselves, although you read the Scripture? Do you not understand?
52                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And seek help through patience and prayer. Indeed, it is a burden except for the humble—
53                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those who are certain that they will meet their Lord and to Him they will return.
54                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O Children of Israel! Remember ˹all˺ the favours I granted you and how I honoured you above the others.
55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Guard yourselves against the Day on which no soul will be of help to another. No intercession will be accepted, no ransom taken, and no help will be given.
56                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ how We delivered you from the people of Pharaoh, who afflicted you with dreadful torment, slaughtering your sons and keeping your women. That was a severe test from your Lord.
57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when We parted the sea, rescued you, and drowned Pharaoh’s people before your very eyes.
58                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when We appointed forty nights for Moses, then you worshipped the calf in his absence, acting wrongfully.
59                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Even then We ˹still˺ forgave you so perhaps you would be grateful.
60                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹remember˺ when We gave Moses the Scripture—the standard ˹to distinguish between right and wrong˺ that perhaps you would be ˹rightly˺ guided.
61                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹remember˺ when Moses said to his people, "O my people! Surely you have wronged yourselves by worshipping the calf, so turn in repentance to your Creator and execute ˹the calf-worshippers among˺ yourselves. That is best for you in the sight of your Creator." Then He accepted your repentance. Surely He is the Accepter of Repentance, Most Merciful.
62                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹remember˺ when you said, "O Moses! We will never believe you until we see Allah with our own eyes," so a thunderbolt struck you while you were looking on.
63                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then We brought you back to life after your death, so that perhaps you would be grateful.
64                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember when˺ We shaded you with clouds and sent down to you manna and quails, ˹saying˺, "Eat from the good things We have provided for you." The evildoers ˹certainly˺ did not wrong Us, but wronged themselves.
65                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹remember˺ when We said, "Enter this city and eat freely from wherever you please; enter the gate with humility, saying, ‘Absolve us.’ We will forgive your sins and multiply the reward for the good-doers."
66                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But the wrongdoers changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their rebelliousness.
67                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹remember˺ when Moses prayed for water for his people, We said, "Strike the rock with your staff." Then twelve springs gushed out, ˹and˺ each tribe knew its drinking place. ˹We then said,˺ "Eat and drink of Allah’s provisions, and do not go about spreading corruption in the land."
68                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when you said, "O Moses! We cannot endure the same meal ˹every day˺. So ˹just˺ call upon your Lord on our behalf, He will bring forth for us some of what the earth produces of herbs, cucumbers, garlic, lentils, and onions." Moses scolded ˹them˺, "Do you exchange what is better for what is worse? ˹You can˺ go down to any village and you will find what you have asked for." They were stricken with disgrace and misery, and they invited the displeasure of Allah for rejecting Allah’s signs and unjustly killing the prophets. This is ˹a fair reward˺ for their disobedience and violations.
69                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, the believers, Jews, Christians, and Sabians
70                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹remember˺ when We took a covenant from you and raised the mountain above you ˹saying˺, "Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺."
71                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Yet you turned away afterwards. Had it not been for Allah’s grace and mercy upon you, you would have certainly been of the losers.
72                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You are already aware of those of you who broke the Sabbath. We said to them, "Be disgraced apes!"
73                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So We made their fate an example to present and future generations, and a lesson to the God-fearing.
74                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹remember˺ when Moses said to his people, "Allah commands you to sacrifice a cow." They replied, "Are you mocking us?" Moses responded, "I seek refuge in Allah from acting foolishly!"
75                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They said, "Call upon your Lord to clarify for us what type ˹of cow˺ it should be!" He replied, "Allah says, ‘The cow should neither be old nor young but in between. So do as you are commanded!’"
76                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They said, "Call upon your Lord to specify for us its colour." He replied, "Allah says, ‘It should be a bright yellow cow—pleasant to see.’"
77                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Again they said, "Call upon your Lord so that He may make clear to us which cow, for all cows look the same to us. Then, Allah willing, we will be guided ˹to the right one˺."
78                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He replied, "Allah says, ‘It should have been used neither to till the soil nor water the fields; wholesome and without blemish.’" They said, "Now you have come with the truth." Yet they still slaughtered it hesitantly!
79                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹This is˺ when a man was killed and you disputed who the killer was, but Allah revealed what you concealed.
80                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So We instructed, "Strike the dead body with a piece of the cow." This is how ˹easily˺ Allah brings the dead to life, showing you His signs so that you may understand.
81                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Even then your hearts became hardened like a rock or even harder, for some rocks gush rivers; others split, spilling water; while others are humbled in awe of Allah. And Allah is never unaware of what you do.
82                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do you ˹believers still˺ expect them to be true to you, though a group of them would hear the word of Allah then knowingly corrupt it after understanding it?
83                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When they meet the believers they say, "We believe." But in private they say ˹to each other˺, "Will you disclose to the believers the knowledge Allah has revealed to you, so that they may use it against you before your Lord? Do you not understand?"
84                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do they not know that Allah is aware of what they conceal and what they reveal?
85                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And among them are the illiterate who know nothing about the Scripture except lies, and ˹so˺ they ˹wishfully˺ speculate.
86                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So woe to those who distort the Scripture with their own hands then say, "This is from Allah"—seeking a fleeting gain! So woe to them for what their hands have written, and woe to them for what they have earned.
87                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Some of˺ the Jews claim, "The Fire will not touch us except for a number of days." Say, ˹O Prophet,˺ "Have you taken a pledge from Allah—for Allah never breaks His word—or are you ˹just˺ saying about Allah what you do not know?"
88                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But no! Those who commit evil and are engrossed in sin will be the residents of the Fire. They will be there forever.
89                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And those who believe and do good will be the residents of Paradise. They will be there forever.
90                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when We took a covenant from the children of Israel ˹stating˺, "Worship none but Allah; be kind to parents, relatives, orphans and the needy; speak kindly to people; establish prayer; and pay alms-tax." But you ˹Israelites˺ turned away—except for a few of you—and were indifferent.
91                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember˺ when We took your covenant that you would neither shed each other’s blood nor expel each other from their homes, you gave your pledge and bore witness.
92                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But here you are, killing each other and expelling some of your people from their homes, aiding one another in sin and aggression; and when those ˹expelled˺ come to you as captives, you still ransom them—though expelling them was unlawful for you. Do you believe in some of the Scripture and reject the rest? Is there any reward for those who do so among you other than disgrace in this worldly life and being subjected to the harshest punishment on the Day of Judgment? For Allah is never unaware of what you do.
93                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the ones who trade the Hereafter for the life of this world. So their punishment will not be reduced, nor will they be helped.
94                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We gave Moses the Book and sent after him successive messengers. And We gave Jesus, son of Mary, clear proofs and supported him with the holy spirit. Why is it that every time a messenger comes to you ˹Israelites˺ with something you do not like, you become arrogant, rejecting some and killing others?
95                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They say, "Our hearts are unreceptive!" In fact, Allah has condemned them for their disbelief. They have but little faith.
96                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Although they used to pray for victory ˹by means of the Prophet˺ over the polytheists, confirming the Scripture they had ˹in their hands˺, they rejected it. So may Allah’s condemnation be upon the disbelievers.
97                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Miserable is the price they have sold their souls for—denying Allah’s revelation and resenting Allah for granting His grace to whoever He wills of His servants! They have earned wrath upon wrath. And such disbelievers will suffer a humiliating punishment.
98                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When it is said to them: "Believe in what Allah has revealed," they reply, "We only believe in what was sent down to us," and they deny what came afterwards, though it is the truth confirming their own Scriptures! Ask ˹them, O  Prophet˺, "Why then did you kill Allah’s prophets before, if you are ˹truly˺ believers?"
99                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, Moses came to you with clear proofs, then you worshipped the calf in his absence, acting wrongfully.
100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when We took your covenant and raised the mountain above you ˹saying˺, "Hold firmly to that ˹Scripture˺ which We have given you and obey," they answered, "We hear and disobey." The love of the calf was rooted in their hearts because of their disbelief. Say, ˹O Prophet,˺ "How evil is what your ˹so-called˺ belief prompts you to do, if you ˹actually˺ believe ˹in the Torah˺!"
101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "If the ˹eternal˺ Home of the Hereafter with Allah is exclusively for you ˹Israelites˺ out of all humanity, then wish for death if what you say is true!"
102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.
103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      You will surely find them clinging to life more eagerly than any other people, even more than polytheists. Each one of them wishes to live a thousand years. But even if they were to live that long, it would not save them from the punishment. And Allah is All-Seeing of what they do.
104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "Whoever is an enemy of Gabriel should know that he revealed this ˹Quran˺ to your heart by Allah’s Will, confirming what came before it—a guide and good news for the believers."
105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whoever is an enemy of Allah, His angels, His messengers, Gabriel, and Michael, then ˹let them know that˺ Allah is certainly the enemy of the disbelievers.
106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, We have sent down to you ˹O Prophet˺ clear revelations. ˹But˺ none will deny them except the rebellious.
107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Why is it that every time they make a covenant, a group of them casts it aside? In fact, most of them do not believe.
108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now, when a messenger from Allah has come to them—confirming their own Scriptures—some of the People of the Book cast the Book of Allah behind their backs as if they did not know.
109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They ˹instead˺ followed the magic promoted by the devils during the reign of Solomon. Never did Solomon disbelieve, rather the devils disbelieved. They taught magic to the people, along with what had been revealed to the two angels, Harût and Marût, in Babylon. The two angels never taught anyone without saying, "We are only a test ˹for you˺, so do not abandon ˹your˺ faith." Yet people learned ˹magic˺ that caused a rift ˹even˺ between husband and wife; although their magic could not harm anyone except by Allah’s Will. They learned what harmed them and did not benefit them—although they already knew that whoever buys into magic would have no share in the Hereafter. Miserable indeed was the price for which they sold their souls, if only they knew!
110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If only they were faithful and mindful ˹of Allah˺, there would have been a better reward from Allah, if only they knew!
111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not say, "Ra’ina." [Herd us!] But say, "Unẓurna," [Tend to us!] and listen ˹attentively˺. And the disbelievers will suffer a painful punishment.
112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The disbelievers from the People of the Book and the polytheists would not want you to receive any blessing from your Lord, but Allah selects whoever He wills for His mercy. And Allah is the Lord of infinite bounty.
113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If We ever abrogate a verse or cause it to be forgotten, We replace it with a better or similar one. Do you not know that Allah is Most Capable of everything?
114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do you not know that the kingdom of the heavens and the earth belongs ˹only˺ to Allah, and you have no guardian or helper besides Allah?
115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or do you ˹believers˺ intend to ask of your Messenger as Moses was asked before? But whoever trades belief for disbelief has truly strayed from the Right Way.
116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Many among the People of the Book wish they could turn you ˹believers˺ back to disbelief because of their envy, after the truth has been made clear to them. Pardon and bear with them until Allah delivers His decision. Surely Allah is Most Capable of everything.
117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Establish prayer, and pay alms-tax. Whatever good you send forth for yourselves, you will ˹certainly˺ find ˹its reward˺ with Allah. Surely Allah is All-Seeing of what you do.
118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Jews and Christians each claim that none will enter Paradise except those of their own faith. These are their desires. Reply, ˹O Prophet,˺ "Show ˹me˺ your proof if what you say is true."
119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But no! Whoever submits themselves to Allah and does good will have their reward with their Lord. And there will be no fear for them, nor will they grieve.
120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The Jews say, "The Christians have nothing to stand on" and the Christians say, "The Jews have nothing to stand on," although both recite the Scriptures. And those ˹pagans˺ who have no knowledge say the same ˹about people of faith˺. Surely Allah will judge between them on the Day of Judgment regarding their dispute.
121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Who does more wrong than those who prevent Allah’s Name from being mentioned in His places of worship and strive to destroy them? Such people have no right to enter these places except with fear. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.
122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To Allah belong the east and the west, so wherever you turn you are facing ˹towards˺ Allah. All-Knowing.
123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They Glory be to Him! In fact, to Him belongs whatever is in the heavens and the earth—all are subject to His Will.
124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹He is˺ the Originator of the heavens and the earth! When He decrees a matter, He simply tells it, "Be!" And it is!
125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those who have no knowledge say, "If only Allah would speak to us or a sign would come to us!" The same was said by those who came before. Their hearts are all alike. Indeed, We have made the signs clear for people of sure faith.
126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We have surely sent you with the truth ˹O Prophet˺ as a deliverer of good news and a warner. And you will not be accountable for the residents of the Hellfire.
127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Never will the Jews or Christians be pleased with you, until you follow their faith. Say, "Allah’s guidance is the only ˹true˺ guidance." And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or help you against Allah.
128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those We have given the Book follow it as it should be followed. It is they who ˹truly˺ believe in it. As for those who reject it, it is they who are the losers.
129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O Children of Israel! Remember My favours upon you and how I honoured you above the others.
130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And guard yourselves against the Day when no soul will be of any help to another. No ransom will be taken, no intercession accepted, and no help will be given.
131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Remember˺ when Abraham was tested by his Lord with ˹certain˺ commandments, which he fulfilled. Allah said, "I will certainly make you into a role model for the people." Abraham asked, "What about my offspring?" Allah replied, "My covenant is not extended to the wrongdoers."
132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when We made the Sacred House as a site of prayer." And We entrusted Abraham and Ishmael to purify My House for those who circle it, who meditate in it, and who bow and prostrate themselves ˹in prayer˺.
133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when Abraham said, "My Lord, make this city ˹of Mecca˺ secure and provide fruits to its people—those among them who believe in Allah and the Last Day." He answered, "As for those who disbelieve, I will let them enjoy themselves for a little while, then I will condemn them to the torment of the Fire. What an evil destination!"
134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹remember˺ when Abraham raised the foundation of the House with Ishmael, ˹both praying,˺ "Our Lord! Accept ˹this˺ from us. You are indeed the All-Hearing, All-Knowing.
135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Lord! Make us both ˹fully˺ submit to You and from our descendants a nation that will submit to you. Show us our rituals, and turn to us in grace. You are truly the Accepter of Repentance, Most Merciful.
136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Our Lord! Raise from among them a messenger who will recite to them Your revelations, teach them the Book and wisdom, and purify them. Indeed, You ˹alone˺ are the Almighty, All-Wise."
137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And who would reject the faith of Abraham except a fool! We certainly chose him in this life, and in the Hereafter he will surely be among the righteous.
138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When his Lord ordered him, "Submit ˹to My Will˺," he responded, "I submit to the Lord of all worlds."
139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This was the advice of Abraham—as well as Jacob—to his children, ˹saying˺, "Indeed, Allah has chosen for you this faith; so do not die except in ˹a state of full˺ submission."
140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or did you witness when death came to Jacob? He asked his children, "Who will you worship after my passing?" They replied, "We will ˹continue to˺ worship your God, the God of your forefathers—Abraham, Ishmael, and Isaac—the One God. And to Him we ˹all˺ submit."
141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That was a community that had already gone before. For them is what they earned and for you is what you have earned. And you will not be accountable for what they have done.
142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Jews and Christians each say, "Follow our faith to be ˹rightly˺ guided." Say, ˹O Prophet,˺ "No! We follow the faith of Abraham, the upright—who was not a polytheist."
143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O believers,˺ "We believe in Allah and what has been revealed to us; and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord. We make no distinction between any of them. And to Allah we all submit."
144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So if they believe in what you believe, then they will indeed be ˹rightly˺ guided. But if they turn away, they are simply opposed ˹to the truth˺. But Allah will spare you their evil. For He is the All-Hearing, All-Knowing.
145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the ˹natural˺ Way of Allah. And who is better than Allah in ordaining a way? And we worship ˹none but˺ Him.
146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "Would you dispute with us about Allah, while He is our Lord and your Lord? We are accountable for our deeds and you for yours. And we are devoted to Him ˹alone˺.
147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do you claim that Abraham, Ishmael, Isaac, Jacob, and his descendants were all Jews or Christians?" Say, "Who is more knowledgeable: you or Allah?" Who does more wrong than those who hide the testimony they received from Allah? And Allah is never unaware of what you do.
148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That was a community that had already gone before. For them is what they earned and for you is what you have earned. And you will not be accountable for what they have done.
149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The foolish among the people will ask, "Why did they turn away from the direction of prayer they used to face?" Say, ˹O Prophet,˺ "The east and west belong ˹only˺ to Allah. He guides whoever He wills to the Straight Path."
150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And so We have made you ˹believers˺ an upright community so that you may be witnesses over humanity and that the Messenger may be a witness over you. We assigned your former direction of prayer only to distinguish those who would remain faithful to the Messenger from those who would lose faith. It was certainly a difficult test except for those ˹rightly˺ guided by Allah. And Allah would never discount your ˹previous acts of˺ faith. Surely Allah is Ever Gracious and Most Merciful to humanity.
151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We see you ˹O Prophet˺ turning your face towards heaven. Now We will make you turn towards a direction ˹of prayer˺ that will please you. So turn your face towards the Sacred Mosque ˹in Mecca˺—wherever you are, turn your faces towards it. Those who were given the Scripture certainly know this to be the truth from their Lord. And Allah is never unaware of what they do.
152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Even if you were to bring every proof to the People of the Book, they would not accept your direction ˹of prayer˺, nor would you accept theirs; nor would any of them accept the direction ˹of prayer˺ of another. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, then you would certainly be one of the wrongdoers.
153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those We have given the Scripture recognize this ˹Prophet˺ as they recognize their own children. Yet a group of them hides the truth knowingly.
154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹This is˺ the truth from your Lord, so do not ever be one of those who doubt.
155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Everyone turns to their own direction ˹of prayer˺. So compete with one another in doing good. Wherever you are, Allah will bring you all together ˹for judgment˺. Surely Allah is Most Capable of everything.
156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wherever you are ˹O Prophet˺, turn your face towards the Sacred Mosque. This is certainly the truth from your Lord. And Allah is never unaware of what you ˹all˺ do.
157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wherever you are ˹O Prophet˺, turn your face towards the Sacred Mosque. And wherever you ˹believers˺ are, face towards it, so that people will have no argument against you, except the wrongdoers among them. Do not fear them; fear Me, so that I may ˹continue to˺ perfect My favour upon you and so you may be ˹rightly˺ guided.
158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Since We have sent you a messenger from among yourselves—reciting to you Our revelations, purifying you, teaching you the Book and wisdom, and teaching you what you never knew—
159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        remember Me; I will remember you. And thank Me, and never be ungrateful.
160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Seek comfort in patience and prayer. Allah is truly with those who are patient.
161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Never say that those martyred in the cause of Allah are dead—in fact, they are alive! But you do not perceive it.
162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We will certainly test you with a touch of fear and famine and loss of property, life, and crops. Give good news to those who patiently endure—
163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              who, when faced with a disaster, say, "Surely to Allah we belong and to Him we will ˹all˺ return."
164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They are the ones who will receive Allah’s blessings and mercy. And it is they who are ˹rightly˺ guided.
165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, ˹the hills of˺ safa and Marwah let them walk between ˹the two hills˺. And whoever does good willingly, Allah is truly Appreciative, All-Knowing.
166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Those who hide the clear proofs and guidance that We have revealed—after We made it clear for humanity in the Book—will be condemned by Allah and ˹all˺ those who condemn.
167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those who repent, mend their ways, and let the truth be known, they are the ones to whom I will turn ˹in forgiveness˺, for I am the Accepter of Repentance, Most Merciful.
168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely those who disbelieve and die as disbelievers are condemned by Allah, the angels, and all of humanity.
169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.
170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your God is ˹only˺ One God. There is no god ˹worthy of worship˺ except Him—the Most Compassionate, Most Merciful.
171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, in the creation of the heavens and the earth; the alternation of the day and the night; the ships that sail the sea for the benefit of humanity; the rain sent down by Allah from the skies, reviving the earth after its death; the scattering of all kinds of creatures throughout; the shifting of the winds; and the clouds drifting between the heavens and the earth—˹in all of this˺ are surely signs for people of understanding.
172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Still there are some who take others as Allah’s equal—they love them as they should love Allah—but the ˹true˺ believers love Allah even more. If only the wrongdoers could see the ˹horrible˺ punishment ˹awaiting them˺, they would certainly realize that all power belongs to Allah and that Allah is indeed severe in punishment.
173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Consider the Day˺ when those who misled others will disown their followers—when they face the torment—and the bonds that united them will be cut off.
174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The ˹misled˺ followers will cry, "If only we could have a second chance, we would disown them as they disowned us." And so Allah will make them remorseful of their misdeeds. And they will never ˹be able to˺ leave the Fire.
175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O humanity! Eat from what is lawful and good on the earth and do not follow Satan’s footsteps. He is truly your sworn enemy.
176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He only incites you to commit evil and indecency, and to claim against Allah what you do not know.
177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When it is said to them, "Follow what Allah has revealed," they reply, "No! We ˹only˺ follow what we found our forefathers practicing." ˹Would they still do so,˺ even if their forefathers had ˹absolutely˺ no understanding or guidance?
178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The example of the disbelievers ˹not responding to the Messenger’s warning˺ is like a flock not comprehending the calls and cries of the shepherd. ˹They are wilfully˺ deaf, dumb and blind so they have no understanding.
179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Eat from the good things We have provided for you. And give thanks to Allah if you ˹truly˺ worship Him ˹alone˺.
180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—they will not be sinful. Surely Allah is All-Forgiving, Most Merciful.
181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, those who hide Allah’s revelations, trading them for a fleeting gain consume nothing but fire into their bellies. Allah will neither speak to them on the Day of Judgment, nor will He purify them. And they will suffer a painful punishment.
182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They are the ones who trade guidance for misguidance and forgiveness for punishment. How persistent are they in pursuit of the Fire!
183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That is because Allah has revealed the Book in truth. And surely those who differ regarding it are totally engrossed in opposition.
184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Righteousness is not in turning your faces towards the east or the west. Rather, the righteous are those who believe in Allah, the Last Day, the angels, the Books, and the prophets; who give charity out of their cherished wealth to relatives, orphans, the poor, ˹needy˺ travellers, beggars, and for freeing captives; who establish prayer, pay alms-tax, and keep the pledges they make; and who are patient in times of suffering, adversity, and in ˹the heat of˺ battle. It is they who are true ˹in faith˺, and it is they who are mindful ˹of Allah˺.
185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! ˹The law of˺ retaliation is set for you in cases of murder—a free man for a free man, a slave for a slave, and a female for a female. and payment should be made courteously. This is a concession and a mercy from your Lord. But whoever transgresses after that will suffer a painful punishment.
186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There is ˹security of˺ life for you in ˹the law of˺ retaliation, O  people of reason, so that you may become mindful ˹of Allah˺.
187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is prescribed that when death approaches any of you—if they leave something of value—a will should be made in favour of parents and immediate family with fairness. ˹This is˺ an obligation on those who are mindful ˹of Allah˺.
188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But whoever changes the will after hearing it, the blame will only be on those who made the change. Indeed, Allah is All-Hearing, All-Knowing.
189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoever suspects an error or an injustice in the will and brings about a ˹fair˺ settlement among the parties will not be sinful. Surely Allah is All-Forgiving, Most Merciful.
190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O believers! Fasting is prescribed for you—as it was for those before you—so perhaps you will become mindful ˹of Allah˺.
191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Fast a˺ prescribed number of days. compensation can be made by feeding a needy person ˹for every day not fasted˺. But whoever volunteers to give more, it is better for them. And to fast is better for you, if only you knew.
192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ramaḍan is the month in which the Quran was revealed as a guide for humanity with clear proofs of guidance and the standard ˹to distinguish between right and wrong˺. So whoever is present this month, let them fast. But whoever is ill or on a journey, then ˹let them fast˺ an equal number of days ˹after Ramaḍan˺. Allah intends ease for you, not hardship, so that you may complete the prescribed period and proclaim the greatness of Allah for guiding you, and perhaps you will be grateful.
193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When My servants ask you ˹O Prophet˺ about Me: I am truly near. I respond to one’s prayer when they call upon Me. So let them respond ˹with obedience˺ to Me and believe in Me, perhaps they will be guided ˹to the Right Way˺.
194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It has been made permissible for you to be intimate with your wives during the nights preceding the fast. Your spouses are a garment ˹You may˺ eat and drink until you see the light of dawn breaking the darkness of night, then complete the fast until nightfall. Do not be intimate with your spouses while you are meditating in the mosques. These are the limits set by Allah, so do not exceed them. This is how Allah makes His revelations clear to people, so they may become mindful ˹of Him˺.
195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not consume one another’s wealth unjustly, nor deliberately bribe authorities in order to devour a portion of others’ property, knowing that it is a sin.
196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They ask you ˹O Prophet˺ about the phases of the moon. Say, "They are a means for people to determine time and pilgrimage." Righteousness is not in entering your houses from the back doors. Rather, righteousness is to be mindful ˹of Allah˺. So enter your homes through their ˹proper˺ doors, and be mindful of Allah so you may be successful.
197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Fight in the cause of Allah ˹only˺ against those who wage war against you, but do not exceed the limits. Allah does not like transgressors.
198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Kill them wherever you come upon them is far worse than killing. And do not fight them at the Sacred Mosque unless they attack you there. If they do so, then fight them—that is the reward of the disbelievers.
199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if they cease, then surely Allah is All-Forgiving, Most Merciful.
200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fight against them ˹if they persecute you˺ until there is no more persecution, and ˹your˺ devotion will be to Allah ˹alone˺. If they stop ˹persecuting you˺, let there be no hostility except against the aggressors.
201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹There will be retaliation in˺ a sacred month for ˹an offence in˺ a sacred month, and all violations will bring about retaliation. So, if anyone attacks you, retaliate in the same manner. ˹But˺ be mindful of Allah, and know that Allah is with those mindful ˹of Him˺.
202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Spend in the cause of Allah and do not let your own hands throw you into destruction ˹by withholding˺. And do good, for Allah certainly loves the good-doers.
203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Complete the pilgrimage and minor pilgrimage for Allah. But if prevented ˹from proceeding˺, then ˹offer˺ whatever sacrificial animals you can afford. And do not shave your heads until the sacrificial animal reaches its destination. But if any of you is ill or has a scalp ailment ˹requiring shaving˺, then compensate either by fasting, charity, or a sacrificial offering. In times of peace, you may combine the pilgrimage and minor pilgrimage then make the sacrificial offering you can afford. Whoever cannot afford that ˹offering˺, let them fast three days during pilgrimage and seven after returning ˹home˺—completing ten. These offerings are for those who do not live near the Sacred House. And be mindful of Allah, and know that Allah is severe in punishment.
204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Commitment to˺ pilgrimage is made in appointed months. Whoever commits to ˹performing˺ pilgrimage, let them stay away from intimate relations, foul language, and arguments during pilgrimage. Whatever good you do, Allah ˹fully˺ knows of it. Take ˹necessary˺ provisions ˹for the journey˺—surely the best provision is righteousness. And be mindful of Me, O  people of reason!
205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There is no blame on you for seeking the bounty of your Lord ˹during this journey˺. and praise Him for having guided you, for surely before this ˹guidance˺ you were astray.
206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then go forth with the rest of the pilgrims. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful.
207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When you have fulfilled your sacred rites, praise Allah as you used to praise your forefathers ˹before Islam˺, or even more passionately. There are some who say, "Our Lord! Grant us ˹Your bounties˺ in this world," but they will have no share in the Hereafter.
208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet there are others who say, "Our Lord! Grant us the good of this world and the Hereafter, and protect us from the torment of the Fire."
209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is they who will receive a ˹heavenly˺ reward for the good they have done. Surely Allah is swift in reckoning.
210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And remember Allah during ˹these˺ appointed days. Whoever departs swiftly on the second day is not sinful, neither are those who stay behind ˹till the third—seeking additional reward˺, so long as they are mindful ˹of their Lord˺. And be mindful of Allah, and know that to Him you will ˹all˺ be gathered.
211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There are some ˹hypocrites˺ who impress you with their views regarding worldly affairs and openly call upon Allah to witness what is in their hearts, yet they are your worst adversaries.
212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when they leave ˹you˺, they strive throughout the land to spread mischief in it and destroy crops and cattle. Allah does not like mischief.
213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When it is said to them, "Fear Allah," pride carries them off to sin. Hell will be their proper place. What an evil place to rest!
214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there are those who would dedicate their lives to Allah’s pleasure. And Allah is Ever Gracious to ˹His˺ servants.
215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Enter into Islam wholeheartedly and do not follow Satan’s footsteps. Surely he is your sworn enemy.
216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you falter after receiving the clear proofs, then know that Allah is indeed Almighty, All-Wise.
217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Are they waiting for Allah ˹Himself˺ to come to them in the shade of clouds, along with the angels? ˹If He did˺, then the matter would be settled ˹at once˺. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ask the Children of Israel how many clear signs We have given them. And whoever trades Allah’s favour—after receiving it—˹for disbelief˺ should know that Allah is indeed severe in punishment.
219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The life of this world has been made appealing to the disbelievers, and they mock the believers. Those who are mindful ˹of Allah˺ will rank above them on the Day of Judgment. And Allah provides for whoever He wills without limit.
220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Humanity had once been one community ˹of believers before they lost faith˺. Then Allah raised prophets as deliverers of good news and as warners, and revealed to them the Scriptures in truth to judge among people regarding their disputes. And no one disputed the Scriptures except the very people who received them after clear proofs had come to them—out of jealousy. Then Allah, by His grace, has guided the believers to the truth regarding those disputes. And Allah guides whoever He wills to the Straight Path.
221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do you think you will be admitted into Paradise without being tested like those before you? They were afflicted with suffering and adversity and were so ˹violently˺ shaken that ˹even˺ the Messenger and the believers with him cried out, "When will Allah’s help come?" Indeed, Allah’s help is ˹always˺ near.
222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They ask you ˹O Prophet in˺ what ˹way˺ they should donate. Say, "Whatever donations you give are for parents, relatives, orphans, the poor, and ˹needy˺ travellers. Whatever good you do is certainly well known to Allah."
223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Fighting has been made obligatory upon you ˹believers˺, though you dislike it. Perhaps you dislike something which is good for you and like something which is bad for you. Allah knows and you do not know.
224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They
225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely those who have believed, emigrated, and struggled in the Way of Allah—they can hope for Allah’s mercy. And Allah is All-Forgiving, Most Merciful.
226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They ask you ˹O Prophet˺ about intoxicants and gambling. Say, "There is great evil in both, as well as some benefit for people—but the evil outweighs the benefit." They ˹also˺ ask you ˹O Prophet˺ what they should donate. Say, "Whatever you can spare." This is how Allah makes His revelations clear to you ˹believers˺, so perhaps you may reflect
227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            upon this world and the Hereafter. And they ask you ˹O Prophet˺ concerning orphans. Say, "Improving their condition is best. And if you partner with them, they are bonded with you ˹in faith˺. Surely Allah is Almighty, All-Wise."
228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do not marry polytheistic women until they believe; for a believing slave-woman is better than a free polytheist, even though she may look pleasant to you. And do not marry your women to polytheistic men until they believe, for a believing slave-man is better than a free polytheist, even though he may look pleasant to you. They invite ˹you˺ to the Fire while Allah invites ˹you˺ to Paradise and forgiveness by His grace. He makes His revelations clear to the people so perhaps they will be mindful.
229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They ask you ˹O Prophet˺ about menstruation. Say, "Beware of its harm! So keep away, and do not have intercourse with your wives during their monthly cycles until they are purified. When they purify themselves, then you may approach them in the manner specified by Allah. Surely Allah loves those who always turn to Him in repentance and those who purify themselves."
230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Your wives are like farmland for you, Be mindful of Allah, and know that you will meet Him. And give good news to the believers.
231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not use Allah’s Name in your oaths as an excuse for not doing good, not guarding against evil, or not making peace between people. And Allah is All-Hearing, All-Knowing.
232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah will not hold you accountable for unintentional oaths, but for what you intended in your hearts. And Allah is All-Forgiving, Most Forbearing.
233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Those who swear not to have intercourse with their wives must wait for four months. If they change their mind, then Allah is certainly All-Forgiving, Most Merciful.
234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if they settle on divorce, then Allah is indeed All-Hearing, All-Knowing.
235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Divorced women must wait three monthly cycles ˹before they can re-marry˺. It is not lawful for them to conceal what Allah has created in their wombs, if they ˹truly˺ believe in Allah and the Last Day. And their husbands reserve the right to take them back within that period if they desire reconciliation. Women have rights similar to those of men equitably, although men have a degree ˹of responsibility˺ above them. And Allah is Almighty, All-Wise.
236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Divorce may be retracted twice, then the husband must retain ˹his wife˺ with honour or separate ˹from her˺ with grace. These are the limits set by Allah, so do not transgress them. And whoever transgresses the limits of Allah, they are the ˹true˺ wrongdoers.
237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So if a husband divorces his wife ˹three times˺, then it is not lawful for him to remarry her until after she has married another man and then is divorced. Then it is permissible for them to reunite, as long as they feel they are able to maintain the limits of Allah. These are the limits set by Allah, which He makes clear for people of knowledge.
238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When you divorce women and they have ˹almost˺ reached the end of their waiting period, either retain them honourably or let them go honourably. But do not retain them ˹only˺ to harm them ˹or˺ to take advantage ˹of them˺. Whoever does that surely wrongs his own soul. Do not take Allah’s revelations lightly. Remember Allah’s favours upon you as well as the Book and wisdom He has sent down for your guidance. Be mindful of Allah, and know that Allah has ˹perfect˺ knowledge of all things.
239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When you have divorced women and they have reached the end of their waiting period, do not prevent them from re-marrying their ex-husbands if they come to an honourable agreement. This is enjoined on whoever has faith in Allah and the Last Day. This is purer and more dignifying for you. Allah knows and you do not know.
240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Divorced˺ mothers will breastfeed their offspring for two whole years, for those who wish to complete the nursing ˹of their child˺. The child’s father will provide reasonable maintenance and clothing for the mother ˹during that period˺. No one will be charged with more than they can bear. No mother or father should be made to suffer for their child. The ˹father’s˺ heirs are under the same obligation. But if both sides decide—after mutual consultation and consent—to wean a child, then there is no blame on them. If you decide to have your children nursed by a wet-nurse, it is permissible as long as you pay fairly. Be mindful of Allah, and know that Allah is All-Seeing of what you do.
241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those of you who die and leave widows behind, let them observe a waiting period of four months and ten days. When they have reached the end of this period, then you are not accountable for what they decide for themselves in a reasonable manner. And Allah is All-Aware of what you do.
242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There is no blame on you for subtly showing interest in ˹divorced or widowed˺ women or for hiding ˹the intention˺ in your hearts. Allah knows that you are considering them ˹for marriage˺. But do not make a secret commitment with them—you can only show interest in them appropriately. Do not commit to the bond of marriage until the waiting period expires. Know that Allah is aware of what is in your hearts, so beware of Him. And know that Allah is All-Forgiving, Most Forbearing.
243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is no blame if you divorce women before the marriage is consummated or the dowry is settled. But give them a ˹suitable˺ compensation—the rich according to his means and the poor according to his. A reasonable compensation is an obligation on the good-doers.
244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if you divorce them before consummating the marriage but after deciding on a dowry, pay half of the dowry, unless the wife graciously waives it or the husband graciously pays in full. Graciousness is closer to righteousness. And do not forget kindness among yourselves. Surely Allah is All-Seeing of what you do.
245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Observe the ˹five obligatory˺ prayers—especially the middle prayer—and stand in true devotion to Allah.
246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you are in danger, pray on foot or while riding. But when you are safe, ˹take time to˺ remember Allah for teaching you what you did not know.
247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those of you who die leaving widows should bequeath for them a year’s maintenance without forcing them out. But if they choose to leave, you are not accountable for what they reasonably decide for themselves. And Allah is Almighty, All-Wise.
248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Reasonable provisions must be made for divorced women—a duty on those mindful ˹of Allah˺.
249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is how Allah makes His revelations clear to you, so perhaps you will understand.
250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have you ˹O Prophet˺ not seen those who fled their homes in the thousands for fear of death? Allah said to them, "Die!" then He gave them life. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.
251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fight in the cause of Allah, and know that Allah is All-Hearing, All-Knowing.
252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who will lend to Allah a good loan which Allah will multiply many times over? It is Allah ˹alone˺ who decreases and increases ˹wealth˺. And to Him you will ˹all˺ be returned.
253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have you not seen those chiefs of the Children of Israel after Moses? They said to one of their prophets, "Appoint for us a king, ˹and˺ we will fight in the cause of Allah." He said, "Are you not going to cower if ordered to fight?" They replied, "How could we refuse to fight in the cause of Allah, while we were driven out of our homes and ˹separated from˺ our children?" But when they were ordered to fight, they fled, except for a few of them. And Allah has ˹perfect˺ knowledge of the wrongdoers.
254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Their prophet told them, "Allah has appointed Saul to be your king." They protested, "How can he be our king when some of us are more deserving of kingship than he, and he has not been blessed with vast riches?" He replied, "Allah has chosen him over you and blessed him with knowledge and stature. Allah grants kingship to whoever He wills. And Allah is All-Bountiful, All-Knowing."
255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Their prophet further told them, "The sign of Saul’s kingship is that the Ark will come to you—containing reassurance which will be carried by the angels. Surely in this is a sign for you, if you ˹truly˺ believe."
256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Saul marched forth with his army, he cautioned: "Allah will test you with a river. So whoever drinks ˹his fill˺ from it is not with me, and whoever does not taste it—except a sip from the hollow of his hands—is definitely with me." They all drank ˹their fill˺ except for a few! When he and the ˹remaining˺ faithful with him crossed the river, they said, "Now we are no match for Goliath and his warriors." But those ˹believers˺ who were certain they would meet Allah reasoned, "How many times has a small force vanquished a mighty army by the Will of Allah! And Allah is ˹always˺ with the steadfast."
257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When they advanced to face Goliath and his warriors, they prayed, "Our Lord! Shower us with perseverance, make our steps firm, and give us victory over the disbelieving people."
258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So they defeated them by Allah’s Will, and David killed Goliath. And Allah blessed David with kingship and wisdom and taught him what He willed. Had Allah not repelled a group of people by ˹the might of˺ another, corruption would have dominated the earth, but Allah is Gracious to all.
259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. And you are truly one of the messengers.
260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We have chosen some of those messengers above others. If Allah had willed, succeeding generations would not have fought ˹among themselves˺ after receiving the clear proofs. But they differed—some believed while others disbelieved. Yet if Allah had willed, they would not have fought one another. But Allah does what He wills.
261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Donate from what We have provided for you before the arrival of a Day when there will be no bargaining, or intercession. Those who disbelieve are ˹truly˺ the wrongdoers.
262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah! There is no god ˹worthy of worship˺ except Him, the Ever-Living, All-Sustaining. Neither drowsiness nor sleep overtakes Him. To Him belongs whatever is in the heavens and whatever is on the earth. Who could possibly intercede with Him without His permission? He ˹fully˺ knows what is ahead of them and what is behind them, but no one can grasp any of His knowledge—except what He wills ˹to reveal˺. His Seat
263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let there be no compulsion in religion, for the truth stands out clearly from falsehood. So whoever renounces false gods and believes in Allah has certainly grasped the firmest, unfailing hand-hold. And Allah is All-Hearing, All-Knowing.
264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah is the Guardian of the believers—He brings them out of darkness and into light. As for the disbelievers, their guardians are false gods who lead them out of light and into darkness. It is they who will be the residents of the Fire. They will be there forever.
265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Are you ˹O Prophet˺ not aware of the one who argued with Abraham about his Lord because Allah had granted him kingship? ˹Remember˺ when Abraham said, "My Lord is the One Who has power to give life and cause death." He argued, "I too have the power to give life and cause death." Abraham challenged ˹him˺, "Allah causes the sun to rise from the east. So make it rise from the west." And so the disbeliever was dumbstruck. And Allah does not guide the wrongdoing people.
266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or ˹are you not aware of˺ the one who passed by a city which was in ruins. He wondered, "How could Allah bring this back to life after its destruction?" So Allah caused him to die for a hundred years then brought him back to life. Allah asked, "How long have you remained ˹in this state˺?" He replied, "Perhaps a day or part of a day." Allah said, "No! You have remained here for a hundred years! Just look at your food and drink—they have not spoiled. ˹But now˺ look at ˹the remains of˺ your donkey! And ˹so˺ We have made you into a sign for humanity. And look at the bones ˹of the donkey˺, how We bring them together then clothe them with flesh!" When this was made clear to him, he declared, "˹Now˺ I know that Allah is Most Capable of everything."
267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹remember˺ when Abraham said, "My Lord! Show me how you give life to the dead." Allah responded, "Do you not believe?" Abraham replied, "Yes I do, but just so my heart can be reassured." Allah said, "Then bring four birds, train them to come to you, ˹then cut them into pieces,˺ and scatter them on different hilltops. Then call them back, they will fly to you in haste. And ˹so you will˺ know that Allah is Almighty, All-Wise."
268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The example of those who spend their wealth in the cause of Allah is that of a grain that sprouts into seven ears, each bearing one hundred grains. And Allah multiplies ˹the reward even more˺ to whoever He wills. For Allah is All-Bountiful, All-Knowing.
269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who spend their wealth in the cause of Allah and do not follow their charity with reminders of their generosity or hurtful words—they will get their reward from their Lord, and there will be no fear for them, nor will they grieve.
270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Kind words and forgiveness are better than charity followed by injury. And Allah is Self-Sufficient, Most Forbearing.
271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! Do not waste your charity with reminders ˹of your generosity˺ or hurtful words, like those who donate their wealth just to show off and do not believe in Allah or the Last Day. Their example is that of a hard barren rock covered with a thin layer of soil hit by a strong rain—leaving it just a bare stone. Such people are unable to preserve the reward of their charity. Allah does not guide ˹such˺ disbelieving people.
272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the example of those who donate their wealth, seeking Allah’s pleasure and believing the reward is certain, is that of a garden on a fertile hill: when heavy rain falls, it yields up twice its normal produce. If no heavy rain falls, a drizzle is sufficient. And Allah is All-Seeing of what you do.
273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Would any of you wish to have a garden with palm trees, grapevines, and all kinds of fruits with rivers flowing underneath and as they grow very old with dependent children, a fiery whirlwind hits the garden, burning it all up? This is how Allah makes His revelations clear to you, so perhaps you will reflect.
274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Donate from the best of what you have earned and of what We have produced for you from the earth. Do not pick out worthless things for donation, which you yourselves would only accept with closed eyes. And know that Allah is Self-Sufficient, Praiseworthy.
275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Devil threatens you with ˹the prospect of˺ poverty and bids you to the shameful deed ˹of stinginess˺, while Allah promises you forgiveness and ˹great˺ bounties from Him. And Allah is All-Bountiful, All-Knowing.
276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah grants wisdom to whoever He wills. And whoever is granted wisdom is certainly blessed with a great privilege. But none will be mindful ˹of this˺ except people of reason.
277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whatever charities you give or vows you make are surely known to Allah. And the wrongdoers will have no helpers.
278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To give charity publicly is good, but to give to the poor privately is better for you, and will absolve you of your sins. And Allah is All-Aware of what you do.
279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You are not responsible for people’s guidance ˹O Prophet˺—it is Allah Who guides whoever He wills. Whatever you ˹believers˺ spend in charity, it is for your own good—as long as you do so seeking the pleasure of Allah. Whatever you donate will be paid back to you in full, and you will not be wronged.
280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Charity is˺ for the needy who are too engaged in the cause of Allah to move about in the land ˹for work˺. Those unfamiliar with their situation will think they are not in need ˹of charity˺ because they do not beg. You can recognize them by their appearance. They do not beg people persistently. Whatever you give in charity is certainly well known to Allah.
281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those who spend their wealth in charity day and night, secretly and openly—their reward is with their Lord, and there will be no fear for them, nor will they grieve.
282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those who consume interest will stand ˹on Judgment Day˺ like those driven to madness by Satan’s touch. That is because they say, "Trade is no different than interest." But Allah has permitted trading and forbidden interest. Whoever refrains—after having received warning from their Lord—may keep their previous gains, and their case is left to Allah. As for those who persist, it is they who will be the residents of the Fire. They will be there forever.
283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah has made interest fruitless and charity fruitful. And Allah does not like any ungrateful evildoer.
284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, those who believe, do good, establish prayer, and pay alms-tax will receive their reward from their Lord, and there will be no fear for them, nor will they grieve.
285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Fear Allah, and give up outstanding interest if you are ˹true˺ believers.
286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If you do not, then beware of a war with Allah and His Messenger! But if you repent, you may retain your principal—neither inflicting nor suffering harm.
287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If it is difficult for someone to repay a debt, postpone it until a time of ease. And if you waive it as an act of charity, it will be better for you, if only you knew.
288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Be mindful of the Day when you will ˹all˺ be returned to Allah, then every soul will be paid in full for what it has done, and none will be wronged.
289   O believers! When you contract a loan for a fixed period of time, commit it to writing. Let the scribe maintain justice between the parties. The scribe should not refuse to write as Allah has taught them to write. They will write what the debtor dictates, bearing Allah in mind and not defrauding the debt. If the debtor is incompetent, weak, or unable to dictate, let their guardian dictate for them with justice. Call upon two of your men to witness. If two men cannot be found, then one man and two women of your choice will witness—so if one of the women forgets the other may remind her. The witnesses must not refuse when they are summoned. You must not be against writing ˹contracts˺ for a fixed period—whether the sum is small or great. This is more just ˹for you˺ in the sight of Allah, and more convenient to establish evidence and remove doubts. However, if you conduct an immediate transaction among yourselves, then there is no need for you to record it, but call upon witnesses when a deal is finalized. Let no harm come to the scribe or witnesses. If you do, then you have gravely exceeded ˹your limits˺. Be mindful of Allah, for Allah ˹is the One Who˺ teaches you. And Allah has ˹perfect˺ knowledge of all things.
290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If you are on a journey and a scribe cannot be found, then a security can be taken. If you trust one another, then ˹there is no need for a security, but˺ the debtor should honour this trust ˹by repaying the debt˺—and let them fear Allah, their Lord. And do not conceal the testimony, for whoever conceals it, their hearts are indeed sinful. And Allah ˹fully˺ knows what you do.
291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Whether you reveal what is in your hearts or conceal it, Allah will call you to account for it. He forgives whoever He wills, and punishes whoever He wills. And Allah is Most Capable of everything.
292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Messenger ˹firmly˺ believes in what has been revealed to him from his Lord, and so do the believers. They ˹all˺ believe in Allah, His angels, His Books, and His messengers. ˹They proclaim,˺ "We make no distinction between any of His messengers." And they say, "We hear and obey. ˹We seek˺ Your forgiveness, our Lord! And to You ˹alone˺ is the final return."
293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah does not require of any soul more than what it can afford. All good will be for its own benefit, and all evil will be to its own loss. ˹The believers pray,˺ "Our Lord! Do not punish us if we forget or make a mistake. Our Lord! Do not place a burden on us like the one you placed on those before us. Our Lord! Do not burden us with what we cannot bear. Pardon us, forgive us, and have mercy on us. You are our ˹only˺ Guardian. So grant us victory over the disbelieving people."
294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Alif-Lãm-Mĩm.
295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah! There is no god ˹worthy of worship˺ except Him—the Ever-Living, All-Sustaining.
296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He has revealed to you ˹O Prophet˺ the Book in truth, confirming what came before it, as He revealed the Torah and the Gospel
297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           previously, as a guide for people, and ˹also˺ revealed the Standard ˹to distinguish between right and wrong˺. Surely those who reject Allah’s revelations will suffer a severe torment. For Allah is Almighty, capable of punishment.
298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely nothing on earth or in the heavens is hidden from Allah.
299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He is the One Who shapes you in the wombs of your mothers as He wills. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.
300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He is the One Who has revealed to you ˹O Prophet˺ the Book, of which some verses are precise—they are the foundation of the Book—while others are elusive. Those with deviant hearts follow the elusive verses seeking ˹to spread˺ doubt through their ˹false˺ interpretations—but none grasps their ˹full˺ meaning except Allah. As for those well-grounded in knowledge, they say, "We believe in this ˹Quran˺—it is all from our Lord." But none will be mindful ˹of this˺ except people of reason.
301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They say,˺ "Our Lord! Do not let our hearts deviate after you have guided us. Grant us Your mercy. You are indeed the Giver ˹of all bounties˺.
302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Our Lord! You will certainly gather all humanity for the ˹promised˺ Day—about which there is no doubt. Surely Allah does not break His promise."
303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah—and they will be the fuel for the Fire.
304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Their fate will be like that of the people of Pharaoh and those before them—they all rejected Our signs, so Allah seized them for their sins. And Allah is severe in punishment.
305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹O Prophet!˺ Tell the disbelievers, "Soon you will be overpowered and driven to Hell—what an evil place to rest!"
306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, there was a sign for you in the two armies that met in battle—one fighting for the cause of Allah and the other in denial. The believers saw their enemy twice their number. But Allah supports with His victory whoever He wills. Surely in this is a lesson for people of insight.
307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The enjoyment of ˹worldly˺ desires—women, children, treasures of gold and silver, fine horses, cattle, and fertile land—has been made appealing to people. These are the pleasures of this worldly life, but with Allah is the finest destination.
308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "Shall I inform you of what is better than ˹all of˺ this? Those mindful ˹of Allah˺ will have Gardens with their Lord under which rivers flow, to stay there forever, and pure spouses, along with Allah’s pleasure." And Allah is All-Seeing of ˹His˺ servants,
309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        who pray, "Our Lord! We have believed, so forgive our sins and protect us from the torment of the Fire."
310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It is they˺ who are patient, sincere, obedient, and charitable, and who pray for forgiveness before dawn.
311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah ˹Himself˺ is a Witness that there is no god ˹worthy of worship˺ except Him—and so are the angels and people of knowledge. He is the Maintainer of justice. There is no god ˹worthy of worship˺ except Him—the Almighty, All-Wise.
312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Certainly, Allah’s only Way is Islam. Whoever denies Allah’s signs, then surely Allah is swift in reckoning.
313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So if they argue with you ˹O Prophet˺, say, "I have submitted myself to Allah, and so have my followers." And ask those who were given the Scripture and the illiterate ˹people˺, "Have you submitted yourselves ˹to Allah˺?" If they submit, they will be ˹rightly˺ guided. But if they turn away, then your duty is only to deliver ˹the message˺. And Allah is All-Seeing of ˹His˺ servants.
314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, those who deny Allah’s signs, kill the prophets unjustly, and kill people who stand up for justice—give them good news of a painful punishment.
315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They are the ones whose deeds are wasted in this world and the Hereafter. And they will have no helpers.
316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you not seen those who were given a portion of the Scriptures? Yet when they are invited to the Book of Allah to settle their disputes, some of them turn away heedlessly.
317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is because they say, "The Fire will not touch us except for a few days." They have been deceived in their faith by their wishful lying.
318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But how ˹horrible˺ will it be when We gather them together on the Day about which there is no doubt—when every soul will be paid in full for what it has done, and none will be wronged!
319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "O Allah! Lord over all authorities! You give authority to whoever You please and remove it from who You please; You honour whoever You please and disgrace who You please—all good is in Your Hands. Surely You ˹alone˺ are Most Capable of everything.
320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You cause the night to pass into the day and the day into the night. You bring forth the living from the dead and the dead from the living. And You provide for whoever You will without limit."
321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Believers should not take disbelievers as guardians instead of the believers—and whoever does so will have nothing to hope for from Allah—unless it is a precaution against their tyranny. And Allah warns you about Himself. And to Allah is the final return.
322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "Whether you conceal what is in your hearts or reveal it, it is known to Allah. For He knows whatever is in the heavens and whatever is on the earth. And Allah is Most Capable of everything."
323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Watch for˺ the Day when every soul will be presented with whatever good it has done. And it will wish that its misdeeds were far off. And Allah warns you about Himself. And Allah is Ever Gracious to ˹His˺ servants.
324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "If you ˹sincerely˺ love Allah, then follow me; Allah will love you and forgive your sins. For Allah is All-Forgiving, Most Merciful."
325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "Obey Allah and His Messenger." If they still turn away, then truly Allah does not like the disbelievers.
326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, Allah chose Adam, Noah, the family of Abraham, and the family of ’Imran above all people ˹of their time˺.
327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They are descendants of one another. And Allah is All-Hearing, All-Knowing.
328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Remember˺ when the wife of ’Imran said, "My Lord! I dedicate what is in my womb entirely to Your service, so accept it from me. You ˹alone˺ are truly the All-Hearing, All-Knowing."
329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When she delivered, she said, "My Lord! I have given birth to a girl,"—and Allah fully knew what she had delivered—"and the male is not like the female.
330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So her Lord accepted her graciously and blessed her with a pleasant upbringing—entrusting her to the care of Zachariah. Whenever Zachariah visited her in the sanctuary, he found her supplied with provisions. He exclaimed, "O Mary! Where did this come from?" She replied, "It is from Allah. Surely Allah provides for whoever He wills without limit."
331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then and there Zachariah prayed to his Lord, saying, "My Lord! Grant me—by your grace—righteous offspring. You are certainly the Hearer of ˹all˺ prayers."
332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So the angels called out to him while he stood praying in the sanctuary, "Allah gives you good news of ˹the birth of˺ John who will confirm the Word of Allah and will be a great leader, chaste, and a prophet among the righteous."
333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Zachariah exclaimed, "My Lord! How can I have a son when I am very old and my wife is barren?" He replied, "So will it be. Allah does what He wills."
334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Zachariah said, "My Lord! Grant me a sign." He said, "Your sign is that you will not ˹be able to˺ speak to people for three days except through gestures. Remember your Lord often and glorify ˹Him˺ morning and evening."
335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ when the angels said, "O Mary! Surely Allah has selected you, purified you, and chosen you over all women of the world.
336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O  Mary! Be devout to your Lord, prostrate yourself ˹in prayer˺ and bow along with those who bow down."
337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is news of the unseen that We reveal to you ˹O Prophet˺. You were not with them when they cast lots to decide who would be Mary’s guardian, nor were you there when they argued ˹about it˺.
338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember˺ when the angels proclaimed, "O Mary! Allah gives you good news of a Word Jesus, son of Mary; honoured in this world and the Hereafter, and he will be one of those nearest ˹to Allah˺.
339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he will speak to people in ˹his˺ infancy and adulthood and will be one of the righteous."
340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Mary wondered, "My Lord! How can I have a child when no man has ever touched me?" An angel replied, "So will it be. Allah creates what He wills. When He decrees a matter, He simply tells it, ‘Be!’ And it is!
341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Allah will teach him writing and wisdom, the Torah and the Gospel,
342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and ˹make him˺ a messenger to the Children of Israel ˹to proclaim,˺ ‘I have come to you with a sign from your Lord: I will make for you a bird from clay, breathe into it, and it will become a ˹real˺ bird—by Allah’s Will. I will heal the blind and the leper and raise the dead to life—by Allah’s Will. And I will prophesize what you eat and store in your houses. Surely in this is a sign for you if you ˹truly˺ believe.
343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will confirm the Torah revealed before me and legalize some of what had been forbidden to you. I have come to you with a sign from your Lord, so be mindful of Allah and obey me.
344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely Allah is my Lord and your Lord. So worship Him ˹alone˺. This is the Straight Path.’"
345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When Jesus sensed disbelief from his people, he asked, "Who will stand up with me for Allah?" The disciples replied, "We will stand up for Allah. We believe in Allah, so bear witness that we have submitted."
346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They prayed to Allah,˺ "Our Lord! We believe in Your revelations and follow the messenger, so count us among those who bear witness."
347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the disbelievers made a plan ˹against Jesus˺, but Allah also planned—and Allah is the best of planners.
348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Remember˺ when Allah said, "O Jesus! I will take you and raise you up to Myself. I will deliver you from those who disbelieve, and elevate your followers above the disbelievers until the Day of Judgment. Then to Me you will ˹all˺ return, and I will settle all your disputes.
349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who disbelieve, I will subject them to a severe punishment in this life and the Hereafter, and they will have no helpers.
350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And as for those who believe and do good, they will be rewarded in full. And Allah does not like the wrongdoers."
351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We recite ˹all˺ this to you ˹O Prophet˺ as one of the signs and ˹as˺ a wise reminder.
352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, the example of Jesus in the sight of Allah is like that of Adam. He created him from dust, then said to him, "Be!" And he was!
353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is the truth from your Lord, so do not be one of those who doubt.
354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now, whoever disputes with you ˹O Prophet˺ concerning Jesus after full knowledge has come to you, say, "Come! Let us gather our children and your children, our women and your women, ourselves and yourselves—then let us sincerely invoke Allah’s curse upon the liars."
355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Certainly, this is the true narrative, and there is no god ˹worthy of worship˺ except Allah. And indeed, Allah ˹alone˺ is the Almighty, All-Wise.
356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If they turn away, then surely Allah has ˹perfect˺ knowledge of the corruptors.
357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "O People of the Book! Let us come to common terms: that we will worship none but Allah, associate none with Him, nor take one another as lords instead of Allah." But if they turn away, then say, "Bear witness that we have submitted ˹to Allah alone˺."
358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O People of the Book! Why do you argue about Abraham, while the Torah and the Gospel were not revealed until long after him? Do you not understand?
359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Here you are! You disputed about what you have ˹little˺ knowledge of, Allah knows and you do not know.
360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Abraham was neither a Jew nor a Christian; he submitted in all uprightness and was not a polytheist.
361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, those who have the best claim to Abraham are his followers, this Prophet, and the believers. And Allah is the Guardian of those who believe.
362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Some of the People of the Book wish to mislead you ˹believers˺. They mislead none but themselves, yet they fail to perceive it.
363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O  People of the Book! Why do you reject the signs of Allah while you bear witness ˹to their truth˺?
364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O  People of the Book! Why do you mix the truth with falsehood and hide the truth knowingly?
365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A group among the People of the Book said ˹to one another˺, "Believe in what has been revealed to the believers in the morning and reject it in the evening, so they may abandon their faith.
366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And only believe those who follow your religion." Say, ˹O Prophet,˺ "Surely, ˹the only˺ true guidance is Allah’s guidance." ˹They also said,˺ "Do not believe that someone will receive ˹revealed˺ knowledge similar to yours or argue against you before your Lord." Say, ˹O Prophet,˺ "Indeed, all bounty is in the Hands of Allah—He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing."
367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He chooses whoever He wills to receive His mercy. And Allah is the Lord of infinite bounty.
368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There are some among the People of the Book who, if entrusted with a stack of gold, will readily return it. Yet there are others who, if entrusted with a single coin, will not repay it unless you constantly demand it. This is because they say, "We are not accountable for ˹exploiting˺ the Gentiles." And ˹so˺ they attribute lies to Allah knowingly.
369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Absolutely! Those who honour their trusts and shun evil—surely Allah loves those who are mindful ˹of Him˺.
370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those who trade Allah’s covenant and their oaths for a fleeting gain will have no share in the Hereafter. Allah will neither speak to them, nor look at them, nor purify them on the Day of Judgment. And they will suffer a painful punishment.
371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There are some among them who distort the Book with their tongues to make you think this ˹distortion˺ is from the Book—but it is not what the Book says. They say, "It is from Allah"—but it is not from Allah. And ˹so˺ they attribute lies to Allah knowingly.
372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is not appropriate for someone who Allah has blessed with the Scripture, wisdom, and prophethood to say to people, "Worship me instead of Allah." Rather, he would say, "Be devoted to the worship of your Lord ˹alone˺"—in accordance with what these prophets read in the Scripture and what they taught.
373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he would never ask you to take angels and prophets as lords. Would he ask you to disbelieve after you have submitted?
374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Remember˺ when Allah made a covenant with the prophets, ˹saying,˺ "Now that I have given you the Book and wisdom, if there comes to you a messenger confirming what you have, you must believe in him and support him." He added, "Do you affirm this covenant and accept this commitment?" They said, "Yes, we do." Allah said, "Then bear witness, and I too am a Witness."
375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whoever turns back after this, they will be the rebellious.
376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do they desire a way other than Allah’s—knowing that all those in the heavens and the earth submit to His Will, willingly or unwillingly, and to Him they will ˹all˺ be returned?
377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "We believe in Allah and what has been revealed to us and what was revealed to Abraham, Ishmael, Isaac, Jacob, and his descendants; and what was given to Moses, Jesus, and other prophets from their Lord—we make no distinction between any of them, and to Him we ˹fully˺ submit."
378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoever seeks a way other than Islam, it will never be accepted from them, and in the Hereafter they will be among the losers.
379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How will Allah guide a people who chose to disbelieve after they had believed, acknowledged the Messenger to be true, and received clear proofs? For Allah does not guide the wrongdoing people.
380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Their reward is that they will be condemned by Allah, the angels, and all of humanity.
381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will be in Hell forever. Their punishment will not be lightened, nor will they be delayed ˹from it˺.
382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As for those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.
383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, those who disbelieve after having believed then increase in disbelief, their repentance will never be accepted. It is they who are astray.
384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, if each of those who disbelieve then die as disbelievers were to offer a ransom of enough gold to fill the whole world, it would never be accepted from them. It is they who will suffer a painful punishment, and they will have no helpers.
385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You will never achieve righteousness until you donate some of what you cherish. And whatever you give is certainly well known to Allah.
386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    All food was lawful for the children of Israel, except what Israel Say, ˹O Prophet,˺ "Bring the Torah and read it, if your claims are true."
387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then whoever still fabricates lies about Allah, they will be the ˹true˺ wrongdoers.
388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "Allah has declared the truth. So follow the Way of Abraham, the upright—who was not a polytheist."
389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely the first House ˹of worship˺ established for humanity is the one at Bakkah—a blessed sanctuary and a guide for ˹all˺ people.
390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In it are clear signs and the standing-place of Abraham. Whoever enters it should be safe. Pilgrimage to this House is an obligation by Allah upon whoever is able among the people. And whoever disbelieves, then surely Allah is not in need of ˹any of His˺ creation.
391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "O People of the Book! Why do you deny the revelations of Allah, when Allah is a Witness to what you do?"
392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, "O People of the Book! Why do you turn the believers away from the Way of Allah—striving to make it ˹appear˺ crooked, while you are witnesses ˹to its truth˺? And Allah is never unaware of what you do."
393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! If you were to yield to a group of those who were given the Scripture, they would turn you back from belief to disbelief.
394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How can you disbelieve when Allah’s revelations are recited to you and His Messenger is in your midst? Whoever holds firmly to Allah is surely guided to the Straight Path.
395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O believers! Be mindful of Allah in the way He deserves,
396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And hold firmly to the rope of Allah and do not be divided. Remember Allah’s favour upon you when you were enemies, then He united your hearts, so you—by His grace—became brothers. And you were at the brink of a fiery pit and He saved you from it. This is how Allah makes His revelations clear to you, so that you may be ˹rightly˺ guided.
397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let there be a group among you who call ˹others˺ to goodness, encourage what is good, and forbid what is evil—it is they who will be successful.
398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And do not be like those who split ˹into sects˺ and differed after clear proofs had come to them. It is they who will suffer a tremendous punishment.
399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On that Day some faces will be bright while others gloomy. To the gloomy-faced it will be said, "Did you disbelieve after having believed? So taste the punishment for your disbelief."
400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the bright-faced, they will be in Allah’s mercy, where they will remain forever.
401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These are Allah’s revelations We recite to you ˹O Prophet˺ in truth. And Allah desires no injustice to ˹His˺ creation.
402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You are the best community ever raised for humanity—you encourage good, forbid evil, and believe in Allah. Had the People of the Book believed, it would have been better for them. Some of them are faithful, but most are rebellious.
404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They can never inflict harm on you, except a little annoyance. But if they meet you in battle, they will flee and they will have no helpers.
405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will be stricken with disgrace wherever they go, unless they are protected by a covenant with Allah or a treaty with the people. They have invited the displeasure of Allah and have been branded with misery for rejecting Allah’s revelations and murdering ˹His˺ prophets unjustly. This is ˹a fair reward˺ for their disobedience and violations.
406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet they are not all alike: there are some among the People of the Book who are upright, who recite Allah’s revelations throughout the night, prostrating ˹in prayer˺.
407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They believe in Allah and the Last Day, encourage good and forbid evil, and race with one another in doing good. They are ˹truly˺ among the righteous.
408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will never be denied the reward for any good they have done. And Allah has ˹perfect˺ knowledge of those mindful ˹of Him˺.
409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, neither the wealth nor children of the disbelievers will be of any benefit to them against Allah. It is they who will be the residents of the Fire. They will be there forever.
410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The good they do in this worldly life is like the harvest of an evil people struck by a bitter wind, destroying it ˹completely˺. Allah never wronged them, but they wronged themselves.
411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O believers! Do not associate closely with others who would not miss a chance to harm you. Their only desire is to see you suffer. Their prejudice has become evident from what they say—and what their hearts hide is far worse. We have made Our revelations clear to you, if only you understood.
412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Here you are! You love them but they do not love you, and you believe in all Scriptures. When they meet you they say, "We believe." But when alone, they bite their fingertips in rage. Say, ˹O Prophet,˺ "˹May you˺ die of your rage!" Surely Allah knows best what is ˹hidden˺ in the heart.
413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When you ˹believers˺ are touched with good, they grieve; but when you are afflicted with evil, they rejoice. ˹Yet,˺ if you are patient and mindful ˹of Allah˺, their schemes will not harm you in the least. Surely Allah is Fully Aware of what they do.
414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember, O  Prophet,˺ when you left your home in the early morning to position the believers in the battlefield. And Allah is All-Hearing, All-Knowing.
415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember˺ when two groups among you ˹believers˺ were about to cower, then Allah reassured them. So in Allah let the believers put their trust.
416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Allah made you victorious at Badr when you were ˹vastly˺ outnumbered. So be mindful of Allah, perhaps you will be grateful.
417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember, O  Prophet,˺ when you said to the believers, "Is it not enough that your Lord will send down a reinforcement of three thousand angels for your aid?"
418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Most certainly, if you ˹believers˺ are firm and mindful ˹of Allah˺ and the enemy launches a sudden attack on you, Allah will reinforce you with five thousand angels designated ˹for battle˺.
419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah ordained this ˹reinforcement˺ only as good news for you and reassurance for your hearts. And victory comes only from Allah—the Almighty, All-Wise—
420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         to destroy a group of the disbelievers and humble the rest, causing them to withdraw in disappointment.
421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You ˹O Prophet˺ have no say in the matter. It is up to Allah to turn to them in mercy or punish them, for indeed they are wrongdoers.
422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.
423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O believers! Do not consume interest, multiplying it many times over. And be mindful of Allah, so you may prosper.
424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Guard yourselves against the Fire prepared for the disbelievers.
425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Obey Allah and the Messenger, so you may be shown mercy.
426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And hasten towards forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those mindful ˹of Allah˺.
427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They are˺ those who donate in prosperity and adversity, control their anger, and pardon others. And Allah loves the good-doers.
428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They are˺ those who, upon committing an evil deed or wronging themselves, remember Allah and seek forgiveness and do not knowingly persist in sin—and who forgives sins except Allah?
429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their reward is forgiveness from their Lord and Gardens under which rivers flow, staying there forever. How excellent is the reward for those who work ˹righteousness˺!
430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Similar situations came to pass before you, so travel throughout the land and see the fate of the deniers.
431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is an insight to humanity—a guide and a lesson to the God-fearing.
432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do not falter or grieve, for you will have the upper hand, if you are ˹true˺ believers.
433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If you have suffered injuries ˹at Uhud˺, they suffered similarly ˹at Badr˺. We alternate these days ˹of victory and defeat˺ among people so that Allah may reveal the ˹true˺ believers, choose martyrs from among you—and Allah does not like the wrongdoers—
434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and distinguish the ˹true˺ believers and destroy the disbelievers.
435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do you think you will enter Paradise without Allah proving which of you ˹truly˺ struggled ˹for His cause˺ and patiently endured?
436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       You certainly wished ˹for the opportunity˺ for martyrdom before encountering it, now you have seen it with your own eyes.
437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Muhammad is no more than a messenger; other messengers have gone before him. If he were to die or to be killed, would you regress into disbelief? Those who do so will not harm Allah whatsoever. And Allah will reward those who are grateful.
438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             No soul can ever die without Allah’s Will at the destined time. Those who desire worldly gain, We will let them have it, and those who desire heavenly reward, We will grant it to them. And We will reward those who are grateful.
439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Imagine˺ how many devotees fought along with their prophets and never faltered despite whatever ˹losses˺ they suffered in the cause of Allah, nor did they weaken or give in! Allah loves those who persevere.
440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all they said was, "Our Lord! Forgive our sins and excesses, make our steps firm, and grant us victory over the disbelieving people."
441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Allah gave them the reward of this world and the excellent reward of the Hereafter. For Allah loves the good-doers.
442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! If you yield to the disbelievers, they will drag you back to disbelief—and you will become losers.
443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But no! Allah is your Guardian, and He is the best Helper.
444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We will cast horror into the hearts of the disbelievers for associating ˹false gods˺ with Allah—a practice He has never authorized. The Fire will be their home—what an evil place for the wrongdoers to stay!
445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, Allah fulfilled His promise to you when you ˹initially˺ swept them away by His Will, then your courage weakened and you disputed about the command and disobeyed, after Allah had brought victory within your reach. Some of you were after worldly gain while others desired a heavenly reward. He denied you victory over them as a test, yet He has pardoned you. And Allah is Gracious to the believers.
446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Remember˺ when you were running far away ˹in panic˺—not looking at anyone—while the Messenger was calling to you from behind! So Allah rewarded your disobedience with distress upon distress. Now, do not grieve over the victory you were denied or the injury you suffered. And Allah is All-Aware of what you do.
447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then after distress, He sent down serenity in the form of drowsiness overcoming some of you, while others were disturbed by evil thoughts about Allah—the thoughts of ˹pre-Islamic˺ ignorance. They ask, "Do we have a say in the matter?" Say, ˹O Prophet,˺ "All matters are destined by Allah." They conceal in their hearts what they do not reveal to you. They say ˹to themselves˺, "If we had any say in the matter, none of us would have come to die here." Say, ˹O Prophet,˺ "Even if you were to remain in your homes, those among you who were destined to be killed would have met the same fate." Through this, Allah tests what is within you and purifies what is in your hearts. And Allah knows best what is ˹hidden˺ in the heart.
448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those ˹believers˺ who fled on the day when the two armies met were made to slip by Satan because of their misdeeds. But Allah has pardoned them. Surely Allah is All-Forgiving, Most Forbearing.
449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O believers! Do not be like the unfaithful who say about their brothers who travel throughout the land or engage in battle, "If they had stayed with us, they would not have died or been killed." Allah makes such thinking a cause of agony in their hearts. It is Allah who gives life and causes death. And Allah is All-Seeing of what you do.
450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Should you be martyred or die in the cause of Allah, then His forgiveness and mercy are far better than whatever ˹wealth˺ those ˹who stay behind˺ accumulate.
451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whether you die or are martyred—all of you will be gathered before Allah.
452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is out of Allah’s mercy that you ˹O Prophet˺ have been lenient with them. Had you been cruel or hard-hearted, they would have certainly abandoned you. So pardon them, ask Allah’s forgiveness for them, and consult with them in ˹conducting˺ matters. Once you make a decision, put your trust in Allah. Surely Allah loves those who trust in Him.
453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If Allah helps you, none can defeat you. But if He denies you help, then who else can help you? So in Allah let the believers put their trust.
454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is not appropriate for a prophet to illegally withhold spoils of war. And whoever does so, it will be held against them on the Day of Judgment. Then every soul will be paid in full for what it has done, and none will be wronged.
455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Are those who seek Allah’s pleasure like those who deserve Allah’s wrath? Hell is their home. What an evil destination!
456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They ˹each˺ have varying degrees in the sight of Allah. And Allah is All-Seeing of what they do.
457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, Allah has done the believers a ˹great˺ favour by raising a messenger from among them—reciting to them His revelations, purifying them, and teaching them the Book and wisdom. For indeed they had previously been clearly astray.
458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why is it when you suffered casualties ˹at Uhud˺—although you had made your enemy suffer twice as much ˹at Badr˺—you protested, "How could this be?"? Say, ˹O Prophet,˺ "It is because of your disobedience." Surely Allah is Most Capable of everything.
459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So what you suffered on the day the two armies met was by Allah’s Will, so that He might distinguish the ˹true˺ believers
460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and expose the hypocrites. When it was said to them, "Come fight in the cause of Allah or ˹at least˺ defend yourselves," they replied, "If we had known there was fighting, we would have definitely gone with you." They were closer to disbelief than to belief on that day—for saying with their mouths what was not in their hearts. Allah is All-Knowing of what they hide.
461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those who sat at home, saying about their brothers, "Had they listened to us, they would not have been killed." Say, ˹O Prophet,˺ "Try not to die if what you say is true!"
462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Never think of those martyred in the cause of Allah as dead. In fact, they are alive with their Lord, well provided for—
463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             rejoicing in Allah’s bounties and being delighted for those yet to join them. There will be no fear for them, nor will they grieve.
464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They are joyful for receiving Allah’s grace and bounty, and that Allah does not deny the reward of the believers.
465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹As for˺ those who responded to the call of Allah and His Messenger after their injury, those of them who did good and were mindful ˹of Allah˺ will have a great reward.
466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who were warned, "Your enemies have mobilized their forces against you, so fear them," the warning only made them grow stronger in faith and they replied, "Allah ˹alone˺ is sufficient ˹as an aid˺ for us and ˹He˺ is the best Protector."
467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So they returned with Allah’s favours and grace, suffering no harm. For they sought to please Allah. And surely Allah is ˹the˺ Lord of infinite bounty.
468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That ˹warning˺ was only ˹from˺ Satan, trying to prompt you to fear his followers. So do not fear them; fear Me if you are ˹true˺ believers.
469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹O Prophet!˺ Do not grieve for those who race to disbelieve—surely they will not harm Allah in the least. It is Allah’s Will to disallow them a share in the Hereafter, and they will suffer a tremendous punishment.
470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Those who trade belief for disbelief will never harm Allah in the least, and they will suffer a painful punishment.
471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those who disbelieve should not think that living longer is good for them. They are only given more time to increase in sin, and they will suffer a humiliating punishment.
472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah would not leave the believers in the condition you were in, until He distinguished the good from the evil ˹among you˺. Nor would Allah ˹directly˺ reveal to you the unseen, but He chooses whoever He wills as a messenger. So believe in Allah and His messengers. And if you are faithful and mindful ˹of Allah˺, you will receive a great reward.
473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And do not let those who ˹greedily˺ withhold Allah’s bounties think it is good for them—in fact, it is bad for them! They will be leashed ˹by their necks˺ on the Day of Judgment with whatever ˹wealth˺ they used to withhold. And Allah is the ˹sole˺ inheritor of the heavens and the earth. And Allah is All-Aware of what you do.
474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, Allah has heard those ˹among the Jews˺ who said, "Allah is poor; we are rich!" We have certainly recorded their slurs and their killing of prophets unjustly. Then We will say, "Taste the torment of burning!
475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation."
476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those ˹are the same people˺ who say, "Allah has commanded us not to believe in any messenger unless he brings us an offering to be consumed by fire ˹from the sky˺." Say, ˹O Prophet,˺ "Other prophets did in fact come to you before me with clear proofs and ˹even˺ what you demanded—why then did you kill them, if what you say is true?"
477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If you are rejected by them, so too were messengers before you who came with clear proofs, divine Books, and enlightening Scriptures.
478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Every soul will taste death. And you will only receive your full reward on the Day of Judgment. Whoever is spared from the Fire and is admitted into Paradise will ˹indeed˺ triumph, whereas the life of this world is no more than the delusion of enjoyment.
479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You ˹believers˺ will surely be tested in your wealth and yourselves, and you will certainly hear many hurtful words from those who were given the Scripture before you and ˹from˺ the polytheists. But if you are patient and mindful ˹of Allah˺—surely this is a resolve to aspire to.
480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Remember, O  Prophet,˺ when Allah took the covenant of those who were given the Scripture to make it known to people and not hide it, yet they cast it behind their backs and traded it for a fleeting gain. What a miserable profit!
481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not let those who rejoice in their misdeeds and love to take credit for what they have not done think they will escape torment. They will suffer a painful punishment.
482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And Allah is Most Capable of everything.
483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, in the creation of the heavens and the earth and the alternation of the day and night there are signs for people of reason.
484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹They are˺ those who remember Allah while standing, sitting, and lying on their sides, and reflect on the creation of the heavens and the earth ˹and pray˺, "Our Lord! You have not created ˹all of˺ this without purpose. Glory be to You! Protect us from the torment of the Fire.
485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Our Lord! Indeed, those You commit to the Fire will be ˹completely˺ disgraced! And the wrongdoers will have no helpers.
486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Lord! We have heard the caller to ˹true˺ belief, ˹proclaiming,˺ ‘Believe in your Lord ˹alone˺,’ so we believed. Our Lord! Forgive our sins, absolve us of our misdeeds, and allow us ˹each˺ to die as one of the virtuous.
487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Lord! Grant us what You have promised us through Your messengers and do not put us to shame on Judgment Day—for certainly You never fail in Your promise."
488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So their Lord responded to them: "I will never deny any of you—male or female—the reward of your deeds. Both are equal in reward. Those who migrated or were expelled from their homes, and were persecuted for My sake and fought and ˹some˺ were martyred—I will certainly forgive their sins and admit them into Gardens under which rivers flow, as a reward from Allah. And with Allah is the finest reward!"
489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not be deceived by the prosperity of the disbelievers throughout the land.
490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is only a brief enjoyment. Then Hell will be their home—what an evil place to rest!
491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But those who are mindful of their Lord will be in Gardens under which rivers flow, to stay there forever—as an accommodation from Allah. And what is with Allah is best for the virtuous.
492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, there are some among the People of the Book who truly believe in Allah and what has been revealed to you ˹believers˺ and what was revealed to them. They humble themselves before Allah—never trading Allah’s revelations for a fleeting gain. Their reward is with their Lord. Surely Allah is swift in reckoning.
493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Patiently endure, persevere, stand on guard, and be mindful of Allah, so you may be successful.
494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O humanity! Be mindful of your Lord Who created you from a single soul, and from it He created its mate, and through both He spread countless men and women. And be mindful of Allah—in Whose Name you appeal to one another—and ˹honour˺ family ties. Surely Allah is ever Watchful over you.
495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Give orphans their wealth ˹when they reach maturity˺, and do not exchange your worthless possessions for their valuables, nor cheat them by mixing their wealth with your own. For this would indeed be a great sin.
496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If you fear you might fail to give orphan women their ˹due˺ rights ˹if you were to marry them˺, then marry other women of your choice—two, three, or four. But if you are afraid you will fail to maintain justice, then ˹content yourselves with˺ one This way you are less likely to commit injustice.
497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Give women ˹you wed˺ their due dowries graciously. But if they waive some of it willingly, then you may enjoy it freely with a clear conscience.
498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do not entrust the incapable ˹among your dependants˺ with your wealth which Allah has made a means of support for you—but feed and clothe them from it, and speak to them kindly.
499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Test ˹the competence of˺ the orphans until they reach a marriageable age. Then if you feel they are capable of sound judgment, return their wealth to them. And do not consume it wastefully and hastily before they grow up ˹to demand it˺. If the guardian is well-off, they should not take compensation; but if the guardian is poor, let them take a reasonable provision. When you give orphans back their property, call in witnesses. And sufficient is Allah as a ˹vigilant˺ Reckoner.
500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For men there is a share in what their parents and close relatives leave, and for women there is a share in what their parents and close relatives leave—whether it is little or much. ˹These are˺ obligatory shares.
501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If ˹non-inheriting˺ relatives, orphans, or the needy are present at the time of distribution, offer them a ˹small˺ provision from it and speak to them kindly.
502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Let the guardians be as concerned ˹for the orphans˺ as they would if they were to ˹die and˺ leave ˹their own˺ helpless children behind. So let them be mindful of Allah and speak equitably.
503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, those who unjustly consume orphans’ wealth ˹in fact˺ consume nothing but fire into their bellies. And they will be burned in a blazing Hell!
504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah commands you regarding your children: the share of the male will be twice that of the female. ˹This is˺ an obligation from Allah. Surely Allah is All-Knowing, All-Wise.
505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     You will inherit half of what your wives leave if they are childless. But if they have children, then ˹your share is˺ one-fourth of the estate—after the fulfilment of bequests and debts. And your wives will inherit one-fourth of what you leave if you are childless. But if you have children, then your wives will receive one-eighth of your estate—after the fulfilment of bequests and debts. And if a man or a woman leaves neither parents nor children but only a brother or a sister ˹from their mother’s side˺, they will each inherit one-sixth, but if they are more than one, they ˹all˺ will share one-third of the estate ˹This is˺ a commandment from Allah. And Allah is All-Knowing, Most Forbearing.
506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These ˹entitlements˺ are the limits set by Allah. Whoever obeys Allah and His Messenger will be admitted into Gardens under which rivers flow, to stay there forever. That is the ultimate triumph!
507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But whoever disobeys Allah and His Messenger and exceeds their limits will be cast into Hell, to stay there forever. And they will suffer a humiliating punishment.
508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹As for˺ those of your women who commit illegal intercourse—call four witnesses from among yourselves. If they testify, confine the offenders to their homes until they die or Allah ordains a ˹different˺ way for them.
509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the two among you who commit this sin—discipline them. If they repent and mend their ways, relieve them. Surely Allah is ever Accepting of Repentance, Most Merciful.
510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah only accepts the repentance of those who commit evil ignorantly ˹or recklessly˺ then repent soon after—Allah will pardon them. And Allah is All-Knowing, All-Wise.
511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            However, repentance is not accepted from those who knowingly persist in sin until they start dying, and then cry, "Now I repent!" nor those who die as disbelievers. For them We have prepared a painful punishment.
512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! It is not permissible for you to inherit women against their will Treat them fairly. If you happen to dislike them, you may hate something which Allah turns into a great blessing.
513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you desire to replace a wife with another and you have given the former ˹even˺ a stack of gold ˹as a dowry˺, do not take any of it back. Would you ˹still˺ take it unjustly and very sinfully?
514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And how could you take it back after having enjoyed each other intimately and she has taken from you a firm commitment?
515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do not marry former wives of your fathers—except what was done previously. It was indeed a shameful, despicable, and evil practice.
516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Also˺ forbidden to you for marriage are your mothers, your daughters, your sisters, your paternal and maternal aunts, your brother’s daughters, your sister’s daughters, your foster-mothers, your foster-sisters, your mothers-in-law, your stepdaughters under your guardianship if you have consummated marriage with their mothers—but if you have not, then you can marry them—nor the wives of your own sons, nor two sisters together at the same time—except what was done previously. Surely Allah is All-Forgiving, Most Merciful.
517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Also ˹forbidden are˺ married women—except ˹female˺ captives in your possession. This is Allah’s commandment to you. Lawful to you are all beyond these—as long as you seek them with your wealth in a legal marriage, not in fornication. Give those you have consummated marriage with their due dowries. It is permissible to be mutually gracious regarding the set dowry. Surely Allah is All-Knowing, All-Wise.
518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if any of you cannot afford to marry a free believing woman, then ˹let him marry˺ a believing bondwoman possessed by one of you. Allah knows best ˹the state of˺ your faith ˹and theirs˺. You are from one another. This is for those of you who fear falling into sin. But if you are patient, it is better for you. And Allah is All-Forgiving, Most Merciful.
519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is Allah’s Will to make things clear to you, guide you to the ˹noble˺ ways of those before you, and turn to you in mercy. For Allah is All-Knowing, All-Wise.
520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it is Allah’s Will to turn to you in grace, but those who follow their desires wish to see you deviate entirely ˹from Allah’s Way˺.
521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it is Allah’s Will to lighten your burdens, for humankind was created weak.
522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not devour one another’s wealth illegally, but rather trade by mutual consent. And do not kill ˹each other or˺ yourselves. Surely Allah is ever Merciful to you.
523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And whoever does this sinfully and unjustly, We will burn them in the Fire. That is easy for Allah.
524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you avoid the major sins forbidden to you, We will absolve you of your ˹lesser˺ misdeeds and admit you into a place of honour.
525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And do not crave what Allah has given some of you over others. Men will be rewarded according to their deeds and women ˹equally˺ according to theirs. Rather, ask Allah for His bounties. Surely Allah has ˹perfect˺ knowledge of all things.
526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We have appointed heirs to what has been left by parents and next of kin. As for those you have made a pledge to, give them their share. Surely Allah is a Witness over all things.
527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Men are the caretakers of women, as men have been provisioned by Allah over women and tasked with supporting them financially. And righteous women are devoutly obedient and, when alone, protective of what Allah has entrusted them with. But if they change their ways, do not be unjust to them. Surely Allah is Most High, All-Great.
528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you anticipate a split between them, appoint a mediator from his family and another from hers. If they desire reconciliation, Allah will restore harmony between them. Surely Allah is All-Knowing, All-Aware.
529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Worship Allah ˹alone˺ and associate none with Him. And be kind to parents, relatives, orphans, the poor, near and distant neighbours, close friends, ˹needy˺ travellers, and those ˹bondspeople˺ in your possession. Surely Allah does not like whoever is arrogant, boastful—
530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           those who are stingy, promote stinginess among people, and withhold Allah’s bounties. We have prepared for the disbelievers a humiliating punishment.
531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Likewise for those who spend their wealth to show off and do not believe in Allah or the Last Day. And whoever takes Satan as an associate—what an evil associate they have!
532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What harm could have come to them if they had believed in Allah and the Last Day and donated from what Allah has provided for them? And Allah has ˹perfect˺ knowledge of them.
533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, Allah never wrongs ˹anyone˺—even by an atom’s weight. And if it is a good deed, He will multiply it many times over and will give a great reward out of His grace.
534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So how will it be when We bring a witness from every faith-community and bring you ˹O Prophet˺ as a witness against yours?
535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On that Day, those who denied ˹Allah˺ and disobeyed the Messenger will wish they were reduced to dust. And they will never be able to hide anything from Allah.
536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not approach prayer while intoxicated And Allah is Ever-Pardoning, All-Forgiving.
537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet trade it for misguidance and wish to see you deviate from the ˹Right˺ Path?
538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah knows best who your enemies are! And Allah is sufficient as a Guardian, and He is sufficient as a Helper.
539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Some Jews take words out of context and say, "We listen and we disobey," "Hear! May you never hear," and "Ra’ina!" [Herd us!]—playing with words and discrediting the faith. Had they said ˹courteously˺, "We hear and obey," "Listen to us," and "Unẓurna," [Tend to us!] it would have been better for them and more proper. Allah has condemned them for their disbelief, so they do not believe except for a few.
540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O you who were given the Book! Believe in what We have revealed—confirming your own Scriptures—before We wipe out ˹your˺ faces, turning them backwards, or We condemn the defiant as We did to the Sabbath-breakers. And Allah’s command is always executed!
541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Allah does not forgive associating others with Him ˹in worship˺, but forgives anything else of whoever He wills. And whoever associates others with Allah has indeed committed a grave sin.
542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have you ˹O Prophet˺ not seen those who ˹falsely˺ elevate themselves? It is Allah who elevates whoever He wills. And none will be wronged ˹even by the width of˺ the thread of a date stone.
543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          See how they fabricate lies against Allah—this alone is a blatant sin.
544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Have you ˹O Prophet˺ not seen those who were given a portion of the Scriptures yet believe in idols and false gods and reassure the disbelievers that they are better guided than the believers?
545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is they who have been condemned by Allah. And whoever is condemned by Allah will have no helper.
546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do they have control over shares of the kingdom? If so, they would not have given anyone so much as the speck on a date stone.
547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or do they envy the people for Allah’s bounties? Indeed, We have given the descendants of Abraham the Book and wisdom, along with great authority.
548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet some believed in him while others turned away from him. Hell is sufficient as a torment!
549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely those who reject Our signs, We will cast them into the Fire. Whenever their skin is burnt completely, We will replace it so they will ˹constantly˺ taste the punishment. Indeed, Allah is Almighty, All-Wise.
550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who believe and do good, We will admit them into Gardens under which rivers flow, to stay there for ever and ever. There they will have pure spouses, and We will place them under a vast shade.
551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, Allah commands you to return trusts to their rightful owners; and when you judge between people, judge with fairness. What a noble commandment from Allah to you! Surely Allah is All-Hearing, All-Seeing.
552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Obey Allah and obey the Messenger and those in authority among you. Should you disagree on anything, then refer it to Allah and His Messenger, if you ˹truly˺ believe in Allah and the Last Day. This is the best and fairest resolution.
553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have you ˹O Prophet˺ not seen those who claim they believe in what has been revealed to you and what was revealed before you? They seek the judgment of false judges, which they were commanded to reject. And Satan ˹only˺ desires to lead them farther away.
554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When it is said to them, "Come to Allah’s revelations and to the Messenger," you see the hypocrites turn away from you stubbornly.
555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How ˹horrible˺ will it be if a disaster strikes them because of what their hands have done, then they come to you swearing by Allah, "We intended nothing but goodwill and reconciliation."
556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Only˺ Allah knows what is in their hearts. So turn away from them, caution them, and give them advice that will shake their very souls.
557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We only sent messengers to be obeyed by Allah’s Will. If only those ˹hypocrites˺ came to you ˹O Prophet˺—after wronging themselves—seeking Allah’s forgiveness and the Messenger prayed for their forgiveness, they would have certainly found Allah ever Accepting of Repentance, Most Merciful.
558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But no! By your Lord, they will never be ˹true˺ believers until they accept you ˹O Prophet˺ as the judge in their disputes, and find no resistance within themselves against your decision and submit wholeheartedly.
559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If We had commanded them to sacrifice themselves or abandon their homes, none would have obeyed except for a few. Had they done what they were advised to do, it would have certainly been far better for them and more reassuring,
560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and We would have granted them a great reward by Our grace
561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and guided them to the Straight Path.
562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And whoever obeys Allah and the Messenger will be in the company of those blessed by Allah: the prophets, the people of truth, the martyrs, and the righteous—what honourable company!
563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is Allah’s favour, and Allah fully knows ˹who deserves it˺.
564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Take your precautions and go forth either in groups or together.
565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There will be some among you who will lag behind so that if you face a disaster, they will say, "Allah has blessed us for not being there among them."
566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if you return with Allah’s bounties, they will say—as if there had been no bond between you—"We wish we had been there with them to share the great gain!"
567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Let those who would sacrifice this life for the Hereafter fight in the cause of Allah. And whoever fights in Allah’s cause—whether they achieve martyrdom or victory—We will honour them with a great reward.
568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And what is it with you? You do not fight in the cause of Allah and for oppressed men, women, and children who cry out, "Our Lord! Deliver us from this land of oppressors! Appoint for us a saviour; appoint for us a helper—all by Your grace."
569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Believers fight for the cause of Allah, whereas disbelievers fight for the cause of the Devil. So fight against Satan’s ˹evil˺ forces. Indeed, Satan’s schemes are ever weak.
570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have you ˹O Prophet˺ not seen those who had been told, "Do not fight! Rather, establish prayer and pay alms-tax."? Then once the order came to fight, a group of them feared those ˹hostile˺ people as Allah should be feared—or even more. They said, "Our Lord! Why have You ordered us to fight? If only You had delayed ˹the order for˺ us for a little while!" Say, ˹O Prophet,˺ "The enjoyment of this world is so little, whereas the Hereafter is far better for those mindful ˹of Allah˺. And none of you will be wronged ˹even by the width of˺ the thread of a date stone.
571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wherever you may be, death will overcome you—even if you were in fortified towers." When something good befalls them, they say, "This is from Allah," but when something evil befalls them, they say, "This is from you." Say, ˹O Prophet,˺ "Both have been destined by Allah." So what is the matter with these people? They can hardly comprehend anything!
572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whatever good befalls you is from Allah and whatever evil befalls you is from yourself. We have sent you ˹O Prophet˺ as a messenger to ˹all˺ people. And Allah is sufficient as a Witness.
573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whoever obeys the Messenger has truly obeyed Allah. But whoever turns away, then ˹know that˺ We have not sent you ˹O Prophet˺ as a keeper over them.
574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they say, "We obey," but when they leave you, a group of them would spend the night contradicting what they said. Allah records all their schemes. So turn away from them, and put your trust in Allah. And Allah is sufficient as a Trustee of Affairs.
575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do they not then reflect on the Quran? Had it been from anyone other than Allah, they would have certainly found in it many inconsistencies.
576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when they hear news of security or fear, they publicize it. Had they referred it to the Messenger or their authorities, those with sound judgment among them would have validated it. Had it not been for Allah’s grace and mercy, you would have followed Satan—except for a few.
577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So fight in the cause of Allah ˹O Prophet˺. You are accountable for none but yourself. And motivate the believers ˹to fight˺, so perhaps Allah will curb the disbelievers’ might. And Allah is far superior in might and in punishment.
578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever intercedes for a good cause will have a share in the reward, and whoever intercedes for an evil cause will have a share in the burden. And Allah is Watchful over all things.
579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when you are greeted, respond with a better greeting or at least similarly. Surely Allah is a ˹vigilant˺ Reckoner of all things.
580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah, there is no god ˹worthy of worship˺ except Him. He will certainly gather ˹all of˺ you together on the Day of Judgment—about which there is no doubt. And whose word is more truthful than Allah’s?
581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Why are you ˹believers˺ divided into two groups regarding the hypocrites while Allah allowed them to regress ˹to disbelief˺ because of their misdeeds? Do you wish to guide those left by Allah to stray? And whoever Allah leaves to stray, you will never find for them a way.
582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They wish you would disbelieve as they have disbelieved, so you may all be alike. So do not take them as allies unless they emigrate in the cause of Allah. But if they turn away, then seize them and kill them wherever you find them, and do not take any of them as allies or helpers,
583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       except those who are allies of a people you are bound with in a treaty or those wholeheartedly opposed to fighting either you or their own people. If Allah had willed, He would have empowered them to fight you. So if they refrain from fighting you and offer you peace, then Allah does not permit you to harm them.
584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You will find others who wish to be safe from you and their own people. Yet they cannot resist the temptation ˹of disbelief or hostility˺. If they do not keep away, offer you peace, or refrain from attacking you, then seize them and kill them wherever you find them. We have given you full permission over such people.
585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is not lawful for a believer to kill another except by mistake. And whoever kills a believer unintentionally must free a believing slave and pay blood-money to the victim’s family—unless they waive it charitably. But if the victim is a believer from a hostile people, then a believing slave must be freed. And if the victim is from a people bound with you in a treaty, then blood-money must be paid to the family along with freeing a believing slave. Those who are unable, let them fast two consecutive months—as a means of repentance to Allah. And Allah is All-Knowing, All-Wise.
586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And whoever kills a believer intentionally, their reward will be Hell—where they will stay indefinitely. Allah will be displeased with them, condemn them, and will prepare for them a tremendous punishment.
587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! When you struggle in the cause of Allah, be sure of who you fight. And do not say to those who offer you ˹greetings of˺ peace, "You are no believer!"—seeking a fleeting worldly gain. Instead, Allah has infinite bounties ˹in store˺. You were initially like them then Allah blessed you ˹with Islam˺. So be sure! Indeed, Allah is All-Aware of what you do.
588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those who stay at home—except those with valid excuses—are not equal to those who strive in the cause of Allah with their wealth and their lives. Allah has elevated in rank those who strive with their wealth and their lives above those who stay behind ˹with valid excuses˺. Allah has promised each a fine reward, but those who strive will receive a far better reward than others—
589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 far superior ranks, forgiveness, and mercy from Him. And Allah is All-Forgiving, Most Merciful.
590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When the angels seize the souls of those who have wronged themselves—scolding them, "What do you think you were doing?" they will reply, "We were oppressed in the land." The angels will respond, "Was Allah’s earth not spacious enough for you to emigrate?" It is they who will have Hell as their home—what an evil destination!
591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Except helpless men, women, and children who cannot afford a way out—
592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    it is right to hope that Allah will pardon them. For Allah is Ever-Pardoning, All-Forgiving.
593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whoever emigrates in the cause of Allah will find many safe havens and bountiful resources throughout the earth. Those who leave their homes and die while emigrating to Allah and His Messenger—their reward has already been secured with Allah. And Allah is All-Forgiving, Most Merciful.
594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When you travel through the land, it is permissible for you to shorten the prayer—˹especially˺ if you fear an attack by the disbelievers. Indeed, the disbelievers are your sworn enemies.
595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When you ˹O Prophet˺ are ˹campaigning˺ with them and you lead them in prayer, let one group of them pray with you—while armed. When they prostrate themselves, let the other group stand guard behind them. Then the group that has not yet prayed will then join you in prayer—and let them be vigilant and armed. The disbelievers would wish to see you neglect your weapons and belongings, so they could launch a sweeping assault on you. But there is no blame if you lay aside your weapons when overcome by heavy rain or illness—but take precaution. Indeed, Allah has prepared a humiliating punishment for the disbelievers.
596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When the prayers are over, remember Allah—whether you are standing, sitting, or lying down. But when you are secure, establish regular prayers. Indeed, performing prayers is a duty on the believers at the appointed times.
597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not falter in pursuit of the enemy—if you are suffering, they too are suffering. But you can hope to receive from Allah what they can never hope for. And Allah is All-Knowing, All-Wise.
598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We have sent down the Book to you ˹O Prophet˺ in truth to judge between people by means of what Allah has shown you. So do not be an advocate for the deceitful.
599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And seek Allah’s forgiveness—indeed, Allah is All-Forgiving, Most Merciful.
600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do not advocate for those who wrong themselves. Surely Allah does not like those who are deceitful, sinful.
601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They try to hide ˹their deception˺ from people, but they can never hide it from Allah—in Whose presence they plot by night what is displeasing to Him. And Allah is Fully Aware of what they do.
602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Here you are! You ˹believers˺ are advocating for them in this life, but who will ˹dare to˺ advocate for them before Allah on the Day of Judgment? Or who will come to their defence?
603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoever commits evil or wrongs themselves then seeks Allah’s forgiveness will certainly find Allah All-Forgiving, Most Merciful.
604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And whoever commits a sin—it is only to their own loss. Allah is All-Knowing, All-Wise.
605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And whoever commits an evil or sinful deed then blames it on an innocent person, they will definitely bear the guilt of slander and blatant sin.
606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Had it not been for Allah’s grace and mercy, a group of them would have sought to deceive you ˹O Prophet˺. Yet they would deceive none but themselves, nor can they harm you in the least. Allah has revealed to you the Book and wisdom and taught you what you never knew. Great ˹indeed˺ is Allah’s favour upon you!
607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There is no good in most of their secret talks—except those encouraging charity, kindness, or reconciliation between people. And whoever does this seeking Allah’s pleasure, We will grant them a great reward.
608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And whoever defies the Messenger after guidance has become clear to them and follows a path other than that of the believers, We will let them pursue what they have chosen, then burn them in Hell—what an evil end!
609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely Allah does not forgive associating ˹others˺ with Him ˹in worship˺, but forgives anything else of whoever He wills. Indeed, whoever associates ˹others˺ with Allah has clearly gone far astray.
610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Instead of Allah, they only invoke female gods and they ˹actually˺ invoke none but a rebellious Satan—
611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        cursed by Allah—who said, "I will surely take hold of a certain number of Your servants.
612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I will certainly mislead them and delude them with empty hopes. Also, I will order them and they will slit the ears of cattle and alter Allah’s creation." And whoever takes Satan as a guardian instead of Allah has certainly suffered a tremendous loss.
613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Satan only makes them ˹false˺ promises and deludes them with ˹empty˺ hopes. Truly Satan promises them nothing but delusion.
614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is they who will have Hell as their home, and they will find no escape from it!
615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And those who believe and do good, We will soon admit them into Gardens under which rivers flow, to stay there for ever and ever. Allah’s promise is ˹always˺ true. And whose word is more truthful than Allah’s?
616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Divine grace is˺ neither by your wishes nor those of the People of the Book! Whoever commits evil will be rewarded accordingly, and they will find no protector or helper besides Allah.
617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But those who do good—whether male or female—and have faith will enter Paradise and will never be wronged ˹even as much as˺ the speck on a date stone.
618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And who is better in faith than those who ˹fully˺ submit themselves to Allah, do good, and follow the Way of Abraham, the upright? Allah chose Abraham as a close friend.
619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is Fully Aware of everything.
620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They ask you ˹O Prophet˺ regarding women. Say, "It is Allah Who instructs you regarding them. Instruction has ˹already˺ been revealed in the Book but still wish to marry, also helpless children, as well as standing up for orphans’ rights. And whatever good you do is certainly well known to Allah."
621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If a woman fears indifference or neglect from her husband, there is no blame on either of them if they seek ˹fair˺ settlement, which is best. Humans are ever inclined to selfishness. But if you are gracious and mindful ˹of Allah˺, surely Allah is All-Aware of what you do.
622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You will never be able to maintain ˹emotional˺ justice between your wives—no matter how keen you are. So do not totally incline towards one leaving the other in suspense. And if you do what is right and are mindful ˹of Allah˺, surely Allah is All-Forgiving, Most Merciful.
623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if they choose to separate, Allah will enrich both of them from His bounties. And Allah is Ever-Bountiful, All-Wise.
624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. Indeed, We have commanded those given the Scripture before you, as well as you, to be mindful of Allah. But if you disobey, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is Self-Sufficient, Praiseworthy.
625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.
626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If it is His Will, He can remove you altogether, O  humanity, and replace you with others. And Allah is Most Capable to do so.
627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever desires the reward of this world, then ˹let them know that˺ with Allah are the rewards of this world and the Hereafter. And Allah is All-Hearing, All-Seeing.
628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Stand firm for justice as witnesses for Allah even if it is against yourselves, your parents, or close relatives. Be they rich or poor, Allah is best to ensure their interests. So do not let your desires cause you to deviate ˹from justice˺. If you distort the testimony or refuse to give it, then ˹know that˺ Allah is certainly All-Aware of what you do.
629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! Have faith in Allah, His Messenger, the Book He has revealed to His Messenger, and the Scriptures He revealed before. Indeed, whoever denies Allah, His angels, His Books, His messengers, and the Last Day has clearly gone far astray.
630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, those who believed then disbelieved, then believed and again disbelieved—˹only˺ increasing in disbelief—Allah will neither forgive them nor guide them to the ˹Right˺ Way.
631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Give good news of a painful punishment to hypocrites,
632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   who choose disbelievers as allies instead of the believers. Do they seek honour and power through that company? Surely all honour and power belongs to Allah.
633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He has already revealed to you in the Book that when you hear Allah’s revelations being denied or ridiculed, then do not sit in that company unless they engage in a different topic, or else you will be like them. Surely Allah will gather the hypocrites and disbelievers all together in Hell.
634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹The hypocrites are˺ those who wait to see what happens to you. So if Allah grants you victory, they say ˹to you˺, "Were we not on your side?" But if the disbelievers have a share ˹of victory˺, they say ˹to them˺, "Did we not have the advantage over you, yet we protected you from the believers?" Allah will judge between ˹all of˺ you on the Day of Judgment. And Allah will never grant the disbelievers a way over the believers.
635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely the hypocrites seek to deceive Allah, but He outwits them. When they stand up for prayer, they do it half-heartedly only to be seen by people—hardly remembering Allah at all.
636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Torn between belief and disbelief—belonging neither to these ˹believers˺ nor those ˹disbelievers˺. And whoever Allah leaves to stray, you will never find for them a way.
637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Do not take disbelievers as allies instead of the believers. Would you like to give Allah solid proof against yourselves?
638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely the hypocrites will be in the lowest depths of the Fire—and you will never find for them any helper—
639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   except those who repent, mend their ways, hold fast to Allah, and are sincere in their devotion to Allah; they will be with the believers. And Allah will grant the believers a great reward.
640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why should Allah punish you if you are grateful and faithful? Allah is ever Appreciative, All-Knowing.
641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah does not like negative thoughts to be voiced—except by those who have been wronged. Allah is All-Hearing, All-Knowing.
642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whether you reveal or conceal a good or pardon an evil—surely Allah is Ever-Pardoning, Most Capable.
643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely those who deny Allah and His messengers and wish to make a distinction between Allah and His messengers, saying, "We believe in some and disbelieve in others," desiring to forge a compromise,
644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      they are indeed the true disbelievers. And We have prepared for the disbelievers a humiliating punishment.
645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for those who believe in Allah and His messengers—accepting all; rejecting none—He will surely give them their rewards. And Allah is All-Forgiving, Most Merciful.
646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The People of the Book demand that you ˹O Prophet˺ bring down for them a revelation in writing from heaven. They demanded what is even greater than this from Moses, saying, "Make Allah visible to us!" So a thunderbolt struck them for their wrongdoing. Then they took the calf for worship after receiving clear signs. Still We forgave them for that ˹after their repentance˺ and gave Moses compelling proof.
647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We raised the Mount over them ˹as a warning˺ for ˹breaking˺ their covenant and said, "Enter the gate ˹of Jerusalem˺ with humility." We also warned them, "Do not break the Sabbath," and took from them a firm covenant.
648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They were condemned˺ for breaking their covenant, rejecting Allah’s signs, killing the prophets unjustly, and for saying, "Our hearts are unreceptive!"—it is Allah Who has sealed their hearts for their disbelief, so they do not believe except for a few—
649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and for their denial and outrageous accusation against Mary,
650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and for boasting, "We killed the Messiah, Jesus, son of Mary, the messenger of Allah." But they neither killed nor crucified him—it was only made to appear so. Even those who argue for this ˹crucifixion˺ are in doubt. They have no knowledge whatsoever—only making assumptions. They certainly did not kill him.
651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rather, Allah raised him up to Himself. And Allah is Almighty, All-Wise.
652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Every one of the People of the Book will definitely believe in him before his death. And on the Day of Judgment Jesus will be a witness against them.
653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We forbade the Jews certain foods that had been lawful to them for their wrongdoing, and for hindering many from the Way of Allah,
654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         taking interest despite its prohibition, and consuming people’s wealth unjustly. We have prepared for the disbelievers among them a painful punishment.
655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But those of them well-grounded in knowledge, the faithful ˹who˺ believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you—˹especially˺ those who establish prayer—and those who pay alms-tax and believe in Allah and the Last Day, to these ˹people˺ We will grant a great reward.
656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We have sent revelation to you ˹O Prophet˺ as We sent revelation to Noah and the prophets after him. We also sent revelation to Abraham, Ishmael, Isaac, Jacob, and his descendants, ˹as well as˺ Jesus, Job, Jonah, Aaron, and Solomon. And to David We gave the Psalms.
657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There are messengers whose stories We have told you already and others We have not. And to Moses Allah spoke directly.
658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹All were˺ messengers delivering good news and warnings so humanity should have no excuse before Allah after ˹the coming of˺ the messengers. And Allah is Almighty, All-Wise.
659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet ˹if you are denied, O  Prophet,˺ Allah bears witness to what He has sent down to you—He has sent it with His knowledge. The angels too bear witness. And Allah ˹alone˺ is sufficient as a Witness.
660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who disbelieve and hinder ˹others˺ from the Way of Allah have certainly strayed far away.
661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those who disbelieve and wrong themselves—surely Allah will neither forgive them nor guide them to any path
662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               except that of Hell, to stay there for ever and ever. And that is easy for Allah.
663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O humanity! The Messenger has certainly come to you with the truth from your Lord, so believe for your own good. But if you disbelieve, then ˹know that˺ to Allah belongs whatever is in the heavens and the earth. And Allah is All-Knowing, All-Wise.
664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O People of the Book! Do not go to extremes regarding your faith; say nothing about Allah except the truth. So believe in Allah and His messengers and do not say, "Trinity." Stop!—for your own good. Allah is only One God. Glory be to Him! He is far above having a son! To Him belongs whatever is in the heavens and whatever is on the earth. And Allah is sufficient as a Trustee of Affairs.
665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Messiah would never be too proud to be a servant of Allah, nor would the angels nearest to Allah. Those who are too proud and arrogant to worship Him will be brought before Him all together.
666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who believe and do good, He will reward them in full and increase them out of His grace. But those who are too proud and arrogant, He will subject them to a painful punishment. And besides Allah they will find no protector or helper.
667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O humanity! There has come to you conclusive evidence from your Lord. And We have sent down to you a brilliant light.
668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who believe in Allah and hold fast to Him, He will admit them into His mercy and grace and guide them to Himself through the Straight Path.
669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They ask you ˹for a ruling, O  Prophet˺. Say, "Allah gives you a ruling regarding those who die without children or parents." If a man dies childless and leaves behind a sister, she will inherit one-half of his estate, whereas her brother will inherit all of her estate if she dies childless. If this person leaves behind two sisters, they together will inherit two-thirds of the estate. But if the deceased leaves male and female siblings, a male’s share will be equal to that of two females. Allah makes ˹this˺ clear to you so you do not go astray. And Allah has ˹perfect˺ knowledge of all things.
670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! Honour your obligations. All grazing livestock has been made lawful to you—except what is hereby announced to you and hunting while on pilgrimage. Indeed, Allah commands what He wills.
671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! Do not violate Allah’s rituals ˹of pilgrimage˺, the sacred months, the sacrificial animals, the ˹offerings decorated with˺ garlands, nor those ˹pilgrims˺ on their way to the Sacred House seeking their Lord’s bounty and pleasure. When pilgrimage has ended, you are allowed to hunt. Do not let the hatred of a people who once barred you from the Sacred Mosque provoke you to transgress. Cooperate with one another in goodness and righteousness, and do not cooperate in sin and transgression. And be mindful of Allah. Surely Allah is severe in punishment.
672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Forbidden to you are carrion, blood, and swine; what is slaughtered in the name of any other than Allah; what is killed by strangling, beating, a fall, or by being gored to death; what is partly eaten by a predator unless you slaughter it; and what is sacrificed on altars. You are also forbidden to draw lots for decisions. This is all evil. Today the disbelievers have given up all hope of ˹undermining˺ your faith. So do not fear them; fear Me! Today I have perfected your faith for you, completed My favour upon you, and chosen Islam as your way. But whoever is compelled by extreme hunger—not intending to sin—then surely Allah is All-Forgiving, Most Merciful.
673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They ask you, ˹O Prophet,˺ what is permissible for them ˹to eat˺. Say, "What is good and lawful. Also what is caught by your hunting animals and birds of prey which you have trained as instructed by Allah. So eat what they catch for you, but mention the Name of Allah over it ˹first˺." And be mindful of Allah. Surely Allah is swift in reckoning.
674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Today all good, pure foods have been made lawful for you. Similarly, the food of the People of the Book is permissible for you and yours is permissible for them. And ˹permissible for you in marriage˺ are chaste believing women as well as chaste women of those given the Scripture before you—as long as you pay them their dowries in wedlock, neither fornicating nor taking them as mistresses. And whoever rejects the faith, all their good deeds will be void ˹in this life˺ and in the Hereafter they will be among the losers.
675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! When you rise up for prayer, wash your faces and your hands up to the elbows, wipe your heads, and wash your feet to the ankles. And if you are in a state of ˹full˺ impurity, It is not Allah’s Will to burden you, but to purify you and complete His favour upon you, so perhaps you will be grateful.
676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Remember Allah’s favour upon you and the covenant He made with you when you said, "We hear and obey." And be mindful of Allah. Surely Allah knows best what is ˹hidden˺ in the heart.
677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Stand firm for Allah and bear true testimony. Do not let the hatred of a people lead you to injustice. Be just! That is closer to righteousness. And be mindful of Allah. Surely Allah is All-Aware of what you do.
678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah has promised those who believe and do good ˹His˺ forgiveness and a great reward.
679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who disbelieve and deny Our signs, they are the residents of the Hellfire.
680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Remember Allah’s favour upon you: when a people sought to harm you, but He held their hands back from you. Be mindful of Allah. And in Allah let the believers put their trust.
681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah made a covenant with the Children of Israel and appointed twelve leaders from among them and ˹then˺ said, "I am truly with you. If you establish prayer, pay alms-tax, believe in My messengers, support them, and lend to Allah a good loan, I will certainly forgive your sins and admit you into Gardens under which rivers flow. And whoever among you disbelieves afterwards has truly strayed from the Right Way."
682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But for breaking their covenant We condemned them and hardened their hearts. They distorted the words of the Scripture and neglected a portion of what they had been commanded to uphold. You ˹O Prophet˺ will always find deceit on their part, except for a few. But pardon them and bear with them. Indeed, Allah loves the good-doers.
683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And from those who say, "We are Christians," We took their covenant, but they neglected a portion of what they had been commanded to uphold. So We let hostility and enmity arise between them until the Day of Judgment, and soon Allah will inform them of all they have done.
684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O People of the Book! Now Our Messenger has come to you, revealing much of what you have hidden of the Scriptures and disregarding much. There certainly has come to you from Allah a light and a clear Book
685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      through which Allah guides those who seek His pleasure to the ways of peace, brings them out of darkness and into light by His Will, and guides them to the Straight Path.
686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, those who say, "Allah is the Messiah, son of Mary," have fallen into disbelief. Say, ˹O Prophet,˺ "Who has the power to prevent Allah if He chose to destroy the Messiah, son of Mary, his mother, and everyone in the world all together?" To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. He creates whatever He wills. And Allah is Most Capable of everything.
687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Jews and the Christians each say, "We are the children of Allah and His most beloved!" Say, ˹O Prophet,˺ "Why then does He punish you for your sins? No! You are only humans like others of His Own making. He forgives whoever He wills and punishes whoever He wills. To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything in between. And to Him is the final return."
688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O People of the Book! Our Messenger has indeed come to you, making things clear to you after an interval between the messengers so you do not say, "There has never come to us a deliverer of good news or a warner." Now there has come to you a deliverer of good news and a warner. And Allah is Most Capable of everything.
689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when Moses said to his people, "O my people! Remember Allah’s favours upon you when He raised prophets from among you, made you sovereign,
690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O  my people! Enter the Holy Land which Allah has destined for you ˹to enter˺. And do not turn back or else you will become losers."
691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They replied, "O Moses! There is an enormously powerful people there, so we will never ˹be able to˺ enter it until they leave. If they do, then we will enter!"
692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Two God-fearing men—who had been blessed by Allah—said, "Surprise them through the gate. If you do, you will certainly prevail. Put your trust in Allah if you are ˹truly˺ believers."
693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Yet˺ they said, "O Moses! ˹Still˺ we will never enter as long as they remain there. So go—both you and your Lord—and fight; we are staying right here!"
694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses pleaded, "My Lord! I have no control over anyone except myself and my brother. So set us apart from the rebellious people."
695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah replied, "Then this land is forbidden to them for forty years, during which they will wander through the land. So do not grieve for the rebellious people."
696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Relate to them in truth ˹O Prophet˺ the story of Adam’s two sons—how each offered a sacrifice: Abel’s offering was accepted while Cain’s was not. So Cain threatened, "I will kill you!" His brother replied, "Allah only accepts ˹the offering˺ of the sincerely devout.
697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If you raise your hand to kill me, I will not raise mine to kill you, because I fear Allah—the Lord of all worlds.
698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I want to let you bear your sin against me along with your other sins, then you will be one of those destined to the Fire. And that is the reward of the wrongdoers."
699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet Cain convinced himself to kill his brother, so he killed him—becoming a loser.
700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Allah sent a crow digging ˹a grave˺ in the ground ˹for a dead crow˺, in order to show him how to bury the corpse of his brother. He cried, "Alas! Have I ˹even˺ failed to be like this crow and bury the corpse of my brother?" So he became regretful.
701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That is why We ordained for the Children of Israel that whoever takes a life—unless as a punishment for murder or mischief in the land—it will be as if they killed all of humanity; and whoever saves a life, it will be as if they saved all of humanity. ˹Although˺ Our messengers already came to them with clear proofs, many of them still transgressed afterwards through the land.
702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, the penalty for those who wage war against Allah and His Messenger and spread mischief in the land is death, crucifixion, cutting off their hands and feet on opposite sides, or exile from the land. This ˹penalty˺ is a disgrace for them in this world, and they will suffer a tremendous punishment in the Hereafter.
703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for those who repent before you seize them, then know that Allah is All-Forgiving, Most Merciful.
704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! Be mindful of Allah and seek what brings you closer to Him and struggle in His Way, so you may be successful.
705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for the disbelievers, even if they were to possess everything in the world twice over ˹and offer it all˺ to ransom themselves from the punishment of the Day of Judgment, it would never be accepted from them. And they will suffer a painful punishment.
706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will be desperate to get out of the Fire but they will never be able to. And they will suffer an everlasting punishment.
707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for male and female thieves, cut off their hands for what they have done—a deterrent from Allah. And Allah is Almighty, All-Wise.
708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But whoever repents after their wrongdoing and mends their ways, Allah will surely turn to them in forgiveness. Indeed, Allah is All-Forgiving, Most Merciful.
709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do you not know that the kingdom of the heavens and the earth belongs to Allah ˹alone˺? He punishes whoever He wills and forgives whoever He wills. And Allah is Most Capable of everything.
710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O Messenger! Do not grieve for those who race to disbelieve—those who say, "We believe" with their tongues, but their hearts are in disbelief. Nor those among the Jews who eagerly listen to lies, attentive to those who are too arrogant to come to you. They distort the Scripture, taking rulings out of context, then say, "If this is the ruling you get ˹from Muhammad˺, accept it. If not, beware!" Whoever Allah allows to be deluded, you can never be of any help to them against Allah. It is not Allah’s Will to purify their hearts. For them is disgrace in this world, and they will suffer a tremendous punishment in the Hereafter.
711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They eagerly listen to falsehood and consume forbidden gain. So if they come to you ˹O Prophet˺, either judge between them or turn away from them. If you turn away from them, they cannot harm you whatsoever. But if you judge between them, then do so with justice. Surely Allah loves those who are just.
712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But why do they come to you for judgment when they ˹already˺ have the Torah containing Allah’s judgment, then they turn away after all? They are not ˹true˺ believers.
713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, We revealed the Torah, containing guidance and light, by which the prophets, who submitted themselves to Allah, made judgments for Jews. So too did the rabbis and scholars judge according to Allah’s Book, with which they were entrusted and of which they were made keepers. So do not fear the people; fear Me! Nor trade my revelations for a fleeting gain. And those who do not judge by what Allah has revealed are ˹truly˺ the disbelievers.
714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We ordained for them in the Torah, "A life for a life, an eye for an eye, a nose for a nose, an ear for an ear, a tooth for a tooth—and for wounds equal retaliation." But whoever waives it charitably, it will be atonement for them. And those who do not judge by what Allah has revealed are ˹truly˺ the wrongdoers.
715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then in the footsteps of the prophets, We sent Jesus, son of Mary, confirming the Torah revealed before him. And We gave him the Gospel containing guidance and light and confirming what was revealed in the Torah—a guide and a lesson to the God-fearing.
716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So let the people of the Gospel judge by what Allah has revealed in it. And those who do not judge by what Allah has revealed are ˹truly˺ the rebellious.
717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We have revealed to you ˹O Prophet˺ this Book with the truth, as a confirmation of previous Scriptures and a supreme authority on them. So judge between them by what Allah has revealed, and do not follow their desires over the truth that has come to you. To each of you We have ordained a code of law and a way of life. If Allah had willed, He would have made you one community, but His Will is to test you with what He has given ˹each of˺ you. So compete with one another in doing good. To Allah you will all return, then He will inform you ˹of the truth˺ regarding your differences.
718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And judge between them ˹O Prophet˺ by what Allah has revealed, and do not follow their desires. And beware, so they do not lure you away from some of what Allah has revealed to you. If they turn away ˹from Allah’s judgment˺, then know that it is Allah’s Will to repay them for some of their sins, and that many people are indeed rebellious.
719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Is it the judgment of ˹pre-Islamic˺ ignorance they seek? Who could be a better judge than Allah for people of sure faith?
720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! Take neither Jews nor Christians as guardians—they are guardians of each other. Whoever does so will be counted as one of them. Surely Allah does not guide the wrongdoing people.
721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You see those with sickness in their hearts racing for their guardianship, saying ˹in justification˺, "We fear a turn of fortune will strike us." But perhaps Allah will bring about ˹your˺ victory or another favour by His command, and they will regret what they have hidden in their hearts.
722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Only then,˺ the believers will ask ˹one another˺, "Are these the ones who swore solemn oaths by Allah that they were with you?" Their deeds have been in vain, so they have become losers.
723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! Whoever among you abandons their faith, Allah will replace them with others who love Him and are loved by Him. They will be humble with the believers but firm towards the disbelievers, struggling in the Way of Allah; fearing no blame from anyone. This is the favour of Allah. He grants it to whoever He wills. And Allah is All-Bountiful, All-Knowing.
724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Your only guardians are Allah, His Messenger, and fellow believers—who establish prayer and pay alms-tax with humility.
725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoever allies themselves with Allah, His Messenger, and fellow believers, then it is certainly Allah’s party that will prevail.
726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Do not seek the guardianship of those given the Scripture before you and the disbelievers who have made your faith a mockery and amusement. And be mindful of Allah if you are ˹truly˺ believers.
727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When you call to prayer, they mock it in amusement. This is because they are a people without understanding.
728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "O People of the Book! Do you resent us only because we believe in Allah and what has been revealed to us and what was revealed before—while most of you are rebellious?"
729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Shall I inform you of those who deserve a worse punishment from Allah ˹than the rebellious˺? It is those who earned Allah’s condemnation and displeasure—some being reduced to apes and pigs and worshippers of false gods. These are far worse in rank and farther astray from the Right Way."
730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When they come to you ˹believers˺ they say, "We believe." But they are committed to disbelief when they enter and when they leave. And Allah knows what they hide.
731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       You see many of them racing towards sin, transgression, and consumption of forbidden gain. Evil indeed are their actions!
732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why do their rabbis and scholars not forbid them from saying what is sinful and consuming what is unlawful? Evil indeed is their inaction!
733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Some among˺ the Jews said, "Allah is tight-fisted." May their fists be tied and they be condemned for what they said. Rather, He is open-handed, giving freely as He pleases. That which has been revealed to you ˹O Prophet˺ from your Lord will only cause many of them to increase in wickedness and disbelief. We have stirred among them hostility and hatred until the Day of Judgment. Whenever they kindle the fire of war, Allah puts it out. And they strive to spread corruption in the land. And Allah does not like corruptors.
734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had the People of the Book only been faithful and mindful ˹of Allah˺, We would have certainly absolved them of their sins and admitted them into the Gardens of Bliss.
735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And had they observed the Torah, the Gospel, and what has been revealed to them from their Lord, they would have been overwhelmed with provisions from above and below. Some among them are upright, yet many do nothing but evil.
736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O Messenger! Convey everything revealed to you from your Lord. If you do not, then you have not delivered His message. Allah will ˹certainly˺ protect you from the people. Indeed, Allah does not guide the people who disbelieve.
737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "O People of the Book! You have nothing to stand on unless you observe the Torah, the Gospel, and what has been revealed to you from your Lord." And your Lord’s revelation to you ˹O Prophet˺ will only cause many of them to increase in wickedness and disbelief. So do not grieve for the people who disbelieve.
738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, the believers, Jews, Sabians and Christians—whoever ˹truly˺ believes in Allah and the Last Day and does good, there will be no fear for them, nor will they grieve.
739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We took a covenant from the Children of Israel and sent them messengers. Whenever a messenger came to them with what they did not desire, they denied some and killed others.
740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They thought there would be no consequences, so they turned a blind eye and a deaf ear. Yet Allah turned to them in forgiveness ˹after their repentance˺, but again many became blind and deaf. And Allah is All-Seeing of what they do.
741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those who say, "Allah is the Messiah, son of Mary," have certainly fallen into disbelief. The Messiah ˹himself˺ said, "O Children of Israel! Worship Allah—my Lord and your Lord." Whoever associates others with Allah ˹in worship˺ will surely be forbidden Paradise by Allah. Their home will be the Fire. And the wrongdoers will have no helpers.
742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those who say, "Allah is one in a Trinity," have certainly fallen into disbelief. There is only One God. If they do not stop saying this, those who disbelieve among them will be afflicted with a painful punishment.
743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Will they not turn to Allah in repentance and seek His forgiveness? And Allah is All-Forgiving, Most Merciful.
744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Messiah, son of Mary, was no more than a messenger. ˹Many˺ messengers had ˹come and˺ gone before him. His mother was a woman of truth. They both ate food. See how We make the signs clear to them, yet see how they are deluded ˹from the truth˺!
745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, ˹O Prophet,˺ "How can you worship besides Allah those who can neither harm nor benefit you? And Allah ˹alone˺ is the All-Hearing, All-Knowing."
746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "O People of the Book! Do not go to extremes in your faith beyond the truth, nor follow the vain desires of those who went astray before ˹you˺. They misled many and strayed from the Right Way."
747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers among the Children of Israel were condemned in the revelations of David and Jesus, son of Mary. That was for their disobedience and violations.
748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They did not forbid one another from doing evil. Evil indeed was what they did!
749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You see many of them taking the disbelievers as allies. Truly wicked are their misdeeds, which have earned them Allah’s wrath. And they will be in everlasting torment.
750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had they believed in Allah, the Prophet, and what has been revealed to him, they would have never taken those ˹pagans˺ as allies. But most of them are rebellious.
751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You will surely find the most bitter towards the believers to be the Jews and polytheists and the most gracious to be those who call themselves Christian. That is because there are priests and monks among them and because they are not arrogant.
752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they listen to what has been revealed to the Messenger, you see their eyes overflowing with tears for recognizing the truth. They say, "Our Lord! We believe, so count us among the witnesses.
753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why should we not believe in Allah and the truth that has come to us? And we long for our Lord to include us in the company of the righteous."
754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Allah will reward them for what they said with Gardens under which rivers flow, to stay there forever. And that is the reward of the good-doers.
755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who disbelieve and reject Our signs, they will be the residents of the Hellfire.
756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! Do not forbid the good things which Allah has made lawful for you, and do not transgress. Indeed, Allah does not like transgressors.
757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Eat of the good, lawful things provided to you by Allah. And be mindful of Allah in Whom you believe.
758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah will not call you to account for your thoughtless oaths, but He will hold you accountable for deliberate oaths. The penalty for a broken oath is to feed ten poor people from what you normally feed your own family, or to clothe them, or to free a bondsperson. But if none of this is affordable, then you must fast three days. This is the penalty for breaking your oaths. So be mindful of your oaths. This is how Allah makes things clear to you, so perhaps you will be grateful.
759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O believers! Intoxicants, gambling, idols, and drawing lots for decisions are all evil of Satan’s handiwork. So shun them so you may be successful.
760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Satan’s plan is to stir up hostility and hatred between you with intoxicants and gambling and to prevent you from remembering Allah and praying. Will you not then abstain?
761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Obey Allah and obey the Messenger and beware! But if you turn away, then know that Our Messenger’s duty is only to deliver ˹the message˺ clearly.
762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is no blame on those who believe and do good for what they had consumed before ˹the prohibition˺, as long as they fear Allah, have faith, and do what is good; then they believe and act virtuously, then become fully mindful ˹of Allah˺ and do righteous deeds. For Allah loves the good-doers.
763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! Allah will surely test you with game within the reach of your hands and spears to distinguish those who fear Him in secret. Whoever transgresses from now on will suffer a painful punishment.
764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O  believers! Do not kill game while on pilgrimage. Whoever kills game intentionally must compensate by offering its equivalence—as judged by two just men among you—to be offered at the Sacred House, or by feeding the needy, or by fasting so that they may taste the consequences of their violations. Allah has forgiven what has been done. But those who persist will be punished by Allah. And Allah is Almighty, capable of punishment.
765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is lawful for you to hunt and eat seafood, as a provision for you and for travellers. But hunting on land is forbidden to you while on pilgrimage. Be mindful of Allah to Whom you all will be gathered.
766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah has made the Ka’bah—the Sacred House—a sanctuary of well-being for all people, along with the sacred months, the sacrificial animals, and the ˹offerings decorated with˺ garlands. All this so you may know that Allah knows whatever is in the heavens and whatever is on the earth, and that He has ˹perfect˺ knowledge of everything.
767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Know that Allah is severe in punishment and that He is All-Forgiving, Most Merciful.
768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Messenger’s duty is only to deliver ˹the message˺. And Allah ˹fully˺ knows what you reveal and what you conceal.
769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "Good and evil are not equal, though you may be dazzled by the abundance of evil. So be mindful of Allah, O  people of reason, so you may be successful."
770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers! Do not ask about any matter which, if made clear to you, may disturb you. But if you inquire about what is being revealed in the Quran, it will be made clear to you. Allah has forgiven what was done ˹in the past˺. And Allah is All-Forgiving, Most Forbearing.
771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Some people before you asked such questions then denied their answers.
772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Some people before you asked such questions then denied their answers.
773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When it is said to them, "Come to Allah’s revelations and to the Messenger," they reply, "What we found our forefathers practicing is good enough for us." ˹Would they still do so,˺ even if their forefathers had absolutely no knowledge or guidance?
774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! You are accountable only for yourselves. It will not harm you if someone chooses to deviate—as long as you are ˹rightly˺ guided. To Allah you will all return, and He will inform you of what you used to do.
775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! When death approaches any of you, call upon two just Muslim men to witness as you make a bequest; otherwise, two non-Muslims if you are afflicted with death while on a journey. If you doubt ˹their testimony˺, keep them after prayer and let them testify under oath ˹saying˺, "By Allah! We would never sell our testimony for any price, even in favour of a close relative, nor withhold the testimony of Allah. Otherwise, we would surely be sinful."
776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If they are found guilty ˹of false testimony˺, let the deceased’s two closest heirs affected by the bequest replace the witnesses and testify under oath ˹saying˺, "By Allah! Our testimony is truer than theirs. We have not transgressed. Otherwise, we would surely be wrongdoers."
777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In this way it is more likely that witnesses will give true testimony or else fear that their oaths could be refuted by those of the heirs. Be mindful of Allah and obey. For Allah does not guide the rebellious people.
778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Consider˺ the Day Allah will gather the messengers and say, "What response did you receive?" They will reply, "We have no knowledge ˹compared to You˺! You ˹alone˺ are indeed the Knower of all unseen."
779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹on Judgment Day˺ Allah will say, "O Jesus, son of Mary! Remember My favour upon you and your mother: how I supported you with the holy spirit so you spoke to people in ˹your˺ infancy and adulthood. How I taught you writing, wisdom, the Torah, and the Gospel. How you moulded a bird from clay—by My Will—and breathed into it and it became a ˹real˺ bird—by My Will. How you healed the blind and the lepers—by My Will. How you brought the dead to life—by My Will. How I prevented the Children of Israel from harming you when you came to them with clear proofs and the disbelievers among them said, "This is nothing but pure magic."
780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And how I inspired the disciples, "Believe in Me and My messenger!" They declared, "We believe and bear witness that we fully submit ˹to Allah˺."
781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Remember˺ when the disciples asked, "O Jesus, son of Mary! Would your Lord be willing to send down to us a table spread with food from heaven?" Jesus answered, "Fear Allah if you are ˹truly˺ believers."
782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They said, "We ˹only˺ wish to eat from it to reassure our hearts, to verify you are indeed truthful to us, and to become its witnesses."
783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jesus, son of Mary, prayed, "O Allah, our Lord! Send us from heaven a table spread with food as a feast for us—the first and last of us—and as a sign from You. Provide for us! You are indeed the Best Provider."
784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah answered, "I am sending it down to you. But whoever among you denies afterwards will be subjected to a torment I have never inflicted on anyone of My creation."
785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹on Judgment Day˺ Allah will say, "O Jesus, son of Mary! Did you ever ask the people to worship you and your mother as gods besides Allah?" He will answer, "Glory be to You! How could I ever say what I had no right to say? If I had said such a thing, you would have certainly known it. You know what is ˹hidden˺ within me, but I do not know what is within You. Indeed, You ˹alone˺ are the Knower of all unseen.
786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I never told them anything except what You ordered me to say: "Worship Allah—my Lord and your Lord!" And I was witness over them as long as I remained among them. But when You took me, You were the Witness over them—and You are a Witness over all things.
787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If You punish them, they belong to You after all. But if You forgive them, You are surely the Almighty, All-Wise."
788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah will declare, "This is the Day when ˹only˺ the faithful will benefit from their faithfulness. Theirs are Gardens under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. That is the ultimate triumph."
789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To Allah ˹alone˺ belongs the kingdom of the heavens and the earth and everything within. And He is Most Capable of everything.
790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All praise is for Allah Who created the heavens and the earth and made darkness and light. Yet the disbelievers set up equals to their Lord ˹in worship˺.
791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who created you from clay, then appointed a term ˹for your death˺ and another known only to Him ˹for your resurrection˺—yet you continue to doubt!
792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He is the Only True God in the heavens and the earth. He knows whatever you conceal and whatever you reveal, and knows whatever you do.
793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whenever a sign comes to them from their Lord, they turn away from it.
794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They have indeed rejected the truth when it came to them, so they will soon face the consequences of their ridicule.
795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Have they not seen how many ˹disbelieving˺ peoples We destroyed before them? We had made them more established in the land than you. We sent down abundant rain for them and made rivers flow at their feet. Then We destroyed them for their sins and replaced them with other peoples.
796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had We sent down to you ˹O Prophet˺ a revelation in writing and they were to touch it with their own hands, the disbelievers would still have said, "This is nothing but pure magic!"
797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They say, "Why has no ˹visible˺ angel come with him?" Had We sent down an angel, the matter would have certainly been settled ˹at once˺, and they would have never been given more time ˹to repent˺.
798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if We had sent an angel, We would have certainly made it ˹assume the form of˺ a man—leaving them more confused than they already are.
799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.
800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, "Travel throughout the land and see the fate of the deniers."
801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ask ˹them, O  Prophet˺, "To whom belongs everything in the heavens and the earth?" Say, "To Allah!" He has taken upon Himself to be Merciful. He will certainly gather ˹all of˺ you together for the Day of Judgment—about which there is no doubt. But those who have ruined themselves will never believe.
802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To Him belongs whatever exists in the day and night. And He is the All-Hearing, All-Knowing.
803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "Will I take any guardian other than Allah, the Originator of the heavens and the earth, Who provides for all and is not in need of provision?" Say, "I have been commanded to be the first to submit and not be one of the polytheists."
804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, "I truly fear—if I were to disobey my Lord—the torment of a tremendous Day."
805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whoever is spared the torment of that Day will have certainly been shown Allah’s mercy. And that is the absolute triumph.
806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If Allah touches you with harm, none can undo it except Him. And if He touches you with a blessing, He is Most Capable of everything.
807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He reigns supreme over His creation. And He is the All-Wise, All-Aware.
808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ask ˹them, O  Prophet˺, "Who is the best witness?" Say, "Allah is! He is a Witness between me and you. And this Quran has been revealed to me so that, with it, I may warn you and whoever it reaches. Do you ˹pagans˺ testify that there are other gods besides Allah?" ˹Then˺ say, "I will never testify ˹to this˺!" ˹And˺ say, "There is only One God. And I totally reject whatever ˹idols˺ you associate with Him."
809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Those to whom We gave the Scripture recognize him ˹to be a true prophet˺ as they recognize their own children. Those who have ruined themselves will never believe.
810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who does more wrong than those who fabricate lies against Allah or deny His signs? Indeed, the wrongdoers will never succeed.
811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Consider˺ the Day We will gather them all together then ask those who associated others ˹with Allah in worship˺, "Where are those gods you used to claim?"
812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Their only argument will be: "By Allah, our Lord! We were never polytheists."
813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     See how they will lie about themselves and how those ˹gods˺ they fabricated will fail them!
814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There are some of them who ˹pretend to˺ listen to your recitation ˹of the Quran˺, but We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. Even if they were to see every sign, they still would not believe in them. The disbelievers would ˹even˺ come to argue with you, saying, "This ˹Quran˺ is nothing but ancient fables!"
815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They turn others away from the Prophet and distance themselves as well. They ruin none but themselves, yet they fail to perceive it.
816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If only you could see when they will be detained before the Fire! They will cry, "Oh! If only we could be sent back, we would never deny the signs of our Lord and we would ˹surely˺ be of the believers."
817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But no! ˹They only say this˺ because the truth they used to hide will become all too clear to them. Even if they were to be sent back, they would certainly revert to what they were forbidden. Indeed they are liars!
818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They insisted, "There is nothing beyond this worldly life and we will never be resurrected."
819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if only you could see when they will be detained before their Lord! He will ask ˹them˺, "Is this ˹Hereafter˺ not the truth?" They will cry, "Absolutely, by our Lord!" He will say, "Then taste the punishment for your disbelief."
820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Losers indeed are those who deny the meeting with Allah until the Hour takes them by surprise, then they will cry, "Woe to us for having ignored this!" They will bear ˹the burden of˺ their sins on their backs. Evil indeed is their burden!
821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This worldly life is no more than play and amusement, but far better is the ˹eternal˺ Home of the Hereafter for those mindful ˹of Allah˺. Will you not then understand?
822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We certainly know that what they say grieves you ˹O Prophet˺. It is not your honesty they question—it is Allah’s signs that the wrongdoers deny.
823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, messengers before you were rejected but patiently endured rejection and persecution until Our help came to them. And Allah’s promise ˹to help˺ is never broken. And you have already received some of the narratives of these messengers.
824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If you find their denial unbearable, then build—if you can—a tunnel through the earth or stairs to the sky to bring them a ˹more compelling˺ sign. Had Allah so willed, He could have guided them all. So do not be one of those ignorant ˹of this fact˺.
825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Only the attentive will respond ˹to your call˺. As for the dead, Allah will raise them up, then to Him they will ˹all˺ be returned.
826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They ask, "Why has no ˹other˺ sign been sent down to him from his Lord?" Say, ˹O Prophet,˺ "Allah certainly has the power to send down a sign"—though most of them do not know.
827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All living beings roaming the earth and winged birds soaring in the sky are communities like yourselves. Then to their Lord they will be gathered all together.
828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who deny Our signs are ˹wilfully˺ deaf and dumb—lost in darkness. Allah leaves whoever He wills to stray and guides whoever He wills to the Straight Way.
829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ask ˹them, O  Prophet˺, "Imagine if you were overwhelmed by Allah’s torment or the Hour—would you call upon any other than Allah ˹for help˺? ˹Answer me˺ if your claims are true!
830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No! He is the only One you would call. And if He willed, He could remove the affliction that made you invoke Him. Only then will you forget whatever you associate with Him ˹in worship˺."
831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, We have sent messengers before you ˹O Prophet˺ to other people who We put through suffering and adversity ˹for their denial˺, so perhaps they would be humbled.
832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why did they not humble themselves when We made them suffer? Instead, their hearts were hardened, and Satan made their misdeeds appealing to them.
833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they became oblivious to warnings, We showered them with everything they desired. But just as they became prideful of what they were given, We seized them by surprise, then they instantly fell into despair!
834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the wrongdoers were utterly uprooted. And all praise is for Allah—Lord of all worlds.
835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ask ˹them, O  Prophet˺, "Imagine if Allah were to take away your hearing or sight, or seal your hearts—who else other than Allah could restore it?" See ˹O Prophet˺ how We vary the signs, yet they still turn away.
836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ask, "Imagine if Allah’s punishment were to overwhelm you with or without warning—who would be destroyed other than the wrongdoers?"
837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have sent messengers only as deliverers of good news and as warners. Whoever believes and does good, there will be no fear for them, nor will they grieve.
838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But those who deny Our signs will be afflicted with punishment for their rebelliousness.
839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel. I only follow what is revealed to me." Say, "Are those blind ˹to the truth˺ equal to those who can see? Will you not then reflect?"
840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Warn with this ˹Quran˺ those who are awed by the prospect of being gathered before their Lord—when they will have no protector or intercessor besides Him—so perhaps they will be mindful ˹of Him˺.
841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹O Prophet!˺ Do not dismiss those ˹poor believers˺ who invoke their Lord morning and evening, seeking His pleasure. You are not accountable for them whatsoever, nor are they accountable for you. So do not dismiss them, or you will be one of the wrongdoers.
842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In this way We have tested some by means of others, so those ˹disbelievers˺ may say, "Has Allah favoured these ˹poor believers˺ out of all of us?" Does Allah not best recognize the grateful?
843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the believers in Our revelations come to you, say, "Peace be upon you! Your Lord has taken upon Himself to be Merciful. Whoever among you commits evil ignorantly ˹or recklessly˺ then repents afterwards and mends their ways, then Allah is truly All-Forgiving, Most Merciful."
844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is how We make Our signs clear, so the way of the wicked may become distinct.
845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "I have been forbidden to worship those you invoke besides Allah." Say, "I will not follow your desires, for I then would certainly be astray and not one of those ˹rightly˺ guided."
846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "Indeed, I stand on a clear proof from my Lord—yet you have denied it. That ˹torment˺ you seek to hasten is not within my power. It is only Allah Who decides ˹its time˺. He declares the truth. And He is the Best of Judges."
847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say ˹also˺, "If what you seek to hasten were within my power, the matter between us would have already been settled. But Allah knows the wrongdoers best."
848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               With Him are the keys of the unseen—no one knows them except Him.
849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is the One Who calls back your souls by night and knows what you do by day, then revives you daily to complete your appointed term. To Him is your ˹ultimate˺ return, then He will inform you of what you used to do.
850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He reigns supreme over all of His creation, and sends recording-angels, watching over you. When death comes to any of you, Our angels take their soul, never neglecting this duty.
851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then they are ˹all˺ returned to Allah—their True Master. Judgment is His ˹alone˺. And He is the Swiftest Reckoner.
852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "Who rescues you from the darkest times on land and at sea? He ˹alone˺ you call upon with humility, openly and secretly: "If You rescue us from this, we will be ever grateful."
853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, "˹Only˺ Allah rescues you from this and any other distress, yet you associate others with Him ˹in worship˺."
854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, "He ˹alone˺ has the power to unleash upon you a torment from above or below you or split you into ˹conflicting˺ factions and make you taste the violence of one another." See how We vary the signs, so perhaps they will comprehend.
855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Still your people ˹O Prophet˺ have rejected this ˹Quran˺, although it is the truth. Say, "I am not a keeper over you."
856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Every ˹destined˺ matter has a ˹set˺ time to transpire. And you will soon come to know.
857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when you come across those who ridicule Our revelations, do not sit with them unless they engage in a different topic. Should Satan make you forget, then once you remember, do not ˹continue to˺ sit with the wrongdoing people.
858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Those mindful ˹of Allah˺ will not be accountable for those ˹who ridicule it˺ whatsoever—their duty is to advise, so perhaps the ridiculers will abstain.
859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And leave those who take this faith ˹of Islam˺ as mere play and amusement and are deluded by ˹their˺ worldly life. Yet remind them by this ˹Quran˺, so no one should be ruined for their misdeeds. They will have no protector or intercessor other than Allah. Even if they were to offer every ˹possible˺ ransom, none will be accepted from them. Those are the ones who will be ruined for their misdeeds. They will have a boiling drink and painful punishment for their disbelief.
860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ask ˹them, O  Prophet˺, "Should we invoke, other than Allah, those ˹idols˺ which cannot benefit or harm us, and turn back to disbelief after Allah has guided us? ˹If we do so, we will be˺ like those disoriented by devils in the wilderness, while their companions call them to guidance, ˹saying˺, ‘Come to us!’ Say, ˹O Prophet,˺ "Allah’s guidance is the ˹only˺ true guidance. And we are commanded to submit to the Lord of all worlds,
861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              establish prayer, and be mindful of Him. To Him you will all be gathered together.
862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He is the One Who created the heavens and the earth in truth. On the Day ˹of Judgment˺ He will say, ‘Be!’ And there will be! His command is truth. All authority is His ˹alone˺ He is the Knower of all—seen or unseen. And He is the All-Wise, All-Aware."
863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember˺ when Abraham said to his father, Ȃzar, "Do you take idols as gods? It is clear to me that you and your people are entirely misguided."
864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We also showed Abraham the wonders of the heavens and the earth, so he would be sure in faith.
865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When the night grew dark upon him, he saw a star and said, "This is my Lord!" But when it set, he said, "I do not love things that set."
866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then when he saw the moon rising, he said, "This one is my Lord!" But when it disappeared, he said, "If my Lord does not guide me, I will certainly be one of the misguided people."
867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then when he saw the sun shining, he said, "This must be my Lord—it is the greatest!" But again when it set, he declared, "O my people! I totally reject whatever you associate ˹with Allah in worship˺.
868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I have turned my face towards the One Who has originated the heavens and the earth—being upright—and I am not one of the polytheists."
869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his people argued with him. He responded, "Are you arguing with me about Allah, while He has guided me? I am not afraid of whatever ˹idols˺ you associate with Him—˹none can harm me,˺ unless my Lord so wills. My Lord encompasses everything in ˹His˺ knowledge. Will you not be mindful?
870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And how should I fear your associate-gods, while you have no fear in associating ˹others˺ with Allah—a practice He has never authorized? Which side has more right to security? ˹Tell me˺ if you really know!"
871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is ˹only˺ those who are faithful and do not tarnish their faith with falsehood who are guaranteed security and are ˹rightly˺ guided.
872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This was the argument We gave Abraham against his people. We elevate in rank whoever We please. Surely your Lord is All-Wise, All-Knowing.
873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And We blessed him with Isaac and Jacob. We guided them all as We previously guided Noah and those among his descendants: David, Solomon, Job, Joseph, Moses, and Aaron. This is how We reward the good-doers.
874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Likewise, ˹We guided˺ Zachariah, John, Jesus, and Elias, who were all of the righteous.
875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹We also guided˺ Ishmael, Elisha, Jonah, and Lot, favouring each over other people ˹of their time˺.
876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹We favoured˺ some of their forefathers, their descendants, and their brothers. We chose them and guided them to the Straight Path.
877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is Allah’s guidance with which He guides whoever He wills of His servants. Had they associated others with Him ˹in worship˺, their ˹good˺ deeds would have been wasted.
878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those were the ones to whom We gave the Scripture, wisdom, and prophethood. But if these ˹pagans˺ disbelieve in this ˹message˺, then We have already entrusted it to a people who will never disbelieve in it.
879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These ˹prophets˺ were ˹rightly˺ guided by Allah, so follow their guidance. Say, "I ask no reward of you for this ˹Quran˺—it is a reminder to the whole world."
880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they have not shown Allah His proper reverence when they said, "Allah has revealed nothing to any human being." Say, ˹O Prophet,˺ "Who then revealed the Book brought forth by Moses as a light and guidance for people, which you split into separate sheets—revealing some and hiding much? You have been taught ˹through this Quran˺ what neither you nor your forefathers knew." Say, ˹O Prophet,˺ "Allah ˹revealed it˺!" Then leave them to amuse themselves with falsehood.
881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is a blessed Book which We have revealed—confirming what came before it—so you may warn the Mother of Cities and everyone around it. Those who believe in the Hereafter ˹truly˺ believe in it and guard their prayers.
882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Who does more wrong than the one who fabricates lies against Allah or claims, "I have received revelations!"—although nothing was revealed to them—or the one who says, "I can reveal the like of Allah’s revelations!"? If you ˹O Prophet˺ could only see the wrongdoers in the throes of death while the angels are stretching out their hands ˹saying˺, "Give up your souls! Today you will be rewarded with the torment of disgrace for telling lies about Allah and for being arrogant towards His revelations!"
883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Today˺ you have come back to Us all alone as We created you the first time—leaving behind everything We have provided you with. We do not see your intercessors with you—those you claimed were Allah’s partners ˹in worship˺. All your ties have been broken and all your claims have let you down."
884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, Allah is the One Who causes seeds and fruit stones to sprout. He brings forth the living from the dead and the dead from the living. That is Allah! How can you then be deluded ˹from the truth˺?
885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He causes the dawn to break, and has made the night for rest and ˹made˺ the sun and the moon ˹to travel˺ with precision. That is the design of the Almighty, All-Knowing.
886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And He is the One Who has made the stars as your guide through the darkness of land and sea. We have already made the signs clear for people who know.
887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And He is the One Who originated you all from a single soul, then assigned you a place to live and another to ˹be laid to˺ rest. We have already made the signs clear for people who comprehend.
888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And He is the One Who sends down rain from the sky—causing all kinds of plants to grow—producing green stalks from which We bring forth clustered grain. And from palm trees come clusters of dates hanging within reach. ˹There are˺ also gardens of grapevines, olives, and pomegranates, similar ˹in shape˺ but dissimilar ˹in taste˺. Look at their fruit as it yields and ripens! Indeed, in these are signs for people who believe.
889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yet they associate the jinn out of ignorance. Glorified and Exalted is He above what they claim!
890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He is˺ the Originator of the heavens and earth. How could He have children when He has no mate? He created all things and has ˹perfect˺ knowledge of everything.
891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That is Allah—your Lord! There is no god ˹worthy of worship˺ except Him. ˹He is˺ the Creator of all things, so worship Him ˹alone˺. And He is the Maintainer of everything.
892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               No vision can encompass Him, but He encompasses all vision. For He is the Most Subtle, All-Aware.
893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, there have come to you insights from your Lord. So whoever chooses to see, it is for their own good. But whoever chooses to be blind, it is to their own loss. And I am not a keeper over you.
894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And so We vary our signs to the extent that they will say, "You have studied ˹previous scriptures˺," and We make this ˹Quran˺ clear for people who know.
895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹O Prophet!˺ Follow what is revealed to you from your Lord—there is no god ˹worthy of worship˺ except Him—and turn away from the polytheists.
896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Had Allah willed, they would not have been polytheists. We have not appointed you as their keeper, nor are you their maintainer.
897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹O believers!˺ Do not insult what they invoke besides Allah or they will insult Allah spitefully out of ignorance. This is how We have made each people’s deeds appealing to them. Then to their Lord is their return, and He will inform them of what they used to do.
898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They swear by Allah their most solemn oaths that if a sign were to come to them, they would certainly believe in it. Say, ˹O Prophet,˺ "Signs are only with Allah." What will make you ˹believers˺ realize that even if a sign were to come to them, they still would not believe?
899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We turn their hearts and eyes away ˹from the truth˺ as they refused to believe at first, leaving them to wander blindly in their defiance.
900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Even if We had sent them the angels, made the dead speak to them, and assembled before their own eyes every sign ˹they demanded˺, they still would not have believed—unless Allah so willed. But most of them are ignorant ˹of this˺.
901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And so We have made for every prophet enemies—devilish humans and jinn—whispering to one another with elegant words of deception. Had it been your Lord’s Will, they would not have done such a thing. So leave them and their deceit,
902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               so that the hearts of those who disbelieve in the Hereafter may be receptive to it, be pleased with it, and be persistent in their evil pursuits.
903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Say, O  Prophet,˺ "Should I seek a judge other than Allah while He is the One Who has revealed for you the Book ˹with the truth˺ perfectly explained?" Those who were given the Scripture know that it has been revealed ˹to you˺ from your Lord in truth. So do not be one of those who doubt.
904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Word of your Lord has been perfected in truth and justice. None can change His Words. And He is the All-Hearing, All- Knowing.
905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹O Prophet!˺ If you were to obey most of those on earth, they would lead you away from Allah’s Way. They follow nothing but assumptions and do nothing but lie.
906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.
907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So eat only of what is slaughtered in Allah’s Name if you truly believe in His revelations.
908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Why should you not eat of what is slaughtered in Allah’s Name when He has already explained to you what He has forbidden to you—except when compelled by necessity? Many ˹deviants˺ certainly mislead others by their whims out of ignorance. Surely your Lord knows the transgressors best.
909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shun all sin—open and secret. Indeed, those who commit sin will be punished for what they earn.
910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do not eat of what is not slaughtered in Allah’s Name. For that would certainly be ˹an act of˺ disobedience. Surely the devils whisper to their ˹human˺ associates to argue with you. If you were to obey them, then you ˹too˺ would be polytheists.
911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Can those who had been dead, to whom We gave life and a light with which they can walk among people, be compared to those in complete darkness from which they can never emerge? That is how the misdeeds of the disbelievers have been made appealing to them.
912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And so We have placed in every society the most wicked to conspire in it. Yet they plot only against themselves, but they fail to perceive it.
913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whenever a sign comes to them, they say, "We will never believe until we receive what Allah’s messengers received." Allah knows best where to place His message. The wicked will soon be overwhelmed by humiliation from Allah and a severe punishment for their evil plots.
914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever Allah wills to guide, He opens their heart to Islam. But whoever He wills to leave astray, He makes their chest tight and constricted as if they were climbing up into the sky. This is how Allah dooms those who disbelieve.
915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That is your Lord’s Path—perfectly straight. We have already made the signs clear to those who are mindful.
916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will have the Home of Peace with their Lord, Who will be their Guardian because of what they used to do.
917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Consider˺ the Day He will gather them ˹all˺ together and say, "O assembly of jinn! You misled humans in great numbers." And their human associates will say, "Our Lord! We benefited from each other’s company, Surely your Lord is All-Wise, All-Knowing.
918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is how We make the wrongdoers ˹destructive˺ allies of one another because of their misdeeds.
919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Allah will ask,˺ "O assembly of jinn and humans! Did messengers not come from among you, proclaiming My revelations and warning you of the coming of this Day of yours?" They will say, "We confess against ourselves!" For they have been deluded by ˹their˺ worldly life. And they will testify against themselves that they were disbelievers.
920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This ˹sending of the messengers˺ is because your Lord would never destroy a society for their wrongdoing while its people are unaware ˹of the truth˺.
921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They will each be assigned ranks according to their deeds. And your Lord is not unaware of what they do.
922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Your Lord is the Self-Sufficient, Full of Mercy. If He wills, He can do away with you and replace you with whoever He wills, just as He produced you from the offspring of other people.
923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, what you have been promised will certainly come to pass. And you will have no escape.
924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon know who will fare best in the end. Indeed, the wrongdoers will never succeed."
925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The pagans set aside for Allah a share of the crops and cattle He created, saying, "This ˹portion˺ is for Allah," so they claim, "and this ˹one˺ for our associate-gods." Yet the portion of their associate-gods is not shared with Allah while Allah’s portion is shared with their associate-gods. What unfair judgment!
926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Likewise, the pagans’ evil associates have made it appealing to them to kill their own children—only leading to their destruction as well as confusion in their faith. Had it been Allah’s Will, they would not have done such a thing. So leave them and their falsehood.
927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They say, "These cattle and crops are reserved—none may eat them except those we permit," so they claim. Some other cattle are exempted from labour and others are not slaughtered in Allah’s Name—falsely attributing lies to Him. He will repay them for their lies.
928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They ˹also˺ say, "The offspring of this cattle is reserved for our males and forbidden to our females; but if it is stillborn, they may all share it." He will repay them for their falsehood. Surely He is All-Wise, All-Knowing.
929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lost indeed are those who have murdered their own children foolishly out of ignorance and have forbidden what Allah has provided for them—falsely attributing lies to Allah. They have certainly strayed and are not ˹rightly˺ guided.
930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who produces gardens—both cultivated and wild—and palm trees, crops of different flavours, olives, and pomegranates—similar ˹in shape˺, but dissimilar ˹in taste˺. Eat of the fruit they bear and pay the dues at harvest, but do not waste. Surely He does not like the wasteful.
931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Some cattle are fit for labour, others are too small. Eat of what Allah has provided for you and do not follow Satan’s footsteps. Certainly, he is your sworn enemy.
932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Allah has created˺ four pairs: a pair of sheep and a pair of goats—ask ˹them, O  Prophet˺, "Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Tell me with knowledge, if what you say is true."—
933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and a pair of camels and a pair of oxen. Ask ˹them˺, "Has He forbidden ˹to you˺ the two males or the two females or what is in the wombs of the two females? Or were you present when Allah gave you this commandment?" Who does more wrong than those who fabricate lies against Allah to mislead others without ˹any˺ knowledge? Surely Allah does not guide the wrongdoing people.
934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "I do not find in what has been revealed to me anything forbidden to eat except carrion, running blood, swine—which is impure—or a sinful offering in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely your Lord is All-Forgiving, Most Merciful."
935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For those who are Jewish, We forbade every animal with undivided hoofs and the fat of oxen and sheep except what is joined to their backs or intestines or mixed with bone. In this way We rewarded them for their violations. And We are certainly truthful.
936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if they deny you ˹O Prophet˺, say, "Your Lord is infinite in mercy, yet His punishment will not be averted from the wicked people."
937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The polytheists will argue, "Had it been Allah’s Will, neither we nor our forefathers would have associated others with Him ˹in worship˺ or made anything unlawful." Likewise, those before them rejected the truth until they tasted Our punishment. Ask ˹them, O  Prophet˺, "Do you have any knowledge that you can produce for us? Surely you follow nothing but ˹false˺ assumptions and you do nothing but lie."
938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "Allah has the most conclusive argument. Had it been His Will, He would have easily imposed guidance upon all of you."
939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Bring your witnesses who can testify that Allah has forbidden this." If they ˹falsely˺ testify, do not testify with them. And do not follow the desires of those who deny Our proofs, disbelieve in the Hereafter, and set up equals with their Lord.
940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "Come! Let me recite to you what your Lord has forbidden to you: do not associate others with Him ˹in worship˺. ˹Do not fail to˺ honour your parents. Do not kill your children for fear of poverty. We provide for you and for them. Do not come near indecencies, openly or secretly. Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. This is what He has commanded you, so perhaps you will understand.
941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Give full measure and weigh with justice. We never require of any soul more than what it can afford. Whenever you speak, maintain justice—even regarding a close relative. And fulfil your covenant with Allah. This is what He has commanded you, so perhaps you will be mindful.
942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, that is My Path—perfectly straight. So follow it and do not follow other ways, for they will lead you away from His Way. This is what He has commanded you, so perhaps you will be conscious ˹of Allah˺."
943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Additionally, We gave Moses the Scripture, completing the favour upon those who do good, detailing everything, and as a guide and a mercy, so perhaps they would be certain of the meeting with their Lord.
944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is a blessed Book We have revealed. So follow it and be mindful ˹of Allah˺, so you may be shown mercy.
945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 You ˹pagans˺ can no longer say, "Scriptures were only revealed to two groups before us and we were unaware of their teachings."
946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nor can you say, "If only the Scriptures had been revealed to us, we would have been better guided than they." Now there has come to you from your Lord a clear proof—a guide and mercy. Who then does more wrong than those who deny Allah’s revelations and turn away from them? We will reward those who turn away from Our revelations with a dreadful punishment for turning away.
947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Are they awaiting the coming of the angels, or your Lord ˹Himself˺, or some of your Lord’s ˹major˺ signs? On the Day your Lord’s signs arrive, belief will not benefit those who did not believe earlier or those who did no good through their faith. Say, "Keep waiting! We too are waiting."
948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, you ˹O Prophet˺ are not responsible whatsoever for those who have divided their faith and split into sects. Their judgment rests only with Allah. And He will inform them of what they used to do.
949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whoever comes with a good deed will be rewarded tenfold. But whoever comes with a bad deed will be punished for only one. None will be wronged.
950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "Surely my Lord has guided me to the Straight Path, a perfect way, the faith of Abraham, the upright, who was not one of the polytheists."
951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "Surely my prayer, my worship, my life, and my death are all for Allah—Lord of all worlds.
952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He has no partner. So I am commanded, and so I am the first to submit."
953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "Should I seek a lord other than Allah while He is the Lord of everything?" No one will reap except what they sow. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of your differences.
954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who has placed you as successors on earth and elevated some of you in rank over others, so He may test you with what He has given you. Surely your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.
955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Alif-Lãm-Mĩm-sãd.
956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹This is˺ a Book sent down to you ˹O Prophet˺—do not let anxiety into your heart regarding it—so with it you may warn ˹the disbelievers˺, and as a reminder to the believers.
957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Follow what has been sent down to you from your Lord, and do not take others as guardians besides Him. How seldom are you mindful!
958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Imagine˺ how many societies We have destroyed! Our torment took them by surprise ˹while sleeping˺ at night or midday.
959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Their only cry—when overwhelmed by Our torment—was, "We have indeed been wrongdoers."
960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We will surely question those who received messengers and We will question the messengers ˹themselves˺.
961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then We will give them a full account with sure knowledge—for We were never absent.
962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The weighing on that Day will be just. As for those whose scale will be heavy ˹with good deeds˺, ˹only˺ they will be successful.
963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But those whose scale is light, they have doomed themselves for wrongfully denying Our signs.
964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have indeed established you on earth and provided you with a means of livelihood. ˹Yet˺ you seldom give any thanks.
965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely We created you, who refused to prostrate with the others.
966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah asked, "What prevented you from prostrating when I commanded you?" He replied, "I am better than he is: You created me from fire and him from clay."
967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah said, "Then get down from Paradise! It is not for you to be arrogant here. So get out! You are truly one of the disgraced."
968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He appealed, "Then delay my end until the Day of their resurrection."
969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah said, "You are delayed ˹until the appointed Day˺."
970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He said, "For leaving me to stray I will lie in ambush for them on Your Straight Path.
971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I will approach them from their front, their back, their right, their left, and then You will find most of them ungrateful."
972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah said, "Get out of Paradise! You are disgraced and rejected! I will certainly fill up Hell with you and your followers all together."
973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Allah said,˺ "O Adam! Live with your wife in Paradise and eat from wherever you please, but do not approach this tree, or else you will be wrongdoers."
974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Satan tempted them in order to expose what was hidden of their nakedness. He said, "Your Lord has forbidden this tree to you only to prevent you from becoming angels or immortals."
975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he swore to them, "I am truly your sincere advisor."
976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he brought about their fall through deception. And when they tasted of the tree, their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. Then their Lord called out to them, "Did I not forbid you from that tree and ˹did I not˺ tell you that Satan is your sworn enemy?"
977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They replied, "Our Lord! We have wronged ourselves. If You do not forgive us and have mercy on us, we will certainly be losers."
978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah said, "Descend as enemies to each other. You will find in the earth a residence and provision for your appointed stay."
979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He added, "There you will live, there you will die, and from there you will be resurrected."
980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O children of Adam! We have provided for you clothing to cover your nakedness and as an adornment. However, the best clothing is righteousness. This is one of Allah’s bounties, so perhaps you will be mindful.
981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O children of Adam! Do not let Satan deceive you as he tempted your parents out of Paradise and caused their cover to be removed in order to expose their nakedness. Surely he and his soldiers watch you from where you cannot see them. We have made the devils allies of those who disbelieve.
982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whenever they commit a shameful deed, they say, "We found our forefathers doing it and Allah has commanded us to do it." Say, "No! Allah never commands what is shameful. How can you attribute to Allah what you do not know?"
983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "My Lord has commanded uprightness and dedication ˹to Him alone˺ in worship, calling upon Him with sincere devotion. Just as He first brought you into being, you will be brought to life again."
984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He has guided some, while others are destined to stray. They have taken devils as their masters instead of Allah—thinking they are ˹rightly˺ guided.
985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O Children of Adam! Dress properly whenever you are at worship. Eat and drink, but do not waste. Surely He does not like the wasteful.
986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ask, ˹O Prophet,˺ "Who has forbidden the adornments and lawful provisions Allah has brought forth for His servants?" Say, "They are for the enjoyment of the believers in this worldly life, but they will be exclusively theirs on the Day of Judgment. This is how We make Our revelations clear for people of knowledge."
987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "My Lord has only forbidden open and secret indecencies, sinfulness, unjust aggression, associating ˹others˺ with Allah ˹in worship˺—a practice He has never authorized—and attributing to Allah what you do not know."
988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For each community there is an appointed term. When their time arrives, they can neither delay it for a moment, nor could they advance it.
989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O children of Adam! When messengers from among yourselves come to you reciting My revelations—whoever shuns evil and mends their ways, there will be no fear for them, nor will they grieve.
990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But those who receive Our revelations with denial and arrogance will be the residents of the Fire. They will be there forever.
991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who does more wrong than those who fabricate lies against Allah or deny His revelations? They will receive what is destined for them, until Our messenger-angels arrive to take their souls, asking them, "Where are those ˹false gods˺ you used to invoke besides Allah?" They will cry, "They have failed us," and they will confess against themselves that they were indeed disbelievers.
992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah will say, "Enter the Fire along with the ˹evil˺ groups of jinn and humans that preceded you." Whenever a group enters Hell, it will curse the preceding one until they are all gathered inside, the followers will say about their leaders, "Our Lord! They have misled us, so multiply their torment in the Fire." He will answer, "It has already been multiplied for all, but you do not know."
993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then the leaders will say to their followers, "You were no better than us! So taste the torment for what you used to commit."
994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely those who receive our revelations with denial and arrogance, the gates of heaven will not be opened for them, nor will they enter Paradise until a camel passes through the eye of a needle. This is how We reward the wicked.
995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hell will be their bed; flames will be their cover. This is how We reward the wrongdoers.
996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who believe and do good—We never require of any soul more than what it can afford—it is they who will be the residents of Paradise. They will be there forever.
997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We will remove whatever bitterness they had in their hearts. Rivers will flow under their feet. And they will say, "Praise be to Allah for guiding us to this. We would have never been guided if Allah had not guided us. The messengers of our Lord had certainly come with the truth." It will be announced to them, "This is Paradise awarded to you for what you used to do."
998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The residents of Paradise will call out to the residents of the Fire, "We have certainly found our Lord’s promise to be true. Have you too found your Lord’s promise to be true?" They will reply, "Yes, we have!" Then a caller will announce to both, "May Allah’s condemnation be upon the wrongdoers,
999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           those who hindered ˹others˺ from Allah’s Way, strived to make it ˹appear˺ crooked, and disbelieved in the Hereafter."
1000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There will be a barrier between Paradise and Hell. And on the heights ˹of that barrier˺ will be people They will call out to the residents of Paradise, "Peace be upon you!" They will have not yet entered Paradise, but eagerly hope to.
1001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When their eyes will turn towards the residents of Hell, they will pray, "Our Lord! Do not join us with the wrongdoing people."
1002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those on the heights will call out to some ˹tyrants in the Fire˺, who they will recognize by their appearance, saying, "Your large numbers and arrogance are of no use ˹today˺!
1003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Are these ˹humble believers˺ the ones you swore would never be shown Allah’s mercy?" ˹Finally, those on the heights will be told:˺ "Enter Paradise! There will be no fear for you, nor will you grieve."
1004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The residents of the Fire will then cry out to the residents of Paradise, "Aid us with some water or any provision Allah has granted you." They will reply, "Allah has forbidden both to the disbelievers,
1005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              those who took this faith ˹of Islam˺ as mere amusement and play and were deluded by ˹their˺ worldly life." ˹Allah will say,˺ "Today We will ignore them just as they ignored the coming of this Day of theirs and for rejecting Our revelations."
1006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We have certainly brought them a Book which We explained with knowledge—a guide and mercy for those who believe.
1007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do they only await the fulfilment ˹of its warning˺? The Day it will be fulfilled, those who ignored it before will say, "The messengers of our Lord certainly came with the truth. Are there any intercessors who can plead on our behalf? Or can we be sent back so we may do ˹good,˺ unlike what we used to do?" They will have certainly ruined themselves, and whatever ˹gods˺ they fabricated will fail them.
1008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne. He makes the day and night overlap in rapid succession. He created the sun, the moon, and the stars—all subjected by His command. The creation and the command belong to Him ˹alone˺. Blessed is Allah—Lord of all worlds!
1009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Call upon your Lord humbly and secretly. Surely He does not like the transgressors.
1010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do not spread corruption in the land after it has been set in order. And call upon Him with hope and fear. Indeed, Allah’s mercy is always close to the good-doers.
1011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He is the One Who sends the winds ushering in His mercy. When they bear heavy clouds, We drive them to a lifeless land and then cause rain to fall, producing every type of fruit. Similarly, We will bring the dead to life, so perhaps you will be mindful.
1012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The fertile land produces abundantly by the Will of its Lord, whereas the infertile land hardly produces anything. This is how We vary ˹Our˺ lessons to those who are thankful.
1013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We sent Noah to his people. He said, "O my people! Worship Allah—you have no other god except Him. I truly fear for you the torment of a tremendous Day."
1014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the chiefs of his people said, "We surely see that you are clearly misguided."
1015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He replied, "O my people! I am not misguided! But I am a messenger from the Lord of all worlds,
1016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               conveying to you my Lord’s messages and giving you ˹sincere˺ advice. And I know from Allah what you do not know.
1017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do you find it astonishing that a reminder should come to you from your Lord through one of your own, warning you, so you may beware and perhaps be shown mercy?"
1018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But they rejected him, so We saved him and those with him in the Ark, and drowned those who rejected Our signs. They were certainly a blind people.
1019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And to the people of ’ad We sent their brother Hûd. He said, "O my people! Worship Allah—you have no other god except Him. Will you not then fear Him?"
1020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The disbelieving chiefs of his people responded, "We surely see you as a fool, and we certainly think you are a liar."
1021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hûd replied, "O my people! I am no fool! But I am a messenger from the Lord of all worlds,
1022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            conveying to you my Lord’s messages. And I am your sincere advisor.
1023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do you find it astonishing that a reminder should come to you from your Lord through one of your own so he may warn you? Remember that He made you successors after the people of Noah and increased you greatly in stature. So remember Allah’s favours, so you may be successful."
1024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They said, "Have you come to us so that we would worship Allah alone and abandon what our forefathers used to worship? Then bring us what you threaten us with, if what you say is true!"
1025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He said, "You will certainly be subjected to your Lord’s torment and wrath. Do you dispute with me regarding the so-called gods which you and your forefathers have made up—a practice Allah has never authorized? Then wait! I too am waiting with you."
1026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So We saved him and those with him by Our mercy and uprooted those who denied Our signs. They were not believers.
1027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And to the people of Thamûd We sent their brother salih. He said, "O my people! Worship Allah—you have no other god except Him. A clear proof has come to you from your Lord: this is Allah’s she-camel as a sign to you. So leave her to graze ˹freely˺ on Allah’s land and do not harm her, or else you will be overcome by a painful punishment.
1028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Remember when He made you successors after ’ad and established you in the land—˹and˺ you built palaces on its plains and carved homes into mountains. So remember Allah’s favours, and do not go about spreading corruption in the land."
1029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The arrogant chiefs of his people asked the lowly who believed among them, "Are you certain that salih has been sent by his Lord?" They replied, "We certainly believe in what he has been sent with."
1030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The arrogant said, "We surely reject what you believe in."
1031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then they killed the she-camel—defying their Lord’s command—and challenged ˹salih˺, "Bring us what you threaten us with, if you are ˹truly˺ one of the messengers."
1032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then an ˹overwhelming˺ earthquake struck them, and they fell lifeless in their homes.
1033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So he turned away from them, saying, "O my people! Surely I conveyed to you my Lord’s message and gave you ˹sincere˺ advice, but you do not like ˹sincere˺ advisors."
1034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹remember˺ when Lot scolded ˹the men of˺ his people, ˹saying,˺ "Do you commit a shameful deed that no man has ever done before?
1035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You lust after men instead of women! You are certainly transgressors."
1036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But his people’s only response was to say, "Expel them from your land! They are a people who wish to remain chaste!"
1037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So We saved him and his family except his wife, who was one of the doomed.
1038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We poured upon them a rain ˹of brimstone˺. See what was the end of the wicked!
1039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And to the people of Midian We sent their brother Shu’aib. He said, "O my people! Worship Allah—you have no other god except Him. A clear proof has already come to you from your Lord. So give just measure and weight, do not defraud people of their property, nor spread corruption in the land after it has been set in order. This is for your own good, if you are ˹truly˺ believers.
1040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And do not lie in ambush on every road—threatening and hindering those who believe in Allah from His Path and striving to make it ˹appear˺ crooked. Remember when you were few, then He increased you in number. And consider the fate of the corruptors!
1041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If some of you do believe in what I have been sent with while others do not, then be patient until Allah judges between us. He is the Best of Judges."
1042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The arrogant chiefs of his people threatened, "O Shu’aib! We will certainly expel you and your fellow believers from our land, unless you return to our faith." He replied, "Even if we hate it?
1043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We would surely be fabricating a lie against Allah if we were to return to your faith after Allah has saved us from it. It does not befit us to return to it unless it is the Will of Allah, our Lord. Our Lord has encompassed everything in ˹His˺ knowledge. In Allah we trust. Our Lord! Judge between us and our people with truth. You are the best of those who judge."
1044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The disbelieving chiefs of his people threatened, "If you follow Shu’aib, you will surely be losers!"
1045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.
1046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who rejected Shu’aib were ˹wiped out˺ as if they had never lived there. Those who rejected Shu’aib were the true losers.
1047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He turned away from them, saying, "O my people! Indeed, I have delivered to you the messages of my Lord and gave you ˹sincere˺ advice. How can I then grieve for those who chose to disbelieve?"
1048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whenever We sent a prophet to a society, We afflicted its ˹disbelieving˺ people with suffering and adversity, so perhaps they would be humbled.
1049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then We changed their adversity to prosperity until they flourished and argued ˹falsely˺, "Our forefathers ˹too˺ had been visited by adversity and prosperity." So We seized them by surprise, while they were unaware.
1050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had the people of those societies been faithful and mindful ˹of Allah˺, We would have overwhelmed them with blessings from heaven and earth. But they disbelieved, so We seized them for what they used to commit.
1051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Did the people of those societies feel secure that Our punishment would not come upon them by night while they were asleep?
1052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or did they feel secure that Our punishment would not come upon them by day while they were at play?
1053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Did they feel secure against Allah’s planning? None would feel secure from Allah’s planning except the losers.
1054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Is it not clear to those who take over the land after ˹the destruction of˺ its former residents that—if We will—We can punish them ˹too˺ for their sins and seal their hearts so they will not hear ˹the truth˺?
1055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We have narrated to you ˹O Prophet˺ some of the stories of those societies. Surely, their messengers came to them with clear proofs, but still they would not believe in what they had already denied. This is how Allah seals the hearts of the disbelievers.
1056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We did not find most of them true to their covenant. Rather, We found most of them truly rebellious.
1057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then after them We sent Moses with Our signs to Pharaoh and his chiefs, but they wrongfully rejected them. See what was the end of the corruptors!
1058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses said, "O Pharaoh! I am truly a messenger from the Lord of all worlds,
1059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    obliged to say nothing about Allah except the truth. Indeed, I have come to you with clear proof from your Lord, so let the children of Israel go with me."
1060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pharaoh said, "If you have come with a sign, then bring it if what you say is true."
1061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Moses threw down his staff and—behold!—it became a real snake.
1062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.
1063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The chiefs of Pharaoh’s people said, "He is indeed a skilled magician,
1064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             who seeks to drive you from your land." ˹So Pharaoh asked,˺ "What do you propose?"
1065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They replied, "Let him and his brother wait and send mobilizers to all cities
1066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           to bring you every clever magician."
1067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The magicians came to Pharaoh, saying, "Shall we receive a ˹suitable˺ reward if we prevail?"
1068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He replied, "Yes, and you will certainly be among those closest to me."
1069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They asked, "O Moses! Will you cast, or shall we be the first to cast?"
1070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moses said, "You first." So when they did, they deceived the eyes of the people, stunned them, and made a great display of magic.
1071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then We inspired Moses, "Throw down your staff," and—behold!—it devoured the objects of their illusion!
1072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So the truth prevailed and their illusions failed.
1073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Pharaoh and his people were defeated right there and put to shame.
1074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the magicians fell down, prostrating.
1075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They declared, "We ˹now˺ believe in the Lord of all worlds—
1076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  the Lord of Moses and Aaron."
1077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pharaoh threatened, "How dare you believe in him before I give you permission? This must be a conspiracy you devised in the city to drive out its people, but soon you will see.
1078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will certainly cut off your hands and feet on opposite sides, then crucify you all."
1079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They responded, "Surely to our Lord we will ˹all˺ return.
1080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your rage towards us is only because we believed in the signs of our Lord when they came to us. Our Lord! Shower us with perseverance, and let us die while submitting ˹to You˺."
1081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The chiefs of Pharaoh’s people protested, "Are you going to leave Moses and his people free to spread corruption in the land and abandon you and your gods?" He responded, "We will kill their sons and keep their women. We will completely dominate them."
1082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moses reassured his people, "Seek Allah’s help and be patient. Indeed, the earth belongs to Allah ˹alone˺. He grants it to whoever He chooses of His servants. The ultimate outcome belongs ˹only˺ to the righteous."
1083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They complained, "We have always been oppressed—before and after you came to us ˹with the message˺." He replied, "Perhaps your Lord will destroy your enemy and make you successors in the land to see what you will do."
1084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We afflicted Pharaoh’s people with famine and shortage of crops so they might come back ˹to their senses˺.
1085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In times of prosperity, they said, "This is what we deserve," but in adversity, they blamed it on Moses and those with him. Surely all is destined by Allah. Yet most of them did not know.
1086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They said, "No matter what sign you may bring to deceive us, we will never believe in you."
1087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So We plagued them with floods, locusts, lice, frogs, and blood—all as clear signs, but they persisted in arrogance and were a wicked people.
1088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When tormented, they pleaded, "O Moses! Pray to your Lord on our behalf, by virtue of the covenant He made with you. If you help remove this torment from us, we will certainly believe in you and let the Children of Israel go with you."
1089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as soon as We removed the torment from them—until they met their inevitable fate—they broke their promise.
1090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So We inflicted punishment upon them, drowning them in the sea for denying Our signs and being heedless of them.
1091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹so˺ We made the oppressed people successors of the eastern and western lands, which We had showered with blessings. ˹In this way˺ the noble Word of your Lord was fulfilled for the Children of Israel for what they had endured. And We destroyed what Pharaoh and his people constructed and what they established.
1092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We brought the Children of Israel across the sea and they came upon a people devoted to idols. They demanded, "O Moses! Make for us a god like their gods." He replied, "Indeed, you are a people acting ignorantly!
1093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              What they follow is certainly doomed to destruction and their deeds are in vain."
1094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He added, "Shall I seek for you a god other than Allah, while He has honoured you above the others?"
1095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when We rescued you from the people of Pharaoh, who afflicted you with dreadful torment—killing your sons and keeping your women. That was a severe test from your Lord.
1096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We appointed for Moses thirty nights then added another ten—completing his Lord’s term of forty nights. Moses commanded his brother Aaron, "Take my place among my people, do what is right, and do not follow the way of the corruptors."
1097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When Moses came at the appointed time and his Lord spoke to him, he asked, "My Lord! Reveal Yourself to me so I may see You." Allah answered, "You cannot see Me! But look at the mountain. If it remains firm in its place, only then will you see Me." When his Lord appeared to the mountain, He levelled it to dust and Moses collapsed unconscious. When he recovered, he cried, "Glory be to You! I turn to You in repentance and I am the first of the believers."
1098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah said, "O Moses! I have ˹already˺ elevated you above all others by My messages and speech. So hold firmly to what I have given you and be grateful."
1099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We wrote for him on the Tablets ˹the fundamentals˺ of everything; commandments and explanations of all things. ˹We commanded,˺ "Hold to this firmly and ask your people to take the best of it.
1100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will turn away from My signs those who act unjustly with arrogance in the land. And even if they were to see every sign, they still would not believe in them. If they see the Right Path, they will not take it. But if they see a crooked path, they will follow it. This is because they denied Our signs and were heedless of them.
1101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The deeds of those who deny Our signs and the meeting ˹with Allah˺ in the Hereafter will be in vain. Will they be rewarded except for what they have done?"
1102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In the absence of Moses, his people made from their ˹golden˺ jewellery an idol of a calf that made a lowing sound. Did they not see that it could neither speak to them nor guide them to the ˹Right˺ Path? Still they took it as a god and were wrongdoers.
1103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Later, when they were filled with remorse and realized they had gone astray, they cried, "If our Lord does not have mercy on us and forgive us, we will certainly be losers."
1104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Upon Moses’ return to his people, ˹totally˺ furious and sorrowful, he said, "What an evil thing you committed in my absence! Did you want to hasten your Lord’s torment?" Then he threw down the Tablets and grabbed his brother by the hair, dragging him closer. Aaron pleaded, "O son of my mother! The people overpowered me and were about to kill me. So do not ˹humiliate me and˺ make my enemies rejoice, nor count me among the wrongdoing people."
1105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Moses prayed, "My Lord! Forgive me and my brother! And admit us into Your mercy. You are the Most Merciful of the merciful."
1106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those who worshipped the calf will certainly be afflicted with Allah’s wrath as well as disgrace in the life of this world. This is how We reward those who invent falsehood.
1107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But those who commit evil, then repent and become ˹true˺ believers, your Lord will certainly be All-Forgiving, Most-Merciful.
1108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When Moses’ anger subsided, he took up the Tablets whose text contained guidance and mercy for those who stand in awe of their Lord.
1109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moses chose seventy men from among his people for Our appointment and, when they were seized by an earthquake, he cried, "My Lord! Had You willed, You could have destroyed them long ago, and me as well. Will You destroy us for what the foolish among us have done? This is only a test from You—by which You allow whoever you will to stray and guide whoever You will. You are our Guardian. So forgive us and have mercy on us. You are the best forgiver.
1110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ordain for us what is good in this life and the next. Indeed, we have turned to You ˹in repentance˺." Allah replied, "I will inflict My torment on whoever I will. But My mercy encompasses everything. I will ordain mercy for those who shun evil, pay alms-tax, and believe in Our revelations.
1111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "˹They are˺ the ones who follow the Messenger, the unlettered Prophet, whose description they find in their Torah and the Gospel. He commands them to do good and forbids them from evil, permits for them what is lawful and forbids to them what is impure, and relieves them from their burdens and the shackles that bound them. ˹Only˺ those who believe in him, honour and support him, and follow the light sent down to him will be successful."
1112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "O humanity! I am Allah’s Messenger to you all. To Him ˹alone˺ belongs the kingdom of the heavens and the earth. There is no god ˹worthy of worship˺ except Him. He gives life and causes death." So believe in Allah and His Messenger, the unlettered Prophet, who believes in Allah and His revelations. And follow him, so you may be ˹rightly˺ guided.
1113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There are some among the people of Moses who guide with the truth and establish justice accordingly.
1114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We divided them into twelve tribes—each as a community. And We revealed to Moses, when his people asked for water, "Strike the rock with your staff." Then twelve springs gushed out. Each tribe knew its drinking place. We shaded them with clouds and sent down to them manna and quails, ˹saying˺, "Eat from the good things We have provided for you." They ˹certainly˺ did not wrong Us, but wronged themselves.
1115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹remember˺ when it was said to them, "Enter this city ˹of Jerusalem˺ and eat from wherever you please. Say, ‘Absolve us,’ and enter the gate with humility. We will forgive your sins, ˹and˺ We will multiply the reward for the good-doers."
1116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the wrongdoers among them changed the words they were commanded to say. So We sent down a punishment from the heavens upon them for their wrongdoing.
1117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ask them ˹O Prophet˺ about ˹the people of˺ the town which was by the sea, who broke the Sabbath. During the Sabbath, ˹abundant˺ fish would come to them clearly visible, but on other days the fish were never seen. In this way We tested them for their rebelliousness.
1118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When some of ˹the righteous among˺ them questioned ˹their fellow Sabbath-keepers˺, "Why do you ˹bother to˺ warn those ˹Sabbath-breakers˺ who will either be destroyed or severely punished by Allah?" They replied, "Just to be free from your Lord’s blame, and so perhaps they may abstain."
1119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When they ignored the warning they were given, We rescued those who used to warn against evil and overtook the wrongdoers with a dreadful punishment for their rebelliousness.
1120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But when they stubbornly persisted in violation, We said to them, "Be disgraced apes!"
1121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember, O  Prophet,˺ when your Lord declared that He would send against them others who would make them suffer terribly until the Day of Judgment. Indeed, your Lord is swift in punishment, but He is certainly All-Forgiving, Most Merciful.
1122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We dispersed them through the land in groups—some were righteous, others were less so. We tested them with prosperity and adversity, so perhaps they would return ˹to the Right Path˺.
1123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they were succeeded by other generations who inherited the Scripture. They indulged in unlawful gains, claiming, "We will be forgiven ˹after all˺." And if similar gain came their way, they would seize it. Was a covenant not taken from them in the Scripture that they would not say anything about Allah except the truth? And they were already well-versed in its teachings. But the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?
1124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for those who firmly abide by the Scripture and establish prayer—surely We never discount the reward of those acting righteously.
1125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹remember˺ when We raised the mountain over them as if it were a cloud and they thought it would fall on them. ˹We said,˺ "Hold firmly to that ˹Scripture˺ which We have given you and observe its teachings so perhaps you will become mindful ˹of Allah˺."
1126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹remember˺ when your Lord brought forth from the loins of the children of Adam their descendants and had them testify regarding themselves. ˹Allah asked,˺ "Am I not your Lord?" They replied, "Yes, You are! We testify." ˹He cautioned,˺ "Now you have no right to say on Judgment Day, ‘We were not aware of this.’
1127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nor say, ‘It was our forefathers who had associated others ˹with Allah in worship˺ and we, as their descendants, followed in their footsteps. Will you then destroy us for the falsehood they invented?’"
1128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is how We make our signs clear, so perhaps they will return ˹to the Right Path˺.
1129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And relate to them ˹O Prophet˺ the story of the one to whom We gave Our signs, but he abandoned them, so Satan took hold of him, and he became a deviant.
1130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If We had willed, We would have elevated him with Our signs, but he clung to this life—following his evil desires. His example is that of a dog: if you chase it away, it pants, and if you leave it, it ˹still˺ pants. This is the example of the people who deny Our signs. So narrate ˹to them˺ stories ˹of the past˺, so perhaps they will reflect.
1131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       What an evil example of those who denied Our signs! They ˹only˺ wronged their own souls.
1132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoever Allah guides is truly guided. And whoever He leaves to stray, they are the ˹true˺ losers.
1133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We have destined many jinn and humans for Hell. They have hearts they do not understand with, eyes they do not see with, and ears they do not hear with. They are like cattle. In fact, they are even less guided! Such ˹people˺ are ˹entirely˺ heedless.
1134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah has the Most Beautiful Names. So call upon Him by them, and keep away from those who abuse His Names. They will be punished for what they used to do.
1135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And among those We created is a group that guides with the truth and establishes justice accordingly.
1136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who deny Our signs, We will gradually draw them to destruction in ways they cannot comprehend.
1137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I ˹only˺ delay their end for a while, but My planning is flawless.
1138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have they not ever given it a thought? Their fellow man is not insane. He is only sent with a clear warning.
1139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have they ever reflected on the wonders of the heavens and the earth, and everything Allah has created, and that perhaps their end is near? So what message after this ˹Quran˺ would they believe in?
1140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoever Allah allows to stray, none can guide, leaving them to wander blindly in their defiance.
1141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They ask you ˹O Prophet˺ regarding the Hour, "When will it be?" Say, "That knowledge is only with my Lord. He alone will reveal it when the time comes. It is too tremendous for the heavens and the earth and will only take you by surprise." They ask you as if you had full knowledge of it. Say, "That knowledge is only with Allah, but most people do not know."
1142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, "I have no power to benefit or protect myself, except by the Will of Allah. If I had known the unknown, I would have benefited myself enormously, and no harm would have ever touched me. I am only a warner and deliverer of good news for those who believe."
1143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He is the One Who created you from a single soul, then from it made its spouse so he may find comfort in her. After he had been united with her, she carried a light burden that developed gradually. When it grew heavy, they prayed to Allah, their Lord, "If you grant us good offspring, we will certainly be grateful."
1144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But when He granted their descendants good offspring, they associated false gods in what He has given them. Exalted is Allah above what they associate ˹with Him˺!
1145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do they associate ˹with Allah˺ those ˹idols˺ which cannot create anything, but are in fact created;
1146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               which cannot help them, or even help themselves?
1147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if you ˹idolaters˺ call upon them for guidance, they cannot respond to you. It is all the same whether you call them or remain silent.
1148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Those ˹idols˺ you invoke besides Allah are created beings like yourselves. So call upon them and see if they will answer you, if your claims are true!
1149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do they have feet to walk with? Or hands to hold with? Or eyes to see with? Or ears to hear with? Say, ˹O Prophet,˺ "Call upon your associate-gods and conspire against me without delay!
1150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "Indeed, my Protector is Allah Who has revealed this Book. For He ˹alone˺ protects the righteous.
1151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But those ˹false gods˺ you call besides Him can neither help you nor even themselves."
1152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If you ˹idolaters˺ call them to guidance, they cannot hear. And you ˹O Prophet˺ may see them facing towards you, but they cannot see.
1153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Be gracious, enjoin what is right, and turn away from those who act ignorantly.
1154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you are tempted by Satan, then seek refuge with Allah. Surely He is All-Hearing, All-Knowing.
1155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, when Satan whispers to those mindful ˹of Allah˺, they remember ˹their Lord˺ then they start to see ˹things˺ clearly.
1156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But the devils persistently plunge their ˹human˺ associates deeper into wickedness, sparing no effort.
1157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you ˹O Prophet˺ do not bring them a sign ˹which they demanded˺, they ask, "Why do you not make it yourself?" Say, "I only follow what is revealed to me from my Lord. This ˹Quran˺ is an insight from your Lord—a guide and a mercy for those who believe."
1158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When the Quran is recited, listen to it attentively and be silent, so you may be shown mercy.
1159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Remember your Lord inwardly with humility and reverence and in a moderate tone of voice, both morning and evening. And do not be one of the heedless.
1160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely those ˹angels˺ nearest to your Lord are not too proud to worship Him. They glorify Him. And to Him they prostrate.
1161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They ask you ˹O Prophet˺ regarding the spoils of war. Say, "Their distribution is decided by Allah and His Messenger. So be mindful of Allah, settle your affairs, and obey Allah and His Messenger if you are ˹true˺ believers."
1162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The ˹true˺ believers are only those whose hearts tremble at the remembrance of Allah, whose faith increases when His revelations are recited to them, and who put their trust in their Lord.
1163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They are˺ those who establish prayer and donate from what We have provided for them.
1164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is they who are the true believers. They will have elevated ranks, forgiveness, and an honourable provision from their Lord.
1165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Similarly, when your Lord brought you ˹O Prophet˺ out of your home for a just cause, a group of believers was totally against it.
1166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They disputed with you about the truth after it had been made clear, as if they were being driven to death with their eyes wide open.
1167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember, O  believers,˺ when Allah promised ˹to give˺ you the upper hand over either target, you wished to capture the unarmed party. But it was Allah’s Will to establish the truth by His Words and uproot the disbelievers;
1168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         to firmly establish the truth and wipe out falsehood—even to the dismay of the wicked.
1169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember˺ when you cried out to your Lord for help, He answered, "I will reinforce you with a thousand angels—followed by many others."
1170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Allah made this a sign of victory and reassurance to your hearts. Victory comes only from Allah. Surely Allah is Almighty, All-Wise.
1171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember˺ when He caused drowsiness to overcome you, giving you serenity. And He sent down rain from the sky to purify you, free you from Satan’s whispers, strengthen your hearts, and make ˹your˺ steps firm.
1172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Remember, O  Prophet,˺ when your Lord revealed to the angels, "I am with you. So make the believers stand firm. I will cast horror into the hearts of the disbelievers. So strike their necks and strike their fingertips."
1173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is because they defied Allah and His Messenger. And whoever defies Allah and His Messenger, then ˹know that˺ Allah is surely severe in punishment.
1174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That ˹worldly punishment˺ is yours, so taste it! Then the disbelievers will suffer the torment of the Fire.
1175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! When you face the disbelievers in battle, never turn your backs to them.
1176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And whoever does so on such an occasion—unless it is a manoeuvre or to join their own troops—will earn the displeasure of Allah, and their home will be Hell. What an evil destination!
1177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It was not you ˹believers˺ who killed them, but it was Allah Who did so. Nor was it you ˹O Prophet˺ who threw ˹a handful of sand at the disbelievers˺, but it was Allah Who did so, rendering the believers a great favour. Surely Allah is All-Hearing, All-Knowing.
1178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As such, Allah frustrates the evil plans of the disbelievers.
1179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you ˹Meccans˺ sought judgment, now it has come to you. And if you cease, it will be for your own good. But if you persist, We will persist. And your forces—no matter how numerous they might be—will not benefit you whatsoever. For Allah is certainly with the believers.
1180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O believers! Obey Allah and His Messenger and do not turn away from him while you hear ˹his call˺.
1181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do not be like those who say, "We hear," but in fact they are not listening.
1182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, the worst of all beings in the sight of Allah are the ˹wilfully˺ deaf and dumb, who do not understand.
1183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had Allah known any goodness in them, He would have certainly made them hear. ˹But˺ even if He had made them hear, they would have surely turned away heedlessly.
1184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Respond to Allah and His Messenger when he calls you to that which gives you life. And know that Allah stands between a person and their heart, and that to Him you will all be gathered.
1185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Beware of a trial that will not only affect the wrongdoers among you. And know that Allah is severe in punishment.
1186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Remember when you had been vastly outnumbered and oppressed in the land, constantly in fear of attacks by your enemy, then He sheltered you, strengthened you with His help, and provided you with good things so perhaps you would be thankful.
1187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Do not betray Allah and the Messenger, nor betray your trusts knowingly.
1188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And know that your wealth and your children are only a test and that with Allah is a great reward.
1189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! If you are mindful of Allah, He will grant you a standard ˹to distinguish between right and wrong˺, absolve you of your sins, and forgive you. And Allah is the Lord of infinite bounty.
1190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember, O  Prophet,˺ when the disbelievers conspired to capture, kill, or exile you. They planned, but Allah also planned. And Allah is the best of planners.
1191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whenever Our revelations are recited to them, they challenge ˹you˺, "We have already heard ˹the recitation˺. If we wanted, we could have easily produced something similar. This ˹Quran˺ is nothing but ancient fables!"
1192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when they prayed, "O Allah! If this is indeed the truth from You, then rain down stones upon us from the sky or overcome us with a painful punishment."
1193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Allah would never punish them while you ˹O Prophet˺ were in their midst. Nor would He ever punish them if they prayed for forgiveness.
1194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And why should Allah not punish them while they hinder pilgrims from the Sacred Mosque, claiming to be its rightful guardians? None has the right to guardianship except those mindful ˹of Allah˺, but most pagans do not know.
1195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Their prayer at the Sacred House was nothing but whistling and clapping. So taste the punishment for your disbelief.
1196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely the disbelievers spend their wealth to hinder others from the Path of Allah. They will continue to spend to the point of regret. Then they will be defeated and the disbelievers will be driven into Hell,
1197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             so Allah may separate the evil from the good. He will pile up the evil ones all together and then cast them into Hell. They are the ˹true˺ losers.
1198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Tell the disbelievers that if they desist, their past will be forgiven. But if they persist, then they have an example in those destroyed before them.
1199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Fight against them until there is no more persecution—and ˹your˺ devotion will be entirely to Allah. But if they desist, then surely Allah is All-Seeing of what they do.
1200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if they do not comply, then know that Allah is your Protector. What an excellent Protector, and what an excellent Helper!
1201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Know that whatever spoils you take, one-fifth is for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers, if you ˹truly˺ believe in Allah and what We revealed to Our servant on that decisive day when the two armies met ˹at Badr˺. And Allah is Most Capable of everything.
1202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember˺ when you were on the near side of the valley, your enemy on the far side, and the caravan was below you. Even if the two armies had made an appointment ˹to meet˺, both would have certainly missed it. Still it transpired so Allah may establish what He had destined—that those who were to perish and those who were to survive might do so after the truth had been made clear to both. Surely Allah is All-Hearing, All-Knowing.
1203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember, O  Prophet,˺ when Allah showed them in your dream as few in number. Had He shown them to you as many, you ˹believers˺ would have certainly faltered and disputed in the matter. But Allah spared you ˹from that˺. Surely He knows best what is ˹hidden˺ in the heart.
1204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then when your armies met, Allah made them appear as few in your eyes, and made you appear as few in theirs, so Allah may establish what He had destined. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
1205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! When you face an enemy, stand firm and remember Allah often so you may triumph.
1206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Obey Allah and His Messenger and do not dispute with one another, or you would be discouraged and weakened. Persevere! Surely Allah is with those who persevere.
1207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do not be like those ˹pagans˺ who left their homes arrogantly, only to be seen by people and to hinder others from Allah’s Path. And Allah is Fully Aware of what they do.
1208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹remember˺ when Satan made their ˹evil˺ deeds appealing to them, and said, "No one can overcome you today. I am surely by your side." But when the two forces faced off, he cowered and said, "I have absolutely nothing to do with you. I certainly see what you do not see. I truly fear Allah, for Allah is severe in punishment."
1209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when the hypocrites and those with sickness in their hearts said, "These ˹believers˺ are deluded by their faith." But whoever puts their trust in Allah, surely Allah is Almighty, All-Wise.
1210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If only you could see when the angels take the souls of the disbelievers, beating their faces and backs, ˹saying,˺ "Taste the torment of burning!
1211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation."
1212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Their fate is that of the people of Pharaoh and those before them—they all disbelieved in Allah’s signs, so Allah seized them for their sins. Indeed, Allah is All-Powerful, severe in punishment.
1213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is because Allah would never discontinue His favour to a people until they discontinue their faith. Surely Allah is All-Hearing, All-Knowing.
1214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That was the case with Pharaoh’s people and those before them—they all rejected the signs of their Lord, so We destroyed them for their sins and drowned Pharaoh’s people. They were all wrongdoers.
1215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, the worst of all beings in the sight of Allah are those who persist in disbelief, never to have faith—
1216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹namely˺ those with whom you ˹O Prophet˺ have entered into treaties, but they violate them every time, not fearing the consequences.
1217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you ever encounter them in battle, make a fearsome example of them, so perhaps those who would follow them may be deterred.
1218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if you ˹O Prophet˺ see signs of betrayal by a people, respond by openly terminating your treaty with them. Surely Allah does not like those who betray.
1219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not let those disbelievers think they are not within reach. They will have no escape.
1220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Prepare against them what you ˹believers˺ can of ˹military˺ power and cavalry to deter Allah’s enemies and your enemies as well as other enemies unknown to you but known to Allah. Whatever you spend in the cause of Allah will be paid to you in full and you will not be wronged.
1221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If the enemy is inclined towards peace, make peace with them. And put your trust in Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.
1222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if their intention is only to deceive you, then Allah is certainly sufficient for you. He is the One Who has supported you with His help and with the believers.
1223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He brought their hearts together. Had you spent all the riches in the earth, you could not have united their hearts. But Allah has united them. Indeed, He is Almighty, All-Wise.
1224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O  Prophet! Allah is sufficient for you and for the believers who follow you.
1225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O Prophet! Motivate the believers to fight. If there are twenty steadfast among you, they will overcome two hundred. And if there are one hundred of you, they will overcome one thousand of the disbelievers, for they are a people who do not comprehend.
1226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now Allah has lightened your burden, for He knows that there is weakness in you. So if there are a hundred steadfast among you, they will overcome two hundred. And if there be one thousand, they will overcome two thousand, by Allah’s Will. And Allah is with the steadfast.
1227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is not fit for a prophet that he should take captives until he has thoroughly subdued the land. You ˹believers˺ settled with the fleeting gains of this world, while Allah’s aim ˹for you˺ is the Hereafter. Allah is Almighty, All-Wise.
1228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Had it not been for a prior decree from Allah, you would have certainly been disciplined with a tremendous punishment for whatever ˹ransom˺ you have taken.
1229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now enjoy what you have taken, for it is lawful and good. And be mindful of Allah. Surely Allah is All-Forgiving, Most Merciful.
1230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O Prophet! Tell the captives in your custody, "If Allah finds goodness in your hearts, He will give you better than what has been taken from you, and forgive you. For Allah is All-Forgiving, Most Merciful."
1231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But if their intention is only to betray you ˹O Prophet˺, they sought to betray Allah before. But He gave you power over them. And Allah is All-Knowing, All-Wise.
1232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who believed, emigrated, and strived with their wealth and lives in the cause of Allah, as well as those who gave them shelter and help—they are truly guardians of one another. As for those who believed but did not emigrate, you have no obligations to them until they emigrate. But if they seek your help ˹against persecution˺ in faith, it is your obligation to help them, except against people bound with you in a treaty. Allah is All-Seeing of what you do.
1233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As for the disbelievers, they are guardians of one another. And unless you ˹believers˺ act likewise, there will be great oppression and corruption in the land.
1234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Those who believed, migrated, and struggled in the cause of Allah, and those who gave ˹them˺ shelter and help, they are the true believers. They will have forgiveness and an honourable provision.
1235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And those who later believed, migrated, and struggled alongside you, they are also with you. But only blood relatives are now entitled to inherit from one another, as ordained by Allah. Surely Allah has ˹full˺ knowledge of everything.
1236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹This is˺ a discharge from all obligations, by Allah and His Messenger, to the polytheists you ˹believers˺ have entered into treaties with:
1237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "You ˹polytheists˺ may travel freely through the land for four months, but know that you will have no escape from Allah, and that Allah will disgrace the disbelievers."
1238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A declaration from Allah and His Messenger ˹is made˺ to all people on the day of the greater pilgrimage that Allah and His Messenger are free of the polytheists. So if you ˹pagans˺ repent, it will be better for you. But if you turn away, then know that you will have no escape from Allah. And give good news ˹O Prophet˺ to the disbelievers of a painful punishment.
1239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for the polytheists who have honoured every term of their treaty with you and have not supported an enemy against you, honour your treaty with them until the end of its term. Surely Allah loves those who are mindful ˹of Him˺.
1240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But once the Sacred Months have passed, kill the polytheists ˹who violated their treaties˺ wherever you find them, capture them, besiege them, and lie in wait for them on every way. But if they repent, perform prayers, and pay alms-tax, then set them free. Indeed, Allah is All-Forgiving, Most Merciful.
1241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if anyone from the polytheists asks for your protection ˹O Prophet˺, grant it to them so they may hear the Word of Allah, then escort them to a place of safety, for they are a people who have no knowledge.
1242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How can such polytheists have a treaty with Allah and His Messenger, except those you have made a treaty with at the Sacred Mosque? So, as long as they are true to you, be true to them. Indeed Allah loves those who are mindful ˹of Him˺.
1243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How ˹can they have a treaty˺? If they were to have the upper hand over you, they would have no respect for kinship or treaty. They only flatter you with their tongues, but their hearts are in denial, and most of them are rebellious.
1244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They chose a fleeting gain over Allah’s revelations, hindering ˹others˺ from His Way. Evil indeed is what they have done!
1245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They do not honour the bonds of kinship or treaties with the believers. It is they who are the transgressors.
1246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if they repent, perform prayer, and pay alms-tax, then they are your brothers in faith. This is how We make the revelations clear for people of knowledge.
1247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But if they break their oaths after making a pledge and attack your faith, then fight the champions of disbelief—who never honour their oaths—so perhaps they will desist.
1248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Will you not fight those who have broken their oaths, conspired to expel the Messenger ˹from Mecca˺, and attacked you first? Do you fear them? Allah is more deserving of your fear, if you are ˹true˺ believers.
1249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹So˺ fight them and Allah will punish them at your hands, put them to shame, help you overcome them, and soothe the hearts of the believers—
1250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       removing rage from their hearts. And Allah pardons whoever He wills. For Allah is All-Knowing, All-Wise.
1251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you ˹believers˺ think that you will be left without Allah proving who among you ˹truly˺ struggles ˹in His cause˺ and never takes trusted allies other than Allah, His Messenger, or the believers? And Allah is All-Aware of what you do.
1252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is not for the polytheists to maintain the mosques of Allah while they openly profess disbelief. Their deeds are void, and they will be in the Fire forever.
1253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The mosques of Allah should only be maintained by those who believe in Allah and the Last Day, establish prayer, pay alms-tax, and fear none but Allah. It is right to hope that they will be among the ˹truly˺ guided.
1254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do you ˹pagans˺ consider providing the pilgrims with water and maintaining the Sacred Mosque as equal to believing in Allah and the Last Day and struggling in the cause of Allah? They are not equal in Allah’s sight. And Allah does not guide the wrongdoing people.
1255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who have believed, emigrated, and strived in the cause of Allah with their wealth and their lives are greater in rank in the sight of Allah. It is they who will triumph.
1256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their Lord gives them good news of His mercy, pleasure, and Gardens with everlasting bliss,
1257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          to stay there for ever and ever. Surely with Allah is a great reward.
1258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! Do not take your parents and siblings as trusted allies if they choose disbelief over belief. And whoever of you does so, they are the ˹true˺ wrongdoers.
1259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "If your parents and children and siblings and spouses and extended family and the wealth you have acquired and the trade you fear will decline and the homes you cherish—˹if all these˺ are more beloved to you than Allah and His Messenger and struggling in His Way, then wait until Allah brings about His Will. Allah does not guide the rebellious people."
1260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed Allah has given you ˹believers˺ victory on many battlefields, even at the Battle of hunain when you took pride in your great numbers, but they proved of no advantage to you. The earth, despite its vastness, seemed to close in on you, then you turned back in retreat.
1261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Allah sent down His reassurance you could not see, and punished those who disbelieved. Such was the reward of the disbelievers.
1262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then afterwards Allah will turn in grace to whoever He wills. And Allah is All-Forgiving, Most Merciful.
1263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O believers! Indeed, the polytheists are ˹spiritually˺ impure, If you fear poverty, Allah will enrich you out of His bounty, if He wills. Surely, Allah is All-Knowing, All-Wise.
1264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Fight those who do not believe in Allah and the Last Day, nor comply with what Allah and His Messenger have forbidden, nor embrace the religion of truth from among those who were given the Scripture, willingly submitting, fully humbled.
1265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The Jews say, "Ezra is the son of Allah," while the Christians say, "The Messiah is the son of Allah." Such are their baseless assertions, only parroting the words of earlier disbelievers. May Allah condemn them! How can they be deluded ˹from the truth˺?
1266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They have taken their rabbis and monks as well as the Messiah, son of Mary, as lords besides Allah, even though they were commanded to worship none but One God. There is no god ˹worthy of worship˺ except Him. Glorified is He above what they associate ˹with Him˺!
1267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They wish to extinguish Allah’s light with their mouths, but Allah will only allow His light to be perfected, even to the dismay of the disbelievers.
1268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.
1269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Indeed, many rabbis and monks consume people’s wealth wrongfully and hinder ˹others˺ from the Way of Allah. Give good news of a painful torment to those who hoard gold and silver and do not spend it in Allah’s cause.
1270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Day ˹will come˺ when their treasure will be heated up in the Fire of Hell, and their foreheads, sides, and backs branded with it. ˹It will be said to them,˺ "This is the treasure you hoarded for yourselves. Now taste what you hoarded!"
1271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, the number of months ordained by Allah is twelve—in Allah’s Record since the day He created the heavens and the earth—of which four are sacred. That is the Right Way. So do not wrong one another during these months. And together fight the polytheists as they fight against you together. And know that Allah is with those mindful ˹of Him˺.
1272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Reallocating the sanctity of ˹these˺ months is an increase in disbelief, by which the disbelievers are led ˹far˺ astray. They adjust the sanctity one year and uphold it in another, only to maintain the number of months sanctified by Allah, violating the very months Allah has made sacred. Their evil deeds have been made appealing to them. And Allah does not guide the disbelieving people.
1273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O believers! What is the matter with you that when you are asked to march forth in the cause of Allah, you cling firmly to ˹your˺ land? Do you prefer the life of this world over the Hereafter? The enjoyment of this worldly life is insignificant compared to that of the Hereafter.
1274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If you do not march forth, He will afflict you with a painful torment and replace you with other people. You are not harming Him in the least. And Allah is Most Capable of everything.
1275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹It does not matter˺ if you ˹believers˺ do not support him, for Allah did in fact support him when the disbelievers drove him out ˹of Mecca˺ and he was only one of two. While they both were in the cave, he reassured his companion, "Do not worry; Allah is certainly with us." So Allah sent down His serenity upon the Prophet, supported him with forces you ˹believers˺ did not see, and made the word of the disbelievers lowest, while the Word of Allah is supreme. And Allah is Almighty, All-Wise.
1276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹O believers!˺ March forth whether it is easy or difficult for you, and strive with your wealth and your lives in the cause of Allah. That is best for you, if only you knew.
1277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Had the gain been within reach and the journey shorter, they would have followed you, but the distance seemed too long for them. And they will swear by Allah, "Had we been able, we would have certainly joined you." They are ruining themselves. And Allah knows that they are surely lying.
1278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              May Allah pardon you ˹O Prophet˺! Why did you give them permission ˹to stay behind˺ before those who told the truth were distinguished from those who were lying?
1279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those who believe in Allah and the Last Day do not ask for exemption from striving with their wealth and their lives. And Allah has perfect knowledge of those who are mindful ˹of Him˺.
1280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No one would ask for exemption except those who have no faith in Allah or the Last Day, and whose hearts are in doubt, so they are torn by their doubts.
1281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had they ˹really˺ intended to march forth, they would have made preparations for it. But Allah disliked that they should go, so He let them lag behind, and it was said ˹to them˺, "Stay with those ˹helpless˺ who remain behind."
1282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Had they gone forth with you ˹believers˺, they would have been nothing but trouble for you, and would have scrambled around, seeking to spread discord in your midst. And some of you would have eagerly listened to them. And Allah has ˹perfect˺ knowledge of the wrongdoers.
1283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They had already sought to spread discord before and devised every ˹possible˺ plot against you ˹O Prophet˺, until the truth came and Allah’s Will prevailed—much to their dismay.
1284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There are some of them who say, "Exempt me and do not expose me to temptation." They have already fallen into temptation. And Hell will surely engulf the disbelievers.
1285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If a blessing befalls you ˹O Prophet˺, they grieve, but if a disaster befalls you, they say, "We took our precaution in advance," and turn away, rejoicing.
1286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, "Nothing will ever befall us except what Allah has destined for us. He is our Protector." So in Allah let the believers put their trust.
1287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, "Are you awaiting anything to befall us except one of the two best things: ˹victory or martyrdom˺? But We are awaiting Allah to afflict you with torment either from Him or at our hands. So keep waiting! We too are waiting with you."
1288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "˹Whether you˺ donate willingly or unwillingly, it will never be accepted from you, for you have been a rebellious people."
1289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And what prevented their donations from being accepted is that they have lost faith in Allah and His Messenger, they never come to prayer except half-heartedly, and they never donate except resentfully.
1290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this worldly life, then their souls will depart while they are disbelievers.
1291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They swear by Allah that they are part of you, but they are not. They only say so out of fear.
1292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If only they could find a refuge, or a cave, or any hiding-place, they would rush headlong towards it.
1293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  There are some of them who are critical of your distribution of alms ˹O Prophet˺. If they are given some of it they are pleased, but if not they are enraged.
1294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If only they had been content with what Allah and His Messenger had given them and said, "Allah is sufficient for us! Allah will grant us out of His bounty, and so will His Messenger. To Allah ˹alone˺ we turn with hope."
1295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Alms-tax is only for the poor and the needy, for those employed to administer it, for those whose hearts are attracted ˹to the faith˺, for ˹freeing˺ slaves, for those in debt, for Allah’s cause, and for ˹needy˺ travellers. ˹This is˺ an obligation from Allah. And Allah is All-Knowing, All-Wise.
1296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there are others who hurt the Prophet by saying, "He listens to anyone." Say, ˹O Prophet,˺ "He listens to what is best for you. He believes in Allah, has faith in the believers, and is a mercy for those who believe among you." Those who hurt Allah’s Messenger will suffer a painful punishment.
1297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They swear by Allah to you ˹believers˺ in order to please you, while it is the pleasure of Allah and His Messenger they should seek, if they are ˹true˺ believers.
1298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do they not know that whoever opposes Allah and His Messenger will be in the Fire of Hell forever? That is the ultimate disgrace.
1299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The hypocrites fear that a sûrah should be revealed about them, exposing what is in their hearts. Say, ˹O Prophet,˺ "Keep mocking! Allah will definitely bring to light what you fear."
1300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If you question them, they will certainly say, "We were only talking idly and joking around." Say, "Was it Allah, His revelations, and His Messenger that you ridiculed?"
1301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Make no excuses! You have lost faith after your belief. If We pardon a group of you, We will punish others for their wickedness.
1302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The hypocrites, both men and women, are all alike: they encourage what is evil, forbid what is good, and withhold ˹what is in˺ their hands. They neglected Allah, so He neglected them. Surely the hypocrites are the rebellious.
1303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah has promised the hypocrites, both men and women, and the disbelievers an everlasting stay in the Fire of Hell—it is sufficient for them. Allah has condemned them, and they will suffer a never-ending punishment.
1304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹You hypocrites are˺ like those ˹disbelievers˺ before you. They were far superior to you in might and more abundant in wealth and children. They enjoyed their share in this life. You have enjoyed your share, just as they did. And you have engaged in idle talk, just as they did. Their deeds have become void in this world and the Hereafter. And it is they who are the ˹true˺ losers.
1305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have they not received the stories of those ˹destroyed˺ before them: the people of Noah, ’ad, and Thamûd, the people of Abraham, the residents of Midian, and the overturned cities ˹of Lot˺? Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.
1306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The believers, both men and women, are guardians of one another. They encourage good and forbid evil, establish prayer and pay alms-tax, and obey Allah and His Messenger. It is they who will be shown Allah’s mercy. Surely Allah is Almighty, All-Wise.
1307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah has promised the believers, both men and women, Gardens under which rivers flow, to stay there forever, and splendid homes in the Gardens of Eternity, and—above all—the pleasure of Allah. That is ˹truly˺ the ultimate triumph.
1308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!
1309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They swear by Allah that they never said anything ˹blasphemous˺, while they did in fact utter a blasphemy, lost faith after accepting Islam, and plotted what they could not carry out. It is only through resentment that they pay Allah and His Messenger back for enriching them out of His bounty! If they repent, it will be better for them. But if they turn away, Allah will torment them with a painful punishment in this world and the Hereafter, and they will have no one on earth to protect or help them.
1310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there are some who had made a vow to Allah: "If He gives us from His bounty, we will surely spend in charity and be of the righteous."
1311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But when He gave them out of His bounty, they withheld it and turned away indifferently.
1312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So He caused hypocrisy to plague their hearts until the Day they will meet Him, for breaking their promise to Allah and for their lies.
1313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do they not know that Allah ˹fully˺ knows their ˹evil˺ thoughts and secret talks, and that Allah is the Knower of all unseen?
1314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹There are˺ those who slander ˹some of˺ the believers for donating liberally and mock others for giving only the little they can afford. Allah will throw their mockery back at them, and they will suffer a painful punishment.
1315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹It does not matter˺ whether you ˹O Prophet˺ pray for them to be forgiven or not. Even if you pray for their forgiveness seventy times, Allah will never forgive them. That is because they have lost faith in Allah and His Messenger. And Allah does not guide the rebellious people.
1316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those ˹hypocrites˺ who remained behind rejoiced for doing so in defiance of the Messenger of Allah and hated ˹the prospect of˺ striving with their wealth and their lives in the cause of Allah. They said ˹to one another˺, "Do not march forth in the heat." Say, ˹O Prophet,˺ "The Fire of Hell is far hotter!" If only they could comprehend!
1317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So let them laugh a little—they will weep much as a reward for what they have committed.
1318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If Allah returns you ˹O Prophet˺ to a group of them and they ask to go forth with you, say, "You will not ever go forth or fight an enemy along with me. You preferred to stay behind the first time, so stay with those ˹helpless˺ who remain behind."
1319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And do not ever offer ˹funeral˺ prayers for any of their dead, nor stand by their grave ˹at burial˺, for they have lost faith in Allah and His Messenger and died rebellious.
1320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And let neither their wealth nor children impress you ˹O Prophet˺. Allah only intends to torment them through these things in this world, and ˹then˺ their souls will depart while they are disbelievers.
1321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whenever a sûrah is revealed stating, "Believe in Allah and struggle along with His Messenger," the rich among them would ask to be exempt, saying, "Leave us with those who remain behind."
1322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They preferred to stay behind with the helpless, and their hearts have been sealed so they do not comprehend.
1323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the Messenger and the believers with him strived with their wealth and their lives. They will have all the best, and it is they who will be successful.
1324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah has prepared for them Gardens under which rivers flow, to stay there forever. That is the ultimate triumph.
1325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Some nomadic Arabs ˹also˺ came with excuses, seeking exemption. And those who were untrue to Allah and His Messenger remained behind ˹with no excuse˺. The unfaithful among them will be afflicted with a painful punishment.
1326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There is no blame on the weak, the sick, or those lacking the means ˹if they stay behind˺, as long as they are true to Allah and His Messenger. There is no blame on the good-doers. And Allah is All-Forgiving, Most Merciful.
1327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nor ˹is there any blame on˺ those who came to you ˹O Prophet˺ for mounts, then when you said, "I can find no mounts for you," they left with eyes overflowing with tears out of grief that they had nothing to contribute.
1328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blame is only on those who seek exemption from you although they have the means. They preferred to stay behind with the helpless, and Allah has sealed their hearts so they do not realize ˹the consequences˺.
1329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will make excuses to you ˹believers˺ when you return to them. Say, "Make no excuses, ˹for˺ we will not believe you. Allah has already informed us about your ˹true˺ state ˹of faith˺. Your ˹future˺ deeds will be observed by Allah and His Messenger as well. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do."
1330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When you return, they will swear to you by Allah so that you may leave them alone. So leave them alone—they are truly evil. Hell will be their home as a reward for what they have committed.
1331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will swear to you in order to please you. And even if you are pleased with them, Allah will never be pleased with the rebellious people.
1332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The nomadic Arabs ˹around Medina˺ are far worse in disbelief and hypocrisy, and less likely to know the laws revealed by Allah to His Messenger. And Allah is All-Knowing, All-Wise.
1333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And among the nomads are those who consider what they donate to be a loss and await your misfortune. May ill-fortune befall them! And Allah is All-Hearing, All-Knowing.
1334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    However, among the nomadic Arabs are those who believe in Allah and the Last Day, and consider what they donate as a means of coming closer to Allah and ˹receiving˺ the prayers of the Messenger. It will certainly bring them closer. Allah will admit them into His mercy. Surely Allah is All-Forgiving, Most Merciful.
1335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for the foremost—the first of the Emigrants—and those who follow them in goodness, Allah is pleased with them and they are pleased with Him. And He has prepared for them Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.
1336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Some of the nomads around you ˹believers˺ are hypocrites, as are some of the people of Medina. They have mastered hypocrisy. They are not known to you ˹O Prophet˺; they are known to Us. We will punish them twice ˹in this world˺, then they will be brought back ˹to their Lord˺ for a tremendous punishment.
1337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Some others have confessed their wrongdoing: they have mixed goodness with evil. It is right to hope that Allah will turn to them in mercy. Surely Allah is All-Forgiving, Most Merciful.
1338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Take from their wealth ˹O Prophet˺ charity to purify and bless them, and pray for them—surely your prayer is a source of comfort for them. And Allah is All-Hearing, All-Knowing.
1339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do they not know that Allah alone accepts the repentance of His servants and receives ˹their˺ charity, and that Allah alone is the Accepter of Repentance, Most Merciful?
1340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tell ˹them, O  Prophet˺, "Do as you will. Your deeds will be observed by Allah, His Messenger, and the believers. And you will be returned to the Knower of the seen and unseen, then He will inform you of what you used to do."
1341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And some others are left for Allah’s decision, either to punish them or turn to them in mercy. And Allah is All-Knowing, All-Wise.
1342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There are also those ˹hypocrites˺ who set up a mosque ˹only˺ to cause harm, promote disbelief, divide the believers, and as a base for those who had previously fought against Allah and His Messenger. They will definitely swear, "We intended nothing but good," but Allah bears witness that they are surely liars.
1343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do not ˹O Prophet˺ ever pray in it. Certainly, a mosque founded on righteousness from the first day is more worthy of your prayers. In it are men who love to be purified. And Allah loves those who purify themselves.
1344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which is better: those who laid the foundation of their building on the fear and pleasure of Allah, or those who did so on the edge of a crumbling cliff that tumbled down with them into the Fire of Hell? And Allah does not guide the wrongdoing people.
1345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The building which they erected will never cease to fuel hypocrisy in their hearts until their hearts are torn apart. And Allah is All-Knowing, All-Wise.
1346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah has indeed purchased from the believers their lives and wealth in exchange for Paradise. They fight in the cause of Allah and kill or are killed. This is a true promise binding on Him in the Torah, the Gospel, and the Quran. And whose promise is truer than Allah’s? So rejoice in the exchange you have made with Him. That is ˹truly˺ the ultimate triumph.
1347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It is the believers˺ who repent, who are devoted to worship, who praise ˹their Lord˺, who fast, who bow down and prostrate themselves, who encourage good and forbid evil, and who observe the limits set by Allah. And give good news to the believers.
1348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is not ˹proper˺ for the Prophet and the believers to seek forgiveness for the polytheists, even if they were close relatives, after it has become clear to the believers that they are bound for the Hellfire.
1349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for Abraham’s prayer for his father’s forgiveness, it was only in fulfilment of a promise he had made to him. But when it became clear to Abraham that his father was an enemy of Allah, he broke ties with him. Abraham was truly tender-hearted, forbearing.
1350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah would never consider a people deviant after He has guided them, until He makes clear to them what they must avoid. Surely Allah has ˹full˺ knowledge of everything.
1351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, to Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He gives life and causes death. And besides Allah you have no guardian or helper.
1352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah has certainly turned in mercy to the Prophet as well as the Emigrants and the Helpers who stood by him in the time of hardship, after the hearts of a group of them had almost faltered. He then accepted their repentance. Surely He is Ever Gracious and Most Merciful to them.
1353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹Allah has also turned in mercy to˺ the three who had remained behind, ˹whose guilt distressed them˺ until the earth, despite its vastness, seemed to close in on them, and their souls were torn in anguish. They knew there was no refuge from Allah except in Him. Then He turned to them in mercy so that they might repent. Surely Allah ˹alone˺ is the Accepter of Repentance, Most Merciful.
1354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O  believers! Be mindful of Allah and be with the truthful.
1355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It was not ˹proper˺ for the people of Medina and the nomadic Arabs around them to avoid marching with the Messenger of Allah or to prefer their own lives above his. That is because whenever they suffer from thirst, fatigue, or hunger in the cause of Allah; or tread on a territory, unnerving the disbelievers; or inflict any loss on an enemy—it is written to their credit as a good deed. Surely Allah never discounts the reward of the good-doers.
1356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whenever they make a donation, small or large, or cross a valley ˹in Allah’s cause˺—it is written to their credit, so that Allah may grant them the best reward for what they used to do.
1357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹However,˺ it is not necessary for the believers to march forth all at once. Only a party from each group should march forth, leaving the rest to gain religious knowledge then enlighten their people when they return to them, so that they ˹too˺ may beware ˹of evil˺.
1358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Fight the disbelievers around you and let them find firmness in you. And know that Allah is with those mindful ˹of Him˺.
1359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whenever a sûrah is revealed, some of them ask ˹mockingly˺, "Which of you has this increased in faith?" As for the believers, it has increased them in faith and they rejoice.
1360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But as for those with sickness in their hearts, it has increased them only in wickedness upon their wickedness, and they die as disbelievers.
1361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do they not see that they are tried once or twice every year? Yet they neither repent nor do they learn a lesson.
1362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whenever a sûrah is revealed, they look at one another, ˹saying,˺ "Is anyone watching you?" Then they slip away. ˹It is˺ Allah ˹Who˺ has turned their hearts away because they are a people who do not comprehend.
1363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There certainly has come to you a messenger from among yourselves. He is concerned by your suffering, anxious for your well-being, and gracious and merciful to the believers.
1364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if they turn away, then say, ˹O Prophet,˺ "Allah is sufficient for me. There is no god ˹worthy of worship˺ except Him. In Him I put my trust. And He is the Lord of the Mighty Throne."
1365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Alif-Lãm-Ra. These are the verses of the Book, rich in wisdom.
1366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is it astonishing to people that We have sent revelation to a man from among themselves, ˹instructing him,˺ "Warn humanity and give good news to the believers that they will have an honourable status with their Lord."? Yet the disbelievers said, "Indeed, this ˹man˺ is clearly a magician!"
1367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely your Lord is Allah Who created the heavens and the earth in six Days, then established Himself on the Throne, conducting every affair. None can intercede except by His permission. That is Allah—your Lord, so worship Him ˹alone˺. Will you not then be mindful?
1368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To Him is your return all together. Allah’s promise is ˹always˺ true. Indeed, He originates the creation then resurrects it so that He may justly reward those who believe and do good. But those who disbelieve will have a boiling drink and a painful punishment for their disbelief.
1369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is the One Who made the sun a radiant source and the moon a reflected light, with precisely ordained phases, so that you may know the number of years and calculation ˹of time˺. Allah did not create all this except for a purpose. He makes the signs clear for people of knowledge.
1370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely in the alternation of the day and the night, and in all that Allah has created in the heavens and the earth, there are truly signs for those mindful ˹of Him˺.
1371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, those who do not expect to meet Us, being pleased and content with this worldly life, and who are heedless of Our signs,
1372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         they will have the Fire as a home because of what they have committed.
1373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely those who believe and do good, their Lord will guide them ˹to Paradise˺ through their faith, rivers will flow under their feet in the Gardens of Bliss,
1374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               in which their prayer will be, "Glory be to You, O  Allah!" and their greeting will be, "Peace!" and their closing prayer will be, "All praise is for Allah—Lord of all worlds!"
1375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If Allah were to hasten evil for people as they wish to hasten good, they would have certainly been doomed. But We leave those who do not expect to meet Us to wander blindly in their defiance.
1376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whenever someone is touched by hardship, they cry out to Us, whether lying on their side, sitting, or standing. But when We relieve their hardship, they return to their old ways as if they had never cried to Us to remove any hardship! This is how the misdeeds of the transgressors have been made appealing to them.
1377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We surely destroyed ˹other˺ peoples before you when they did wrong, and their messengers came to them with clear proofs but they would not believe! This is how We reward the wicked people.
1378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then We made you their successors in the land to see how you would act.
1379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Our clear revelations are recited to them, those who do not expect to meet Us say ˹to the Prophet˺, "Bring us a different Quran or make some changes in it." Say ˹to them˺, "It is not for me to change it on my own. I only follow what is revealed to me. I fear, if I were to disobey my Lord, the punishment of a tremendous Day."
1380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, "Had Allah willed, I would not have recited it to you, nor would He have made it known to you. I had lived my whole life among you before this ˹revelation˺. Do you not understand?"
1381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who does more wrong than those who fabricate lies against Allah or deny His revelations? Indeed, the wicked will never succeed.
1382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They worship besides Allah others who can neither harm nor benefit them, and say, "These are our intercessors with Allah." Ask ˹them, O  Prophet˺, "Are you informing Allah of something He does not know in the heavens or the earth? Glorified and Exalted is He above what they associate ˹with Him˺!"
1383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Humanity was once nothing but a single community ˹of believers˺, but then they differed. their differences would have been settled ˹at once˺.
1384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They ask, "Why has no ˹other˺ sign been sent down to him from his Lord?" Say, ˹O Prophet,˺ "˹The knowledge of˺ the unseen is with Allah alone. So wait! I too am waiting with you."
1385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When We give people a taste of mercy after being afflicted with a hardship, they swiftly devise plots against Our revelations! Say, ˹O Prophet,˺ "Allah is swifter in devising ˹punishment˺. Surely Our messenger-angels record whatever you devise."
1386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who enables you to travel through land and sea. And it so happens that you are on ships, sailing with a favourable wind, to the passengers’ delight. Suddenly, the ships are overcome by a gale wind and those on board are overwhelmed by waves from every side, and they assume they are doomed. They cry out to Allah ˹alone˺ in sincere devotion, "If You save us from this, we will certainly be grateful."
1387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But as soon as He rescues them, they transgress in the land unjustly. O  humanity! Your transgression is only against your own souls. ˹There is only˺ brief enjoyment in this worldly life, then to Us is your return, and then We will inform you of what you used to do.
1388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The life of this world is just like rain We send down from the sky, producing a mixture of plants which humans and animals consume. Then just as the earth looks its best, perfectly beautified, and its people think they have full control over it, there comes to it Our command by night or by day, so We mow it down as if it never flourished yesterday! This is how We make the signs clear for people who reflect.
1389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Allah invites ˹all˺ to the Home of Peace and guides whoever He wills to the Straight Path.
1390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those who do good will have the finest reward Neither gloom nor disgrace will cover their faces. It is they who will be the residents of Paradise. They will be there forever.
1391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who commit evil, the reward of an evil deed is its equivalent. Humiliation will cover them—with no one to protect them from Allah—as if their faces were covered with patches of the night’s deep darkness. It is they who will be the residents of the Fire. They will be there forever.
1392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Consider˺ the Day We will gather them all together then say to those who associated others ˹with Allah in worship˺, "Stay in your places—you and your associate-gods." We will separate them from each other, and their associate-gods will say, "It was not us that you worshipped!
1393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah is sufficient as a Witness between each of us that we were totally unaware of your worship."
1394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then and there every soul will face ˹the consequences of˺ what it had done. They all will be returned to Allah—their True Master. And whatever ˹gods˺ they fabricated will fail them.
1395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ask ˹them, O  Prophet˺, "Who provides for you from heaven and earth? Who owns ˹your˺ hearing and sight? Who brings forth the living from the dead and the dead from the living? And who conducts every affair?" They will ˹surely˺ say, "Allah." Say, "Will you not then fear ˹Him˺?
1396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That is Allah—your True Lord. So what is beyond the truth except falsehood? How can you then be turned away?"
1397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And so your Lord’s decree has been proven true against the rebellious—that they will never believe.
1398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ask ˹them, O  Prophet˺, "Can any of your associate-gods originate creation and then resurrect it?" Say, "˹Only˺ Allah originates creation and then resurrects it. How can you then be deluded ˹from the truth˺?"
1399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ask ˹them, O  Prophet˺, "Can any of your associate-gods guide to the truth?" Say, "˹Only˺ Allah guides to the truth." Who then is more worthy to be followed: the One Who guides to the truth or those who cannot find the way unless guided? What is the matter with you? How do you judge?
1400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Most of them follow nothing but ˹inherited˺ assumptions. ˹And˺ surely assumptions can in no way replace the truth. Allah is indeed All-Knowing of what they do.
1401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is not ˹possible˺ for this Quran to have been produced by anyone other than Allah. In fact, it is a confirmation of what came before, and an explanation of the Scripture. It is, without a doubt, from the Lord of all worlds.
1402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do they claim, "He made it up!"? Tell them ˹O Prophet˺, "Produce one sûrah like it then, and seek help from whoever you can—other than Allah—if what you say is true!"
1403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In fact, they ˹hastily˺ rejected the Book without comprehending it and before the fulfilment of its warnings. Similarly, those before them were in denial. See then what was the end of the wrongdoers!
1404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Some of them will ˹eventually˺ believe in it; others will not. And your Lord knows best the corruptors.
1405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If they deny you, then say, "My deeds are mine and your deeds are yours. You are free of what I do and I am free of what you do!"
1406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Some of them listen to what you say, but can you make the deaf hear even though they do not understand?
1407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And some of them look at you, but can you guide the blind even though they cannot see?
1408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, Allah does not wrong people in the least, but it is people who wrong themselves.
1409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On the Day He will gather them, it will be as if they had not stayed ˹in the world˺ except for an hour of a day, ˹as though they were only˺ getting to know one another. Lost indeed will be those who denied the meeting with Allah, and were not ˹rightly˺ guided!
1410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, to Us is their return and Allah is a Witness over what they do.
1411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And for every community there is a messenger. After their messenger has come, judgment is passed on them in all fairness, and they are not wronged.
1412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They ask ˹the believers˺, "When will this threat come to pass if what you say is true?"
1413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "I have no power to benefit or protect myself, except by the Will of Allah." For each community there is an appointed term. When their time arrives, they cannot delay it for a moment, nor could they advance it.
1414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Tell them ˹O Prophet˺, "Imagine if His torment were to overcome you by night or day—do the wicked realize what they are ˹really˺ asking Him to hasten?
1415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Will you believe in it only after it has overtaken you? Now? But you always wanted to hasten it!"
1416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then the wrongdoers will be told, "Taste the torment of eternity! Are you not rewarded except for what you used to commit?"
1417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They ask you ˹O Prophet˺, "Is this true?" Say, "Yes, by my Lord! Most certainly it is true! And you will have no escape."
1418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If every wrongdoer were to possess everything in the world, they would surely ransom themselves with it. They will hide ˹their˺ remorse when they see the torment. And they will be judged in all fairness, and none will be wronged.
1419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely to Allah belongs whatever is in the heavens and the earth. Surely Allah’s promise is ˹always˺ true, but most of them do not know.
1420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He ˹is the One Who˺ gives life and causes death, and to Him you will ˹all˺ be returned.
1421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O humanity! Indeed, there has come to you a warning from your Lord, a cure for what is in the hearts, a guide, and a mercy for the believers.
1422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "In Allah’s grace and mercy let them rejoice. That is far better than whatever ˹wealth˺ they amass."
1423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ask ˹the pagans, O  Prophet˺, "Have you seen that which Allah has sent down for you as a provision, of which you have made some lawful and some unlawful?" Say, "Has Allah given you authorization, or are you fabricating lies against Allah?"
1424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What do those who fabricate lies against Allah expect on Judgment Day? Surely Allah is ever Bountiful to humanity, but most of them are ungrateful.
1425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There is no activity you may be engaged in ˹O Prophet˺ or portion of the Quran you may be reciting, nor any deed you ˹all˺ may be doing except that We are a Witness over you while doing it. Not ˹even˺ an atom’s weight is hidden from your Lord on earth or in heaven; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record.
1426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There will certainly be no fear for the close servants of Allah, nor will they grieve.
1427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹They are˺ those who are faithful and are mindful ˹of Him˺.
1428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For them is good news in this worldly life and the Hereafter. There is no change in the promise of Allah. That is ˹truly˺ the ultimate triumph.
1429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do not let their words grieve you ˹O Prophet˺. Surely all honour and power belongs to Allah. He is the All-Hearing, All-Knowing.
1430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Certainly to Allah ˹alone˺ belong all those in the heavens and all those on the earth. And what do those who associate others with Allah really follow? They follow nothing but assumptions and do nothing but lie.
1431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He is the One Who has made the night for you to rest in and the day bright. Surely in this are signs for people who listen.
1432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They Glory be to Him! He is the Self-Sufficient. To Him belongs whatever is in the heavens and whatever is on the earth. You have no proof of this! Do you say about Allah what you do not know?
1433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "Indeed, those who fabricate lies against Allah will never succeed."
1434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹It is only˺ a brief enjoyment in this world, then to Us is their return, then We will make them taste the severe punishment for their disbelief.
1435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Relate to them ˹O Prophet˺ the story of Noah when he said to his people, "O my People! If my presence and my reminders to you of Allah’s signs are unbearable to you, then ˹know that˺ I have put my trust in Allah. So devise a plot along with your associate-gods—and you do not have to be secretive about your plot—then carry it out against me without delay!
1436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And if you turn away, ˹remember˺ I have never demanded a reward from you ˹for delivering the message˺. My reward is only from Allah. And I have been commanded to be one of those who submit ˹to Allah˺."
1437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But they still rejected him, so We saved him and those with him in the Ark and made them successors, and drowned those who rejected Our signs. See then what was the end of those who had been warned!
1438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then after him We sent ˹other˺ messengers to their ˹own˺ people and they came to them with clear proofs. But they would not believe in what they had rejected before. This is how We seal the hearts of the transgressors.
1439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then after these ˹messengers˺ We sent Moses and Aaron to Pharaoh and his chiefs with Our signs. But they behaved arrogantly and were a wicked people.
1440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When the truth came to them from Us, they said, "This is certainly pure magic!"
1441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moses responded, "Is this what you say about the truth when it has come to you? Is this magic? Magicians will never succeed."
1442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They argued, "Have you come to turn us away from the faith of our forefathers so that the two of you may become supreme in the land? We will never believe in you!"
1443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pharaoh demanded, "Bring me every skilled magician."
1444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When the magicians came, Moses said to them, "Cast whatever you wish to cast!"
1445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When they did, Moses said, "What you have produced is mere magic, Allah will surely make it useless, for Allah certainly does not set right the work of the corruptors.
1446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Allah establishes the truth by His Words—even to the dismay of the wicked."
1447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But no one believed in Moses except a few youths of his people, while fearing that Pharaoh and their own chiefs might persecute them. And certainly Pharaoh was a tyrant in the land, and he was truly a transgressor.
1448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses said, "O my people! If you do believe in Allah and submit ˹to His Will˺, then put your trust in Him."
1449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They replied, "In Allah we trust. Our Lord! Do not subject us to the persecution of the oppressive people,
1450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and deliver us by Your mercy from the disbelieving people."
1451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We revealed to Moses and his brother, "Appoint houses for your people in Egypt. Turn these houses into places of worship, establish prayer, and give good news to the believers!"
1452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses prayed, "Our Lord! You have granted Pharaoh and his chiefs luxuries and riches in this worldly life, ˹which they abused˺ to lead people astray from Your Way! Our Lord, destroy their riches and harden their hearts so that they will not believe until they see the painful punishment."
1453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah responded ˹to Moses and Aaron˺, "Your prayer is answered! So be steadfast and do not follow the way of those who do not know."
1454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We brought the Children of Israel across the sea. Then Pharaoh and his soldiers pursued them unjustly and oppressively. But as Pharaoh was drowning, he cried out, "I believe that there is no god except that in whom the Children of Israel believe, and I am ˹now˺ one of those who submit."
1455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹He was told,˺ "Now ˹you believe˺? But you always disobeyed and were one of the corruptors.
1456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Today We will preserve your corpse so that you may become an example for those who come after you. And surely most people are heedless of Our examples!"
1457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We settled the Children of Israel in a blessed land, Surely your Lord will judge between them on the Day of Judgment regarding their differences.
1458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you ˹O Prophet˺ are in doubt about ˹these stories˺ that We have revealed to you, then ask those who read the Scripture before you. The truth has certainly come to you from your Lord, so do not be one of those who doubt,
1459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and do not be one of those who deny Allah’s signs or you will be one of the losers.
1460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, those against whom Allah’s decree ˹of torment˺ is justified will not believe—
1461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 even if every sign were to come to them—until they see the painful punishment.
1462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If only there had been a society which believed ˹before seeing the torment˺ and, therefore, benefited from its belief, like the people of Jonah.
1463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had your Lord so willed ˹O Prophet˺, all ˹people˺ on earth would have certainly believed, every single one of them! Would you then force people to become believers?
1464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is not for any soul to believe except by Allah’s leave, and He will bring His wrath upon those who are unmindful.
1465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Consider all that is in the heavens and the earth!" Yet neither signs nor warners are of any benefit to those who refuse to believe.
1466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Are they waiting for ˹anything˺ except the same torments that befell those before them? Say, "Keep waiting then! I too am waiting with you."
1467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then We saved Our messengers and those who believed. For it is Our duty to save the believers.
1468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "O humanity! If you are in doubt of my faith, then ˹know that˺ I do not worship those ˹idols˺ you worship instead of Allah. But I worship Allah, Who has the power to cause your death. And I have been commanded, ‘Be one of the believers,’
1469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and, ‘Be steadfast in faith in all uprightness, and do not be one of the polytheists,’
1470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and ‘Do not invoke, instead of Allah, what can neither benefit nor harm you—for if you do, then you will certainly be one of the wrongdoers,’
1471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and ‘If Allah touches you with harm, none can undo it except Him. And if He intends good for you, none can withhold His bounty. He grants it to whoever He wills of His servants. And He is the All-Forgiving, Most Merciful.’"
1472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "O humanity! The truth has surely come to you from your Lord. So whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. And I am not a keeper over you."
1473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And follow what is revealed to you, and be patient until Allah passes His judgment. For He is the Best of Judges.
1474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Alif-Lãm-Ra. ˹This is˺ a Book whose verses are well perfected and then fully explained. ˹It is˺ from the One ˹Who is˺ All-Wise, All-Aware.
1475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Tell them, O  Prophet,˺ "Worship none but Allah. Surely I am a warner and deliverer of good news to you from Him.
1476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And seek your Lord’s forgiveness and turn to Him in repentance. He will grant you a good provision for an appointed term and graciously reward the doers of good. But if you turn away, then I truly fear for you the torment of a formidable Day.
1477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To Allah is your return. And He is Most Capable of everything."
1478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, they enfold ˹what is in˺ their hearts, ˹trying˺ to hide it from Him! But even when they cover themselves with their clothes, He knows what they conceal and what they reveal. Surely He knows best what is ˹hidden˺ in the heart.
1479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There is no moving creature on earth whose provision is not guaranteed by Allah. And He knows where it lives and where it is laid to rest. All is ˹written˺ in a perfect Record.
1480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is the One Who created the heavens and the earth in six Days—and His Throne was upon the waters—in order to test which of you is best in deeds. And if you ˹O Prophet˺ say, "Surely you will ˹all˺ be raised up after death," the disbelievers will certainly say, "That is nothing but pure magic!"
1481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if We delay their punishment until an appointed time, they will definitely say, "What is holding it back?" Indeed, on the Day it overtakes them, it will not be averted from them, and they will be overwhelmed by what they used to ridicule.
1482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If We give people a taste of Our mercy then take it away from them, they become utterly desperate, ungrateful.
1483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if We give them a taste of prosperity after being touched with adversity, they say, "My ills are gone," and become totally prideful and boastful,
1484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       except those who patiently endure and do good. It is they who will have forgiveness and a mighty reward.
1485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Perhaps you ˹O Prophet˺ may wish to give up some of what is revealed to you and may be distressed by it because they say, "If only a treasure had been sent down to him, or an angel had come with him!" You are only a warner, and Allah is the Trustee of All Affairs.
1486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do they say, "He has fabricated this ˹Quran˺!"? Say, ˹O Prophet,˺ "Produce ten fabricated sûrahs like it and seek help from whoever you can—other than Allah—if what you say is true!"
1487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if your helpers fail you, then know that it has been revealed with the knowledge of Allah, and that there is no god ˹worthy of worship˺ except Him! Will you ˹not˺ then submit ˹to Allah˺?
1488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whoever desires ˹only˺ this worldly life and its luxuries, We will pay them in full for their deeds in this life—nothing will be left out.
1489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is they who will have nothing in the Hereafter except the Fire. Their efforts in this life will be fruitless and their deeds will be useless.
1490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Can these people be compared to˺ those ˹believers˺ who stand on clear proof from their Lord, backed by ˹the Quran as˺ a witness from Him, and preceded by the Book of Moses ˹which was revealed˺ as a guide and mercy? It is those ˹believers˺ who have faith in it. But whoever from the ˹disbelieving˺ groups rejects it, the Fire will be their destiny. So do not be in doubt of it. It is certainly the truth from your Lord, but most people do not believe.
1491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who does more wrong than those who fabricate lies against Allah? They will be brought before their Lord, and the witnesses will say, "These are the ones who lied against their Lord." Surely Allah’s condemnation is upon the wrongdoers,
1492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who hinder ˹others˺ from Allah’s Path, striving to make it ˹appear˺ crooked, and disbelieve in the Hereafter.
1493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will never frustrate Allah on earth, and they will have no protector besides Allah. Their punishment will be multiplied, for they failed to hear or see ˹the truth˺.
1494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is they who have ruined themselves, and whatever ˹gods˺ they fabricated will fail them.
1495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Without a doubt, they will be the worst losers in the Hereafter.
1496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely those who believe, do good, and humble themselves before their Lord will be the residents of Paradise. They will be there forever.
1497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The example of these two parties is that of the blind and the deaf, compared to the seeing and the hearing. Can the two be equal? Will you not then be mindful?
1498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely We sent Noah to his people. ˹He said,˺ "Indeed, I am sent to you with a clear warning
1499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    that you should worship none but Allah. I truly fear for you the torment of a painful Day."
1500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The disbelieving chiefs of his people said, "We see you only as a human being like ourselves, and we see that no one follows you except the lowliest among us, who do so ˹hastily˺ without thinking. We do not see anything that makes ˹all of˺ you any better than us. In fact, we think you are liars."
1501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He said, "O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Himself, which you fail to see. Should we ˹then˺ force it on you against your will?
1502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O  my people! I do not ask you for a payment for this ˹message˺. My reward is only from Allah. And I will never dismiss the believers, for they will surely meet their Lord. But I can see that you are a people acting ignorantly.
1503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O  my people! Who would protect me from Allah if I were to dismiss them? Will you not then be mindful?
1504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I do not say to you that I possess Allah’s treasuries or know the unseen, nor do I claim to be an angel, nor do I say that Allah will never grant goodness to those you look down upon. Allah knows best what is ˹hidden˺ within them. ˹If I did,˺ then I would truly be one of the wrongdoers."
1505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They protested, "O Noah! You have argued with us far too much, so bring upon us what you threaten us with, if what you say is true."
1506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He responded, "It is Allah Who can bring it upon you if He wills, and then you will have no escape!
1507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My advice will not benefit you—no matter how hard I try—if Allah wills ˹for˺ you to stray. He is your Lord, and to Him you will ˹all˺ be returned."
1508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they say, "He has fabricated this ˹Quran˺!"? Say, ˹O Prophet,˺ "If I have done so, then I bear the burden of that sin! But I am free from your sinful accusation."
1509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it was revealed to Noah, "None of your people will believe except those who already have. So do not be distressed by what they have been doing.
1510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And build the Ark under Our ˹watchful˺ Eyes and directions, and do not plead with Me for those who have done wrong, for they will surely be drowned."
1511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So he began to build the Ark, and whenever some of the chiefs of his people passed by, they mocked him. He said, "If you laugh at us, we will ˹soon˺ laugh at you similarly.
1512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You will soon come to know who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺."
1513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Our command came and the oven burst ˹with water˺, We said ˹to Noah˺, "Take into the Ark a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed—and those who believe." But none believed with him except for a few.
1514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, "Board it! In the Name of Allah it will sail and cast anchor. Surely my Lord is All-Forgiving, Most Merciful."
1515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹so˺ the Ark sailed with them through waves like mountains. Noah called out to his son, who stood apart, "O my dear son! Come aboard with us and do not be with the disbelievers."
1516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He replied, "I will take refuge on a mountain, which will protect me from the water." Noah cried, "Today no one is protected from Allah’s decree except those to whom He shows mercy!" And the waves came between them, and his son was among the drowned.
1517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it was said, "O earth! Swallow up your water. And O  sky! Withhold ˹your rain˺." The floodwater receded and the decree was carried out. The Ark rested on Mount Judi, and it was said, "Away with the wrongdoing people!"
1518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Noah called out to his Lord, saying, "My Lord! Certainly my son is ˹also˺ of my family, Your promise is surely true, and You are the most just of all judges!"
1519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah replied, "O Noah! He is certainly not of your family—he was entirely of unrighteous conduct. So do not ask Me about what you have no knowledge of! I warn you so you do not fall into ignorance."
1520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Noah pleaded, "My Lord, I seek refuge in You from asking You about what I have no knowledge of, and unless You forgive me and have mercy on me, I will be one of the losers."
1521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It was said, "O Noah! Disembark with Our peace and blessings on you and some of the descendants of those with you. As for the others, We will allow them ˹a brief˺ enjoyment, then they will be touched with a painful punishment from Us."
1522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is one of the stories of the unseen, which we reveal to you ˹O Prophet˺. Neither you nor your people knew it before this. So be patient! Surely the ultimate outcome belongs ˹only˺ to the righteous.
1523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And to the people of ’ad We sent their brother Hûd. He said, "O my people! Worship Allah. You have no god other than Him. You do nothing but fabricate lies ˹against Allah˺.
1524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O  my people! I do not ask you for any reward for this ˹message˺. My reward is only from the One Who created me. Will you not then understand?
1525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And O  my people! Seek your Lord’s forgiveness and turn to Him in repentance. He will shower you with rain in abundance, and add strength to your strength. So do not turn away, persisting in wickedness."
1526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They argued, "O Hûd! You have not given us any clear proof, and we will never abandon our gods upon your word, nor will we believe in you.
1527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All we can say is that some of our gods have possessed you with evil." He said, "I call Allah to witness, and you too bear witness, that I ˹totally˺ reject whatever you associate
1528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        with Him ˹in worship˺. So let all of you plot against me without delay!
1529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I have put my trust in Allah—my Lord and your Lord. There is no living creature that is not completely under His control.
1530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if you turn away, I have already delivered to you what I have been sent with. My Lord will replace you with others. You are not harming Him in the least. Indeed, my Lord is a ˹vigilant˺ Keeper over all things."
1531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Our command came, We rescued Hûd and those who believed with him by a mercy from Us, saving them from a harsh torment.
1532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That was ’ad. They denied the signs of their Lord, disobeyed His messengers, and followed the command of every stubborn tyrant.
1533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They were followed by a curse in this world, as they will be on the Day of Judgment. Surely ’ad denied their Lord. So away with ’ad, the people of Hûd.
1534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And to the people of Thamûd We sent their brother salih. He said, "O my people! Worship Allah. You have no god other than Him. He ˹is the One Who˺ produced you from the earth and settled you on it. So seek His forgiveness and turn to Him in repentance. Surely my Lord is Ever Near, All-Responsive ˹to prayers˺."
1535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They argued, "O salih! We truly had high hopes in you before this. How dare you forbid us to worship what our forefathers had worshipped? We are certainly in alarming doubt about what you are inviting us to."
1536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He responded, "O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a mercy from Him. Who could help me against Allah if I were to disobey Him? You would only contribute to my doom.
1537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And O  my people! This she-camel of Allah is a sign for you. So leave her to graze ˹freely˺ on Allah’s earth and do her no harm, or a swift punishment will overtake you!"
1538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But they killed her, so he warned ˹them˺, "You have ˹only˺ three ˹more˺ days to enjoy life in your homes—this is an unfailing promise!"
1539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When Our command came, We saved salih and those who believed with him by a mercy from Us and spared them the disgrace of that Day. Surely your Lord ˹alone˺ is the All-Powerful, Almighty.
1540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,
1541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        as if they had never lived there. Surely Thamûd denied their Lord, so away with Thamûd!
1542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And surely Our messenger-angels came to Abraham with good news ˹of a son˺. They greeted ˹him with˺, "Peace!" And he replied, "Peace ˹be upon you˺!" Then it was not long before he brought ˹them˺ a ˹fat,˺ roasted calf.
1543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when he saw that their hands did not reach for the food, he became suspicious and fearful of them. They reassured ˹him˺, "Do not be afraid! We are ˹angels˺ sent ˹only˺ against the people of Lot."
1544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And his wife was standing by, so she laughed, then We gave her good news of ˹the birth of˺ Isaac, and, after him, Jacob.
1545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         She wondered, "Oh, my! How can I have a child in this old age, and my husband here is an old man? This is truly an astonishing thing!"
1546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They responded, "Are you astonished by Allah’s decree? May Allah’s mercy and blessings be upon you, O  people of this house. Indeed, He is Praiseworthy, All-Glorious."
1547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then after the fear had left Abraham, and the good news had reached him, he began to plead with Us for the people of Lot.
1548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Truly, Abraham was forbearing, tender-hearted, and ever turning ˹to his Lord˺.
1549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹The angels said,˺ "O Abraham! Plead no more! Your Lord’s decree has already come, and they will certainly be afflicted with a punishment that cannot be averted!"
1550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When Our messenger-angels came to Lot, he was distressed and worried by their arrival. He said, "This is a terrible day."
1551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹the men of˺ his people—who were used to shameful deeds—came to him rushing. He pleaded, "O my people! Here are my daughters ˹for marriage˺—they are pure for you. So fear Allah, and do not humiliate me by disrespecting my guests. Is there not ˹even˺ a single right-minded man among you?"
1552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They argued, "You certainly know that we have no need for your daughters. You already know what we desire!"
1553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He responded, "If only I had the strength ˹to resist you˺ or could rely on a strong supporter."
1554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The angels said, "O Lot! We are the messengers of your Lord. They will never reach you. So travel with your family in the dark of night, and do not let any of you look back, except your wife. She will certainly suffer the fate of the others. Their appointed time is the morning. Is the morning not near?"
1555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When Our command came, We turned the cities upside down and rained down on them clustered stones of baked clay,
1556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     marked by your Lord ˹O Prophet˺. And these stones are not far from the ˹pagan˺ wrongdoers!
1557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And to the people of Midian We sent their brother Shu’aib. He said, "O my people! Worship Allah. You have no god other than Him. And do not give short measure and weight. I do see you in prosperity now, but I truly fear for you the torment of an overwhelming Day.
1558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O  my people! Give full measure and weigh with justice. Do not defraud people of their property, nor go about spreading corruption in the land.
1559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What is left ˹as a lawful gain˺ by Allah is far better for you if you are ˹truly˺ believers. And I am not a keeper over you."
1560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They asked ˹sarcastically˺, "O Shu’aib! Does your prayer command you that we should abandon what our forefathers worshipped or give up managing our wealth as we please? Indeed, you are such a tolerant, sensible man!"
1561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He said, "O my people! Consider if I stand on a clear proof from my Lord and He has blessed me with a good provision from Him. I do not want to do what I am forbidding you from. I only intend reform to the best of my ability. My success comes only through Allah. In Him I trust and to Him I turn.
1562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O  my people! Do not let your opposition to me lead you to a fate similar to that of the people of Noah, or Hûd, or salih. And the people of Lot are not far from you.
1563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So seek your Lord’s forgiveness and turn to Him in repentance. Surely my Lord is Most Merciful, All-Loving."
1564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They threatened, "O Shu’aib! We do not comprehend much of what you say, and surely we see you powerless among us. Were it not for your clan, we would have certainly stoned you, for you are nothing to us."
1565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He said, "O my people! Do you have more regard for my clan than for Allah, turning your back on Him entirely? Surely my Lord is Fully Aware of what you do.
1566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O  my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know who will be visited by a humiliating torment and is a liar! And watch! I too am watching with you!"
1567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When Our command came, We saved Shu’aib and those who believed with him by a mercy from Us. And the ˹mighty˺ blast overtook the wrongdoers, so they fell lifeless in their homes,
1568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   as if they had never lived there. So away with Midian as it was with Thamûd!
1569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We sent Moses with Our signs and compelling proof
1570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                to Pharaoh and his chiefs, but they followed the command of Pharaoh, and Pharaoh’s command was not well guided.
1571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He will be before his people on the Day of Judgment and will lead them into the Fire. What an evil place to be led into!
1572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They were followed by a curse in this ˹life˺ and ˹will receive another˺ on the Day of Judgment. What an evil gift to receive!
1573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are accounts, We relate to you ˹O Prophet˺, of the ˹destroyed˺ cities. Some are still standing ˹barren˺, while others have been mowed down.
1574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We did not wrong them, rather they wronged themselves. The gods they invoked beside Allah were of no help at all when the command of your Lord came, and only contributed to their ruin.
1575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Such is the ˹crushing˺ grip of your Lord when He seizes the societies entrenched in wrongdoing. Indeed, His grip is ˹terribly˺ painful and severe.
1576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely in this is a sign for those who fear the torment of the Hereafter. That is a Day for which humanity will be gathered and a Day ˹that will be˺ witnessed ˹by all˺.
1577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We only delay it for a fixed term.
1578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When that Day arrives, no one will dare speak except with His permission. Some of them will be miserable, others joyful.
1579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those bound for misery, they will be in the Fire, where they will be sighing and gasping,
1580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   staying there forever, as long as the heavens and the earth will endure, except what your Lord wills. Surely your Lord does what He intends.
1581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And as for those destined to joy, they will be in Paradise, staying there forever, as long as the heavens and the earth will endure, except what your Lord wills—a ˹generous˺ giving, without end.
1582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So do not be in doubt ˹O Prophet˺ about what those ˹pagans˺ worship. They worship nothing except what their forefathers worshipped before ˹them˺. And We will certainly give them their share ˹of punishment˺ in full, without any reduction.
1583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.
1584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And surely your Lord will fully pay all for their deeds. He is certainly All-Aware of what they do.
1585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So be steadfast as you are commanded ˹O Prophet˺, along with those who turn ˹in submission to Allah˺ with you. And do not transgress. Surely He is All-Seeing of what you ˹believers˺ do.
1586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And do not be inclined to the wrongdoers or you will be touched by the Fire. For then you would have no protectors other than Allah, nor would you be helped.
1587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Establish prayer ˹O Prophet˺ at both ends of the day and in the early part of the night. Surely good deeds wipe out evil deeds. That is a reminder for the mindful.
1588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And be patient! Certainly Allah does not discount the reward of the good-doers.
1589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If only there had been among the ˹destroyed˺ peoples before you, ˹O believers,˺ virtuous individuals who forbade corruption in the land—other than the few We had saved ˹from the torment˺. But the wrongdoers ˹only˺ pursued their ˹worldly˺ pleasures, becoming wicked.
1590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And your Lord ˹O Prophet˺ would never destroy a society unjustly while its people were acting rightly.
1591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Had your Lord so willed, He would have certainly made humanity one single community ˹of believers˺, but they will always ˹choose to˺ differ—
1592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               except those shown mercy by your Lord—and so He created them ˹to choose freely˺. And so the Word of your Lord will be fulfilled: "I will surely fill up Hell with jinn and humans all together."
1593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And We relate to you ˹O Prophet˺ the stories of the messengers to reassure your heart. And there has come to you in this ˹sûrah˺ the truth, a warning ˹to the disbelievers˺, and a reminder to the believers.
1594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say to those who disbelieve, "Persist in your ways; we will certainly persist in ours.
1595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And wait! Surely we ˹too˺ are waiting."
1596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To Allah ˹alone˺ belongs the knowledge of what is hidden in the heavens and the earth. And to Him all matters are returned. So worship Him and put your trust in Him. And your Lord is never unaware of what you do.
1597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Alif-Lãm-Ra. These are the verses of the clear Book.
1598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, We have sent it down as an Arabic Quran
1599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We relate to you ˹O Prophet˺ the best of stories through Our revelation of this Quran, though before this you were totally unaware ˹of them˺.
1600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when Joseph said to his father, "O my dear father! Indeed I dreamt of eleven stars, and the sun, and the moon—I saw them prostrating to me!"
1601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He replied, "O my dear son! Do not relate your vision to your brothers, or they will devise a plot against you. Surely Satan is a sworn enemy to humankind.
1602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And so will your Lord choose you ˹O Joseph˺, and teach you the interpretation of dreams, and perfect His favour upon you and the descendants of Jacob—˹just˺ as He once perfected it upon your forefathers, Abraham and Isaac. Surely your Lord is All-Knowing, All-Wise."
1603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, in the story of Joseph and his brothers there are lessons for all who ask.
1604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Remember˺ when they said ˹to one another˺, "Surely Joseph and his brother ˹Benjamin˺ are more beloved to our father than we, even though we are a group of so many. Indeed, our father is clearly mistaken.
1605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Kill Joseph or cast him out to some ˹distant˺ land so that our father’s attention will be only ours, then after that you may ˹repent and˺ become righteous people!"
1606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   One of them said, "Do not kill Joseph. But if you must do something, throw him into the bottom of a well so perhaps he may be picked up by some travellers."
1607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They said, "O our father! Why do you not trust us with Joseph, although we truly wish him well?
1608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Send him out with us tomorrow so that he may enjoy himself and play. And we will really watch over him."
1609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He responded, "It would truly sadden me if you took him away with you, and I fear that a wolf may devour him while you are negligent of him."
1610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They said, "If a wolf were to devour him, despite our strong group, then we would certainly be losers!"
1611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And so, when they took him away and decided to throw him into the bottom of the well, We inspired him: "˹One day˺ you will remind them of this deed of theirs while they are unaware ˹of who you are˺."
1612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then they returned to their father in the evening, weeping.
1613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They cried, "Our father! We went racing and left Joseph with our belongings, and a wolf devoured him! But you will not believe us, no matter how truthful we are."
1614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they brought his shirt, stained with false blood. It is Allah’s help that I seek to bear your claims."
1615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there came some travellers, and they sent their water-boy who let down his bucket into the well. He cried out, "Oh, what a great find! Here is a boy!" And they took him secretly ˹to be sold˺ as merchandise, but Allah is All-Knowing of what they did.
1616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They ˹later˺ sold him for a cheap price, just a few silver coins—only wanting to get rid of him.
1617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The man from Egypt who bought him said to his wife, "Take good care of him, perhaps he may be useful to us or we may adopt him as a son." This is how We established Joseph in the land, so that We might teach him the interpretation of dreams. Allah’s Will always prevails, but most people do not know.
1618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when he reached maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.
1619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the lady, in whose house he lived, tried to seduce him. She locked the doors ˹firmly˺ and said, "Come to me!" He replied, "Allah is my refuge! It is ˹not right to betray˺ my master, who has taken good care of me. Indeed, the wrongdoers never succeed."
1620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            She advanced towards him, and he would have done likewise, had he not seen a sign from his Lord. This is how We kept evil and indecency away from him, for he was truly one of Our chosen servants.
1621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They raced for the door and she tore his shirt from the back, only to find her husband at the door. She cried, "What is the penalty for someone who tried to violate your wife, except imprisonment or a painful punishment?"
1622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Joseph responded, "It was she who tried to seduce me." And a witness from her own family testified: "If his shirt is torn from the front, then she has told the truth and he is a liar.
1623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if it is torn from the back, then she has lied and he is truthful."
1624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So when her husband saw that Joseph’s shirt was torn from the back, he said ˹to her˺, "This must be ˹an example˺ of the cunning of you ˹women˺! Indeed, your cunning is so shrewd!
1625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O  Joseph! Forget about this. And you ˹O wife˺! Seek forgiveness for your sin. It certainly has been your fault."
1626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Some women of the city gossiped, "The Chief Minister’s wife is trying to seduce her slave-boy. Love for him has plagued her heart. Indeed, we see that she is clearly mistaken."
1627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When she heard about their gossip, and exclaimed, "Good God! This cannot be human; this must be a noble angel!"
1628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               She said, "This is the one for whose love you criticized me! I did try to seduce him but he ˹firmly˺ refused. And if he does not do what I order him to, he will certainly be imprisoned and ˹fully˺ disgraced."
1629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joseph prayed, "My Lord! I would rather be in jail than do what they invite me to. And if You do not turn their cunning away from me, I might yield to them and fall into ignorance."
1630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So his Lord responded to him, turning their cunning away from him. Surely He is the All-Hearing, All-Knowing.
1631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And so it occurred to those in charge, despite seeing all the proofs ˹of his innocence˺, that he should be imprisoned for a while.
1632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And two other servants went to jail with Joseph. One of them said, "I dreamt I was pressing wine." The other said, "I dreamt I was carrying ˹some˺ bread on my head, from which birds were eating." ˹Then both said,˺ "Tell us their interpretation, for we surely see you as one of the good-doers."
1633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joseph replied, "I can even tell you what kind of meal you will be served before you receive it. This ˹knowledge˺ is from what my Lord has taught me. I have shunned the faith of a people who disbelieve in Allah and deny the Hereafter.
1634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I follow the faith of my fathers: Abraham, Isaac, and Jacob. It is not ˹right˺ for us to associate anything with Allah ˹in worship˺. This is part of Allah’s grace upon us and humanity, but most people are not grateful.
1635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O  my fellow-prisoners! Which is far better: many different lords or Allah—the One, the Supreme?
1636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whatever ˹idols˺ you worship instead of Him are mere names which you and your forefathers have made up—a practice Allah has never authorized. It is only Allah Who decides. He has commanded that you worship none but Him. That is the upright faith, but most people do not know.
1637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     "O my fellow-prisoners! ˹The first˺ one of you will serve wine to his master, and the other will be crucified and the birds will eat from his head. The matter about which you inquired has been decided."
1638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then he said to the one he knew would survive, "Mention me in the presence of your master." But Satan made him forget to mention Joseph to his master, so he remained in prison for several years.
1639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹one day˺ the King said, "I dreamt of seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry. O  chiefs! Tell me the meaning of my dream if you can interpret dreams."
1640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They replied, "These are confused visions and we do not know the interpretation of such dreams."
1641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Finally,˺ the surviving ex-prisoner remembered ˹Joseph˺ after a long time and said, "I will tell you its interpretation, so send me forth ˹to Joseph˺."
1642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹He said,˺ "Joseph, O  man of truth! Interpret for us ˹the dream of˺ seven fat cows eaten up by seven skinny ones; and seven green ears of grain and ˹seven˺ others dry, so that I may return to the people and let them know."
1643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Joseph replied, "You will plant ˹grain˺ for seven consecutive years, leaving in the ear whatever you will harvest, except for the little you will eat.
1644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then after that will come seven years of great hardship which will consume whatever you have saved, except the little you will store ˹for seed˺.
1645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then after that will come a year in which people will receive abundant rain and they will press ˹oil and wine˺."
1646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The King ˹then˺ said, "Bring him to me." When the messenger came to him, Joseph said, "Go back to your master and ask him about the case of the women who cut their hands. Surely my Lord has ˹full˺ knowledge of their cunning."
1647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The King asked ˹the women˺, "What did you get when you tried to seduce Joseph?" They replied, "Allah forbid! We know nothing indecent about him." Then the Chief Minister’s wife admitted, "Now the truth has come to light. It was I who tried to seduce him, and he is surely truthful.
1648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     From this, Joseph should know that I did not speak dishonestly about him in his absence, for Allah certainly does not guide the scheming of the dishonest.
1649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I do not seek to free myself from blame, for indeed the soul is ever inclined to evil, except those shown mercy by my Lord. Surely my Lord is All-Forgiving, Most Merciful."
1650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The King said, "Bring him to me. I will employ him exclusively in my service." And when Joseph spoke to him, the King said, "Today you are highly esteemed and fully trusted by us."
1651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Joseph proposed, "Put me in charge of the store-houses of the land, for I am truly reliable and adept."
1652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is how We established Joseph in the land to settle wherever he pleased. We shower Our mercy on whoever We will, and We never discount the reward of the good-doers.
1653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the reward of the Hereafter is far better for those who are faithful and are mindful ˹of Allah˺.
1654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joseph’s brothers came and entered his presence. He recognized them but they were unaware of who he really was.
1655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When he had provided them with their supplies, he demanded, "Bring me your brother on your father’s side. Do you not see that I give full measure and I am the best of hosts?
1656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if you do not bring him to me ˹next time˺, I will have no grain for you, nor will you ever come close to me again."
1657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They promised, "We will try to convince his father to let him come. We will certainly do ˹our best˺."
1658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Joseph ordered his servants to put his brothers’ money back into their saddlebags so that they would find it when they returned to their family and perhaps they would come back.
1659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When Joseph’s brothers returned to their father, they pleaded, "O our father! We have been denied ˹further˺ supplies. So send our brother with us so that we may receive our measure, and we will definitely watch over him."
1660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He responded, "Should I trust you with him as I once trusted you with his brother ˹Joseph˺? But ˹only˺ Allah is the best Protector, and He is the Most Merciful of the merciful."
1661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When they opened their bags, they discovered that their money had been returned to them. They argued, "O our father! What more can we ask for? Here is our money, fully returned to us. Now we can buy more food for our family. We will watch over our brother, and obtain an extra camel-load of grain. That load can be easily secured."
1662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Jacob insisted, "I will not send him with you until you give me a solemn oath by Allah that you will certainly bring him back to me, unless you are totally overpowered." Then after they had given him their oaths, he concluded, "Allah is a Witness to what we have said."
1663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He then instructed ˹them˺, "O my sons! Do not enter ˹the city˺ all through one gate, but through separate gates. I cannot help you against ˹what is destined by˺ Allah in the least. It is only Allah Who decides. In Him I put my trust. And in Him let the faithful put their trust."
1664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then when they entered as their father had instructed them, this did not help them against ˹the Will of˺ Allah whatsoever. It was just a desire in Jacob’s heart which he satisfied. He was truly blessed with ˹great˺ knowledge because of what We had taught him, but most people have no knowledge.
1665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When they entered Joseph’s presence, he called his brother ˹Benjamin˺ aside, and confided ˹to him˺, "I am indeed your brother ˹Joseph˺! So do not feel distressed about what they have been doing."
1666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When Joseph had provided them with supplies, he slipped the royal cup into his brother’s bag. Then a herald cried, "O people of the caravan! You must be thieves!"
1667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They asked, turning back, "What have you lost?"
1668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The herald ˹along with the guards˺ replied, "We have lost the King’s measuring cup. And whoever brings it will be awarded a camel-load ˹of grain˺. I guarantee it."
1669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Joseph’s brothers replied, "By Allah! You know well that we did not come to cause trouble in the land, nor are we thieves."
1670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Joseph’s men asked, "What should be the price for theft, if you are lying?"
1671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joseph’s brothers responded, "The price will be ˹the enslavement of˺ the one in whose bag the cup is found. That is how we punish the wrongdoers."
1672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Joseph began searching their bags before that of his brother ˹Benjamin˺, then brought it out of Benjamin’s bag. This is how We inspired Joseph to plan. He could not have taken his brother under the King’s law, but Allah had so willed. We elevate in rank whoever We will. But above those ranking in knowledge is the One All-Knowing.
1673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹To distance themselves,˺ Joseph’s brothers argued, "If he has stolen, so did his ˹full˺ brother before." and Allah knows best ˹the truth of˺ what you claim."
1674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They appealed, "O Chief Minister! He has a very old father, so take one of us instead. We surely see you as one of the good-doers."
1675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joseph responded, "Allah forbid that we should take other than the one with whom we found our property. Otherwise, we would surely be unjust."
1676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When they lost all hope in him, they spoke privately. The eldest of them said, "Do you not know that your father had taken a solemn oath by Allah from you, nor how you failed him regarding Joseph before? So I am not leaving this land until my father allows me to, or Allah decides for me. For He is the Best of Judges.
1677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return to your father and say, ‘O our father! Your son committed theft. We testify only to what we know. We could not guard against the unforeseen.
1678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ask ˹the people of˺ the land where we were and the caravan we travelled with. We are certainly telling the truth.’"
1679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He cried, "No! Your souls must have tempted you to do something ˹evil˺. So ˹I am left with nothing but˺ beautiful patience! I trust Allah will return them all to me. Surely He ˹alone˺ is the All-Knowing, All-Wise."
1680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He turned away from them, lamenting, "Alas, poor Joseph!" And his eyes turned white out of the grief he suppressed.
1681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They said, "By Allah! You will not cease to remember Joseph until you lose your health or ˹even˺ your life."
1682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He replied, "I complain of my anguish and sorrow only to Allah, and I know from Allah what you do not know.
1683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O  my sons! Go and search ˹diligently˺ for Joseph and his brother. And do not lose hope in the mercy of Allah, for no one loses hope in Allah’s mercy except those with no faith."
1684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they entered Joseph’s presence, they pleaded, "O Chief Minister! We and our family have been touched with hardship, and we have brought only a few worthless coins, but ˹please˺ give us our supplies in full and be charitable to us. Indeed, Allah rewards the charitable."
1685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He asked, "Do you remember what you did to Joseph and his brother in your ignorance?"
1686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They replied ˹in shock˺, "Are you really Joseph?" He said, "I am Joseph, and here is my brother ˹Benjamin˺! Allah has truly been gracious to us. Surely whoever is mindful ˹of Allah˺ and patient, then certainly Allah never discounts the reward of the good-doers."
1687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They admitted, "By Allah! Allah has truly preferred you over us, and we have surely been sinful."
1688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Joseph said, "There is no blame on you today. May Allah forgive you! He is the Most Merciful of the merciful!
1689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Go with this shirt of mine and cast it over my father’s face, and he will regain his sight. Then come back to me with your whole family."
1690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the caravan departed ˹from Egypt˺, their father said ˹to those around him˺, "You may think I am senile, but I certainly sense the smell of Joseph."
1691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They replied, "By Allah! You are definitely still in your old delusion."
1692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But when the bearer of the good news arrived, he cast the shirt over Jacob’s face, so he regained his sight. Jacob then said ˹to his children˺, "Did I not tell you that I truly know from Allah what you do not know?"
1693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They begged, "O our father! Pray for the forgiveness of our sins. We have certainly been sinful."
1694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He said, "I will pray to my Lord for your forgiveness. He ˹alone˺ is indeed the All-Forgiving, Most Merciful."
1695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When they entered Joseph’s presence, he received his parents ˹graciously˺ and said, "Enter Egypt, Allah willing, in security."
1696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then he raised his parents to the throne, and they all fell down in prostration to Joseph, Indeed my Lord is subtle in fulfilling what He wills. Surely He ˹alone˺ is the All-Knowing, All-Wise."
1697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               "My Lord! You have surely granted me authority and taught me the interpretation of dreams. ˹O˺ Originator of the heavens and the earth! You are my Guardian in this world and the Hereafter. Allow me to die as one who submits and join me with the righteous."
1698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That is from the stories of the unseen which We reveal to you ˹O Prophet˺. You were not present when they ˹all˺ made up their minds, and when they plotted ˹against Joseph˺.
1699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And most people will not believe—no matter how keen you are—
1700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   even though you are not asking them for a reward for this ˹Quran˺. It is only a reminder to the whole world.
1701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How many signs in the heavens and the earth do they pass by with indifference!
1702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And most of them do not believe in Allah without associating others with Him ˹in worship˺.
1703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do they feel secure that an overwhelming torment from Allah will not overtake them, or that the Hour will not take them by surprise when they least expect ˹it˺?
1704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "This is my way. I invite to Allah with insight—I and those who follow me. Glory be to Allah, and I am not one of the polytheists."
1705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We only sent before you ˹O Prophet˺ men inspired by Us from among the people of each society. Have the deniers not travelled through the land to see what was the end of those ˹destroyed˺ before them? And surely the ˹eternal˺ Home of the Hereafter is far better for those mindful ˹of Allah˺. Will you not then understand?
1706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the messengers despaired and their people thought the messengers had been denied help, Our help came to them ˹at last˺. We then saved whoever We willed, and Our punishment is never averted from the wicked people.
1707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In their stories there is truly a lesson for people of reason. This message cannot be a fabrication, rather ˹it is˺ a confirmation of previous revelation, a detailed explanation of all things, a guide, and a mercy for people of faith.
1708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alif-Lãm-Mĩm-Ra. These are the verses of the Book. What has been revealed to you ˹O Prophet˺ from your Lord is the truth, but most people do not believe.
1709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is Allah Who has raised the heavens without pillars—as you can see—then established Himself on the Throne. He has subjected the sun and the moon, each orbiting for an appointed term. He conducts the whole affair. He makes the signs clear so that you may be certain of the meeting with your Lord.
1710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And He is the One Who spread out the earth and placed firm mountains and rivers upon it, and created fruits of every kind in pairs. He covers the day with night. Surely in this are signs for those who reflect.
1711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And on the earth there are ˹different˺ neighbouring tracts, gardens of grapevines, ˹various˺ crops, palm trees—some stemming from the same root, others standing alone. They are all irrigated with the same water, yet We make some taste better than others. Surely in this are signs for those who understand.
1712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Now,˺ if anything should amaze you ˹O Prophet˺, then it is their question: "When we are reduced to dust, will we really be raised as a new creation?" It is they who have disbelieved in their Lord. It is they who will have shackles around their necks. And it is they who will be the residents of the Fire. They will be there forever.
1713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They ask you ˹O Prophet˺ to hasten the torment rather than grace, though there have ˹already˺ been ˹many˺ torments before them. Surely your Lord is full of forgiveness for people, despite their wrongdoing, and your Lord is truly severe in punishment.
1714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers say, "If only a sign could be sent down to him from his Lord." You ˹O Prophet˺ are only a warner. And every people had a guide.
1715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah knows what every female bears and what increases and decreases in the wombs. And with Him everything is determined with precision.
1716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹He is the˺ Knower of the seen and the unseen—the All-Great, Most Exalted.
1717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is the same ˹to Him˺ whether any of you speaks secretly or openly, whether one hides in the darkness of night or goes about in broad daylight.
1718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For each one there are successive angels before and behind, protecting them by Allah’s command. Indeed, Allah would never change a people’s state ˹of favour˺ until they change their own state ˹of faith˺. And if it is Allah’s Will to torment a people, it can never be averted, nor can they find a protector other than Him.
1719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He is the One Who shows you lightning, inspiring ˹you with˺ hope and fear, and produces heavy clouds.
1720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The thunder glorifies His praises, as do the angels in awe of Him. He sends thunderbolts, striking with them whoever He wills. Yet they dispute about Allah. And He is tremendous in might.
1721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Calling upon Him ˹alone˺ is the truth. But those ˹idols˺ the pagans invoke besides Him ˹can˺ never respond to them in any way. ˹It is˺ just like someone who stretches out their hands to water, ˹asking it˺ to reach their mouths, but it can never do so. The calls of the disbelievers are only in vain.
1722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To Allah ˹alone˺ bow down ˹in submission˺ all those in the heavens and the earth—willingly or unwillingly—as do their shadows, morning and evening.
1723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ask ˹them, O  Prophet˺, "Who is the Lord of the heavens and the earth?" Say, "Allah!" Ask ˹them˺, "Why ˹then˺ have you taken besides Him lords who cannot even benefit or protect themselves?" Say, "Can the blind and the sighted be equal? Or can darkness and light be equal?" Or have they associated with Allah partners who ˹supposedly˺ produced a creation like His, leaving them confused between the two creations? Say, "Allah is the Creator of all things, and He is the One, the Supreme."
1724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He sends down rain from the sky, causing the valleys to flow, each according to its capacity. The currents then carry along rising foam, similar to the slag produced from metal that people melt in the fire for ornaments or tools. This is how Allah compares truth to falsehood. The ˹worthless˺ residue is then cast away, but what benefits people remains on the earth. This is how Allah sets forth parables.
1725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who respond to ˹the call of˺ their Lord will have the finest reward. As for those who do not respond to Him, even if they were to possess everything in the world twice over, they would certainly offer it to ransom themselves. They will face strict judgment, and Hell will be their home. What an evil place to rest!
1726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Can the one who knows that your Lord’s revelation to you ˹O Prophet˺ is the truth be like the one who is blind? None will be mindful ˹of this˺ except people of reason.
1727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹They are˺ those who honour Allah’s covenant, never breaking the pledge;
1728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and those who maintain whatever ˹ties˺ Allah has ordered to be maintained, stand in awe of their Lord, and fear strict judgment.
1729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹they are˺ those who endure patiently, seeking their Lord’s pleasure, establish prayer, donate from what We have provided for them—secretly and openly—and respond to evil with good. It is they who will have the ultimate abode:
1730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          the Gardens of Eternity, which they will enter along with the righteous among their parents, spouses, and descendants. And the angels will enter upon them from every gate, ˹saying,˺
1731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                "Peace be upon you for your perseverance. How excellent is the ultimate abode!"
1732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And those who violate Allah’s covenant after it has been affirmed, break whatever ˹ties˺ Allah has ordered to be maintained, and spread corruption in the land—it is they who will be condemned and will have the worst abode.
1733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah gives abundant or limited provisions to whoever He wills. And the disbelievers become prideful of ˹the pleasures of˺ this worldly life. But the life of this world, compared to the Hereafter, is nothing but a fleeting enjoyment.
1734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The disbelievers say, "If only a sign could be sent down to him from his Lord." Say, ˹O Prophet,˺ "Indeed, Allah leaves to stray whoever He wills, and guides to Himself whoever turns to Him—
1735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        those who believe and whose hearts find comfort in the remembrance of Allah. Surely in the remembrance of Allah do hearts find comfort.
1736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those who believe and do good, for them will be bliss and an honourable destination."
1737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so We have sent you ˹O Prophet˺ to a community, like ˹We did with˺ earlier communities, so that you may recite to them what We have revealed to you. Yet they deny the Most Compassionate. Say, "He is my Lord! There is no god ˹worthy of worship˺ except Him. In Him I put my trust, and to Him I turn ˹in repentance˺."
1738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If there were a recitation that could cause mountains to move, or the earth to split, or the dead to speak, ˹it would have been this Quran˺. But all matters are by Allah’s Will. Have the believers not yet realized that had Allah willed, He could have guided all of humanity? And disasters will continue to afflict the disbelievers or strike close to their homes for their misdeeds, until Allah’s promise comes to pass. Surely Allah never fails in His promise.
1739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Other messengers had already been ridiculed before you, but I delayed the disbelievers ˹for a while˺ then seized them. And how ˹horrible˺ was My punishment!
1740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Is ˹there any equal to˺ the Vigilant One Who knows what every soul commits? Yet the pagans have associated others with Allah ˹in worship˺. Say, ˹O Prophet,˺ "Name them! Or do you ˹mean to˺ inform Him of something He does not know on the earth? Or are these ˹gods˺ just empty words?" In fact, the disbelievers’ falsehood has been made so appealing to them that they have been turned away from the Path. And whoever Allah leaves to stray will be left with no guide.
1741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For them is punishment in this worldly life, but the punishment of the Hereafter is truly far worse. And none can shield them from Allah.
1742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The description of the Paradise promised to the righteous is that under it rivers flow; eternal is its fruit as well as its shade. That is the ˹ultimate˺ outcome for the righteous. But the outcome for the disbelievers is the Fire!
1743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹The believers among˺ those who were given the Scripture rejoice at what has been revealed to you ˹O Prophet˺, while some ˹disbelieving˺ factions deny a portion of it. Say, "I have only been commanded to worship Allah, associating none with Him ˹in worship˺. To Him I invite ˹all˺, and to Him is my return."
1744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And so We have revealed it as an authority in Arabic. And if you were to follow their desires after ˹all˺ the knowledge that has come to you, there would be none to protect or shield you from Allah.
1745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We have certainly sent messengers before you ˹O Prophet˺ and blessed them with wives and offspring. It was not for any messenger to bring a sign without Allah’s permission. Every destined matter has a ˹set˺ time.
1746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah eliminates and confirms what He wills, and with Him is the Master Record.
1747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whether We show you ˹O Prophet˺ some of what We threaten them with, or cause you to die ˹before that˺, your duty is only to deliver ˹the message˺. Judgment is for Us.
1748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do they not see that We gradually reduce their land from its borders? Allah decides—none can reverse His decision. And He is swift in reckoning.
1749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those ˹disbelievers˺ before them ˹secretly˺ planned, but Allah has the ultimate plan. He knows what every soul commits. And the disbelievers will soon know who will have the ultimate outcome.
1750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers say, "You ˹Muhammad˺ are no messenger." Say, ˹O Prophet,˺ "Allah is sufficient as a Witness between me and you, as is whoever has knowledge of the Scripture."
1751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alif-Lãm-Ra. ˹This is˺ a Book which We have revealed to you ˹O Prophet˺ so that you may lead people out of darkness and into light, by the Will of their Lord, to the Path of the Almighty, the Praiseworthy—
1752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And woe to the disbelievers because of a severe torment!
1753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They are˺ the ones who favour the life of this world over the Hereafter and hinder ˹others˺ from the Way of Allah, striving to make it ˹appear˺ crooked. It is they who have gone far astray.
1754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We have not sent a messenger except in the language of his people to clarify ˹the message˺ for them. Then Allah leaves whoever He wills to stray and guides whoever He wills. And He is the Almighty, All-Wise.
1755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We sent Moses with Our signs, ˹ordering him,˺ "Lead your people out of darkness and into light, and remind them of Allah’s days ˹of favour˺." Surely in this are signs for whoever is steadfast, grateful.
1756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Consider˺ when Moses said to his people, "Remember Allah’s favour upon you when He rescued you from the people of Pharaoh, who afflicted you with dreadful torment—slaughtering your sons and keeping your women. That was a severe test from your Lord.
1757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹remember˺ when your Lord proclaimed, ‘If you are grateful, I will certainly give you more. But if you are ungrateful, surely My punishment is severe.’"
1758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moses added, "If you along with everyone on earth were to be ungrateful, then ˹know that˺ Allah is indeed Self-Sufficient, Praiseworthy."
1759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Have you not ˹already˺ received the stories of those who were before you: the people of Noah, ’ad, Thamûd, and those after them? Only Allah knows how many they were. Their messengers came to them with clear proofs, but they put their hands over their mouths and said, "We totally reject what you have been sent with, and we are certainly in alarming doubt about what you are inviting us to."
1760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Their messengers asked ˹them˺, "Is there any doubt about Allah, the Originator of the heavens and the earth? He is inviting you in order to forgive your sins, and delay your end until your appointed term." They argued, "You are no more than humans like us! You ˹only˺ wish to turn us away from what our forefathers worshipped. So bring us some compelling proof."
1761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Their messengers said to them, "We are ˹indeed˺ only humans like you, but Allah favours whoever He chooses of His servants. It is not for us to bring you any proof without Allah’s permission. And in Allah let the believers put their trust.
1762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Why should we not put our trust in Allah, when He has truly guided us to ˹the very best of˺ ways? Indeed, we will patiently endure whatever harm you may cause us. And in Allah let the faithful put their trust."
1763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The disbelievers then threatened their messengers, "We will certainly expel you from our land, unless you return to our faith." So their Lord revealed to them, "We will surely destroy the wrongdoers,
1764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and make you reside in the land after them. This is for whoever is in awe of standing before Me and fears My warning."
1765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And both sides called for judgment, so every stubborn tyrant was doomed.
1766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Awaiting them is Hell, and they will be left to drink oozing pus,
1767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            which they will sip with difficulty, and can hardly swallow. Death will overwhelm them from every side, yet they will not ˹be able to˺ die. Awaiting them still is harsher torment.
1768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The parable of the deeds of those who disbelieve in their Lord is that of ashes fiercely blown away by wind on a stormy day. They will gain nothing from what they have earned. That is ˹truly˺ the farthest one can stray.
1769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have you not seen that Allah created the heavens and the earth for a reason? If He wills, He can eliminate you and produce a new creation.
1770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And that is not difficult for Allah ˹at all˺.
1771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will all appear before Allah, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, "We were your ˹dedicated˺ followers, so will you ˹then˺ protect us from Allah’s torment in any way?" They will reply, "Had Allah guided us, we would have guided you. ˹Now˺ it is all the same for us whether we suffer patiently or impatiently, there is no escape for us."
1772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Satan will say ˹to his followers˺ after the judgment has been passed, "Indeed, Allah has made you a true promise. I too made you a promise, but I failed you. I did not have any authority over you. I only called you, and you responded to me. So do not blame me; blame yourselves. I cannot save you, nor can you save me. Indeed, I denounce your previous association of me with Allah ˹in loyalty˺. Surely the wrongdoers will suffer a painful punishment."
1773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those who believe and do good will be admitted into Gardens, under which rivers flow—to stay there forever by the Will of their Lord—where they will be greeted with "Peace!"
1774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do you not see how Allah compares a good word to a good tree? Its root is firm and its branches reach the sky,
1775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹always˺ yielding its fruit in every season by the Will of its Lord. This is how Allah sets forth parables for the people, so perhaps they will be mindful.
1776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the parable of an evil word is that of an evil tree, uprooted from the earth, having no stability.
1777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah makes the believers steadfast with the firm Word ˹of faith˺ in this worldly life and the Hereafter. And Allah leaves the wrongdoers to stray. For Allah does what He wills.
1778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have you not seen those ˹disbelievers˺ who meet Allah’s favours with ingratitude and lead their own people to their doom?
1779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In Hell they will burn. What an evil place for settlement.
1780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ "Enjoy yourselves! Surely your destination is the Fire."
1781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Tell My believing servants to establish prayer and donate from what We have provided for them—openly and secretly—before the arrival of a Day in which there will be no ransom or friendly connections.
1782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is Allah Who created the heavens and the earth and sends down rain from the sky, causing fruits to grow as a provision for you. He has subjected the ships for your service, sailing through the sea by His command, and has subjected the rivers for you.
1783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He has ˹also˺ subjected for you the sun and the moon, both constantly orbiting, and has subjected the day and night for you.
1784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And He has granted you all that you asked Him for. If you tried to count Allah’s blessings, you would never be able to number them. Indeed humankind is truly unfair, ˹totally˺ ungrateful.
1785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when Abraham prayed, "My Lord! Make this city ˹of Mecca˺ secure, and keep me and my children away from the worship of idols.
1786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        My Lord! They have caused many people to go astray. So whoever follows me is with me, and whoever disobeys me—then surely You are ˹still˺ All-Forgiving, Most Merciful.
1787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Our Lord! I have settled some of my offspring in a barren valley, near Your Sacred House, our Lord, so that they may establish prayer. So make the hearts of ˹believing˺ people incline towards them and provide them with fruits, so perhaps they will be thankful.
1788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Our Lord! You certainly know what we conceal and what we reveal. Nothing on earth or in heaven is hidden from Allah.
1789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All praise is for Allah who has blessed me with Ishmael and Isaac in my old age. My Lord is indeed the Hearer of ˹all˺ prayers.
1790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My Lord! Make me and those ˹believers˺ of my descendants keep up prayer. Our Lord! Accept my prayers.
1791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Our Lord! Forgive me, my parents, and the believers on the Day when the judgment will come to pass."
1792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do not think ˹O Prophet˺ that Allah is unaware of what the wrongdoers do. He only delays them until a Day when ˹their˺ eyes will stare in horror—
1793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      rushing forth, heads raised, never blinking, hearts void.
1794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And warn the people of the Day when the punishment will overtake ˹the wicked among˺ them, and the wrongdoers will cry, "Our Lord! Delay us for a little while. We will respond to Your call and follow the messengers!" ˹It will be said,˺ "Did you not swear before that you would never be removed ˹to the next life˺?"
1795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             You passed by the ruins of those ˹destroyed peoples˺ who had wronged themselves. It was made clear to you how We dealt with them, and We gave you ˹many˺ examples.
1796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They devised every plot, which was fully known to Allah, but their plotting was not enough to ˹even˺ overpower mountains ˹let alone Allah˺.
1797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So do not think ˹O Prophet˺ that Allah will fail to keep His promise to His messengers. Allah is indeed Almighty, capable of punishment.
1798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Watch for˺ the Day ˹when˺ the earth will be changed into a different earth and the heavens as well, and all will appear before Allah—the One, the Supreme.
1799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On that Day you will see the wicked bound together in chains,
1800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     with garments of tar, and their faces covered with flames.
1801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As such, Allah will reward every soul for what it has committed. Surely Allah is swift in reckoning.
1802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This ˹Quran˺ is a ˹sufficient˺ message for humanity so that they may take it as a warning and know that there is only One God, and so that people of reason may be mindful.
1803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alif-Lãm-Ra. These are the verses of the Book; the clear Quran.
1804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹The day will come when˺ the disbelievers will certainly wish they had submitted ˹to Allah˺.
1805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹So˺ let them eat and enjoy themselves and be diverted by ˹false˺ hope, for they will soon know.
1806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We have never destroyed a society without a destined term.
1807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No people can advance their doom, nor can they delay it.
1808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They say, "O you to whom the Reminder is revealed! You must be insane!
1809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why do you not bring us the angels, if what you say is true?"
1810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We do not send the angels down except for a just cause, and then ˹the end of˺ the disbelievers will not be delayed.
1811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is certainly We Who have revealed the Reminder, and it is certainly We Who will preserve it.
1812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We sent messengers before you ˹O Prophet˺ among the groups of early peoples,
1813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       but no messenger ever came to them without being mocked.
1814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is how We allow disbelief ˹to steep˺ into the hearts of the wicked.
1815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They would not believe in this ˹Quran˺ despite the ˹many˺ examples of those ˹destroyed˺ before.
1816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And even if We opened for them a gate to heaven, through which they continued to ascend,
1817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                still they would say, "Our eyes have truly been dazzled! In fact, we must have been bewitched."
1818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We have placed constellations in the sky, and adorned it for all to see.
1819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We protected it from every accursed devil,
1820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          except the one eavesdropping, who is then pursued by a visible flare.
1821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for the earth, We spread it out and placed upon it firm mountains, and caused everything to grow there in perfect balance.
1822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We made in it means of sustenance for you and others, who you do not provide for.
1823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There is not any means ˹of sustenance˺ whose reserves We do not hold, only bringing it forth in precise measure.
1824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We send fertilizing winds, and bring down rain from the sky for you to drink. It is not you who hold its reserves.
1825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely it is We Who give life and cause death. And We are the ˹Eternal˺ Successor.
1826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We certainly know those who have gone before you and those who will come after ˹you˺.
1827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely your Lord ˹alone˺ will gather them together ˹for judgment˺. He is truly All-Wise, All-Knowing.
1828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We created man from sounding clay moulded from black mud.
1829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for the jinn, We created them earlier from smokeless fire.
1830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember, O  Prophet˺ when your Lord said to the angels, "I am going to create a human being from sounding clay moulded from black mud.
1831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him."
1832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So the angels prostrated all together—
1833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       but not Iblis, who refused to prostrate with the others.
1834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah asked, "O Iblis! What is the matter with you that you did not join others in prostration?"
1835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He replied, "It is not for me to prostrate to a human You created from sounding clay moulded from black mud."
1836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah commanded, "Then get out of Paradise, for you are truly cursed.
1837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And surely upon you is condemnation until the Day of Judgment."
1838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Satan appealed, "My Lord! Then delay my end until the Day of their resurrection."
1839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah said, "You will be delayed
1840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      until the appointed Day."
1841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Satan responded, "My Lord! For allowing me to stray I will surely tempt them on earth and mislead them all together,
1842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       except Your chosen servants among them."
1843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah said, "This is the Way, binding on Me:
1844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      you will certainly have no authority over My servants, except the deviant who follow you,
1845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and surely Hell is their destined place, all together.
1846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It has seven gates, to each a group of them is designated."
1847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, the righteous will be amid Gardens and springs.
1848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It will be said to them,˺ "Enter in peace and security."
1849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We will remove whatever bitterness they had in their hearts. In a friendly manner, they will be on thrones, facing one another.
1850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        No fatigue will touch them there, nor will they ever be asked to leave.
1851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Inform My servants ˹O Prophet˺ that I am truly the All-Forgiving, Most Merciful,
1852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and that My torment is indeed the most painful.
1853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And inform them ˹O Prophet˺ about Abraham’s guests
1854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          who entered upon him and greeted ˹him with˺, "Peace!" He ˹later˺ said, "Surely we are afraid of you."
1855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They reassured ˹him˺, "Do not be afraid! Surely we give you good news of a knowledgeable son."
1856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He wondered, "Do you give me good news despite my old age? What unlikely news!"
1857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They responded, "We give you good news in all truth, so do not be one of those who despair."
1858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He exclaimed, "Who would despair of the mercy of their Lord except the misguided?"
1859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He ˹then˺ added, "What is your mission, O  messenger-angels?"
1860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They replied, "We have actually been sent to a wicked people.
1861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for the family of Lot, we will certainly deliver them all,
1862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       except his wife. We have determined that she will be one of the doomed."
1863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So when the messengers came to the family of Lot,
1864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                he said, "You are surely an unfamiliar people!"
1865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They responded, "We have come to you with that ˹torment˺ which they have doubted.
1866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We come to you with the truth, and we are certainly truthful.
1867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So travel with your family in the dark of night, and follow ˹closely˺ behind them. Do not let any of you look back, and go where you are commanded."
1868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We revealed to him this decree: "Those ˹sinners˺ will be uprooted in the morning."
1869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there came the men of the city, rejoicing.
1870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Lot pleaded, "Indeed, these are my guests, so do not embarrass me.
1871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Fear Allah and do not humiliate me."
1872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They responded, "Have we not forbidden you from protecting anyone?"
1873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He said, "O my people! Here are my daughters ˹so marry them˺ if you wish to do so."
1874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              By your life ˹O Prophet˺, they certainly wandered blindly, intoxicated ˹by lust˺.
1875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So the ˹mighty˺ blast overtook them at sunrise.
1876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We turned the cities ˹of Sodom and Gomorrah˺ upside down and rained upon them stones of baked clay.
1877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely in this are signs for those who contemplate.
1878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Their ruins still lie along a known route.
1879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely in this is a sign for those who believe.
1880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the residents of the Forest were truly wrongdoers,
1881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                so We inflicted punishment upon them. The ruins of both nations still lie on a well-known road.
1882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, the residents of the Stone Valley also denied the messengers.
1883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We gave them Our signs, but they turned away from them.
1884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They carved their homes in the mountains, feeling secure.
1885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But the ˹mighty˺ blast overtook them in the morning,
1886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and all they achieved was of no help to them.
1887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have not created the heavens and the earth and everything in between except for a purpose. And the Hour is certain to come, so forgive graciously.
1888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely your Lord is the Master Creator, All-Knowing.
1889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have certainly granted you the seven often-repeated verses and the great Quran.
1890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do not let your eyes crave the ˹fleeting˺ pleasures We have provided for some of the disbelievers, nor grieve for them. And be gracious to the believers.
1891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And say, "I am truly sent with a clear warning"—
1892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹a warning˺ similar to what We sent to those who divided ˹the Scriptures˺,
1893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         who ˹now˺ accept parts of the Quran, rejecting others.
1894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So by your Lord! We will certainly question them all
1895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    about what they used to do.
1896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So proclaim what you have been commanded, and turn away from the polytheists.
1897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely We will be sufficient for you against the mockers,
1898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               who set up ˹other˺ gods with Allah. They will soon come to know.
1899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We certainly know that your heart is truly distressed by what they say.
1900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So glorify the praises of your Lord and be one of those who ˹always˺ pray,
1901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and worship your Lord until the inevitable comes your way.
1902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The command of Allah is at hand, so do not hasten it. Glorified and Exalted is He above what they associate ˹with Him in worship˺!
1903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He sends down the angels with revelation by His command to whoever He wills of His servants, ˹stating:˺ "Warn ˹humanity˺ that there is no god ˹worthy of worship˺ except Me, so be mindful of Me ˹alone˺."
1904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He created the heavens and the earth for a purpose. Exalted is He above what they associate with Him ˹in worship˺!
1905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He created humans from a sperm-drop, then—behold!—they openly challenge ˹Him˺.
1906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And He created the cattle for you as a source of warmth, food, and ˹many other˺ benefits.
1907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They are also pleasing to you when you bring them home and when you take them out to graze.
1908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they carry your loads to ˹distant˺ lands which you could not otherwise reach without great hardship. Surely your Lord is Ever Gracious, Most Merciful.
1909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹He also created˺ horses, mules, and donkeys for your transportation and adornment. And He creates what you do not know.
1910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is upon Allah ˹alone˺ to ˹clearly˺ show the Straight Way. Other ways are deviant. Had He willed, He would have easily imposed guidance upon all of you.
1911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is the One Who sends down rain from the sky, from which you drink and by which plants grow for your cattle to graze.
1912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          With it He produces for you ˹various˺ crops, olives, palm trees, grapevines, and every type of fruit. Surely in this is a sign for those who reflect.
1913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And He has subjected for your benefit the day and the night, the sun and the moon. And the stars have been subjected by His command. Surely in this are signs for those who understand.
1914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹He subjected˺ for you whatever He has created on earth of varying colours. Surely in this is a sign for those who are mindful.
1915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And He is the One Who has subjected the sea, so from it you may eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through it, so you may seek His bounty and give thanks ˹to Him˺.
1916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He has placed into the earth firm mountains, so it does not shake with you, as well as rivers, and pathways so you may find your way.
1917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also by landmarks and stars do people find their way.
1918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Can the One Who creates be equal to those who do not? Will you not then be mindful?
1919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you tried to count Allah’s blessings, you would never be able to number them. Surely Allah is All-Forgiving, Most Merciful.
1920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Allah knows what you conceal and what you reveal.
1921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But those ˹idols˺ they invoke besides Allah cannot create anything—they themselves are created.
1922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They are dead, not alive—not even knowing when their followers will be resurrected.
1923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Your God is ˹only˺ One God. As for those who do not believe in the Hereafter, their hearts are in denial, and they are too proud.
1924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Without a doubt, Allah knows what they conceal and what they reveal. He certainly does not like those who are too proud.
1925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when it is said to them, "What has your Lord revealed?" They say, "Ancient fables!"
1926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let them bear their burdens in full on the Day of Judgment as well as some of the burdens of those they mislead without knowledge. Evil indeed is what they will bear!
1927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, those before them had plotted, but Allah struck at the ˹very˺ foundation of their structure, so the roof collapsed on top of them, and the torment came upon them from where they did not expect.
1928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then on the Day of Judgment He will humiliate them and say, "Where are My ˹so-called˺ associate-gods for whose sake you used to oppose ˹the believers˺?" Those gifted with knowledge will say, "Surely disgrace and misery today are upon the disbelievers."
1929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Those whose souls the angels seize while they wrong themselves will then offer ˹full˺ submission ˹and say falsely,˺ "We did not do any evil." ˹The angels will say,˺ "No! Surely Allah fully knows what you used to do.
1930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So enter the gates of Hell, to stay there forever. Indeed, what an evil home for the arrogant!"
1931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹when˺ it is said to those mindful ˹of Allah˺, "What has your Lord revealed?" They say, "All the best!" For those who do good in this world, there is goodness. But far better is the ˹eternal˺ Home of the Hereafter. How excellent indeed is the home of the righteous:
1932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the Gardens of Eternity which they will enter, under which rivers flow. In it they will have whatever they desire. This is how Allah rewards the righteous—
1933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      those whose souls the angels take while they are virtuous, saying ˹to them˺, "Peace be upon you! Enter Paradise for what you used to do."
1934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Are they only awaiting the coming of the angels or the command of your Lord ˹O Prophet˺? So were those before them. And Allah never wronged them, but it was they who wronged themselves.
1935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the evil ˹consequences˺ of their deeds overtook them, and they were overwhelmed by what they used to ridicule.
1936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The polytheists argue, "Had Allah willed, neither we nor our forefathers would have worshipped anything other than Him, nor prohibited anything without His command." So did those before them. Is not the messengers’ duty only to deliver ˹the message˺ clearly?
1937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We surely sent a messenger to every community, saying, "Worship Allah and shun false gods." But some of them were guided by Allah, while others were destined to stray. So travel throughout the land and see the fate of the deniers!
1938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Even though you ˹O Prophet˺ are keen on their guidance, Allah certainly does not guide those He leaves to stray, and they will have no helpers.
1939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They swear by Allah their most solemn oaths that Allah will never raise the dead to life. Yes ˹He will˺! It is a true promise binding on Him, but most people do not know.
1940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹He will do that˺ to make clear to them what they disagreed on, and for the disbelievers to know that they were liars.
1941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If We ever will something ˹to exist˺, all We say is: "Be!" And it is!
1942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who emigrated in ˹the cause of˺ Allah after being persecuted, We will surely bless them with a good home in this world. But the reward of the Hereafter is far better, if only they knew.
1943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹It is˺ they who have patiently endured, and in their Lord they put their trust.
1944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.
1945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹We sent them˺ with clear proofs and divine Books. And We have sent down to you ˹O Prophet˺ the Reminder, so that you may explain to people what has been revealed for them, and perhaps they will reflect.
1946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do those who devise evil plots feel secure that Allah will not cause the earth to swallow them? Or that the torment will not come upon them in ways they cannot comprehend?
1947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or that He will not seize them while they go about ˹their day˺, for then they will have no escape?
1948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Or that He will not destroy them gradually? But your Lord is truly Ever Gracious, Most Merciful.
1949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have they not considered how the shadows of everything Allah has created incline to the right and the left ˹as the sun moves˺, totally submitting to Allah in all humility?
1950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And to Allah ˹alone˺ bows down ˹in submission˺ whatever is in the heavens and whatever is on the earth of living creatures, as do the angels—who are not too proud ˹to do so˺.
1951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They fear their Lord above them, and do whatever they are commanded.
1952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Allah has said, "Do not take two gods. There is only One God. So be in awe of Me ˹alone˺."
1953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To Him belongs whatever is in the heavens and the earth, and to Him ˹alone˺ is the everlasting devotion. Will you then fear any other than Allah?
1954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whatever blessings you have are from Allah. Then whenever hardship touches you, to Him ˹alone˺ you cry ˹for help˺.
1955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then as soon as He removes the hardship from you, a group of you associates ˹others˺ with their Lord ˹in worship˺,
1956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      only returning Our favours with ingratitude. So enjoy yourselves, for you will soon know.
1957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they ˹even˺ assign to those ˹idols˺—who know nothing—a share of what We have provided for them. By Allah! You will certainly be questioned about whatever ˹lies˺ you used to fabricate ˹against Allah˺.
1958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they attribute ˹angels as˺ daughters to Allah—glory be to Him!—the opposite of what they desire for themselves.
1959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whenever one of them is given the good news of a baby girl, his face grows gloomy, as he suppresses his rage.
1960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He hides himself from the people because of the bad news he has received. Should he keep her in disgrace, or bury her ˹alive˺ in the ground? Evil indeed is their judgment!
1961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To those who disbelieve in the Hereafter belong all evil qualities, whereas to Allah belong the finest attributes. And He is the Almighty, All-Wise.
1962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If Allah were to punish people ˹immediately˺ for their wrongdoing, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, they cannot delay it for a moment, nor could they advance it.
1963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They attribute to Allah what they hate ˹for themselves˺, and their tongues utter the lie that they will have the finest reward. Without a doubt, for them is the Fire, where they will be abandoned.
1964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       By Allah! We have surely sent messengers to communities before you ˹O Prophet˺, but Satan made their misdeeds appealing to them. So he is their patron today, and they will suffer a painful punishment.
1965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We have revealed to you the Book only to clarify for them what they differed about, and as a guide and mercy for those who believe.
1966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Allah sends down rain from the sky, giving life to the earth after its death. Surely in this is a sign for those who listen.
1967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there is certainly a lesson for you in cattle: We give you to drink of what is in their bellies, from between digested food and blood: pure milk, pleasant to drink.
1968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And from the fruits of palm trees and grapevines you derive intoxicants as well as wholesome provision. Surely in this is a sign for those who understand.
1969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And your Lord inspired the bees: "Make ˹your˺ homes in the mountains, the trees, and in what people construct,
1970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and feed from ˹the flower of˺ any fruit ˹you please˺ and follow the ways your Lord has made easy for you." From their bellies comes forth liquid of varying colours, in which there is healing for people. Surely in this is a sign for those who reflect.
1971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah has created you, and then causes you to die. And some of you are left to reach the most feeble stage of life so that they may know nothing after having known much. Indeed, Allah is All-Knowing, Most Capable.
1972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Allah has favoured some of you over others in provision. But those who have been much favoured would not share their wealth with those ˹bondspeople˺ in their possession, making them their equals. Do they then deny Allah’s favours?
1973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Allah has made for you spouses of your own kind, and given you through your spouses children and grandchildren. And He has granted you good, lawful provisions. Are they then faithful to falsehood and ungrateful for Allah’s favours?
1974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Yet they worship besides Allah those ˹idols˺ who do not afford them any provision from the heavens and the earth, nor do they have the power to.
1975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So do not set up equals to Allah, for Allah certainly knows and you do not know.
1976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah sets forth a parable: a slave who lacks all means, compared to a ˹free˺ man to whom We granted a good provision, of which he donates ˹freely,˺ openly and secretly. Are they equal? Praise be to Allah. In fact, most of them do not know.
1977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Allah sets forth a parable of two men: one of them is dumb, incapable of anything. He is a burden on his master. Wherever he is sent, he brings no good. Can such a person be equal to the one who commands justice and is on the Straight Path?
1978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To Allah ˹alone˺ belongs ˹the knowledge of˺ the unseen in the heavens and the earth. Bringing about the Hour would only take the blink of an eye, or even less. Surely Allah is Most Capable of everything.
1979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Allah brought you out of the wombs of your mothers while you knew nothing, and gave you hearing, sight, and intellect so perhaps you would be thankful.
1980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have they not seen the birds glide in the open sky? None holds them up except Allah. Surely in this are signs for those who believe.
1981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Allah has made your homes a place to rest, and has given you tents from the hide of animals, light to handle when you travel and when you camp. And out of their wool, fur, and hair He has given you furnishings and goods for a while.
1982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Allah has provided you shade out of what He created, and has given you shelter in the mountains. He has also provided you with clothes protecting you from the heat ˹and cold˺, and armour shielding you in battle. This is how He perfects His favour upon you, so perhaps you will ˹fully˺ submit ˹to Him˺.
1983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if they turn away, then your duty ˹O Prophet˺ is only to deliver ˹the message˺ clearly.
1984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They are aware of Allah’s favours, but still deny them. And most of them are ˹truly˺ ungrateful.
1985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Consider, O  Prophet,˺ the Day We will call ˹a prophet as˺ a witness from every faith-community. Then the disbelievers will neither be allowed to plead nor appease ˹their Lord˺.
1986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when the wrongdoers face the punishment, it will not be lightened for them, nor will they be delayed ˹from it˺.
1987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the polytheists see their associate-gods, they will say, "Our Lord! These are our associate-gods that we used to invoke besides You." Their gods will throw a rebuttal at them, ˹saying,˺ "You are definitely liars."
1988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They will offer ˹full˺ submission to Allah on that Day, and whatever ˹gods˺ they fabricated will fail them.
1989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For those who disbelieve and hinder ˹others˺ from the Way of Allah, We will add more punishment to their punishment for all the corruption they spread.
1990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Consider, O  Prophet,˺ the Day We will call against every faith-community a witness of their own. And We will call you to be a witness against these ˹people of yours˺. We have revealed to you the Book as an explanation of all things, a guide, a mercy, and good news for those who ˹fully˺ submit.
1991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, Allah commands justice, grace, as well as courtesy to close relatives. He forbids indecency, wickedness, and aggression. He instructs you so perhaps you will be mindful.
1992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Honour Allah’s covenant when you make a pledge, and do not break your oaths after confirming them, having made Allah your guarantor. Surely Allah knows all you do.
1993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do not be like the woman who ˹foolishly˺ unravels her yarn after it is firmly spun, by taking your oaths as a means of deceiving one another in favour of a stronger group. Surely Allah tests you through this. And on the Day of Judgment He will certainly make your differences clear to you.
1994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had Allah willed, He could have easily made you one community ˹of believers˺, but He leaves to stray whoever He wills and guides whoever He wills. And you will certainly be questioned about what you used to do.
1995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And do not take your oaths as a means of deceiving one another or your feet will slip after they have been firm. Then you will taste the evil ˹consequences˺ of hindering ˹others˺ from the Way of Allah, and you will suffer a tremendous punishment.
1996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And do not trade Allah’s covenant for a fleeting gain. What is with Allah is certainly far better for you, if only you knew.
1997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whatever you have will end, but whatever Allah has is everlasting. And We will certainly reward the steadfast according to the best of their deeds.
1998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoever does good, whether male or female, and is a believer, We will surely bless them with a good life, and We will certainly reward them according to the best of their deeds.
1999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When you recite the Quran, seek refuge with Allah from Satan, the accursed.
2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He certainly has no authority over those who believe and put their trust in their Lord.
2001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              His authority is only over those who take him as a patron and who—under his influence—associate ˹others˺ with Allah ˹in worship˺.
2002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When We replace a verse with another—and Allah knows best what He reveals—they say, "You ˹Muhammad˺ are just a fabricator." In fact, most of them do not know.
2003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, "The holy spirit has brought it down from your Lord with the truth to reassure the believers, and as a guide and good news for those who submit ˹to Allah˺."
2004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We surely know that they say, "No one is teaching him except a human." But the man they refer to speaks a foreign tongue, whereas this ˹Quran˺ is ˹in˺ eloquent Arabic.
2005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely those who do not believe in Allah’s revelations will never be guided by Allah, and they will suffer a painful punishment.
2006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            No one fabricates lies except those who disbelieve in Allah’s revelations, and it is they who are the ˹true˺ liars.
2007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoever disbelieves in Allah after their belief—not those who are forced while their hearts are firm in faith, but those who embrace disbelief wholeheartedly—they will be condemned by Allah and suffer a tremendous punishment.
2008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is because they prefer the life of this world over the Hereafter. Surely Allah never guides those who ˹choose to˺ disbelieve.
2009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They are the ones whose hearts, ears, and eyes are sealed by Allah, and it is they who are ˹truly˺ heedless.
2010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Without a doubt, they will be the losers in the Hereafter.
2011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As for those who emigrated after being compelled ˹to renounce Islam˺, then struggled ˹in Allah’s cause˺, and persevered, your Lord ˹O Prophet˺ is truly All-Forgiving, Most Merciful after all.
2012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Consider˺ the Day ˹when˺ every soul will come pleading for itself, and each will be paid in full for what it did, and none will be wronged.
2013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Allah sets forth the example of a society which was safe and at ease, receiving its provision in abundance from all directions. But its people met Allah’s favours with ingratitude, so Allah made them taste the clutches of hunger and fear for their misdeeds.
2014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A messenger of their own actually did come to them, but they denied him. So the torment overtook them while they persisted in wrongdoing.
2015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So eat from the good, lawful things which Allah has provided for you, and be grateful for Allah’s favours, if you ˹truly˺ worship Him ˹alone˺.
2016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He has only forbidden you ˹to eat˺ carrion, blood, swine, and what is slaughtered in the name of any other than Allah. But if someone is compelled by necessity—neither driven by desire nor exceeding immediate need—then surely Allah is All-Forgiving, Most Merciful.
2017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not falsely declare with your tongues, "This is lawful, and that is unlawful," ˹only˺ fabricating lies against Allah. Indeed, those who fabricate lies against Allah will never succeed.
2018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It is only˺ a brief enjoyment, then they will suffer a painful punishment.
2019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To the Jews, We have forbidden what We related to you before. We did not wrong them, but it was they who wronged themselves.
2020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who commit evil ignorantly ˹or recklessly˺, then repent afterwards and mend their ways, then your Lord is surely All-Forgiving, Most Merciful.
2021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Abraham was a model of excellence: devoted to Allah, ˹perfectly˺ upright—not a polytheist—
2022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹utterly˺ grateful for Allah’s favours. ˹So˺ He chose him and guided him to the Straight Path.
2023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We blessed him with all goodness in this world, and in the Hereafter he will certainly be among the righteous.
2024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We revealed to you ˹O Prophet, saying˺: "Follow the faith of Abraham, the upright, who was not one of the polytheists."
2025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Honouring˺ the Sabbath was ordained only for those who disputed about Abraham. And surely your Lord will judge between them on the Day of Judgment regarding their disputes.
2026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Invite ˹all˺ to the Way of your Lord with wisdom and kind advice, and only debate with them in the best manner. Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.
2027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If you retaliate, then let it be equivalent to what you have suffered. But if you patiently endure, it is certainly best for those who are patient.
2028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Be patient ˹O Prophet˺, for your patience is only with Allah’s help. Do not grieve over those ˹who disbelieve˺, nor be distressed by their schemes.
2029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely Allah is with those who shun evil and who do good ˹deeds˺.
2030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Glory be to the One Who took His servant ˹Muhammad˺ by night from the Sacred Mosque to the Farthest Mosque whose surroundings We have blessed, so that We may show him some of Our signs. alone is the All-Hearing, All-Seeing.
2031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We gave Moses the Scripture and made it a guide for the Children of Israel, ˹stating:˺ "Do not take besides Me any other Trustee of Affairs,
2032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹O˺ descendants of those We carried with Noah ˹in the Ark˺! He was indeed a grateful servant."
2033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We warned the Children of Israel in the Scripture, "You will certainly cause corruption in the land twice, and you will become extremely arrogant.
2034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When the first of the two warnings would come to pass, We would send against you some of Our servants of great might, who would ravage your homes. This would be a warning fulfilled.
2035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then ˹after your repentance˺ We would give you the upper hand over them and aid you with wealth and offspring, causing you to outnumber them.
2036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If you act rightly, it is for your own good, but if you do wrong, it is to your own loss. "And when the second warning would come to pass, your enemies would ˹be left to˺ totally disgrace you and enter the Temple ˹of Jerusalem˺ as they entered it the first time, and utterly destroy whatever would fall into their hands.
2037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Perhaps your Lord will have mercy on you ˹if you repent˺, but if you return ˹to sin˺, We will return ˹to punishment˺. And We have made Hell a ˹permanent˺ confinement for the disbelievers."
2038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely this Quran guides to what is most upright, and gives good news to the believers—who do good—that they will have a mighty reward.
2039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹it warns˺ those who do not believe in the Hereafter ˹that˺ We have prepared for them a painful punishment.
2040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And humans ˹swiftly˺ pray for evil as they pray for good. For humankind is ever hasty.
2041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We made the day and night as two signs. So We made the sign of the night devoid of light, and We made the sign of the day ˹perfectly˺ bright, so that you may seek the bounty of your Lord and know the number of years and calculation ˹of time˺. And We have explained everything in detail.
2042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have bound every human’s destiny to their neck. And on the Day of Judgment We will bring forth to each ˹person˺ a record which they will find laid open.
2043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹And it will be said,˺ "Read your record. You ˹alone˺ are sufficient this Day to take account of yourself."
2044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whoever chooses to be guided, it is only for their own good. And whoever chooses to stray, it is only to their own loss. No soul burdened with sin will bear the burden of another. And We would never punish ˹a people˺ until We have sent a messenger ˹to warn them˺.
2045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whenever We intend to destroy a society, We command its elite ˹to obey Allah˺ but they act rebelliously in it. So the decree ˹of punishment˺ is justified, and We destroy it utterly.
2046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Imagine˺ how many peoples We have destroyed after Noah! And sufficient is your Lord as All-Aware and All-Seeing of the sins of His servants.
2047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoever desires this fleeting world ˹alone˺, We hasten in it whatever We please to whoever We will; then We destine them for Hell, where they will burn, condemned and rejected.
2048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But whoever desires the Hereafter and strives for it accordingly, and is a ˹true˺ believer, it is they whose striving will be appreciated.
2049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We provide both the former and the latter from the bounty of your Lord. And the bounty of your Lord can never be withheld.
2050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    See how We have favoured some over others ˹in this life˺, but the Hereafter is certainly far greater in rank and in favour.
2051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do not set up any other god with Allah, or you will end up condemned, abandoned.
2052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For your Lord has decreed that you worship none but Him. And honour your parents. If one or both of them reach old age in your care, never say to them ˹even˺ ‘ugh,’ nor yell at them. Rather, address them respectfully.
2053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And be humble with them out of mercy, and pray, "My Lord! Be merciful to them as they raised me when I was young."
2054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Your Lord knows best what is within yourselves. If you are righteous, He is certainly All-Forgiving to those who ˹constantly˺ turn to Him.
2055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Give to close relatives their due, as well as the poor and ˹needy˺ travellers. And do not spend wastefully.
2056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely the wasteful are ˹like˺ brothers to the devils. And the Devil is ever ungrateful to his Lord.
2057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if you must turn them down ˹because you lack the means to give˺—while hoping to receive your Lord’s bounty—then ˹at least˺ give them a kind word.
2058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not be so tight-fisted, for you will be blameworthy; nor so open-handed, for you will end up in poverty.
2059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely your Lord gives abundant or limited provisions to whoever He wills. He is certainly All-Aware, All-Seeing of His servants.
2060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do not kill your children for fear of poverty. We provide for them and for you. Surely killing them is a heinous sin.
2061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do not go near adultery. It is truly a shameful deed and an evil way.
2062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do not take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right. for they are already supported ˹by law˺.
2063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do not come near the wealth of the orphan—unless intending to enhance it—until they attain maturity. Honour ˹your˺ pledges, for you will surely be accountable for them.
2064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Give in full when you measure, and weigh with an even balance. That is fairest and best in the end.
2065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do not follow what you have no ˹sure˺ knowledge of. Indeed, all will be called to account for ˹their˺ hearing, sight, and intellect.
2066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And do not walk on the earth arrogantly. Surely you can neither crack the earth nor stretch to the height of the mountains.
2067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The violation of any of these ˹commandments˺ is detestable to your Lord.
2068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is part of the wisdom which your Lord has revealed to you ˹O Prophet˺. And do not set up any other god with Allah ˹O humanity˺, or you will be cast into Hell, blameworthy, rejected.
2069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Has your Lord favoured you ˹pagans˺ with sons and taken angels as ˹His˺ daughters? You are truly making an outrageous claim.
2070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have surely varied ˹the signs˺ in this Quran so perhaps they may be mindful, but it only drives them farther away.
2071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "Had there been other gods besides Him—as they claim—then they would have certainly sought a way to ˹challenge˺ the Lord of the Throne."
2072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Glorified and Highly Exalted is He above what they claim!
2073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The seven heavens, the earth, and all those in them glorify Him. There is not a single thing that does not glorify His praises—but you ˹simply˺ cannot comprehend their glorification. He is indeed Most Forbearing, All-Forgiving.
2074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When you ˹O Prophet˺ recite the Quran, We put a hidden barrier between you and those who do not believe in the Hereafter.
2075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have cast veils over their hearts—leaving them unable to comprehend it—and deafness in their ears. And when you mention your Lord alone in the Quran, they turn their backs in aversion.
2076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We know best how they listen to your recitation and what they say privately—when the wrongdoers say, "You would only be following a bewitched man."
2077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              See how they call you names ˹O Prophet˺! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.
2078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they say ˹mockingly˺, "When we are reduced to bones and ashes, will we really be raised as a new creation?"
2079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "˹Yes, even if˺ you become stones, or iron,
2080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               or whatever you think is harder to bring to life!" Then they will ask ˹you˺, "Who will bring us back ˹to life˺?" Say, "The One Who created you the first time." They will then shake their heads at you and ask, "When will that be?" Say, "Perhaps it is soon!"
2081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   On the Day He will call you, you will ˹instantly˺ respond by praising Him, thinking you had remained ˹in the world˺ only for a little while.
2082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tell My ˹believing˺ servants to say only what is best. Satan certainly seeks to sow discord among them. Satan is indeed a sworn enemy to humankind.
2083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Your Lord knows you best. He may have mercy on you if He wills, or punish you if He wills. We have not sent you ˹O Prophet˺ as a keeper over them.
2084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Your Lord knows best all those in the heavens and the earth. And We have surely favoured some prophets above others, and to David We gave the Psalms.
2085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Invoke those you claim ˹to be divine˺ besides Him—they do not have the power to undo harm from you or transfer it ˹to someone else˺."
2086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Even˺ the closest ˹to Allah˺ of those invoked would be seeking a way to their Lord, hoping for His mercy, and fearing His punishment. Indeed, your Lord’s torment is fearsome.
2087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There is not a ˹wicked˺ society that We will not destroy or punish with a severe torment before the Day of Judgment. That is written in the Record.
2088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nothing keeps Us from sending the ˹demanded˺ signs except that they had ˹already˺ been denied by earlier peoples. And We gave Thamûd the she-camel as a clear sign, but they wrongfully rejected it. We only send the signs as a warning.
2089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹remember, O  Prophet˺ when We told you, "Certainly your Lord encompasses the people." And We have made what We brought you to see only as a test for the people. We keep warning them, but it only increases them greatly in defiance.
2090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹remember˺ when We said to the angels, "Prostrate before Adam," so they all did—but not Iblis, who protested, "Should I prostrate to the one You have created from mud?"
2091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Adding, "Do you see this one you honoured above me? If you delay my end until the Day of Judgment, I will certainly take hold of his descendants, except for a few."
2092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah responded, "Be gone! Whoever of them follows you, Hell will surely be the reward for all of you—an ample reward.
2093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And incite whoever you can of them with your voice, mobilize against them all your cavalry and infantry, manipulate them in their wealth and children, and make them promises." But Satan promises them nothing but delusion.
2094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Allah added,˺ "You will truly have no authority over My ˹faithful˺ servants." And sufficient is your Lord as a Guardian.
2095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is your Lord Who steers the ships for you through the sea, so that you may seek His bounty. Surely He is ever Merciful to you.
2096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When you are touched with hardship at sea, you ˹totally˺ forget all ˹the gods˺ you ˹normally˺ invoke, except Him. But when He delivers you ˹safely˺ to shore, you turn away. Humankind is ever ungrateful.
2097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do you feel secure that He will not cause the land to swallow you up, or unleash upon you a storm of stones? Then you will find none to protect you.
2098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or do you feel secure that He will not send you back to sea once again, and send upon you a violent storm, drowning you for your denial? Then you will find none to avenge you against Us.
2099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, We have dignified the children of Adam, carried them on land and sea, granted them good and lawful provisions, and privileged them far above many of Our creatures.
2100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Beware of˺ the Day We will summon every people with their leader. So whoever will be given their record in their right hand will read it ˹happily˺ and will not be wronged ˹even by the width of˺ the thread of a date stone.
2101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But whoever is blind ˹to the truth˺ in this ˹world˺ will be blind in the Hereafter, and ˹even˺ far more astray from the ˹Right˺ Way.
2102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They definitely ˹thought they˺ were about to lure you away from what We have revealed to you ˹O Prophet˺, hoping that you would attribute something else to Us falsely—and then they would have certainly taken you as a close friend.
2103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had We not made you steadfast, you probably would have inclined to them a little,
2104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and then We truly would have made you taste double ˹punishment˺ both in this life and after death, and you would have found no helper against Us.
2105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They were about to intimidate you to drive you out of the land ˹of Mecca˺, but then they would not have survived after you ˹had left˺ except for a little while.
2106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹This has been˺ Our way with the messengers We sent before you. And you will never find any change in Our way.
2107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Observe the prayer from the decline of the sun until the darkness of the night and the dawn prayer, for certainly the dawn prayer is witnessed ˹by angels˺.
2108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And rise at ˹the last˺ part of the night, offering additional prayers, so your Lord may raise you to a station of praise.
2109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And say, "My Lord! Grant me an honourable entrance and an honourable exit and give me a supporting authority from Yourself."
2110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And declare, "The truth has come and falsehood has vanished. Indeed, falsehood is bound to vanish."
2111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We send down the Quran as a healing and mercy for the believers, but it only increases the wrongdoers in loss.
2112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When We grant people Our favours, they turn away, acting arrogantly. But when touched with evil, they lose all hope.
2113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "Everyone acts in their own way. But your Lord knows best whose way is rightly guided."
2114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They ask you ˹O Prophet˺ about the spirit. Say, "Its nature is known only to my Lord, and you ˹O humanity˺ have been given but little knowledge."
2115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If We willed, We could have certainly taken away what We have revealed to you ˹O Prophet˺—then you would find none to guarantee its return from Us—
2116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            had it not been for the mercy of your Lord. Indeed, His favour upon you is immense.
2117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "If ˹all˺ humans and jinn were to come together to produce the equivalent of this Quran, they could not produce its equal, no matter how they supported each other."
2118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We have truly set forth every ˹kind of˺ lesson for humanity in this Quran, yet most people persist in disbelief.
2119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They challenge ˹the Prophet˺, "We will never believe in you until you cause a spring to gush forth from the earth for us,
2120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             or until you have a garden of palm trees and vineyards, and cause rivers to flow abundantly in it,
2121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        or cause the sky to fall upon us in pieces, as you have claimed, or bring Allah and the angels before us, face to face,
2122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             or until you have a house of gold, or you ascend into heaven—and even then we will not believe in your ascension until you bring down to us a book that we can read." Say, "Glory be to my Lord! Am I not only a human messenger?"
2123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And nothing has prevented people from believing when guidance comes to them except their protest: "Has Allah sent a human as a messenger?"
2124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Had there been angels walking the earth, well settled, We would have surely sent down for them an angel from heaven as a messenger."
2125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, "Sufficient is Allah as a Witness between me and you. He is certainly All-Knowing, All-Seeing of His servants."
2126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whoever Allah guides is truly guided. And whoever He leaves to stray, you will find no guardians for them besides Him. And We will drag them on their faces on the Day of Judgment—deaf, dumb, and blind. Hell will be their home. Whenever it dies down, We will flare it up for them.
2127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That is their reward for rejecting Our signs and asking ˹mockingly˺, "When we are reduced to bones and ashes, will we really be raised as a new creation?"
2128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have they not realized that Allah, Who created the heavens and the earth, can ˹easily˺ re-create them? He has ˹already˺ set for them a time, about which there is no doubt. But the wrongdoers persist in denial.
2129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say ˹to them, O  Prophet˺, "Even if you were to possess the ˹infinite˺ treasuries of my Lord’s mercy, then you would certainly withhold ˹them˺, fearing they would run out—for humankind is ever stingy!"
2130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We surely gave Moses nine clear signs. ˹You, O  Prophet, can˺ ask the Children of Israel. When Moses came to them, Pharaoh said to him, "I really think that you, O  Moses, are bewitched."
2131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moses replied, "You know well that none has sent these ˹signs˺ down except the Lord of the heavens and the earth as insights. And I really think that you, O  Pharaoh, are doomed."
2132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Pharaoh wanted to scare the Israelites out of the land ˹of Egypt˺, but We drowned him and all of those with him.
2133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We said to the Children of Israel after Pharaoh, "Reside in the land, but when the promise of the Hereafter comes to pass, We will bring you all together."
2134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We have sent down the Quran in truth, and with the truth it has come down. We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.
2135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹It is˺ a Quran We have revealed in stages so that you may recite it to people at a deliberate pace. And We have sent it down in successive revelations.
2136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "Believe in this ˹Quran˺, or do not. Indeed, when it is recited to those who were gifted with knowledge before it ˹was revealed˺, they fall upon their faces in prostration,
2137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and say, ‘Glory be to our Lord! Surely the promise of our Lord has been fulfilled.’
2138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they fall down upon their faces weeping, and it increases them in humility."
2139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Call upon Allah or call upon the Most Compassionate—whichever you call, He has the Most Beautiful Names." Do not recite your prayers too loudly or silently, but seek a way between.
2140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And say, "All praise is for Allah, Who has never had ˹any˺ offspring; And revere Him immensely."
2141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All praise is for Allah Who has revealed the Book to His servant, allowing no crookedness in it,
2142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹making it˺ perfectly upright, to warn ˹the disbelievers˺ of a severe torment from Him; to give good news to the believers—who do good—that they will have a fine reward,
2143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             in which they will remain forever;
2144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and to warn those who claim, "Allah has offspring."
2145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They have no knowledge of this, nor did their forefathers. What a terrible claim that comes out of their mouths! They say nothing but lies.
2146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now, perhaps you ˹O Prophet˺ will grieve yourself to death over their denial, if they ˹continue to˺ disbelieve in this message.
2147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have indeed made whatever is on earth as an adornment for it, in order to test which of them is best in deeds.
2148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We will certainly reduce whatever is on it to barren ground.
2149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have you ˹O Prophet˺ thought that the people of the cave and the plaque were ˹the only˺ wonders of Our signs?
2150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Remember˺ when those youths took refuge in the cave, and said, "Our Lord! Grant us mercy from Yourself and guide us rightly through our ordeal."
2151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So We caused them to fall into a dead sleep in the cave for many years,
2152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         then We raised them so We may show which of the two groups would make a better estimation of the length of their stay.
2153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We relate to you ˹O Prophet˺ their story in truth. They were youths who truly believed in their Lord, and We increased them in guidance.
2154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We strengthened their hearts when they stood up and declared, "Our Lord is the Lord of the heavens and the earth. We will never call upon any god besides Him, or we would truly be uttering an outrageous lie."
2155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Then they said to one another,˺ "These people of ours have taken gods besides Him. Why do they not produce a clear proof of them? Who then does more wrong than those who fabricate lies against Allah?
2156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Since you have distanced yourselves from them and what they worship besides Allah, take refuge in the cave. Your Lord will extend His mercy to you and accommodate you in your ordeal."
2157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And you would have seen the sun, as it rose, inclining away from their cave to the right, and as it set, declining away from them to the left, while they lay in its open space. That is one of the signs of Allah. Whoever Allah guides is truly guided. But whoever He leaves to stray, you will never find for them a guiding mentor.
2158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And you would have thought they were awake, though they were asleep. We turned them over, to the right and left, while their dog stretched his forelegs at the entrance. Had you looked at them, you would have certainly fled away from them, filled with horror.
2159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And so We awakened them so that they might question one another. One of them exclaimed, "How long have you remained ˹asleep˺?" Some replied, "Perhaps a day, or part of a day." They said ˹to one another˺, "Your Lord knows best how long you have remained. So send one of you with these silver coins of yours to the city, and let him find which food is the purest, and then bring you provisions from it. Let him be ˹exceptionally˺ cautious, and do not let him give you away.
2160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For, indeed, if they find out about you, they will stone you ˹to death˺, or force you back into their faith, and then you will never succeed."
2161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That is how We caused them to be discovered so that their people might know that Allah’s promise ˹of resurrection˺ is true and that there is no doubt about the Hour. some proposed, "Build a structure around them. Their Lord knows best about them." Those who prevailed in the matter said, "We will surely build a place of worship over them."
2162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Some will say, "They were three, their dog was the fourth," while others will say, "They were five, their dog was the sixth," ˹only˺ guessing blindly. And others will say, "They were seven and their dog was the eighth." Say, ˹O Prophet,˺ "My Lord knows best their ˹exact˺ number. Only a few people know as well." So do not argue about them except with sure knowledge, nor consult any of those ˹who debate˺ about them.
2163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And never say of anything, "I will definitely do this tomorrow,"
2164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     without adding, "if Allah so wills!" But if you forget, then remember your Lord, and say, "I trust my Lord will guide me to what is more right than this."
2165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They had remained in their cave for three hundred years, adding nine.
2166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Say, ˹O Prophet,˺ "Allah knows best how long they stayed. With Him ˹alone˺ is ˹the knowledge of˺ the unseen of the heavens and the earth. How perfectly He hears and sees! They have no guardian besides Him, and He shares His command with none."
2167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Recite what has been revealed to you from the Book of your Lord. None can change His Words, nor can you find any refuge besides Him.
2168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And patiently stick with those who call upon their Lord morning and evening, seeking His pleasure. Do not let your eyes look beyond them, desiring the luxuries of this worldly life. And do not obey those whose hearts We have made heedless of Our remembrance, who follow ˹only˺ their desires and whose state is ˹total˺ loss.
2169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And say, ˹O Prophet,˺ "˹This is˺ the truth from your Lord. Whoever wills let them believe, and whoever wills let them disbelieve." Surely We have prepared for the wrongdoers a Fire whose walls will ˹completely˺ surround them. When they cry for aid, they will be aided with water like molten metal, which will burn ˹their˺ faces. What a horrible drink! And what a terrible place to rest!
2170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for those who believe and do good, We certainly never deny the reward of those who are best in deeds.
2171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is they who will have the Gardens of Eternity, with rivers flowing under their feet. There they will be adorned with bracelets of gold, and wear green garments of fine silk and rich brocade, reclining there on ˹canopied˺ couches. What a marvellous reward! And what a fabulous place to rest!
2172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Give them ˹O Prophet˺ an example of two men. To ˹the disbelieving˺ one We gave two gardens of grapevines, which We surrounded with palm trees and placed ˹various˺ crops in between.
2173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Each garden yielded ˹all˺ its produce, never falling short. And We caused a river to flow between them.
2174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he had other resources ˹as well˺. So he boasted to a ˹poor˺ companion of his, while conversing with him, "I am greater than you in wealth and superior in manpower."
2175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he entered his property, while wronging his soul, saying, "I do not think this will ever perish,
2176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nor do I think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, I will definitely get a far better outcome than ˹all˺ this."
2177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     His ˹believing˺ companion replied, while conversing with him, "Do you disbelieve in the One Who created you from dust, then ˹developed you˺ from a sperm-drop, then formed you into a man?
2178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But as for me: He is Allah, my Lord, and I will never associate anyone with my Lord ˹in worship˺.
2179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If only you had said, upon entering your property, ‘This is what Allah has willed! There is no power except with Allah!’ Even though you see me inferior to you in wealth and offspring,
2180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  perhaps my Lord will grant me ˹something˺ better than your garden, and send down upon your garden a thunderbolt from the sky, turning it into a barren waste.
2181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or its water may sink ˹into the earth˺, and then you will never be able to seek it out."
2182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And so all his produce was ˹totally˺ ruined, so he started to wring his hands for all he had spent on it, while it had collapsed on its trellises. He cried, "Alas! I wish I had never associated anyone with my Lord ˹in worship˺!"
2183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he had no manpower to help him against Allah, nor could he ˹even˺ help himself.
2184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       At this time, support comes ˹only˺ from Allah—the True ˹Lord˺. He is best in reward and best in outcome.
2185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And give them a parable of this worldly life. ˹It is˺ like the plants of the earth, thriving when sustained by the rain We send down from the sky. Then they ˹soon˺ turn into chaff scattered by the wind. And Allah is fully capable of ˹doing˺ all things.
2186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wealth and children are the adornment of this worldly life, but the everlasting good deeds are far better with your Lord in reward and in hope.
2187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Beware of˺ the Day We will blow the mountains away, and you will see the earth laid bare. And We will gather all ˹humankind˺, leaving none behind.
2188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will be presented before your Lord in rows, ˹and the deniers will be told,˺ "You have surely returned to Us ˹all alone˺ as We created you the first time, although you ˹always˺ claimed that We would never appoint a time for your return."
2189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the record ˹of deeds˺ will be laid ˹open˺, and you will see the wicked in fear of what is ˹written˺ in it. They will cry, "Woe to us! What kind of record is this that does not leave any sin, small or large, unlisted?" They will find whatever they did present ˹before them˺. And your Lord will never wrong anyone.
2190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹remember˺ when We said to the angels, "Prostrate before Adam," so they all did—but not Iblis, who was one of the jinn, but he rebelled against the command of his Lord. Would you then take him and his descendants as patrons instead of Me, although they are your enemy? What an evil alternative for the wrongdoers ˹to choose˺!
2191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I never called them to witness the creation of the heavens and the earth or ˹even˺ their own creation, nor would I take the misleaders as helpers.
2192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹beware of˺ the Day He will say, "Call upon those you claimed were My associate-gods." So they will call them, but will receive no response. And We will make them ˹all˺ share in the same doom.
2193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The wicked will see the Fire and realize that they are bound to fall into it, and will find no way to avoid it.
2194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We have surely set forth in this Quran every ˹kind of˺ lesson for people, but humankind is the most argumentative of all beings.
2195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And nothing prevents people from believing when guidance comes to them and from seeking their Lord’s forgiveness except ˹their demand˺ to meet the same fate of earlier deniers or that the torment would confront them face to face.
2196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We do not send the messengers except as deliverers of good news and warners. But the disbelievers argue in falsehood, ˹hoping˺ to discredit the truth with it, and make a mockery of My revelations and warnings.
2197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And who does more wrong than those who, when reminded of their Lord’s revelations, turn away from them and forget what their own hands have done? We have certainly cast veils over their hearts—leaving them unable to comprehend this ˹Quran˺—and deafness in their ears. And if you ˹O Prophet˺ invite them to ˹true˺ guidance, they will never be ˹rightly˺ guided.
2198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Your Lord is the All-Forgiving, Full of Mercy. If He were to seize them ˹immediately˺ for what they commit, He would have certainly hastened their punishment. But they have an appointed time, from which they will find no refuge.
2199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those ˹are the˺ societies We destroyed when they persisted in wrong, and We had set a time for their destruction.
2200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember˺ when Moses said to his young assistant, "I will never give up until I reach the junction of the two seas, even if I travel for ages."
2201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But when they ˹finally˺ reached the point where the seas met, they forgot their ˹salted˺ fish, and it made its way into the sea, slipping away ˹wondrously˺.
2202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When they had passed further, he said to his assistant, "Bring us our meal! We have certainly been exhausted by today’s journey."
2203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He replied, "Do you remember when we rested by the rock? ˹That is when˺ I forgot the fish. None made me forget to mention this except Satan. And the fish made its way into the sea miraculously."
2204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses responded, "That is ˹exactly˺ what we were looking for." So they returned, retracing their footsteps.
2205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There they found a servant of Ours, to whom We had granted mercy from Us and enlightened with knowledge of Our Own.
2206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moses said to him, "May I follow you, provided that you teach me some of the right guidance you have been taught?"
2207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He said, "You certainly cannot be patient ˹enough˺ with me.
2208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And how can you be patient with what is beyond your ˹realm of˺ knowledge?"
2209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses assured ˹him˺, "You will find me patient, Allah willing, and I will not disobey any of your orders."
2210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He responded, "Then if you follow me, do not question me about anything until I ˹myself˺ clarify it for you."
2211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So they set out, but after they had boarded a ship, the man made a hole in it. Moses protested, "Have you done this to drown its people? You have certainly done a terrible thing!"
2212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He replied, "Did I not say that you cannot have patience with me?"
2213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moses pleaded, "Excuse me for forgetting, and do not be hard on me."
2214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So they proceeded until they came across a boy, and the man killed him. Moses protested, "Have you killed an innocent soul, who killed no one? You have certainly done a horrible thing."
2215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He answered, "Did I not tell you that you cannot have patience with me?"
2216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moses replied, "If I ever question you about anything after this, then do not keep me in your company, for by then I would have given you enough of an excuse."
2217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So they moved on until they came to the people of a town. They asked them for food, but the people refused to give them hospitality. There they found a wall ready to collapse, so the man set it right. Moses protested, "If you wanted, you could have demanded a fee for this."
2218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He replied, "This is the parting of our ways. I will explain to you what you could not bear patiently.
2219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "As for the ship, it belonged to some poor people, working at sea. So I intended to damage it, for there was a ˹tyrant˺ king ahead of them who seizes every ˹good˺ ship by force.
2220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 "And as for the boy, his parents were ˹true˺ believers, and we feared that he would pressure them into defiance and disbelief.
2221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So we hoped that their Lord would give them another, more virtuous and caring in his place.
2222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "And as for the wall, it belonged to two orphan boys in the city, and under the wall was a treasure that belonged to them, and their father had been a righteous man. So your Lord willed that these children should come of age and retrieve their treasure, as a mercy from your Lord. I did not do it ˹all˺ on my own. This is the explanation of what you could not bear patiently."
2223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They ask you ˹O Prophet˺ about Ⱬul-Qarnain. Say, "I will relate to you something of his narrative."
2224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely We established him in the land, and gave him the means to all things.
2225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So he travelled a course,
2226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                until he reached the setting ˹point˺ of the sun, which appeared to him to be setting in a spring of murky water, where he found some people. We said, "O Ⱬul-Qarnain! Either punish them or treat them kindly."
2227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He responded, "Whoever does wrong will be punished by us, then will be returned to their Lord, Who will punish them with a horrible torment.
2228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As for those who believe and do good, they will have the finest reward, and we will assign them easy commands."
2229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then he travelled a ˹different˺ course
2230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    until he reached the rising ˹point˺ of the sun. He found it rising on a people for whom We had provided no shelter from it.
2231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So it was. And We truly had full knowledge of him.
2232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then he travelled a ˹third˺ course
2233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                until he reached ˹a pass˺ between two mountains. He found in front of them a people who could hardly understand ˹his˺ language.
2234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They pleaded, "O Ⱬul-Qarnain! Surely Gog and Magog are spreading corruption throughout the land. Should we pay you tribute, provided that you build a wall between us and them?"
2235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He responded, "What my Lord has provided for me is far better. But assist me with resources, and I will build a barrier between you and them.
2236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Bring me blocks of iron!" Then, when he had filled up ˹the gap˺ between the two mountains, he ordered, "Blow!" When the iron became red hot, he said, "Bring me molten copper to pour over it."
2237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And so the enemies could neither scale nor tunnel through it.
2238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He declared, "This is a mercy from my Lord. But when the promise of my Lord comes to pass, He will level it to the ground. And my Lord’s promise is ever true."
2239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On that Day, We will let them and We will gather all ˹people˺ together.
2240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 On that Day We will display Hell clearly for the disbelievers,
2241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             those who turned a blind eye to My Reminder and could not stand listening ˹to it˺.
2242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do the disbelievers think they can ˹simply˺ take My servants as lords instead of Me? We have surely prepared Hell as an accommodation for the disbelievers.
2243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Shall we inform you of who will lose the most deeds?
2244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹They are˺ those whose efforts are in vain in this worldly life, while they think they are doing good!"
2245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is they who reject the signs of their Lord and their meeting with Him, rendering their deeds void, so We will not give their deeds any weight on Judgment Day.
2246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That is their reward: Hell, for their disbelief and mockery of My signs and messengers.
2247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, those who believe and do good will have the Gardens of Paradise as an accommodation,
2248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      where they will be forever, never desiring anywhere else.
2249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "If the ocean were ink for ˹writing˺ the Words of my Lord, it would certainly run out before the Words of my Lord were finished, even if We refilled it with its equal."
2250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So whoever hopes for the meeting with their Lord, let them do good deeds and associate none in the worship of their Lord."
2251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Kãf-Ha-Ya-’Aĩn- sãd.
2252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹This is˺ a reminder of your Lord’s mercy to His servant Zachariah,
2253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       when he cried out to his Lord privately,
2254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               saying, "My Lord! Surely my bones have become brittle, and grey hair has spread across my head, but I have never been disappointed in my prayer to You, my Lord!
2255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I am concerned about ˹the faith of˺ my relatives after me, since my wife is barren. So grant me, by Your grace, an heir,
2256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who will inherit ˹prophethood˺ from me and the family of Jacob, and make him, O  Lord, pleasing ˹to You˺!"
2257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹The angels announced,˺ "O Zachariah! Indeed, We give you the good news of ˹the birth of˺ a son, whose name will be John—a name We have not given to anyone before."
2258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He wondered, "My Lord! How can I have a son when my wife is barren, and I have become extremely old?"
2259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   An angel replied, "So will it be! Your Lord says, ‘It is easy for Me, just as I created you before, when you were nothing!’"
2260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Zachariah said, "My Lord! Grant me a sign." He responded, "Your sign is that you will not ˹be able to˺ speak to people for three nights, despite being healthy."
2261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So he came out to his people from the sanctuary, signalling to them to glorify ˹Allah˺ morning and evening.
2262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹It was later said,˺ "O John! Hold firmly to the Scriptures." And We granted him wisdom while ˹he was still˺ a child,
2263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              as well as purity and compassion from Us. And he was God-fearing,
2264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and kind to his parents. He was neither arrogant nor disobedient.
2265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Peace be upon him the day he was born, and the day of his death, and the day he will be raised back to life!
2266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And mention in the Book ˹O Prophet, the story of˺ Mary when she withdrew from her family to a place in the east,
2267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    screening herself off from them. Then We sent to her Our angel, ˹Gabriel,˺ appearing before her as a man, perfectly formed.
2268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            She appealed, "I truly seek refuge in the Most Compassionate from you! ˹So leave me alone˺ if you are God-fearing."
2269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He responded, "I am only a messenger from your Lord, ˹sent˺ to bless you with a pure son."
2270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       She wondered, "How can I have a son when no man has ever touched me, nor am I unchaste?"
2271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He replied, "So will it be! Your Lord says, ‘It is easy for Me. And so will We make him a sign for humanity and a mercy from Us.’ It is a matter ˹already˺ decreed."
2272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So she conceived him and withdrew with him to a remote place.
2273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then the pains of labour drove her to the trunk of a palm tree. She cried, "Alas! I wish I had died before this, and was a thing long forgotten!"
2274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So a voice reassured her from below her, "Do not grieve! Your Lord has provided a stream at your feet.
2275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And shake the trunk of this palm tree towards you, it will drop fresh, ripe dates upon you.
2276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So eat and drink, and put your heart at ease. But if you see any of the people, say, ‘I have vowed silence to the Most Compassionate, so I am not talking to anyone today.’"
2277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then she returned to her people, carrying him. They said ˹in shock˺, "O Mary! You have certainly done a horrible thing!
2278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O  sister of Aaron! Your father was not an indecent man, nor was your mother unchaste."
2279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So she pointed to the baby. They exclaimed, "How can we talk to someone who is an infant in the cradle?"
2280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Jesus˺ declared, "I am truly a servant of Allah. He has destined me to be given the Scripture and to be a prophet.
2281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He has made me a blessing wherever I go, and bid me to establish prayer and give alms-tax as long as I live,
2282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and to be kind to my mother. He has not made me arrogant or defiant.
2283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Peace be upon me the day I was born, the day I die, and the day I will be raised back to life!"
2284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That is Jesus, son of Mary. ˹And this is˺ a word of truth, about which they dispute.
2285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is not for Allah to take a son! Glory be to Him. When He decrees a matter, He simply tells it, "Be!" And it is!
2286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Jesus also declared,˺ "Surely Allah is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path."
2287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the disbelievers when they face a tremendous Day!
2288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               How clearly will they hear and see on the Day they will come to Us! But today the wrongdoers are clearly astray.
2289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And warn them ˹O Prophet˺ of the Day of Regret, when all matters will be settled, while they are ˹engrossed˺ in heedlessness and disbelief.
2290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, it is We Who will succeed the earth and whoever is on it. And to Us they will ˹all˺ be returned.
2291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And mention in the Book ˹O Prophet, the story of˺ Abraham. He was surely a man of truth and a prophet.
2292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember˺ when he said to his father, "O dear father! Why do you worship what can neither hear nor see, nor benefit you at all?
2293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O  dear father! I have certainly received some knowledge which you have not received, so follow me and I will guide you to the Straight Path.
2294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O  dear father! Do not worship Satan. Surely Satan is ever rebellious against the Most Compassionate.
2295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O  dear father! I truly fear that you will be touched by a torment from the Most Compassionate, and become Satan’s companion ˹in Hell˺."
2296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He threatened, "How dare you reject my idols, O  Abraham! If you do not desist, I will certainly stone you ˹to death˺. So be gone from me for a long time!"
2297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Abraham responded, "Peace be upon you! I will pray to my Lord for your forgiveness. He has truly been Most Gracious to me.
2298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As I distance myself from ˹all of˺ you and from whatever you invoke besides Allah, I will ˹continue to˺ call upon my Lord ˹alone˺, trusting that I will never be disappointed in invoking my Lord."
2299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So after he had left them and what they worshipped besides Allah, We granted him Isaac and Jacob, and made each of them a prophet.
2300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We showered them with Our mercy, and blessed them with honourable mention.
2301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And mention in the Book ˹O Prophet, the story of˺ Moses. He was truly a chosen man, and was a messenger and a prophet.
2302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We called him from the right side of Mount Ṭûr, and drew him near, speaking ˹with him˺ directly.
2303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We appointed for him—out of Our grace—his brother, Aaron, as a prophet.
2304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And mention in the Book ˹O Prophet, the story of˺ Ishmael. He was truly a man of his word, and was a messenger and a prophet.
2305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He used to urge his people to pray and give alms-tax. And his Lord was well pleased with him.
2306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And mention in the Book ˹O Prophet, the story of˺ Enoch. He was surely a man of truth and a prophet.
2307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We elevated him to an honourable status.
2308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Those were ˹some of˺ the prophets who Allah has blessed from among the descendants of Adam, and of those We carried with Noah ˹in the Ark˺, and of the descendants of Abraham and Israel, and of those We ˹rightly˺ guided and chose. Whenever the revelations of the Most Compassionate were recited to them, they fell down, prostrating and weeping.
2309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But they were succeeded by generations who neglected prayer and followed their lusts and so will soon face the evil consequences.
2310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who repent, believe, and do good, it is they who will be admitted into Paradise, never being denied any reward.
2311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They will be in˺ the Gardens of Eternity, promised in trust by the Most Compassionate to His servants. Surely His promise will be fulfilled.
2312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             There they will never hear any idle talk—only ˹greetings of˺ peace. And there they will have their provisions morning and evening.
2313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That is Paradise, which We will grant to whoever is devout among Our servants.
2314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "We only descend by the command of your Lord. To Him belongs whatever is before us, and whatever is behind us, and everything in between. And your Lord is never forgetful.
2315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹He is the˺ Lord of the heavens, and the earth, and everything in between. So worship Him ˹alone˺, and be steadfast in His worship. Do you know of anyone equal to Him ˹in His attributes˺?"
2316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet ˹some˺ people ask ˹mockingly˺, "After I die, will I really be raised to life again?"
2317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do ˹such˺ people not remember that We created them before, when they were nothing?
2318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By your Lord ˹O Prophet˺! We will surely gather them along with the devils, and then set them around Hell on their knees.
2319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We will certainly begin by dragging out of every group the ones most defiant to the Most Compassionate.
2320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We truly know best who is most deserving of burning in it.
2321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There is none of you who will not pass over it. ˹This is˺ a decree your Lord must fulfil.
2322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then We will deliver those who were devout, leaving the wrongdoers there on their knees.
2323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When Our clear revelations are recited to them, the disbelievers ask the believers ˹mockingly˺, "Which of the two of us is better in status and superior in assembly?"
2324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Imagine, O  Prophet˺ how many peoples We have destroyed before them, who were far better in luxury and splendour!
2325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Whoever is ˹entrenched˺ in misguidance, the Most Compassionate will allow them plenty of time, until—behold!—they face what they are threatened with: either the torment or the Hour. Only then will they realize who is worse in position and inferior in manpower."
2326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Allah increases in guidance those who are ˹rightly˺ guided. And the everlasting good deeds are far better with your Lord in reward and in outcome.
2327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have you seen ˹O Prophet˺ the one who rejects Our revelations yet boasts, "I will definitely be granted ˹plenty of˺ wealth and children ˹if there is an afterlife˺."?
2328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Has he looked into the unseen or taken a pledge from the Most Compassionate?
2329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Not at all! We certainly record whatever he claims and will increase his punishment extensively.
2330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And We will inherit what he boasts of, and he will come before Us all by himself.
2331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They have taken other gods, instead of Allah, seeking strength ˹and protection˺ through them.
2332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But no! Those ˹gods˺ will deny their worship and turn against them.
2333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do you ˹O Prophet˺ not see that We have sent the devils against the disbelievers, constantly inciting them?
2334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So do not be in haste against them, for indeed We are ˹closely˺ counting down their days.
2335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Watch for˺ the Day We will gather the righteous before the Most Compassionate as an honoured delegation,
2336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and drive the wicked to Hell like a thirsty herd.
2337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     None will have the right to intercede, except those who have taken a covenant from the Most Compassionate.
2338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They say, "The Most Compassionate has offspring."
2339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You have certainly made an outrageous claim,
2340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      by which the heavens are about to burst, the earth to split apart, and the mountains to crumble to pieces
2341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  in protest of attributing children to the Most Compassionate.
2342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It does not befit ˹the majesty of˺ the Most Compassionate to have children.
2343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There is none in the heavens or the earth who will not return to the Most Compassionate in full submission.
2344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, He fully knows them and has counted them precisely.
2345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And each of them will return to Him on the Day of Judgment all alone.
2346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who believe and do good, the Most Compassionate will ˹certainly˺ bless them with ˹genuine˺ love.
2347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so with it you may give good news to the righteous and warn those who are contentious.
2348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Imagine˺ how many peoples We have destroyed before them! Do you ˹still˺ see any of them, or ˹even˺ hear from them the slightest sound?
2349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ṭa-Ha.
2350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We have not revealed the Quran to you ˹O Prophet˺ to cause you distress,
2351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  but as a reminder to those in awe ˹of Allah˺.
2352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹It is˺ a revelation from the One Who created the earth and the high heavens—
2353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the Most Compassionate, ˹Who is˺ established on the Throne.
2354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To Him belongs whatever is in the heavens and whatever is on the earth and whatever is in between and whatever is underground.
2355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whether you speak openly ˹or not˺, He certainly knows what is secret and what is even more hidden.
2356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah—there is no god ˹worthy of worship˺ except Him. He has the Most Beautiful Names.
2357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Has the story of Moses reached you ˹O Prophet˺?
2358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When he saw a fire, he said to his family, "Wait here, ˹for˺ I have spotted a fire. Perhaps I can bring you a torch from it, or find some guidance at the fire."
2359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But when he approached it, he was called, "O Moses!
2360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is truly I. I am your Lord! So take off your sandals, for you are in the sacred valley of Ṭuwa.
2361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have chosen you, so listen to what is revealed:
2362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ‘It is truly I. I am Allah! There is no god ˹worthy of worship˺ except Me. So worship Me ˹alone˺, and establish prayer for My remembrance.
2363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Hour is sure to come. My Will is to keep it hidden, so that every soul may be rewarded according to their efforts.
2364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So do not let those who disbelieve in it and follow their desires distract you from it, or you will be doomed.’"
2365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Allah added,˺ "And what is that in your right hand, O  Moses?"
2366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He replied, "It is my staff! I lean on it, and with it I beat down ˹branches˺ for my sheep, and have other uses for it."
2367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah said, "Throw it down, O  Moses!"
2368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he did, then—behold!—it became a serpent, slithering.
2369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah said, "Take it, and have no fear. We will return it to its former state.
2370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And put your hand under your armpit, it will come out ˹shining˺ white, unblemished, as another sign,
2371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            so that We may show you some of Our greatest signs.
2372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Go to Pharaoh, for he has truly transgressed ˹all bounds˺."
2373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moses prayed, "My Lord! Uplift my heart for me,
2374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and make my task easy,
2375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and remove the impediment from my tongue
2376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            so people may understand my speech,
2377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and grant me a helper from my family,
2378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Aaron, my brother.
2379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Strengthen me through him,
2380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and let him share my task,
2381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                so that we may glorify You much
2382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and remember You much,
2383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               for truly You have ˹always˺ been overseeing us."
2384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah responded, "All that you requested has been granted, O  Moses!
2385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And surely We had shown You favour before,
2386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        when We inspired your mother with this:
2387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ‘Put him into a chest, then put it into the river. The river will wash it ashore, and he will be taken by ˹Pharaoh,˺ an enemy of Mine and his.’ And I blessed you with lovability from Me ˹O Moses˺ so that you would be brought up under My ˹watchful˺ Eye.
2388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember˺ when your sister came along and proposed, ‘Shall I direct you to someone who will nurse him?’ So We reunited you with your mother so that her heart would be put at ease, and she would not grieve. ˹Later˺ you killed a man ˹by mistake˺, but We saved you from sorrow, as well as other tests We put you through. Then you stayed for a number of years among the people of Midian. Then you came here as pre-destined, O  Moses!
2389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I have selected you for My service.
2390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Go forth, you and your brother, with My signs and never falter in remembering Me.
2391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Go, both of you, to Pharaoh, for he has truly transgressed ˹all bounds˺.
2392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Speak to him gently, so perhaps he may be mindful ˹of Me˺ or fearful ˹of My punishment˺."
2393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They both pleaded, "Our Lord! We fear that he may be quick to harm us or act tyrannically."
2394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah reassured ˹them˺, "Have no fear! I am with you, hearing and seeing.
2395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So go to him and say, ‘Indeed we are both messengers from your Lord, so let the Children of Israel go with us, and do not oppress them. We have come to you with a sign from your Lord. And salvation will be for whoever follows the ˹right˺ guidance.
2396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It has indeed been revealed to us that the punishment will be upon whoever denies ˹the truth˺ and turns away.’"
2397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pharaoh asked, "Who then is the Lord of you two, O  Moses?"
2398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He answered, "Our Lord is the One Who has given everything its ˹distinctive˺ form, then guided ˹it˺."
2399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharaoh asked, "And what about previous peoples?"
2400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He replied, "That knowledge is with my Lord in a Record. My Lord neither falters nor forgets ˹anything˺."
2401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹He is the One˺ Who has laid out the earth for ˹all of˺ you, and set in it pathways for you, and sends down rain from the sky, causing various types of plants to grow,
2402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹so˺ eat and graze your cattle. Surely in this are signs for people of sound judgment.
2403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From the earth We created you, and into it We will return you, and from it We will bring you back again.
2404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We certainly showed Pharaoh all of Our signs, but he denied them and refused ˹to believe˺.
2405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He said, "Have you come to drive us out of our land with your magic, O  Moses?
2406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We can surely meet you with similar magic. So set for us an appointment that neither of us will fail to keep, in a central place."
2407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moses said, "Your appointment is on the Day of the Festival, and let the people be gathered mid-morning."
2408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Pharaoh then withdrew, orchestrated his scheme, then returned.
2409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moses warned the magicians, "Woe to you! Do not fabricate a lie against Allah, or He will wipe you out with a torment. Whoever fabricates ˹lies˺ is bound to fail."
2410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So the magicians disputed the matter among themselves, conversing privately.
2411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They concluded, "These two are only magicians who want to drive you out of your land with their magic, and do away with your most cherished traditions.
2412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So orchestrate your plan, then come forward in ˹perfect˺ ranks. And whoever prevails today will certainly be successful."
2413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They said, "O Moses! Either you cast, or let us be the first to cast."
2414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moses responded, "No, you go first." And suddenly their ropes and staffs appeared to him—by their magic—to be slithering.
2415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Moses concealed fear within himself.
2416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We reassured ˹him˺, "Do not fear! It is certainly you who will prevail.
2417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cast what is in your right hand, and it will swallow up what they have made, for what they have made is no more than a magic trick. And magicians can never succeed wherever they go."
2418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So the magicians fell down in prostration, declaring, "We believe in the Lord of Aaron and Moses."
2419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pharaoh threatened, "How dare you believe in him before I give you permission? He must be your master who taught you magic. I will certainly cut off your hands and feet on opposite sides, and crucify you on the trunks of palm trees. You will really see whose punishment is more severe and more lasting."
2420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They responded, "By the One Who created us! We will never prefer you over the clear proofs that have come to us. So do whatever you want! Your authority only covers the ˹fleeting˺ life of this world.
2421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, we have believed in our Lord so He may forgive our sins and that magic you have forced us to practice. And Allah is far superior ˹in reward˺ and more lasting ˹in punishment˺."
2422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whoever comes to their Lord as an evildoer will certainly have Hell, where they can neither live nor die.
2423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But whoever comes to Him as a believer, having done good, they will have the highest ranks:
2424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             the Gardens of Eternity, under which rivers flow, where they will stay forever. That is the reward of those who purify themselves.
2425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We surely inspired Moses, ˹saying,˺ "Leave with My servants ˹at night˺ and strike a dry passage for them across the sea. Have no fear of being overtaken, nor be concerned ˹of drowning˺."
2426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Pharaoh pursued them with his soldiers—but how overwhelming were the waters that submerged them!
2427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹so˺ Pharaoh led his people astray, and did not guide ˹them rightly˺.
2428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O Children of Israel! We saved you from your enemy, and made an appointment with you
2429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹saying,˺ "Eat from the good things We have provided for you, but do not transgress in them, or My wrath will befall you. And whoever My wrath befalls is certainly doomed.
2430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But I am truly Most Forgiving to whoever repents, believes, and does good, then persists on ˹true˺ guidance."
2431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Allah asked,˺ "Why have you come with such haste ahead of your people, O  Moses?"
2432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He replied, "They are close on my tracks. And I have hastened to You, my Lord, so You will be pleased."
2433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah responded, "We have indeed tested your people in your absence, and the Samiri has led them astray."
2434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Moses returned to his people, furious and sorrowful. He said, "O my people! Had your Lord not made you a good promise?
2435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They argued, "We did not break our promise to you of our own free will, but we were made to carry the burden of the people’s ˹golden˺ jewellery, then we threw it ˹into the fire˺, and so did the Samiri."
2436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then he moulded for them an idol of a calf that made a lowing sound. They said, "This is your god and the god of Moses, but Moses forgot ˹where it was˺!"
2437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Did they not see that it did not respond to them, nor could it protect or benefit them?
2438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Aaron had already warned them beforehand, "O my people! You are only being tested by this, for indeed your ˹one true˺ Lord is the Most Compassionate. So follow me and obey my orders."
2439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They replied, "We will not cease to worship it until Moses returns to us."
2440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses scolded ˹his brother˺, "O Aaron! What prevented you, when you saw them going astray,
2441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     from following after me? How could you disobey my orders?"
2442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Aaron pleaded, "O son of my mother! Do not seize me by my beard or ˹the hair of˺ my head. I really feared that you would say, ‘You have caused division among the Children of Israel, and did not observe my word.’"
2443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moses then asked, "What did you think you were doing, O  Samiri?"
2444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He said, "I saw what they did not see, so I took a handful ˹of dust˺ from the hoof-prints of ˹the horse of˺ the messenger-angel ˹Gabriel˺ then cast it ˹on the moulded calf˺. This is what my lower-self tempted me into."
2445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moses said, "Go away then! And for ˹the rest of your˺ life you will surely be crying, ‘Do not touch ˹me˺!’ that you cannot escape. Now look at your god to which you have been devoted: we will burn it up, then scatter it in the sea completely."
2446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Then Moses addressed his people,˺ "Your only god is Allah, there is no god ˹worthy of worship˺ except Him. He encompasses everything in ˹His˺ knowledge."
2447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is how We relate to you ˹O Prophet˺ some of the stories of the past. And We have certainly granted you a Reminder from Us.
2448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whoever turns away from it will surely bear the burden ˹of sin˺ on the Day of Judgment,
2449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       suffering its consequences forever. What an evil burden they will carry on Judgment Day!
2450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Beware of˺ the Day the Trumpet will be blown,
2451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They will whisper among themselves, "You stayed no more than ten days ˹on the earth˺."
2452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We know best what they will say—the most reasonable of them will say, "You stayed no more than a day."
2453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹if˺ they ask you ˹O Prophet˺ about the mountains, ˹then˺ say, "My Lord will wipe them out completely,
2454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              leaving the earth level and bare,
2455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           with neither depressions nor elevations to be seen."
2456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On that Day all will follow the caller ˹for assembly˺, ˹and˺ none will dare to deviate. All voices will be hushed before the Most Compassionate. Only whispers will be heard.
2457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On that Day no intercession will be of any benefit, except by those granted permission by the Most Compassionate and whose words are agreeable to Him.
2458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He ˹fully˺ knows what is ahead of them and what is behind them,
2459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all faces will be humbled before the Ever-Living, All-Sustaining. And those burdened with wrongdoing will be in loss.
2460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But whoever does good and is a believer will have no fear of being wronged or denied ˹their reward˺.
2461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And so We have sent it down as an Arabic Quran and varied the warnings in it, so perhaps they will shun evil or it may cause them to be mindful.
2462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Exalted is Allah, the True King! Do not rush to recite ˹a revelation of˺ the Quran ˹O Prophet˺ before it is ˹properly˺ conveyed to you, and pray, "My Lord! Increase me in knowledge."
2463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And indeed, We once made a covenant with Adam, but he forgot, and ˹so˺ We did not find determination in him.
2464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹remember˺ when We said to the angels, "Prostrate before Adam," so they all did—but not Iblis, who refused ˹arrogantly˺.
2465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So We cautioned, "O Adam! This is surely an enemy to you and to your wife. So do not let him drive you both out of Paradise, for you ˹O Adam˺ would then suffer ˹hardship˺.
2466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Here it is guaranteed that you will never go hungry or unclothed,
2467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   nor will you ˹ever˺ suffer from thirst or ˹the sun’s˺ heat."
2468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But Satan whispered to him, saying, "O Adam! Shall I show you the Tree of Immortality and a kingdom that does not fade away?"
2469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they both ate from the tree and then their nakedness was exposed to them, prompting them to cover themselves with leaves from Paradise. So Adam disobeyed his Lord, and ˹so˺ lost his way.
2470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then his Lord chose him ˹for His grace˺, accepted his repentance, and guided him ˹rightly˺.
2471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah said, "Descend, both of you, from here together ˹with Satan˺ as enemies to each other. Then when guidance comes to you from Me, whoever follows My guidance will neither go astray ˹in this life˺ nor suffer ˹in the next˺.
2472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But whoever turns away from My Reminder will certainly have a miserable life, then We will raise them up blind on the Day of Judgment."
2473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will cry, "My Lord! Why have you raised me up blind, although I used to see?"
2474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah will respond, "It is so, just as Our revelations came to you and you neglected them, so Today you are neglected."
2475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is how We reward whoever transgresses and does not believe in the revelations of their Lord. And the punishment of the Hereafter is far more severe and more lasting.
2476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs for people of sound judgment.
2477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Had it not been for a prior decree from your Lord ˹O Prophet˺ and a term already set, their ˹instant˺ doom would have been inevitable.
2478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset, and glorify Him in the hours of the night and at both ends of the day, so that you may be pleased ˹with the reward˺.
2479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do not let your eyes crave what We have allowed some of the disbelievers to enjoy; the ˹fleeting˺ splendour of this worldly life, which We test them with. But your Lord’s provision ˹in the Hereafter˺ is far better and more lasting.
2480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Bid your people to pray, and be diligent in ˹observing˺ it. We do not ask you to provide. It is We Who provide for you. And the ultimate outcome is ˹only˺ for ˹the people of˺ righteousness.
2481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They demand, "If only he could bring us a sign from his Lord!"
2482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Had We destroyed them with a torment before this ˹Prophet came˺, they would have surely argued, "Our Lord! If only You had sent us a messenger, we would have followed Your revelations before being humiliated and put to shame."
2483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say ˹to them, O  Prophet˺, "Each ˹of us˺ is waiting, so keep waiting! You will soon know who is on the Straight Path and is ˹rightly˺ guided."
2484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹The time of˺ people’s judgment has drawn near, yet they are heedlessly turning away.
2485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whatever new reminder comes to them from their Lord, they only listen to it jokingly,
2486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   with their hearts ˹totally˺ distracted. The evildoers would converse secretly, ˹saying,˺ "Is this ˹one˺ not human like yourselves? Would you fall for ˹this˺ witchcraft, even though you can ˹clearly˺ see?"
2487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Prophet responded, "My Lord ˹fully˺ knows every word spoken in the heavens and the earth. For He is the All-Hearing, All-Knowing."
2488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet they say, "This ˹Quran˺ is a set of confused dreams! No, he has fabricated it! No, he must be a poet! So let him bring us a ˹tangible˺ sign like those ˹prophets˺ sent before."
2489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Not a ˹single˺ society We destroyed before them ever believed ˹after receiving the signs˺. Will these ˹pagans˺ then believe?
2490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We did not send ˹messengers˺ before you ˹O Prophet˺ except mere men inspired by Us. If you ˹polytheists˺ do not know ˹this already˺, then ask those who have knowledge ˹of the Scriptures˺.
2491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We did not give those messengers ˹supernatural˺ bodies that did not need food, nor were they immortal.
2492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then We fulfilled Our promise to them, saving them along with whoever We willed and destroying the transgressors.
2493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have surely revealed to you a Book, in which there is glory for you. Will you not then understand?
2494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Imagine˺ how many societies of wrongdoers We have destroyed, raising up other people after them!
2495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When the wrongdoers sensed ˹the arrival of˺ Our torment, they started to run away from their cities.
2496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹They were told,˺ "Do not run away! Return to your luxuries and your homes, so you may be questioned ˹about your fate˺."
2497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They cried, "Woe to us! We have surely been wrongdoers."
2498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They kept repeating their cry until We mowed them down, ˹leaving them˺ lifeless.
2499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We did not create the heavens and the earth and everything in between for sport.
2500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Had We intended to take ˹some˺ amusement, We could have found it in Our presence, if that had been Our Will.
2501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In fact, We hurl the truth against falsehood, leaving it crushed, and it quickly vanishes. And woe be to you for what you claim!
2502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Him belong all those in the heavens and the earth. And those nearest to Him are not too proud to worship Him, nor do they tire.
2503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They glorify ˹Him˺ day and night, never wavering.
2504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or have they taken gods from the earth, who can raise the dead?
2505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Had there been other gods besides Allah in the heavens or the earth, both ˹realms˺ would have surely been corrupted. So Glorified is Allah, Lord of the Throne, far above what they claim.
2506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He cannot be questioned about what He does, but they will ˹all˺ be questioned.
2507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or have they taken other gods besides Him? Say, ˹O Prophet,˺ "Show ˹me˺ your proof. Here is ˹the Quran,˺ the Reminder for those with me; along with ˹earlier Scriptures,˺ the Reminder for those before me." But most of them do not know the truth, so they turn away.
2508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We never sent a messenger before you ˹O Prophet˺ without revealing to him: "There is no god ˹worthy of worship˺ except Me, so worship Me ˹alone˺."
2509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they say, "The Most Compassionate has offspring!" Glory be to Him! In fact, those ˹angels˺ are only ˹His˺ honoured servants,
2510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            who do not speak until He has spoken, ˹only˺ acting at His command.
2511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He ˹fully˺ knows what is ahead of them and what is behind them. They do not intercede except for whom He approves, and they tremble in awe of Him.
2512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever of them were to say, "I am a god besides Him," they would be rewarded with Hell by Us. This is how We reward the wrongdoers.
2513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do the disbelievers not realize that the heavens and earth were ˹once˺ one mass then We split them apart? And We created from water every living thing. Will they not then believe?
2514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And We have placed firm mountains upon the earth so it does not shake with them, and made in it broad pathways so they may find their way.
2515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We have made the sky a well-protected canopy, still they turn away from its signs.
2516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And He is the One Who created the day and the night, the sun and the moon—each travelling in an orbit.
2517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have not granted immortality to any human before you ˹O Prophet˺: so if you die, will they live forever?
2518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Every soul will taste death. And We test you ˹O humanity˺ with good and evil as a trial, then to Us you will ˹all˺ be returned.
2519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When the disbelievers see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ "Is this the one who speaks ˹ill˺ of your gods?" while they disbelieve at the mention of the Most Compassionate.
2520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Humankind is made of haste. I will soon show you My signs, so do not ask Me to hasten them.
2521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They ask ˹the believers˺, "When will this threat come to pass if what you say is true?"
2522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If only the disbelievers knew that a time will come when they will not be able to keep the Fire off their faces or backs, nor will they be helped.
2523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In fact, the Hour will take them by surprise, leaving them stunned. So they will not be able to avert it, nor will it be delayed from them.
2524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Other˺ messengers had already been ridiculed before you ˹O Prophet˺, but those who mocked them were overtaken by what they used to ridicule.
2525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ask ˹them, O  Prophet,˺ "Who can defend you by day or by night against the Most Compassionate?" Still they turn away from the remembrance of their Lord.
2526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or do they have gods—other than Us—that can protect them? They cannot ˹even˺ protect themselves, nor will they be aided against Us.
2527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In fact, We have allowed enjoyment for these ˹Meccans˺ and their forefathers for such a long time ˹that they took it for granted˺. Do they not see that We gradually reduce ˹their˺ land from its borders? Is it they who will then prevail?
2528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "I warn you only by revelation." But the deaf cannot hear the call when they are warned!
2529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If they were touched by even a breath of your Lord’s torment, they would certainly cry, "Woe to us! We have really been wrongdoers."
2530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We will set up the scales of justice on the Day of Judgment, so no soul will be wronged in the least. And ˹even˺ if a deed is the weight of a mustard seed, We will bring it forth. And sufficient are We as a ˹vigilant˺ Reckoner.
2531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We granted Moses and Aaron the standard ˹to distinguish between right and wrong˺—a light and a reminder for the righteous,
2532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  who are in awe of their Lord without seeing Him, and are fearful of the Hour.
2533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And this ˹Quran˺ is a blessed reminder which We have revealed. Will you ˹pagans˺ then deny it?
2534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And indeed, We had granted Abraham sound judgment early on, for We knew him well ˹to be worthy of it˺.
2535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember˺ when he questioned his father and his people, "What are these statues to which you are so devoted?"
2536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They replied, "We found our forefathers worshipping them."
2537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He responded, "Indeed, you and your forefathers have been clearly astray."
2538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They asked, "Have you come to us with the truth, or is this a joke?"
2539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He replied, "In fact, your Lord is the Lord of the heavens and the earth, Who created them ˹both˺. And to that I bear witness."
2540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Then he said to himself,˺ "By Allah! I will surely plot against your idols after you have turned your backs and gone away."
2541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So he smashed them into pieces, except the biggest of them, so they might turn to it ˹for answers˺.
2542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They protested, "Who dared do this to our gods? It must be an evildoer!"
2543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Some said, "We heard a young man, called Abraham, speaking ˹ill˺ of them."
2544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They demanded, "Bring him before the eyes of the people, so that they may witness ˹his trial˺."
2545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They asked, "Was it you who did this to our gods, O  Abraham?"
2546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He replied ˹sarcastically˺, "No, this one—the biggest of them—did it! So ask them, if they can talk!"
2547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So they came back to their senses, saying ˹to one another˺, "You yourselves are truly the wrongdoers!"
2548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then they ˹quickly˺ regressed to their ˹original˺ mind-set, ˹arguing,˺ "You already know that those ˹idols˺ cannot talk."
2549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He rebuked ˹them˺, "Do you then worship—instead of Allah—what can neither benefit nor harm you in any way?
2550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Shame on you and whatever you worship instead of Allah! Do you not have any sense?"
2551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They concluded, "Burn him up to avenge your gods, if you must act."
2552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We ordered, "O fire! Be cool and safe for Abraham!"
2553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They had sought to harm him, but We made them the worst losers.
2554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then We delivered him, along with Lot, to the land We had showered with blessings for all people.
2555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And We blessed him with Isaac ˹as a son˺ and Jacob ˹as a grandson˺, as an additional favour—making all of them righteous.
2556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We ˹also˺ made them leaders, guiding by Our command, and inspired them to do good deeds, establish prayer, and pay alms-tax. And they were devoted to Our worship.
2557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And to Lot We gave wisdom and knowledge, and delivered him from the society engrossed in shameful practices. They were certainly an evil, rebellious people.
2558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And We admitted him into Our mercy, ˹for˺ he was truly one of the righteous.
2559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ˹remember˺ when Noah had cried out to Us earlier, so We responded to him and delivered him and his family from the great distress.
2560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We made him prevail over those who had rejected Our signs. They were truly an evil people, so We drowned them all.
2561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when David and Solomon passed judgment regarding the crops ruined ˹at night˺ by someone’s sheep, and We were witness to their judgments.
2562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We guided ˹young˺ Solomon to a fairer settlement, and granted each of them wisdom and knowledge. We subjected the mountains as well as the birds to hymn ˹Our praises˺ along with David. It is We Who did ˹it all˺.
2563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We taught him the art of making body armour to protect you in battle. Will you then be grateful?
2564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And to Solomon We subjected the raging winds, blowing by his command to the land We had showered with blessings. It is We Who know everything.
2565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹We subjected˺ some jinn and performed other duties. It is We Who kept them in check.
2566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹remember˺ when Job cried out to his Lord, "I have been touched with adversity, and You are the Most Merciful of the merciful."
2567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So We answered his prayer and removed his adversity, and gave him back his family, twice as many, as a mercy from Us and a lesson for the ˹devoted˺ worshippers.
2568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ Ishmael, Enoch, and Ⱬul-Kifl. They were all steadfast.
2569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We admitted them into Our mercy, for they were truly of the righteous.
2570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹remember˺ when the Man of the Whale stormed off ˹from his city˺ in a rage, thinking We would not restrain him. he cried out, "There is no god ˹worthy of worship˺ except You. Glory be to You! I have certainly done wrong."
2571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So We answered his prayer and rescued him from anguish. And so do We save the ˹true˺ believers.
2572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹remember˺ when Zachariah cried out to his Lord, "My Lord! Do not leave me childless, though You are the Best of Successors."
2573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So We answered his prayer, granted him John, and made his wife fertile. Indeed, they used to race in doing good, and call upon Us with hope and fear, totally humbling themselves before Us.
2574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹remember˺ the one who guarded her chastity, so We breathed into her through Our angel, ˹Gabriel,˺ making her and her son a sign for all peoples.
2575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹O prophets!˺ Indeed, this religion of yours is ˹only˺ one, and I am your Lord, so worship Me ˹alone˺.
2576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet the people have divided it into sects. But to Us they will all return.
2577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So whoever does good and is a believer will never be denied ˹the reward for˺ their striving, for We are recording it all.
2578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     It is impossible for a society which We have destroyed to ever rise again,
2579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               until ˹after˺ Gog and Magog have broken loose ˹from the barrier˺, swarming down from every hill,
2580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ushering in the True Promise. Then—behold!—the disbelievers will stare ˹in horror, crying,˺ "Oh, woe to us! We have truly been heedless of this. In fact, we have been wrongdoers."
2581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Certainly you ˹disbelievers˺ and whatever you worship instead of Allah will be the fuel of Hell. You are ˹all˺ bound to enter it.
2582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had those idols been ˹true˺ gods, they would not have entered it. And they will be there forever.
2583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In it they will groan, and will not be able to hear.
2584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely those for whom We have destined the finest reward will be kept far away from Hell,
2585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      not even hearing the slightest hissing from it. And they will delight forever in what their souls desire.
2586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Supreme Horror ˹of that Day˺ will not disturb them, and the angels will greet them, ˹saying,˺ "This is your Day, which you have been promised."
2587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On that Day We will roll up the heavens like a scroll of writings. Just as We produced the first creation, ˹so˺ shall We reproduce it. That is a promise binding on Us. We truly uphold ˹Our promises˺!
2588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Surely, following the ˹heavenly˺ Record, We decreed in the Scriptures: "My righteous servants shall inherit the land."
2589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely this ˹Quran˺ is sufficient ˹as a reminder˺ for those devoted to worship.
2590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have sent you ˹O Prophet˺ only as a mercy for the whole world.
2591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "What has been revealed to me is this: ‘Your God is only One God.’ Will you then submit?"
2592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If they turn away, then say, "I have warned you all equally. I do not know if what you are threatened with is near or far.
2593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah surely knows what you say openly and whatever you hide.
2594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I do not know if this ˹delay˺ is possibly a test for you and an enjoyment for a while."
2595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹In the end,˺ the Prophet said, "My Lord! Judge ˹between us˺ in truth. And our Lord is the Most Compassionate, Whose help is sought against what you claim."
2596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O humanity! Fear your Lord, for the ˹violent˺ quaking at the Hour is surely a dreadful thing.
2597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Day you see it, every nursing mother will abandon what she is nursing, and every pregnant woman will deliver her burden ˹prematurely˺. And you will see people ˹as if they were˺ drunk, though they will not be drunk; but the torment of Allah is ˹terribly˺ severe.
2598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Still˺ there are some who dispute about Allah without knowledge, and follow every rebellious devil.
2599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It has been decreed for such devils that whoever takes them as a guide will be misguided and led by them into the torment of the Blaze.
2600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O humanity! If you are in doubt about the Resurrection, then ˹know that˺ We did create you—in order to demonstrate ˹Our power˺ to you. ˹Then˺ We settle whatever ˹embryo˺ We will in the womb for an appointed term, then bring you forth as infants, so that you may reach your prime. Some of you ˹may˺ die ˹young˺, while others are left to reach the most feeble stage of life so that they may know nothing after having known much. And you see the earth lifeless, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell, producing every type of pleasant plant.
2601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That is because Allah ˹alone˺ is the Truth, He ˹alone˺ gives life to the dead, and He ˹alone˺ is Most Capable of everything.
2602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And certainly the Hour is coming, there is no doubt about it. And Allah will surely resurrect those in the graves.
2603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Still˺ there are some who dispute about Allah without knowledge, guidance, or an enlightening scripture,
2604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          turning away ˹in pride˺ to lead ˹others˺ astray from Allah’s Way. They will suffer disgrace in this world, and on the Day of Judgment We will make them taste the torment of burning.
2605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹They will be told,˺ "This is ˹the reward˺ for what your hands have done. And Allah is never unjust to ˹His˺ creation."
2606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there are some who worship Allah on the verge ˹of faith˺: if they are blessed with something good, they are content with it; but if they are afflicted with a trial, they relapse ˹into disbelief˺, losing this world and the Hereafter. That is ˹truly˺ the clearest loss.
2607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They call besides Allah what can neither harm nor benefit them. That is ˹truly˺ the farthest one can stray.
2608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They invoke those whose worship leads to harm, not benefit. What an evil patron and what an evil associate!
2609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, Allah will admit those who believe and do good into Gardens, under which rivers flow. Surely Allah does what He wills.
2610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Whoever thinks that Allah will not help His Prophet in this world and the Hereafter, let them stretch out a rope to the ceiling and strangle themselves, then let them see if this plan will do away with ˹the cause of˺ their rage.
2611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And so We revealed this ˹Quran˺ as clear verses. And Allah certainly guides whoever He wills.
2612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, the believers, Jews, Sabians, and the polytheists—Allah will judge between them ˹all˺ on Judgment Day. Surely Allah is a Witness over all things.
2613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you not see that to Allah bow down ˹in submission˺ all those in the heavens and all those on the earth, as well as the sun, the moon, the stars, the mountains, the trees, and ˹all˺ living beings, as well as many humans, while many are deserving of punishment. And whoever Allah disgraces, none can honour. Surely Allah does what He wills.
2614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are two opposing groups that disagree about their Lord: as for the disbelievers, garments of Fire will be cut out for them and boiling water will be poured over their heads,
2615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   melting whatever is in their bellies, along with their skin.
2616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And awaiting them are maces of iron.
2617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whenever they try to escape from Hell—out of anguish—they will be forced back into it, ˹and will be told,˺ "Taste the torment of burning!"
2618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹But˺ Allah will surely admit those who believe and do good into Gardens, under which rivers flow, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk,
2619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            for they have been guided to the best of speech, and they have been guided to the Commendable Path.
2620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, those who persist in disbelief and hinder ˹others˺ from the Way of Allah and from the Sacred Mosque We will cause them to taste a painful punishment.
2621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when We assigned to Abraham the site of the House, ˹saying,˺ "Do not associate anything with Me ˹in worship˺ and purify My House for those who circle ˹the Ka’bah˺, stand ˹in prayer˺, and bow and prostrate themselves.
2622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Call ˹all˺ people to the pilgrimage. They will come to you on foot and on every lean camel from every distant path,
2623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            so they may obtain the benefits ˹in store˺ for them, and pronounce the Name of Allah on appointed days over the sacrificial animals He has provided for them. So eat from their meat and feed the desperately poor.
2624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then let them groom themselves, fulfil their vows, and circle the Ancient House."
2625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         That is so. And whoever honours the rituals of Allah, it is best for them in the sight of their Lord. The ˹meat of˺ cattle has been made lawful for you, except what has ˹already˺ been recited to you. So shun the impurity of idolatry, and shun words of falsehood.
2626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Be upright ˹in devotion˺ to Allah, associating none with Him ˹in worship˺. For whoever associates ˹others˺ with Allah is like someone who has fallen from the sky and is either snatched away by birds or swept by the wind to a remote place.
2627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That is so. And whoever honours the symbols of Allah, it is certainly out of the piety of the heart.
2628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You may benefit from sacrificial animals for an appointed term, then their place of sacrifice is at the Ancient House.
2629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For every community We appointed a rite of sacrifice so that they may pronounce the Name of Allah over the sacrificial animals He has provided for them. For your God is only One God, so submit yourselves to Him ˹alone˺. And give good news ˹O Prophet˺ to the humble:
2630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those whose hearts tremble at the remembrance of Allah, who patiently endure whatever may befall them, and who establish prayer and donate from what We have provided for them.
2631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have made sacrificial camels ˹and cattle˺ among the symbols of Allah, in which there is ˹much˺ good for you. So pronounce the Name of Allah over them when they are lined up ˹for sacrifice˺. Once they have fallen ˹lifeless˺ on their sides, you may eat from their meat, and feed the needy—those who do not beg, and those who do. In this way We have subjected these ˹animals˺ to you so that you may be grateful.
2632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Neither their meat nor blood reaches Allah. Rather, it is your piety that reaches Him. This is how He has subjected them to you so that you may proclaim the greatness of Allah for what He has guided you to, and give good news to the good-doers.
2633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, Allah defends those who believe. Surely Allah does not like whoever is deceitful, ungrateful.
2634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Permission ˹to fight back˺ is ˹hereby˺ granted to those being fought, for they have been wronged. And Allah is truly Most Capable of helping them ˹prevail˺.
2635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹They are˺ those who have been expelled from their homes for no reason other than proclaiming: "Our Lord is Allah." Had Allah not repelled ˹the aggression of˺ some people by means of others, destruction would have surely claimed monasteries, churches, synagogues, and mosques in which Allah’s Name is often mentioned. Allah will certainly help those who stand up for Him. Allah is truly All-Powerful, Almighty.
2636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They are˺ those who, if established in the land by Us, would perform prayer, pay alms-tax, encourage what is good, and forbid what is evil. And with Allah rests the outcome of all affairs.
2637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If they deny you ˹O Prophet˺, so did the people of Noah before them, as well as ˹the tribes of˺ ’Ȃd and Thamûd,
2638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the people of Abraham, the people of Lot,
2639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and the residents of Midian. And Moses was denied ˹too˺. But I delayed ˹the fate of˺ the disbelievers ˹until their appointed time˺ then seized them. And how severe was My response!
2640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Many are the societies We have destroyed for persisting in wrongdoing, leaving them in total ruin. ˹Many are˺ also the abandoned wells and lofty palaces!
2641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have they not travelled throughout the land so their hearts may reason, and their ears may listen? Indeed, it is not the eyes that are blind, but it is the hearts in the chests that grow blind.
2642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They challenge you ˹O Prophet˺ to hasten the torment. And Allah will never fail in His promise. But a day with your Lord is indeed like a thousand years by your counting.
2643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Many are the societies whose end We delayed while they did wrong, then seized them. And to Me is the final return.
2644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "O humanity! I am only sent to you with a clear warning.
2645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So those who believe and do good will have forgiveness and an honourable provision.
2646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But those who strive to discredit Our revelations, they will be the residents of the Hellfire."
2647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whenever We sent a messenger or a prophet before you ˹O Prophet˺ and he recited ˹Our revelations˺, Satan would influence ˹people’s understanding of˺ his recitation. But ˹eventually˺ Allah would eliminate Satan’s influence. Then Allah would ˹firmly˺ establish His revelations. And Allah is All-Knowing, All-Wise.
2648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All that so He may make Satan’s influence a trial for those ˹hypocrites˺ whose hearts are sick and those ˹disbelievers˺ whose hearts are hardened. Surely the wrongdoers are totally engrossed in opposition.
2649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹This is˺ also so that those gifted with knowledge would know that this ˹revelation˺ is the truth from your Lord, so they have faith in it, and so their hearts would submit humbly to it. And Allah surely guides the believers to the Straight Path.
2650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Yet the disbelievers will persist in doubt about this ˹revelation˺ until the Hour takes them by surprise, or the torment of a terminating Day comes to them.
2651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All authority on that Day is for Allah ˹alone˺. He will judge between them. So those who believe and do good will be in the Gardens of Bliss.
2652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But those who disbelieve and deny Our revelations, it is they who will suffer a humiliating punishment.
2653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As for those who emigrate in the cause of Allah and then are martyred or die, Allah will indeed grant them a good provision. Surely Allah is the Best Provider.
2654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He will certainly admit them into a place they will be pleased with. For Allah is truly All-Knowing, Most Forbearing.
2655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That is so. And whoever retaliates in equivalence to the injury they have received, and then are wronged ˹again˺, Allah will certainly help them. Surely Allah is Ever-Pardoning, All-Forgiving.
2656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That is because Allah causes the night to merge into the day, and the day into the night. Indeed, Allah is All-Hearing, All-Seeing.
2657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and Allah ˹alone˺ is truly the Most High, All-Great.
2658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do you not see that Allah sends down rain from the sky, then the earth becomes green? Surely Allah is Most Subtle, All-Aware.
2659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To Him belongs whatever is in the heavens and whatever is on the earth. Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.
2660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do you not see that Allah has subjected to you whatever is in the earth as well as the ships ˹that˺ sail through the sea by His command? He keeps the sky from falling down on the earth except by His permission. Surely Allah is Ever Gracious and Most Merciful to humanity.
2661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And He is the One Who gave you life, then will cause you to die, and then will bring you back to life. ˹But˺ surely humankind is ever ungrateful.
2662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For every community We appointed a code So do not let them dispute with you ˹O Prophet˺ in this matter. And invite ˹all˺ to your Lord, for you are truly on the Right Guidance.
2663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if they argue with you, then say, "Allah knows best what you do."
2664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah will judge between you ˹all˺ on Judgment Day regarding your differences.
2665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you not know that Allah ˹fully˺ knows whatever is in the heavens and the earth? Surely it is all ˹written˺ in a Record. That is certainly easy for Allah.
2666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet they worship besides Allah that for which He has sent down no authority, and of which they have no knowledge. The wrongdoers will have no helper.
2667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whenever Our clear revelations are recited to them, you ˹O Prophet˺ recognize rage on the faces of the disbelievers, as if they are going to snap at those who recite Our revelations to them. Say, "Shall I inform you of something far more enraging than that? ˹It is˺ the Fire with which Allah has threatened those who disbelieve. What an evil destination!"
2668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O humanity! A lesson is set forth, so listen to it ˹carefully˺: those ˹idols˺ you invoke besides Allah can never create ˹so much as˺ a fly, even if they ˹all˺ were to come together for that. And if a fly were to snatch anything away from them, they cannot ˹even˺ retrieve it from the fly. How powerless are those who invoke and those invoked!
2669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They have not shown Allah the reverence He deserves. Surely Allah is All-Powerful, Almighty.
2670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allah selects messengers from both angels and people, for Allah is truly All-Hearing, All-Seeing.
2671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He knows what is ahead of them and what is behind them. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
2672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! Bow down, prostrate yourselves, worship your Lord, and do ˹what is˺ good so that you may be successful.
2673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Strive for ˹the cause of˺ Allah in the way He deserves, for ˹it is˺ He ˹Who˺ has chosen you, and laid upon you no hardship in the religion—the way of your forefather Abraham. ˹It is Allah˺ Who named you ‘the ones who submit’ ˹in the˺ earlier ˹Scriptures˺ and in this ˹Quran˺, so that the Messenger may be a witness over you, and that you may be witnesses over humanity. So establish prayer, pay alms-tax, and hold fast to Allah. He ˹alone˺ is your Guardian. What an excellent Guardian, and what an excellent Helper!
2674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Successful indeed are the believers:
2675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         those who humble themselves in prayer;
2676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     those who avoid idle talk;
2677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        those who pay alms-tax;
2678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 those who guard their chastity
2679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,
2680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           but whoever seeks beyond that are the transgressors;
2681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹the believers are also˺ those who are true to their trusts and covenants;
2682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and those who are ˹properly˺ observant of their prayers.
2683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the ones who will be awarded
2684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Paradise as their own. They will be there forever.
2685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And indeed, We created humankind from an extract of clay,
2686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    then placed each ˹human˺ as a sperm-drop in a secure place,
2687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 then We developed the drop into a clinging clot ˹of blood˺, then developed the clot into a lump ˹of flesh˺, then developed the lump into bones, then clothed the bones with flesh, then We brought it into being as a new creation. So Blessed is Allah, the Best of Creators.
2688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                After that you will surely die,
2689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           then on the Day of Judgment you will be resurrected.
2690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And indeed, We created above you seven levels ˹of heaven˺. We are never unmindful of ˹Our˺ creation.
2691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We send down rain from the sky in perfect measure, causing it to soak into the earth. And We are surely able to take it away.
2692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               With it We produce for you gardens of palm trees and grapevines, in which there are abundant fruits, and from which you may eat,
2693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      as well as ˹olive˺ trees which grow at Mount Sinai, providing oil and a condiment to eat.
2694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there is certainly a lesson for you in cattle, from whose bellies We give you ˹milk˺ to drink, and in them are many other benefits for you, and from them you may eat.
2695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And you are carried upon ˹some of˺ them and upon ships.
2696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We sent Noah to his people. He declared, "O my people! Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?"
2697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But the disbelieving chiefs of his people said ˹to the masses˺, "This is only a human like you, who wants to be superior to you. Had Allah willed, He could have easily sent down angels ˹instead˺. We have never heard of this in ˹the history of˺ our forefathers.
2698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is simply insane, so bear with him for a while."
2699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Noah prayed, "My Lord! Help me, because they have denied ˹me˺."
2700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So We inspired him: "Build the Ark under Our ˹watchful˺ Eyes and directions. Then when Our command comes and the oven bursts ˹with water˺, take on board a pair from every species along with your family—except those against whom the decree ˹to drown˺ has already been passed. And do not plead with Me for those who have done wrong, for they will surely be drowned."
2701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then when you and those with you have settled in the Ark, say, "All praise is for Allah, Who saved us from the wrongdoing people."
2702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And pray, "My Lord! Allow me a blessed landing, for You are the best accommodator."
2703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely in this are lessons. And We ˹always˺ put ˹people˺ to the test.
2704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then We raised another generation after them,
2705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and sent to them a messenger from among themselves, ˹declaring,˺ "Worship Allah ˹alone˺. You have no god other than Him. Will you not then fear ˹Him˺?"
2706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the chiefs of his people—who disbelieved, denied the meeting ˹with Allah˺ in the Hereafter, and were spoiled by the worldly luxuries We had provided for them—said ˹to the masses˺, "This is only a human like you. He eats what you eat, and drinks what you drink.
2707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if you ˹ever˺ obey a human like yourselves, then you would certainly be losers.
2708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Does he promise you that once you are dead and reduced to dust and bones, you will be brought forth ˹alive˺?
2709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Impossible, simply impossible is what you are promised!
2710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There is nothing beyond our worldly life. We die, others are born, and none will be resurrected.
2711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He is no more than a man who has fabricated a lie about Allah, and we will never believe in him."
2712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The messenger prayed, "My Lord! Help me, because they have denied ˹me˺."
2713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah responded, "Soon they will be truly regretful."
2714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then the ˹mighty˺ blast overtook them with justice, and We reduced them to rubble. So away with the wrongdoing people!
2715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We raised other generations after them.
2716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       No people can advance their doom, nor can they delay it.
2717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then We sent Our messengers in succession: whenever a messenger came to his people, they denied him. So We destroyed them, one after the other, reducing them to ˹cautionary˺ tales. So away with the people who refuse to believe!
2718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We sent Moses and his brother Aaron with Our signs and compelling proof
2719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           to Pharaoh and his chiefs, but they behaved arrogantly and were a tyrannical people.
2720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They argued, "Will we believe in two humans, like ourselves, whose people are slaves to us?"
2721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So they rejected them both, and ˹so˺ were among those destroyed.
2722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We certainly gave Moses the Scripture, so perhaps his people would be ˹rightly˺ guided.
2723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We made the son of Mary and his mother a sign, and gave them refuge on high ground—a ˹suitable˺ place for rest with flowing water.
2724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O messengers! Eat from what is good and lawful, and act righteously. Indeed, I fully know what you do.
2725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely this religion of yours is ˹only˺ one, and I am your Lord, so fear Me ˹alone˺.
2726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet the people have divided it into different sects, each rejoicing in what they have.
2727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So leave them ˹O Prophet˺ in their heedlessness for a while.
2728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do they think, since We provide them with wealth and children,
2729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              that We hasten to ˹honour˺ them ˹with˺ all kinds of good? No! They are not aware.
2730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely those who tremble in awe of their Lord,
2731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and who believe in the revelations of their Lord,
2732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and who associate none with their Lord,
2733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and who do whatever ˹good˺ they do with their hearts fearful, ˹knowing˺ that they will return to their Lord—
2734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  it is they who race to do good deeds, always taking the lead.
2735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We never require of any soul more than what it can afford. And with Us is a record which speaks the truth. None will be wronged.
2736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the hearts of those ˹who disbelieve˺ are oblivious to ˹all of˺ this, and they have other ˹evil˺ deeds, opposite to this, in which they are engrossed.
2737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But as soon as We seize their elite with torment, they start to cry for help.
2738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹They will be told,˺ "Do not cry for help today. Surely you will never be saved from Us.
2739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, My revelations were recited to you, but you used to back away ˹in disgust˺,
2740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               boasting of the Sacred House, and babbling ˹nonsense about the Quran˺ by night."
2741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is it because they have never contemplated the Word ˹of Allah˺? Or ˹because˺ there has come to them something that did not come to their forefathers?
2742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or ˹because˺ they failed to recognize their Messenger, and so they denied him?
2743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Or ˹because˺ they say, "He is insane?" In fact, he has come to them with the truth, but most of them are resentful of the truth.
2744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Had the truth followed their desires, the heavens, the earth, and all those in them would have certainly been corrupted. In fact, We have brought them ˹the means to˺ their glory, but they turn away from it.
2745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or ˹is it because˺ you ˹O Prophet˺ are asking them for tribute? But the reward of your Lord is best, for He is the Best Provider.
2746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And surely you are calling them to the Straight Path,
2747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              but those who disbelieve in the Hereafter are certainly deviating from that Path.
2748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Even˺ if We had mercy on them and removed their affliction, they would still persist in their transgression, wandering blindly.
2749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We have already seized them with torment, but they never humbled themselves to their Lord, nor did they ˹submissively˺ appeal ˹to Him˺.
2750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But as soon as We open for them a gate of severe punishment, they will be utterly desperate.
2751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who created for you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.
2752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered.
2753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And He is the One Who gives life and causes death, and to Him belongs the alternation of the day and night. Will you not then understand?
2754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But they ˹just˺ say what their predecessors said.
2755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They said, "Once we are dead and reduced to dust and bones, will we really be resurrected?
2756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!"
2757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ask ˹them, O  Prophet˺, "To whom belong the earth and all those on it, if you ˹really˺ know?"
2758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will reply, "To Allah!" Say, "Why are you not then mindful?"
2759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹And˺ ask ˹them˺, "Who is the Lord of the seven heavens and the Lord of the Mighty Throne?"
2760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will reply, "Allah." Say, "Will you not then fear ˹Him˺?"
2761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ask ˹them also,˺ "In Whose Hands is the authority over all things, protecting ˹all˺ while none can protect against Him, if you ˹really˺ know?"
2762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will reply, "Allah." Say, "How are you then so deluded?"
2763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In fact, We have brought them the truth, and they are certainly liars.
2764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah has never had ˹any˺ offspring, nor is there any god besides Him. Otherwise, each god would have taken away what he created, and they would have tried to dominate one another. Glorified is Allah above what they claim!
2765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹He is the˺ Knower of the seen and unseen. Exalted is He above what they associate ˹with Him˺.
2766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "My Lord! Should You show me what they are threatened with,
2767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   then, my Lord, do not count me among the wrongdoing people."
2768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We are indeed able to show you what We have threatened them with.
2769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Respond to evil with what is best. We know well what they claim.
2770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And say, "My Lord! I seek refuge in You from the temptations of the devils.
2771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I seek refuge in You, my Lord, that they ˹even˺ come near me."
2772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When death approaches any of them, they cry, "My Lord! Let me go back,
2773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                so I may do good in what I left behind." Never! It is only a ˹useless˺ appeal they make. And there is a barrier behind them until the Day they are resurrected.
2774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then, when the Trumpet will be blown,
2775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those whose scale is heavy ˹with good deeds˺, it is they who will be successful.
2776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But those whose scale is light, they will have doomed themselves, staying in Hell forever.
2777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Fire will burn their faces, leaving them deformed.
2778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹It will be said,˺ "Were My revelations not recited to you, but you used to deny them?"
2779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will cry, "Our Lord! Our ill-fate took hold of us, so we became a misguided people.
2780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Our Lord! Take us out of this ˹Fire˺. Then if we ever return ˹to denial˺, we will truly be wrongdoers."
2781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah will respond, "Be despised in there! Do not ˹ever˺ plead with Me ˹again˺!
2782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, there was a group of My servants who used to pray, ‘Our Lord! We have believed, so forgive us and have mercy on us, for You are the best of those who show mercy,’
2783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               but you were ˹so busy˺ making fun of them that it made you forget My remembrance. And you used to laugh at them.
2784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Today I have indeed rewarded them for their perseverance: they are certainly the triumphant."
2785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He will ask ˹them˺, "How many years did you remain on earth?"
2786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They will reply, "We remained ˹only˺ a day or part of a day. But ask those who kept count."
2787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He will say, "You only remained for a little while, if only you knew.
2788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Did you then think that We had created you without purpose, and that you would never be returned to Us?"
2789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Exalted is Allah, the True King! There is no god ˹worthy of worship˺ except Him, the Lord of the Honourable Throne.
2790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whoever invokes, besides Allah, another god—for which they can have no proof—they will surely find their penalty with their Lord. Indeed, the disbelievers will never succeed.
2791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "My Lord! Forgive and have mercy, for You are the best of those who show mercy."
2792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹This is˺ a sûrah which We have revealed and made ˹its rulings˺ obligatory, and revealed in it clear commandments so that you may be mindful.
2793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for female and male fornicators, give each of them one hundred lashes, and do not let pity for them make you lenient in ˹enforcing˺ the law of Allah, if you ˹truly˺ believe in Allah and the Last Day. And let a number of believers witness their punishment.
2794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     A male fornicator would only marry a female fornicator or idolatress. And a female fornicator would only be married to a fornicator or idolater. This is ˹all˺ forbidden to the believers.
2795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Those who accuse chaste women ˹of adultery˺ and fail to produce four witnesses, give them eighty lashes ˹each˺. And do not ever accept any testimony from them—for they are indeed the rebellious—
2796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     except those who repent afterwards and mend their ways, then surely Allah is All-Forgiving, Most Merciful.
2797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And those who accuse their wives ˹of adultery˺ but have no witness except themselves, the accuser must testify, swearing four times by Allah that he is telling the truth,
2798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and a fifth oath that Allah may condemn him if he is lying.
2799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For her to be spared the punishment, she must swear four times by Allah that he is telling a lie,
2800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and a fifth oath that Allah may be displeased with her if he is telling the truth.
2801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Accepting of Repentance, All-Wise.
2802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, those who came up with that ˹outrageous˺ slander are a group of you. Do not think this is bad for you. Rather, it is good for you. he will suffer a tremendous punishment.
2803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If only the believing men and women had thought well of one another, when you heard this ˹rumour˺, and said, "This is clearly ˹an outrageous˺ slander!"
2804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why did they not produce four witnesses? Now, since they have failed to produce witnesses, they are ˹truly˺ liars in the sight of Allah.
2805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had it not been for Allah’s grace and mercy upon you in this world and the Hereafter, you would have certainly been touched with a tremendous punishment for what you plunged into—
2806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              when you passed it from one tongue to the other, and said with your mouths what you had no knowledge of, taking it lightly while it is ˹extremely˺ serious in the sight of Allah.
2807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If only you had said upon hearing it, "How can we speak about such a thing! Glory be to You ˹O Lord˺! This is a heinous slander!"
2808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allah forbids you from ever doing something like this again, if you are ˹true˺ believers.
2809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Allah makes ˹His˺ commandments clear to you, for Allah is All-Knowing, All-Wise.
2810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, those who love to see indecency spread among the believers will suffer a painful punishment in this life and the Hereafter. Allah knows and you do not know.
2811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹You would have suffered,˺ had it not been for Allah’s grace and mercy upon you, and had Allah not been Ever Gracious, Most Merciful.
2812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not follow the footsteps of Satan. Whoever follows Satan’s footsteps, then ˹let them know that˺ he surely bids ˹all to˺ immorality and wickedness. Had it not been for Allah’s grace and mercy upon you, none of you would have ever been purified. But Allah purifies whoever He wills. And Allah is All-Hearing, All-Knowing.
2813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not let the people of virtue and affluence among you swear to suspend donations to their relatives, the needy, and the emigrants in the cause of Allah. Let them pardon and forgive. Do you not love to be forgiven by Allah? And Allah is All-Forgiving, Most Merciful.
2814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely those who accuse chaste, unsuspecting, believing women are cursed in this life and the Hereafter. And they will suffer a tremendous punishment
2815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  on the Day their tongues, hands, and feet will testify against them for what they used to do.
2816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On that Day, Allah will give them their just penalty in full, and they will ˹come to˺ know that Allah ˹alone˺ is the Ultimate Truth.
2817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wicked women are for wicked men, and wicked men are for wicked women. And virtuous women are for virtuous men, and virtuous men are for virtuous women. The virtuous are innocent of what the wicked say. They will have forgiveness and an honourable provision.
2818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Do not enter any house other than your own until you have asked for permission and greeted its occupants. This is best for you, so perhaps you will be mindful.
2819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If you find no one at home, do not enter it until you have been given permission. And if you are asked to leave, then leave. That is purer for you. And Allah has ˹perfect˺ knowledge of what you do.
2820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is no blame on you if you enter public places where there is something of benefit for you. And Allah knows what you reveal and what you conceal.
2821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹O Prophet!˺ Tell the believing men to lower their gaze and guard their chastity. That is purer for them. Surely Allah is All-Aware of what they do.
2822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And tell the believing women to lower their gaze and guard their chastity, and not to reveal their adornments except to their husbands, their fathers, their fathers-in-law, their sons, their stepsons, their brothers, their brothers’ sons or sisters’ sons, their fellow women, those ˹bondwomen˺ in their possession, male attendants with no desire, or children who are still unaware of women’s nakedness. Let them not stomp their feet, drawing attention to their hidden adornments. Turn to Allah in repentance all together, O  believers, so that you may be successful.
2823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Marry off the ˹free˺ singles among you, as well as the righteous of your bondmen and bondwomen. If they are poor, Allah will enrich them out of His bounty. For Allah is All-Bountiful, All-Knowing.
2824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And let those who do not have the means to marry keep themselves chaste until Allah enriches them out of His bounty. And if any of those ˹bondspeople˺ in your possession desires a deed of emancipation, make it possible for them, if you find goodness in them. And give them some of Allah’s wealth which He has granted you. Do not force your ˹slave˺ girls into prostitution for your own worldly gains while they wish to remain chaste. And if someone coerces them, then after such a coercion Allah is certainly All-Forgiving, Most Merciful ˹to them˺.
2825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We have sent down to you clear revelations, along with examples of those who had gone before you, and a lesson to the God-fearing.
2826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah is the Light of the heavens and the earth. His light whose oil would almost glow, even without being touched by fire. Light upon light! Allah guides whoever He wills to His light. And Allah sets forth parables for humanity. For Allah has ˹perfect˺ knowledge of all things.
2827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹That light shines˺ through houses ˹of worship˺ which Allah has ordered to be raised, and where His Name is mentioned. He is glorified there morning and evening
2828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               by men who are not distracted—either by buying or selling—from Allah’s remembrance, or performing prayer, or paying alms-tax. They fear a Day when hearts and eyes will tremble,
2829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹hoping˺ that Allah may reward them according to the best of their deeds, and increase them out of His grace. And Allah provides for whoever He wills without limit.
2830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for the disbelievers, their deeds are like a mirage in a desert, which the thirsty perceive as water, but when they approach it, they find it to be nothing. Instead, they find Allah there ˹in the Hereafter, ready˺ to settle their account. And Allah is swift in reckoning.
2831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or ˹their deeds are˺ like the darkness in a deep sea, covered by waves upon waves, topped by ˹dark˺ clouds. Darkness upon darkness! If one stretches out their hand, they can hardly see it. And whoever Allah does not bless with light will have no light!
2832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you not see that Allah is glorified by all those in the heavens and the earth, even the birds as they soar? Each ˹instinctively˺ knows their manner of prayer and glorification. And Allah has ˹perfect˺ knowledge of all they do.
2833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. And to Allah is the final return.
2834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do you not see that Allah gently drives the clouds, then joins them together, piling them up into masses, from which you see raindrops come forth? And He sends down from the sky mountains ˹of clouds˺ loaded with hail, pouring it on whoever He wills and averting it from whoever He wills. The flash of the clouds’ lightning nearly takes away eyesight.
2835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah alternates the day and night. Surely in this is a lesson for people of insight.
2836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Allah has created from water every living creature. Some of them crawl on their bellies, some walk on two legs, and some walk on four. Allah creates whatever He wills. Surely Allah is Most Capable of everything.
2837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have indeed sent down revelations clarifying ˹the truth˺. But Allah ˹only˺ guides whoever He wills to the Straight Path.
2838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the hypocrites say, "We believe in Allah and the Messenger, and we obey." Then a group of them turns away soon after that. These are not ˹true˺ believers.
2839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And as soon as they are called to Allah and His Messenger so he may judge between them, a group of them turns away.
2840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if the truth is in their favour, they come to him, fully submitting.
2841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is there a sickness in their hearts? Or are they in doubt? Or do they fear that Allah and His Messenger will be unjust to them? In fact, it is they who are the ˹true˺ wrongdoers.
2842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The only response of the ˹true˺ believers, when they are called to Allah and His Messenger so he may judge between them, is to say, "We hear and obey." It is they who will ˹truly˺ succeed.
2843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For whoever obeys Allah and His Messenger, and fears Allah and is mindful of Him, then it is they who will ˹truly˺ triumph.
2844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They swear by Allah their most solemn oaths that if you ˹O Prophet˺ were to command them, they would certainly march forth ˹in Allah’s cause˺. Say, "˹You˺ do not ˹have to˺ swear; your obedience is well known!" Surely Allah is All-Aware of what you do."
2845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "Obey Allah and obey the Messenger. But if you turn away, then he is only responsible for his duty And if you obey him, you will be ˹rightly˺ guided. The Messenger’s duty is only to deliver ˹the message˺ clearly."
2846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah has promised those of you who believe and do good that He will certainly make them successors in the land, as He did with those before them; and will surely establish for them their faith which He has chosen for them; and will indeed change their fear into security—˹provided that˺ they worship Me, associating nothing with Me. But whoever disbelieves after this ˹promise˺, it is they who will be the rebellious.
2847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Moreover, establish prayer, pay alms-tax, and obey the Messenger, so you may be shown mercy.
2848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do not think ˹O Prophet˺ that the disbelievers can escape in the land. The Fire will be their home. Indeed, what an evil destination!
2849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Let those ˹bondspeople˺ in your possession and those of you who are still under age ask for your permission ˹to come in˺ at three times: before dawn prayer, when you take off your ˹outer˺ clothes at noon, and after the late evening prayer. ˹These are˺ three times of privacy for you. Other than these times, there is no blame on you or them to move freely, attending to one another. This is how Allah makes the revelations clear to you, for Allah is All-Knowing, All-Wise.
2850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when your children reach the age of puberty, let them seek permission ˹to come in˺, as their seniors do. This is how Allah makes His revelations clear to you, for Allah is All-Knowing, All-Wise.
2851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for elderly women past the age of marriage, there is no blame on them if they take off their ˹outer˺ garments, without revealing their adornments. But it is better for them if they avoid this ˹altogether˺. And Allah is All-Hearing, All-Knowing.
2852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There is no restriction on the blind, or the disabled, or the sick. This is how Allah makes His revelations clear to you, so perhaps you will understand.
2853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The ˹true˺ believers are only those who believe in Allah and His Messenger, and when they are with him on a public matter, they do not leave without his permission. Indeed, those who ask your permission ˹O Prophet˺ are the ones who ˹truly˺ believe in Allah and His Messenger. So when they ask your permission for a private matter, grant permission to whoever you wish and ask Allah’s forgiveness for them. Surely Allah is All-Forgiving, Most Merciful.
2854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do not treat the Messenger’s summons to you ˹as lightly˺ as your summons to one another. So let those who disobey his orders beware, for an affliction may befall them, or a painful torment may overtake them.
2855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely to Allah belongs whatever is in the heavens and the earth. He knows well what you stand for. And ˹on˺ the Day all will be returned to Him, He will inform them of what they did. For Allah has ˹perfect˺ knowledge of all things.
2856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Blessed is the One Who sent down the Standard
2857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Allah is˺ the One to Whom belongs the kingdom of the heavens and the earth, Who has never had ˹any˺ offspring, nor does He have a partner in ˹governing˺ the kingdom. He has created everything, ordaining it precisely.
2858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet they have taken besides Him gods who cannot create anything but are themselves created. Nor can they protect or benefit themselves. Nor can they control life, death, or resurrection.
2859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The disbelievers say, "This ˹Quran˺ is nothing but a fabrication which he made up with the help of others." Their claim is totally unjustified and untrue!
2860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they say, "˹These revelations are only˺ ancient fables which he has had written down, and they are rehearsed to him morning and evening."
2861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "This ˹Quran˺ has been revealed by the One Who knows the secrets of the heavens and the earth. Surely He is All-Forgiving, Most Merciful."
2862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they say ˹mockingly˺, "What kind of messenger is this who eats food and goes about in market-places ˹for a living˺? If only an angel had been sent down with him to be his co-warner,
2863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   or a treasure had been cast down to him, or he had had a garden from which he may eat!" And the wrongdoers say ˹to the believers˺, "You are only following a bewitched man."
2864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              See ˹O Prophet˺ how they call you names! So they have gone so ˹far˺ astray that they cannot find the ˹Right˺ Way.
2865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blessed is the One Who—if He wills—can give you far better than ˹all˺ that: gardens under which rivers flow, and palaces as well.
2866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In fact, they deny the Hour. And for the deniers of the Hour, We have prepared a blazing Fire.
2867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Once it sees them from a distance, they will hear it fuming and growling.
2868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when they are tossed into a narrow place inside ˹Hell˺, chained together, then and there they will cry out for ˹instant˺ destruction.
2869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They will be told,˺ "Do not cry only once for destruction, but cry many times over!"
2870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "Is this better or the Garden of Eternity which the righteous have been promised, as a reward and ˹an ultimate˺ destination?
2871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There they will have whatever they wish for, forever. That is a promise ˹to be sought after˺, binding on your Lord."
2872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Watch for˺ the Day He will gather them along with what they used to worship besides Allah, and ask ˹the objects of worship˺, "Was it you who misled these servants of Mine, or did they stray from the Way ˹on their own˺?"
2873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will say, "Glory be to You! It was not right for ˹others like˺ us to take any lords besides You, but You allowed enjoyment for them and their forefathers ˹for so long˺ that they forgot ˹Your˺ remembrance and became a doomed people."
2874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹The doomed will be told˺, "Your gods have clearly denied your claims. So now you can neither ward off ˹the punishment˺ nor get any help." And whoever of you does wrong, We will make them taste a horrible punishment.
2875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We never sent any messenger before you ˹O Prophet˺, who did not eat food and go about in market-places. We have made some of you a trial for others. Will you ˹not then˺ be patient? And your Lord is All-Seeing.
2876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those who do not expect to meet Us say, "If only the angels were sent down to us, or we could see our Lord!" They have certainly been carried away by their arrogance and have entirely exceeded all limits.
2877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹But˺ on the Day they will see the angels, there will be no good news for the wicked, who will cry, "Keep away! Away ˹from us˺!"
2878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then We will turn to whatever ˹good˺ deeds they did, reducing them to scattered dust.
2879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹But˺ on that Day the residents of Paradise will have the best settlement and the finest place to rest.
2880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Watch for˺ the Day the heavens will burst with clouds, and the angels will be sent down in successive ranks.
2881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       True authority on that Day will belong ˹only˺ to the Most Compassionate. And it will be a hard day for the disbelievers.
2882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹beware of˺ the Day the wrongdoer will bite his nails ˹in regret˺ and say, "Oh! I wish I had followed the Way along with the Messenger!
2883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Woe to me! I wish I had never taken so-and-so as a close friend.
2884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It was he who truly made me stray from the Reminder after it had reached me." And Satan has always betrayed humanity.
2885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Messenger has cried, "O my Lord! My people have indeed received this Quran with neglect."
2886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Similarly, We made enemies for every prophet from among the wicked, but sufficient is your Lord as a Guide and Helper.
2887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The disbelievers say, "If only the Quran had been sent down to him all at once!" ˹We have sent it˺ as such ˹in stages˺ so We may reassure your heart with it. And We have revealed it at a deliberate pace.
2888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whenever they bring you an argument, We come to you with the right refutation and the best explanation.
2889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who will be dragged into Hell on their faces will be in the worst place, and are ˹now˺ farthest from the ˹Right˺ Way.
2890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We certainly gave Moses the Book and appointed his brother Aaron as his helper.
2891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We had ordered ˹them˺, "Go to the people who would deny Our signs." Then We annihilated the deniers entirely.
2892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the people of Noah rejected the messengers, We drowned them, making them an example to humanity. And We have prepared a painful punishment for the wrongdoers.
2893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also ˹We destroyed˺ ’Ȃd, Thamûd, and the people of the Water-pit, as well as many peoples in between.
2894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For each We set forth ˹various˺ lessons, and We ultimately destroyed each.
2895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They have certainly passed by the city ˹of Sodom˺, which had been showered with a dreadful rain ˹of stones˺. Have they not seen its ruins? But they do not expect to be resurrected.
2896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When they see you ˹O Prophet˺, they only make fun of you, ˹saying,˺ "Is this the one that Allah has sent as a messenger?
2897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He would have almost tricked us away from our gods, had we not been so devoted to them." ˹But˺ soon they will know, when they face the punishment, who is far astray from the ˹Right˺ Way.
2898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have you seen ˹O Prophet˺ the one who has taken their own desires as their god? Will you then be a keeper over them?
2899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do you think that most of them listen or understand?
2900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have you not seen how your Lord extends the shade—He could have simply made it ˹remain˺ still if He so willed—then We make the sun its guide,
2901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        causing the shade to retreat gradually?
2902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who has made the night for you as a cover, and ˹made˺ sleep for resting, and the day for rising.
2903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And He is the One Who sends the winds ushering in His mercy, and We send down pure rain from the sky,
2904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      giving life to a lifeless land, and providing water for countless animals and humans of Our Own creation.
2905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We certainly disperse it among them so they may be mindful, but most people persist in ungratefulness.
2906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had We willed, We could have easily sent a warner to every society.
2907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So do not yield to the disbelievers, but strive diligently against them with this ˹Quran˺.
2908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And He is the One Who merges the two bodies of water: one fresh and palatable and the other salty and bitter, placing between them a barrier they cannot cross.
2909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And He is the One Who creates human beings from a ˹humble˺ liquid, then establishes for them bonds of kinship and marriage. For your Lord is Most Capable.
2910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yet they worship besides Allah what can neither benefit nor harm them. And the disbeliever always collaborates against their Lord.
2911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner.
2912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "I do not ask you for any reward for this ˹message˺, but whoever wishes, let them pursue the Way to their Lord."
2913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Put your trust in the Ever-Living, Who never dies, and glorify His praises. Sufficient is He as All-Aware of the sins of His servants.
2914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹He is˺ the One Who created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. ˹He is˺ the Most Compassionate! Ask ˹none other than˺ the All-Knowledgeable about Himself.
2915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When it is said to them, "Prostrate to the Most Compassionate," they ask ˹in disgust˺, "What is ‘the Most Compassionate’? Will we prostrate to whatever you order us to?" And it only drives them farther away.
2916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Blessed is the One Who has placed constellations in the sky, as well as a ˹radiant˺ lamp and a luminous moon.
2917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And He is the One Who causes the day and the night to alternate, ˹as a sign˺ for whoever desires to be mindful or to be grateful.
2918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The ˹true˺ servants of the Most Compassionate are those who walk on the earth humbly, and when the foolish address them ˹improperly˺, they only respond with peace.
2919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹They are˺ those who spend ˹a good portion of˺ the night, prostrating themselves and standing before their Lord.
2920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹They are˺ those who pray, "Our Lord! Keep the punishment of Hell away from us, for its punishment is indeed unrelenting.
2921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is certainly an evil place to settle and reside."
2922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They are˺ those who spend neither wastefully nor stingily, but moderately in between.
2923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They are˺ those who do not invoke any other god besides Allah, nor take a ˹human˺ life—made sacred by Allah—except with ˹legal˺ right, nor commit fornication. And whoever does ˹any of˺ this will face the penalty.
2924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Their punishment will be multiplied on the Day of Judgment, and they will remain in it forever, in disgrace.
2925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who repent, believe, and do good deeds, they are the ones whose evil deeds Allah will change into good deeds. For Allah is All-Forgiving, Most Merciful.
2926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And whoever repents and does good has truly turned to Allah properly.
2927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹They are˺ those who do not bear false witness, and when they come across falsehood, they pass ˹it˺ by with dignity.
2928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹They are˺ those who, when reminded of the revelation of their Lord, do not turn a blind eye or a deaf ear to it.
2929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹They are˺ those who pray, "Our Lord! Bless us with ˹pious˺ spouses and offspring who will be the joy of our hearts, and make us models for the righteous."
2930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is they who will be rewarded with ˹elevated˺ mansions ˹in Paradise˺ for their perseverance, and will be received with salutations and ˹greetings of˺ peace,
2931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           staying there forever. What an excellent place to settle and reside!
2932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "You ˹all˺ would not ˹even˺ matter to my Lord were it not for your faith ˹in Him˺. But now you ˹disbelievers˺ have denied ˹the truth˺, so the torment is bound to come."
2933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ṭa-Sĩn-Mĩm.
2934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the verses of the clear Book.
2935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Perhaps you ˹O Prophet˺ will grieve yourself to death over their disbelief.
2936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If We willed, We could send down upon them a ˹compelling˺ sign from the heavens, leaving their necks bent in ˹utter˺ submission to it.
2937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whatever new reminder comes to them from the Most Compassionate, they always turn away from it.
2938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They have certainly denied ˹the truth˺, so they will soon face the consequences of their ridicule.
2939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Have they failed to look at the earth, ˹to see˺ how many types of fine plants We have caused to grow in it?
2940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely in this is a sign. Yet most of them would not believe.
2941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
2942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Remember˺ when your Lord called out to Moses, "Go to the wrongdoing people—
2943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            the people of Pharaoh. Will they not fear ˹Allah˺?"
2944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He replied, "My Lord! I fear that they will reject me.
2945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹so˺ my heart will be broken and my tongue will be tied. So send Aaron along ˹as a messenger˺.
2946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Also, they have a charge against me, so I fear they may kill me."
2947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah responded, "Certainly not! So go, both of you, with Our signs. We will be with you, listening.
2948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Go to Pharaoh and say, ‘We are messengers from the Lord of all worlds,
2949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹commanded to say:˺ ‘Let the Children of Israel go with us.’’"
2950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Pharaoh protested, "Did we not raise you among us as a child, and you stayed several years of your life in our care?
2951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then you did what you did, being ˹utterly˺ ungrateful!"
2952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses replied, "I did it then, lacking guidance.
2953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So I fled from you when I feared you. Then my Lord granted me wisdom and made me one of the messengers.
2954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How can that be a ‘favour,’ of which you remind me, when ˹it was only because˺ you ˹have˺ enslaved the Children of Israel?"
2955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Pharaoh asked, "And what is ‘the Lord of all worlds’?"
2956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moses replied, "˹He is˺ the Lord of the heavens and the earth and everything in between, if only you had sure faith."
2957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pharaoh said to those around him, "Did you hear ˹what he said˺?"
2958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moses added, "˹He is˺ your Lord and the Lord of your forefathers."
2959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharaoh said ˹mockingly˺, "Your messenger, who has been sent to you, must be insane."
2960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moses responded: "˹He is˺ the Lord of the east and west, and everything in between, if only you had any sense."
2961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pharaoh threatened, "If you take any other god besides me, I will certainly have you imprisoned."
2962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moses responded, "Even if I bring you a clear proof?"
2963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Pharaoh demanded, "Bring it then, if what you say is true."
2964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So he threw down his staff and—behold!—it became a real snake.
2965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then he drew his hand ˹out of his collar˺ and it was ˹shining˺ white for all to see.
2966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Pharaoh said to the chiefs around him, "He is indeed a skilled magician,
2967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   who seeks to drive you from your land by his magic. So what do you propose?"
2968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They replied, "Let him and his brother wait and dispatch mobilizers to all cities
2969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          to bring you every skilled magician."
2970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the magicians were assembled at the set time on the appointed day.
2971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people were asked, "Will you join the gathering,
2972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          so that we may follow the magicians if they prevail?"
2973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When the magicians came, they asked Pharaoh, "Shall we have a ˹suitable˺ reward if we prevail?"
2974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He replied, "Yes, and you will then certainly be among those closest to me."
2975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moses said to them, "Cast whatever you wish to cast."
2976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So they cast down their ropes and staffs, saying, "By Pharaoh’s might, it is we who will surely prevail."
2977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then Moses threw down his staff, and—behold!—it devoured the objects of their illusion!
2978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the magicians fell down, prostrating.
2979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They declared, "We ˹now˺ believe in the Lord of all worlds—
2980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  the Lord of Moses and Aaron."
2981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pharaoh threatened, "How dare you believe in him before I give you permission? He must be your master who taught you magic, but soon you will see. I will certainly cut off your hands and feet on opposite sides, then crucify you all."
2982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They responded, "˹That would be˺ no harm! Surely to our Lord we will ˹all˺ return.
2983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We really hope that our Lord will forgive our sins, as we are the first to believe."
2984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And We inspired Moses, ˹saying,˺ "Leave with My servants at night, for you will surely be pursued."
2985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Pharaoh sent mobilizers to all cities,
2986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹and said,˺ "These ˹outcasts˺ are just a handful of people,
2987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    who have really enraged us,
2988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  but we are all on the alert."
2989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So We lured the tyrants out of ˹their˺ gardens, springs,
2990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            treasures, and splendid residences.
2991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So it was. And We awarded it ˹all˺ to the Children of Israel.
2992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And so they pursued them at sunrise.
2993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the two groups came face to face, the companions of Moses cried out, "We are overtaken for sure."
2994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moses reassured ˹them˺, "Absolutely not! My Lord is certainly with me—He will guide me."
2995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So We inspired Moses: "Strike the sea with your staff," and the sea was split, each part was like a huge mountain.
2996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We drew the pursuers to that place,
2997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and delivered Moses and those with him all together.
2998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then We drowned the others.
2999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely in this is a sign. Yet most of them would not believe.
3000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Relate to them ˹O Prophet˺ the story of Abraham,
3002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      when he questioned his father and his people, "What is that you worship ˹besides Allah˺?"
3003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They replied, "We worship idols, to which we are fully devoted."
3004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Abraham asked, "Can they hear you when you call upon them?
3005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or can they benefit or harm you?"
3006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They replied, "No! But we found our forefathers doing the same."
3007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Abraham responded, "Have you ˹really˺ considered what you have been worshipping—
3008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        you and your ancestors?
3009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They are ˹all˺ enemies to me, except the Lord of all worlds.
3010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹He is˺ the One Who created me, and He ˹alone˺ guides me.
3011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹He is˺ the One Who provides me with food and drink.
3012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And He ˹alone˺ heals me when I am sick.
3013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And He ˹is the One Who˺ will cause me to die, and then bring me back to life.
3014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And He is ˹the One˺ Who, I hope, will forgive my flaws on Judgment Day."
3015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     "My Lord! Grant me wisdom, and join me with the righteous.
3016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bless me with honourable mention among later generations.
3017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make me one of those awarded the Garden of Bliss.
3018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Forgive my father, for he is certainly one of the misguided.
3019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And do not disgrace me on the Day all will be resurrected—
3020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               the Day when neither wealth nor children will be of any benefit.
3021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Only those who come before Allah with a pure heart ˹will be saved˺."
3022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹On that Day˺ Paradise will be brought near to the God-fearing,
3023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and the Hellfire will be displayed to the deviant.
3024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it will be said to them, "Where are those you used to worship
3025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     besides Allah? Can they help you or even help themselves?"
3026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then the idols will be hurled headlong into Hell, along with the deviant
3027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and the soldiers of Iblis, all together.
3028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   There the deviant will cry while disputing with their idols,
3029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           "By Allah! We were clearly mistaken,
3030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              when we made you equal to the Lord of all worlds.
3031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And none led us astray other than the wicked.
3032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now we have none to intercede for us,
3033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nor a close friend.
3034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If only we could have a second chance, then we would be believers."
3035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely in this is a sign. Yet most of them would not believe.
3036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The people of Noah rejected the messengers
3038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              when their brother Noah said to them, "Will you not fear ˹Allah˺?
3039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am truly a trustworthy messenger to you.
3040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So fear Allah, and obey me."
3043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They argued, "How can we believe in you, when you are followed ˹only˺ by the lowest of the low?"
3044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He responded, "And what knowledge do I have of what they do?
3045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Their judgment is with my Lord, if you had any sense!
3046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I am not going to expel the believers.
3047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I am only sent with a clear warning."
3048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They threatened, "If you do not desist, O  Noah, you will surely be stoned ˹to death˺."
3049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Noah prayed, "My Lord! My people have truly rejected me.
3050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So judge between me and them decisively, and save me and the believers with me."
3051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So We saved him and those with him in the fully loaded Ark.
3052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then afterwards We drowned the rest.
3053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely in this is a sign. Yet most of them would not believe.
3054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The people of ’ad rejected the messengers
3056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               when their brother Hûd said to them, "Will you not fear ˹Allah˺?
3057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am truly a trustworthy messenger to you.
3058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Why˺ do you build a landmark on every high place in vanity,
3061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and construct castles, as if you are going to live forever,
3062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and act so viciously when you attack ˹others˺?
3063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Fear the One Who has provided you with ˹the good˺ things you know:
3065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He provided you with cattle, and children,
3066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and gardens, and springs.
3067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I truly fear for you the torment of a tremendous day."
3068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They responded, "It is all the same to us whether you warn ˹us˺ or not.
3069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is simply the tradition of our predecessors.
3070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And we will never be punished."
3071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So they rejected him, and ˹so˺ We destroyed them. Surely in this is a sign. Yet most of them would not believe.
3072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The people of Thamûd rejected the messengers
3074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             when their brother salih said to them, "Will you not fear ˹Allah˺?
3075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am truly a trustworthy messenger to you.
3076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you think you will be ˹forever˺ left secure in what you have here:
3079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      amid gardens and springs,
3080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and ˹various˺ crops, and palm trees ˹loaded˺ with tender fruit;
3081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              to carve homes in the mountains with great skill?
3082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And do not follow the command of the transgressors,
3084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        who spread corruption throughout the land, never setting things right."
3085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They replied, "You are simply bewitched!
3086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You are only a human being like us, so bring forth a sign if what you say is true."
3087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     salih said, "Here is a camel. She will have her turn to drink as you have yours, each on an appointed day.
3088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And do not ever touch her with harm, or you will be overtaken by the torment of a tremendous day."
3089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But they killed her, becoming regretful.
3090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So the punishment overtook them. Surely in this is a sign. Yet most of them would not believe.
3091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The people of Lot rejected the messengers
3093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               when their brother Lot said to them, "Will you not fear ˹Allah˺?
3094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am truly a trustworthy messenger to you.
3095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Why do you ˹men˺ lust after fellow men,
3098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                leaving the wives that your Lord has created for you? In fact, you are a transgressing people."
3099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They threatened, "If you do not desist, O  Lot, you will surely be expelled."
3100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lot responded, "I am truly one of those who despise your ˹shameful˺ practice.
3101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My Lord! Save me and my family from ˹the consequences of˺ what they do."
3102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So We saved him and all of his family,
3103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                except an old woman, who was one of the doomed.
3104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then We utterly destroyed the rest,
3105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   pouring upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!
3106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely in this is a sign. Yet most of them would not believe.
3107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The residents of the Forest rejected the messengers
3109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         when Shu’aib said to them, "Will you not fear ˹Allah˺?
3110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I am truly a trustworthy messenger to you.
3111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So fear Allah, and obey me.
3112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do not ask you for any reward for this ˹message˺. My reward is only from the Lord of all worlds.
3113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Give full measure, and cause no loss ˹to others˺.
3114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Weigh with an even balance,
3115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and do not defraud people of their property. Nor go about spreading corruption in the land.
3116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And fear the One Who created you and ˹all˺ earlier peoples."
3117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They replied, "You are simply bewitched!
3118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also, you are only a human being like us, and we think you are indeed a liar.
3119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So cause ˹deadly˺ pieces of the sky to fall upon us, if what you say is true."
3120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shu’aib responded, "My Lord knows best whatever you do."
3121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they rejected him, and ˹so˺ were overtaken by the torment of the day of the ˹deadly˺ cloud. That was really a torment of a tremendous day.
3122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely in this is a sign. Yet most of them would not believe.
3123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And your Lord is certainly the Almighty, Most Merciful.
3124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is certainly a revelation from the Lord of all worlds,
3125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            which the trustworthy spirit ˹Gabriel˺ brought down
3126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             into your heart ˹O Prophet˺—so that you may be one of the warners—
3127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      in a clear Arabic tongue.
3128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it has indeed been ˹foretold˺ in the Scriptures of those before.
3129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Was it not sufficient proof for the deniers that it has been recognized by the knowledgeable among the Children of Israel?
3130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had We revealed it to a non-Arab,
3131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          who would then recite it to the deniers ˹in fluent Arabic˺, still they would not have believed in it!
3132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is how We allow denial ˹to steep˺ into the hearts of the wicked.
3133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will not believe in it until they see the painful punishment,
3134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  which will take them by surprise when they least expect ˹it˺.
3135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then they will cry, "Can we be allowed more time?"
3136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do they ˹really˺ seek to hasten Our torment?
3137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Imagine ˹O Prophet˺ if We allowed them enjoyment for years,
3138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    then there came to them what they had been threatened with:
3139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       would that enjoyment be of any benefit to them ˹at all˺?
3140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have never destroyed a society without warners
3141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           to remind ˹them˺, for We would never wrong ˹anyone˺.
3142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It was not the devils who brought this ˹Quran˺ down:
3143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   it is not for them ˹to do so˺, nor can they,
3144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     for they are strictly barred from ˹even˺ overhearing ˹it˺.
3145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So do not ever call upon any other god besides Allah, or you will be one of the punished.
3146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And warn ˹all, starting with˺ your closest relatives,
3147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and be gracious to the believers who follow you.
3148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if they disobey you, say, "I am certainly free of what you do."
3149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Put your trust in the Almighty, Most Merciful,
3150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who sees you when you rise ˹for prayer at night˺,
3151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         as well as your movements ˹in prayer˺ along with ˹fellow˺ worshippers.
3152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He ˹alone˺ is indeed the All-Hearing, All-Knowing.
3153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Shall I inform you of whom the devils ˹actually˺ descend upon?
3154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They descend upon every sinful liar,
3155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   who gives an ˹attentive˺ ear ˹to half-truths˺, mostly passing on sheer lies.
3156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for poets, they are followed ˹merely˺ by deviants.
3157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do you not see how they rant in every field,
3158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                only saying what they never do?
3159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Except those who believe, do good, remember Allah often, and ˹poetically˺ avenge ˹the believers˺ after being wrongfully slandered. The wrongdoers will come to know what ˹evil˺ end they will meet.
3160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ṭa-Sĩn. These are the verses of the Quran; the clear Book.
3161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹It is˺ a guide and good news for the believers:
3162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹those˺ who establish prayer, pay alms-tax, and have sure faith in the Hereafter.
3163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who do not believe in the Hereafter, We have certainly made their ˹evil˺ deeds appealing to them, so they wander blindly.
3164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is they who will suffer a dreadful torment, and in the Hereafter they will ˹truly˺ be the greatest losers.
3165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And indeed, you ˹O Prophet˺ are receiving the Quran from the One ˹Who is˺ All-Wise, All-Knowing.
3166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Remember˺ when Moses said to his family, "I have spotted a fire. I will either bring you some directions from there, or a burning torch so you may warm yourselves."
3167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But when he came to it, he was called ˹by Allah˺, "Blessed is the one at the fire, and whoever is around it! Glory be to Allah, the Lord of all worlds.
3168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O  Moses! It is truly I. I am Allah—the Almighty, All-Wise.
3169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now, throw down your staff!" But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ "O Moses! Do not be afraid! Messengers should have no fear in My presence.
3170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Fear is˺ only for those who do wrong. But if they later mend ˹their˺ evil ˹ways˺ with good, then I am certainly All-Forgiving, Most Merciful.
3171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. They have truly been a rebellious people."
3172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But when Our enlightening signs came to them, they said, "This is pure magic."
3173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And, although their hearts were convinced the signs were true, they still denied them wrongfully and arrogantly. See then what was the end of the corruptors!
3174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We granted knowledge to David and Solomon. And they said ˹in acknowledgment˺, "All praise is for Allah Who has privileged us over many of His faithful servants."
3175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David was succeeded by Solomon, who said, "O people! We have been taught the language of birds, and been given everything ˹we need˺. This is indeed a great privilege."
3176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Solomon’s forces of jinn, humans, and birds were rallied for him, perfectly organized.
3177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when they came across a valley of ants, an ant warned, "O ants! Go quickly into your homes so Solomon and his armies do not crush you, unknowingly."
3178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Solomon smiled in amusement at her words, and prayed, "My Lord! Inspire me to ˹always˺ be thankful for Your favours which You have blessed me and my parents with, and to do good deeds that please you. Admit me, by Your mercy, into ˹the company of˺ Your righteous servants."
3179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹One day˺ he inspected the birds, and wondered, "Why is it that I cannot see the hoopoe? Or could he be absent?
3180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will surely subject him to a severe punishment, or ˹even˺ slaughter him, unless he brings me a compelling excuse."
3181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It was not long before the bird came and said, "I have found out something you do not know. I have just come to you from Sheba with sure news.
3182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, I found a woman ruling over them, who has been given everything ˹she needs˺, and who has a magnificent throne.
3183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I found her and her people prostrating to the sun instead of Allah. For Satan has made their deeds appealing to them—hindering them from the ˹Right˺ Way and leaving them unguided—
3184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so they do not prostrate to Allah, Who brings forth what is hidden in the heavens and the earth, and knows what you ˹all˺ conceal and what you reveal.
3185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹He is˺ Allah! There is no god ˹worthy of worship˺ except Him, the Lord of the Mighty Throne."
3186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Solomon said, "We will see whether you are telling the truth or lying.
3187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Go with this letter of mine and deliver it to them, then stand aside and see how they will respond."
3188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Queen ˹later˺ announced, "O chiefs! Indeed, a noble letter has been delivered to me.
3189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is from Solomon, and it reads: ‘In the Name of Allah—the Most Compassionate, Most Merciful.
3190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do not be arrogant with me, but come to me, fully submitting ˹to Allah˺.’"
3191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       She said, "O chiefs! Advise me in this matter of mine, for I would never make any decision without you."
3192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They responded, "We are a people of strength and great ˹military˺ might, but the decision is yours, so decide what you will command."
3193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        She reasoned, "Indeed, when kings invade a land, they ruin it and debase its nobles. They really do so!
3194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But I will certainly send him a gift, and see what ˹response˺ my envoys will return with."
3195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When the chief-envoy came to him, Solomon said, "Do you offer me wealth? What Allah has granted me is far greater than what He has granted you. No! It is you who rejoice in ˹receiving˺ gifts.
3196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Go back to them, for we will certainly mobilize against them forces which they can never resist, and we will drive them out from there in disgrace, fully humbled."
3197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Solomon asked, "O chiefs! Which of you can bring me her throne before they come to me in ˹full˺ submission?"
3198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          One mighty jinn responded, "I can bring it to you before you rise from this council of yours. And I am quite strong and trustworthy for this ˹task˺."
3199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the one who had knowledge of the Scripture said, "I can bring it to you in the blink of an eye." So when Solomon saw it placed before him, he exclaimed, "This is by the grace of my Lord to test me whether I am grateful or ungrateful. And whoever is grateful, it is only for their own good. But whoever is ungrateful, surely my Lord is Self-Sufficient, Most Generous."
3200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Then˺ Solomon said, "Disguise her throne for her so we may see whether she will recognize ˹it˺ or she will not be able to."
3201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So when she arrived, it was said ˹to her˺, "Is your throne like this?" She replied, "It looks to be the same. We have ˹already˺ received knowledge ˹of Solomon’s prophethood˺ and have submitted ˹to Allah˺."
3202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But she had been hindered by what she used to worship instead of Allah, for she was indeed from a disbelieving people.
3203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then she was told, "Enter the palace." But when she saw the hall, she thought it was a body of water, so she bared her legs. Solomon said. "It is just a palace paved with crystal." ˹At last˺ she declared, "My Lord! I have certainly wronged my soul. Now I ˹fully˺ submit myself along with Solomon to Allah, the Lord of all worlds."
3204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And We certainly sent to the people of Thamûd their brother salih, proclaiming, "Worship Allah," but they suddenly split into two opposing groups.
3205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He urged ˹the disbelieving group˺, "O my people! Why do you ˹seek to˺ hasten the torment If only you sought Allah’s forgiveness so you may be shown mercy!"
3206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They replied, "You and your followers are a bad omen for us." He responded, "Your omens are destined by Allah. In fact, you are ˹only˺ a people being tested."
3207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there were in the city nine ˹elite˺ men who spread corruption in the land, never doing what is right.
3208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They vowed, "Let us swear by Allah that we will take him and his family down by night. Then we will certainly say to his ˹closest˺ heirs, ‘We did not witness the murder of his family. We are definitely telling the truth.’"
3209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹so˺ they made a plan, but We too made a plan, while they were unaware.
3210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  See then what the consequences of their plan were: We ˹utterly˺ destroyed them and their people all together.
3211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So their homes are there, ˹but completely˺ ruined because of their wrongdoing. Surely in this is a lesson for people of knowledge.
3212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We delivered those who were faithful and were mindful ˹of Allah˺.
3213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ˹remember˺ Lot, when he rebuked ˹the men of˺ his people, "Do you commit that shameful deed while you can see ˹one another˺?
3214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do you really lust after men instead of women? In fact, you are ˹only˺ a people acting ignorantly."
3215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But his people’s only response was to say, "Expel Lot’s followers from your land! They are a people who wish to remain chaste!"
3216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So We delivered him and his family, except his wife. We had destined her to be one of the doomed.
3217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And We poured upon them a rain ˹of brimstone˺. How evil was the rain of those who had been warned!
3218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "Praise be to Allah, and peace be upon the servants He has chosen." ˹Ask the disbelievers,˺ "Which is better: Allah or whatever ˹gods˺ they associate ˹with Him˺?"
3219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Or ˹ask them,˺ "Who created the heavens and the earth, and sends down rain for you from the sky, by which We cause delightful gardens to grow? You could never cause their trees to grow. Was it another god besides Allah?" Absolutely not! But they are a people who set up equals ˹to Allah˺!
3220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or ˹ask them,˺ "Who made the earth a place of settlement, caused rivers to flow through it, placed firm mountains upon it, and set a barrier between ˹fresh and salt˺ bodies of water? Was it another god besides Allah?" Absolutely not! But most of them do not know.
3221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or ˹ask them,˺ "Who responds to the distressed when they cry to Him, relieving ˹their˺ affliction, and ˹Who˺ makes you successors in the earth? Is it another god besides Allah? Yet you are hardly mindful!"
3222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or ˹ask them,˺ "Who guides you in the darkness of the land and sea, Is it another god besides Allah? Exalted is Allah above what they associate ˹with Him˺!
3223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or ˹ask them,˺ "Who originates the creation then resurrects it, and gives you provisions from the heavens and the earth? Is it another god besides Allah?" Say, ˹O Prophet,˺ "Show ˹me˺ your proof, if what you say is true."
3224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "None in the heavens and the earth has knowledge of the unseen except Allah. Nor do they know when they will be resurrected.
3225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No! Their knowledge of the Hereafter amounts to ignorance. In fact, they are in doubt about it. In truth, they are ˹totally˺ blind to it.
3226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The disbelievers ask, "When we and our fathers are reduced to dust, will we really be brought forth ˹alive˺?
3227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have already been promised this, as well as our forefathers earlier. This is nothing but ancient fables!"
3228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "Travel throughout the land and see the fate of the wicked."
3229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do not grieve for them, nor be distressed by their schemes.
3230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
3231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "Perhaps some of what you seek to hasten is close at hand."
3232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely your Lord is ever Bountiful to humanity, but most of them are ungrateful.
3233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And surely your Lord knows what their hearts conceal and what they reveal.
3234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For there is nothing hidden in the heavens or the earth without being ˹written˺ in a perfect Record.
3235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, this Quran clarifies for the Children of Israel most of what they differ over.
3236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it is truly a guide and mercy for the believers.
3237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your Lord will certainly judge between them by His justice, for He is the Almighty, All-Knowing.
3238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So put your trust in Allah, for you are surely upon the ˹Path of˺ clear truth.
3239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.
3240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.
3241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when the decree ˹of the Hour˺ comes to pass against them, We will bring forth for them a beast from the earth, telling them that the people had no sure faith in Our revelations.
3242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Watch for˺ the Day We will gather from every faith-community a group of those who denied Our revelations, and they will be driven in ranks.
3243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When they ˹finally˺ come before their Lord, He will ask ˹them˺, "Did you deny My revelations without ˹even˺ comprehending them? Or what ˹exactly˺ did you do?"
3244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the decree ˹of torment˺ will be justified against them for their wrongdoing, leaving them speechless.
3245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do they not see that We made the night for them to rest in and the day bright? Surely in this are signs for those who believe.
3246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹beware of˺ the Day the Trumpet will be blown, and all those in the heavens and all those on the earth will be horrified ˹to the point of death˺, except those Allah wills ˹to spare˺. And all will come before Him, fully humbled.
3247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now you see the mountains, thinking they are firmly fixed, but they are travelling ˹just˺ like clouds. ˹That is˺ the design of Allah, Who has perfected everything. Surely He is All-Aware of what you do.
3248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whoever comes with a good deed will be rewarded with what is better, and they will be secure from the horror on that Day.
3249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whoever comes with an evil deed will be hurled face-first into the Fire. Are you rewarded except for what you used to do?
3250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "I have only been commanded to worship the Lord of this city ˹of Mecca˺, Who has made it sacred, and to Him belongs everything. And I am commanded to be one of those who ˹fully˺ submit ˹to Him˺,
3251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and to recite the Quran." Then whoever chooses to be guided, it is only for their own good. But whoever chooses to stray, say, ˹O Prophet,˺ "I am only a warner."
3252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And say, "All praise is for Allah! He will show you His signs, and you will recognize them. And your Lord is never unaware of what you do."
3253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ṭa-Sĩn-Mĩm.
3254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the verses of the clear Book.
3255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We narrate to you ˹O Prophet˺ part of the story of Moses and Pharaoh in truth for people who believe.
3256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, Pharaoh ˹arrogantly˺ elevated himself in the land and divided its people into ˹subservient˺ groups, one of which he persecuted, slaughtering their sons and keeping their women. He was truly one of the corruptors.
3257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But it was Our Will to favour those who were oppressed in the land, making them models ˹of faith˺ as well as successors;
3258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and to establish them in the land; and through them show Pharaoh, Haman,
3259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We inspired the mother of Moses: "Nurse him, but when you fear for him, put him then into the river, and do not fear or grieve. We will certainly return him to you, and make him one of the messengers."
3260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹it so happened that˺ Pharaoh’s people picked him up, only to become their enemy and source of grief. Surely Pharaoh, Haman, and their soldiers were sinful.
3261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pharaoh’s wife said ˹to him˺, "˹This baby is˺ a source of joy for me and you. Do not kill him. Perhaps he may be useful to us or we may adopt him as a son." They were unaware ˹of what was to come˺.
3262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the heart of Moses’ mother ached so much that she almost gave away his identity, had We not reassured her heart in order for her to have faith ˹in Allah’s promise˺.
3263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she said to his sister, "Keep track of him!" So she watched him from a distance, while they were unaware.
3264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And We had caused him to refuse all wet-nurses at first, so his sister suggested, "Shall I direct you to a family who will bring him up for you and take good care of him?"
3265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is how We returned him to his mother so that her heart would be put at ease, and not grieve, and that she would know that Allah’s promise is ˹always˺ true. But most people do not know.
3266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when he reached full strength and maturity, We gave him wisdom and knowledge. This is how We reward the good-doers.
3267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹One day˺ he entered the city unnoticed by its people. There he found two men fighting: one of his own people, and the other of his enemies. The man from his people called to him for help against his foe. So Moses punched him, causing his death. Moses cried, "This is from Satan’s handiwork. He is certainly a sworn, misleading enemy."
3268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He pleaded, "My Lord! I have definitely wronged my soul, so forgive me." So He forgave him, ˹for˺ He is indeed the All-Forgiving, Most Merciful.
3269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses pledged, "My Lord! For all Your favours upon me, I will never side with the wicked."
3270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so Moses became fearful, watching out in the city, when suddenly the one who sought his help the day before cried out to him again for help. Moses rebuked him, "Indeed, you are clearly a trouble-maker."
3271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then when Moses was about to lay his hands on their foe, the enemy said, "O Moses! Do you intend to kill me as you killed a man yesterday? You only want to be a tyrant in the land. You do not intend to make peace!"
3272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there came a man, rushing from the farthest end of the city. He said, "O Moses! The chiefs are actually conspiring against you to put you to death, so leave ˹the city˺. I really advise you ˹to do so˺."
3273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Moses left the city in a state of fear and caution, praying, "My Lord! Deliver me from the wrongdoing people."
3274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And as he made his way towards Midian, he said, "I trust my Lord will guide me to the right way."
3275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When he arrived at the well of Midian, he found a group of people watering ˹their herds˺. Apart from them, he noticed two women holding back ˹their herd˺. He asked ˹them˺, "What is the problem?" They replied, "We cannot water ˹our animals˺ until the ˹other˺ shepherds are done, for our father is a very old man."
3276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So he watered ˹their herd˺ for them, then withdrew to the shade and prayed, "My Lord! I am truly in ˹desperate˺ need of whatever provision You may have in store for me."
3277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then one of the two women came to him, walking bashfully. She said, "My father is inviting you so he may reward you for watering ˹our animals˺ for us." When Moses came to him and told him his whole story, the old man said, "Have no fear! You are ˹now˺ safe from the wrongdoing people."
3278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One of the two daughters suggested, "O my dear father! Hire him. The best man for employment is definitely the strong and trustworthy ˹one˺."
3279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The old man proposed, "I wish to marry one of these two daughters of mine to you, provided that you stay in my service for eight years. If you complete ten, it will be ˹a favour˺ from you, but I do not wish to make it difficult for you. Allah willing, you will find me an agreeable man."
3280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses responded, "˹Then˺ it is ˹settled˺ between you and I. Whichever term I fulfill, there will be no ˹further˺ obligation on me. And Allah is a Witness to what we say."
3281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When Moses had completed the term and was travelling with his family, he spotted a fire on the side of Mount Ṭûr. He said to his family, "Stay here, ˹for˺ I have spotted a fire. Perhaps from there I can bring you some directions or a torch from the fire so you may warm yourselves."
3282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But when he came to it, he was called from the bush in the sacred ground to the right side of the valley: "O Moses! It is truly I. I am Allah—the Lord of all worlds.
3283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now, throw down your staff!" But when he saw it slithering like a snake, he ran away without looking back. ˹Allah reassured him,˺ "O Moses! Draw near, and have no fear. You are perfectly secure.
3284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now put your hand through ˹the opening of˺ your collar, it will come out ˹shining˺ white, unblemished. These are two proofs from your Lord to Pharaoh and his chiefs. They have truly been a rebellious people."
3285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moses appealed, "My Lord! I have indeed killed a man from them, so I fear they may kill me.
3286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And my brother Aaron is more eloquent than I, so send him with me as a helper to support what I say, for I truly fear they may reject me."
3287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah responded, "We will assist you with your brother and grant you both authority, so they cannot harm you. With Our signs, you and those who follow you will ˹certainly˺ prevail."
3288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But when Moses came to them with Our clear signs, they said ˹arrogantly˺, "This is nothing but conjured magic ˹tricks˺. We have never heard of this in ˹the history of˺ our forefathers."
3289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moses responded, "My Lord knows best who has come with ˹true˺ guidance from Him and will fare best in the end. Indeed, the wrongdoers will never succeed."
3290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Pharaoh declared, "O chiefs! I know of no other god for you but myself. So bake bricks out of clay for me, O  Haman, and build a high tower so I may look at the God of Moses, although I am sure he is a liar."
3291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And so he and his soldiers behaved arrogantly in the land with no right, thinking they would never be returned to Us.
3292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So We seized him and his soldiers, casting them into the sea. See then what was the end of the wrongdoers!
3293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We made them leaders inviting ˹others˺ to the Fire. And on the Day of Judgment they will not be helped.
3294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We caused a curse to follow them in this world. And on the Day of Judgment they will be among the outcasts.
3295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We gave Moses the Scripture—after destroying earlier nations—as an insight for the people, a guide, and mercy so perhaps they would be mindful.
3296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            You were not there ˹O Prophet˺ on the western side of the mountain when We entrusted the Commandments to Moses, nor were you present ˹in his time˺.
3297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But We ˹later˺ raised ˹several˺ generations, and the ages took their toll on them. Nor were you living among the people of Midian, rehearsing Our revelations with them. But it is We Who have sent ˹this revelation to you˺.
3298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And you were not at the side of Mount Ṭûr when We called out ˹to Moses˺. But ˹you have been sent˺ as a mercy from your Lord to warn a people to whom no warner has come before you, so perhaps they may be mindful.
3299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also so they would not say, if struck by an affliction for what their hands have done: "Our Lord! If only You had sent us a messenger, we would have followed Your revelations and become believers."
3300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But when the truth came to them from Us, they said, "If only he was given the like of what Moses had been given." Adding, "We truly deny both."
3301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Bring then a scripture from Allah which is a better guide than these two so I may follow it, if your claim is true."
3302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So if they fail to respond to you, then know that they only follow their desires. And who could be more astray than those who follow their desires with no guidance from Allah? Surely Allah does not guide the wrongdoing people.
3303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, We have steadily delivered the Word ˹of Allah˺ to the people so they may be mindful.
3304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹As for˺ those ˹faithful˺ to whom We had given the Scripture before this ˹Quran˺, they do believe in it.
3305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When it is recited to them, they declare, "We believe in it. This is definitely the truth from our Lord. We had already submitted ˹even˺ before this."
3306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These ˹believers˺ will be given a double reward for their perseverance, responding to evil with good, and for donating from what We have provided for them.
3307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they hear slanderous talk, they turn away from it, saying, "We are accountable for our deeds and you for yours. Peace ˹is our only response˺ to you! We want nothing to do with those who act ignorantly."
3308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You surely cannot guide whoever you like ˹O Prophet˺, but it is Allah Who guides whoever He wills, and He knows best who are ˹fit to be˺ guided.
3309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They say ˹to the Prophet˺, "If we were to follow ˹true˺ guidance with you, we would certainly be snatched away from our land." Have We not established for them a safe haven ˹in Mecca˺ to which fruits of all kinds are brought as a provision from Us? But most of them do not know ˹this favour˺.
3310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Imagine˺ how many societies We have destroyed that had been spoiled by their ˹comfortable˺ living! Those are their residences, never inhabited after them except passingly. And We ˹alone˺ were the Successor.
3311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Your Lord would never destroy a society until He had sent to its capital a messenger, reciting Our revelations to them. Nor would We ever destroy a society unless its people persisted in wrongdoing.
3312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whatever ˹pleasure˺ you have been given is no more than ˹a fleeting˺ enjoyment and adornment of this worldly life. But what is with Allah is far better and more lasting. Will you not then understand?
3313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Can those to whom We have made a fine promise—which they will see fulfilled—be like those who We have allowed to enjoy the pleasures of this worldly life, but on the Day of Judgment will be brought ˹for punishment˺?
3314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Watch for˺ the Day He will call to them, "Where are those you claimed were My associate-gods?"
3315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those ˹misleaders˺ against whom the decree ˹of torment˺ is justified will cry, "Our Lord! These ˹followers˺ are the ones we caused to deviate. We led them into deviance, for we ourselves were deviant. We disassociate ourselves ˹from them˺ before You. It was not us that they used to worship."
3316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It will be said ˹to the disbelievers˺, "Call upon your associate-gods ˹for help˺." So they will call them, but will receive no response. And they will face the punishment, wishing they had been ˹rightly˺ guided!
3317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ˹watch for˺ the Day He will call to them, asking, "What response did you give to the messengers?"
3318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will be too dumbstruck on that Day to ask one another ˹for answers˺.
3319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for those who repent, believe, and do good ˹in this world˺, it is right to hope that they will be among the successful.
3320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Your Lord creates and chooses whatever He wills—the choice is not theirs. Glorified and Exalted is Allah above what they associate ˹with Him˺!
3321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And your Lord knows what their hearts conceal and what they reveal.
3322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is Allah. There is no god ˹worthy of worship˺ except Him. All praise belongs to Him in this life and the next. All authority is His. And to Him you will ˹all˺ be returned.
3323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ask ˹them, O  Prophet˺, "Imagine if Allah were to make the night perpetual for you until the Day of Judgment, which god other than Allah could bring you sunlight? Will you not then listen?"
3324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ask ˹them also˺, "Imagine if Allah were to make the day perpetual for you until the Day of Judgment, which god other than Allah could bring you night to rest in? Will you not then see?"
3325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is out of His mercy that He has made for you the day and night so that you may rest ˹in the latter˺ and seek His bounty ˹in the former˺, and perhaps you will be grateful.
3326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ˹watch for˺ the Day He will call to them, "Where are those you claimed were My associate-gods?"
3327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And We will bring forth a witness from every faith-community and ask ˹the polytheists˺, "Show ˹Us˺ your proof." Then they will ˹come to˺ know that the truth is with Allah ˹alone˺. And whatever ˹gods˺ they fabricated will fail them.
3328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, Korah was from the people of Moses, but he behaved arrogantly towards them. We had granted him such treasures that even their keys would burden a group of strong men. ˹Some of˺ his people advised him, "Do not be prideful! Surely Allah does not like the prideful.
3329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rather, seek the ˹reward˺ of the Hereafter by means of what Allah has granted you, without forgetting your share of this world. And be good ˹to others˺ as Allah has been good to you. Do not seek to spread corruption in the land, for Allah certainly does not like the corruptors."
3330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He replied, "I have been granted all this because of some knowledge I have."
3331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then he came out before his people in all his glamour. Those who desired the life of this world wished, "If only we could have something like what Korah has been given. He is truly a man of great fortune!"
3332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But those gifted with knowledge said, "Shame on you! Allah’s reward is far better for those who believe and do good. But none will attain this except the steadfast."
3333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then We caused the earth to swallow him up, along with his home. There was no one to help him against Allah, nor could he even help himself.
3334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those who had craved his position the previous day began to say, "Ah! It is certainly Allah Who gives abundant or limited provisions to whoever He wills of His servants. Had it not been for the grace of Allah, He could have surely caused the earth to swallow us up! Oh, indeed! The disbelievers will never succeed."
3335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That ˹eternal˺ Home in the Hereafter We reserve ˹only˺ for those who seek neither tyranny nor corruption on the earth. The ultimate outcome belongs ˹only˺ to the righteous.
3336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whoever comes with a good deed will be rewarded with what is better. And whoever comes with an evil deed, then the evildoers will only be rewarded for what they used to do.
3337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Most certainly, the One Who has ordained the Quran for you will ˹ultimately˺ bring you back home ˹to Mecca˺. Say, "My Lord knows best who has come with ˹true˺ guidance and who is clearly astray."
3338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You never expected this Book to be revealed to you, but ˹it came˺ only ˹as˺ a mercy from your Lord. So never side with the disbelievers ˹in their disbelief˺.
3339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do not let them turn you away from the revelations of Allah after they have been sent down to you. Rather, invite ˹all˺ to ˹the Way of˺ your Lord, and never be one of the polytheists.
3340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And do not invoke any other god with Allah. There is no god ˹worthy of worship˺ except Him. Everything is bound to perish except He Himself. All authority belongs to Him. And to Him you will ˹all˺ be returned.
3341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alif-Lãm-Mĩm.
3342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do people think once they say, "We believe," that they will be left without being put to the test?
3343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We certainly tested those before them. And ˹in this way˺ Allah will clearly distinguish between those who are truthful and those who are liars.
3344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do the evildoers ˹simply˺ think that they will escape Us? How wrong is their judgment!
3345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whoever hopes for the meeting with Allah, ˹let them know that˺ Allah’s appointed time is sure to come. He is the All-Hearing, All-Knowing.
3346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whoever strives ˹in Allah’s cause˺, only does so for their own good. Surely Allah is not in need of ˹any of˺ His creation.
3347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for those who believe and do good, We will certainly absolve them of their sins, and reward them according to the best of what they used to do.
3348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have commanded people to honour their parents. But if they urge you to associate with Me what you have no knowledge of, then do not obey them. To Me you will ˹all˺ return, and then I will inform you of what you used to do.
3349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who believe and do good will surely be admitted by Us into ˹the company of˺ the righteous.
3350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There are some who say, "We believe in Allah," but when they suffer in the cause of Allah, they mistake ˹this˺ persecution at the hands of people for the punishment of Allah. But when victory comes from your Lord, they surely say ˹to the believers˺, "We have always been with you." Does Allah not know best what is in the hearts of all beings?
3351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah will certainly distinguish between those who have ˹sure˺ faith and the hypocrites.
3352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The disbelievers say to the believers, "˹Just˺ follow our way, and we will bear ˹the burden of˺ your sins." But they would never ˹want to˺ bear any of the believers’ sins. They are simply lying.
3353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yet they will certainly ˹be made to˺ carry their own burdens, as well as other burdens along with their own. And they will surely be questioned on Judgment Day about what they used to fabricate.
3354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We sent Noah to his people, and he remained among them for a thousand years, less fifty. Then the Flood overtook them, while they persisted in wrongdoing.
3355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But We delivered him and those in the Ark, making it a sign for all people.
3356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹remember˺ when Abraham said to his people, "Worship Allah, and fear Him. This is better for you, if only you knew.
3357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You worship besides Allah nothing but idols, simply creating lies ˹about them˺. Those you worship besides Allah certainly cannot give you any provision. So seek provision from Allah ˹alone˺, worship Him, and be grateful to Him. To Him you will ˹all˺ be returned.
3358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If you ˹Meccans˺ persist in denial, so did ˹many˺ communities before you. The Messenger’s duty is only to deliver ˹the message˺ clearly."
3359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have they not seen how Allah originates the creation then resurrects it? That is certainly easy for Allah.
3360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "Travel throughout the land and see how He originated the creation, then Allah will bring it into being one more time. Surely Allah is Most Capable of everything.
3361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He punishes whoever He wills, and shows mercy to whoever He wills. And you will ˹all˺ be returned to Him.
3362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And you cannot escape Him on earth or in heaven. Nor have you any protector or helper besides Allah."
3363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for those who disbelieve in Allah’s signs and the meeting with Him, it is they who will have no hope in His mercy. And it is they who will suffer a painful punishment.
3364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But the only response of Abraham’s people was to say: "Kill him or burn him!" But Allah saved him from the fire. Surely in this are signs for people who believe.
3365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He said ˹to his people˺, "You have taken idols ˹for worship˺ instead of Allah, only to keep ˹the bond of˺ harmony among yourselves in this worldly life. But on the Day of Judgment you will disown and curse one another. Your home will be the Fire, and you will have no helper!"
3366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Lot believed in him. And Abraham said, "I am emigrating ˹in obedience˺ to my Lord. He ˹alone˺ is indeed the Almighty, All-Wise."
3367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We blessed him with Isaac and ˹later˺ Jacob, and reserved prophethood and revelation for his descendants. We gave him his reward in this life, and in the Hereafter he will certainly be among the righteous.
3368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹remember˺ when Lot rebuked ˹the men of˺ his people: "You certainly commit a shameful deed that no man has ever done before you.
3369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do you really lust after ˹other˺ men, abuse the travellers, and practice immorality ˹openly˺ in your gatherings?" His people’s only response was to say ˹mockingly˺: "Bring Allah’s punishment upon us, if what you say is true."
3370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Lot prayed, "My Lord! Help me against the people of corruption."
3371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Our messenger-angels came to Abraham with the good news ˹of the birth of Isaac˺, they said, "We are going to destroy the people of this city ˹of Sodom˺, for its people have persisted in wrongdoing."
3372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He said, "But Lot is there!" They responded, "We know best who is there. We will certainly save him and his family—except his wife, who is one of the doomed."
3373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when Our messenger-angels came to Lot, he was distressed and worried by their arrival. They reassured ˹him˺, "Do not fear, nor grieve. We will surely deliver you and your family—except your wife, who is one of the doomed.
3374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We are certainly bringing down a punishment from heaven upon the people of this city for their rebelliousness."
3375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And We did leave ˹some of˺ its ruins as a clear lesson for people of understanding.
3376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And to the people of Midian ˹We sent˺ their brother Shu’aib. He said, "O my people! Worship Allah, and hope for ˹the reward of˺ the Last Day. And do not go about spreading corruption in the land."
3377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But they rejected him, so an ˹overwhelming˺ earthquake struck them and they fell lifeless in their homes.
3378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the people of ’Ȃd and Thamûd ˹met a similar fate˺, which must be clear to you ˹Meccans˺ from their ruins. Satan made their ˹evil˺ deeds appealing to them, hindering them from the ˹Right˺ Way, although they were capable of reasoning.
3379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹We˺ also ˹destroyed˺ Korah, Pharaoh, and Haman. Indeed, Moses had come to them with clear proofs, but they behaved arrogantly in the land. Yet they could not escape ˹Us˺.
3380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So We seized each ˹people˺ for their sin: against some of them We sent a storm of stones, some were overtaken by a ˹mighty˺ blast, some We caused the earth to swallow, and some We drowned. Allah would not have wronged them, but it was they who wronged themselves.
3381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The parable of those who take protectors other than Allah is that of a spider spinning a shelter. And the flimsiest of all shelters is certainly that of a spider, if only they knew.
3382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah surely knows that whatever ˹gods˺ they invoke besides Him are ˹simply˺ nothing. For He is the Almighty, All-Wise.
3383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the parables We set forth for humanity, but none will understand them except the people of knowledge.
3384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah created the heavens and the earth for a purpose. Surely in this is a sign for the people of faith.
3385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Recite what has been revealed to you of the Book and establish prayer. Indeed, ˹genuine˺ prayer should deter ˹one˺ from indecency and wickedness. The remembrance of Allah is ˹an˺ even greater ˹deterrent˺. And Allah ˹fully˺ knows what you ˹all˺ do.
3386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do not argue with the People of the Book unless gracefully, except with those of them who act wrongfully. And say, "We believe in what has been revealed to us and what was revealed to you. Our God and your God is ˹only˺ One. And to Him we ˹fully˺ submit."
3387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Similarly ˹to earlier messengers˺, We have revealed to you a Book ˹O Prophet˺. ˹The faithful of˺ those to whom We gave the Scriptures believe in it, as do some of these ˹pagan Arabs˺. And none denies Our revelations except the ˹stubborn˺ disbelievers.
3388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You ˹O Prophet˺ could not read any writing ˹even˺ before this ˹revelation˺, nor could you write at all. Otherwise, the people of falsehood would have been suspicious.
3389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But this ˹Quran˺ is ˹a set of˺ clear revelations ˹preserved˺ in the hearts of those gifted with knowledge. And none denies Our revelations except the ˹stubborn˺ wrongdoers.
3390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They say, "If only ˹some˺ signs had been sent down to him from his Lord!" Say, ˹O Prophet,˺ "Signs are only with Allah. And I am only sent with a clear warning."
3391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Is it not enough for them that We have sent down to you the Book, ˹which is˺ recited to them. Surely in this ˹Quran˺ is a mercy and reminder for people who believe.
3392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "Sufficient is Allah as a Witness between me and you. He ˹fully˺ knows whatever is in the heavens and the earth. And those who believe in falsehood and disbelieve in Allah, it is they who are the ˹true˺ losers."
3393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They challenge you ˹O Prophet˺ to hasten the punishment. Had it not been for a time already set, the punishment would have certainly come to them ˹at once˺. But it will definitely take them by surprise when they least expect it.
3394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They urge you to hasten the punishment. And Hell will certainly encompass the disbelievers
3395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           on the Day the punishment will overwhelm them from above them and from below their feet. And it will be said, "Reap what you sowed."
3396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O My believing servants! My earth is truly spacious, so worship Me ˹alone˺.
3397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Every soul will taste death, then to Us you will ˹all˺ be returned.
3398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹As for˺ those who believe and do good, We will certainly house them in ˹elevated˺ mansions in Paradise, under which rivers flow, to stay there forever. How excellent is the reward for those who work ˹righteousness!˺—
3399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 those who patiently endure, and put their trust in their Lord!
3400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How many are the creatures that cannot secure their provisions! ˹It is˺ Allah ˹Who˺ provides for them and you ˹as well˺. He is indeed the All-Hearing, All-Knowing.
3401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If you ask them ˹O Prophet˺ who created the heavens and the earth and subjected the sun and the moon ˹for your benefit˺, they will certainly say, "Allah!" How can they then be deluded ˹from the truth˺?
3402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah gives abundant or limited provisions to whoever He wills of His servants. Surely Allah has ˹full˺ knowledge of everything.
3403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if you ask them who sends down rain from the sky, giving life to the earth after its death, they will surely say, "Allah!" Say, "Praise be to Allah!" In fact, most of them do not understand.
3404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This worldly life is no more than play and amusement. But the Hereafter is indeed the real life, if only they knew.
3405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If they happen to be aboard a ship ˹caught in a storm˺, they cry out to Allah ˹alone˺ in sincere devotion. But as soon as He delivers them ˹safely˺ to shore, they associate ˹others with Him once again˺.
3406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So let them be ungrateful for all We have given them, and ˹let them˺ enjoy themselves ˹for now˺! For they will soon know.
3407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Have they not seen how We have made ˹Mecca˺ a safe haven, whereas people ˹all˺ around them are snatched away? and deny Allah’s favours?
3408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And who does more wrong than those who fabricate lies against Allah or reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?
3409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who struggle in Our cause, We will surely guide them along Our Way. And Allah is certainly with the good-doers.
3410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alif-Lãm-Mĩm.
3411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Romans have been defeated
3412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                in a nearby land. Yet following their defeat, they will triumph
3413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         within three to nine years. The ˹whole˺ matter rests with Allah before and after ˹victory˺. And on that day the believers will rejoice
3414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   at the victory willed by Allah. He gives victory to whoever He wills. For He is the Almighty, Most Merciful.
3415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹This is˺ the promise of Allah. ˹And˺ Allah never fails in His promise. But most people do not know.
3416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They ˹only˺ know the worldly affairs of this life, but are ˹totally˺ oblivious to the Hereafter.
3417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have they not reflected upon their own being? Allah only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet most people are truly in denial of the meeting with their Lord!
3418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might; they cultivated the land and developed it more than these ˹Meccans˺ ever have. Their messengers came to them with clear proofs. Allah would have never wronged them, but it was they who wronged themselves.
3419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then most evil was the end of the evildoers for denying and mocking the signs of Allah.
3420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is Allah Who originates the creation, and will resurrect it. And then to Him you will ˹all˺ be returned.
3421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                On the Day the Hour will arrive, the wicked will be dumbstruck.
3422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There will be no intercessors for them from among their associate-gods, and they will ˹totally˺ deny their associate-gods.
3423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And on the Day the Hour will arrive, the people will then be split ˹into two groups˺.
3424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for those who believed and did good, they will be rejoicing in a Garden.
3425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And as for those who disbelieved, and denied Our signs and the meeting ˹with Allah˺ in the Hereafter, they will be confined in punishment.
3426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So glorify Allah in the evening and in the morning—
3427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   all praise is for Him in the heavens and the earth—as well as in the afternoon, and at noon.
3428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He brings forth the living from the dead and the dead from the living. And He gives life to the earth after its death. And so will you be brought forth ˹from the grave˺.
3429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               One of His signs is that He created you from dust, then—behold!—you are human beings spreading over ˹the earth˺.
3430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And one of His signs is that He created for you spouses from among yourselves so that you may find comfort in them. And He has placed between you compassion and mercy. Surely in this are signs for people who reflect.
3431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And one of His signs is the creation of the heavens and the earth, and the diversity of your languages and colours. Surely in this are signs for those of ˹sound˺ knowledge.
3432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And one of His signs is your sleep by night and by day ˹for rest˺ as well as your seeking His bounty ˹in both˺. Surely in this are signs for people who listen.
3433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And one of His signs is that He shows you lightning, inspiring ˹you with˺ hope and fear. And He sends down rain from the sky, reviving the earth after its death. Surely in this are signs for people who understand.
3434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And one of His signs is that the heavens and the earth persist by His command. Then when He calls you out of the earth just once, you will instantly come forth.
3435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And to Him belong all those in the heavens and the earth—all are subject to His Will.
3436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And He is the One Who originates the creation then will resurrect it—which is even easier for Him. To Him belong the finest attributes in the heavens and the earth. And He is the Almighty, All-Wise.
3437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He sets forth for you an example ˹drawn˺ from your own lives: would you allow some of those ˹bondspeople˺ in your possession to be your equal partners in whatever ˹wealth˺ We have provided you, keeping them in mind as you are mindful of your peers? This is how We make the signs clear for people who understand.
3438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In fact, the wrongdoers merely follow their desires with no knowledge. Who then can guide those Allah has left to stray? They will have no helpers.
3439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So be steadfast in faith in all uprightness ˹O Prophet˺—the natural Way of Allah which He has instilled in ˹all˺ people. Let there be no change in this creation of Allah. That is the Straight Way, but most people do not know.
3440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹O believers!˺ Always turn to Him ˹in repentance˺, be mindful of Him, and establish prayers. And do not be polytheists—
3441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹like˺ those who have divided their faith and split into sects, each rejoicing in what they have.
3442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When people are touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He gives them a taste of His mercy, a group of them associates ˹others˺ with their Lord ˹in worship˺,
3443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    becoming ungrateful for whatever ˹favours˺ We have given them. So enjoy yourselves, for soon you will know.
3444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or have We sent down to them an authority which attests to what they associate ˹with Him˺?
3445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If We give people a taste of mercy, they become prideful ˹because˺ of it. But if they are afflicted with an evil for what their hands have done, they instantly fall into despair.
3446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have they not seen that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.
3447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So give your close relatives their due, as well as the poor and the ˹needy˺ traveller. That is best for those who seek the pleasure of Allah, and it is they who will be successful.
3448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whatever loans you give, ˹only˺ seeking interest at the expense of people’s wealth will not increase with Allah. But whatever charity you give, ˹only˺ seeking the pleasure of Allah—it is they whose reward will be multiplied.
3449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is Allah Who created you, then gives you provisions, then will cause you to die, and then will bring you back to life. Can any of your associate-gods do any of this? Glorified and Exalted is He above what they associate with Him ˹in worship˺!
3450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Corruption has spread on land and sea as a result of what people’s hands have done, so that Allah may cause them to taste ˹the consequences of˺ some of their deeds and perhaps they might return ˹to the Right Path˺.
3451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "Travel throughout the land and see what was the end of those ˹destroyed˺ before ˹you˺—most of them were polytheists."
3452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So be steadfast in the Upright Faith ˹O Prophet˺, before the coming of a Day from Allah that cannot be averted. On that Day the people will be divided:
3453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 those who disbelieved will bear ˹the burden of˺ their own disbelief; and those who did good will have prepared for themselves ˹eternal homes˺,
3454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   so that He may ˹generously˺ reward those who believe and do good, out of His grace. He truly does not like the disbelievers.
3455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And one of His signs is that He sends the winds, ushering in good news ˹of rain˺ so that He may give you a taste of His mercy, and that ships may sail by His command, and that you may seek His bounty, and perhaps you will be grateful.
3456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We sent before you ˹O Prophet˺ messengers, each to their own people, and they came to them with clear proofs. Then We inflicted punishment upon those who persisted in wickedness. For it is Our duty to help the believers.
3457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, which He then spreads out in the sky or piles up into masses as He wills, from which you see rain come forth. Then as soon as He causes it to fall on whoever He wills of His servants, they rejoice,
3458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      although they had utterly lost hope just before it was sent down to them.
3459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         See then the impact of Allah’s mercy: how He gives life to the earth after its death! Surely That ˹same God˺ can raise the dead. For He is Most Capable of everything.
3460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then if We send a ˹harsh˺ wind which they see withering ˹their˺ crops, they will definitely deny ˹old favours˺ right after.
3461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So you ˹O Prophet˺ certainly cannot make the dead hear ˹the truth˺. Nor can you make the deaf hear the call when they turn their backs and walk away.
3462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nor can you lead the blind out of their misguidance. You can make none hear ˹the truth˺ except those who believe in Our revelations, ˹fully˺ submitting ˹to Allah˺.
3463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It is Allah Who created you in a state of weakness, then developed ˹your˺ weakness into strength, then developed ˹your˺ strength into weakness and old age. He creates whatever He wills. For He is the All-Knowing, Most Capable.
3464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And on the Day the Hour will arrive, the wicked will swear that they did not stay ˹in this world˺ more than an hour. In this way they were always deluded ˹in the world˺.
3465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But those gifted with knowledge and faith will say ˹to them˺, "You did actually stay—as destined by Allah—until the Day of Resurrection. So here is the Day of Resurrection ˹which you denied˺! But you did not know ˹it was true˺."
3466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So on that Day the wrongdoers’ excuses will not benefit them, nor will they be allowed to appease ˹their Lord˺.
3467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We have certainly set forth every ˹kind of˺ lesson for people in this Quran. And no matter what sign you bring to them ˹O Prophet˺, the disbelievers will definitely say ˹to the believers˺, "You are only a people of falsehood."
3468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is how Allah seals the hearts of those unwilling to know ˹the truth˺.
3469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So be patient, for the promise of Allah certainly is true. And do not be disturbed by those who have no sure faith.
3470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alif-Lãm-Mĩm.
3471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are the verses of the Book, rich in wisdom.
3472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹It is˺ a guide and mercy for the good-doers—
3473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                those who establish prayer, pay alms-tax, and have sure faith in the Hereafter.
3474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful.
3475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But there are some who employ theatrics, only to lead others away from Allah’s Way—without any knowledge—and to make a mockery of it. They will suffer a humiliating punishment.
3476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whenever Our revelations are recited to them, they turn away in arrogance as if they did not hear them, as if there is deafness in their ears. So give them good news ˹O Prophet˺ of a painful punishment.
3477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely those who believe and do good will have the Gardens of Bliss,
3478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              staying there forever. Allah’s promise is true. And He is the Almighty, All-Wise.
3479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He created the heavens without pillars—as you can see—and placed firm mountains upon the earth so it does not shake with you, and scattered throughout it all types of creatures. And We send down rain from the sky, causing every type of fine plant to grow on earth.
3480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is Allah’s creation. Now show Me what those ˹gods˺ other than Him have created. In fact, the wrongdoers are clearly astray.
3481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, We blessed Luqman with wisdom, ˹saying˺, "Be grateful to Allah, for whoever is grateful, it is only for their own good. And whoever is ungrateful, then surely Allah is Self-Sufficient, Praiseworthy."
3482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹remember˺ when Luqman said to his son, while advising him, "O my dear son! Never associate ˹anything˺ with Allah ˹in worship˺, for associating ˹others with Him˺ is truly the worst of all wrongs."
3483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We have commanded people to ˹honour˺ their parents. Their mothers bore them through hardship upon hardship, and their weaning takes two years. So be grateful to Me and your parents. To Me is the final return.
3484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But if they pressure you to associate with Me what you have no knowledge of, do not obey them. Still keep their company in this world courteously, and follow the way of those who turn to Me ˹in devotion˺. Then to Me you will ˹all˺ return, and then I will inform you of what you used to do.
3485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Luqman  added,˺ "O my dear son! ˹Even˺ if a deed were the weight of a mustard seed—be it ˹hidden˺ in a rock or in the heavens or the earth—Allah will bring it forth. Surely Allah is Most Subtle, All-Aware.
3486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            "O my dear son! Establish prayer, encourage what is good and forbid what is evil, and endure patiently whatever befalls you. Surely this is a resolve to aspire to.
3487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         "And do not turn your nose up to people, nor walk pridefully upon the earth. Surely Allah does not like whoever is arrogant, boastful.
3488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Be moderate in your pace. And lower your voice, for the ugliest of all voices is certainly the braying of donkeys."
3489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have you not seen that Allah has subjected for you whatever is in the heavens and whatever is on the earth, and has lavished His favours upon you, both seen and unseen? ˹Still˺ there are some who dispute about Allah without knowledge, or guidance, or an enlightening scripture.
3490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When it is said to them, "Follow what Allah has revealed," they reply, "No! We ˹only˺ follow what we found our forefathers practicing." ˹Would they still do so˺ even if Satan is inviting them to the torment of the Blaze?
3491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whoever fully submits themselves to Allah and is a good-doer, they have certainly grasped the firmest hand-hold. And with Allah rests the outcome of ˹all˺ affairs.
3492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But whoever disbelieves, do not let their disbelief grieve you ˹O Prophet˺. To Us is their return, and We will inform them of all they did. Surely Allah knows best what is ˹hidden˺ in the heart.
3493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We allow them enjoyment for a little while, then ˹in time˺ We will force them into a harsh torment.
3494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if you ask them who created the heavens and the earth, they will definitely say, "Allah!" Say, "Praise be to Allah!" In fact, most of them do not know.
3495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To Allah belongs whatever is in the heavens and the earth. Allah is truly the Self-Sufficient, Praiseworthy.
3496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If all the trees on earth were pens and the ocean ˹were ink˺, refilled by seven other oceans, the Words of Allah would not be exhausted. Surely Allah is Almighty, All-Wise.
3497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The creation and resurrection of you ˹all˺ is as simple ˹for Him˺ as that of a single soul. Surely Allah is All-Hearing, All-Seeing.
3498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you not see that Allah causes the night to merge into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term, and that Allah is All-Aware of what you do?
3499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That is because Allah ˹alone˺ is the Truth and what they invoke besides Him is falsehood, and ˹because˺ Allah ˹alone˺ is the Most High, All-Great.
3500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Do you not see that the ships sail ˹smoothly˺ through the sea by the grace of Allah so that He may show you some of His signs? Surely in this are signs for whoever is steadfast, grateful.
3501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as soon as they are overwhelmed by waves like mountains, they cry out to Allah ˹alone˺ in sincere devotion. But when He delivers them ˹safely˺ to shore, only some become relatively grateful. And none rejects Our signs except whoever is deceitful, ungrateful.
3502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O humanity! Be mindful of your Lord, and beware of a Day when no parent will be of any benefit to their child, nor will a child be of any benefit to their parent. Surely Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.
3503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, Allah ˹alone˺ has the knowledge of the Hour. He sends down the rain, No soul knows what it will earn for tomorrow, and no soul knows in what land it will die. Surely Allah is All-Knowing, All-Aware.
3504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alif-Lãm-Mĩm.
3505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The revelation of this Book is—beyond doubt—from the Lord of all worlds.
3506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or do they say, "He has fabricated it!"? No! It is the truth from your Lord in order for you to warn a people to whom no warner has come before you, so they may be ˹rightly˺ guided.
3507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is Allah Who has created the heavens and the earth and everything in between in six Days, then established Himself on the Throne. You have no protector or intercessor besides Him. Will you not then be mindful?
3508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He conducts every affair from the heavens to the earth, then it all ascends to Him on a Day whose length is a thousand years by your counting.
3509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         That is the Knower of the seen and unseen—the Almighty, Most Merciful,
3510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who has perfected everything He created. And He originated the creation of humankind from clay.
3511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then He made his descendants from an extract of a humble fluid,
3512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then He fashioned them and had a spirit of His Own ˹creation˺ breathed into them. And He gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks.
3513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Still˺ they ask ˹mockingly˺, "When we are disintegrated into the earth, will we really be raised as a new creation?" In fact, they are in denial of the meeting with their Lord.
3514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "Your soul will be taken by the Angel of Death, who is in charge of you. Then to your Lord you will ˹all˺ be returned."
3515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If only you could see the wicked hanging their heads ˹in shame˺ before their Lord, ˹crying:˺ "Our Lord! We have now seen and heard, so send us back and we will do good. We truly have sure faith ˹now˺!"
3516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had We willed, We could have easily imposed guidance on every soul. But My Word will come to pass: I will surely fill up Hell with jinn and humans all together.
3517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So taste ˹the punishment˺ for neglecting the meeting of this Day of yours. We ˹too˺ will certainly neglect you. And taste the torment of eternity for what you used to do!
3518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The only ˹true˺ believers in Our revelation are those who—when it is recited to them—fall into prostration and glorify the praises of their Lord and are not too proud.
3519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They abandon their beds, invoking their Lord with hope and fear, and donate from what We have provided for them.
3520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             No soul can imagine what delights are kept in store for them as a reward for what they used to do.
3521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is the one who is a believer equal ˹before Allah˺ to the one who is rebellious? They are not equal!
3522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who believe and do good, they will have the Gardens of ˹Eternal˺ Residence—as an accommodation for what they used to do.
3523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as for those who are rebellious, the Fire will be their home. Whenever they try to escape from it, they will be forced back into it, and will be told, "Taste the Fire’s torment, which you used to deny."
3524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We will certainly make them taste some of the minor torment ˹in this life˺ before the major torment ˹of the Hereafter˺, so perhaps they will return ˹to the Right Path˺.
3525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And who does more wrong than the one who is reminded of Allah’s revelations then turns away from them? We will surely inflict punishment upon the wicked.
3526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We gave the Scripture to Moses—so let there be no doubt ˹O Prophet˺ that you ˹too˺ are receiving revelations—and We made it a guide for the Children of Israel.
3527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We raised from among them leaders, guiding by Our command, when they patiently endured and firmly believed in Our signs.
3528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, your Lord will decide between them on the Day of Judgment regarding their differences.
3529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Is it not yet clear to them how many peoples We destroyed before them, whose ruins they still pass by? Surely in this are signs. Will they not then listen?
3530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do they not see how We drive rain to parched land, producing ˹various˺ crops from which they and their cattle eat? Will they not then see?
3531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They ask ˹mockingly˺, "When is this ˹Day of final˺ Decision, if what you say is true?"
3532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "On the Day of Decision it will not benefit the disbelievers to believe then, nor will they be delayed ˹from punishment˺."
3533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So turn away from them, and wait! They too are waiting.
3534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O Prophet! ˹Always˺ be mindful of Allah, and do not yield to the disbelievers and the hypocrites. Indeed, Allah is All-Knowing, All-Wise.
3535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Follow what is revealed to you from your Lord. Surely Allah is All-Aware of what you ˹all˺ do.
3536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And put your trust in Allah, for Allah is sufficient as a Trustee of Affairs.
3537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah does not place two hearts in any person’s chest. Nor does He regard your wives as ˹unlawful for you like˺ your real mothers, ˹even˺ if you say they are. These are only your baseless assertions. But Allah declares the truth, and He ˹alone˺ guides to the ˹Right˺ Way.
3538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let your adopted children keep their family names. That is more just in the sight of Allah. But if you do not know their fathers, then they are ˹simply˺ your fellow believers and close associates. There is no blame on you for what you do by mistake, but ˹only˺ for what you do intentionally. And Allah is All-Forgiving, Most Merciful.
3539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Prophet has a stronger affinity to the believers than they do themselves. And his wives are their mothers. As ordained by Allah, blood relatives are more entitled ˹to inheritance˺ than ˹other˺ believers and immigrants, unless you ˹want to˺ show kindness to your ˹close˺ associates ˹through bequest˺.
3540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹remember˺ when We took a covenant from the prophets, as well as from you ˹O Prophet˺, and from Noah, Abraham, Moses, and Jesus, son of Mary. We did take a solemn covenant from ˹all of˺ them
3541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 so that He may question these men of truth about their ˹delivery of the˺ truth. And He has prepared a painful punishment for the disbelievers.
3542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Remember Allah’s favour upon you when ˹enemy˺ forces came to ˹besiege˺ you ˹in Medina˺, And Allah is All-Seeing of what you do.
3543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Remember˺ when they came at you from east and west,
3544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then and there the believers were put to the test, and were violently shaken.
3545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹remember˺ when the hypocrites and those with sickness in their hearts said, "Allah and His Messenger have promised us nothing but delusion!"
3546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹remember˺ when a group of them said, "O people of Yathrib! There is no point in you staying ˹here˺, so retreat!" Another group of them asked the Prophet’s permission ˹to leave˺, saying, "Our homes are vulnerable," while ˹in fact˺ they were not vulnerable. They only wished to flee.
3547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Had their city been sacked from all sides and they had been asked to abandon faith, they would have done so with little hesitation.
3548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They had already pledged to Allah earlier never to turn their backs ˹in retreat˺. And a pledge to Allah must be answered for.
3549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, ˹O Prophet,˺ "Fleeing will not benefit you if you ˹try to˺ escape a natural or violent death. ˹If it is not your time,˺ you will only be allowed enjoyment for a little while."
3550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ask ˹them, O  Prophet˺, "Who can put you out of Allah’s reach if He intends to harm you or show you mercy?" They can never find any protector or helper besides Allah.
3551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah knows well those among you who discourage ˹others from fighting˺, saying ˹secretly˺ to their brothers, "Stay with us," and who themselves hardly take part in fighting.
3552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹They are˺ totally unwilling to assist you. When danger comes, you see them staring at you with their eyes rolling like someone in the throes of death. But once the danger is over, they slash you with razor-sharp tongues, ravenous for ˹worldly˺ gains. Such people have not ˹truly˺ believed, so Allah has rendered their deeds void. And that is easy for Allah.
3553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They ˹still˺ think that the enemy alliance has not ˹yet˺ withdrawn. And if the allies were to come ˹again˺, the hypocrites would wish to be away in the desert among nomadic Arabs, ˹only˺ asking for news about you ˹believers˺. And if the hypocrites were in your midst, they would hardly take part in the fight.
3554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, in the Messenger of Allah you have an excellent example for whoever has hope in Allah and the Last Day, and remembers Allah often.
3555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the believers saw the enemy alliance, they said, "This is what Allah and His Messenger had promised us. The promise of Allah and His Messenger has come true." And this only increased them in faith and submission.
3556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Among the believers are men who have proven true to what they pledged to Allah. Some of them have fulfilled their pledge ˹with their lives˺, others are waiting ˹their turn˺. They have never changed ˹their commitment˺ in the least.
3557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It all happened˺ so Allah may reward the faithful for their faithfulness, and punish the hypocrites if He wills or turn to them ˹in mercy˺. Surely Allah is All-Forgiving, Most Merciful.
3558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Allah drove back the disbelievers in their rage, totally empty-handed. And Allah spared the believers from fighting. For Allah is All-Powerful, Almighty.
3559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And He brought down those from the People of the Book who supported the enemy alliance from their own strongholds, and cast horror into their hearts. You ˹believers˺ killed some, and took others captive.
3560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He has also caused you to take over their lands, homes, and wealth, as well as lands you have not yet set foot on. And Allah is Most Capable of everything.
3561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O Prophet! Say to your wives, "If you desire the life of this world and its luxury, then come, I will give you a ˹suitable˺ compensation ˹for divorce˺ and let you go graciously.
3562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if you desire Allah and His Messenger and the ˹everlasting˺ Home of the Hereafter, then Surely Allah has prepared a great reward for those of you who do good."
3563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O wives of the Prophet! If any of you were to commit a blatant misconduct, the punishment would be doubled for her. And that is easy for Allah.
3564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And whoever of you devoutly obeys Allah and His Messenger and does good, We will grant her double the reward, and We have prepared for her an honourable provision.
3565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O wives of the Prophet! You are not like any other women: if you are mindful ˹of Allah˺, then do not be overly effeminate in speech ˹with men˺ or those with sickness in their hearts may be tempted, but speak in a moderate tone.
3566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Settle in your homes, and do not display yourselves as women did in the days of ˹pre-Islamic˺ ignorance. Establish prayer, pay alms-tax, and obey Allah and His Messenger. Allah only intends to keep ˹the causes of˺ evil away from you and purify you completely, O  members of the ˹Prophet’s˺ family!
3567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Always˺ remember what is recited in your homes of Allah’s revelations and ˹prophetic˺ wisdom. Surely Allah is Most Subtle, All-Aware.
3568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely ˹for˺ Muslim men and women, believing men and women, devout men and women, truthful men and women, patient men and women, humble men and women, charitable men and women, fasting men and women, men and women who guard their chastity, and men and women who remember Allah often—for ˹all of˺ them Allah has prepared forgiveness and a great reward.
3569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is not for a believing man or woman—when Allah and His Messenger decree a matter—to have any other choice in that matter. Indeed, whoever disobeys Allah and His Messenger has clearly gone ˹far˺ astray.
3570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ˹remember, O  Prophet,˺ when you said to the one "Keep your wife and fear Allah," while concealing within yourself what Allah was going to reveal. And ˹so˺ you were considering the people, whereas Allah was more worthy of your consideration. So when Zaid totally lost interest in ˹keeping˺ his wife, We gave her to you in marriage, so that there would be no blame on the believers for marrying the ex-wives of their adopted sons after their divorce. And Allah’s command is totally binding.
3571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             There is no blame on the Prophet for doing what Allah has ordained for him. That has been the way of Allah with those ˹prophets˺ who had gone before. And Allah’s command has been firmly decreed.
3572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹That is His way with˺ those ˹prophets˺ who deliver the messages of Allah, and consider Him, and none but Allah. And sufficient is Allah as a ˹vigilant˺ Reckoner.
3573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Muhammad is not the father of any of your men, but is the Messenger of Allah and the seal of the prophets. And Allah has ˹perfect˺ knowledge of all things.
3574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! Always remember Allah often,
3575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and glorify Him morning and evening.
3576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the One Who showers His blessings upon you—and His angels pray for you—so that He may bring you out of darkness and into light. For He is ever Merciful to the believers.
3577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Their greeting on the Day they meet Him will be, "Peace!" And He has prepared for them an honourable reward.
3578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O Prophet! We have sent you as a witness, and a deliverer of good news, and a warner,
3579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and a caller to ˹the Way of˺ Allah by His command, and a beacon of light.
3580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Give good news to the believers that they will have a great bounty from Allah.
3581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do not yield to the disbelievers and the hypocrites. Overlook their annoyances, and put your trust in Allah. For Allah is sufficient as a Trustee of Affairs.
3582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O believers! If you marry believing women and then divorce them before you touch them, so give them a ˹suitable˺ compensation, and let them go graciously.
3583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O Prophet! We have made lawful for you your wives to whom you have paid their ˹full˺ dowries as well as those ˹bondwomen˺ in your possession, whom Allah has granted you. We know well what ˹rulings˺ We have ordained for the believers in relation to their wives and those ˹bondwomen˺ in their possession. As such, there would be no blame on you. And Allah is All-Forgiving, Most Merciful.
3584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is up to you ˹O Prophet˺ to delay or receive whoever you please of your wives. There is no blame on you if you call back any of those you have set aside. That is more likely that they will be content, not grieved, and satisfied with what you offer them all. Allah ˹fully˺ knows what is in your hearts. And Allah is All-Knowing, Most Forbearing.
3585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is not lawful for you ˹O Prophet˺ to marry more women after this, nor can you replace any of your present wives with another, even if her beauty may attract you—except those ˹bondwomen˺ in your possession. And Allah is ever Watchful over all things.
3586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! Do not enter the homes of the Prophet without permission ˹and if invited˺ for a meal, do not ˹come too early and˺ linger until the meal is ready. But if you are invited, then enter ˹on time˺. Once you have eaten, then go on your way, and do not stay for casual talk. Such behaviour is truly annoying to the Prophet, yet he is too shy to ask you to leave. But Allah is never shy of the truth. And when you ˹believers˺ ask his wives for something, ask them from behind a barrier. This is purer for your hearts and theirs. And it is not right for you to annoy the Messenger of Allah, nor ever marry his wives after him. This would certainly be a major offence in the sight of Allah.
3587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whether you reveal something or conceal it, surely Allah has ˹perfect˺ knowledge of all things.
3588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is no blame on the Prophet’s wives ˹if they appear unveiled˺ before their fathers, their sons, their brothers, their brothers’ sons, their sisters’ sons, their fellow ˹Muslim˺ women, and those ˹bondspeople˺ in their possession. And be mindful of Allah ˹O wives of the Prophet!˺ Surely Allah is a Witness over all things.
3589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Allah showers His blessings upon the Prophet, and His angels pray for him. O  believers! Invoke Allah’s blessings upon him, and salute him with worthy greetings of peace.
3590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely those who offend Allah are condemned by Allah in this world and the Hereafter. And He has prepared for them a humiliating punishment.
3591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who abuse believing men and women unjustifiably, they will definitely bear the guilt of slander and blatant sin.
3592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O Prophet! Ask your wives, daughters, and believing women to draw their cloaks over their bodies. In this way it is more likely that they will be recognized ˹as virtuous˺ and not be harassed. And Allah is All-Forgiving, Most Merciful.
3593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If the hypocrites, and those with sickness in their hearts, and rumour-mongers in Medina do not desist, We will certainly incite you ˹O Prophet˺ against them, and then they will not be your neighbours there any longer.
3594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹They deserve to be˺ condemned. ˹If they were to persist,˺ they would get themselves seized and killed relentlessly wherever they are found!
3595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That was Allah’s way with those ˹hypocrites˺ who have gone before. And you will find no change in Allah’s way.
3596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 People ask you ˹O Prophet˺ about the Hour. Say, "That knowledge is only with Allah. You never know, perhaps the Hour is near."
3597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely Allah condemns the disbelievers, and has prepared for them a blazing Fire,
3598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  to stay there for ever and ever—never will they find any protector or helper.
3599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the Day their faces are ˹constantly˺ flipped in the Fire, they will cry, "Oh! If only we had obeyed Allah and obeyed the Messenger!"
3600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they will say, "Our Lord! We obeyed our leaders and elite, but they led us astray from the ˹Right˺ Way.
3601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Our Lord! Give them double ˹our˺ punishment, and condemn them tremendously."
3602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Do not be like those who slandered Moses, but Allah cleared him of what they said. And he was honourable in the sight of Allah.
3603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O  believers! Be mindful of Allah, and say what is right.
3604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He will bless your deeds for you, and forgive your sins. And whoever obeys Allah and His Messenger, has truly achieved a great triumph.
3605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We offered the trust to the heavens and the earth and the mountains, but they ˹all˺ declined to bear it, being fearful of it. But humanity assumed it, ˹for˺ they are truly wrongful ˹to themselves˺ and ignorant ˹of the consequences˺,
3606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          so that Allah will punish hypocrite men and women and polytheistic men and women, and Allah will turn in mercy to believing men and women. For Allah is All-Forgiving, Most Merciful.
3607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All praise is for Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. And praise be to Him in the Hereafter. He is the All-Wise, All-Aware.
3608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He knows whatever goes into the earth and whatever comes out of it, and whatever descends from the sky and whatever ascends into it. And He is the Most Merciful, All-Forgiving.
3609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers say, "The Hour will never come to us." Say, ˹O Prophet,˺ "Yes—by my Lord, the Knower of the unseen—it will certainly come to you!" Not ˹even˺ an atom’s weight is hidden from Him in the heavens or the earth; nor anything smaller or larger than that, but is ˹written˺ in a perfect Record.
3610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So He may reward those who believe and do good. It is they who will have forgiveness and an honourable provision.
3611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for those who strive to discredit Our revelations, it is they who will suffer the ˹worst˺ torment of agonizing pain.
3612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Those gifted with knowledge ˹clearly˺ see that what has been revealed to you from your Lord ˹O Prophet˺ is the truth, and that it guides to the Path of the Almighty, the Praiseworthy.
3613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The disbelievers say ˹mockingly to one another˺, "Shall we show you a man who claims that when you have been utterly disintegrated you will be raised as a new creation?
3614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Has he fabricated a lie against Allah or is he insane?" In fact, those who do not believe in the Hereafter are bound for torment and have strayed farthest ˹from the truth˺.
3615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have they not then seen all that surrounds them of the heavens and the earth? If We willed, We could cause the earth to swallow them up, or cause ˹deadly˺ pieces of the sky to fall upon them. Surely in this is a sign for every servant who turns ˹to Allah˺.
3616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We granted David a ˹great˺ privilege from Us, ˹commanding:˺ "O mountains! Echo his hymns! And the birds as well." We made iron mouldable for him,
3617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  instructing: "Make full-length armour, ˹perfectly˺ balancing the links. And work righteousness ˹O family of David!˺. Indeed, I am All-Seeing of what you do."
3618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And to Solomon ˹We subjected˺ the wind: its morning stride was a month’s journey and so was its evening stride. And We caused a stream of molten copper to flow for him, and ˹We subjected˺ some of the jinn to work under him by his Lord’s Will. And whoever of them deviated from Our command, We made them taste the torment of the blaze.
3619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They made for him whatever he desired of sanctuaries, statues, basins as large as reservoirs, and cooking pots fixed ˹into the ground˺. ˹We ordered:˺ "Work gratefully, O  family of David!" ˹Only˺ a few of My servants are ˹truly˺ grateful.
3620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When We decreed Solomon’s death, nothing indicated to the ˹subjected˺ jinn that he was dead except the termites eating away his staff. So when he collapsed, the jinn realized that if they had ˹really˺ known the unseen, they would not have remained in ˹such˺ humiliating servitude.
3621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, there was a sign for ˹the tribe of˺ Sheba in their homeland: two orchards—one to the right and the other to the left. ˹They were told:˺ "Eat from the provision of your Lord, and be grateful to Him. ˹Yours is˺ a good land and a forgiving Lord."
3622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But they turned away. So We sent against them a devastating flood, and replaced their orchards with two others producing bitter fruit, fruitless bushes,
3623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is how We rewarded them for their ingratitude. Would We ever punish ˹anyone in such a way˺ except the ungrateful?
3624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We had also placed between them and the cities We showered with blessings ˹many small˺ towns within sight of one another. And We set moderate travel distances in between, ˹saying,˺ "Travel between them by day and night safely."
3625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But they said, "Our Lord! Make ˹the distances of˺ our journeys longer," wronging themselves. So We reduced them to ˹cautionary˺ tales, and scattered them utterly. Surely in this are lessons for whoever is steadfast, grateful.
3626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, Iblis’ assumption about them has come true, so they ˹all˺ follow him, except a group of ˹true˺ believers.
3627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He does not have any authority over them, but ˹Our Will is˺ only to distinguish those who believe in the Hereafter from those who are in doubt about it. And your Lord is a ˹vigilant˺ Keeper over all things."
3628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, ˹O Prophet,˺ "Call upon those you claim ˹to be divine˺ besides Allah. They do not possess ˹even˺ an atom’s weight either in the heavens or the earth, nor do they have any share in ˹governing˺ them. Nor is any of them a helper to Him."
3629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             No intercession will be of any benefit with Him, except by those granted permission by Him. ˹At last,˺ when the dread ˹of Judgment Day˺ is relieved from their hearts ˹because they are permitted to intercede˺, they will ˹excitedly˺ ask ˹the angels˺, "What has your Lord ˹just˺ said?" The angels will reply, "The truth! And He is the Most High, All-Great."
3630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ask ˹them, O  Prophet˺, "Who provides for you from the heavens and the earth?" Say, "Allah! Now, certainly one of our two groups is ˹rightly˺ guided; the other is clearly astray."
3631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "You will not be accountable for our misdeeds, nor will we be accountable for your deeds."
3632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, "Our Lord will gather us together, then He will judge between us with the truth. For He is the All-Knowing Judge."
3633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, "Show me those ˹idols˺ you have joined with Him as partners. No! In fact, He ˹alone˺ is Allah—the Almighty, All-Wise."
3634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We have sent you ˹O Prophet˺ only as a deliverer of good news and a warner to all of humanity, but most people do not know.
3635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
3636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "A Day has ˹already˺ been appointed for you, which you can neither delay nor advance by a ˹single˺ moment."
3637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The disbelievers vow, "We will never believe in this Quran, nor in those ˹Scriptures˺ before it." If only you could see when the wrongdoers will be detained before their Lord, throwing blame at each other! The lowly ˹followers˺ will say to the arrogant ˹leaders˺, "Had it not been for you, we would certainly have been believers."
3638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The arrogant will respond to the lowly, "Did we ever hinder you from guidance after it came to you? In fact, you were wicked ˹on your own˺."
3639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The lowly will say to the arrogant, "No! It was your plotting by day and night—when you ordered us to disbelieve in Allah and to set up equals with Him." They will ˹all˺ hide ˹their˺ remorse when they see the torment. And We will put shackles around the necks of the disbelievers. Will they be rewarded except for what they used to do?
3640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whenever We sent a warner to a society, its elite would say, "We truly reject what you have been sent with."
3641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Adding, "We are far superior ˹to the believers˺ in wealth and children, and we will never be punished."
3642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, ˹O Prophet,˺ "Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills. But most people do not know."
3643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is not your wealth or children that bring you closer to Us. But those who believe and do good—it is they who will have a multiplied reward for what they did, and they will be secure in ˹elevated˺ mansions.
3644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As for those who strive to discredit Our revelations, it is they who will be confined in punishment.
3645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "Surely ˹it is˺ my Lord ˹Who˺ gives abundant or limited provisions to whoever He wills of His servants. And whatever you spend in charity, He will compensate ˹you˺ for it. For He is the Best Provider."
3646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ˹consider˺ the Day He will gather them all together, and then ask the angels, "Was it you that these ˹polytheists˺ used to worship?"
3647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will say, "Glory be to You! Our loyalty is to You, not them. In fact, they ˹only˺ followed the ˹temptations of evil˺ jinn, in whom most of them had faith."
3648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Today neither of you can benefit or protect each other. And We will say to the wrongdoers, "Taste the torment of the Fire, which you used to deny."
3649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When Our clear revelations are recited to them, they say, "This is only a man who wishes to hinder you from what your forefathers used to worship." They also say, "This ˹Quran˺ is no more than a fabricated lie." And the disbelievers say of the truth when it has come to them, "This is nothing but pure magic."
3650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They say so even though˺ We had never given them any scriptures to study, nor did We ever send them a warner before you ˹O Prophet˺.
3651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those ˹destroyed˺ before them denied as well—and these ˹Meccans˺ have not attained even one-tenth of what We had given their predecessors. Yet ˹when˺ they denied My messengers, how severe was My response!
3652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "I advise you to do ˹only˺ one thing: stand up for ˹the sake of˺ Allah—individually or in pairs—then reflect. Your fellow man is not insane. He is only a warner to you before ˹the coming of˺ a severe punishment."
3653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, "If I had ever asked you for a reward, you could keep it. My reward is only from Allah. And He is a Witness over all things."
3654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, "Surely my Lord hurls the truth ˹against falsehood˺. ˹He is˺ the Knower of all unseen."
3655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "The truth has come, and falsehood will vanish, never to return."
3656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "If I am astray, the loss is only mine. And if I am guided, it is ˹only˺ because of what my Lord reveals to me. He is indeed All-Hearing, Ever Near."
3657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If only you could see when they will be horrified with no escape ˹on Judgment Day˺! And they will be seized from a nearby place.
3658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will ˹then˺ cry, "We do ˹now˺ believe in it ˹all˺." But how could they ˹possibly˺ attain faith from a place so far-off ˹from the world˺,
3659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              while they had already rejected it before, guessing blindly from a place ˹equally˺ far-away ˹from the Hereafter˺?
3660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They will be sealed off from whatever they desire, as was done to their counterparts before. Indeed, they were ˹all˺ in alarming doubt.
3661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              All praise is for Allah, the Originator of the heavens and the earth, Who made angels ˹as His˺ messengers with wings—two, three, or four. He increases in creation whatever He wills. Surely Allah is Most Capable of everything.
3662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whatever mercy Allah opens up for people, none can withhold it. And whatever He withholds, none but Him can release it. For He is the Almighty, All-Wise.
3663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O humanity! Remember Allah’s favours upon you. Is there any creator other than Allah who provides for you from the heavens and the earth? There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?
3664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If you are rejected by them, so too were messengers before you. And to Allah ˹all˺ matters will be returned ˹for judgment˺.
3665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O humanity! Indeed, Allah’s promise is true. So do not let the life of this world deceive you, nor let the Chief Deceiver deceive you about Allah.
3666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely Satan is an enemy to you, so take him as an enemy. He only invites his followers to become inmates of the Blaze.
3667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who disbelieve will have a severe punishment. But those who believe and do good will have forgiveness and a great reward.
3668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Are those whose evil-doing is made so appealing to them that they deem it good ˹like those who are rightly guided˺? ˹It is˺ certainly Allah ˹Who˺ leaves to stray whoever He wills, and guides whoever He wills. So do not grieve yourself to death over them ˹O Prophet˺. Surely Allah is All-Knowing of what they do.
3669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it is Allah Who sends the winds, which then stir up ˹vapour, forming˺ clouds, and then We drive them to a lifeless land, giving life to the earth after its death. Similar is the Resurrection.
3670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoever seeks honour and power, then ˹let them know that˺ all honour and power belongs to Allah. To Him ˹alone˺ good words ascend, and righteous deeds are raised up by Him. As for those who plot evil, they will suffer a severe punishment. And the plotting of such ˹people˺ is doomed ˹to fail˺.
3671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹it is˺ Allah ˹Who˺ created you from dust, That is certainly easy for Allah.
3672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The two bodies of water are not alike: one is fresh, palatable, and pleasant to drink and the other is salty and bitter. Yet from them both you eat tender seafood and extract ornaments to wear. And you see the ships ploughing their way through both, so you may seek His bounty and give thanks ˹to Him˺.
3673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He merges the night into the day and the day into the night, and has subjected the sun and the moon, each orbiting for an appointed term. That is Allah—your Lord! All authority belongs to Him. But those ˹idols˺ you invoke besides Him do not possess even the skin of a date stone.
3674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you call upon them, they cannot hear your calls. And if they were to hear, they could not respond to you. On the Day of Judgment they will disown your worship ˹of them˺. And no one can inform you ˹O Prophet˺ like the All-Knowledgeable.
3675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O humanity! It is you who stand in need of Allah, but Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.
3676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If He willed, He could eliminate you and produce a new creation.
3677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And that is not difficult for Allah ˹at all˺.
3678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No soul burdened with sin will bear the burden of another. And if a sin-burdened soul cries for help with its burden, none of it will be carried—even by a close relative. You ˹O Prophet˺ can only warn those who stand in awe of their Lord without seeing Him and establish prayer. Whoever purifies themselves, they only do so for their own good. And to Allah is the final return.
3679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those blind ˹to the truth˺ and those who can see are not equal,
3680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nor are the darkness and the light,
3681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 nor the ˹scorching˺ heat and the ˹cool˺ shade.
3682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Nor are the dead and the living equal. Indeed, Allah ˹alone˺ makes whoever He wills hear, but you ˹O Prophet˺ can never make those in the graves hear ˹your call˺.
3683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You are only a warner.
3684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have surely sent you with the truth as a deliverer of good news and a warner. There is no community that has not had a warner.
3685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If they deny you, so did those before them. Their messengers came to them with clear proofs, divine Books, and enlightening Scriptures.
3686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then I seized those who persisted in disbelief. How severe was My response!
3687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do you not see that Allah sends down rain from the sky with which We bring forth fruits of different colours? And in the mountains are streaks of varying shades of white, red, and raven black;
3688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                just as people, living beings, and cattle are of various colours as well. Of all of Allah’s servants, only the knowledgeable ˹of His might˺ are ˹truly˺ in awe of Him. Allah is indeed Almighty, All-Forgiving.
3689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely those who recite the Book of Allah, establish prayer, and donate from what We have provided for them—secretly and openly—˹can˺ hope for an exchange that will never fail,
3690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          so that He will reward them in full and increase them out of His grace. He is truly All-Forgiving, Most Appreciative.
3691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Book We have revealed to you ˹O Prophet˺ is the truth, confirming what came before it. Surely Allah is All-Aware, All-Seeing of His servants.
3692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then We granted the Book to those We have chosen from Our servants. Some of them wrong themselves, some follow a middle course, and some are foremost in good deeds by Allah’s Will. That is ˹truly˺ the greatest bounty.
3693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They will enter the Gardens of Eternity, where they will be adorned with bracelets of gold and pearls, and their clothing will be silk.
3694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they will say, "Praise be to Allah, Who has kept away from us all ˹causes of˺ sorrow. Our Lord is indeed All-Forgiving, Most Appreciative.
3695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He is the One˺ Who—out of His grace—has settled us in the Home of Everlasting Stay, where we will be touched by neither fatigue nor weariness."
3696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for the disbelievers, they will have the Fire of Hell, where they will not be ˹allowed to be˺ finished by death, nor will its torment be lightened for them. This is how We reward every ˹stubborn˺ disbeliever.
3697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There they will be ˹fervently˺ screaming, "Our Lord! Take us out ˹and send us back˺. We will do good, unlike what we used to do." ˹They will be told,˺ "Did We not give you lives long enough so that whoever wanted to be mindful could have done so? And the warner came to you. So taste ˹the punishment˺, for the wrongdoers have no helper."
3698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, Allah is the Knower of the unseen of the heavens and the earth. He surely knows best what is ˹hidden˺ in the heart.
3699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who has placed you as successors on earth. So whoever disbelieves will bear ˹the burden of˺ their own disbelief. The disbelievers’ denial only increases them in contempt in the sight of their Lord, and it will only contribute to their loss.
3700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ask ˹them, O  Prophet˺, "Have you considered your associate-gods which you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Or have We given the polytheists a Book, which serves as a clear proof for them? In fact, the wrongdoers promise each other nothing but delusion."
3701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, Allah ˹alone˺ keeps the heavens and the earth from falling apart. If they were to fall apart, none but Him could hold them up. He is truly Most Forbearing, All-Forgiving.
3702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They swore by Allah their most solemn oaths that if a warner were to come to them, they would certainly be better guided than any other community. Yet when a warner did come to them, it only drove them farther away—
3703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      behaving arrogantly in the land and plotting evil. But evil plotting only backfires on those who plot. Are they awaiting anything but the fate of those ˹destroyed˺ before? You will find no change in the way of Allah, nor will you find it diverted ˹to someone else˺.
3704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might. But there is nothing that can escape Allah in the heavens or the earth. He is certainly All-Knowing, Most Capable.
3705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If Allah were to punish people ˹immediately˺ for what they have committed, He would not have left a single living being on earth. But He delays them for an appointed term. And when their time arrives, then surely Allah is All-Seeing of His servants.
3706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ya-Sĩn.
3707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  By the Quran, rich in wisdom!
3708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You ˹O Prophet˺ are truly one of the messengers
3709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        upon the Straight Path.
3710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹This is˺ a revelation from the Almighty, Most Merciful,
3711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          so that you may warn a people whose forefathers were not warned, and so are heedless.
3712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The decree ˹of torment˺ has already been justified against most of them, for they will never believe.
3713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹It is as if˺ We have put shackles around their necks up to their chins, so their heads are forced up,
3714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and have placed a barrier before them and a barrier behind them and covered them ˹all˺ up, so they fail to see ˹the truth˺.
3715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           It is the same whether you warn them or not—they will never believe.
3716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You can only warn those who follow the Reminder So give them good news of forgiveness and an honourable reward.
3717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is certainly We Who resurrect the dead, and write what they send forth and what they leave behind. Everything is listed by Us in a perfect Record.
3718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Give them an example ˹O Prophet˺ of the residents of a town, when the messengers came to them.
3719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We sent them two messengers, but they rejected both. So We reinforced ˹the two˺ with a third, and they declared, "We have indeed been sent to you ˹as messengers˺."
3720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The people replied, "You are only humans like us, and the Most Compassionate has not revealed anything. You are simply lying!"
3721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The messengers responded, "Our Lord knows that we have truly been sent to you.
3722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And our duty is only to deliver ˹the message˺ clearly."
3723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The people replied, "We definitely see you as a bad omen for us. If you do not desist, we will certainly stone you ˹to death˺ and you will be touched with a painful punishment from us."
3724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The messengers said, "Your bad omen lies within yourselves. Are you saying this because you are reminded ˹of the truth˺? In fact, you are a transgressing people."
3725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then from the farthest end of the city a man came, rushing. He advised, "O my people! Follow the messengers.
3726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Follow those who ask no reward of you, and are ˹rightly˺ guided.
3727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And why should I not worship the One Who has originated me, and to Whom you will be returned.
3728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How could I take besides Him other gods whose intercession would not be of any benefit to me, nor could they save me if the Most Compassionate intended to harm me?
3729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, I would then be clearly astray.
3730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I do believe in your Lord, so listen to me."
3731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹But they killed him, then˺ he was told ˹by the angels˺, "Enter Paradise!" He said, "If only my people knew
3732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            of how my Lord has forgiven me, and made me one of the honourable."
3733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We did not send any soldiers from the heavens against his people after his death, nor did We need to.
3734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All it took was one ˹mighty˺ blast, and they were extinguished at once.
3735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Oh pity, such beings! No messenger ever came to them without being mocked.
3736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Have the deniers not considered how many peoples We destroyed before them who never came back to life again?
3737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Yet they will all be brought before Us.
3738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There is a sign for them in the dead earth: We give it life, producing grain from it for them to eat.
3739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We have placed in it gardens of palm trees and grapevines, and caused springs to gush forth in it,
3740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that they may eat from its fruit, which they had no hand in making. Will they not then give thanks?
3741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Glory be to the One Who created all ˹things in˺ pairs—˹be it˺ what the earth produces, their genders, or what they do not know!
3742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There is also a sign for them in the night: We strip from it daylight, then—behold!—they are in darkness.
3743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sun travels for its fixed term. That is the design of the Almighty, All-Knowing.
3744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for the moon, We have ordained ˹precise˺ phases for it, until it ends up like an old, curved palm stalk.
3745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is not for the sun to catch up with the moon, nor does the night outrun the day. Each is travelling in an orbit of their own.
3746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Another sign for them is that We carried their ancestors ˹with Noah˺ in the fully loaded Ark,
3747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and created for them similar things to ride in.
3748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If We willed, We could drown them: then no one would respond to their cries, nor would they be rescued—
3749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         except by mercy from Us, allowing them enjoyment for a ˹little˺ while.
3750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Still they turn away˺ when it is said to them, "Beware of what is ahead of you ˹in the Hereafter˺ and what is behind you ˹of destroyed nations˺ so you may be shown mercy."
3751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whenever a sign comes to them from their Lord, they turn away from it.
3752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when it is said to them, "Donate from what Allah has provided for you," the disbelievers say to the believers, "Why should we feed those whom Allah could have fed if He wanted to? You are clearly astray!"
3753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
3754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They must be awaiting a single Blast, which will seize them while they are ˹entrenched˺ in ˹worldly˺ disputes.
3755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they will not be able to make a ˹last˺ will, nor can they return to their own people.
3756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Trumpet will be blown ˹a second time˺, then—behold!—they will rush from the graves to their Lord.
3757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will cry, "Woe to us! Who has raised us up from our place of rest? This must be what the Most Compassionate warned us of; the messengers told the truth!"
3758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It will only take one Blast, then at once they will all be brought before Us.
3759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On that Day no soul will be wronged in the least, nor will you be rewarded except for what you used to do.
3760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, on that Day the residents of Paradise will be busy enjoying themselves.
3761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They and their spouses will be in ˹cool˺ shade, reclining on ˹canopied˺ couches.
3762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There they will have fruits and whatever they desire.
3763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And "Peace!" will be ˹their˺ greeting from the Merciful Lord.
3764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Then the disbelievers will be told,˺ "Step away ˹from the believers˺ this Day, O  wicked ones!
3765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Did I not command you, O  Children of Adam, not to follow Satan, for he is truly your sworn enemy,
3766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          but to worship Me ˹alone˺? This is the Straight Path.
3767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet he already misled great multitudes of you. Did you not have any sense?
3768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is the Hell you were warned of.
3769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Burn in it Today for your disbelief."
3770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On this Day We will seal their mouths, their hands will speak to Us, and their feet will testify to what they used to commit.
3771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Had We willed, We could have easily blinded their eyes, so they would struggle to find their way. How then could they see?
3772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And had We willed, We could have transfigured them on the spot, so they could neither progress forward nor turn back.
3773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And whoever We grant a long life, We reverse them in development. Will they not then understand?
3774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We have not taught him poetry, nor is it fitting for him. This ˹Book˺ is only a Reminder and a clear Quran
3775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  to warn whoever is ˹truly˺ alive and fulfil the decree ˹of torment˺ against the disbelievers.
3776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do they not see that We singlehandedly created for them, among other things, cattle which are under their control?
3777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We have subjected these ˹animals˺ to them, so they may ride some and eat others.
3778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they derive from them other benefits and drinks. Will they not then give thanks?
3779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Still they have taken other gods besides Allah, hoping to be helped ˹by them˺.
3780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They cannot help the pagans, even though they serve the idols as dedicated guards.
3781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So do not let their words grieve you ˹O Prophet˺. Indeed, We ˹fully˺ know what they conceal and what they reveal.
3782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do people not see that We have created them from a sperm-drop, then—behold!—they openly challenge ˹Us˺?
3783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they argue with Us—forgetting they were created—saying, "Who will give life to decayed bones?"
3784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Say, ˹O Prophet,˺ "They will be revived by the One Who produced them the first time, for He has ˹perfect˺ knowledge of every created being.
3785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹He is the One˺ Who gives you fire from green trees, and—behold!—you kindle ˹fire˺ from them.
3786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Can the One Who created the heavens and the earth not ˹easily˺ resurrect these ˹deniers˺?" Yes ˹He can˺! For He is the Master Creator, All-Knowing.
3787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All it takes, when He wills something ˹to be˺, is simply to say to it: "Be!" And it is!
3788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So glory be to the One in Whose Hands is the authority over all things, and to Whom ˹alone˺ you will ˹all˺ be returned.
3789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           By those ˹angels˺ lined up in ranks,
3790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and those who diligently drive ˹the clouds˺,
3791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and those who recite the Reminder!
3792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely your God is One!
3793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹He is˺ the Lord of the heavens and the earth and everything in between, and the Lord of all points of sunrise.
3794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We have adorned the lowest heaven with the stars for decoration
3795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and ˹for˺ protection from every rebellious devil.
3796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They cannot listen to the highest assembly ˹of angels˺ for they are pelted from every side,
3797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹fiercely˺ driven away. And they will suffer an everlasting torment.
3798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But whoever manages to stealthily eavesdrop is ˹instantly˺ pursued by a piercing flare.
3799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So ask them ˹O Prophet˺, which is harder to create: them or other marvels of Our creation?
3800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In fact, you are astonished ˹by their denial˺, while they ridicule ˹you˺.
3801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they are reminded, they are never mindful.
3802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And whenever they see a sign, they make fun of it,
3803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       saying, "This is nothing but pure magic.
3804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When we are dead and reduced to dust and bones, will we really be resurrected?
3805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And our forefathers as well?"
3806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "Yes! And you will be fully humbled."
3807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It will only take one Blast, then at once they will see ˹it all˺.
3808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will cry, "Oh, woe to us! This is the Day of Judgment!"
3809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹They will be told,˺ "This is the Day of ˹Final˺ Decision which you used to deny."
3810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Allah will say to the angels,˺ "Gather ˹all˺ the wrongdoers along with their peers, and whatever they used to worship
3811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    instead of Allah, then lead them ˹all˺ to the path of Hell.
3812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And detain them, for they must be questioned."
3813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Then they will be asked,˺ "What is the matter with you that you can no longer help each other?"
3814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In fact, on that Day they will be ˹fully˺ submissive.
3815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will turn on each other, throwing blame.
3816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The misled will say, "It was you who deluded us away from what is right."
3817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The misleaders will reply, "No! You disbelieved on your own.
3818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We had no authority over you. In fact, you yourselves were a transgressing people.
3819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The decree of our Lord has come to pass against us ˹all˺: we will certainly taste ˹the punishment˺.
3820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We caused you to deviate, for we ourselves were deviant."
3821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely on that Day they will ˹all˺ share in the punishment.
3822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That is certainly how We deal with the wicked.
3823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For whenever it was said to them ˹in the world˺, "There is no god ˹worthy of worship˺ except Allah," they acted arrogantly
3824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and argued, "Should we really abandon our gods for a mad poet?"
3825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In fact, he came with the truth, confirming ˹earlier˺ messengers.
3826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You will certainly taste the painful torment,
3827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and will only be rewarded for what you used to do.
3828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But not the chosen servants of Allah.
3829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They will have a known provision:
3830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fruits ˹of every type˺. And they will be honoured
3831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       in the Gardens of Bliss,
3832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  facing each other on thrones.
3833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A drink ˹of pure wine˺ will be passed around to them from a flowing stream:
3834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             crystal-white, delicious to drink.
3835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It will neither harm ˹them˺, nor will they be intoxicated by it.
3836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And with them will be maidens of modest gaze and gorgeous eyes,
3837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               as if they were pristine pearls.
3838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then they will turn to one another inquisitively.
3839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   One of them will say, "I once had a companion ˹in the world˺
3840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              who used to ask ˹me˺, ‘Do you actually believe ˹in resurrection˺?
3841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When we are dead and reduced to dust and bones, will we really be brought to judgment?’"
3842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He will ˹then˺ ask, "Would you care to see ˹his fate˺?"
3843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then he ˹and the others˺ will look and spot him in the midst of the Hellfire.
3844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He will ˹then˺ say, "By Allah! You nearly ruined me.
3845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Had it not been for the grace of my Lord, I ˹too˺ would have certainly been among those brought ˹to Hell˺."
3846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Then he will ask his fellow believers,˺ "Can you imagine that we will never die,
3847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    except our first death, nor be punished ˹like the others˺?"
3848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is truly the ultimate triumph.
3849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For such ˹honour˺ all should strive.
3850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Is this ˹bliss˺ a better accommodation or the tree of Zaqqûm?
3851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We have surely made it a test for the wrongdoers.
3852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, it is a tree that grows in the depths of Hell,
3853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bearing fruit like devils’ heads.
3854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The evildoers will certainly ˹be left to˺ eat from it, filling up their bellies with it.
3855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then on top of that they will be given a blend of boiling drink.
3856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they will ultimately return to ˹their place in˺ Hell.
3857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, they found their forefathers astray,
3858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             so they rushed in their footsteps!
3859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And surely most of the earlier generations had strayed before them,
3860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             although We had certainly sent warners among them.
3861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        See then what was the end of those who had been warned.
3862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But not the chosen servants of Allah.
3863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, Noah cried out to Us, and how excellent are We in responding!
3864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       We delivered him and his family from the great distress,
3865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and made his descendants the sole survivors.
3866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We blessed him ˹with honourable mention˺ among later generations:
3867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        "Peace be upon Noah among all peoples."
3868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, this is how We reward the good-doers.
3869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹For˺ he was truly one of Our faithful servants.
3870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then We drowned the others.
3871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And indeed, one of those who followed his way was Abraham.
3872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Remember˺ when he came to his Lord with a pure heart,
3873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and said to his father and his people, "What are you worshipping?
3874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is it false gods that you desire instead of Allah?
3875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What then do you expect from the Lord of all worlds?"
3876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He later looked up to the stars ˹in contemplation˺,
3877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 then said, "I am really sick."
3878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So they turned their backs on him and went away.
3879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then he ˹stealthily˺ advanced towards their gods, and said ˹mockingly˺, "Will you not eat ˹your offerings˺?
3880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What is wrong with you that you cannot speak?"
3881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then he swiftly turned on them, striking ˹them˺ with his right hand.
3882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Later, his people came rushing towards him ˹furiously˺.
3883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He argued, "How can you worship what you carve ˹with your own hands˺,
3884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         when it is Allah Who created you and whatever you do?"
3885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They said ˹to one another˺, "Build him a furnace and cast him into the blazing fire."
3886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And so they sought to harm him, but We made them inferior.
3887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He later said, "I am leaving ˹in obedience˺ to my Lord. He will guide me.
3888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   My Lord! Bless me with righteous offspring."
3889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So We gave him good news of a forbearing son.
3890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then when the boy reached the age to work with him, Abraham said, "O my dear son! I have seen in a dream that I ˹must˺ sacrifice you. So tell me what you think." He replied, "O my dear father! Do as you are commanded. Allah willing, you will find me steadfast."
3891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then when they submitted ˹to Allah’s Will˺, and Abraham laid him on the side of his forehead ˹for sacrifice˺,
3892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We called out to him, "O Abraham!
3893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You have already fulfilled the vision." Indeed, this is how We reward the good-doers.
3894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That was truly a revealing test.
3895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We ransomed his son with a great sacrifice,
3896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and blessed Abraham ˹with honourable mention˺ among later generations:
3897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       "Peace be upon Abraham."
3898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is how We reward the good-doers.
3899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He was truly one of Our faithful servants.
3900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We ˹later˺ gave him good news of Isaac—a prophet, and one of the righteous.
3901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We blessed him and Isaac as well. Some of their descendants did good, while others clearly wronged themselves.
3902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And We certainly showed favour to Moses and Aaron,
3903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and delivered them and their people from the great distress.
3904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We helped them so it was they who prevailed.
3905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We gave them the clear Scripture,
3906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and guided them to the Straight Path.
3907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We blessed them ˹with honourable mention˺ among later generations:
3908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               "Peace be upon Moses and Aaron."
3909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, this is how We reward the good-doers.
3910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They were truly ˹two˺ of Our faithful servants.
3911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Elias was indeed one of the messengers.
3912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Remember˺ when he said to his people, "Will you not fear ˹Allah˺?
3913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Do you call upon ˹the idol of˺ Ba’l and abandon the Best of Creators—
3914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Allah, your Lord and the Lord of your forefathers?"
3915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But they rejected him, so they will certainly be brought ˹for punishment˺.
3916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But not the chosen servants of Allah.
3917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We blessed him ˹with honourable mention˺ among later generations:
3918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         "Peace be upon Elias."
3919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, this is how We reward the good-doers.
3920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He was truly one of Our faithful servants.
3921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Lot was indeed one of the messengers.
3922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Remember˺ when We delivered him and all of his family,
3923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                except an old woman, who was one of the doomed.
3924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then We ˹utterly˺ destroyed the rest.
3925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You ˹Meccans˺ certainly pass by their ruins day
3926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and night. Will you not then understand?
3927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jonah was indeed one of the messengers.
3928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Remember˺ when he fled to the overloaded ship.
3929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then ˹to save it from sinking,˺ he drew straws ˹with other passengers˺. He lost ˹and was thrown overboard˺.
3930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the whale engulfed him while he was blameworthy.
3931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Had he not ˹constantly˺ glorified ˹Allah˺,
3932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   he would have certainly remained in its belly until the Day of Resurrection.
3933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But We cast him onto the open ˹shore˺, ˹totally˺ worn out,
3934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and caused a squash plant to grow over him.
3935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We ˹later˺ sent him ˹back˺ to ˹his city of˺ at least one hundred thousand people,
3936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          who then believed ˹in him˺, so We allowed them enjoyment for a while.
3937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ask them ˹O Prophet˺ if your Lord has daughters, while the pagans ˹prefer to˺ have sons.
3938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or ˹ask them˺ if We created the angels as females right before their eyes.
3939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, it is one of their ˹outrageous˺ fabrications to say,
3940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   "Allah has children." They are simply liars.
3941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Has He chosen daughters over sons?
3942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What is the matter with you? How do you judge?
3943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Will you not then be mindful?
3944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or do you have ˹any˺ compelling proof?
3945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then bring ˹us˺ your scripture, if what you say is true!
3946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They have also established a ˹marital˺ relationship between Him and the jinn. Yet the jinn ˹themselves˺ know well that such people will certainly be brought ˹for punishment˺.
3947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Glorified is Allah far above what they claim!
3948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But not the chosen servants of Allah.
3949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely you ˹pagans˺ and whatever ˹idols˺ you worship
3950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          can never lure ˹anyone˺ away from Him
3951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       except those ˹destined˺ to burn in Hell.
3952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹The angels respond,˺ "There is not one of us without an assigned station ˹of worship˺.
3953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We are indeed the ones lined up in ranks ˹for Allah˺.
3954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And we are indeed the ones ˹constantly˺ glorifying ˹His praise˺."
3955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They certainly used to say,
3956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "If only we had a Reminder like ˹those of˺ earlier peoples,
3957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            we would have truly been Allah’s devoted servants."
3958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But ˹now˺ they reject it, so they will soon know.
3959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Our Word has already gone forth to Our servants, the messengers,
3960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              that they would surely be helped,
3961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and that Our forces will certainly prevail.
3962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So turn away from the deniers for a while ˹O Prophet˺.
3963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                You will see ˹what will happen to˺ them, and they too will see!
3964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do they ˹really˺ wish to hasten Our punishment?
3965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Yet when it descends upon them: how evil will that morning be for those who had been warned!
3966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And turn away from them for a while.
3967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           You will see, and they too will see!
3968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Glorified is your Lord—the Lord of Honour and Power—above what they claim!
3969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Peace be upon the messengers.
3970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And praise be to Allah—Lord of all worlds.
3971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sãd. By the Quran, full of reminders!
3972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹This is the truth,˺ yet the disbelievers are ˹entrenched˺ in arrogance and opposition.
3973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Imagine˺ how many peoples We destroyed before them, and they cried out when it was too late to escape.
3974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now, the pagans are astonished that a warner has come to them from among themselves. And the disbelievers say, "This is a magician, a total liar!
3975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Has he reduced ˹all˺ the gods to One God? Indeed, this is something totally astonishing."
3976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chiefs among them went forth saying, "Carry on, and stand firm in devotion to your gods. Certainly this is just a scheme ˹for power˺.
3977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have never heard of this in the previous faith. This is nothing but a fabrication.
3978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Has the Reminder been revealed ˹only˺ to him out of ˹all of˺ us?" In fact, they are ˹only˺ in doubt of My ˹revealed˺ Reminder. In fact, ˹they do so because˺ they have not yet tasted My punishment.
3979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or ˹is it because˺ they possess the treasuries of the mercy of your Lord—the Almighty, the Giver ˹of all bounties˺.
3980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or ˹is it because˺ the kingdom of the heavens and the earth and everything in between belongs to them? Let them then climb their way ˹to heaven, if their claim is true˺.
3981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This is just another ˹enemy˺ force bound for defeat out there.
3982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Before them, the people of Noah denied ˹the truth˺, as did ’ad, Pharaoh of the mighty structures,
3983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thamûd, the people of Lot, and the residents of the Forest. These were ˹all˺ enemy forces.
3984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Each rejected their messenger, so My punishment was justified.
3985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These ˹pagans˺ are awaiting nothing but a single Blast that cannot be stopped.
3986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They say ˹mockingly˺, "Our Lord! Hasten for us our share ˹of the punishment˺ before the Day of Reckoning."
3987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Be patient ˹O Prophet˺ with what they say. And remember Our servant, David, the man of strength. Indeed, he ˹constantly˺ turned ˹to Allah˺.
3988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We truly subjected the mountains to hymn ˹Our praises˺ along with him in the evening and after sunrise.
3989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹We subjected˺ the birds, flocking together. All turned to him ˹echoing his hymns˺.
3990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We strengthened his kingship, and gave him wisdom and sound judgment.
3991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Has the story of the two plaintiffs, who scaled the ˹wall of David’s˺ sanctuary, reached you ˹O Prophet˺?
3992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When they came into David’s presence, he was startled by them. They said, "Have no fear. ˹We are merely˺ two in a dispute: one of us has wronged the other. So judge between us with truth—do not go beyond ˹it˺—and guide us to the right way.
3993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is my brother. He has ninety-nine sheep while I have ˹only˺ one. ˹Still˺ he asked me to give it up to him, overwhelming me with ˹his˺ argument."
3994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    David ˹eventually˺ ruled, "He has definitely wronged you in demanding ˹to add˺ your sheep to his. And certainly many partners wrong each other, except those who believe and do good—but how few are they!" Then David realized that We had tested him so he asked for his Lord’s forgiveness, fell down in prostration, and turned ˹to Him in repentance˺.
3995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So We forgave that for him. And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!
3996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹We instructed him:˺ "O David! We have surely made you an authority in the land, so judge between people with truth. And do not follow ˹your˺ desires or they will lead you astray from Allah’s Way. Surely those who go astray from Allah’s Way will suffer a severe punishment for neglecting the Day of Reckoning."
3997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We have not created the heavens and earth and everything in between without purpose—as the disbelievers think. So woe to the disbelievers because of the Fire!
3998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or should We treat those who believe and do good like those who make mischief throughout the land? Or should We treat the righteous like the wicked?
3999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹This is˺ a blessed Book which We have revealed to you ˹O Prophet˺ so that they may contemplate its verses, and people of reason may be mindful.
4000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We blessed David with Solomon—what an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.
4001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Remember˺ when the well-trained, swift horses were paraded before him in the evening.
4002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He then proclaimed, "I am truly in love with ˹these˺ fine things out of remembrance for Allah," until they went out of sight.
4003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹He ordered,˺ "Bring them back to me!" Then he began to rub down their legs and necks.
4004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And indeed, We tested Solomon, placing a ˹deformed˺ body on his throne, then he turned ˹to Allah in repentance˺.
4005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He prayed, "My Lord! Forgive me, and grant me an authority that will never be matched by anyone after me. You are indeed the Giver ˹of all bounties˺."
4006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So We subjected to him the wind, blowing gently at his command to wherever he pleased.
4007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ˹We subjected to him˺ every builder and diver of the jinn,
4008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and others bound together in chains.
4009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Allah said,˺ "This is Our gift, so give or withhold ˹as you wish˺, never to be called to account."
4010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he will indeed have ˹a status of˺ closeness to Us and an honourable destination!
4011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And remember Our servant Job, when he cried out to his Lord, "Satan has afflicted me with distress and suffering."
4012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹We responded,˺ "Stomp your foot: ˹now˺ here is a cool ˹and refreshing˺ spring for washing and drinking."
4013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We gave him back his family, twice as many, as a mercy from Us and a lesson for people of reason.
4014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹And We said to him,˺ "Take in your hand a bundle of grass, and strike ˹your wife˺ with it, and do not break your oath." We truly found him patient. What an excellent servant ˹he was˺! Indeed, he ˹constantly˺ turned ˹to Allah˺.
4015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And remember Our servants: Abraham, Isaac, and Jacob—the men of strength and insight.
4016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We truly chose them for the honour of proclaiming the Hereafter.
4017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And in Our sight they are truly among the chosen and the finest.
4018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Also remember Ishmael, Elisha, and Ⱬul-Kifl. All are among the best.
4019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is ˹all˺ a reminder. And the righteous will certainly have an honourable destination:
4020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the Gardens of Eternity, whose gates will be open for them.
4021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 There they will recline, calling for abundant fruit and drink.
4022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And with them will be maidens of modest gaze and equal age.
4023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is what you are promised for the Day of Reckoning.
4024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is indeed Our provision that will never end.
4025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That is that. And the transgressors will certainly have the worst destination:
4026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hell, where they will burn. What an evil place to rest!
4027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let them then taste this: boiling water and ˹oozing˺ pus,
4028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and other torments of the same sort!
4029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹The misleaders will say to one another,˺ "Here is a crowd ˹of followers˺ being thrown in with us. They are not welcome, ˹for˺ they ˹too˺ will burn in the Fire."
4030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The followers will respond, "No! You are not welcome! You brought this upon us. What an evil place for settlement!"
4031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Adding, "Our Lord! Whoever brought this upon us, double their punishment in the Fire."
4032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The tyrants will ask ˹one another˺, "But why do we not see those we considered to be lowly?
4033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Were we wrong in mocking them ˹in the world˺? Or do our eyes ˹just˺ fail to see them ˹in the Fire˺?"
4034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This dispute between the residents of the Fire will certainly come to pass.
4035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, ˹O Prophet,˺ "I am only a warner. And there is no god ˹worthy of worship˺ except Allah—the One, the Supreme.
4036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹He is the˺ Lord of the heavens and the earth and everything in between—the Almighty, Most Forgiving."
4037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "This ˹Quran˺ is momentous news,
4038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     from which you ˹pagans˺ are turning away."
4039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹And say,˺ "I had no knowledge of the highest assembly ˹in heaven˺ when they differed ˹concerning Adam˺.
4040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           What is revealed to me is that I am only sent with a clear warning."
4041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Remember, O  Prophet˺ when your Lord said to the angels, "I am going to create a human being from clay.
4042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So when I have fashioned him and had a spirit of My Own ˹creation˺ breathed into him, fall down in prostration to him."
4043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So the angels prostrated all together—
4044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            but not Iblis, becoming unfaithful.
4045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah asked, "O Iblis! What prevented you from prostrating to what I created with My Own Hands? Did you ˹just˺ become proud? Or have you always been arrogant?"
4046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He replied, "I am better than he is: You created me from fire and him from clay."
4047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Allah commanded, "Then get out of Paradise, for you are truly cursed.
4048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And surely upon you is My condemnation until the Day of Judgment."
4049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Satan appealed, "My Lord! Then delay my end until the Day of their resurrection."
4050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Allah said, "You will be delayed
4051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      until the appointed Day."
4052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Satan said, "By Your Glory! I will certainly mislead them all,
4053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       except Your chosen servants among them."
4054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah concluded, "The truth is—and I ˹only˺ say the truth—:
4055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I will surely fill up Hell with you and whoever follows you from among them, all together."
4056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "I do not ask you for any reward for this ˹Quran˺, nor do I pretend to be someone I am not.
4057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It is only a reminder to the whole world.
4058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And you will certainly know its truth before long."
4059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The revelation of this Book is from Allah—the Almighty, All-Wise.
4060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We have sent down the Book to you ˹O Prophet˺ in truth, so worship Allah ˹alone˺, being sincerely devoted to Him.
4061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, sincere devotion is due ˹only˺ to Allah. As for those who take other lords besides Him, ˹saying,˺ "We worship them only so they may bring us closer to Allah," surely Allah will judge between all regarding what they differed about. Allah certainly does not guide whoever persists in lying and disbelief.
4062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Had it been Allah’s Will to have offspring, He could have chosen whatever He willed of His creation. Glory be to Him! He is Allah—the One, the Supreme.
4063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He created the heavens and the earth for a purpose. He wraps the night around the day, and wraps the day around the night. And He has subjected the sun and the moon, each orbiting for an appointed term. He is truly the Almighty, Most Forgiving.
4064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He created you ˹all˺ from a single soul, That is Allah—your Lord! All authority belongs to Him. There is no god ˹worthy of worship˺ except Him. How can you then be turned away?
4065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If you disbelieve, then ˹know that˺ Allah is truly not in need of you, nor does He approve of disbelief from His servants. But if you become grateful ˹through faith˺, He will appreciate that from you. No soul burdened with sin will bear the burden of another. Then to your Lord is your return, and He will inform you of what you used to do. He certainly knows best what is ˹hidden˺ in the heart.
4066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When one is touched with hardship, they cry out to their Lord, turning to Him ˹alone˺. But as soon as He showers them with blessings from Him, they ˹totally˺ forget the One they had cried to earlier, and set up equals to Allah to mislead ˹others˺ from His Way. Say, ˹O Prophet,˺ "Enjoy your disbelief for a little while! You will certainly be one of the inmates of the Fire."
4067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Are they better˺ or those who worship ˹their Lord˺ devoutly in the hours of the night, prostrating and standing, fearing the Hereafter and hoping for the mercy of their Lord? Say, ˹O Prophet,˺ "Are those who know equal to those who do not know?" None will be mindful ˹of this˺ except people of reason.
4068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say ˹O Prophet, that Allah says˺, "O My servants who believe! Be mindful of your Lord. Those who do good in this world will have a good reward. And Allah’s earth is spacious. Only those who endure patiently will be given their reward without limit."
4069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "I am commanded to worship Allah, being sincerely devoted to Him ˹alone˺.
4070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I am commanded to be the first of those who submit ˹to His Will˺."
4071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, "I truly fear—if I were to disobey my Lord—the torment of a tremendous Day."
4072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, "It is ˹only˺ Allah that I worship, being sincere in my devotion to Him.
4073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Worship then whatever ˹gods˺ you want instead of Him." Say, "The ˹true˺ losers are those who will lose themselves and their families on Judgment Day. That is indeed the clearest loss."
4074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They will have layers of fire above and below them. That is what Allah warns His servants with. So fear Me, O  My servants!
4075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And those who shun the worship of false gods, turning to Allah ˹alone˺, will have good news. So give good news to My servants ˹O Prophet˺—
4076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          those who listen to what is said and follow the best of it. These are the ones ˹rightly˺ guided by Allah, and these are ˹truly˺ the people of reason.
4077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     What about those against whom the decree of torment has been justified? Is it you ˹O Prophet˺ who will then save those bound for the Fire?
4078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But those mindful of their Lord will have ˹elevated˺ mansions, built one above the other, under which rivers flow. ˹That is˺ the promise of Allah. ˹And˺ Allah never fails in ˹His˺ promise.
4079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do you not see that Allah sends down rain from the sky—channelling it through streams in the earth—then produces with it crops of various colours, then they dry up and you see them wither, and then He reduces them to chaff? Surely in this is a reminder for people of reason.
4080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Can ˹the misguided be like˺ those whose hearts Allah has opened to Islam, so they are enlightened by their Lord? So woe to those whose hearts are hardened at the remembrance of Allah! It is they who are clearly astray.
4081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹It is˺ Allah ˹Who˺ has sent down the best message—a Book of perfect consistency and repeated lessons—which causes the skin ˹and hearts˺ of those who fear their Lord to tremble, then their skin and hearts soften at the mention of ˹the mercy of˺ Allah. That is the guidance of Allah, through which He guides whoever He wills. But whoever Allah leaves to stray will be left with no guide.
4082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Are those who will only have their ˹bare˺ faces to shield themselves from the awful torment on Judgment Day ˹better than those in Paradise˺? It will ˹then˺ be said to the wrongdoers: "Reap what you sowed!"
4083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those before them ˹also˺ rejected ˹the truth˺, then the torment came upon them from where they least expected.
4084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Allah made them taste humiliation in this worldly life, but far worse is the punishment of the Hereafter, if only they knew.
4085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have certainly set forth every ˹kind of˺ lesson for people in this Quran, so perhaps they will be mindful.
4086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It is˺ a Quran ˹revealed˺ in Arabic without any crookedness, so perhaps they will be conscious ˹of Allah˺.
4087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah sets forth the parable of a slave owned by several quarrelsome masters, and a slave owned by only one master. Are they equal in condition? Praise be to Allah! In fact, most of them do not know.
4088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     You ˹O Prophet˺ will certainly die, and they will die too.
4089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then on the Day of Judgment you will ˹all settle your˺ dispute before your Lord.
4090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who then does more wrong than those who lie about Allah and reject the truth after it has reached them? Is Hell not a ˹fitting˺ home for the disbelievers?
4091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the one who has brought the truth and those who embrace it—it is they who are the righteous.
4092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They will have whatever they desire with their Lord. That is the reward of the good-doers.
4093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As such, Allah will absolve them of ˹even˺ the worst of what they did and reward them according to the best of what they used to do.
4094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is Allah not sufficient for His servant? Yet they threaten you with other ˹powerless˺ gods besides Him! Whoever Allah leaves to stray will be left with no guide.
4095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whoever Allah guides, none can lead astray. Is Allah not Almighty, capable of punishment?
4096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, "Allah!" Ask ˹them˺, "Consider then whatever ˹idols˺ you invoke besides Allah: if it was Allah’s Will to harm me, could they undo that harm? Or if He willed ˹some˺ mercy for me, could they withhold His mercy?" Say, "Allah is sufficient for me. In Him ˹alone˺ the faithful put their trust."
4097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, ˹O Prophet,˺ "O my people! Persist in your ways, for I ˹too˺ will persist in mine. You will soon come to know
4098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       who will be visited by a humiliating torment ˹in this life˺ and overwhelmed by an everlasting punishment ˹in the next˺."
4099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely We have revealed to you the Book ˹O Prophet˺ with the truth for humanity. So whoever chooses to be guided, it is for their own good. And whoever chooses to stray, it is only to their own loss. You are not a keeper over them.
4100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It is˺ Allah ˹Who˺ calls back the souls ˹of people˺ upon their death as well as ˹the souls˺ of the living during their sleep. Then He keeps those for whom He has ordained death, and releases the others until ˹their˺ appointed time. Surely in this are signs for people who reflect.
4101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or have they taken others besides Allah as intercessors? Say, ˹O Prophet,˺ "˹Would they do so,˺ even though those ˹idols˺ have neither authority nor intelligence?"
4102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Say, "All intercession belongs to Allah ˹alone˺. To Him belongs the kingdom of the heavens and the earth. Then to Him you will ˹all˺ be returned."
4103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet when Allah alone is mentioned, the hearts of those who disbelieve in the Hereafter are filled with disgust. But as soon as those ˹gods˺ other than Him are mentioned, they are filled with joy.
4104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "O Allah—Originator of the heavens and the earth, Knower of the seen and unseen! You will judge between Your servants regarding their differences."
4105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Even if the wrongdoers were to possess everything in the world twice over, they would certainly offer it to ransom themselves from the horrible punishment on Judgment Day, for they will see from Allah what they had never expected.
4106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.
4107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When one is touched with hardship, they cry out to Us ˹alone˺. Then when We shower Our blessings upon them, they say, "I have been granted all this only because of ˹my˺ knowledge." Not at all! It is ˹no more than˺ a test. But most of them do not know.
4108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The same had already been said by those ˹destroyed˺ before them, but their ˹worldly˺ gains were of no benefit to them.
4109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So the evil ˹consequences˺ of their deeds overtook them. And the wrongdoers among these ˹pagans˺ will be overtaken by the evil ˹consequences˺ of their deeds. And they will have no escape.
4110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do they not know that Allah gives abundant or limited provisions to whoever He wills? Surely in this are signs for people who believe.
4111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet, that Allah says,˺ "O My servants who have exceeded the limits against their souls! Do not lose hope in Allah’s mercy, for Allah certainly forgives all sins. He is indeed the All-Forgiving, Most Merciful.
4112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Turn to your Lord ˹in repentance˺, and ˹fully˺ submit to Him before the punishment reaches you, ˹for˺ then you will not be helped.
4113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Follow ˹the Quran,˺ the best of what has been revealed to you from your Lord, before the punishment takes you by surprise while you are unaware,
4114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       so that no ˹sinful˺ soul will say ˹on Judgment Day˺, ‘Woe to me for neglecting ˹my duties towards˺ Allah, while ridiculing ˹the truth˺.’
4115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or ˹a soul will˺ say, ‘If only Allah had guided me, I would have certainly been one of the righteous.’
4116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or say, upon seeing the torment, ‘If only I had a second chance, I would have been one of the good-doers.’
4117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Not at all! My revelations had already come to you, but you rejected them, acted arrogantly, and were one of the disbelievers."
4118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On the Day of Judgment you will see those who lied about Allah with their faces gloomy. Is Hell not a ˹fitting˺ home for the arrogant?
4119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Allah will deliver those who were mindful ˹of Him˺ to their place of ˹ultimate˺ triumph. No evil will touch them, nor will they grieve.
4120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah is the Creator of all things, and He is the Maintainer of everything.
4121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. As for those who rejected the signs of Allah, it is they who will be the ˹true˺ losers.
4122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say, ˹O Prophet,˺ "Are you urging me to worship ˹anyone˺ other than Allah, O  ignorant ones?"
4123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It has already been revealed to you—and to those ˹prophets˺ before you—that if you associate others ˹with Allah˺, your deeds will certainly be void and you will truly be one of the losers.
4124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Rather, worship Allah ˹alone˺ and be one of the grateful.
4125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They have not shown Allah His proper reverence—when on the Day of Judgment the ˹whole˺ earth will be in His Grip, and the heavens will be rolled up in His Right Hand. Glorified and Exalted is He above what they associate ˹with Him˺!
4126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Trumpet will be blown and all those in the heavens and all those on the earth will fall dead, except those Allah wills ˹to spare˺. Then it will be blown again and they will rise up at once, looking on ˹in anticipation˺.
4127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The earth will shine with the light of its Lord, the record ˹of deeds˺ will be laid ˹open˺, the prophets and the witnesses will be brought forward—and judgment will be passed on all with fairness. None will be wronged.
4128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every soul will be paid in full for its deeds, for Allah knows best what they have done.
4129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Those who disbelieved will be driven to Hell in ˹successive˺ groups. When they arrive there, its gates will be opened and its keepers will ask them: "Did messengers not come to you from among yourselves, reciting to you the revelations of your Lord and warning you of the coming of this Day of yours?" The disbelievers will cry, "Yes ˹indeed˺! But the decree of torment has come to pass against the disbelievers."
4130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It will be said to them, "Enter the gates of Hell, to stay there forever." What an evil home for the arrogant!
4131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And those who were mindful of their Lord will be led to Paradise in ˹successive˺ groups. When they arrive at its ˹already˺ open gates, its keepers will say, "Peace be upon you! You have done well, so come in, to stay forever."
4132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The righteous will say, "Praise be to Allah Who has fulfilled His promise to us, and made us inherit the ˹everlasting˺ land to settle in Paradise wherever we please." How excellent is the reward of those who work ˹righteousness˺!
4133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You will see the angels all around the Throne, glorifying the praises of their Lord, for judgment will have been passed on all with fairness. And it will be said, "Praise be to Allah—Lord of all worlds!"
4134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The revelation of this Book is from Allah—the Almighty, All-Knowing,
4136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         the Forgiver of sin and Accepter of repentance, the Severe in punishment, and Infinite in bounty. There is no god ˹worthy of worship˺ except Him. To Him ˹alone˺  is the final return.
4137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       None disputes the signs of Allah except the disbelievers, so do not be deceived by their prosperity throughout the land.
4138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Before them, the people of Noah denied ˹the truth˺, as did ˹other˺ enemy forces afterwards. Every community plotted against its prophet to seize him, and argued in falsehood, ˹hoping˺ to discredit the truth with it. So I seized them. And how ˹horrible˺ was My punishment!
4139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And so your Lord’s decree has been proven true against the disbelievers—that they will be the inmates of the Fire.
4140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Those ˹angels˺ who carry the Throne and those around it glorify the praises of their Lord, have faith in Him, and seek forgiveness for the believers, ˹praying:˺ "Our Lord! You encompass everything in ˹Your˺ mercy and knowledge. So forgive those who repent and follow Your Way, and protect them from the torment of the Hellfire.
4141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Lord! Admit them into the Gardens of Eternity which You have promised them, along with the righteous among their parents, spouses, and descendants. You ˹alone˺ are truly the Almighty, All-Wise.
4142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And protect them from ˹the consequences of their˺ evil deeds. For whoever You protect from the evil of their deeds on that Day will have been shown Your mercy. That is ˹truly˺ the ultimate triumph."
4143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, it will be announced to the disbelievers, "Allah’s contempt for you—as you disbelieved when invited to belief—was far worse than your contempt for one another ˹Today˺."
4144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will plead, "Our Lord! You made us lifeless twice, and gave us life twice. Now we confess our sins. So is there any way out?"
4145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They will be told,˺ "˹No!˺ This is because when Allah alone was invoked, you ˹staunchly˺ disbelieved. But when others were associated with Him ˹in worship˺, you ˹readily˺ believed. So ˹Today˺ judgment belongs to Allah ˹alone˺—the Most High, All-Great."
4146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He is the One Who shows you His signs and sends down ˹rain as˺ a provision for you from the sky. ˹But˺ none will be mindful except those who turn ˹to Him˺.
4147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So call upon Allah with sincere devotion, even to the dismay of the disbelievers.
4148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹He is˺ Highly Exalted in rank, Lord of the Throne. He sends down the revelation by His command to whoever He wills of His servants to warn ˹all˺ of the Day of Meeting—
4149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  the Day all will appear ˹before Allah˺. Nothing about them will be hidden from Him. ˹He will ask,˺ "Who does all authority belong to this Day? To Allah—the One, the Supreme!
4150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Today every soul will be rewarded for what it has done. No injustice Today! Surely Allah is swift in reckoning."
4151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Warn them ˹O Prophet˺ of the approaching Day when the hearts will jump into the throats, suppressing distress. The wrongdoers will have neither a close friend nor intercessor to be heard.
4152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Allah ˹even˺ knows the sly glances of the eyes and whatever the hearts conceal.
4153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Allah judges with the truth, while those ˹idols˺ they invoke besides Him cannot judge at all. Indeed, Allah ˹alone˺ is the All-Hearing, All-Seeing.
4154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have they not travelled throughout the land to see what was the end of those ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land. But Allah seized them for their sins, and they had no protector from Allah.
4155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That was because their messengers used to come to them with clear proofs, but they persisted in disbelief. So Allah seized them. Surely He is All-Powerful, severe in punishment.
4156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We sent Moses with Our signs and compelling proof
4157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      to Pharaoh, Haman, and Korah. But they responded: "Magician! Total liar!"
4158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then, when he came to them with the truth from Us, they said, "Kill the sons of those who believe with him and keep their women." But the plotting of the disbelievers was only in vain.
4159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh said, "Let me kill Moses, and let him call upon his Lord! I truly fear that he may change your traditions or cause mischief in the land."
4160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moses replied, "I seek refuge in my Lord and your Lord from every arrogant person who does not believe in the Day of Reckoning."
4161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A believing man from Pharaoh’s people, who was hiding his faith, argued, "Will you kill a man ˹only˺ for saying: ‘My Lord is Allah,’ while he has in fact come to you with clear proofs from your Lord? If he is a liar, it will be to his own loss. But if he is truthful, then you will be afflicted with some of what he is threatening you with. Surely Allah does not guide whoever is a transgressor, a total liar.
4162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O  my people! Authority belongs to you today, reigning supreme in the land. But who would help us against the torment of Allah, if it were to befall us?" Pharaoh assured ˹his people˺, "I am telling you only what I believe, and I am leading you only to the way of guidance."
4163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the man who believed cautioned, "O my people! I truly fear for you the doom of ˹earlier˺ enemy forces—
4164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    like the fate of the people of Noah, ’Ȃd, Thamûd, and those after them. For Allah would never will to wrong ˹His˺ servants.
4165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O  my people! I truly fear for you the Day all will be crying out ˹to each other˺—
4166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           the Day you will ˹try in vain to˺ turn your backs and run away, with no one to protect you from Allah. And whoever Allah leaves to stray will be left with no guide.
4167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Joseph already came to you earlier with clear proofs, yet you never ceased to doubt what he came to you with. When he died you said, ‘Allah will never send a messenger after him.’ This is how Allah leaves every transgressor and doubter to stray—
4168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  those who dispute Allah’s signs with no proof given to them. How despicable is that for Allah and the believers! This is how Allah seals the heart of every arrogant tyrant."
4169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Pharaoh ordered, "O Haman! Build me a high tower so I may reach the pathways
4170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  leading up to the heavens and look for the God of Moses, although I am sure he is a liar." And so Pharaoh’s evil deeds were made so appealing to him that he was hindered from the ˹Right˺ Way. But the plotting of Pharaoh was only in vain.
4171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the man who believed urged, "O my people! Follow me, ˹and˺ I will lead you to the Way of Guidance.
4172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O  my people! This worldly life is only ˹a fleeting˺ enjoyment, whereas the Hereafter is truly the home of settlement.
4173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoever does an evil deed will only be paid back with its equivalent. And whoever does good, whether male or female, and is a believer, they will enter Paradise, where they will be provided for without limit.
4174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O  my people! How is it that I invite you to salvation, while you invite me to the Fire!
4175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You invite me to disbelieve in Allah and associate with Him what I have no knowledge of, while I invite you to the Almighty, Most Forgiving.
4176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There is no doubt that whatever ˹idols˺ you invite me to ˹worship˺ are not worthy to be invoked either in this world or the Hereafter. ˹Undoubtedly,˺ our return is to Allah, and the transgressors will be the inmates of the Fire.
4177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     You will remember what I say to you, and I entrust my affairs to Allah. Surely Allah is All-Seeing of all ˹His˺ servants."
4178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Allah protected him from the evil of their schemes. And Pharaoh’s people were overwhelmed by an evil punishment:
4179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            they are exposed to the Fire ˹in their graves˺ morning and evening. And on the Day the Hour will be established ˹it will be said˺, "Admit Pharaoh’s people into the harshest punishment ˹of Hell˺."
4180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹Consider the Day˺ when they will dispute in the Fire, and the lowly ˹followers˺ will appeal to the arrogant ˹leaders˺, "We were your ˹dedicated˺ followers, will you then shield us from a portion of the Fire?"
4181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The arrogant will say, "We are all in it! ˹For˺ Allah has already passed judgment over ˹His˺ servants."
4182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And those in the Fire will cry out to the keepers of Hell, "Pray to your Lord to lighten the torment for us ˹even˺ for one day!"
4183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The keepers will reply, "Did your messengers not ˹constantly˺ come to you with clear proofs?" They will say, "Yes ˹they did˺." The keepers will say, "Then pray! Though the prayer of the disbelievers is only in vain."
4184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We certainly help Our messengers and the believers, ˹both˺ in this worldly life and on the Day the witnesses will stand forth ˹for testimony˺—
4185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        the Day the wrongdoers’ excuses will be of no benefit to them. They will be condemned, and will have the worst outcome.
4186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And indeed, We gave Moses ˹true˺ guidance, and made the Children of Israel inherit the Scripture—
4187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    a guide and a reminder to people of reason.
4188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So be patient ˹O Prophet˺, ˹for˺ Allah’s promise is certainly true. Seek forgiveness for your shortcomings. And glorify the praises of your Lord morning and evening.
4189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely those who dispute Allah’s signs—with no proof given to them—have nothing in their hearts but greed for dominance, which they will never attain. So seek refuge in Allah. Indeed, He alone is the All-Hearing, All-Seeing.
4190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The creation of the heavens and the earth is certainly greater than the re-creation of humankind, but most people do not know.
4191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those blind ˹to the truth˺ and those who can see are not equal, nor are those who believe and do good ˹equal˺ to those who do evil. Yet you are hardly mindful.
4192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Hour is certainly coming, there is no doubt about it. But most people do not believe.
4193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Your Lord has proclaimed, "Call upon Me, I will respond to you. Surely those who are too proud to worship Me will enter Hell, fully humbled."
4194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is Allah Who has made the night for you to rest in and the day bright. Surely Allah is ever Bountiful to humanity, but most people are ungrateful.
4195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That is Allah, your Lord, the Creator of all things. There is no god ˹worthy of worship˺ except Him. How can you then be deluded ˹from the truth˺?
4196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is how those who used to reject Allah’s signs were ˹also˺ deluded.
4197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is Allah Who made the earth a place of settlement for you and the sky a canopy. He shaped you ˹in the womb˺, perfecting your form. And He has provided you with what is good and lawful. That is Allah—your Lord. So Blessed is Allah, Lord of all worlds.
4198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He is the Ever-Living. There is no god ˹worthy of worship˺ except Him. So call upon Him with sincere devotion, ˹saying,˺ "All praise is for Allah—Lord of all worlds."
4199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "I have been forbidden to worship those ˹idols˺ you worship besides Allah, since clear proofs have come to me from my Lord. And I have been commanded to ˹fully˺ submit to the Lord of all worlds."
4200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who created you then He brings you forth as infants, so that you may reach your prime, and become old—though some of you ˹may˺ die sooner—reaching an appointed time, so perhaps you may understand ˹Allah’s power˺.
4201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He is the One Who gives life and causes death. When He decrees a matter, He simply tells it, "Be!" And it is!
4202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have you not seen how those who dispute Allah’s signs are turned away?
4203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They are˺ the ones who reject this Book and all ˹scriptures˺ We sent Our messengers with. So they will know ˹the consequences˺
4204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      when shackles will be around their necks and chains ˹on their legs˺. They will be dragged
4205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      through boiling water, then burned in the Fire ˹as fuel˺.
4206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then they will be asked, "Where are those ˹idols˺ you used to associate
4207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                with Allah?" They will cry, "They have ˹all˺ failed us. In fact, we did not invoke anything ˹real˺ before." This is how Allah leaves the disbelievers to stray.
4208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹They will be told,˺ "This ˹punishment˺ is for being prideful on earth unjustly and for acting arrogantly.
4209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Enter the gates of Hell, to stay there forever. What an evil home for the arrogant!"
4210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So be patient ˹O Prophet˺. Surely Allah’s promise is true. Whether We show you some of what We threaten them with, or cause you to die ˹before that˺, to Us they will ˹all˺ be returned.
4211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We already sent messengers before you. We have told you the stories of some of them, while others We have not. It was not for any messenger to bring a sign without Allah’s permission. But when Allah’s decree comes, judgment will be passed with fairness, and the people of falsehood will then be in ˹total˺ loss.
4212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is Allah Who made cattle for you so that you may ride some and eat others.
4213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Also, you find in them ˹other˺ benefits. And by means of them you may reach destinations you desire. And you are carried upon ˹some of˺ them and upon ships.
4214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And He shows you His signs. Now which of Allah’s signs will you deny?
4215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have they not travelled throughout the land to see what was the end of those who were ˹destroyed˺ before them? They were far superior in might and ˹richer in˺ monuments throughout the land, but their ˹worldly˺ gains were of no benefit to them.
4216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When their messengers came to them with clear proofs, they were prideful in whatever ˹worldly˺ knowledge they had, and were ˹ultimately˺ overwhelmed by what they used to ridicule.
4217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When they saw Our punishment, they cried, "˹Now˺ we believe in Allah alone and reject what we had been associating with Him!"
4218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But their faith was of no benefit to them when they saw Our torment. This has ˹always˺ been Allah’s way ˹of dealing˺ with His ˹wicked˺ servants. Then and there the disbelievers were in ˹total˺ loss.
4219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹This is˺ a revelation from the Most Compassionate, Most Merciful.
4221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It is˺ a Book whose verses are perfectly explained—a Quran in Arabic for people who know,
4222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             delivering good news and warning. Yet most of them turn away, so they do not hear.
4223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They say, "Our hearts are veiled against what you are calling us to, there is deafness in our ears, and there is a barrier between us and you. So do ˹whatever you want˺ and so shall we!"
4224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say, ˹O Prophet,˺ "I am only a man like you, ˹but˺ it has been revealed to me that your God is only One God. So take the Straight Way towards Him, and seek His forgiveness. And woe to the polytheists—
4225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              those who do not pay alms-tax and are in denial of the Hereafter.
4226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹But˺ those who believe and do good will certainly have a never-ending reward.
4227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ask ˹them, O  Prophet˺, "How can you disbelieve in the One Who created the earth in two Days? And how can you set up equals with Him? That is the Lord of all worlds.
4228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He placed on the earth firm mountains, standing high, showered His blessings upon it, and ordained ˹all˺ its means of sustenance—totaling four Days exactly—for all who ask.
4229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then He turned towards the heaven when it was ˹still like˺ smoke, saying to it and to the earth, ‘Submit, willingly or unwillingly.’ They both responded, ‘We submit willingly.’
4230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So He formed the heaven into seven heavens in two Days, assigning to each its mandate. And We adorned the lowest heaven with ˹stars like˺ lamps ˹for beauty˺ and for protection. That is the design of the Almighty, All-Knowing."
4231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If they turn away, then say, ˹O Prophet,˺ "I warn you of a ˹mighty˺ blast, like the one that befell ’Ȃd and Thamûd."
4232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The messengers had come to them from all angles, ˹proclaiming,˺ "Worship none but Allah." They responded, "Had our Lord willed, He could have easily sent down angels ˹instead˺. So we totally reject what you have been sent with."
4233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for ’Ȃd, they acted arrogantly throughout the land with no right, boasting, "Who is superior to us in might?" Did they not see that Allah ˹Himself˺, Who created them, was far superior to them in might? Still they persisted in denying Our signs.
4234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So We sent against them a furious wind, for ˹several˺ miserable days, to make them taste a humiliating punishment in this worldly life. But far more humiliating will be the punishment of the Hereafter. And they will not be helped.
4235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for Thamûd, We showed them guidance, but they preferred blindness over guidance. So the blast of a disgracing punishment overtook them for what they used to commit.
4236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And We delivered those who were faithful and were mindful ˹of Allah˺.
4237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Consider˺ the Day ˹when˺ the enemies of Allah will be gathered for the Fire, all driven in ranks.
4238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When they reach it, their ears, eyes, and skin will testify against what they used to do.
4239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will ask their skin ˹furiously˺, "Why have you testified against us?" It will say, "We have been made to speak by Allah, Who causes all things to speak. He ˹is the One Who˺ created you the first time, and to Him you were bound to return.
4240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You did not ˹bother to˺ hide yourselves from your ears, eyes, and skin to prevent them from testifying against you. Rather, you assumed that Allah did not know much of what you used to do.
4241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It was that ˹false˺ assumption you entertained about your Lord that has brought about your doom, so you have become losers."
4242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Even if they endure patiently, the Fire will ˹always˺ be their home. And if they ˹beg to˺ appease ˹their Lord˺, they will never be allowed to.
4243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We placed at their disposal ˹evil˺ associates who made their past and future ˹misdeeds˺ appealing to them. ˹So˺ the fate of earlier communities of jinn and humans has been justified against them ˹as well˺, ˹for˺ they were truly losers.
4244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers advised ˹one another˺, "Do not listen to this Quran but drown it out so that you may prevail."
4245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So We will certainly make the disbelievers taste a severe punishment, and We will surely repay them according to the worst of their deeds.
4246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That is the reward of Allah’s enemies: the Fire, which will be their eternal home—a ˹fitting˺ reward for their denial of Our revelations.
4247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The disbelievers will ˹then˺ cry, "Our Lord! Show us those jinn and humans who led us astray: we will put them under our feet so that they will be among the lowest ˹in Hell˺."
4248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely those who say, "Our Lord is Allah," and then remain steadfast, the angels descend upon them, ˹saying,˺ "Do not fear, nor grieve. Rather, rejoice in the good news of Paradise, which you have been promised.
4249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We are your supporters in this worldly life and in the Hereafter. There you will have whatever your souls desire, and there you will have whatever you ask for:
4250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                an accommodation from the All-Forgiving, Most Merciful ˹Lord˺."
4251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And whose words are better than someone who calls ˹others˺ to Allah, does good, and says, "I am truly one of those who submit."?
4252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Good and evil cannot be equal. Respond ˹to evil˺ with what is best, then the one you are in a feud with will be like a close friend.
4253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But this cannot be attained except by those who are patient and who are truly fortunate.
4254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if you are tempted by Satan, then seek refuge with Allah. Indeed, He ˹alone˺ is the All-Hearing, All-Knowing.
4255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Among His signs are the day and the night, the sun and the moon. Do not prostrate to the sun or the moon, but prostrate to Allah, Who created them ˹all˺, if you ˹truly˺ worship Him ˹alone˺.
4256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But if the pagans are too proud, then ˹let them know that˺ those ˹angels˺ nearest to your Lord glorify Him day and night, and never grow weary.
4257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And among His signs is that you see the earth devoid of life, but as soon as We send down rain upon it, it begins to stir ˹to life˺ and swell. Indeed, the One Who revives it can easily revive the dead. He is certainly Most Capable of everything.
4258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, those who abuse Our revelations are not hidden from Us. Who is better: the one who will be cast into the Fire or the one who will be secure on Judgment Day? Do whatever you want. He is certainly All-Seeing of what you do.
4259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, those who deny the Reminder after it has come to them ˹are doomed˺, for it is truly a mighty Book.
4260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It cannot be proven false from any angle. ˹It is˺ a revelation from the ˹One Who is˺ All-Wise, Praiseworthy.
4261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹O Prophet!˺ Nothing is said to you ˹by the deniers˺ except what was already said to the messengers before you. Surely your Lord is ˹the Lord˺ of forgiveness and painful punishment.
4262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Had We revealed it as a non-Arabic Quran, they would have certainly argued, "If only its verses were made clear ˹in our language˺. What! A non-Arabic revelation for an Arab audience!" Say, ˹O Prophet,˺ "It is a guide and a healing to the believers. As for those who disbelieve, there is deafness in their ears and blindness to it ˹in their hearts˺. It is as if they are being called from a faraway place."
4263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We had given Moses the Scripture, but differences arose regarding it. Had it not been for a prior decree from your Lord, their differences would have been settled ˹at once˺. They are truly in alarming doubt about it.
4264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Your Lord is never unjust to ˹His˺ creation.
4265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     With Him ˹alone˺ is the knowledge of the Hour. No fruit comes out of its husk, nor does a female conceive or deliver without His knowledge. And ˹consider˺ the Day He will call to them, "Where are My ˹so-called˺ associate-gods?" They will cry, "We declare before you that none of us testifies to that ˹any longer˺."
4266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whatever ˹idols˺ they used to invoke besides Allah will fail them. And they will realize that they will have no escape.
4267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One never tires of praying for good. And if touched with evil, they become desperate and hopeless.
4268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if We let them taste a mercy from Us after being touched with adversity, they will certainly say, "This is what I deserve. I do not think the Hour will ˹ever˺ come. And if in fact I am returned to my Lord, the finest reward with Him will definitely be mine." But We will surely inform the disbelievers of what they used to do. And We will certainly make them taste a harsh torment.
4269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When We show favour to someone, they turn away, acting arrogantly. And when touched with evil, they make endless prayers ˹for good˺.
4270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ask ˹them, O  Prophet˺, "Imagine if this ˹Quran˺ is ˹truly˺ from Allah and you deny it: who can be more astray than those who have gone too far in opposition ˹to the truth˺?"
4271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We will show them Our signs in the universe and within themselves until it becomes clear to them that this ˹Quran˺ is the truth. Is it not enough that your Lord is a Witness over all things?
4272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They are truly in doubt of the meeting with their Lord! ˹But˺ He is indeed Fully Aware of everything.
4273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ’Aĩn-Sĩn-Qãf.
4275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And so you ˹O Prophet˺ are sent revelation, just like those before you, by Allah—the Almighty, All-Wise.
4276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To Him belongs whatever is in the heavens and whatever is on the earth. And He is the Most High, the Greatest.
4277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The heavens nearly burst, one above the other, ˹in awe of Him˺. And the angels glorify the praises of their Lord, and seek forgiveness for those on earth. Surely Allah alone is the All-Forgiving, Most Merciful.
4278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those who take other protectors besides Him, Allah is Watchful over them. And you ˹O Prophet˺ are not a keeper over them.
4279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And so We have revealed to you a Quran in Arabic, so you may warn the Mother of Cities and everyone around it, and warn of the Day of Gathering—about which there is no doubt—˹when˺ a group will be in Paradise and another in the Blaze.
4280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Had Allah willed, He could have easily made all ˹humanity˺ into a single community ˹of believers˺. But He admits into His mercy whoever He wills. And the wrongdoers will have no protector or helper.
4281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How can they take protectors besides Him? Allah alone is the Protector. He ˹alone˺ gives life to the dead. And He ˹alone˺ is Most Capable of everything.
4282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Say to the believers, O  Prophet,˺ "Whatever you may differ about, its judgment rests with Allah. That is Allah—my Lord. In Him I put my trust, and to Him I ˹always˺ turn."
4283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹He is˺ the Originator of the heavens and the earth. He has made for you spouses from among yourselves, and ˹made˺ mates for cattle ˹as well˺—multiplying you ˹both˺. There is nothing like Him, for He ˹alone˺ is the All-Hearing, All-Seeing.
4284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        To Him belong the keys ˹of the treasuries˺ of the heavens and the earth. He gives abundant or limited provisions to whoever He wills. Indeed, He has ˹perfect˺ knowledge of all things.
4285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He has ordained for you ˹believers˺ the Way which He decreed for Noah, and what We have revealed to you ˹O Prophet˺ and what We decreed for Abraham, Moses, and Jesus, ˹commanding:˺ "Uphold the faith, and make no divisions in it." What you call the polytheists to is unbearable for them. Allah chooses for Himself whoever He wills, and guides to Himself whoever turns ˹to Him˺.
4286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They did not split ˹into sects˺ out of mutual envy until knowledge came to them. after them are truly in alarming doubt about this ˹Quran˺.
4287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Because of that, you ˹O Prophet˺ will invite ˹all˺. Be steadfast as you are commanded, and do not follow their desires. And say, "I believe in every Scripture Allah has revealed. And I am commanded to judge fairly among you. Allah is our Lord and your Lord. We will be accountable for our deeds and you for yours. There is no ˹need for˺ contention between us. Allah will gather us together ˹for judgment˺. And to Him is the final return."
4288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for those who dispute about Allah after He is ˹already˺ acknowledged ˹by many˺, their argument is futile in the sight of their Lord. Upon them is wrath, and they will suffer a severe punishment.
4289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is Allah Who has revealed the Book with the truth and the balance ˹of justice˺. You never know, perhaps the Hour is near.
4290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those who disbelieve in it ˹ask to˺ hasten it ˹mockingly˺. But the believers are fearful of it, knowing that it is the truth. Surely those who dispute about the Hour have gone far astray.
4291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Allah is Ever Kind to His servants. He provides ˹abundantly˺ to whoever He wills. And He is the All-Powerful, Almighty.
4292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoever desires the harvest of the Hereafter, We will increase their harvest. And whoever desires ˹only˺ the harvest of this world, We will give them some of it, but they will have no share in the Hereafter.
4293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do they have associate-gods who have ordained for them some ˹polytheistic˺ beliefs, which Allah has not authorized? Had it not been for ˹prior˺ decree on Judgment, the matter would have certainly been settled between them ˹at once˺. And surely the wrongdoers will suffer a painful punishment.
4294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You will see the wrongdoers fearful ˹of the punishment˺ for what they committed but it will be inevitable for them, whereas those who believe and do good will be in the lush Gardens of Paradise. They will have whatever they desire from their Lord. That is ˹truly˺ the greatest bounty.
4295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That ˹reward˺ is the good news which Allah gives to His servants who believe and do good. Say, ˹O Prophet,˺ "I do not ask you for a reward for this ˹message˺—only honour for ˹our˺ kinship." Whoever earns a good deed, We will increase it in goodness for them. Surely Allah is All-Forgiving, Most Appreciative.
4296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or do they say, "He has fabricated a lie about Allah!"? ˹If you had,˺ Allah would have sealed your heart, if He willed. And Allah wipes out falsehood and establishes the truth by His Words. He certainly knows best what is ˹hidden˺ in the heart.
4297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who accepts repentance from His servants and pardons ˹their˺ sins. And He knows whatever you do.
4298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He responds to those who believe and do good, and increases their reward out of His grace. As for the disbelievers, they will suffer a severe punishment.
4299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Had Allah given abundant provisions to ˹all˺ His servants, they would have certainly transgressed throughout the land. But He sends down whatever He wills in perfect measure. He is truly All-Aware, All-Seeing of His servants.
4300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He is the One Who sends down rain after people have given up hope, spreading out His mercy. He is the Guardian, the Praiseworthy.
4301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And among His signs is the creation of the heavens and the earth, and all living beings He dispersed throughout both. And He is Most Capable of bringing all together whenever He wills.
4302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Whatever affliction befalls you is because of what your own hands have committed. And He pardons much.
4303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You can never escape ˹Him˺ on earth, nor do you have any protector or helper besides Allah.
4304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And among His signs are the ships like mountains ˹sailing˺ in the sea.
4305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If He wills, He can calm the wind, leaving the ships motionless on the water. Surely in this are signs for whoever is steadfast, grateful.
4306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or He can wreck the ships for what the people have committed—though He forgives much—
4307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        so those who dispute about Our signs may know that they have no refuge.
4308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whatever ˹pleasure˺ you have been given is ˹no more than a fleeting˺ enjoyment of this worldly life. But what is with Allah is far better and more lasting for those who believe and put their trust in their Lord;
4309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             who avoid major sins and shameful deeds, and forgive when angered;
4310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who respond to their Lord, establish prayer, conduct their affairs by mutual consultation, and donate from what We have provided for them;
4311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and who enforce justice when wronged.
4312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The reward of an evil deed is its equivalent. But whoever pardons and seeks reconciliation, then their reward is with Allah. He certainly does not like the wrongdoers.
4313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There is no blame on those who enforce justice after being wronged.
4314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Blame is only on those who wrong people and transgress in the land unjustly. It is they who will suffer a painful punishment.
4315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And whoever endures patiently and forgives—surely this is a resolve to aspire to.
4316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And whoever Allah leaves to stray will have no guide after Him. You will see the wrongdoers, when they face the torment, pleading, "Is there any way back ˹to the world˺?"
4317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And you will see them exposed to the Fire, fully humbled out of disgrace, stealing glances ˹at it˺. And the believers will say, "The ˹true˺ losers are those who have lost themselves and their families on Judgment Day." The wrongdoers will certainly be in everlasting torment.
4318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They will have no protectors to help them against Allah. And whoever Allah leaves to stray, for them there is no way.
4319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Respond to your Lord before the coming of a Day from Allah that cannot be averted. There will be no refuge for you then, nor ˹grounds for˺ denial ˹of sins˺.
4320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if they turn away, We have not sent you ˹O Prophet˺ as a keeper over them. Your duty is only to deliver ˹the message˺. And indeed, when We let someone taste a mercy from Us, they become prideful ˹because˺ of it. But when afflicted with evil because of what their hands have done, then one becomes totally ungrateful.
4321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He creates whatever He wills. He blesses whoever He wills with daughters, and blesses whoever He wills with sons,
4322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      or grants both, sons and daughters, ˹to whoever He wills˺, and leaves whoever He wills infertile. He is indeed All-Knowing, Most Capable.
4323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is not ˹possible˺ for a human being to have Allah communicate with them, except through inspiration, or from behind a veil, or by sending a messenger-angel to reveal whatever He wills by His permission. He is surely Most High, All-Wise.
4324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And so We have sent to you ˹O Prophet˺ a revelation by Our command. You did not know of ˹this˺ Book and faith ˹before˺. But We have made it a light, by which We guide whoever We will of Our servants. And you are truly leading ˹all˺ to the Straight Path—
4325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            the Path of Allah, to Whom belongs whatever is in the heavens and whatever is on the earth. Surely to Allah all matters will return ˹for judgment˺.
4326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             By the clear Book!
4328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Certainly, We have made it a Quran in Arabic so perhaps you will understand.
4329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And indeed, it is—in the Master Record with Us—highly esteemed, rich in wisdom.
4330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Should We then turn the ˹Quranic˺ Reminder away from you ˹simply˺ because you have been a transgressing people?
4331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Imagine˺ how many prophets We sent to those ˹destroyed˺ before!
4332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But no prophet ever came to them without being mocked.
4333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So We destroyed those who were far mightier than these ˹Meccans˺. The examples of ˹their˺ predecessors have ˹already˺ been related.
4334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If you ask them ˹O Prophet˺ who created the heavens and the earth, they will certainly say, "The Almighty, All-Knowing did."
4335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹He is the One˺ Who has laid out the earth for you, and set in it pathways for you so that you may find your way.
4336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ˹He is the One˺ Who sends down rain from the sky in perfect measure, with which We give life to a lifeless land. And so will you be brought forth ˹from the grave˺.
4337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹He is the One˺ Who created all ˹things in˺ pairs, and made for you ships and animals to ride
4338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that you may sit firmly on their backs, and remember your Lord’s blessings once you are settled on them, saying, "Glory be to the One Who has subjected these for us, for we could have never done so ˹on our own˺.
4339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And surely to our Lord we will ˹all˺ return."
4340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Still the pagans have made some of His creation out to be a part of Him. Indeed, humankind is clearly ungrateful.
4341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Has He taken ˹angels as His˺ daughters from what He created, and favoured you ˹O pagans˺ with sons?
4342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whenever one of them is given the good news of what they attribute to the Most Compassionate, his face grows gloomy, as he suppresses his rage.
4343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Do they attribute to Him˺ those who are brought up in fineries and are not commanding in disputes?
4344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Still they have labelled the angels, who are servants of the Most Compassionate, as female. Did they witness their creation? Their statement will be recorded, and they will be questioned!
4345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they argue, "Had the Most Compassionate willed, we would have never worshipped them." They have no knowledge ˹in support˺ of this ˹claim˺. They do nothing but lie.
4346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or have We given them a Book ˹for proof˺, before this ˹Quran˺, to which they are holding firm?
4347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In fact, they say, "We found our forefathers following a ˹particular˺ way, and we are following in their footsteps."
4348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Similarly, whenever We sent a warner to a society before you ˹O Prophet˺, its ˹spoiled˺ elite would say, "We found our forefathers following a ˹particular˺ way, and we are walking in their footsteps."
4349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Each ˹warner˺ asked, "Even if what I brought you is better guidance than what you found your forefathers practicing?" They replied, "We totally reject whatever you have been sent with."
4350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So We inflicted punishment upon them. See then what was the fate of the deniers!
4351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Remember, O  Prophet˺ when Abraham declared to his father and his people, "I am totally free of whatever ˹gods˺ you worship,
4352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                except the One Who originated me, and He will surely guide me."
4353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he left this enduring declaration among his descendants, so they may ˹always˺ turn back ˹to Allah˺.
4354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In fact, I had allowed enjoyment for these ˹Meccans˺ and their forefathers, until the truth came to them along with a messenger making things clear.
4355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹But˺ when the truth came to them, they said, "This is magic, and we totally reject it."
4356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they exclaimed, "If only this Quran was revealed to a great man from ˹one of˺ the two cities!"
4357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is it they who distribute your Lord’s mercy? We ˹alone˺ have distributed their ˹very˺ livelihood among them in this worldly life and raised some of them in rank above others so that some may employ others in service. ˹But˺ your Lord’s mercy is far better than whatever ˹wealth˺ they amass.
4358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Were it not that people might ˹be tempted to˺ become one community ˹of disbelievers˺, We would have supplied the homes of ˹only˺ those who disbelieve in the Most Compassionate with silver roofs and ˹silver˺ stairways to ascend,
4359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           as well as ˹silver˺ gates and thrones to recline on,
4360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and ornaments ˹of gold˺. Yet all this is no more than a ˹fleeting˺ enjoyment in this worldly life. ˹But˺ the Hereafter with your Lord is ˹only˺ for those mindful ˹of Him˺.
4361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And whoever turns a blind eye to the Reminder of the Most Compassionate, We place at the disposal of each a devilish one as their close associate,
4362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                who will certainly hinder them from the ˹Right˺ Way while they think they are ˹rightly˺ guided.
4363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But when such a person comes to Us, one will say ˹to their associate˺, "I wish you were as distant from me as the east is from the west! What an evil associate ˹you were˺!"
4364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹It will be said to both,˺ "Since you all did wrong, sharing in the punishment will be of no benefit to you this Day."
4365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Can you make the deaf hear, or guide the blind or those clearly astray?
4366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Even if We take you away ˹from this world˺, We will surely inflict punishment upon them.
4367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or if We show you what We threaten them with, We certainly have full power over them.
4368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So hold firmly to what has been revealed to you ˹O Prophet˺. You are truly on the Straight Path.
4369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Surely this ˹Quran˺ is a glory for you and your people. And you will ˹all˺ be questioned ˹about it˺.
4370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ask ˹the followers of˺ the messengers that We already sent before you if We ˹ever˺ appointed ˹other˺ gods to be worshipped besides the Most Compassionate.
4371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We sent Moses with Our signs to Pharaoh and his chiefs, and he said: "I am a messenger of the Lord of all worlds."
4372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But as soon as he came to them with Our signs, they laughed at them,
4373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            although every sign We showed them was greater than the one before.
4374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Then˺ they pleaded, "O ˹mighty˺ magician! Pray to your Lord on our behalf, by virtue of the covenant He made with you. We will certainly accept guidance."
4375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But as soon as We removed the torments from them, they broke their promise.
4376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Pharaoh called out to his people, boasting, "O my people! Am I not sovereign over Egypt as well as ˹all˺ these streams flowing at my feet? Can you not see?
4377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Am I not better than this nobody who can hardly express himself?
4378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Why then have no golden bracelets ˹of kingship˺ been granted to him or angels come with him as escorts!"
4379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And so he fooled his people, and they obeyed him. They were truly a rebellious people.
4380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So when they enraged Us, We inflicted punishment upon them, drowning them all.
4381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We made them an example and a lesson for those after them.
4382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When the son of Mary was cited as an example ˹in argument˺, your people ˹O Prophet˺ broke into ˹joyful˺ applause.
4383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They exclaimed, "Which is better: our gods or Jesus?" They cite him only to argue. In fact, they are a people prone to dispute.
4384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He was only a servant We showed favour to, and made as an example for the Children of Israel.
4385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had We willed, We could have easily replaced you ˹all˺ with angels, succeeding one another on earth.
4386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And his ˹second˺ coming is truly a sign for the Hour. So have no doubt about it, and follow me. This is the Straight Path.
4387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And do not let Satan hinder you, ˹for˺ he is certainly your sworn enemy.
4388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When Jesus came with clear proofs, he declared, "I have come to you with wisdom, and to clarify to you some of what you differ about. So fear Allah, and obey me.
4389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely Allah ˹alone˺ is my Lord and your Lord, so worship Him ˹alone˺. This is the Straight Path."
4390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Yet their ˹various˺ groups have differed among themselves ˹about him˺, so woe to the wrongdoers when they face the torment of a painful Day!
4391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Are they waiting for the Hour to take them by surprise when they least expect ˹it˺?
4392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Close friends will be enemies to one another on that Day, except the righteous,
4393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹who will be told,˺ "O My servants! There is no fear for you Today, nor will you grieve—
4394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹those˺ who believed in Our signs and ˹fully˺ submitted ˹to Us˺.
4395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enter Paradise, you and your spouses, rejoicing."
4396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Golden trays and cups will be passed around to them. There will be whatever the souls desire and the eyes delight in. And you will be there forever.
4397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That is the Paradise which you will be awarded for what you used to do.
4398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There you will have abundant fruit to eat from.
4399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, the wicked will be in the torment of Hell forever.
4400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It will never be lightened for them, and there they will be overwhelmed with despair.
4401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We did not wrong them, but it was they who were the wrongdoers.
4402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They will cry, "O Malik! Let your Lord finish us off." He will answer, "You are definitely here to stay."
4403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We certainly brought the truth to you, but most of you were resentful of the truth.
4404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or have they mastered some ˹evil˺ plan? Then We ˹too˺ are surely planning.
4405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or do they think that We do not hear their ˹evil˺ thoughts and secret talks? Yes ˹We do˺! And Our messenger-angels are in their presence, recording ˹it all˺.
4406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "If the Most Compassionate ˹really˺ had offspring, I would be the first worshipper."
4407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Glorified is the Lord of the heavens and the earth, the Lord of the Throne, far above what they claim.
4408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been warned of.
4409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It is He Who is ˹the only˺ God in the heavens and ˹the only˺ God on the earth. For He is the All-Wise, All-Knowing.
4410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Blessed is the One to Whom belongs the kingdom of the heavens and the earth and everything in between! With Him ˹alone˺ is the knowledge of the Hour. And to Him you will ˹all˺ be returned.
4411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹But˺ those ˹objects of worship˺ they invoke besides Him have no power to intercede, except those who testify to the truth knowingly.
4412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If you ask them ˹O Prophet˺ who created them, they will certainly say, "Allah!" How can they then be deluded ˹from the truth˺?
4413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Allah is Aware of˺ the Prophet’s cry: "O my Lord! Indeed, these are a people who persist in disbelief."
4414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So bear with them and respond with peace. They will soon come to know.
4415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             By the clear Book!
4417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, We sent it down on a blessed night, for We always warn ˹against evil˺.
4418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               On that night every matter of wisdom is ordained
4419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     by a command from Us, for We have always sent ˹messengers˺
4420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   as a mercy from your Lord. He ˹alone˺ is truly the All-Hearing, All-Knowing—
4421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the Lord of the heavens and the earth and everything in between, if only you had sure faith.
4422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   There is no god ˹worthy of worship˺ except Him. He ˹alone˺ gives life and causes death. ˹He is˺ your Lord, and the Lord of your forefathers.
4423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In fact, they are in doubt, amusing themselves.
4424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wait then ˹O Prophet˺ for the day ˹when˺ the sky will be veiled in haze, clearly visible,
4425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          overwhelming the people. ˹They will cry,˺ "This is a painful torment.
4426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Our Lord! Remove ˹this˺ torment from us, ˹and˺ we will certainly believe."
4427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How can they be reminded when a messenger has already come to them, making things clear,
4428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         then they turned away from him, saying, "A madman, taught by others!"?
4429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, We will remove ˹that˺ torment for a while, and you ˹Meccans˺ will return ˹to disbelief˺.
4430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Then˺ on the Day We will deal ˹you˺ the fiercest blow, We will surely inflict punishment.
4431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, before them We tested Pharaoh’s people: a noble messenger came to them,
4432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹proclaiming,˺ "Hand over the servants of Allah to me. I am truly a trustworthy messenger to you.
4433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And do not be arrogant with Allah. I have certainly come to you with a compelling proof.
4434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And indeed, I seek refuge with my Lord and your Lord so you do not stone me ˹to death˺.
4435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹But˺ if you do not believe me, then let me be."
4436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ultimately, he cried out to his Lord, "These are a wicked people!"
4437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Allah responded,˺ "Leave with My servants at night, for you will surely be pursued.
4438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And leave the sea parted, for they are certainly an army bound to drown."
4439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Imagine˺ how many gardens and springs the tyrants left behind,
4440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            as well as ˹various˺ crops and splendid residences,
4441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and luxuries which they fully enjoyed.
4442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So it was. And We awarded it ˹all˺ to another people.
4443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Neither heaven nor earth wept over them, nor was their fate delayed.
4444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We certainly delivered the Children of Israel from the humiliating torment
4445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             of Pharaoh. He was truly a tyrant, a transgressor.
4446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And indeed, We chose the Israelites knowingly above the others.
4447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And We showed them signs in which there was a clear test.
4448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, these ˹Meccans˺ say,
4449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    "There is nothing beyond our first death, and we will never be resurrected.
4450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bring ˹back˺ our forefathers, if what you say is true."
4451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Are they superior to the people of Tubba’ and those before them? We destroyed them ˹all˺, ˹for˺ they were truly wicked.
4452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               We did not create the heavens and the earth and everything in between for sport.
4453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We only created them for a purpose, but most of these ˹pagans˺ do not know.
4454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely the Day of ˹Final˺ Decision is the time appointed for all—
4455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the Day no kith or kin will be of benefit to another whatsoever, nor will they be helped,
4456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    except those shown mercy by Allah. He is truly the Almighty, Most Merciful.
4457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely ˹the fruit of˺ the tree of Zaqqûm
4458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              will be the food of the evildoer.
4459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Like molten metal, it will boil in the bellies
4460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 like the boiling of hot water.
4461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹It will be said,˺ "Seize them and drag them into the depths of the Hellfire.
4462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then pour over their heads the torment of boiling water."
4463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹The wicked will be told,˺ "Taste this. You mighty, noble one!
4464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is truly what you ˹all˺ used to doubt."
4465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, the righteous will be in a secure place,
4466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      amid Gardens and springs,
4467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     dressed in fine silk and rich brocade, facing one another.
4468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So it will be. And We will pair them to maidens with gorgeous eyes.
4469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There they will call for every fruit in serenity.
4470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       There they will never taste death, beyond the first death. And He will protect them from the punishment of the Hellfire—
4471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     as ˹an act of˺ grace from your Lord. That is ˹truly˺ the ultimate triumph.
4472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We have made this ˹Quran˺ easy in your own language ˹O Prophet˺ so perhaps they will be mindful.
4473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wait then! They too are certainly waiting.
4474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The revelation of this Book is from Allah—the Almighty, All-Wise.
4476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Surely in ˹the creation of˺ the heavens and the earth are signs for the believers.
4477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in your own creation, and whatever living beings He dispersed, are signs for people of sure faith.
4478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ˹in˺ the alternation of the day and the night, the provision sent down from the skies by Allah—reviving the earth after its death—and the shifting of the winds, are signs for people of understanding.
4479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are Allah’s revelations which We recite to you ˹O Prophet˺ in truth. So what message will they believe in after ˹denying˺ Allah and His revelations?
4480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Woe to every sinful liar.
4481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They hear Allah’s revelations recited to them, then persist ˹in denial˺ arrogantly as if they did not hear them. So give them good news of a painful punishment.
4482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And whenever they learn anything of Our revelations, they make a mockery of it. It is they who will suffer a humiliating punishment.
4483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Awaiting them is Hell. Their ˹worldly˺ gains will not be of any benefit to them whatsoever, nor will those protectors they have taken besides Allah. And they will suffer a tremendous punishment.
4484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This ˹Quran˺ is ˹true˺ guidance. And those who deny their Lord’s revelations will suffer the ˹worst˺ torment of agonizing pain.
4485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Allah is the One Who has subjected the sea for you so that ships may sail upon it by His command, and that you may seek His bounty, and that perhaps you will be grateful.
4486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He ˹also˺ subjected for you whatever is in the heavens and whatever is on the earth—all by His grace. Surely in this are signs for people who reflect.
4487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹O Prophet!˺ Tell the believers to forgive those who do not fear Allah’s days ˹of torment˺, so that He will reward each group for what they used to commit.
4488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whoever does good, it is to their own benefit. And whoever does evil, it is to their own loss. Then to your Lord you will ˹all˺ be returned.
4489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, We gave the Children of Israel the Scripture, wisdom, and prophethood; granted them good, lawful provisions; and favoured them above the others.
4490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We ˹also˺ gave them clear commandments regarding ˹their˺ faith. But it was not until knowledge came to them that they differed out of mutual envy. Surely your Lord will judge between them on the Day of Judgment regarding their differences.
4491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now We have set you ˹O Prophet˺ on the ˹clear˺ Way of faith. So follow it, and do not follow the desires of those who do not know ˹the truth˺.
4492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They certainly can be of no benefit to you against Allah whatsoever. Surely the wrongdoers are patrons of each other, whereas Allah is the Patron of the righteous.
4493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This ˹Quran˺ is an insight for humanity—a guide and mercy for people of sure faith.
4494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Or do those who commit evil deeds ˹simply˺ think that We will make them equal—in their life and after their death—to those who believe and do good? How wrong is their judgment!
4495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For Allah created the heavens and the earth for a purpose, so that every soul may be paid back for what it has committed. And none will be wronged.
4496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have you seen ˹O Prophet˺ those who have taken their own desires as their god? ˹And so˺ Allah left them to stray knowingly, sealed their hearing and hearts, and placed a cover on their sight. Who then can guide them after Allah? Will you ˹all˺ not then be mindful?
4497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they argue, "There is nothing beyond our worldly life. We die; others are born. And nothing destroys us but ˹the passage of˺ time." Yet they have no knowledge ˹in support˺ of this ˹claim˺. They only speculate.
4498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whenever Our clear revelations are recited to them, their only argument is to say: "Bring our forefathers back, if what you say is true!"
4499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, ˹O Prophet,˺ "˹It is˺ Allah ˹Who˺ gives you life, then causes you to die, then will gather you ˹all˺ on the Day of Judgment, about which there is no doubt. But most people do not know."
4500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. On the Day the Hour will be established, the people of falsehood will then be in ˹total˺ loss.
4501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And you will see every faith-community on its knees. Every community will be summoned to its record ˹of deeds˺. ˹They all will be told,˺ "This Day you will be rewarded for what you used to do.
4502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This record of Ours speaks the truth about you. Indeed, We always had your deeds recorded ˹by the angels˺."
4503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for those who believed and did good, their Lord will admit them into His mercy. That is ˹truly˺ the absolute triumph.
4504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And as for those who disbelieved, ˹they will be told,˺ "Were My revelations not recited to you, yet you acted arrogantly and were a wicked people?
4505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whenever it was said ˹to you˺, ‘Surely Allah’s promise ˹of judgment˺ is true and there is no doubt about the Hour,’ you said ˹mockingly˺, ‘We do not know what the Hour is! We think it is no more than speculation, and we are not convinced ˹that it will ever come˺.’"
4506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the evil ˹consequences˺ of their deeds will unfold before them, and they will be overwhelmed by what they used to ridicule.
4507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It will be said, "This Day We will neglect you as you neglected the meeting of this Day of yours! Your home will be the Fire, and you will have no helpers.
4508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This is because you made a mockery of Allah’s revelations, and were deluded by ˹your˺ worldly life." So ˹from˺ that Day ˹on˺ they will not be taken out of the Fire, nor will they be allowed to appease ˹their Lord˺.
4509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So all praise is for Allah—Lord of the heavens and Lord of the earth, Lord of all worlds.
4510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   To Him belongs ˹all˺ Majesty in the heavens and the earth. And He is the Almighty, All-Wise.
4511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ha-Mĩm.
4512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The revelation of this Book is from Allah—the Almighty, All-Wise.
4513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We only created the heavens and the earth and everything in between for a purpose and an appointed term. Yet the disbelievers are turning away from what they have been warned about.
4514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ask ˹them, O  Prophet˺, "Have you considered whatever ˹idols˺ you invoke besides Allah? Show me what they have created on earth! Or do they have a share in ˹the creation of˺ the heavens? Bring me a scripture ˹revealed˺ before this ˹Quran˺ or a shred of knowledge, if what you say is true."
4515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And who could be more astray than those who call upon others besides Allah—˹others˺ that cannot respond to them until the Day of Judgment, and are ˹even˺ unaware of their calls?
4516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when ˹such˺ people will be gathered together, those ˹gods˺ will be their enemies and will disown their worship.
4517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whenever Our clear revelations are recited to them, the disbelievers say of the truth when it has come to them, "This is pure magic."
4518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or do they say, "He has fabricated this ˹Quran˺!"? Say, ˹O Prophet,˺ "If I have done so, then there is nothing whatsoever you can do to save me from Allah. He knows best what ˹slurs˺ you indulge about it. Sufficient is He as a Witness between you and me. And He is the All-Forgiving, Most Merciful."
4519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, "I am not the first messenger ever sent, nor do I know what will happen to me or you. I only follow what is revealed to me. And I am only sent with a clear warning."
4520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ask ˹them, O  Prophet˺, "Consider if this ˹Quran˺ is ˹truly˺ from Allah and you deny it, and a witness from the Children of Israel attests to it and then believes, whereas you act arrogantly. Surely Allah does not guide the wrongdoing people."
4521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The disbelievers say of the believers, "Had it been ˹something˺ good, they would not have beaten us to it." Now since they reject its guidance, they will say, "˹This is˺ an ancient fabrication!"
4522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And before this ˹Quran˺ the Book of Moses was ˹revealed as˺ a guide and mercy. And this Book is a confirmation, in the Arabic tongue, to warn those who do wrong, and as good news to those who do good.
4523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely those who say, "Our Lord is Allah," and then remain steadfast—there will be no fear for them, nor will they grieve.
4524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is they who will be the residents of Paradise, staying there forever, as a reward for what they used to do.
4525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have commanded people to honour their parents. Their mothers bore them in hardship and delivered them in hardship. Their ˹period of˺ bearing and weaning is thirty months. In time, when the child reaches their prime at the age of forty, they pray, "My Lord! Inspire me to ˹always˺ be thankful for Your favours which You blessed me and my parents with, and to do good deeds that please You. And instil righteousness in my offspring. I truly repent to You, and I truly submit ˹to Your Will˺."
4526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It is from these ˹people˺ that We will accept the good they did, and overlook their misdeeds—along with the residents of Paradise, ˹in fulfilment of˺ the true promise they have been given.
4527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But some scold their parents, "Enough with you! Are you warning me that I will be brought forth ˹from the grave˺, while many generations had already perished before me ˹for good˺?" The parents cry to Allah for help, ˹and warn their child,˺ "Pity you. Have faith! Surely Allah’s promise is true." But the deniers insist, "This is nothing but ancient fables."
4528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the ones against whom the fate of earlier communities of jinn and humans has been justified, ˹for˺ they were truly losers.
4529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Each ˹of the two groups˺ will be ranked according to what they have done so He may fully reward all. And none will be wronged.
4530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Watch for˺ the Day ˹when˺ the disbelievers will be exposed to the Fire. ˹They will be told,˺ "You ˹already˺ exhausted your ˹share of˺ pleasures during your worldly life, and ˹fully˺ enjoyed them. So Today you will be rewarded with the torment of disgrace for your arrogance throughout the land with no right, and for your rebelliousness."
4531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And remember the brother of ’Ȃd, when he warned his people, who inhabited the sand-hills—there were certainly warners before and after him—˹saying,˺ "Worship none but Allah. I truly fear for you the torment of a tremendous day."
4532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They argued, "Have you come to turn us away from our gods? Bring us then whatever you threaten us with, if what you say is true."
4533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He responded, "The knowledge ˹of its time˺ is only with Allah. I only convey to you what I have been sent with. But I can see that you are a people acting ignorantly."
4534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then when they saw the torment as a ˹dense˺ cloud approaching their valleys, they said ˹happily˺, "This is a cloud bringing us rain." ˹But Hûd replied,˺ "No, it is what you sought to hasten: a ˹fierce˺ wind carrying a painful punishment!"
4535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It destroyed everything by the command of its Lord, leaving nothing visible except their ruins. This is how We reward the wicked people.
4536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, We had established them in a way We have not established you ˹Meccans˺. And We gave them hearing, sight, and intellect. But neither their hearing, sight, nor intellect were of any benefit to them whatsoever, since they persisted in denying Allah’s signs. And ˹so˺ they were overwhelmed by what they used to ridicule.
4537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We certainly destroyed the societies around you after having varied the signs so perhaps they would return ˹to the Right Path˺.
4538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Why then did those ˹idols˺ they took as gods—hoping to get closer ˹to Him˺—not come to their aid? Instead, they failed them. That is ˹the result of˺ their lies and their fabrications.
4539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Remember, O  Prophet,˺ when We sent a group of jinn your way to listen to the Quran. Then, upon hearing it, they said ˹to one another˺, "Listen quietly!" Then when it was over, they returned to their fellow jinn as warners.
4540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They declared, "O our fellow jinn! We have truly heard a scripture revealed after Moses, confirming what came before it. It guides to the truth and the Straight Way.
4541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O  our fellow jinn! Respond to the caller of Allah and believe in him, He will forgive your sins and protect you from a painful punishment.
4542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And whoever does not respond to the caller of Allah will have no escape on earth, nor will they have any protectors against Him. It is they who are clearly astray."
4543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do they not realize that Allah, Who created the heavens and the earth and did not tire in creating them, is able to give life to the dead? Yes ˹indeed˺! He is certainly Most Capable of everything.
4544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And on the Day the disbelievers will be exposed to the Fire, ˹they will be asked,˺ "Is this ˹Hereafter˺ not the truth?" They will cry, "Absolutely, by our Lord!" It will be said, "Then taste the punishment for your disbelief."
4545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So endure patiently, as did the Messengers of Firm Resolve. ˹This is˺ a ˹sufficient˺ warning! Then, will anyone be destroyed except the rebellious people?
4546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who disbelieve and hinder ˹others˺ from the Way of Allah, He will render their deeds void.
4547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     As for those who believe, do good, and have faith in what has been revealed to Muhammad—which is the truth from their Lord—He will absolve them of their sins and improve their condition.
4548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is because the disbelievers follow falsehood, while the believers follow the truth from their Lord. This is how Allah shows people their true state ˹of faith˺.
4549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So when you meet the disbelievers ˹in battle˺, strike ˹their˺ necks until you have thoroughly subdued them, then bind them firmly. Later ˹free them either as˺ an act of grace or by ransom until the war comes to an end. So will it be. Had Allah willed, He ˹Himself˺ could have inflicted punishment on them. But He does ˹this only to˺ test some of you by means of others. And those who are martyred in the cause of Allah, He will never render their deeds void.
4550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He will guide them ˹to their reward˺, improve their condition,
4551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and admit them into Paradise, having made it known to them.
4552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O believers! If you stand up for Allah, He will help you and make your steps firm.
4553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As for the disbelievers, may they be doomed and may He render their deeds void.
4554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That is because they detest what Allah has revealed, so He has rendered their deeds void.
4555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have they not travelled throughout the land to see what was the end of those before them? Allah annihilated them, and a similar fate awaits the disbelievers.
4556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is because Allah is the Patron of the believers while the disbelievers have no patron.
4557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely Allah will admit those who believe and do good into Gardens under which rivers flow. As for the disbelievers, they enjoy themselves and feed like cattle. But the Fire will be their home.
4558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Imagine, O  Prophet,˺ how many societies We destroyed that were far superior in might than your society—which drove you out—and there was none to help them!
4559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Can those ˹believers˺ who stand on clear proof from their Lord be like those whose evil deeds are made appealing to them and ˹only˺ follow their desires?
4560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The description of the Paradise promised to the righteous is that in it are rivers of fresh water, rivers of milk that never changes in taste, rivers of wine delicious to drink, and rivers of pure honey. There they will ˹also˺ have all kinds of fruit, and forgiveness from their Lord. ˹Can they be˺ like those who will stay in the Fire forever, left to drink boiling water that will tear apart their insides?
4561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There are some of them who listen to you ˹O Prophet˺, but when they depart from you, they say ˹mockingly˺ to those ˹believers˺ gifted with knowledge, "What did he just say?" These are the ones whose hearts Allah has sealed and who ˹only˺ follow their desires.
4562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As for those who are ˹rightly˺ guided, He increases them in guidance and blesses them with righteousness.
4563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Are they only waiting for the Hour to take them by surprise? Yet ˹some of˺ its signs have already come. Once it actually befalls them, will it not be too late to be mindful?
4564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So, know ˹well, O  Prophet,˺ that there is no god ˹worthy of worship˺ except Allah. And seek forgiveness for your shortcomings and for ˹the sins of˺ the believing men and women. For Allah ˹fully˺ knows your movements and places of rest ˹O people˺.
4565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the believers say, "If only a sûrah was revealed ˹allowing self-defence˺!" Yet when a precise sûrah is revealed, in which fighting is ˹explicitly˺ mentioned, you see those with sickness in their hearts staring at you like someone in the throes of death. It would have been better for them
4566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              to obey and speak rightly. Then when fighting was ordained, it surely would have been better for them if they were true to Allah.
4567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now if you ˹hypocrites˺ turn away, perhaps you would then spread corruption throughout the land and sever your ˹ties of˺ kinship!
4568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the ones who Allah has condemned, deafening them and blinding their eyes.
4569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Do they not then reflect on the Quran? Or are there locks upon their hearts?
4570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, those who relapse ˹into disbelief˺ after ˹true˺ guidance has become clear to them, ˹it is˺ Satan ˹that˺ has tempted them, luring them with false hopes.
4571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That is because they said ˹privately˺ to those who ˹also˺ detest what Allah has revealed, "We will obey you in some matters." But Allah ˹fully˺ knows what they are hiding.
4572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then how ˹horrible˺ will it be when the angels take their souls, beating their faces and backs!
4573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is because they follow whatever displeases Allah and hate whatever pleases Him, so He has rendered their deeds void.
4574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or do those with sickness in their hearts think that Allah will not ˹be able to˺ expose their malice?
4575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Had We willed, We could have truly shown them to you ˹O Prophet˺, and you would have certainly recognized them by their appearance. But you will surely recognize them by their tone of speech. And Allah ˹fully˺ knows your doings ˹O people˺.
4576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We will certainly test you ˹believers˺ until We prove those of you who ˹truly˺ struggle ˹in Allah’s cause˺ and remain steadfast, and reveal how you conduct yourselves.
4577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those who disbelieve, hinder ˹others˺ from the Way of Allah, and defy the Messenger after ˹true˺ guidance has become clear to them; they will not harm Allah in the least, but He will render their deeds void.
4578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Obey Allah and obey the Messenger, and do not let your deeds be in vain.
4579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely those who disbelieve, hinder ˹others˺ from the Way of Allah, and then die as disbelievers; Allah will never forgive them.
4580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So do not falter or cry for peace, for you will have the upper hand and Allah is with you. And He will never let your deeds go to waste.
4581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This worldly life is no more than play and amusement. But if you are faithful and mindful ˹of Allah˺, He will grant you your ˹full˺ reward, and will not ask you ˹to donate all˺ your wealth.
4582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If He were to do so and pressure you, you would withhold and He would bring out your resentment.
4583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Here you are, being invited to donate ˹a little˺ in the cause of Allah. Still some of you withhold. And whoever does so, it is only to their own loss. For Allah is the Self-Sufficient, whereas you stand in need ˹of Him˺. If you ˹still˺ turn away, He will replace you with another people. And they will not be like you.
4584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, We have granted you a clear triumph ˹O Prophet˺
4585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           so that Allah may forgive you for your past and future shortcomings, perfect His favour upon you, guide you along the Straight Path,
4586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and so that Allah will help you tremendously.
4587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is the One Who sent down serenity upon the hearts of the believers so that they may increase even more in their faith. To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is All-Knowing, All-Wise.
4588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So He may admit believing men and women into Gardens under which rivers flow—to stay there forever—and absolve them of their sins. And that is a supreme achievement in the sight of Allah.
4589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also ˹so that˺ He may punish hypocrite men and women and polytheistic men and women, who harbour evil thoughts of Allah. May ill-fate befall them! Allah is displeased with them. He has condemned them and prepared for them Hell. What an evil destination!
4590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To Allah ˹alone˺ belong the forces of the heavens and the earth. And Allah is Almighty, All-Wise.
4591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, ˹O Prophet,˺ We have sent you as a witness, a deliverer of good news, and a warner,
4592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              so that you ˹believers˺ may have faith in Allah and His Messenger, support and honour him, and glorify Allah morning and evening.
4593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely those who pledge allegiance to you ˹O Prophet˺ are actually pledging allegiance to Allah. Allah’s Hand is over theirs. Whoever breaks their pledge, it will only be to their own loss. And whoever fulfils their pledge to Allah, He will grant them a great reward.
4594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The nomadic Arabs, who stayed behind, will say to you ˹O Prophet˺, "We were preoccupied with our wealth and families, so ask for forgiveness for us." They say with their tongues what is not in their hearts. Say, "Who then can stand between you and Allah in any way, if He intends harm or benefit for you? In fact, Allah is All-Aware of what you do.
4595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The truth is: you thought that the Messenger and the believers would never return to their families again. And that was made appealing in your hearts. You harboured evil thoughts ˹about Allah˺, and ˹so˺ became a doomed people."
4596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And whoever does not believe in Allah and His Messenger, then We surely have prepared for the disbelievers a blazing Fire.
4597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To Allah ˹alone˺ belongs the kingdom of the heavens and the earth. He forgives whoever He wills, and punishes whoever He wills. And Allah is All-Forgiving, Most Merciful.
4598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who stayed behind will say, when you ˹believers˺ set out to take the spoils of war, "Let us accompany you." They wish to change Allah’s promise. The truth is: they can hardly comprehend.
4599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Say to nomadic Arabs, who stayed behind, "You will be called ˹to fight˺ against a people of great might, who you will fight unless they submit. If you then obey, Allah will grant you a fine reward. But if you turn away as you did before, He will inflict upon you a painful punishment."
4600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There is no blame on the blind, or the disabled, or the sick ˹for staying behind˺. And whoever obeys Allah and His Messenger will be admitted by Him into Gardens under which rivers flow. But whoever turns away will be subjected by Him to a painful punishment.
4601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, Allah was pleased with the believers when they pledged allegiance to you ˹O Prophet˺ under the tree. He knew what was in their hearts, so He sent down serenity upon them and rewarded them with a victory at hand,
4602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and many spoils of war they will gain. For Allah is Almighty, All-Wise.
4603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah has promised you ˹believers˺ abundant spoils, which you will gain, so He hastened this ˹truce˺ for you. And He has held people’s hands back from ˹harming˺ you, so it may be a sign for the believers, and so He may guide you along the Straight Path.
4604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ˹there are˺ other gains which are beyond your reach that Allah is keeping in store ˹for you˺. For Allah is Most Capable of everything.
4605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If the disbelievers were to fight you, they would certainly flee. Then they would never find any protector or helper.
4606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹This is˺ Allah’s way, already long established ˹in the past˺. And you will find no change in Allah’s way.
4607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He is the One Who held back their hands from you and your hands from them in the valley of ˹hudaibiyah, near˺ Mecca, after giving you the upper hand over ˹a group of˺ them. And Allah is All-Seeing of what you do.
4608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They are the ones who persisted in disbelief and hindered you from the Sacred Mosque, preventing the sacrificial animals from reaching their destination. Had those ˹unknown˺ believers stood apart, We would have certainly inflicted a painful punishment on the disbelievers.
4609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Remember˺ when the disbelievers had filled their hearts with pride—the pride of ˹pre-Islamic˺ ignorance for they were better entitled and more worthy of it. And Allah has ˹perfect˺ knowledge of all things.
4610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, Allah will fulfil His Messenger’s vision in all truth: Allah willing, you will surely enter the Sacred Mosque, in security—˹some with˺ heads shaved and ˹others with˺ hair shortened—without fear.
4611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who has sent His Messenger with ˹right˺ guidance and the religion of truth, making it prevail over all others. And sufficient is Allah as a Witness.
4612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Muhammad is the Messenger of Allah. And those with him are firm with the disbelievers To those of them who believe and do good, Allah has promised forgiveness and a great reward.
4613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          O believers! Do not proceed ˹in any matter˺ before ˹a decree from˺ Allah and His Messenger. And fear Allah. Surely Allah is All-Hearing, All-Knowing.
4614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O believers! Do not raise your voices above the voice of the Prophet, nor speak loudly to him as you do to one another, or your deeds will become void while you are unaware.
4615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, those who lower their voices in the presence of Allah’s Messenger are the ones whose hearts Allah has refined for righteousness. They will have forgiveness and a great reward.
4616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Indeed, most of those who call out to you ˹O Prophet˺ from outside ˹your˺ private quarters have no understanding ˹of manners˺.
4617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had they been patient until you could come out to them, it would have certainly been better for them. And Allah is All-Forgiving, Most Merciful.
4618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 O believers, if an evildoer brings you any news, verify ˹it˺ so you do not harm people unknowingly, becoming regretful for what you have done.
4619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And keep in mind that Allah’s Messenger is ˹still˺ in your midst. If he were to yield to you in many matters, you would surely suffer ˹the consequences˺. But Allah has endeared faith to you, making it appealing in your hearts. And He has made disbelief, rebelliousness, and disobedience detestable to you. Those are the ones rightly guided.
4620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹This is˺ a bounty and a blessing from Allah. And Allah is All-Knowing, All-Wise.
4621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if two groups of believers fight each other, then make peace between them. But if one of them transgresses against the other, then fight against the transgressing group until they ˹are willing to˺ submit to the rule of Allah. If they do so, then make peace between both ˹groups˺ in all fairness and act justly. Surely Allah loves those who uphold justice.
4622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The believers are but one brotherhood, so make peace between your brothers. And be mindful of Allah so you may be shown mercy.
4623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not let some ˹men˺ ridicule others, they may be better than them, nor let ˹some˺ women ridicule other women, they may be better than them. Do not defame one another, nor call each other by offensive nicknames. How evil it is to act rebelliously after having faith! And whoever does not repent, it is they who are the ˹true˺ wrongdoers.
4624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O  believers! Avoid many suspicions, ˹for˺ indeed, some suspicions are sinful. And do not spy, nor backbite one another. Would any of you like to eat the flesh of their dead brother? You would despise that! And fear Allah. Surely Allah is ˹the˺ Accepter of Repentance, Most Merciful.
4625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        O humanity! Indeed, We created you from a male and a female, and made you into peoples and tribes so that you may ˹get to˺ know one another. Surely the most noble of you in the sight of Allah is the most righteous among you. Allah is truly All-Knowing, All-Aware.
4626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹Some of˺ the nomadic Arabs say, "We believe." Say, ˹O Prophet,˺ "You have not believed. But say, ‘We have submitted,’ for faith has not yet entered your hearts. But if you obey Allah and His Messenger ˹wholeheartedly˺, He will not discount anything from ˹the reward of˺ your deeds. Allah is truly All-Forgiving, Most Merciful."
4627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The ˹true˺ believers are only those who believe in Allah and His Messenger—never doubting—and strive with their wealth and their lives in the cause of Allah. They are the ones true in faith.
4628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "Do you inform Allah of your faith, when Allah ˹already˺ knows whatever is in the heavens and whatever is on the earth? And Allah has ˹perfect˺ knowledge of all things."
4629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They regard their acceptance of Islam as a favour to you. Tell ˹them, O  Prophet˺, "Do not regard your Islam as a favour to me. Rather, it is Allah Who has done you a favour by guiding you to the faith, if ˹indeed˺ you are faithful.
4630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely Allah knows the unseen of the heavens and earth. And Allah is All-Seeing of what you do."
4631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Qãf. By the glorious Quran!
4632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹All will be resurrected,˺ yet the deniers are astonished that a warner has come to them from among themselves ˹warning of resurrection˺. So the disbelievers say, "This is an astonishing thing!
4633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Will we be returned to life,˺ when we are dead and reduced to dust? Such a return is impossible."
4634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We certainly know what the earth consumes of them ˹after their death˺, and with us is a well-preserved Record.
4635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In fact, they reject the truth when it has come to them, so they are in a confused state.
4636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Have they not then looked at the sky above them: how We built it and adorned it ˹with stars˺, leaving it flawless?
4637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the earth, We spread it out and placed upon it firm mountains, and produced in it every type of pleasant plant—
4638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹all as˺ an insight and a reminder to every servant who turns ˹to Allah˺.
4639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And We send down blessed rain from the sky, bringing forth gardens and grains for harvest,
4640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and towering palm trees ˹loaded˺ with clustered fruit,
4641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹as˺ a provision for ˹Our˺ servants. And with this ˹rain˺ We revive a lifeless land. Similar is the emergence ˹from the graves˺.
4642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Before them, the people of Noah denied ˹the truth,˺ as did the people of the Water-pit, Thamûd,
4643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ’Ȃd, Pharaoh, the kinfolk of Lot,
4644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     the residents of the Forest, Each rejected ˹their˺ messenger, so My warning was fulfilled.
4645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Were We incapable of creating ˹them˺ the first time? In fact, they are in doubt about ˹their˺ re-creation.
4646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, ˹it is˺ We ˹Who˺ created humankind and ˹fully˺ know what their souls whisper to them, and We are closer to them than ˹their˺ jugular vein.
4647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As the two recording-angels—˹one˺ sitting to the right, and ˹the other to˺ the left—note ˹everything˺,
4648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  not a word does a person utter without having a ˹vigilant˺ observer ready ˹to write it down˺.
4649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Ultimately,˺ with the throes of death will come the truth. This is what you were trying to escape!
4650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Trumpet will be blown. This is the Day ˹you were˺ warned of.
4651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Each soul will come forth with an angel to drive it and another to testify.
4652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It will be said to the denier,˺ "You were totally heedless of this. Now We have lifted this veil of yours, so Today your sight is sharp!"
4653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And one’s accompanying-angel will say, "Here is the record ready with me."
4654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹It will be said to both angels,˺ "Throw into Hell every stubborn disbeliever,
4655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 withholder of good, transgressor, and doubter,
4656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   who set up another god with Allah. So cast them into the severe punishment."
4657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One’s ˹devilish˺ associate will say, "Our Lord! I did not make them transgress. Rather, they were far astray ˹on their own˺."
4658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Allah will respond, "Do not dispute in My presence, since I had already given you a warning.
4659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My Word cannot be changed, nor am I unjust to ˹My˺ creation."
4660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹Beware of˺ the Day We will ask Hell, "Are you full ˹yet˺?" And it will respond, "Are there any more?"
4661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Paradise will be brought near to the righteous, not far off.
4662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹And it will be said to them,˺ "This is what you were promised, for whoever ˹constantly˺ turned ˹to Allah˺ and kept up ˹His commandments˺—
4663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              who were in awe of the Most Compassionate without seeing ˹Him˺, and have come with a heart turning ˹only to Him˺.
4664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Enter it in peace. This is the Day of eternal life!"
4665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There they will have whatever they desire, and with Us is ˹even˺ more.
4666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Imagine˺ how many peoples We destroyed before them, who were far mightier than them. Then ˹when the torment came,˺ they ˹desperately˺ sought refuge in the land. ˹But˺ was there any escape?
4667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely in this is a reminder for whoever has a ˹mindful˺ heart and lends an attentive ear.
4668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We created the heavens and the earth and everything in between in six Days,
4669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So be patient ˹O Prophet˺ with what they say. And glorify the praises of your Lord before sunrise and before sunset.
4670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And glorify Him during part of the night and after the prayers.
4671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And listen! On the Day the caller will call out from a near place,
4672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  the Day all will hear the ˹mighty˺ Blast in ˹all˺ truth, that will be the Day of emergence ˹from the graves˺.
4673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               It is certainly We Who give life and cause death. And to Us is the final return.
4674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Beware of˺ the Day the earth will split open, letting them rush forth. That will be an easy gathering for Us.
4675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We know best what they say. And you ˹O Prophet˺ are not ˹there˺ to compel them ˹to believe˺. So remind with the Quran ˹only˺ those who fear My warning.
4676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                By the winds scattering ˹dust˺,
4677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and ˹the clouds˺ loaded with rain,
4678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and ˹the ships˺ gliding with ease,
4679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and ˹the angels˺ administering affairs by ˹Allah’s˺ command!
4680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, what you are promised is true.
4681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the Judgment will certainly come to pass.
4682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹And˺ by the heavens in their marvellous design!
4683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely you are ˹lost˺ in conflicting views ˹regarding the truth˺.
4684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Only those ˹destined to be˺ deluded are turned away from it.
4685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Condemned are the liars—
4686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        those who are ˹steeped˺ in ignorance, totally heedless.
4687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They ask ˹mockingly˺, "When is this Day of Judgment?"
4688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹It is˺ the Day they will be tormented over the Fire.
4689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹They will be told,˺ "Taste your torment! This is what you sought to hasten."
4690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, the righteous will be amid Gardens and springs,
4691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹joyfully˺ receiving what their Lord will grant them. Before this ˹reward˺ they were truly good-doers ˹in the world˺:
4692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   they used to sleep only little in the night,
4693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and pray for forgiveness before dawn.
4694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And in their wealth there was a rightful share ˹fulfilled˺ for the beggar and the poor.
4695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There are ˹countless˺ signs on earth for those with sure faith,
4696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               as there are within yourselves. Can you not see?
4697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In heaven is your sustenance and whatever you are promised.
4698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then by the Lord of heaven and earth! ˹All˺ this is certainly as true as ˹the fact that˺ you can speak!
4699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Has the story of Abraham’s honoured guests reached you ˹O Prophet˺?
4700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Remember˺ when they entered his presence and greeted ˹him with˺, "Peace!" He replied, "Peace ˹be upon you˺!" ˹Then he said to himself,˺ "˹These are˺ an unfamiliar people."
4701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then he slipped off to his family and brought a fat ˹roasted˺ calf,
4702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and placed it before them, asking, "Will you not eat?"
4703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹They did not eat,˺ so he grew fearful of them.
4704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then his wife came forward with a cry, clasping her forehead ˹in astonishment˺, exclaiming, "˹A baby from˺ a barren, old woman!"
4705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They replied, "Such has your Lord decreed. He is truly the All-Wise, All-Knowing."
4706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Later,˺ Abraham asked, "What is your mission, O  messengers?"
4707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They replied, "We have actually been sent to a wicked people,
4708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      to send upon them stones of ˹baked˺ clay,
4709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    marked by your Lord for the transgressors."
4710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then ˹before the torment˺ We evacuated the believers from the city.
4711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But We only found one family that had submitted ˹to Allah˺.
4712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And We have left a sign there ˹as a lesson˺ for those who fear the painful punishment.
4713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And in ˹the story of˺ Moses ˹was another lesson,˺ when We sent him to Pharaoh with compelling proof,
4714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        but Pharaoh was carried away by his power, saying ˹of Moses˺, "A magician or a madman!"
4715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So We seized him and his soldiers, casting them into the sea while he was blameworthy.
4716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And in ˹the story of˺ ’ad ˹was another lesson,˺ when We sent against them the devastating wind.
4717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There was nothing it came upon that it did not reduce to ashes.
4718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in ˹the story of˺ Thamûd ˹was another lesson,˺ when they were told, "Enjoy yourselves ˹only˺ for a ˹short˺ while."
4719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Still they persisted in defying the commands of their Lord, so they were overtaken by a ˹mighty˺ blast while they were looking on.
4720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then they were not able to rise up, nor were they helped.
4721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the people of Noah ˹had also been destroyed˺ earlier. They were truly a rebellious people.
4722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We built the universe with ˹great˺ might, and We are certainly expanding ˹it˺.
4723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the earth, We spread it out. How superbly did We smooth it out!
4724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And We created pairs of all things so perhaps you would be mindful.
4725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So ˹proclaim, O  Prophet˺: "Flee to Allah! I am truly sent by Him with a clear warning to you.
4726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And do not set up another god with Allah. I am truly sent by Him with a clear warning to you."
4727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Similarly, no messenger came to those before them without being told: "A magician or a madman!"
4728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Have they passed this ˹cliché˺ down to one another? In fact, they have ˹all˺ been a transgressing people.
4729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So ˹now˺ turn away from them ˹O Prophet˺, for you will not be blamed.
4730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But ˹continue to˺ remind. For certainly reminders benefit the believers.
4731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I did not create jinn and humans except to worship Me.
4732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I seek no provision from them, nor do I need them to feed Me.
4733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, Allah ˹alone˺ is the Supreme Provider—Lord of all Power, Ever Mighty.
4734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The wrongdoers will certainly have a share ˹of the torment˺ like that of their predecessors. So do not let them ask Me to hasten ˹it˺.
4735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe then to the disbelievers when they face their Day which they are warned of!
4736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  By Mount Ṭûr!
4737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And by the Book written
4738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               on open pages ˹for all to read˺!
4739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And by the ˹Sacred˺ House frequently visited!
4740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And by the canopy raised ˹high˺!
4741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And by the seas set on fire!
4742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, the punishment of your Lord will come to pass—
4743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            none will avert it—
4744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               on the Day the heavens will be shaken violently,
4745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the mountains will be blown away entirely.
4746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then woe on that Day to the deniers—
4747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     those who amuse themselves with falsehood!
4748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹It is˺ the Day they will be fiercely shoved into the Fire of Hell.
4749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They will be told,˺ "This is the Fire which you used to deny.
4750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is this magic, or do you not see?
4751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Burn in it! It is the same whether you endure ˹it˺ patiently or not. You are only rewarded for what you used to do."
4752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, the righteous will be in Gardens and bliss,
4753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 enjoying whatever their Lord will have granted them. And their Lord will have protected them from the torment of the Hellfire.
4754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They will be told,˺ "Eat and drink happily for what you used to do."
4755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They will be reclining on thrones, ˹neatly˺ lined up ˹facing each other˺. And We will pair them to maidens with gorgeous eyes.
4756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for those who believe and whose descendants follow them in faith, We will elevate their descendants to their rank, never discounting anything ˹of the reward˺ of their deeds. Every person will reap only what they sowed.
4757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And We will ˹continually˺ provide them with whatever fruit or meat they desire.
4758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They will pass around to each other a drink ˹of pure wine,˺ which leads to no idle talk or sinfulness.
4759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they will be waited on by their youthful servants like spotless pearls.
4760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They will turn to one another inquisitively.
4761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will say, "Before ˹this reward˺ we used to be in awe ˹of Allah˺ in the midst of our people.
4762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Allah has graced us and protected us from the torment of ˹Hell’s˺ scorching heat.
4763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, we used to call upon Him ˹alone˺ before. He is truly the Most Kind, Most Merciful."
4764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So ˹continue to˺ remind ˹all, O  Prophet˺. For you, by the grace of your Lord, are not a fortune-teller or a madman.
4765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or do they say, "˹He is˺ a poet, for whom we ˹eagerly˺ await an ill-fate!"?
4766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Say, "Keep waiting! I too am waiting with you."
4767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or do their ˹intelligent˺ minds prompt them to this ˹paradox˺? Or are they ˹just˺ a transgressing people?
4768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they say, "He made this ˹Quran˺ up!"? In fact, they have no faith.
4769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let them then produce something like it, if what they say is true!
4770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or were they created by nothing, or are they ˹their own˺ creators?
4771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Or did they create the heavens and the earth? In fact, they have no firm belief ˹in Allah˺.
4772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do they possess the treasuries of your Lord, or are they in control ˹of everything˺?
4773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or do they have a stairway, by which they eavesdrop ˹on the heavens˺? Then let those who do so bring a compelling proof.
4774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or does He have daughters ˹as you claim˺, while you ˹prefer to˺ have sons?
4775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or are you ˹O Prophet˺ asking them for a reward ˹for the message˺ so that they are overburdened by debt?
4776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?
4777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do they intend to scheme ˹against the Prophet˺? Then it is the disbelievers who will fall victim to ˹their˺ schemes.
4778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or do they have a god other than Allah? Glorified is Allah far above what they associate ˹with Him˺!
4779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If they were to see a ˹deadly˺ piece of the sky fall down ˹upon them˺, still they would say, "˹This is just˺ a pile of clouds."
4780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So leave them until they face their Day in which they will be struck dead—
4781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      the Day their scheming will be of no benefit to them whatsoever, nor will they be helped.
4782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Also, the wrongdoers will certainly have another torment before that ˹Day˺, but most of them do not know.
4783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So be patient with your Lord’s decree, for you are truly under Our ˹watchful˺ Eyes. And glorify the praises of your Lord when you rise.
4784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And glorify Him during part of the night and at the fading of the stars.
4785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              By the stars when they fade away!
4786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your fellow man is neither misguided nor astray.
4787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nor does he speak of his own whims.
4788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is only a revelation sent down ˹to him˺.
4789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He has been taught by one ˹angel˺ of mighty power
4790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and great perfection, who once rose to ˹his˺ true form
4791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  while on the highest point above the horizon,
4792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              then he approached ˹the Prophet˺, coming so close
4793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           that he was only two arms-lengths away or even less.
4794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Allah revealed to His servant what He revealed ˹through Gabriel˺.
4795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The ˹Prophet’s˺ heart did not doubt what he saw.
4796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            How can you ˹O pagans˺ then dispute with him regarding what he saw?
4797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he certainly saw that ˹angel descend˺ a second time
4798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            at the Lote Tree of the most extreme limit ˹in the seventh heaven˺—
4799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               near which is the Garden of ˹Eternal˺ Residence—
4800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                while the Lote Tree was overwhelmed with ˹heavenly˺ splendours!
4801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The ˹Prophet’s˺ sight never wandered, nor did it overreach.
4802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He certainly saw some of his Lord’s greatest signs.
4803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now, have you considered ˹the idols of˺ Lat and ’Uzza,
4804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and the third one, Manat, as well?
4805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do you ˹prefer to˺ have sons while ˹you attribute˺ to Him daughters?
4806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then this is ˹truly˺ a biased distribution!
4807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These ˹idols˺ are mere names that you and your forefathers have made up—a practice Allah has never authorized. They follow nothing but ˹inherited˺ assumptions and whatever ˹their˺ souls desire, although ˹true˺ guidance has already come to them from their Lord.
4808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or should every person ˹simply˺ have whatever ˹intercessors˺ they desire?
4809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In fact, to Allah ˹alone˺ belongs this world and the next.
4810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹Imagine˺ how many ˹noble˺ angels are in the heavens! ˹Even˺ their intercession would be of no benefit whatsoever, until Allah gives permission to whoever He wills and ˹only for the people He˺ approves.
4811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, those who do not believe in the Hereafter label angels as female,
4812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 although they have no knowledge ˹in support˺ of this. They follow nothing but ˹inherited˺ assumptions. And surely assumptions can in no way replace the truth.
4813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So turn away ˹O Prophet˺ from whoever has shunned Our Reminder, only seeking the ˹fleeting˺ life of this world.
4814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is the extent of their knowledge. Surely your Lord knows best who has strayed from His Way and who is ˹rightly˺ guided.
4815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             To Allah ˹alone˺ belongs whatever is in the heavens and whatever is on the earth so that He may reward the evildoers according to what they did, and reward the good-doers with the finest reward—
4816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          those who avoid major sins and shameful deeds, despite ˹stumbling on˺ minor sins. Surely your Lord is infinite in forgiveness. He knew well what would become of you as He created you from the earth So do not ˹falsely˺ elevate yourselves. He knows best who is ˹truly˺ righteous.
4817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have you seen the one who turned away ˹from Islam,˺
4818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and ˹initially˺ paid a little ˹for his salvation˺, and then stopped?
4819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Does he have the knowledge of the unseen so that he sees ˹the Hereafter˺?
4820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or has he not been informed of what is in the Scripture of Moses,
4821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and ˹that of˺ Abraham, who ˹perfectly˺ fulfilled ˹his covenant˺?
4822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹They state˺ that no soul burdened with sin will bear the burden of another,
4823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and that each person will only have what they endeavoured towards,
4824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and that ˹the outcome of˺ their endeavours will be seen ˹in their record˺,
4825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              then they will be fully rewarded,
4826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and that to your Lord ˹alone˺ is the ultimate return ˹of all things˺.
4827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moreover, He is the One Who brings about joy and sadness.
4828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And He is the One Who gives life and causes death.
4829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And He created the pairs—males and females—
4830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          from a sperm-drop when it is emitted.
4831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it is upon Him to bring about re-creation.
4832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And He is the One Who enriches and impoverishes.
4833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And He alone is the Lord of Sirius.
4834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And He destroyed the first ˹people of˺ ’Ȃd,
4835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and ˹then˺ Thamûd, sparing no one.
4836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And before ˹that He destroyed˺ the people of Noah, who were truly far worse in wrongdoing and transgression.
4837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And ˹it was˺ He ˹Who˺ turned the cities ˹of Sodom and Gomorrah˺ upside down.
4838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How overwhelming was what covered ˹them˺!
4839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now, which of your Lord’s favours will you dispute?
4840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This ˹Prophet˺ is a warner like earlier ones.
4841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The approaching ˹Hour˺ has drawn near.
4842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                None but Allah can disclose it.
4843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Do you find this revelation astonishing,
4844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     laughing ˹at it˺ and not weeping ˹in awe˺,
4845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              while persisting in heedlessness?
4846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Instead, prostrate to Allah and worship ˹Him alone˺!
4847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Hour has drawn near and the moon was split ˹in two˺.
4848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet, whenever they see a sign, they turn away, saying, "Same old magic!"
4849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They rejected ˹the truth˺ and followed their own desires—and every matter will be settled—
4850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      even though the stories ˹of destroyed nations˺ that have already come to them are a sufficient deterrent.
4851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹This Quran is˺ profound ˹in˺ wisdom, but warnings are of no benefit ˹to them˺.
4852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So turn away from them ˹O Prophet˺. ˹And wait for˺ the Day ˹when˺ the caller
4853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     With eyes downcast, they will come forth from the graves as if they were swarming locusts,
4854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              rushing towards the caller. The disbelievers will cry, "This is a difficult Day!"
4855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Before them, the people of Noah denied ˹the truth˺ and rejected Our servant, calling ˹him˺ insane. And he was intimidated.
4856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So he cried out to his Lord, "I am helpless, so help ˹me˺!"
4857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So We opened the gates of the sky with pouring rain,
4858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and caused the earth to burst with springs, so the waters met for a fate already set.
4859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We carried him on that ˹Ark made˺ of planks and nails,
4860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sailing under Our ˹watchful˺ Eyes—a ˹fair˺ punishment on behalf of the one ˹they˺ denied.
4861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We certainly left this as a sign. So is there anyone who will be mindful?
4862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then how ˹dreadful˺ were My punishment and warnings!
4863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ’Ȃd ˹also˺ rejected ˹the truth˺. Then how ˹dreadful˺ were My punishment and warnings!
4865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, We sent against them a furious wind, on a day of unrelenting misery,
4866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      that snatched people up, leaving them like trunks of uprooted palm trees.
4867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then how ˹dreadful˺ were My punishment and warnings!
4868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thamûd rejected the warnings ˹as well˺,
4870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              arguing, "How can we follow one ˹average˺ human being from among us? We would then truly be misguided and insane.
4871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Has the revelation been sent down ˹only˺ to him out of ˹all of˺ us? In fact, he is a boastful liar."
4872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹It was revealed to salih,˺ "They will soon know who the boastful liar is.
4873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We are sending the she-camel as a test for them. So watch them ˹closely˺, and have patience.
4874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And tell them that the ˹drinking˺ water must be divided between them ˹and her˺, each taking a turn to drink ˹every other day˺."
4875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But they roused a companion of theirs, so he dared to kill ˹her˺.
4876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then how ˹dreadful˺ were My punishment and warnings!
4877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, We sent against them ˹only˺ one ˹mighty˺ blast, leaving them like the twigs of fence-builders.
4878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The people of Lot ˹also˺ rejected the warnings.
4880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We unleashed upon them a storm of stones. As for ˹the believers of˺ Lot’s family, We delivered them before dawn
4881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             as a blessing from Us. This is how We reward whoever gives thanks.
4882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He had already warned them of Our ˹crushing˺ blow but they disputed the warnings.
4883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they even demanded his angel-guests from him, so We blinded their eyes. ˹And they were told,˺ "Taste then My punishment and warnings!"
4884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And indeed, by the early morning they were overwhelmed by an unrelenting torment.
4885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹Again they were told,˺ "Taste now My punishment and warnings!"
4886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We have certainly made the Quran easy to remember. So is there anyone who will be mindful?
4887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And indeed, the warnings ˹also˺ came to the people of Pharaoh.
4888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹But˺ they rejected all of Our signs, so We seized them with the ˹crushing˺ grip of the Almighty, Most Powerful.
4889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now, are you ˹Meccan˺ disbelievers superior to those ˹destroyed peoples˺? Or have you ˹been granted˺ immunity ˹from punishment˺ in divine Books?
4890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or do they say, "We are all ˹a˺ united ˹front˺, bound to prevail."?
4891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Soon˺ their united front will be defeated and ˹forced to˺ flee.
4892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Better yet, the Hour is their appointed time—and the Hour will be most catastrophic and most bitter.
4893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, the wicked are ˹entrenched˺ in misguidance, and ˹are bound for˺ blazes.
4894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On the Day they will be dragged into the Fire on their faces, ˹they will be told,˺ "Taste the touch of Hell!"
4895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We have created everything, perfectly preordained.
4896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Our command done in the blink of an eye.
4897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have already destroyed the likes of you. So will any ˹of you˺ be mindful?
4898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Everything they have done is ˹listed˺ in ˹their˺ records.
4899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Every matter, small and large, is written ˹precisely˺.
4900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, the righteous will be amid Gardens and rivers,
4901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          at the Seat of Honour in the presence of the Most Powerful Sovereign.
4902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Most Compassionate
4903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              taught the Quran,
4904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              created humanity,
4905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹and˺ taught them speech.
4906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The sun and the moon ˹travel˺ with precision.
4907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The stars and the trees bow down ˹in submission˺.
4908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for the sky, He raised it ˹high˺, and set the balance ˹of justice˺
4909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         so that you do not defraud the scales.
4910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Weigh with justice, and do not give short measure.
4911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He laid out the earth for all beings.
4912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In it are fruit, palm trees with date stalks,
4913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and grain with husks, and aromatic plants.
4914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then which of your Lord’s favours will you ˹humans and jinn˺ both deny?
4915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He created humankind from ˹sounding˺ clay like pottery,
4916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and created jinn from a ˹smokeless˺ flame of fire.
4917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹He is˺ Lord of the two easts and the two wests.
4919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He merges the two bodies of ˹fresh and salt˺ water,
4921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                yet between them is a barrier they never cross.
4922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Out of both ˹waters˺ come forth pearls and coral.
4924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            To Him belong the ships with raised sails, sailing through the seas like mountains.
4926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every being on earth is bound to perish.
4928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Only your Lord Himself,
4929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All those in the heavens and the earth are dependent on Him. Day in and day out He has something to bring about.
4931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We will soon attend to you ˹for judgment˺, O  two multitudes ˹of jinn and humans˺!
4933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             O  assembly of jinn and humans! If you can penetrate beyond the realms of the heavens and the earth, then do so. ˹But˺ you cannot do that without ˹Our˺ authority.
4935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Flames of fire and ˹molten˺ copper will be sent against you, and you will not be able to defend one another.
4937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹How horrible will it be˺ when the heavens will split apart, becoming rose-red like ˹burnt˺ oil!
4939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On that Day there will be no need for any human or jinn to be asked about their sins.
4941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The wicked will be recognized by their appearance, then will be seized by ˹their˺ forelocks and feet.
4943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹They will be told,˺ "This is the Hell which the wicked denied."
4945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They will alternate between its flames and scalding water.
4946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And whoever is in awe of standing before their Lord will have two Gardens.
4948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Both will be˺ with lush branches.
4950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In each ˹Garden˺ will be two flowing springs.
4952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In each will be two types of every fruit.
4954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those ˹believers˺ will recline on furnishings lined with rich brocade. And the fruit of both Gardens will hang within reach.
4956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In both ˹Gardens˺ will be maidens of modest gaze, who no human or jinn has ever touched before.
4958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Those ˹maidens˺ will be ˹as elegant˺ as rubies and coral.
4960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Is there any reward for goodness except goodness?
4962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And below these two ˹Gardens˺ will be two others.
4964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Both will be dark green.
4966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In each will be two gushing springs.
4968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In both will be fruit, palm trees, and pomegranates.
4970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In all Gardens will be noble, pleasant mates.
4972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹They will be˺ maidens with gorgeous eyes, reserved in pavilions.
4974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      No human or jinn has ever touched these ˹maidens˺ before.
4976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All ˹believers˺ will be reclining on green cushions and splendid carpets.
4978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then which of your Lord’s favours will you both deny?
4979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Blessed is the Name of your Lord, full of Majesty and Honour.
4980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the Inevitable Event takes place,
4981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              then no one can deny it has come.
4982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It will debase ˹some˺ and elevate ˹others˺.
4983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the earth will be violently shaken,
4984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and the mountains will be crushed to pieces,
4985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        becoming scattered ˹particles of˺ dust,
4986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 you will ˹all˺ be ˹divided into˺ three groups:
4987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           the people of the right, how ˹blessed˺ will they be;
4988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          the people of the left, how ˹miserable˺ will they be;
4989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the foremost ˹in faith˺ will be the foremost ˹in Paradise˺.
4990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They are the ones nearest ˹to Allah˺,
4991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       in the Gardens of Bliss.
4992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹They will be˺ a multitude from earlier generations
4993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and a few from later generations.
4994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹All will be˺ on jewelled thrones,
4995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        reclining face to face.
4996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They will be waited on by eternal youths
4997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         with cups, pitchers, and a drink ˹of pure wine˺ from a flowing stream,
4998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        that will cause them neither headache nor intoxication.
4999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹They will also be served˺ any fruit they choose
5000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and meat from any bird they desire.
5001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ˹they will have˺ maidens with gorgeous eyes,
5002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          like pristine pearls,
5003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹all˺ as a reward for what they used to do.
5004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There they will never hear any idle or sinful talk—
5005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 only good and virtuous speech.
5006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the people of the right—how ˹blessed˺ will they be!
5007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹They will be˺ amid thornless lote trees,
5008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           clusters of bananas,
5009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                extended shade,
5010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 flowing water,
5011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                abundant fruit—
5012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             never out of season nor forbidden—
5013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and elevated furnishings.
5014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We will have perfectly created their mates,
5015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           making them virgins,
5016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       loving and of equal age,
5017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   for the people of the right,
5018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹who will be˺ a multitude from earlier generations
5019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and a multitude from later generations.
5020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people of the left—how ˹miserable˺ will they be!
5021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹They will be˺ in scorching heat and boiling water,
5022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   in the shade of black smoke,
5023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   neither cool nor refreshing.
5024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, before this ˹torment˺ they were spoiled by luxury,
5025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and persisted in the worst of sin.
5026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They used to ask ˹mockingly˺, "When we are dead and reduced to dust and bones, will we really be resurrected?
5027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And our forefathers as well?"
5028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "Most certainly, earlier and later generations
5029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      will surely be gathered ˹together˺ for the appointed Day.
5030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then you, O  misguided deniers,
5031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    will certainly eat from ˹the fruit of˺ the trees of Zaqqûm,
5032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             filling up ˹your˺ bellies with it.
5033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then on top of that you will drink boiling water—
5034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and you will drink ˹it˺ like thirsty camels do."
5035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This will be their accommodation on the Day of Judgment.
5036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is We Who created you. Will you not then believe ˹in resurrection˺?
5037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Have you considered what you ejaculate?
5038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Is it you who create ˹a child out of˺ it, or is it We Who do so?
5039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We have ordained death for ˹all of˺ you, and We cannot be prevented
5040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  from transforming and recreating you in forms unknown to you.
5041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     You already know how you were first created. Will you not then be mindful?
5042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have you considered what you sow?
5043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Is it you who cause it to grow, or is it We Who do so?
5044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If We willed, We could simply reduce this ˹harvest˺ to chaff, leaving you to lament,
5045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        "We have truly suffered a ˹great˺ loss.
5046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In fact, we have been deprived ˹of our livelihood˺."
5047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have you considered the water you drink?
5048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Is it you who bring it down from the clouds, or is it We Who do so?
5049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If We willed, We could make it salty. Will you not then give thanks?
5050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have you considered the fire you kindle?
5051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Is it you who produce its trees, or is it We Who do so?
5052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have made it ˹as˺ a reminder ˹of the Hellfire˺ and a provision for the travellers.
5053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So glorify the Name of your Lord, the Greatest.
5054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So I do swear by the positions of the stars—
5055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and this, if only you knew, is indeed a great oath—
5056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              that this is truly a noble Quran,
5057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    in a well-preserved Record,
5058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  touched by none except the purified ˹angels˺.
5059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹It is˺ a revelation from the Lord of all worlds.
5060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How can you then take this message lightly,
5061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and repay ˹Allah for˺ your provisions with denial?
5062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why then ˹are you helpless˺ when the soul ˹of a dying person˺ reaches ˹their˺ throat,
5063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      while you are looking on?
5064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And We are nearer to such a person than you, but you cannot see.
5065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now, if you are not subject to Our Will ˹as you claim˺,
5066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 bring that soul back, if what you say is true.
5067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So, if the deceased is one of those brought near ˹to Us˺,
5068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     then ˹such a person will have˺ serenity, fragrance, and a Garden of Bliss.
5069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if the deceased is one of the people of the right,
5070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     then ˹they will be told,˺ "Greetings to you from the people of the right."
5071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if such person is one of the misguided deniers,
5072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      then their accommodation will be boiling water ˹to drink˺
5073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and burning in Hellfire.
5074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, this is the absolute truth.
5075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So glorify the Name of your Lord, the Greatest.
5076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whatever is in the heavens and the earth glorifies Allah, for He is the Almighty, All-Wise.
5077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To Him belongs the kingdom of the heavens and the earth. He gives life and causes death. And He is Most Capable of everything.
5078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the First and the Last, the Most High and Most Near, and He has ˹perfect˺ knowledge of all things.
5079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the One Who created the heavens and the earth in six Days, For Allah is All-Seeing of what you do.
5080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                To Him belongs the kingdom of the heavens and the earth. And to Allah all matters are returned.
5081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He merges the night into day and the day into night. And He knows best what is ˹hidden˺ in the heart.
5082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Believe in Allah and His Messenger, and donate from what He has entrusted you with. So those of you who believe and donate will have a mighty reward.
5083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Why do you not believe in Allah while the Messenger is inviting you to have faith in your Lord, although He has already taken your covenant, if you will ever believe.
5084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He is the One Who sends down clear revelations to His servant to bring you out of darkness and into light. For indeed Allah is Ever Gracious and Most Merciful to you.
5085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And why should you not spend in the cause of Allah, while Allah is the ˹sole˺ inheritor of the heavens and the earth? Those of you who donated and fought before the victory ˹over Mecca˺ are unparalleled. They are far greater in rank than those who donated and fought afterwards. Yet Allah has promised each a fine reward. And Allah is All-Aware of what you do.
5086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who is it that will lend to Allah a good loan which Allah will multiply ˹many times over˺ for them, and they will have an honourable reward?
5087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On that Day you will see believing men and women with their light shining ahead of them and on their right. ˹They will be told,˺ "Today you have good news of Gardens, under which rivers flow, ˹for you˺ to stay in forever. This is ˹truly˺ the ultimate triumph."
5088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On that Day hypocrite men and women will beg the believers, "Wait for us so that we may have some of your light." It will be said ˹mockingly˺, "Go back ˹to the world˺ and seek a light ˹there˺!" Then a ˹separating˺ wall with a gate will be erected between them. On the near side will be grace and on the far side will be torment.
5089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The tormented will cry out to those graced, "Were we not with you?" They will reply, "Yes ˹you were˺. But you chose to be tempted ˹by hypocrisy˺, ˹eagerly˺ awaited ˹our demise˺, doubted ˹the truth˺, and were deluded by false hopes until Allah’s decree ˹of your death˺ came to pass. And ˹so˺ the Chief Deceiver deceived you about Allah.
5090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So Today no ransom will be accepted from you ˹hypocrites˺, nor from the disbelievers. Your home is the Fire—it is the ˹only˺ fitting place for you. What an evil destination!"
5091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Has the time not yet come for believers’ hearts to be humbled at the remembrance of Allah and what has been revealed of the truth, and not be like those given the Scripture before—˹those˺ who were spoiled for so long that their hearts became hardened. And many of them are ˹still˺ rebellious.
5092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Know that Allah revives the earth after its death. We have certainly made the signs clear for you so perhaps you will understand.
5093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, those men and women who give in charity and lend to Allah a good loan will have it multiplied for them, and they will have an honourable reward.
5094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ˹As for˺ those who believe in Allah and His messengers, it is they who are ˹truly˺ the people of truth. And the martyrs, with their Lord, will have their reward and their light. But ˹as for˺ those who disbelieve and reject Our signs, it is they who will be the residents of the Hellfire.
5095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Know that this worldly life is no more than play, amusement, luxury, mutual boasting, and competition in wealth and children. This is like rain that causes plants to grow, to the delight of the planters. But later the plants dry up and you see them wither, then they are reduced to chaff. And in the Hereafter there will be either severe punishment or forgiveness and pleasure of Allah, whereas the life of this world is no more than the delusion of enjoyment.
5096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹So˺ compete with one another for forgiveness from your Lord and a Paradise as vast as the heavens and the earth, prepared for those who believe in Allah and His messengers. This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.
5097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                No calamity ˹or blessing˺ occurs on earth or in yourselves without being ˹written˺ in a Record before We bring it into being. This is certainly easy for Allah.
5098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹We let you know this˺ so that you neither grieve over what you have missed nor boast over what He has granted you. For Allah does not like whoever is arrogant, boastful—
5099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  those who are stingy and promote stinginess among people. And whoever turns away ˹should know that˺ Allah ˹alone˺ is truly the Self-Sufficient, Praiseworthy.
5100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, We sent Our messengers with clear proofs, and with them We sent down the Scripture and the balance ˹of justice˺ so that people may administer justice. And We sent down iron with its great might, benefits for humanity, and means for Allah to prove who ˹is willing to˺ stand up for Him and His messengers without seeing Him. Surely Allah is All-Powerful, Almighty.
5101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And indeed, We sent Noah and Abraham and reserved prophethood and revelation for their descendants. Some of them are ˹rightly˺ guided, while most are rebellious.
5102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then in the footsteps of these ˹prophets˺, We sent Our messengers, and ˹after them˺ We sent Jesus, son of Mary, and granted him the Gospel, and instilled compassion and mercy into the hearts of his followers. As for monasticism, they made it up—We never ordained it for them—only seeking to please Allah, yet they did not ˹even˺ observe it strictly. So We rewarded those of them who were faithful. But most of them are rebellious.
5103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O people of faith! Fear Allah and believe in His Messenger. ˹And˺ He will grant you a double share of His mercy, provide you with a light to walk in ˹on Judgment Day˺, and forgive you. For Allah is All-Forgiving, Most Merciful.
5104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹This is so˺ that the People of the Book ˹who deny the Prophet˺ may know that they do not have any control over Allah’s grace, and that all grace is in Allah’s Hands. He grants it to whoever He wills. For Allah is the Lord of infinite bounty.
5105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, Allah has heard the argument of the woman who pleaded with you ˹O Prophet˺ concerning her husband, and appealed to Allah. Allah has heard your exchange. Surely Allah is All-Hearing, All-Seeing.
5106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those of you who ˹sinfully˺ divorce their wives by comparing them to their mothers ˹should know that˺ their wives are in no way their mothers. None can be their mothers except those who gave birth to them. What they say is certainly detestable and false. Yet Allah is truly Ever-Pardoning, All-Forgiving.
5107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Those who divorce their wives in this manner, then ˹wish to˺ retract what they said, must free a slave before they touch each other. This ˹penalty˺ is meant to deter you. And Allah is All-Aware of what you do.
5108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if the husband cannot afford this, let him then fast two consecutive months before the couple touch each other. But if he is unable ˹to fast˺, then let him feed sixty poor people. This is to re-affirm your faith in Allah and His Messenger. These are the limits set by Allah. And the disbelievers will suffer a painful punishment.
5109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, those who defy Allah and His Messenger will be debased, just like those before them. We have certainly sent down clear revelations. And the disbelievers will suffer a humiliating punishment.
5110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the Day Allah resurrects them all together, He will then inform them of what they have done. Allah has kept account of it all, while they have forgotten it. For Allah is a Witness over all things.
5111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Do you not see that Allah knows whatever is in the heavens and whatever is on the earth? If three converse privately, He is their fourth. If five, He is their sixth. Whether fewer or more, He is with them wherever they may be. Then, on the Day of Judgment, He will inform them of what they have done. Surely Allah has ˹perfect˺ knowledge of all things.
5112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Have you not seen those who were forbidden from secret talks, yet they ˹always˺ return to what they were forbidden from, conspiring in sin, aggression, and disobedience to the Messenger? And when they come to you ˹O Prophet˺, they greet you not as Allah greets you, and say to one another, "Why does Allah not punish us for what we say?" Hell is enough for them—they will burn in it. And what an evil destination!
5113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O believers! When you converse privately, let it not be for sin, aggression, or disobedience to the Messenger, but let it be for goodness and righteousness. And fear Allah, to Whom you will ˹all˺ be gathered.
5114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Secret talks are only inspired by Satan to grieve the believers. Yet he cannot harm them whatsoever except by Allah’s Will. So in Allah let the believers put their trust.
5115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         O believers! When you are told to make room in gatherings, then do so. Allah will make room for you ˹in His grace˺. And if you are told to rise, then do so. Allah will elevate those of you who are faithful, and ˹raise˺ those gifted with knowledge in rank. And Allah is All-Aware of what you do.
5116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! When you consult the Messenger privately, give something in charity before your consultation. That is better and purer for you. But if you lack the means, then Allah is truly All-Forgiving, Most Merciful.
5117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Are you afraid of spending in charity before your private consultations ˹with him˺? Since you are unable to do so, and Allah has turned to you in mercy, then ˹continue to˺ establish prayer, pay alms-tax, and obey Allah and His Messenger. And Allah is All-Aware of what you do.
5118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have you not seen those ˹hypocrites˺ who ally themselves with a people with whom Allah is displeased? They are neither with you nor with them. And they swear to lies knowingly.
5119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah has prepared for them a severe punishment. Evil indeed is what they do.
5120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the cause of Allah. So they will suffer a humiliating punishment.
5121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither their wealth nor children will be of any help to them against Allah whatsoever. It is they who will be the residents of the Fire. They will be there forever.
5122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On the Day Allah resurrects them all, they will ˹falsely˺ swear to Him as they swear to you, thinking they have something to stand on. Indeed, it is they who are the ˹total˺ liars.
5123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Satan has taken hold of them, causing them to forget the remembrance of Allah. They are the party of Satan. Surely Satan’s party is bound to lose.
5124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹As for˺ those who defy Allah and His Messenger, they will definitely be among the most debased.
5125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Allah has decreed, "I and My messengers will certainly prevail." Surely Allah is All-Powerful, Almighty.
5126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You will never find a people who ˹truly˺ believe in Allah and the Last Day loyal to those who defy Allah and His Messenger, even if they were their parents, children, siblings, or extended family. For those ˹believers˺, Allah has instilled faith in their hearts and strengthened them with a spirit from Him. He will admit them into Gardens under which rivers flow, to stay there forever. Allah is pleased with them and they are pleased with Him. They are the party of Allah. Indeed, Allah’s party is bound to succeed.
5127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whatever is in the heavens and whatever is on the earth glorifies Allah. For He is the Almighty, All-Wise.
5128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He is the One Who expelled the disbelievers of the People of the Book from their homes for ˹their˺ first banishment ˹ever˺. You never thought they would go. And they thought their strongholds would put them out of Allah’s reach. But ˹the decree of˺ Allah came upon them from where they never expected. And He cast horror into their hearts so they destroyed their houses with their own hands and the hands of the believers. So take a lesson ˹from this˺, O  people of insight!
5129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Had Allah not decreed exile for them, He would have certainly punished them in this world. And in the Hereafter they will suffer the punishment of the Fire.
5130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is because they defied Allah and His Messenger. And whoever defies Allah, then Allah is truly severe in punishment.
5131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whatever palm trees you ˹believers˺ cut down or left standing intact, it was ˹all˺ by Allah’s Will, so that He might disgrace the rebellious.
5132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for the gains Allah has turned over to His Messenger from them—you did not ˹even˺ spur on any horse or camel for such gains. But Allah gives authority to His messengers over whoever He wills. For Allah is Most Capable of everything.
5133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for gains granted by Allah to His Messenger from the people of ˹other˺ lands, they are for Allah and the Messenger, his close relatives, orphans, the poor, and ˹needy˺ travellers so that wealth may not merely circulate among your rich. Whatever the Messenger gives you, take it. And whatever he forbids you from, leave it. And fear Allah. Surely Allah is severe in punishment.
5134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Some of the gains will be˺ for poor emigrants who were driven out of their homes and wealth, seeking Allah’s bounty and pleasure, and standing up for Allah and His Messenger. They are the ones true in faith.
5135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for those who had settled in the city and ˹embraced˺ the faith before ˹the arrival of˺ the emigrants, they love whoever immigrates to them, never having a desire in their hearts for whatever ˹of the gains˺ is given to the emigrants. They give ˹the emigrants˺ preference over themselves even though they may be in need. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.
5136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And those who come after them will pray, "Our Lord! Forgive us and our fellow believers who preceded us in faith, and do not allow bitterness into our hearts towards those who believe. Our Lord! Indeed, You are Ever Gracious, Most Merciful."
5137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Have you ˹O Prophet˺ not seen the hypocrites who say to their fellow disbelievers from the People of the Book, "If you are expelled, we will certainly leave with you, and We will never obey anyone against you. And if you are fought against, we will surely help you."? But Allah bears witness that they are truly liars.
5138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, if they are expelled, the hypocrites will never leave with them. And if they are fought against, the hypocrites will never help them. And even if the hypocrites did so, they would certainly flee, then the disbelievers would be left with no help.
5139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indeed, there is more fear in their hearts for you ˹believers˺ than for Allah. That is because they are a people who do not comprehend.
5140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Even united, they would not ˹dare˺ fight against you except ˹from˺ within fortified strongholds or from behind walls. Their malice for each other is intense: you think they are united, yet their hearts are divided. That is because they are a people with no ˹real˺ understanding.
5141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They are ˹both just˺ like those who recently went down before them: they tasted the evil consequences of their doings. And they will suffer a painful punishment.
5142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹They are˺ like Satan when he lures someone to disbelieve. Then after they have done so, he will say ˹on Judgment Day˺, "I have absolutely nothing to do with you. I truly fear Allah—the Lord of all worlds."
5143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So they will both end up in the Fire, staying there forever. That is the reward of the wrongdoers.
5144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Be mindful of Allah and let every soul look to what ˹deeds˺ it has sent forth for tomorrow. And fear Allah, ˹for˺ certainly Allah is All-Aware of what you do.
5145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And do not be like those who forgot Allah, so He made them forget themselves. It is they who are ˹truly˺ rebellious.
5146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The residents of the Fire cannot be equal to the residents of Paradise. ˹Only˺ the residents of Paradise will be successful.
5147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Had We sent down this Quran upon a mountain, you would have certainly seen it humbled and torn apart in awe of Allah. We set forth such comparisons for people, ˹so˺ perhaps they may reflect.
5148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He is Allah—there is no god ˹worthy of worship˺ except Him: Knower of the seen and unseen. He is the Most Compassionate, Most Merciful.
5149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He is Allah—there is no god except Him: the King, the Most Holy, the All-Perfect, the Source of Serenity, the Watcher ˹of all˺, the Almighty, the Supreme in Might, the Majestic. Glorified is Allah far above what they associate with Him ˹in worship˺!
5150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is Allah: the Creator, the Inventor, the Shaper. He ˹alone˺ has the Most Beautiful Names. Whatever is in the heavens and the earth ˹constantly˺ glorifies Him. And He is the Almighty, All-Wise.
5151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Do not take My enemies and yours as trusted allies, showing them affection even though they deny what has come to you of the truth. They drove the Messenger and yourselves out ˹of Mecca˺, simply for your belief in Allah, your Lord. If you ˹truly˺ emigrated to struggle in My cause and seek My pleasure, ˹then do not take them as allies,˺ disclosing secrets ˹of the believers˺ to the pagans out of affection for them, when I know best whatever you conceal and whatever you reveal. And whoever of you does this has truly strayed from the Right Way.
5152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If they gain the upper hand over you, they would be your ˹open˺ enemies, unleashing their hands and tongues to harm you, and wishing that you would abandon faith.
5153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Neither your relatives nor children will benefit you on Judgment Day—He will decide between you ˹all˺. For Allah is All-Seeing of what you do.
5154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You already have an excellent example in Abraham and those with him, when they said to their people, "We totally dissociate ourselves from you and ˹shun˺ whatever ˹idols˺ you worship besides Allah. We reject you. The enmity and hatred that has arisen between us and you will last until you believe in Allah alone." The only exception is when Abraham said to his father, "I will seek forgiveness for you,˹" adding, "but˺ I cannot protect you from Allah at all." ˹The believers prayed,˺ "Our Lord! In You we trust. And to You we ˹always˺ turn. And to You is the final return.
5155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Our Lord! Do not subject us to the persecution of the disbelievers. Forgive us, our Lord! You ˹alone˺ are truly the Almighty, All-Wise."
5156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You certainly have an excellent example in them for whoever has hope in Allah and the Last Day. But whoever turns away, then surely Allah ˹alone˺ is the Self-Sufficient, Praiseworthy.
5157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹In time,˺ Allah may bring about goodwill between you and those of them you ˹now˺ hold as enemies. For Allah is Most Capable. And Allah is All-Forgiving, Most Merciful.
5158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah does not forbid you from dealing kindly and fairly with those who have neither fought nor driven you out of your homes. Surely Allah loves those who are fair.
5159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Allah only forbids you from befriending those who have fought you for ˹your˺ faith, driven you out of your homes, or supported ˹others˺ in doing so. And whoever takes them as friends, then it is they who are the ˹true˺ wrongdoers.
5160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! When the believing women come to you as emigrants, ˹But˺ demand ˹repayment of˺ whatever ˹dowries˺ you had paid, and let the disbelievers do the same. That is the judgment of Allah—He judges between you. And Allah is All-Knowing, All-Wise.
5161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if any of your wives desert you to the disbelievers, and later you take spoils from them, then pay those whose wives have gone, the equivalent of whatever ˹dowry˺ they had paid. And be mindful of Allah, in Whom you believe.
5162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O Prophet! When the believing women come to you, pledging to you that they will neither associate anything with Allah ˹in worship˺, nor steal, nor fornicate, nor kill their children, nor falsely attribute ˹illegitimate˺ children to their husbands, nor disobey you in what is right, then accept their pledge, and ask Allah to forgive them. Surely Allah is All-Forgiving, Most Merciful.
5163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   O believers! Do not ally yourselves with a people Allah is displeased with. They already have no hope for the Hereafter, just like the disbelievers lying in ˹their˺ graves.
5164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whatever is in the heavens and whatever is on the earth glorifies Allah. For He ˹alone˺ is the Almighty, All-Wise.
5165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Why do you say what you do not do?
5166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How despicable it is in the sight of Allah that you say what you do not do!
5167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely Allah loves those who fight in His cause in ˹solid˺ ranks as if they were one concrete structure.
5168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Remember, O  Prophet,˺ when Moses said to his people, "O my people! Why do you hurt me when you already know I am Allah’s messenger to you?" So when they ˹persistently˺ deviated, Allah caused their hearts to deviate. For Allah does not guide the rebellious people.
5169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ˹remember˺ when Jesus, son of Mary, said, "O children of Israel! I am truly Allah’s messenger to you, confirming the Torah which came before me, and giving good news of a messenger after me whose name will be Ahmad." Yet when the Prophet came to them with clear proofs, they said, "This is pure magic."
5170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who does more wrong than the one who fabricates lies about Allah when invited to submit ˹to Him˺? For Allah does not guide the wrongdoing people.
5171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They wish to extinguish Allah’s light with their mouths, but Allah will ˹certainly˺ perfect His light, even to the dismay of the disbelievers.
5172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He is the One Who has sent His Messenger with ˹true˺ guidance and the religion of truth, making it prevail over all others, even to the dismay of the polytheists.
5173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Shall I guide you to an exchange that will save you from a painful punishment?
5174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It is to˺ have faith in Allah and His Messenger, and strive in the cause of Allah with your wealth and your lives. That is best for you, if only you knew.
5175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He will forgive your sins, and admit you into Gardens under which rivers flow, and ˹house you in˺ splendid homes in the Gardens of Eternity. That is the ultimate triumph.
5176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹He will also give you˺ another favour that you long for: help from Allah and an imminent victory. ˹So˺ give good news ˹O Prophet˺ to the believers.
5177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                O believers! Stand up for Allah, as Jesus, son of Mary, asked the disciples, "Who will stand up with me for Allah?" The disciples replied, "We will stand up for Allah." Then a group from the Children of Israel believed while another disbelieved. We then supported the believers against their enemies, so they prevailed.
5178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah—the King, the Most Holy, the Almighty, the All-Wise.
5179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He is the One Who raised for the illiterate ˹people˺ a messenger from among themselves—reciting to them His revelations, purifying them, and teaching them the Book and wisdom, for indeed they had previously been clearly astray—
5180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           along with others of them who have not yet joined them ˹in faith˺. For He is the Almighty, All-Wise.
5181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is the favour of Allah. He grants it to whoever He wills. And Allah is the Lord of infinite bounty.
5182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The example of those who were entrusted with ˹observing˺ the Torah but failed to do so, is that of a donkey carrying books. How evil is the example of those who reject Allah’s signs! For Allah does not guide the wrongdoing people.
5183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Say, ˹O Prophet,˺ "O Jews! If you claim to be Allah’s chosen ˹people˺ out of all humanity, then wish for death, if what you say is true."
5184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But they will never wish for that because of what their hands have done. And Allah has ˹perfect˺ knowledge of the wrongdoers.
5185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, "The death you are running away from will inevitably come to you. Then you will be returned to the Knower of the seen and unseen, and He will inform you of what you used to do."
5186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O believers! When the call to prayer is made on Friday, then proceed ˹diligently˺ to the remembrance of Allah and leave off ˹your˺ business. That is best for you, if only you knew.
5187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Once the prayer is over, disperse throughout the land and seek the bounty of Allah. And remember Allah often so you may be successful.
5188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When they saw the fanfare along with the caravan, they ˹almost all˺ flocked to it, leaving you ˹O Prophet˺ standing ˹on the pulpit˺. Say, "What is with Allah is far better than amusement and merchandise. And Allah is the Best Provider."
5189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When the hypocrites come to you ˹O Prophet˺, they say, "We bear witness that you are certainly the Messenger of Allah"—and surely Allah knows that you are His Messenger—but Allah bears witness that the hypocrites are truly liars.
5190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They have made their ˹false˺ oaths as a shield, hindering ˹others˺ from the Way of Allah. Evil indeed is what they do!
5191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   This is because they believed and then abandoned faith. Therefore, their hearts have been sealed, so they do not comprehend.
5192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When you see them, their appearance impresses you. And when they speak, you listen to their ˹impressive˺ speech. But they are ˹just˺ like ˹worthless˺ planks of wood leaned ˹against a wall˺. They think every cry is against them. They are the enemy, so beware of them. May Allah condemn them! How can they be deluded ˹from the truth˺?
5193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When it is said to them, "Come! The Messenger of Allah will pray for you to be forgiven," they turn their heads ˹in disgust˺, and you see them ˹O Prophet˺ turn away in arrogance.
5194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is the same whether you pray for their forgiveness or not, Allah will not forgive them. Surely Allah does not guide the rebellious people.
5195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They are the ones who say ˹to one another˺, "Do not spend ˹anything˺ on those ˹emigrants˺ with the Messenger of Allah so that they will break away ˹from him˺." But to Allah ˹alone˺ belong the treasuries of the heavens and the earth, yet the hypocrites do not comprehend.
5196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They say, "If we return to Medina, the honourable will definitely expel the inferior." But all honour and power belongs to Allah, His Messenger, and the believers, yet the hypocrites do not know.
5197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O believers! Do not let your wealth or your children divert you from the remembrance of Allah. For whoever does so, it is they who are the ˹true˺ losers.
5198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And donate from what We have provided for you before death comes to one of you, and you cry, "My Lord! If only You delayed me for a short while, I would give in charity and be one of the righteous."
5199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But Allah never delays a soul when its appointed time comes. And Allah is All-Aware of what you do.
5200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whatever is in the heavens and whatever is on the earth ˹constantly˺ glorifies Allah. The kingdom is His, and all praise is for Him. For He is Most Capable of everything.
5201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He is the One Who created you, yet some of you are disbelievers while some are believers. And Allah is All-Seeing of what you do.
5202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He created the heavens and the earth for a purpose. He shaped you ˹in the womb˺, perfecting your form. And to Him is the final return.
5203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He knows whatever is in the heavens and the earth. And He knows whatever you conceal and whatever you reveal. For Allah knows best what is ˹hidden˺ in the heart.
5204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Have the stories of those who disbelieved before not reached you ˹pagans˺? They tasted the evil consequences of their doings, and they will suffer a painful punishment.
5205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That was because their messengers used to come to them with clear proofs, but they said ˹mockingly˺, "How can humans be our guides?" So they persisted in disbelief and turned away. And Allah was not in need ˹of their faith˺. For Allah is Self-Sufficient, Praiseworthy.
5206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The disbelievers claim they will not be resurrected. Say, ˹O Prophet,˺ "Yes, by my Lord, you will surely be resurrected, then you will certainly be informed of what you have done. And that is easy for Allah."
5207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So believe in Allah and His Messenger and in the Light We have revealed. And Allah is All-Aware of what you do.
5208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Consider˺ the Day He will gather you ˹all˺ for the Day of Gathering—that will be the Day of mutual loss and gain. So whoever believes in Allah and does good, He will absolve them of their sins and admit them into Gardens under which rivers flow, to stay there for ever and ever. That is the ultimate triumph.
5209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those who disbelieve and reject Our revelations, they will be the residents of the Fire, staying there forever. What an evil destination!
5210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                No calamity befalls ˹anyone˺ except by Allah’s Will. And whoever has faith in Allah, He will ˹rightly˺ guide their hearts ˹through adversity˺. And Allah has ˹perfect˺ knowledge of all things.
5211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Obey Allah and obey the Messenger! But if you turn away, then Our Messenger’s duty is only to deliver ˹the message˺ clearly.
5212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah—there is no god ˹worthy of worship˺ except Him. So in Allah let the believers put their trust.
5213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O believers! Indeed, some of your spouses and children are enemies to you, so beware of them. But if you pardon, overlook, and forgive ˹their faults˺, then Allah is truly All-Forgiving, Most Merciful.
5214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Your wealth and children are only a test, but Allah ˹alone˺ has a great reward.
5215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So be mindful of Allah to the best of your ability, hear and obey, and spend in charity—that will be best for you. And whoever is saved from the selfishness of their own souls, it is they who are ˹truly˺ successful.
5216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If you lend to Allah a good loan, He will multiply it for you and forgive you. For Allah is Most Appreciative, Most Forbearing.
5217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹He is the˺ Knower of the seen and unseen—the Almighty, All-Wise.
5218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O Prophet! ˹Instruct the believers:˺ When you ˹intend to˺ divorce women, then divorce them with concern for their waiting period,
5219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then when they have ˹almost˺ reached the end of their waiting period, either retain them honourably or separate from them honourably. And call two of your reliable men to witness ˹either way˺—and ˹let the witnesses˺ bear true testimony for ˹the sake of˺ Allah. This is enjoined on whoever has faith in Allah and the Last Day. And whoever is mindful of Allah, He will make a way out for them,
5220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and provide for them from sources they could never imagine. And whoever puts their trust in Allah, then He ˹alone˺ is sufficient for them. Certainly Allah achieves His Will. Allah has already set a destiny for everything.
5221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As for your women past the age of menstruation, in case you do not know, their waiting period is three months, and those who have not menstruated as well. As for those who are pregnant, their waiting period ends with delivery. And whoever is mindful of Allah, He will make their matters easy for them.
5222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This is the commandment of Allah, which He has revealed to you. And whoever is mindful of Allah, He will absolve them of their sins and reward them immensely.
5223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let them live where you live ˹during their waiting period˺, according to your means. And do not harass them to make their stay unbearable. If they are pregnant, then maintain them until they deliver. And if they nurse your child, compensate them, and consult together courteously. But if you fail to reach an agreement, then another woman will nurse ˹the child˺ for the father.
5224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let the man of wealth provide according to his means. As for the one with limited resources, let him provide according to whatever Allah has given him. Allah does not require of any soul beyond what He has given it. After hardship, Allah will bring about ease.
5225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹Imagine˺ how many societies rebelled against the commandments of their Lord and His messengers, so We called each ˹society˺ to a severe account and subjected them to a horrible punishment.
5226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they tasted the evil consequences of their doings, and the outcome of their doings was ˹total˺ loss.
5227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Allah has ˹also˺ prepared for them a severe punishment. So fear Allah, O  people of reason and faith. Allah has indeed revealed to you a Reminder,
5228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹and sent˺ a messenger reciting to you Allah’s revelations, making things clear so that He may bring those who believe and do good out of darkness and into light. And whoever believes in Allah and does good will be admitted by Him into Gardens under which rivers flow, to stay there for ever and ever. Allah will have indeed granted them an excellent provision.
5229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Allah is the One Who created seven heavens ˹in layers˺, and likewise for the earth. The ˹divine˺ command descends between them so you may know that Allah is Most Capable of everything and that Allah certainly encompasses all things in ˹His˺ knowledge.
5230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O Prophet! Why do you prohibit ˹yourself˺ from what Allah has made lawful to you, seeking to please your wives? And Allah is All-Forgiving, Most Merciful.
5231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Allah has already ordained for you ˹believers˺ the way to absolve yourselves from your oaths. For Allah is your Guardian. And He is the All-Knowing, All-Wise.
5232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹Remember˺ when the Prophet had ˹once˺ confided something to one of his wives, then when she disclosed it ˹to another wife˺ and Allah made it known to him, he presented ˹to her˺ part of what was disclosed and overlooked a part. So when he informed her of it, she exclaimed, "Who told you this?" He replied, "I was informed by the All-Knowing, All-Aware."
5233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹It will be better˺ if you ˹wives˺ both turn to Allah in repentance, for your hearts have certainly faltered. But if you ˹continue to˺ collaborate against him, then ˹know that˺ Allah Himself is his Guardian. And Gabriel, the righteous believers, and the angels are ˹all˺ his supporters as well.
5234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Perhaps, if he were to divorce you ˹all˺, his Lord would replace you with better wives who are submissive ˹to Allah˺, faithful ˹to Him˺, devout, repentant, dedicated to worship and fasting—previously married or virgins.
5235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    O believers! Protect yourselves and your families from a Fire whose fuel is people and stones, overseen by formidable and severe angels, who never disobey whatever Allah orders—always doing as commanded.
5236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹The deniers will then be told,˺ "O disbelievers! Make no excuses this Day! You are only rewarded for what you used to do."
5237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       O believers! Turn to Allah in sincere repentance, so your Lord may absolve you of your sins and admit you into Gardens, under which rivers flow, on the Day Allah will not disgrace the Prophet or the believers with him. Their light will shine ahead of them and on their right. They will say, "Our Lord! Perfect our light for us, and forgive us. ˹For˺ You are truly Most Capable of everything."
5238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O Prophet! Struggle against the disbelievers and the hypocrites, and be firm with them. Hell will be their home. What an evil destination!
5239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah sets forth an example for the disbelievers: the wife of Noah and the wife of Lot. Each was married to one of Our righteous servants, yet betrayed them. So their husbands were of no benefit to them against Allah whatsoever. Both were told, "Enter the Fire, along with the others!"
5240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Allah sets forth an example for the believers: the wife of Pharaoh, who prayed, "My Lord! Build me a house in Paradise near You, deliver me from Pharaoh and his ˹evil˺ doing, and save me from the wrongdoing people."
5241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹There is˺ also ˹the example of˺ Mary, the daughter of ’Imran, who guarded her chastity, so We breathed into her ˹womb˺ through Our angel ˹Gabriel˺. She testified to the words of her Lord and His Scriptures, and was one of the ˹sincerely˺ devout.
5242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Blessed is the One in Whose Hands rests all authority. And He is Most Capable of everything.
5243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹He is the One˺ Who created death and life in order to test which of you is best in deeds. And He is the Almighty, All-Forgiving.
5244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹He is the One˺ Who created seven heavens, one above the other. You will never see any imperfection in the creation of the Most Compassionate. So look again: do you see any flaws?
5245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then look again and again—your sight will return frustrated and weary.
5246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And indeed, We adorned the lowest heaven with ˹stars like˺ lamps, and made them ˹as missiles˺ for stoning ˹eavesdropping˺ devils, for whom We have also prepared the torment of the Blaze.
5247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those who disbelieve in their Lord will suffer the punishment of Hell. What an evil destination!
5248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When they are tossed into it, they will hear its roaring as it boils over,
5249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        almost bursting in fury. Every time a group is cast into it, its keepers will ask them, "Did a warner not come to you?"
5250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will reply, "Yes, a warner did come to us, but we denied and said, ‘Allah has revealed nothing. You are extremely astray.’"
5251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they will lament, "If only we had listened and reasoned, we would not be among the residents of the Blaze!"
5252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And so they will confess their sins. So away with the residents of the Blaze!
5253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Indeed, those in awe of their Lord without seeing Him will have forgiveness and a mighty reward.
5254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whether you speak secretly or openly—He surely knows best what is ˹hidden˺ in the heart.
5255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How could He not know His Own creation? For He ˹alone˺ is the Most Subtle, All-Aware.
5256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He is the One Who smoothed out the earth for you, so move about in its regions and eat from His provisions. And to Him is the resurrection ˹of all˺.
5257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do you feel secure that the One Who is in heaven will not cause the earth to swallow you up as it quakes violently?
5258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do you feel secure that the One Who is in heaven will not unleash upon you a storm of stones. Only then would you know how ˹serious˺ My warning was!
5259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And certainly those before them denied ˹as well˺, then how severe was My response!
5260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Have they not seen the birds above them, spreading and folding their wings? None holds them up except the Most Compassionate. Indeed, He is All-Seeing of everything.
5261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also, which ˹powerless˺ force will come to your help instead of the Most Compassionate? Indeed, the disbelievers are only ˹lost˺ in delusion.
5262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Or who is it that will provide for you if He withholds His provision? In fact, they persist in arrogance and aversion ˹to the truth˺.
5263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Who is ˹rightly˺ guided: the one who crawls facedown or the one who walks upright on the Straight Path?
5264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "He is the One Who brought you into being and gave you hearing, sight, and intellect. ˹Yet˺ you hardly give any thanks."
5265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Also˺ say, "He is the One Who has dispersed you ˹all˺ over the earth, and to Him you will ˹all˺ be gathered."
5266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹Still˺ they ask ˹the believers˺, "When will this threat come to pass, if what you say is true?"
5267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "That knowledge is with Allah alone, and I am only sent with a clear warning."
5268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then when they see the torment drawing near, the faces of the disbelievers will become gloomy, and it will be said ˹to them˺, "This is what you claimed would never come."
5269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Say, ˹O Prophet,˺ "Consider this: whether Allah causes me and those with me to die or shows us mercy, who will save the disbelievers from a painful punishment?"
5270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, "He is the Most Compassionate—in Him ˹alone˺ we believe, and in Him ˹alone˺ we trust. You will soon know who is clearly astray."
5271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Say, "Consider this: if your water were to sink ˹into the earth˺, then who ˹else˺ could bring you flowing water?"
5272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nũn. By the pen and what everyone writes!
5273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     By the grace of your Lord, you ˹O Prophet˺ are not insane.
5274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 You will certainly have a never-ending reward.
5275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And you are truly ˹a man˺ of outstanding character.
5276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Soon you and the pagans will see,
5277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           which of you is mad.
5278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely your Lord ˹alone˺ knows best who has strayed from His Way and who is ˹rightly˺ guided.
5279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So do not give in to the deniers.
5280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They wish you would compromise so they would yield ˹to you˺.
5281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And do not obey the despicable, vain oath-taker,
5282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      slanderer, gossip-monger,
5283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    withholder of good, transgressor, evildoer,
5284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           brute, and—on top of all that—an illegitimate child.
5285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now, ˹simply˺ because he has been blessed with ˹abundant˺ wealth and children,
5286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        whenever Our revelations are recited to him, he says, "Ancient fables!"
5287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We will soon mark his snout.
5288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, We have tested those ˹Meccans˺ as We tested the owners of the garden—when they swore they would surely harvest ˹all˺ its fruit in the early morning,
5289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           leaving no thought for Allah’s Will.
5290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then it was struck by a torment from your Lord while they slept,
5291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    so it was reduced to ashes.
5292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then by daybreak they called out to each other,
5293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹saying,˺ "Go early to your harvest, if you want to pick ˹all˺ the fruit."
5294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So they went off, whispering to one another,
5295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          "Do not let any poor person enter your garden today."
5296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they proceeded early, totally fixated on their purpose.
5297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But when they saw it ˹devastated˺, they cried, "We must have lost ˹our˺ way!
5298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In fact, we have been deprived ˹of our livelihood˺."
5299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The most sensible of them said, "Did I not urge you to say, ‘Allah willing.’?"
5300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They replied, "Glory be to our Lord! We have truly been wrongdoers."
5301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then they turned on each other, throwing blame.
5302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They said, "Woe to us! We have certainly been transgressors.
5303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We trust our Lord will give us a better garden than this, ˹for˺ we are indeed turning to our Lord with hope."
5304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That is the ˹way of Our˺ punishment ˹in this world˺. But the punishment of the Hereafter is certainly far worse, if only they knew.
5305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Indeed, the righteous will have the Gardens of Bliss with their Lord.
5306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Should We then treat those who have submitted like the wicked?
5307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What is the matter with you? How do you judge?
5308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or do you have a scripture, in which you read
5309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        that you will have whatever you choose?
5310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Or do you have oaths binding on Us until the Day of Judgment that you will have whatever you decide?
5311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ask them ˹O Prophet˺ which of them can guarantee all that.
5312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or do they have associate-gods ˹supporting this claim˺? Then let them bring forth their associate-gods, if what they say is true.
5313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹Beware of˺ the Day the Shin ˹of Allah˺ will be bared, and the wicked will be asked to prostrate, but they will not be able to do so,
5314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             with eyes downcast, totally covered with disgrace. For they were ˹always˺ called to prostrate ˹in the world˺ when they were fully capable ˹but they chose not to˺.
5315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So leave to Me ˹O Prophet˺ those who reject this message. We will gradually draw them to destruction in ways they cannot comprehend.
5316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I ˹only˺ delay their end for a while, but My planning is flawless.
5317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or are you asking them for a reward ˹for the message˺ so that they are overburdened by debt?
5318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or do they have access to ˹the Record in˺ the unseen, so they copy it ˹for all to see˺?
5319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So be patient with your Lord’s decree, and do not be like ˹Jonah,˺ the Man of the Whale, who cried out ˹to Allah˺, in total distress.
5320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had he not been shown grace by his Lord, he would have certainly been cast onto the open ˹shore˺, still blameworthy.
5321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then his Lord chose him, making him one of the righteous.
5322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The disbelievers would almost cut you down with their eyes when they hear ˹you recite˺ the Reminder, and say, "He is certainly a madman."
5323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But it is simply a reminder to the whole world.
5324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Inevitable Hour!
5325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What is the Inevitable Hour?
5326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what will make you realize what the Inevitable Hour is?
5327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Both˺ Thamûd and ’Ȃd denied the Striking Disaster.
5328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for Thamûd, they were destroyed by an overwhelming blast.
5329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And as for ’Ȃd, they were destroyed by a furious, bitter wind
5330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  which Allah unleashed on them non-stop for seven nights and eight days, so that you would have seen its people lying dead like trunks of uprooted palm trees.
5331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do you see any of them left alive?
5332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Also, Pharaoh and those before him, and ˹the people of˺ the overturned cities ˹of Lot˺ indulged in sin,
5333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                each disobeying their Lord’s messenger, so He seized them with a crushing grip.
5334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, when the floodwater had overflowed, We carried you in the floating Ark ˹with Noah˺,
5335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              so that We may make this a reminder to you, and that attentive ears may grasp it.
5336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        At last, when the Trumpet will be blown with one blast,
5337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and the earth and mountains will be lifted up and crushed with one blow,
5338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       on that Day the Inevitable Event will have come to pass.
5339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sky will then be so torn that it will be frail,
5340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  with the angels on its sides. On that Day eight ˹mighty angels˺ will bear the Throne of your Lord above them.
5341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You will then be presented ˹before Him for judgment˺, and none of your secrets will stay hidden.
5342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As for those given their records in their right hand, they will cry ˹happily˺, "Here ˹everyone˺! Read my record!
5343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I surely knew I would face my reckoning."
5344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will be in a life of bliss,
5345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         in an elevated Garden,
5346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            whose fruit will hang within reach.
5347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹They will be told,˺ "Eat and drink joyfully for what you did in the days gone by."
5348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And as for those given their record in their left hand, they will cry ˹bitterly˺, "I wish I had not been given my record,
5349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nor known anything of my reckoning!
5350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I wish death was the end!
5351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My wealth has not benefited me!
5352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       My authority has been stripped from me."
5353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹It will be said,˺ "Seize and shackle them,
5354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then burn them in Hell,
5355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                then tie them up with chains seventy arms long.
5356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For they never had faith in Allah, the Greatest,
5357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nor encouraged the feeding of the poor.
5358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So this Day they will have no close friend here,
5359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nor any food except ˹oozing˺ pus,
5360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     which none will eat except the evildoers."
5361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now, I do swear by whatever you see,
5362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and whatever you cannot see!
5363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Indeed, this ˹Quran˺ is the recitation of a noble Messenger.
5364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is not the prose of a poet ˹as you claim˺, ˹yet˺ you hardly have any faith.
5365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nor is it the mumbling of a fortune-teller, ˹yet˺ you are hardly mindful.
5366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹It is˺ a revelation from the Lord of all worlds.
5367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Had the Messenger made up something in Our Name,
5368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We would have certainly seized him by his right hand,
5369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then severed his aorta,
5370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and none of you could have shielded him ˹from Us˺!
5371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, this ˹Quran˺ is a reminder to those mindful ˹of Allah˺.
5372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And We certainly know that some of you will persist in denial,
5373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and it will surely be a source of regret for the disbelievers.
5374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And indeed, this ˹Quran˺ is the absolute truth.
5375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So glorify the Name of your Lord, the Greatest.
5376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           A challenger has demanded a punishment bound to come
5377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    for the disbelievers—to be averted by none—
5378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             from Allah, Lord of pathways of ˹heavenly˺ ascent,
5379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹through which˺ the angels and the ˹holy˺ spirit
5380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So endure ˹this denial, O  Prophet,˺ with beautiful patience.
5381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They truly see this ˹Day˺ as impossible,
5382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   but We see it as inevitable.
5383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On that Day the sky will be like molten brass
5384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and the mountains like ˹tufts of˺ wool.
5385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And no close friend will ask ˹about˺ their friends,
5386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹although˺ they will be made to see each other. The wicked will wish to ransom themselves from the punishment of that Day by their children,
5387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 their spouses, their siblings,
5388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                their clan that sheltered them,
5389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and everyone on earth altogether, just to save themselves.
5390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But no! There will certainly be a raging Flame
5391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ripping off scalps.
5392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It will summon whoever turned their backs ˹on Allah˺ and turned away ˹from the truth˺,
5393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and gathered and hoarded ˹wealth˺.
5394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, humankind was created impatient:
5395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             distressed when touched with evil,
5396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and withholding when touched with good—
5397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         except those who pray,
5398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         consistently performing their prayers;
5399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and who give the rightful share of their wealth
5400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    to the beggar and the poor;
5401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and who ˹firmly˺ believe in the Day of Judgment;
5402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and those who fear the punishment of their Lord—
5403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹knowing that˺ none should feel secure from their Lord’s punishment—
5404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and those who guard their chastity
5405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           except with their wives or those ˹bondwomen˺ in their possession, for then they are free from blame,
5406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           but whoever seeks beyond that are the transgressors.
5407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹The faithful are˺ also those who are true to their trusts and covenants;
5408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and who are honest in their testimony;
5409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and who are ˹properly˺ observant of their prayers.
5410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      These will be in Gardens, held in honour.
5411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So what is the matter with the disbelievers that they rush ˹head-long˺ towards you ˹O Prophet˺,
5412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          from the right and the left, in groups ˹to mock you˺?
5413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Does every one of them expect to be admitted into a Garden of Bliss?
5414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But no! Indeed, they ˹already˺ know what We created them from.
5415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So, I do swear by the Lord of ˹all˺ the points of sunrise and sunset that We are truly capable
5416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  of replacing them with ˹others˺ better than them, and We cannot be prevented ˹from doing so˺.
5417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So let them indulge ˹in falsehood˺ and amuse ˹themselves˺ until they face their Day, which they have been threatened with—
5418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                the Day they will come forth from the graves swiftly, as if racing to an idol ˹for a blessing˺,
5419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          with eyes downcast, utterly covered with disgrace. That is the Day they have ˹always˺ been warned of.
5420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, We sent Noah to his people ˹saying to him˺, "Warn your people before a painful punishment comes to them."
5421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Noah proclaimed, "O my people! I am truly sent to you with a clear warning:
5422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  worship Allah ˹alone˺, fear Him, and obey me.
5423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He will forgive your sins, and delay your end until the appointed time. Indeed, when the time set by Allah comes, it cannot be delayed, if only you knew!"
5424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He cried, "My Lord! I have surely called my people day and night,
5425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  but my calls only made them run farther away.
5426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And whenever I invite them to be forgiven by You, they press their fingers into their ears, cover themselves with their clothes, persist ˹in denial˺, and act very arrogantly.
5427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then I certainly called them openly,
5428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         then I surely preached to them publicly and privately,
5429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       saying, ‘Seek your Lord’s forgiveness, ˹for˺ He is truly Most Forgiving.
5430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He will shower you with abundant rain,
5431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   supply you with wealth and children, and give you gardens as well as rivers.
5432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   What is the matter with you that you are not in awe of the Majesty of Allah,
5433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          when He truly created you in stages ˹of development˺?
5434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do you not see how Allah created seven heavens, one above the other,
5435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          placing the moon within them as a ˹reflected˺ light, and the sun as a ˹radiant˺ lamp?
5436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allah ˹alone˺ caused you to grow from the earth like a plant.
5437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then He will return you to it, and then simply bring you forth ˹again˺.
5438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Allah ˹alone˺ spread out the earth for you
5439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         to walk along its spacious pathways.’"
5440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Eventually,˺ Noah cried, "My Lord! They have certainly persisted in disobeying me, and followed ˹instead˺ those ˹elite˺ whose ˹abundant˺ wealth and children only increase them in loss,
5441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and who have devised a tremendous plot,
5442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        urging ˹their followers˺, ‘Do not abandon your idols—especially Wadd, Suwa’, Yaghûth, Ya’ûq, and Nasr.’
5443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Those ˹elite˺ have already led many astray. So ˹O Lord˺, only allow the wrongdoers to stray farther away."
5444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So because of their sins, they were drowned, then admitted into the Fire. And they found none to help them against Allah.
5445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Noah had prayed, "My Lord! Do not leave a single disbeliever on earth.
5446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For if You spare ˹any of˺ them, they will certainly mislead Your servants, and give birth only to ˹wicked˺ sinners, staunch disbelievers.
5447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My Lord! Forgive me, my parents, and whoever enters my house in faith, and ˹all˺ believing men and women. And increase the wrongdoers only in destruction."
5448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "It has been revealed to me that a group of jinn listened ˹to the Quran,˺ and said ˹to their fellow jinn˺: ‘Indeed, we have heard a wondrous recitation.
5449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It leads to Right Guidance so we believed in it, and we will never associate anyone with our Lord ˹in worship˺.
5450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Now, we believe that˺ our Lord—Exalted is His Majesty—has neither taken a mate nor offspring,
5451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and that the foolish of us used to utter ˹outrageous˺ falsehoods about Allah.
5452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We certainly thought that humans and jinn would never speak lies about Allah.
5453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And some men used to seek refuge with some jinn—so they increased each other in wickedness.
5454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And those ˹humans˺ thought, just like you ˹jinn˺, that Allah would not resurrect anyone ˹for judgment˺.
5455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹Earlier˺ we tried to reach heaven ˹for news˺, only to find it filled with stern guards and shooting stars.
5456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We used to take up positions there for eavesdropping, but whoever dares eavesdrop now will find a flare lying in wait for them.
5457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now, we have no clue whether evil is intended for those on earth, or their Lord intends for them what is right.
5458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Among us are those who are righteous and those who are less so. We have been of different factions.
5459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹Now,˺ we truly know that we cannot frustrate Allah on earth, nor can we escape from Him ˹into heaven˺.
5460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When we heard the guidance ˹of the Quran˺, we ˹readily˺ believed in it. For whoever believes in their Lord will have no fear of being denied ˹a reward˺ or wronged.
5461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And among us are those who have submitted ˹to Allah˺ and those who are deviant. So ˹as for˺ those who submitted, it is they who have attained Right Guidance.
5462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And as for the deviant, they will be fuel for Hell.’"
5463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Had the deniers followed the Right Way, We would have certainly granted them abundant rain to drink—
5464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         as a test for them. And whoever turns away from the remembrance of their Lord will be admitted by Him into an overwhelming punishment.
5465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The places of worship are ˹only˺ for Allah, so do not invoke anyone besides Him.
5466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Yet when the servant of Allah stood up calling upon Him ˹alone˺, the pagans almost swarmed over him.
5467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "I call only upon my Lord, associating none with Him ˹in worship˺."
5468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Say, "It is not in my power to harm or benefit you."
5469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, "No one can protect me from Allah ˹if I were to disobey Him˺, nor can I find any refuge other than Him.
5470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹My duty is˺ only to convey ˹the truth˺ from Allah and ˹deliver˺ His messages." And whoever disobeys Allah and His Messenger will certainly be in the Fire of Hell, to stay there for ever and ever.
5471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Only when they see what they have been threatened with will they know who is weaker in helpers and inferior in manpower.
5472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Say, "I do not know if what you are promised is near or my Lord has set a distant time for it.
5473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹He is the˺ Knower of the unseen, disclosing none of it to anyone,
5474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          except messengers of His choice. Then He appoints angel-guards before and behind them
5475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             to ensure that the messengers fully deliver the messages of their Lord—though He ˹already˺ knows all about them, and keeps account of everything."
5476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O you wrapped ˹in your clothes˺!
5477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Stand all night ˹in prayer˺ except a little—
5478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹pray˺ half the night, or a little less,
5479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or a little more—and recite the Quran ˹properly˺ in a measured way.
5480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹For˺ We will soon send upon you a weighty revelation.
5481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, worship in the night is more impactful and suitable for recitation.
5482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For during the day you are over-occupied ˹with worldly duties˺.
5483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹Always˺ remember the Name of your Lord, and devote yourself to Him wholeheartedly.
5484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹He is the˺ Lord of the east and the west. There is no god ˹worthy of worship˺ except Him, so take Him ˹alone˺ as a Trustee of Affairs.
5485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Be patient ˹O Prophet˺ with what they say, and depart from them courteously.
5486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And leave to Me the deniers—the people of luxury—and bear with them for a little while.
5487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹For˺ We certainly have shackles, a ˹raging˺ Fire,
5488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     choking food, and a painful punishment ˹in store for them˺
5489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          on the Day the earth and mountains will shake ˹violently˺, and mountains will be ˹reduced to˺ dunes of shifting sand.
5490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, We have sent to you a messenger as a witness over you, just as We sent a messenger to Pharaoh.
5491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Pharaoh disobeyed the messenger, so We seized him with a stern grip.
5492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If you ˹pagans˺ persist in disbelief, then how will you guard yourselves against ˹the horrors of˺ a Day which will turn children’s hair grey?
5493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It will ˹even˺ cause the sky to split apart. His promise ˹of judgment˺ must be fulfilled.
5494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.
5495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely your Lord knows that you ˹O Prophet˺ stand ˹in prayer˺ for nearly two-thirds of the night, or ˹sometimes˺ half of it, or a third, as do some of those with you. Allah ˹alone˺ keeps a ˹precise˺ measure of the day and night. He knows that you ˹believers˺ are unable to endure this, and has turned to you in mercy. And seek Allah’s forgiveness. Surely Allah is All-Forgiving, Most Merciful.
5496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            O you covered up ˹in your clothes˺!
5497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arise and warn ˹all˺.
5498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Revere your Lord ˹alone˺.
5499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Purify your garments.
5500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹Continue to˺ shun idols.
5501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do not do a favour expecting more ˹in return˺.
5502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And persevere for ˹the sake of˺ your Lord.
5503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹For˺ when the Trumpet will be sounded,
5504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          that will ˹truly˺ be a difficult Day—
5505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            far from easy for the disbelievers.
5506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And leave to me ˹O Prophet˺ the one I created all by Myself,
5507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and granted him abundant wealth,
5508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and children always by his side,
5509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and made life very easy for him.
5510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet he is hungry for more.
5511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But no! ˹For˺ he has been truly stubborn with Our revelations.
5512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I will make his fate unbearable,
5513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          for he contemplated and determined ˹a degrading label for the Quran˺.
5514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          May he be condemned! How evil was what he determined!
5515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                May he be condemned even more! How evil was what he determined!
5516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then he re-contemplated ˹in frustration˺,
5517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      then frowned and scowled,
5518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      then turned his back ˹on the truth˺ and acted arrogantly,
5519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  saying, "This ˹Quran˺ is nothing but magic from the ancients.
5520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is no more than the word of a man."
5521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Soon I will burn him in Hell!
5522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And what will make you realize what Hell is?
5523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It does not let anyone live or die,
5524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            scorching the skin.
5525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It is overseen by nineteen ˹keepers˺.
5526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We have appointed only ˹stern˺ angels as wardens of the Fire. And We have made their number only as a test for the disbelievers, so that the People of the Book will be certain, and the believers will increase in faith, and neither the People of the Book nor the believers will have any doubts, and so that those ˹hypocrites˺ with sickness in their hearts and the disbelievers will argue, "What does Allah mean by such a number?" In this way Allah leaves whoever He wills to stray and guides whoever He wills. And none knows the forces of your Lord except He. And this ˹description of Hell˺ is only a reminder to humanity.
5527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But no! By the moon,
5528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and the night as it retreats,
5529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the day as it breaks!
5530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely Hell is one of the mightiest catastrophes—
5531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        a warning to humankind,
5532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    to whichever of you chooses to take the lead or lag behind.
5533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Every soul will be detained for what it has done,
5534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                except the people of the right,
5535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who will be in Gardens, asking one another
5536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     about the wicked ˹who will then be asked˺:
5537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 "What has landed you in Hell?"
5538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             They will reply, "We were not of those who prayed,
5539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nor did we feed the poor.
5540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We used to indulge ˹in falsehood˺ along with others,
5541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and deny the Day of Judgment,
5542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              until the inevitable came to us."
5543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So the pleas of intercessors will be of no benefit to them.
5544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now, what is the matter with them that they are turning away from the reminder,
5545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 as if they were spooked zebras
5546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           fleeing from a lion?
5547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In fact, each one of them wishes to be given a ˹personal˺ letter ˹from Allah˺ for all ˹to read˺.
5548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But no! In fact, they do not fear the Hereafter.
5549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Enough! Surely this ˹Quran˺ is a reminder.
5550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So let whoever wills be mindful of it.
5551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But they cannot do so unless Allah wills. He ˹alone˺ is worthy to be feared and entitled to forgive.
5552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do swear by the Day of Judgment!
5553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I do swear by the self-reproaching soul!
5554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Do people think We cannot reassemble their bones?
5555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Yes ˹indeed˺! We are ˹most˺ capable of restoring ˹even˺ their very fingertips.
5556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Still people want to deny what is yet to come,
5557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            asking ˹mockingly˺, "When is this Day of Judgment?"
5558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But when the sight is stunned,
5559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and the moon is dimmed,
5560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the sun and the moon are brought together,
5561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               on that Day one will cry, "Where is the escape?"
5562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But no! There will be no refuge.
5563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  On that Day all will end up before your Lord.
5564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All will then be informed of what they have sent forth and left behind.
5565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In fact, people will testify against their own souls,
5566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         despite the excuses they come up with.
5567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do not rush your tongue trying to memorize ˹a revelation of˺ the Quran.
5568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It is certainly upon Us to ˹make you˺ memorize and recite it.
5569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So once We have recited a revelation ˹through Gabriel˺, follow its recitation ˹closely˺.
5570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then it is surely upon Us to make it clear ˹to you˺.
5571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But no! In fact, you love this fleeting world,
5572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and neglect the Hereafter.
5573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On that Day ˹some˺ faces will be bright,
5574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         looking at their Lord.
5575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ˹other˺ faces will be gloomy,
5576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             anticipating something devastating to befall them.
5577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But no! ˹Beware of the day˺ when the soul reaches the collar bone ˹as it leaves˺,
5578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and it will be said, "Is there any healer ˹who can save this life˺?"
5579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the dying person realizes it is ˹their˺ time to depart,
5580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and ˹then˺ their feet are tied together ˹in a shroud˺.
5581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On that day they will be driven to your Lord ˹alone˺.
5582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This denier neither believed nor prayed,
5583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       but persisted in denial and turned away,
5584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then went to their own people, walking boastfully.
5585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Woe to you, and more woe!
5586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Again, woe to you, and even more woe!
5587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Do people think they will be left without purpose?
5588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Were they not ˹once˺ a sperm-drop emitted?
5589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then they became a clinging clot ˹of blood˺, then He developed and perfected their form,
5590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 producing from it both sexes, male and female.
5591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Is such ˹a Creator˺ unable to bring the dead back to life?
5592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Is there not a period of time when each human is nothing yet worth mentioning?
5593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ˹For˺ indeed, We ˹alone˺ created humans from a drop of mixed fluids, ˹in order˺ to test them, so We made them hear and see.
5594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            We already showed them the Way, whether they ˹choose to˺ be grateful or ungrateful.
5595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, We have prepared for the disbelievers chains, shackles, and a blazing Fire.
5596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indeed, the virtuous will have a drink ˹of pure wine˺—flavoured with camphor—
5597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹from˺ a spring where Allah’s servants will drink, flowing at their will.
5598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They ˹are those who˺ fulfil ˹their˺ vows and fear a Day of sweeping horror,
5599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and give food—despite their desire for it—to the poor, the orphan, and the captive,
5600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹saying to themselves,˺ "We feed you only for the sake of Allah, seeking neither reward nor thanks from you.
5601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             We fear from our Lord a horribly distressful Day."
5602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Allah will deliver them from the horror of that Day, and grant them radiance and joy,
5603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and reward them for their perseverance with a Garden ˹in Paradise˺ and ˹garments of˺ silk.
5604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There they will be reclining on ˹canopied˺ couches, never seeing scorching heat or bitter cold.
5605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Garden’s shade will be right above them, and its fruit will be made very easy to reach.
5606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They will be waited on with silver vessels and cups of crystal—
5607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               crystalline silver, filled precisely as desired.
5608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they will be given a drink ˹of pure wine˺ flavoured with ginger
5609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          from a spring there, called Salsabil.
5610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They will be waited on by eternal youths. If you saw them, you would think they were scattered pearls.
5611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if you looked around, you would see ˹indescribable˺ bliss and a vast kingdom.
5612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The virtuous will be ˹dressed˺ in garments of fine green silk and rich brocade, and adorned with bracelets of silver, and their Lord will give them a purifying drink.
5613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹And they will be told,˺ "All this is surely a reward for you. Your striving has been appreciated."
5614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, it is We Who have revealed the Quran to you ˹O Prophet˺ in stages.
5615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So be patient with your Lord’s decree, and do not yield to any evildoer or ˹staunch˺ disbeliever from among them.
5616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ˹Always˺ remember the Name of your Lord morning and evening,
5617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and prostrate before Him during part of the night,
5618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Surely those ˹pagans˺ love this fleeting world, ˹totally˺ neglecting a weighty Day ahead of them.
5619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is We Who created them and perfected their ˹physical˺ form. But if We will, We can easily replace them with others.
5620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely this is a reminder. So let whoever wills take the ˹Right˺ Way to their Lord.
5621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But you cannot will ˹to do so˺ unless Allah wills. Indeed, Allah is All-Knowing, All-Wise.
5622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He admits whoever He wills into His mercy. As for the wrongdoers, He has prepared for them a painful punishment
5623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By those ˹winds˺ sent forth successively,
5624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and those blowing violently,
5625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and those scattering ˹rainclouds˺ widely!
5626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ˹by˺ those ˹angels˺ fully distinguishing ˹truth from falsehood˺,
5627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and those delivering revelation,
5628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ending excuses and giving warnings.
5629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely, what you are promised will come to pass.
5630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So when the stars are put out,
5631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and the sky is torn apart,
5632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and the mountains are blown away,
5633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the messengers’ time ˹to testify˺ comes up—
5634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           for which Day has all this been set?
5635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the Day of ˹Final˺ Decision!
5636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what will make you realize what the Day of Decision is?
5637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Did We not destroy earlier disbelievers?
5639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And We will make the later disbelievers follow them.
5640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is how We deal with the wicked.
5641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Did We not create you from a humble fluid,
5643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   placing it in a secure place
5644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       until an appointed time?
5645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We ˹perfectly˺ ordained ˹its development˺. How excellent are We in doing so!
5646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have We not made the earth a lodging
5648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   for the living and the dead,
5649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and placed upon it towering, firm mountains, and given you fresh water to drink?
5650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹The disbelievers will be told,˺ "Proceed into that ˹Fire˺ which you used to deny!
5652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Proceed into the shade ˹of smoke˺ which rises in three columns,
5653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        providing neither coolness nor shelter from the flames.
5654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indeed, it hurls sparks ˹as big˺ as huge castles,
5655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and ˹as dark˺ as black camels."
5656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On that Day they will not ˹be in a position to˺ speak,
5658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   nor will they be permitted to offer excuses.
5659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹They will be told by Allah,˺ "This is the Day of ˹Final˺ Decision: We have gathered you along with earlier disbelievers ˹for punishment˺.
5661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So if you have a scheme ˹to save yourselves˺, then use it against Me."
5662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, the righteous will be amid ˹cool˺ shade and springs
5664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and any fruit they desire.
5665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹They will be told,˺ "Eat and drink happily for what you used to do."
5666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Surely this is how We reward the good-doers.
5667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹But˺ woe on that Day to the deniers!
5668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     "Eat and enjoy yourselves for a little while, ˹for˺ you are truly wicked."
5669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When it is said to them, "Bow down ˹before Allah," they do not bow.
5671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers!
5672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So what message after this ˹Quran˺ would they believe in?
5673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What are they asking one another about?
5674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About the momentous news,
5675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      over which they disagree.
5676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! They will come to know.
5677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Again, no! They will come to know.
5678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have We not smoothed out the earth ˹like a bed˺,
5679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and ˹made˺ the mountains as ˹its˺ pegs,
5680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and created you in pairs,
5681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and made your sleep for rest,
5682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and made the night as a cover,
5683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and made the day for livelihood,
5684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and built above you seven mighty ˹heavens˺,
5685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and placed ˹in them˺ a shining lamp,
5686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and sent down from rainclouds pouring water,
5687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    producing by it grain and ˹various˺ plants,
5688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and dense orchards?
5689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, the Day of ˹Final˺ Decision is an appointed time—
5690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹it is˺ the Day the Trumpet will be blown, and you will ˹all˺ come forth in crowds.
5691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sky will be ˹split˺ open, becoming ˹many˺ gates,
5692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the mountains will be blown away, becoming ˹like˺ a mirage.
5693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indeed, Hell is lying in ambush
5694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               as a home for the transgressors,
5695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     where they will remain for ˹endless˺ ages.
5696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There they will not taste any coolness or drink,
5697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         except boiling water and ˹oozing˺ pus—
5698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              a fitting reward.
5699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For they never expected any reckoning,
5700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and totally rejected Our signs.
5701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And We have everything recorded precisely.
5702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ˹So the deniers will be told,˺ "Taste ˹the punishment˺, for all you will get from Us is more torment."
5703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, the righteous will have salvation—
5704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Gardens, vineyards,
5705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and full-bosomed maidens of equal age,
5706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and full cups ˹of pure wine˺,
5707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  never to hear any idle talk or lying therein—
5708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          a ˹fitting˺ reward as a generous gift from your Lord,
5709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         the Lord of the heavens and the earth and everything in between, the Most Compassionate. No one will dare speak to Him
5710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           on the Day the ˹holy˺ spirit and the angels will stand in ranks. None will talk, except those granted permission by the Most Compassionate and whose words are true.
5711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That Day is the ˹ultimate˺ truth. So let whoever wills take the path leading back to their Lord.
5712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We have warned you of an imminent punishment—the Day every person will see ˹the consequences of˺ what their hands have done, and the disbelievers will cry, "I wish I were dust."
5713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          By those ˹angels˺ stripping out ˹evil souls˺ harshly,
5714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and those pulling out ˹good souls˺ gently,
5715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and those gliding ˹through heavens˺ swiftly,
5716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and those taking the lead vigorously,
5717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and those conducting affairs ˹obediently˺!
5718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹Consider˺ the Day ˹when˺ the quaking Blast will come to pass,
5719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    followed by a second Blast.
5720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹The deniers’˺ hearts on that Day will be trembling ˹in horror˺,
5721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      with their eyes downcast.
5722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹But now˺ they ask ˹mockingly˺, "Will we really be restored to our former state,
5723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             even after we have been reduced to decayed bones?"
5724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Adding, "Then such a return would be a ˹total˺ loss ˹for us˺!"
5725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But indeed, it will take only one ˹mighty˺ Blast,
5726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and at once they will be above ground.
5727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Has the story of Moses reached you ˹O Prophet˺?
5728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              His Lord called him in the sacred valley of Ṭuwa,
5729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹commanding,˺ "Go to Pharaoh, for he has truly transgressed ˹all bounds˺.
5730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And say, ‘Would you ˹be willing to˺ purify yourself,
5731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and let me guide you to your Lord so that you will be in awe ˹of Him˺?’"
5732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Moses showed him the great sign,
5733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           but he denied and disobeyed ˹Allah˺,
5734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            then turned his back, striving ˹against the truth˺.
5735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then he summoned ˹his people˺ and called out,
5736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       saying, "I am your lord, the most high!"
5737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Allah overtook him, making him an example in this life and the next.
5738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Surely in this is a lesson for whoever stands in awe of ˹Allah˺.
5739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Which is harder to create: you or the sky? He built it,
5740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     raising it high and forming it flawlessly.
5741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He dimmed its night, and brought forth its daylight.
5742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As for the earth, He spread it out as well,
5743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bringing forth its water and pastures
5744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and setting the mountains firmly ˹upon it˺—
5745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       all as ˹a means of˺ sustenance for you and your animals.
5746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But, when the Supreme Disaster comes to pass—
5747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       the Day every person will remember all ˹their˺ striving,
5748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and the Hellfire will be displayed for all to see—
5749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then as for those who transgressed
5750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and preferred the ˹fleeting˺ life of this world,
5751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   the Hellfire will certainly be ˹their˺ home.
5752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And as for those who were in awe of standing before their Lord and restrained themselves from ˹evil˺ desires,
5753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Paradise will certainly be ˹their˺ home.
5754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They ask you ˹O Prophet˺ regarding the Hour, "When will it be?"
5755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But it is not for you to tell its time.
5756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That knowledge rests with your Lord ˹alone˺.
5757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Your duty is only to warn whoever is in awe of it.
5758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the Day they see it, it will be as if they had stayed ˹in the world˺ no more than one evening or its morning.
5759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He frowned and turned ˹his attention˺ away,
5760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹simply˺ because the blind man came to him ˹interrupting˺.
5761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You never know ˹O Prophet˺, perhaps he may be purified,
5762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           or he may be mindful, benefitting from the reminder.
5763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As for the one who was indifferent,
5764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       you gave him your ˹undivided˺ attention,
5765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  even though you are not to blame if he would not be purified.
5766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But as for the one who came to you, eager ˹to learn˺,
5767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       being in awe ˹of Allah˺,
5768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   you were inattentive to him.
5769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But no! This ˹revelation˺ is truly a reminder.
5770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So let whoever wills be mindful of it.
5771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It is ˹written˺ on pages held in honour—
5772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     highly esteemed, purified—
5773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 by the hands of angel-scribes,
5774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       honourable and virtuous.
5775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Condemned are ˹disbelieving˺ humans! How ungrateful they are ˹to Allah˺!
5776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        From what substance did He create them?
5777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He created them from a sperm-drop, and ordained their development.
5778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then He makes the way easy for them,
5779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         then causes them to die and be buried.
5780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then when He wills, He will resurrect them.
5781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But no! They have failed to comply with what He ordered.
5782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let people then consider their food:
5783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             how We pour down rain in abundance
5784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and meticulously split the earth open ˹for sprouts˺,
5785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   causing grain to grow in it,
5786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  as well as grapes and greens,
5787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and olives and palm trees,
5788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and dense orchards,
5789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and fruit and fodder—
5790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       all as ˹a means of˺ sustenance for you and your animals.
5791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then, when the Deafening Blast comes to pass—
5792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    on that Day every person will flee from their own siblings,
5793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and ˹even˺ their mother and father,
5794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and ˹even˺ their spouse and children.
5795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For then everyone will have enough concern of their own.
5796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On that Day ˹some˺ faces will be bright,
5797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        laughing and rejoicing,
5798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             while ˹other˺ faces will be dusty,
5799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 cast in gloom—
5800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              those are the disbelievers, the ˹wicked˺ sinners.
5801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the sun is put out,
5802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and when the stars fall down,
5803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and when the mountains are blown away,
5804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and when pregnant camels are left untended,
5805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and when wild beasts are gathered together,
5806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and when the seas are set on fire,
5807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and when the souls ˹and their bodies˺ are paired ˹once more˺,
5808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and when baby girls, buried alive, are asked
5809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         for what crime they were put to death,
5810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and when the records ˹of deeds˺ are laid open,
5811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and when the sky is stripped away,
5812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and when the Hellfire is fiercely flared up,
5813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and when Paradise is brought near—
5814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹on that Day˺ each soul will know what ˹deeds˺ it has brought along.
5815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I do swear by the receding stars
5816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         which travel and hide,
5817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the night as it falls
5818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the day as it breaks!
5819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, this ˹Quran˺ is the Word of ˹Allah delivered by Gabriel,˺ a noble messenger-angel,
5820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       full of power, held in honour by the Lord of the Throne,
5821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     obeyed there ˹in heaven˺, and trustworthy.
5822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And your fellow man is not insane.
5823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he did see that ˹angel˺ on the clear horizon,
5824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and he does not withhold ˹what is revealed to him of˺ the unseen.
5825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And this ˹Quran˺ is not the word of an outcast devil.
5826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So what ˹other˺ path would you take?
5827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely this ˹Quran˺ is only a reminder to the whole world—
5828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              to whoever of you wills to take the Straight Way.
5829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But you cannot will ˹to do so˺, except by the Will of Allah, the Lord of all worlds.
5830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the sky splits open,
5831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and when the stars fall away,
5832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and when the seas burst forth,
5833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and when the graves spill out,
5834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹then˺ each soul will know what it has sent forth or left behind.
5835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      O humanity! What has emboldened you against your Lord, the Most Generous,
5836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Who created you, fashioned you, and perfected your design,
5837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       moulding you in whatever form He willed?
5838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But no! In fact, you deny the ˹final˺ Judgment,
5839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  while you are certainly observed by vigilant,
5840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     honourable angels, recording ˹everything˺.
5841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They know whatever you do.
5842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, the virtuous will be in bliss,
5843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and the wicked will be in Hell,
5844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 burning in it on Judgment Day,
5845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and they will have no escape from it.
5846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               What will make you realize what Judgment Day is?
5847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Again, what will make you realize what Judgment Day is?
5848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹It is˺ the Day no soul will be of ˹any˺ benefit to another whatsoever, for all authority on that Day belongs to Allah ˹entirely˺.
5849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Woe to the defrauders!
5850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Those who take full measure ˹when they buy˺ from people,
5851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           but give less when they measure or weigh for buyers.
5852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Do such people not think that they will be resurrected
5853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          for a tremendous Day—
5854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 the Day ˹all˺ people will stand before the Lord of all worlds?
5855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But no! The wicked are certainly bound for Sijjin ˹in the depths of Hell˺—
5856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and what will make you realize what Sijjin is?—
5857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       a fate ˹already˺ sealed.
5858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Woe on that Day to the deniers—
5859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   those who deny Judgment Day!
5860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        None would deny it except every evildoing transgressor.
5861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whenever Our revelations are recited to them, they say, "Ancient fables!"
5862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But no! In fact, their hearts have been stained by all ˹the evil˺ they used to commit!
5863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Undoubtedly, they will be sealed off from their Lord on that Day.
5864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moreover, they will surely burn in Hell,
5865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and then be told, "This is what you used to deny."
5866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But no! The virtuous are certainly bound for ’Illiyûn ˹in elevated Gardens˺—
5867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and what will make you realize what ’Illiyûn is?—
5868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       a fate ˹already˺ sealed,
5869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         witnessed by those nearest ˹to Allah˺.
5870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely the virtuous will be in bliss,
5871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ˹seated˺ on ˹canopied˺ couches, gazing around.
5872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You will recognize on their faces the glow of delight.
5873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They will be given a drink of sealed, pure wine,
5874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       whose last sip will smell like musk. So let whoever aspires to this strive ˹diligently˺.
5875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And this drink’s flavour will come from Tasnim—
5876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       a spring from which those nearest ˹to Allah˺ will drink.
5877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indeed, the wicked used to laugh at the believers,
5878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   wink to one another whenever they passed by,
5879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and muse ˹over these exploits˺ upon returning to their own people.
5880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when they saw the faithful, they would say, "These ˹people˺ are truly astray,"
5881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  even though they were not sent as keepers over the believers.
5882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But on that Day the believers will be laughing at the disbelievers,
5883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 as they sit on ˹canopied˺ couches, looking on.
5884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ˹The believers will be asked,˺ "Have the disbelievers ˹not˺ been paid back for what they used to do?"
5885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the sky bursts open,
5886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   obeying its Lord as it must,
5887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and when the earth is flattened out,
5888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and ejects ˹all˺ its contents and becomes empty,
5889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  obeying its Lord as it must, ˹surely you will all be judged˺.
5890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O humanity! Indeed, you are labouring restlessly towards your Lord, and will ˹eventually˺ meet the consequences.
5891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As for those who are given their record in their right hand,
5892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              they will have an easy reckoning,
5893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and will return to their people joyfully.
5894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And as for those who are given their record ˹in their left hand˺ from behind their backs,
5895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       they will cry for ˹instant˺ destruction,
5896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and will burn in the blazing Fire.
5897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For they used to be prideful among their people,
5898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   thinking they would never return ˹to Allah˺.
5899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Yes ˹they would˺! Surely their Lord has always been All-Seeing of them.
5900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So, I do swear by the twilight!
5901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And by the night and whatever it envelops!
5902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And by the moon when it waxes full!
5903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             You will certainly pass from one state to another.
5904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So what is the matter with them that they do not believe,
5905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and when the Quran is recited to them, they do not bow down ˹in submission˺?
5906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In fact, the disbelievers persist in denial.
5907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Allah knows best whatever they hide.
5908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So give them good news of a painful punishment.
5909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But those who believe and do good will have a never-ending reward.
5910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             By the sky full of constellations,
5911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and the promised Day ˹of Judgment˺,
5912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and the witness and what is witnessed!
5913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Condemned are the makers of the ditch—
5914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              the fire ˹pit˺, filled with fuel—
5915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       when they sat around it,
5916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  watching what they had ˹ordered to be˺ done to the believers,
5917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who they resented for no reason other than belief in Allah—the Almighty, the Praiseworthy—
5918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹the One˺ to Whom belongs the kingdom of the heavens and earth. And Allah is a Witness over all things.
5919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those who persecute the believing men and women and then do not repent will certainly suffer the punishment of Hell and the torment of burning.
5920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely those who believe and do good will have Gardens under which rivers flow. That is the greatest triumph.
5921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Indeed, the ˹crushing˺ grip of your Lord is severe.
5922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹For˺ He is certainly the One Who originates and resurrects ˹all˺.
5923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And He is the All-Forgiving, All-Loving—
5924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lord of the Throne, the All-Glorious,
5925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Doer of whatever He wills.
5926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Has the story of the ˹destroyed˺ forces reached you ˹O Prophet˺—
5927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹the forces of˺ Pharaoh and Thamûd?
5928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yet the disbelievers ˹still˺ persist in denial.
5929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Allah encompasses them from all sides.
5930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In fact, this is a glorious Quran,
5931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹recorded˺ in a Preserved Tablet.
5932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            By the heaven and the nightly star!
5933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And what will make you realize what the nightly star is?
5934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ˹It is˺ the star of piercing brightness.
5935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There is no soul without a vigilant angel ˹recording everything˺.
5936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Let people then consider what they were created from!
5937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ˹They were˺ created from a spurting fluid,
5938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stemming from between the backbone and the ribcage.
5939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Surely He is fully capable of bringing them back ˹to life˺
5940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      on the Day all secrets will be disclosed.
5941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then one will have neither power nor ˹any˺ helper.
5942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          By the sky with its recurring cycles,
5943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       and the earth with its sprouting plants!
5944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Surely this ˹Quran˺ is a decisive word,
5945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and is not to be taken lightly.
5946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They are certainly devising ˹evil˺ plans,
5947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         but I too am planning.
5948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So bear with the disbelievers ˹O Prophet˺. Let them be for ˹just˺ a little while.
5949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Glorify the Name of your Lord, the Most High,
5950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Who created and ˹perfectly˺ fashioned ˹all˺,
5951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           and Who ordained precisely and inspired accordingly,
5952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and Who brings forth ˹green˺ pasture,
5953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             then reduces it to withered chaff.
5954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           We will have you recite ˹the Quran, O  Prophet,˺ so you will not forget ˹any of it˺,
5955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 unless Allah wills otherwise. He surely knows what is open and what is hidden.
5956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We will facilitate for you the Way of Ease.
5957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So ˹always˺ remind ˹with the Quran˺—˹even˺ if the reminder is beneficial ˹only to some˺.
5958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those in awe ˹of Allah˺ will be mindful ˹of it˺.
5959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But it will be shunned by the most wretched,
5960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            who will burn in the greatest Fire,
5961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  where they will not ˹be able to˺ live or die.
5962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Successful indeed are those who purify themselves,
5963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     remember the Name of their Lord, and pray.
5964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But you ˹deniers only˺ prefer the life of this world,
5965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      even though the Hereafter is far better and more lasting.
5966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is certainly ˹mentioned˺ in the earlier Scriptures—
5967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           the Scriptures of Abraham and Moses.
5968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Has the news of the Overwhelming Event reached you ˹O Prophet˺?
5969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On that Day ˹some˺ faces will be downcast,
5970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹totally˺ overburdened, exhausted,
5971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   burning in a scorching Fire,
5972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          left to drink from a scalding spring.
5973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They will have no food except a foul, thorny shrub,
5974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      neither nourishing nor satisfying hunger.
5975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On that Day ˹other˺ faces will be glowing with bliss,
5976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹fully˺ pleased with their striving,
5977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         in an elevated Garden,
5978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              where no idle talk will be heard.
5979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In it will be a running spring,
5980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                along with thrones raised high,
5981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and cups set at hand,
5982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and ˹fine˺ cushions lined up,
5983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and ˹splendid˺ carpets spread out.
5984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Do they not ever reflect on camels—how they were ˹masterfully˺ created;
5985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and the sky—how it was raised ˹high˺;
5986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the mountains—how they were firmly set up;
5987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and the earth—how it was levelled out?
5988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So, ˹continue to˺ remind ˹all, O  Prophet˺, for your duty is only to remind.
5989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               You are not ˹there˺ to compel them ˹to believe˺.
5990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But whoever turns away, persisting in disbelief,
5991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then Allah will inflict upon them the major punishment.
5992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely to Us is their return,
5993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        then surely with Us is their reckoning.
5994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   By the dawn,
5995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and the ten nights,
5996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and the even and the odd,
5997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and the night when it passes!
5998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Is all this ˹not˺ a sufficient oath for those who have sense?
5999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Did you not see how your Lord dealt with ’Ȃd—
6000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹the people˺ of Iram—with ˹their˺ great stature,
6001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   unmatched in any other land;
6002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and Thamûd who carved ˹their homes into˺ the rocks in the ˹Stone˺ Valley;
6003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          and the Pharaoh of mighty structures?
6004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They all transgressed throughout the land,
6005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               spreading much corruption there.
6006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So your Lord unleashed on them a scourge of punishment.
6007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ˹For˺ your Lord is truly vigilant.
6008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now, whenever a human being is tested by their Lord through ˹His˺ generosity and blessings, they boast, "My Lord has ˹deservedly˺ honoured me!"
6009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But when He tests them by limiting their provision, they protest, "My Lord has ˹undeservedly˺ humiliated me!"
6010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Absolutely not! In fact, you are not ˹even˺ gracious to the orphan,
6011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nor do you urge one another to feed the poor.
6012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And you devour ˹others’˺ inheritance greedily,
6013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and love wealth fervently.
6014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Enough! When the earth is entirely crushed over and over,
6015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and your Lord comes ˹to judge˺ with angels, rank upon rank,
6016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and Hell is brought forth on that Day—this is when every ˹disbelieving˺ person will remember ˹their own sins˺. But what is the use of remembering then?
6017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They will cry, "I wish I had sent forth ˹something good˺ for my ˹true˺ life."
6018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On that Day He will punish ˹them˺ severely, like no other,
6019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and bind ˹them˺ tightly, like no other.
6020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹Allah will say to the righteous,˺ "O tranquil soul!
6021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Return to your Lord, well pleased ˹with Him˺ and well pleasing ˹to Him˺.
6022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So join My servants,
6023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        and enter My Paradise."
6024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I do swear by this city ˹of Mecca˺—
6025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 even though you ˹O Prophet˺ are subject to abuse in this city—
6026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and by every parent and ˹their˺ child!
6027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indeed, We have created humankind in ˹constant˺ struggle.
6028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do they think that no one has power over them,
6029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    boasting, "I have wasted enormous wealth!"?
6030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Do they think that no one sees them?
6031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have We not given them two eyes,
6032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        a tongue, and two lips;
6033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and shown them the two ways ˹of right and wrong˺?
6034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If only they had attempted the challenging path ˹of goodness instead˺!
6035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And what will make you realize what ˹attempting˺ the challenging path is?
6036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is to free a slave,
6037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             or to give food in times of famine
6038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to an orphaned relative
6039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               or to a poor person in distress,
6040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and—above all—to be one of those who have faith and urge each other to perseverance and urge each other to compassion.
6041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These are the people of the right.
6042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As for those who deny Our signs, they are the people of the left.
6043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The Fire will be sealed over them.
6044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 By the sun and its brightness,
6045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and the moon as it follows it,
6046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and the day as it unveils it,
6047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and the night as it conceals it!
6048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And by heaven and ˹the One˺ Who built it,
6049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and the earth and ˹the One˺ Who spread it!
6050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And by the soul and ˹the One˺ Who fashioned it,
6051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      then with ˹the knowledge of˺ right and wrong inspired it!
6052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Successful indeed is the one who purifies their soul,
6053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         and doomed is the one who corrupts it!
6054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thamûd rejected ˹the truth˺ out of arrogance,
6055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               when the most wicked of them was roused ˹to kill the she-camel˺.
6056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But the messenger of Allah warned them, "˹Do not disturb˺ Allah’s camel and her ˹turn to˺ drink!"
6057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Still they defied him and slaughtered her. So their Lord crushed them for their crime, levelling all to the ground.
6058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He has no fear of consequences.
6059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   By the night when it covers,
6060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and the day when it shines!
6061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And by ˹the One˺ Who created male and female!
6062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Surely the ends you strive for are diverse.
6063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As for the one who is charitable, mindful ˹of Allah˺,
6064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and ˹firmly˺ believes in the finest reward,
6065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We will facilitate for them the Way of Ease.
6066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And as for the one who is stingy, indifferent ˹to Allah˺,
6067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and ˹staunchly˺ denies the finest reward,
6068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We will facilitate for them the path of hardship.
6069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And their wealth will be of no benefit to them when they tumble ˹into Hell˺.
6070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It is certainly upon Us ˹alone˺ to show ˹the way to˺ guidance.
6071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And surely to Us ˹alone˺ belong this life and the next.
6072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And so I have warned you of a raging Fire,
6073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              in which none will burn except the most wretched—
6074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        who deny and turn away.
6075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the righteous will be spared from it—
6076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   who donate ˹some of˺ their wealth only to purify themselves,
6077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           not in return for someone’s favours,
6078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         but seeking the pleasure of their Lord, the Most High.
6079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They will certainly be pleased.
6080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       By the morning sunlight,
6081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and the night when it falls still!
6082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Your Lord ˹O Prophet˺ has not abandoned you, nor has He become hateful ˹of you˺.
6083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the next life is certainly far better for you than this one.
6084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ˹surely˺ your Lord will give so much to you that you will be pleased.
6085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Did He not find you as an orphan then sheltered you?
6086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Did He not find you unguided then guided you?
6087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And did He not find you needy then satisfied your needs?
6088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So do not oppress the orphan,
6089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nor repulse the beggar.
6090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And proclaim the blessings of your Lord.
6091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Have We not uplifted your heart for you ˹O Prophet˺,
6092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     relieved you of the burden
6093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         which weighed so heavily on your back,
6094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and elevated your renown for you?
6095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So, surely with hardship comes ease.
6096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Surely with ˹that˺ hardship comes ˹more˺ ease.
6097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So once you have fulfilled ˹your duty˺, strive ˹in devotion˺,
6098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        turning to your Lord ˹alone˺ with hope.
6099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       By the fig and the olive ˹of Jerusalem˺,
6100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and Mount Sinai,
6101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and this secure city ˹of Mecca˺!
6102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, We created humans in the best form.
6103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But We will reduce them to the lowest of the low ˹in Hell˺,
6104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     except those who believe and do good—they will have a never-ending reward.
6105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now, what makes you deny the ˹final˺ Judgment?
6106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is Allah not the most just of all judges?
6107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Read, ˹O Prophet,˺ in the Name of your Lord Who created—
6108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           created humans from a clinging clot.
6109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Read! And your Lord is the Most Generous,
6110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who taught by the pen—
6111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            taught humanity what they knew not.
6112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Most certainly, one exceeds all bounds
6113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      once they think they are self-sufficient.
6114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ˹But˺ surely to your Lord is the return ˹of all˺.
6115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Have you seen the man who prevents
6116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              a servant ˹of Ours˺ from praying?
6117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What if this ˹servant˺ is ˹rightly˺ guided,
6118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   or encourages righteousness?
6119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What if that ˹man˺ persists in denial and turns away?
6120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Does he not know that Allah sees ˹all˺?
6121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But no! If he does not desist, We will certainly drag him by the forelock—
6122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      a lying, sinful forelock.
6123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So let him call his associates.
6124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We will call the wardens of Hell.
6125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Again, no! Never obey him ˹O Prophet˺! Rather, ˹continue to˺ prostrate and draw near ˹to Allah˺.
6126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Indeed, ˹it is˺ We ˹Who˺ sent this ˹Quran˺ down on the Night of Glory.
6127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And what will make you realize what the Night of Glory is?
6128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Night of Glory is better than a thousand months.
6129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That night the angels and the ˹holy˺ spirit descend, by the permission of their Lord, for every ˹decreed˺ matter.
6130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It is all peace until the break of dawn.
6131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The disbelievers from the People of the Book and the polytheists were not going to desist ˹from disbelief˺ until the clear proof came to them:
6132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   a messenger from Allah, reciting scrolls of ˹utmost˺ purity,
6133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               containing upright commandments.
6134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It was not until this clear proof came to the People of the Book that they became divided ˹about his prophethood˺—
6135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    even though they were only commanded to worship Allah ˹alone˺ with sincere devotion to Him in all uprightness, establish prayer, and pay alms-tax. That is the upright Way.
6136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Indeed, those who disbelieve from the People of the Book and the polytheists will be in the Fire of Hell, to stay there forever. They are the worst of ˹all˺ beings.
6137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Indeed, those who believe and do good—they are the best of ˹all˺ beings.
6138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Their reward with their Lord will be Gardens of Eternity, under which rivers flow, to stay there for ever and ever. Allah is pleased with them and they are pleased with Him. This is ˹only˺ for those in awe of their Lord.
6139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When the earth is shaken ˹in˺ its ultimate quaking,
6140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              and when the earth throws out ˹all˺ its contents,
6141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  and humanity cries, "What is wrong with it?"—
6142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 on that Day the earth will recount everything,
6143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  having been inspired by your Lord ˹to do so˺.
6144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              On that Day people will proceed in separate groups to be shown ˹the consequences of˺ their deeds.
6145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So whoever does an atom’s weight of good will see it.
6146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And whoever does an atom’s weight of evil will see it.
6147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ’ By the galloping, panting horses,
6148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    striking sparks of fire ˹with their hoofs˺,
6149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       launching raids at dawn,
6150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stirring up ˹clouds of˺ dust,
6151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 and penetrating into the heart of enemy lines!
6152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely humankind is ungrateful to their Lord—
6153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and they certainly attest to this—
6154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   and they are truly extreme in their love of ˹worldly˺ gains.
6155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Do they not know that when the contents of the graves will be spilled out,
6156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               and the secrets of the hearts will be laid bare—
6157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            surely their Lord is All-Aware of them on that Day.
6158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Striking Disaster!
6159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 What is the Striking Disaster?
6160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And what will make you realize what the Striking Disaster is?
6161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ˹It is˺ the Day people will be like scattered moths,
6162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and the mountains will be like carded wool.
6163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So as for those whose scale is heavy ˹with good deeds˺,
6164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               they will be in a life of bliss.
6165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as for those whose scale is light,
6166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  their home will be the abyss.
6167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And what will make you realize what that is?
6168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ˹It is˺ a scorching Fire.
6169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Competition for more ˹gains˺ diverts you ˹from Allah˺,
6170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             until you end up in ˹your˺ graves.
6171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But no! You will soon come to know.
6172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Again, no! You will soon come to know.
6173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Indeed, if you were to know ˹your fate˺ with certainty, ˹you would have acted differently˺.
6174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ˹But˺ you will surely see the Hellfire.
6175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Again, you will surely see it with the eye of certainty.
6176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then, on that Day, you will definitely be questioned about ˹your worldly˺ pleasures.
6177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By the ˹passage of˺ time!
6178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely humanity is in ˹grave˺ loss,
6179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   except those who have faith, do good, and urge each other to the truth, and urge each other to perseverance.
6180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Woe to every backbiter, slanderer,
6181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      who amasses wealth ˹greedily˺ and counts it ˹repeatedly˺,
6182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            thinking that their wealth will make them immortal!
6183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Not at all! Such a person will certainly be tossed into the Crusher.
6184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And what will make you realize what the Crusher is?
6185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ˹It is˺ Allah’s kindled Fire,
6186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   which rages over the hearts.
6187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   It will be sealed over them,
6188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ˹tightly secured˺ with long braces.
6189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Have you not seen ˹O Prophet˺ how your Lord dealt with the Army of the Elephant?
6190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Did He not frustrate their scheme?
6191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For He sent against them flocks of birds,
6192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    that pelted them with stones of baked clay,
6193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             leaving them like chewed up straw.
6194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ˹At least˺ for ˹the favour of˺ making Quraysh habitually secure—
6195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secure in their trading caravan ˹to Yemen˺ in the winter and ˹Syria˺ in the summer—
6196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              let them worship the Lord of this ˹Sacred˺ House,
6197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Who has fed them against hunger and made them secure against fear.
6198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have you seen the one who denies the ˹final˺ Judgment?
6199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That is the one who repulses the orphan,
6200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and does not encourage the feeding of the poor.
6201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So woe to those ˹hypocrites˺ who pray
6202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            yet are unmindful of their prayers;
6203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     those who ˹only˺ show off,
6204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and refuse to give ˹even the simplest˺ aid.
6205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Indeed, We have granted you ˹O Prophet˺ abundant goodness.
6206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So pray and sacrifice to your Lord ˹alone˺.
6207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Only the one who hates you is truly cut off ˹from any goodness˺.
6208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Say, ˹O Prophet,˺ "O you disbelievers!
6209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             I do not worship what you worship,
6210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             nor do you worship what I worship.
6211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I will never worship what you worship,
6212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nor will you ever worship what I worship.
6213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         You have your way, and I have my Way."
6214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Allah’s ˹ultimate˺ help comes and the victory ˹over Mecca is achieved˺,
6215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            and you ˹O Prophet˺ see the people embracing Allah’s Way in crowds,
6216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              then glorify the praises of your Lord and seek His forgiveness, for certainly He is ever Accepting of Repentance.
6217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    May the hands of Abu Lahab perish, and he ˹himself˺ perish!
6218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Neither his wealth nor ˹worldly˺ gains will benefit him.
6219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He will burn in a flaming Fire,
6220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      and ˹so will˺ his wife, the carrier of ˹thorny˺ kindling,
6221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  around her neck will be a rope of palm-fibre.
6222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Say, ˹O Prophet,˺ "He is Allah—One ˹and Indivisible˺;
6223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Allah—the Sustainer ˹needed by all˺.
6224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He has never had offspring, nor was He born.
6225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there is none comparable to Him."
6226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Say, ˹O Prophet,˺ "I seek refuge in the Lord of the daybreak
6227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      from the evil of whatever He has created,
6228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             and from the evil of the night when it grows dark,
6229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     and from the evil of those ˹witches casting spells by˺ blowing onto knots,
6230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and from the evil of an envier when they envy."
6231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Say, ˹O Prophet,˺ "I seek refuge in the Lord of humankind,
6232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       the Master of humankind,
6233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          the God of humankind,
6234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        from the evil of the lurking whisperer—
6235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     who whispers into the hearts of humankind—
6236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                from among jinn and humankind."
6237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In the beginning God created the heaven and the earth.
6238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters.
6239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God said, Let there be light: and there was light.
6240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And God saw the light, that it was good: and God divided the light from the darkness.
6241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.
6242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.
6243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so.
6244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And God called the firmament Heaven. And the evening and the morning were the second day.
6245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so.
6246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And God called the dry land Earth; and the gathering together of the waters called he Seas: and God saw that it was good.
6247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And God said, Let the earth bring forth grass, the herb yielding seed, and the fruit tree yielding fruit after his kind, whose seed is in itself, upon the earth: and it was so.
6248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the earth brought forth grass, and herb yielding seed after his kind, and the tree yielding fruit, whose seed was in itself, after his kind: and God saw that it was good.
6249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the evening and the morning were the third day.
6250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And God said, Let there be lights in the firmament of the heaven to divide the day from the night; and let them be for signs, and for seasons, and for days, and years:
6251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And let them be for lights in the firmament of the heaven to give light upon the earth: and it was so.
6252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And God made two great lights; the greater light to rule the day, and the lesser light to rule the night: he made the stars also.
6253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And God set them in the firmament of the heaven to give light upon the earth,
6254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And to rule over the day and over the night, and to divide the light from the darkness: and God saw that it was good.
6255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the evening and the morning were the fourth day.
6256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And God said, Let the waters bring forth abundantly the moving creature that hath life, and fowl that may fly above the earth in the open firmament of heaven.
6257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And God created great whales, and every living creature that moveth, which the waters brought forth abundantly, after their kind, and every winged fowl after his kind: and God saw that it was good.
6258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And God blessed them, saying, Be fruitful, and multiply, and fill the waters in the seas, and let fowl multiply in the earth.
6259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the evening and the morning were the fifth day.
6260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And God said, Let the earth bring forth the living creature after his kind, cattle, and creeping thing, and beast of the earth after his kind: and it was so.
6261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And God made the beast of the earth after his kind, and cattle after their kind, and every thing that creepeth upon the earth after his kind: and God saw that it was good.
6262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And God said, Let us make man in our image, after our likeness: and let them have dominion over the fish of the sea, and over the fowl of the air, and over the cattle, and over all the earth, and over every creeping thing that creepeth upon the earth.
6263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So God created man in his own image, in the image of God created he him; male and female created he them.
6264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God blessed them, and God said unto them, Be fruitful, and multiply, and replenish the earth, and subdue it: and have dominion over the fish of the sea, and over the fowl of the air, and over every living thing that moveth upon the earth.
6265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And God said, Behold, I have given you every herb bearing seed, which is upon the face of all the earth, and every tree, in the which is the fruit of a tree yielding seed; to you it shall be for meat.
6266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And to every beast of the earth, and to every fowl of the air, and to every thing that creepeth upon the earth, wherein there is life, I have given every green herb for meat: and it was so.
6267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And God saw every thing that he had made, and, behold, it was very good. And the evening and the morning were the sixth day.
6268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus the heavens and the earth were finished, and all the host of them.
6269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And on the seventh day God ended his work which he had made; and he rested on the seventh day from all his work which he had made.
6270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God blessed the seventh day, and sanctified it: because that in it he had rested from all his work which God created and made.
6271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These are the generations of the heavens and of the earth when they were created, in the day that the LORD God made the earth and the heavens,
6272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And every plant of the field before it was in the earth, and every herb of the field before it grew: for the LORD God had not caused it to rain upon the earth, and there was not a man to till the ground.
6273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But there went up a mist from the earth, and watered the whole face of the ground.
6274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD God formed man of the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul.
6275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD God planted a garden eastward in Eden; and there he put the man whom he had formed.
6276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And out of the ground made the LORD God to grow every tree that is pleasant to the sight, and good for food; the tree of life also in the midst of the garden, and the tree of knowledge of good and evil.
6277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And a river went out of Eden to water the garden; and from thence it was parted, and became into four heads.
6278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The name of the first is Pison: that is it which compasseth the whole land of Havilah, where there is gold;
6279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the gold of that land is good: there is bdellium and the onyx stone.
6280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the name of the second river is Gihon: the same is it that compasseth the whole land of Ethiopia.
6281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the name of the third river is Hiddekel: that is it which goeth toward the east of Assyria. And the fourth river is Euphrates.
6282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD God took the man, and put him into the garden of Eden to dress it and to keep it.
6283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD God commanded the man, saying, Of every tree of the garden thou mayest freely eat:
6284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But of the tree of the knowledge of good and evil, thou shalt not eat of it: for in the day that thou eatest thereof thou shalt surely die.
6285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD God said, It is not good that the man should be alone; I will make him an help meet for him.
6286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And out of the ground the LORD God formed every beast of the field, and every fowl of the air; and brought them unto Adam to see what he would call them: and whatsoever Adam called every living creature, that was the name thereof.
6287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Adam gave names to all cattle, and to the fowl of the air, and to every beast of the field; but for Adam there was not found an help meet for him.
6288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD God caused a deep sleep to fall upon Adam, and he slept: and he took one of his ribs, and closed up the flesh instead thereof;
6289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the rib, which the LORD God had taken from man, made he a woman, and brought her unto the man.
6290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Adam said, This is now bone of my bones, and flesh of my flesh: she shall be called Woman, because she was taken out of Man.
6291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore shall a man leave his father and his mother, and shall cleave unto his wife: and they shall be one flesh.
6292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they were both naked, the man and his wife, and were not ashamed.
6293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now the serpent was more subtil than any beast of the field which the LORD God had made. And he said unto the woman, Yea, hath God said, Ye shall not eat of every tree of the garden?
6294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the woman said unto the serpent, We may eat of the fruit of the trees of the garden:
6295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But of the fruit of the tree which is in the midst of the garden, God hath said, Ye shall not eat of it, neither shall ye touch it, lest ye die.
6296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the serpent said unto the woman, Ye shall not surely die:
6297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For God doth know that in the day ye eat thereof, then your eyes shall be opened, and ye shall be as gods, knowing good and evil.
6298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the woman saw that the tree was good for food, and that it was pleasant to the eyes, and a tree to be desired to make one wise, she took of the fruit thereof, and did eat, and gave also unto her husband with her; and he did eat.
6299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the eyes of them both were opened, and they knew that they were naked; and they sewed fig leaves together, and made themselves aprons.
6300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they heard the voice of the LORD God walking in the garden in the cool of the day: and Adam and his wife hid themselves from the presence of the LORD God amongst the trees of the garden.
6301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD God called unto Adam, and said unto him, Where art thou?
6302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, I heard thy voice in the garden, and I was afraid, because I was naked; and I hid myself.
6303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said, Who told thee that thou wast naked? Hast thou eaten of the tree, whereof I commanded thee that thou shouldest not eat?
6304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the man said, The woman whom thou gavest to be with me, she gave me of the tree, and I did eat.
6305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD God said unto the woman, What is this that thou hast done? And the woman said, The serpent beguiled me, and I did eat.
6306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD God said unto the serpent, Because thou hast done this, thou art cursed above all cattle, and above every beast of the field; upon thy belly shalt thou go, and dust shalt thou eat all the days of thy life:
6307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I will put enmity between thee and the woman, and between thy seed and her seed; it shall bruise thy head, and thou shalt bruise his heel.
6308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Unto the woman he said, I will greatly multiply thy sorrow and thy conception; in sorrow thou shalt bring forth children; and thy desire shall be to thy husband, and he shall rule over thee.
6309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And unto Adam he said, Because thou hast hearkened unto the voice of thy wife, and hast eaten of the tree, of which I commanded thee, saying, Thou shalt not eat of it: cursed is the ground for thy sake; in sorrow shalt thou eat of it all the days of thy life;
6310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thorns also and thistles shall it bring forth to thee; and thou shalt eat the herb of the field;
6311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In the sweat of thy face shalt thou eat bread, till thou return unto the ground; for out of it wast thou taken: for dust thou art, and unto dust shalt thou return.
6312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Adam called his wife's name Eve; because she was the mother of all living.
6313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Unto Adam also and to his wife did the LORD God make coats of skins, and clothed them.
6314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD God said, Behold, the man is become as one of us, to know good and evil: and now, lest he put forth his hand, and take also of the tree of life, and eat, and live for ever:
6315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore the LORD God sent him forth from the garden of Eden, to till the ground from whence he was taken.
6316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So he drove out the man; and he placed at the east of the garden of Eden Cherubims, and a flaming sword which turned every way, to keep the way of the tree of life.
6317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Adam knew Eve his wife; and she conceived, and bare Cain, and said, I have gotten a man from the LORD.
6318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she again bare his brother Abel. And Abel was a keeper of sheep, but Cain was a tiller of the ground.
6319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And in process of time it came to pass, that Cain brought of the fruit of the ground an offering unto the LORD.
6320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abel, he also brought of the firstlings of his flock and of the fat thereof. And the LORD had respect unto Abel and to his offering:
6321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But unto Cain and to his offering he had not respect. And Cain was very wroth, and his countenance fell.
6322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Cain, Why art thou wroth? and why is thy countenance fallen?
6323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto thee shall be his desire, and thou shalt rule over him.
6324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Cain talked with Abel his brother: and it came to pass, when they were in the field, that Cain rose up against Abel his brother, and slew him.
6325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother's keeper?
6326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said, What hast thou done? the voice of thy brother's blood crieth unto me from the ground.
6327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And now art thou cursed from the earth, which hath opened her mouth to receive thy brother's blood from thy hand;
6328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth.
6329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Cain said unto the LORD, My punishment is greater than I can bear.
6330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, thou hast driven me out this day from the face of the earth; and from thy face shall I be hid; and I shall be a fugitive and a vagabond in the earth; and it shall come to pass, that every one that findeth me shall slay me.
6331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto him, Therefore whosoever slayeth Cain, vengeance shall be taken on him sevenfold. And the LORD set a mark upon Cain, lest any finding him should kill him.
6332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Cain went out from the presence of the LORD, and dwelt in the land of Nod, on the east of Eden.
6333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Cain knew his wife; and she conceived, and bare Enoch: and he builded a city, and called the name of the city, after the name of his son, Enoch.
6334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And unto Enoch was born Irad: and Irad begat Mehujael: and Mehujael begat Methusael: and Methusael begat Lamech.
6335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Lamech took unto him two wives: the name of the one was Adah, and the name of the other Zillah.
6336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Adah bare Jabal: he was the father of such as dwell in tents, and of such as have cattle.
6337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his brother's name was Jubal: he was the father of all such as handle the harp and organ.
6338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Zillah, she also bare Tubalcain, an instructer of every artificer in brass and iron: and the sister of Tubalcain was Naamah.
6339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Lamech said unto his wives, Adah and Zillah, Hear my voice; ye wives of Lamech, hearken unto my speech: for I have slain a man to my wounding, and a young man to my hurt.
6340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If Cain shall be avenged sevenfold, truly Lamech seventy and sevenfold.
6341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Adam knew his wife again; and she bare a son, and called his name Seth: For God, said she, hath appointed me another seed instead of Abel, whom Cain slew.
6342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And to Seth, to him also there was born a son; and he called his name Enos: then began men to call upon the name of the LORD.
6343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is the book of the generations of Adam. In the day that God created man, in the likeness of God made he him;
6344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Male and female created he them; and blessed them, and called their name Adam, in the day when they were created.
6345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Adam lived an hundred and thirty years, and begat a son in his own likeness, and after his image; and called his name Seth:
6346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the days of Adam after he had begotten Seth were eight hundred years: and he begat sons and daughters:
6347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the days that Adam lived were nine hundred and thirty years: and he died.
6348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Seth lived an hundred and five years, and begat Enos:
6349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Seth lived after he begat Enos eight hundred and seven years, and begat sons and daughters:
6350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the days of Seth were nine hundred and twelve years: and he died.
6351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Enos lived ninety years, and begat Cainan:
6352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Enos lived after he begat Cainan eight hundred and fifteen years, and begat sons and daughters:
6353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the days of Enos were nine hundred and five years: and he died.
6354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Cainan lived seventy years and begat Mahalaleel:
6355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Cainan lived after he begat Mahalaleel eight hundred and forty years, and begat sons and daughters:
6356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the days of Cainan were nine hundred and ten years: and he died.
6357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Mahalaleel lived sixty and five years, and begat Jared:
6358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Mahalaleel lived after he begat Jared eight hundred and thirty years, and begat sons and daughters:
6359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the days of Mahalaleel were eight hundred ninety and five years: and he died.
6360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jared lived an hundred sixty and two years, and he begat Enoch:
6361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jared lived after he begat Enoch eight hundred years, and begat sons and daughters:
6362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the days of Jared were nine hundred sixty and two years: and he died.
6363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Enoch lived sixty and five years, and begat Methuselah:
6364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Enoch walked with God after he begat Methuselah three hundred years, and begat sons and daughters:
6365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the days of Enoch were three hundred sixty and five years:
6366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Enoch walked with God: and he was not; for God took him.
6367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Methuselah lived an hundred eighty and seven years, and begat Lamech.
6368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Methuselah lived after he begat Lamech seven hundred eighty and two years, and begat sons and daughters:
6369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the days of Methuselah were nine hundred sixty and nine years: and he died.
6370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Lamech lived an hundred eighty and two years, and begat a son:
6371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he called his name Noah, saying, This same shall comfort us concerning our work and toil of our hands, because of the ground which the LORD hath cursed.
6372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Lamech lived after he begat Noah five hundred ninety and five years, and begat sons and daughters:
6373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the days of Lamech were seven hundred seventy and seven years: and he died.
6374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Noah was five hundred years old: and Noah begat Shem, Ham, and Japheth.
6375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when men began to multiply on the face of the earth, and daughters were born unto them,
6376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That the sons of God saw the daughters of men that they were fair; and they took them wives of all which they chose.
6377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said, My spirit shall not always strive with man, for that he also is flesh: yet his days shall be an hundred and twenty years.
6378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There were giants in the earth in those days; and also after that, when the sons of God came in unto the daughters of men, and they bare children to them, the same became mighty men which were of old, men of renown.
6379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And God saw that the wickedness of man was great in the earth, and that every imagination of the thoughts of his heart was only evil continually.
6380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it repented the LORD that he had made man on the earth, and it grieved him at his heart.
6381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said, I will destroy man whom I have created from the face of the earth; both man, and beast, and the creeping thing, and the fowls of the air; for it repenteth me that I have made them.
6382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But Noah found grace in the eyes of the LORD.
6383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               These are the generations of Noah: Noah was a just man and perfect in his generations, and Noah walked with God.
6384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Noah begat three sons, Shem, Ham, and Japheth.
6385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The earth also was corrupt before God, and the earth was filled with violence.
6386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And God looked upon the earth, and, behold, it was corrupt; for all flesh had corrupted his way upon the earth.
6387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And God said unto Noah, The end of all flesh is come before me; for the earth is filled with violence through them; and, behold, I will destroy them with the earth.
6388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Make thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch.
6389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And this is the fashion which thou shalt make it of: The length of the ark shall be three hundred cubits, the breadth of it fifty cubits, and the height of it thirty cubits.
6390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A window shalt thou make to the ark, and in a cubit shalt thou finish it above; and the door of the ark shalt thou set in the side thereof; with lower, second, and third stories shalt thou make it.
6391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And, behold, I, even I, do bring a flood of waters upon the earth, to destroy all flesh, wherein is the breath of life, from under heaven; and every thing that is in the earth shall die.
6392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But with thee will I establish my covenant; and thou shalt come into the ark, thou, and thy sons, and thy wife, and thy sons' wives with thee.
6393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And of every living thing of all flesh, two of every sort shalt thou bring into the ark, to keep them alive with thee; they shall be male and female.
6394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of fowls after their kind, and of cattle after their kind, of every creeping thing of the earth after his kind, two of every sort shall come unto thee, to keep them alive.
6395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And take thou unto thee of all food that is eaten, and thou shalt gather it to thee; and it shall be for food for thee, and for them.
6396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thus did Noah; according to all that God commanded him, so did he.
6397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Noah, Come thou and all thy house into the ark; for thee have I seen righteous before me in this generation.
6398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of every clean beast thou shalt take to thee by sevens, the male and his female: and of beasts that are not clean by two, the male and his female.
6399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of fowls also of the air by sevens, the male and the female; to keep seed alive upon the face of all the earth.
6400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For yet seven days, and I will cause it to rain upon the earth forty days and forty nights; and every living substance that I have made will I destroy from off the face of the earth.
6401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Noah did according unto all that the LORD commanded him.
6402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Noah was six hundred years old when the flood of waters was upon the earth.
6403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Noah went in, and his sons, and his wife, and his sons' wives with him, into the ark, because of the waters of the flood.
6404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of clean beasts, and of beasts that are not clean, and of fowls, and of every thing that creepeth upon the earth,
6405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          There went in two and two unto Noah into the ark, the male and the female, as God had commanded Noah.
6406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass after seven days, that the waters of the flood were upon the earth.
6407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the six hundredth year of Noah's life, in the second month, the seventeenth day of the month, the same day were all the fountains of the great deep broken up, and the windows of heaven were opened.
6408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the rain was upon the earth forty days and forty nights.
6409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In the selfsame day entered Noah, and Shem, and Ham, and Japheth, the sons of Noah, and Noah's wife, and the three wives of his sons with them, into the ark;
6410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They, and every beast after his kind, and all the cattle after their kind, and every creeping thing that creepeth upon the earth after his kind, and every fowl after his kind, every bird of every sort.
6411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they went in unto Noah into the ark, two and two of all flesh, wherein is the breath of life.
6412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they that went in, went in male and female of all flesh, as God had commanded him: and the LORD shut him in.
6413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the flood was forty days upon the earth; and the waters increased, and bare up the ark, and it was lift up above the earth.
6414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the waters prevailed, and were increased greatly upon the earth; and the ark went upon the face of the waters.
6415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the waters prevailed exceedingly upon the earth; and all the high hills, that were under the whole heaven, were covered.
6416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Fifteen cubits upward did the waters prevail; and the mountains were covered.
6417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all flesh died that moved upon the earth, both of fowl, and of cattle, and of beast, and of every creeping thing that creepeth upon the earth, and every man:
6418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           All in whose nostrils was the breath of life, of all that was in the dry land, died.
6419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And every living substance was destroyed which was upon the face of the ground, both man, and cattle, and the creeping things, and the fowl of the heaven; and they were destroyed from the earth: and Noah only remained alive, and they that were with him in the ark.
6420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the waters prevailed upon the earth an hundred and fifty days.
6421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God remembered Noah, and every living thing, and all the cattle that was with him in the ark: and God made a wind to pass over the earth, and the waters assuaged;
6422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The fountains also of the deep and the windows of heaven were stopped, and the rain from heaven was restrained;
6423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the waters returned from off the earth continually: and after the end of the hundred and fifty days the waters were abated.
6424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the ark rested in the seventh month, on the seventeenth day of the month, upon the mountains of Ararat.
6425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the waters decreased continually until the tenth month: in the tenth month, on the first day of the month, were the tops of the mountains seen.
6426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass at the end of forty days, that Noah opened the window of the ark which he had made:
6427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he sent forth a raven, which went forth to and fro, until the waters were dried up from off the earth.
6428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also he sent forth a dove from him, to see if the waters were abated from off the face of the ground;
6429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the dove found no rest for the sole of her foot, and she returned unto him into the ark, for the waters were on the face of the whole earth: then he put forth his hand, and took her, and pulled her in unto him into the ark.
6430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he stayed yet other seven days; and again he sent forth the dove out of the ark;
6431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the dove came in to him in the evening; and, lo, in her mouth was an olive leaf plucked off: so Noah knew that the waters were abated from off the earth.
6432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he stayed yet other seven days; and sent forth the dove; which returned not again unto him any more.
6433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass in the six hundredth and first year, in the first month, the first day of the month, the waters were dried up from off the earth: and Noah removed the covering of the ark, and looked, and, behold, the face of the ground was dry.
6434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And in the second month, on the seven and twentieth day of the month, was the earth dried.
6435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And God spake unto Noah, saying,
6436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Go forth of the ark, thou, and thy wife, and thy sons, and thy sons' wives with thee.
6437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Bring forth with thee every living thing that is with thee, of all flesh, both of fowl, and of cattle, and of every creeping thing that creepeth upon the earth; that they may breed abundantly in the earth, and be fruitful, and multiply upon the earth.
6438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Noah went forth, and his sons, and his wife, and his sons' wives with him:
6439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every beast, every creeping thing, and every fowl, and whatsoever creepeth upon the earth, after their kinds, went forth out of the ark.
6440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Noah builded an altar unto the LORD; and took of every clean beast, and of every clean fowl, and offered burnt offerings on the altar.
6441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD smelled a sweet savor; and the LORD said in his heart, I will not again curse the ground any more for man's sake; for the imagination of man's heart is evil from his youth; neither will I again smite any more every thing living, as I have done.
6442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  While the earth remaineth, seedtime and harvest, and cold and heat, and summer and winter, and day and night shall not cease.
6443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And God blessed Noah and his sons, and said unto them, Be fruitful, and multiply, and replenish the earth.
6444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the fear of you and the dread of you shall be upon every beast of the earth, and upon every fowl of the air, upon all that moveth upon the earth, and upon all the fishes of the sea; into your hand are they delivered.
6445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Every moving thing that liveth shall be meat for you; even as the green herb have I given you all things.
6446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But flesh with the life thereof, which is the blood thereof, shall ye not eat.
6447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And surely your blood of your lives will I require; at the hand of every beast will I require it, and at the hand of man; at the hand of every man's brother will I require the life of man.
6448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Whoso sheddeth man's blood, by man shall his blood be shed: for in the image of God made he man.
6449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And you, be ye fruitful, and multiply; bring forth abundantly in the earth, and multiply therein.
6450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And God spake unto Noah, and to his sons with him, saying,
6451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I, behold, I establish my covenant with you, and with your seed after you;
6452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And with every living creature that is with you, of the fowl, of the cattle, and of every beast of the earth with you; from all that go out of the ark, to every beast of the earth.
6453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I will establish my covenant with you, neither shall all flesh be cut off any more by the waters of a flood; neither shall there any more be a flood to destroy the earth.
6454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God said, This is the token of the covenant which I make between me and you and every living creature that is with you, for perpetual generations:
6455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I do set my bow in the cloud, and it shall be for a token of a covenant between me and the earth.
6456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it shall come to pass, when I bring a cloud over the earth, that the bow shall be seen in the cloud:
6457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will remember my covenant, which is between me and you and every living creature of all flesh; and the waters shall no more become a flood to destroy all flesh.
6458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the bow shall be in the cloud; and I will look upon it, that I may remember the everlasting covenant between God and every living creature of all flesh that is upon the earth.
6459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And God said unto Noah, This is the token of the covenant, which I have established between me and all flesh that is upon the earth.
6460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Noah, that went forth of the ark, were Shem, and Ham, and Japheth: and Ham is the father of Canaan.
6461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These are the three sons of Noah: and of them was the whole earth overspread.
6462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Noah began to be an husbandman, and he planted a vineyard:
6463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he drank of the wine, and was drunken; and he was uncovered within his tent.
6464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Ham, the father of Canaan, saw the nakedness of his father, and told his two brethren without.
6465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Shem and Japheth took a garment, and laid it upon both their shoulders, and went backward, and covered the nakedness of their father; and their faces were backward, and they saw not their father's nakedness.
6466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Noah awoke from his wine, and knew what his younger son had done unto him.
6467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said, Cursed be Canaan; a servant of servants shall he be unto his brethren.
6468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Blessed be the LORD God of Shem; and Canaan shall be his servant.
6469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           God shall enlarge Japheth, and he shall dwell in the tents of Shem; and Canaan shall be his servant.
6470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Noah lived after the flood three hundred and fifty years.
6471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the days of Noah were nine hundred and fifty years: and he died.
6472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now these are the generations of the sons of Noah, Shem, Ham, and Japheth: and unto them were sons born after the flood.
6473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.
6474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sons of Gomer; Ashkenaz, and Riphath, and Togarmah.
6475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.
6476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            By these were the isles of the Gentiles divided in their lands; every one after his tongue, after their families, in their nations.
6477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Ham; Cush, and Mizraim, and Phut, and Canaan.
6478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah, and Sabtechah: and the sons of Raamah; Sheba, and Dedan.
6479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Cush begat Nimrod: he began to be a mighty one in the earth.
6480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He was a mighty hunter before the LORD: wherefore it is said, Even as Nimrod the mighty hunter before the LORD.
6481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the beginning of his kingdom was Babel, and Erech, and Accad, and Calneh, in the land of Shinar.
6482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Out of that land went forth Asshur, and builded Nineveh, and the city Rehoboth, and Calah,
6483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Resen between Nineveh and Calah: the same is a great city.
6484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,
6485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Pathrusim, and Casluhim, (out of whom came Philistim,) and Caphtorim.
6486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Canaan begat Sidon his first born, and Heth,
6487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Jebusite, and the Amorite, and the Girgasite,
6488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Hivite, and the Arkite, and the Sinite,
6489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the Arvadite, and the Zemarite, and the Hamathite: and afterward were the families of the Canaanites spread abroad.
6490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the border of the Canaanites was from Sidon, as thou comest to Gerar, unto Gaza; as thou goest, unto Sodom, and Gomorrah, and Admah, and Zeboim, even unto Lasha.
6491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the sons of Ham, after their families, after their tongues, in their countries, and in their nations.
6492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unto Shem also, the father of all the children of Eber, the brother of Japheth the elder, even to him were children born.
6493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The children of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram.
6494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Aram; Uz, and Hul, and Gether, and Mash.
6495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Arphaxad begat Salah; and Salah begat Eber.
6496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And unto Eber were born two sons: the name of one was Peleg; for in his days was the earth divided; and his brother's name was Joktan.
6497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,
6498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Hadoram, and Uzal, and Diklah,
6499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Obal, and Abimael, and Sheba,
6500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Ophir, and Havilah, and Jobab: all these were the sons of Joktan.
6501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And their dwelling was from Mesha, as thou goest unto Sephar a mount of the east.
6502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These are the sons of Shem, after their families, after their tongues, in their lands, after their nations.
6503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the families of the sons of Noah, after their generations, in their nations: and by these were the nations divided in the earth after the flood.
6504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the whole earth was of one language, and of one speech.
6505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, as they journeyed from the east, that they found a plain in the land of Shinar; and they dwelt there.
6506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they said one to another, Go to, let us make brick, and burn them thoroughly. And they had brick for stone, and slime had they for mortar.
6507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they said, Go to, let us build us a city and a tower, whose top may reach unto heaven; and let us make us a name, lest we be scattered abroad upon the face of the whole earth.
6508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD came down to see the city and the tower, which the children of men builded.
6509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said, Behold, the people is one, and they have all one language; and this they begin to do: and now nothing will be restrained from them, which they have imagined to do.
6510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Go to, let us go down, and there confound their language, that they may not understand one another's speech.
6511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So the LORD scattered them abroad from thence upon the face of all the earth: and they left off to build the city.
6512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore is the name of it called Babel; because the LORD did there confound the language of all the earth: and from thence did the LORD scatter them abroad upon the face of all the earth.
6513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the generations of Shem: Shem was an hundred years old, and begat Arphaxad two years after the flood:
6514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Shem lived after he begat Arphaxad five hundred years, and begat sons and daughters.
6515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Arphaxad lived five and thirty years, and begat Salah:
6516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Arphaxad lived after he begat Salah four hundred and three years, and begat sons and daughters.
6517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Salah lived thirty years, and begat Eber:
6518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Salah lived after he begat Eber four hundred and three years, and begat sons and daughters.
6519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Eber lived four and thirty years, and begat Peleg:
6520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Eber lived after he begat Peleg four hundred and thirty years, and begat sons and daughters.
6521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Peleg lived thirty years, and begat Reu:
6522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Peleg lived after he begat Reu two hundred and nine years, and begat sons and daughters.
6523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Reu lived two and thirty years, and begat Serug:
6524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Reu lived after he begat Serug two hundred and seven years, and begat sons and daughters.
6525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Serug lived thirty years, and begat Nahor:
6526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Serug lived after he begat Nahor two hundred years, and begat sons and daughters.
6527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Nahor lived nine and twenty years, and begat Terah:
6528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Nahor lived after he begat Terah an hundred and nineteen years, and begat sons and daughters.
6529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Terah lived seventy years, and begat Abram, Nahor, and Haran.
6530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now these are the generations of Terah: Terah begat Abram, Nahor, and Haran; and Haran begat Lot.
6531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Haran died before his father Terah in the land of his nativity, in Ur of the Chaldees.
6532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abram and Nahor took them wives: the name of Abram's wife was Sarai; and the name of Nahor's wife, Milcah, the daughter of Haran, the father of Milcah, and the father of Iscah.
6533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But Sarai was barren; she had no child.
6534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Terah took Abram his son, and Lot the son of Haran his son's son, and Sarai his daughter in law, his son Abram's wife; and they went forth with them from Ur of the Chaldees, to go into the land of Canaan; and they came unto Haran, and dwelt there.
6535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the days of Terah were two hundred and five years: and Terah died in Haran.
6536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now the LORD had said unto Abram, Get thee out of thy country, and from thy kindred, and from thy father's house, unto a land that I will show thee:
6537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I will make of thee a great nation, and I will bless thee, and make thy name great; and thou shalt be a blessing:
6538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I will bless them that bless thee, and curse him that curseth thee: and in thee shall all families of the earth be blessed.
6539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Abram departed, as the LORD had spoken unto him; and Lot went with him: and Abram was seventy and five years old when he departed out of Haran.
6540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abram took Sarai his wife, and Lot his brother's son, and all their substance that they had gathered, and the souls that they had gotten in Haran; and they went forth to go into the land of Canaan; and into the land of Canaan they came.
6541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abram passed through the land unto the place of Sichem, unto the plain of Moreh. And the Canaanite was then in the land.
6542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD appeared unto Abram, and said, Unto thy seed will I give this land: and there builded he an altar unto the LORD, who appeared unto him.
6543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he removed from thence unto a mountain on the east of Bethel, and pitched his tent, having Bethel on the west, and Hai on the east: and there he builded an altar unto the LORD, and called upon the name of the LORD.
6544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abram journeyed, going on still toward the south.
6545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there was a famine in the land: and Abram went down into Egypt to sojourn there; for the famine was grievous in the land.
6546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when he was come near to enter into Egypt, that he said unto Sarai his wife, Behold now, I know that thou art a fair woman to look upon:
6547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore it shall come to pass, when the Egyptians shall see thee, that they shall say, This is his wife: and they will kill me, but they will save thee alive.
6548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Say, I pray thee, thou art my sister: that it may be well with me for thy sake; and my soul shall live because of thee.
6549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, that, when Abram was come into Egypt, the Egyptians beheld the woman that she was very fair.
6550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The princes also of Pharaoh saw her, and commended her before Pharaoh: and the woman was taken into Pharaoh's house.
6551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he entreated Abram well for her sake: and he had sheep, and oxen, and he asses, and menservants, and maidservants, and she asses, and camels.
6552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD plagued Pharaoh and his house with great plagues because of Sarai Abram's wife.
6553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Pharaoh called Abram and said, What is this that thou hast done unto me? why didst thou not tell me that she was thy wife?
6554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Why saidst thou, She is my sister? so I might have taken her to me to wife: now therefore behold thy wife, take her, and go thy way.
6555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Pharaoh commanded his men concerning him: and they sent him away, and his wife, and all that he had.
6556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abram went up out of Egypt, he, and his wife, and all that he had, and Lot with him, into the south.
6557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Abram was very rich in cattle, in silver, and in gold.
6558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he went on his journeys from the south even to Bethel, unto the place where his tent had been at the beginning, between Bethel and Hai;
6559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Unto the place of the altar, which he had make there at the first: and there Abram called on the name of the LORD.
6560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Lot also, which went with Abram, had flocks, and herds, and tents.
6561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the land was not able to bear them, that they might dwell together: for their substance was great, so that they could not dwell together.
6562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there was a strife between the herdmen of Abram's cattle and the herdmen of Lot's cattle: and the Canaanite and the Perizzite dwelled then in the land.
6563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abram said unto Lot, Let there be no strife, I pray thee, between me and thee, and between my herdmen and thy herdmen; for we be brethren.
6564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is not the whole land before thee? separate thyself, I pray thee, from me: if thou wilt take the left hand, then I will go to the right; or if thou depart to the right hand, then I will go to the left.
6565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Lot lifted up his eyes, and beheld all the plain of Jordan, that it was well watered every where, before the LORD destroyed Sodom and Gomorrah, even as the garden of the LORD, like the land of Egypt, as thou comest unto Zoar.
6566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Lot chose him all the plain of Jordan; and Lot journeyed east: and they separated themselves the one from the other.
6567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Abram dwelled in the land of Canaan, and Lot dwelled in the cities of the plain, and pitched his tent toward Sodom.
6568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the men of Sodom were wicked and sinners before the LORD exceedingly.
6569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Abram, after that Lot was separated from him, Lift up now thine eyes, and look from the place where thou art northward, and southward, and eastward, and westward:
6570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For all the land which thou seest, to thee will I give it, and to thy seed for ever.
6571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I will make thy seed as the dust of the earth: so that if a man can number the dust of the earth, then shall thy seed also be numbered.
6572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Arise, walk through the land in the length of it and in the breadth of it; for I will give it unto thee.
6573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Abram removed his tent, and came and dwelt in the plain of Mamre, which is in Hebron, and built there an altar unto the LORD.
6574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass in the days of Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of nations;
6575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That these made war with Bera king of Sodom, and with Birsha king of Gomorrah, Shinab king of Admah, and Shemeber king of Zeboiim, and the king of Bela, which is Zoar.
6576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All these were joined together in the vale of Siddim, which is the salt sea.
6577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Twelve years they served Chedorlaomer, and in the thirteenth year they rebelled.
6578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in the fourteenth year came Chedorlaomer, and the kings that were with him, and smote the Rephaim in Ashteroth Karnaim, and the Zuzims in Ham, and the Emins in Shaveh Kiriathaim,
6579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the Horites in their mount Seir, unto Elparan, which is by the wilderness.
6580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they returned, and came to Enmishpat, which is Kadesh, and smote all the country of the Amalekites, and also the Amorites, that dwelt in Hazezontamar.
6581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there went out the king of Sodom, and the king of Gomorrah, and the king of Admah, and the king of Zeboiim, and the king of Bela (the same is Zoar;) and they joined battle with them in the vale of Siddim;
6582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             With Chedorlaomer the king of Elam, and with Tidal king of nations, and Amraphel king of Shinar, and Arioch king of Ellasar; four kings with five.
6583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the vale of Siddim was full of slime pits; and the kings of Sodom and Gomorrah fled, and fell there; and they that remained fled to the mountain.
6584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they took all the goods of Sodom and Gomorrah, and all their victuals, and went their way.
6585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they took Lot, Abram's brother's son, who dwelt in Sodom, and his goods, and departed.
6586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there came one that had escaped, and told Abram the Hebrew; for he dwelt in the plain of Mamre the Amorite, brother of Eshcol, and brother of Aner: and these were confederate with Abram.
6587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when Abram heard that his brother was taken captive, he armed his trained servants, born in his own house, three hundred and eighteen, and pursued them unto Dan.
6588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he divided himself against them, he and his servants, by night, and smote them, and pursued them unto Hobah, which is on the left hand of Damascus.
6589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he brought back all the goods, and also brought again his brother Lot, and his goods, and the women also, and the people.
6590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the king of Sodom went out to meet him after his return from the slaughter of Chedorlaomer, and of the kings that were with him, at the valley of Shaveh, which is the king's dale.
6591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Melchizedek king of Salem brought forth bread and wine: and he was the priest of the most high God.
6592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he blessed him, and said, Blessed be Abram of the most high God, possessor of heaven and earth:
6593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And blessed be the most high God, which hath delivered thine enemies into thy hand. And he gave him tithes of all.
6594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king of Sodom said unto Abram, Give me the persons, and take the goods to thyself.
6595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abram said to the king of Sodom, I have lift up mine hand unto the LORD, the most high God, the possessor of heaven and earth,
6596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That I will not take from a thread even to a shoelatchet, and that I will not take any thing that is thine, lest thou shouldest say, I have made Abram rich:
6597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Save only that which the young men have eaten, and the portion of the men which went with me, Aner, Eshcol, and Mamre; let them take their portion.
6598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 After these things the word of the LORD came unto Abram in a vision, saying, Fear not, Abram: I am thy shield, and thy exceeding great reward.
6599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abram said, LORD God, what wilt thou give me, seeing I go childless, and the steward of my house is this Eliezer of Damascus?
6600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abram said, Behold, to me thou hast given no seed: and, lo, one born in my house is mine heir.
6601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And, behold, the word of the LORD came unto him, saying, This shall not be thine heir; but he that shall come forth out of thine own bowels shall be thine heir.
6602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he brought him forth abroad, and said, Look now toward heaven, and tell the stars, if thou be able to number them: and he said unto him, So shall thy seed be.
6603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he believed in the LORD; and he counted it to him for righteousness.
6604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto him, I am the LORD that brought thee out of Ur of the Chaldees, to give thee this land to inherit it.
6605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, LORD God, whereby shall I know that I shall inherit it?
6606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said unto him, Take me an heifer of three years old, and a she goat of three years old, and a ram of three years old, and a turtledove, and a young pigeon.
6607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he took unto him all these, and divided them in the midst, and laid each piece one against another: but the birds divided he not.
6608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the fowls came down upon the carcasses, Abram drove them away.
6609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the sun was going down, a deep sleep fell upon Abram; and, lo, an horror of great darkness fell upon him.
6610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto Abram, Know of a surety that thy seed shall be a stranger in a land that is not theirs, and shall serve them; and they shall afflict them four hundred years;
6611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And also that nation, whom they shall serve, will I judge: and afterward shall they come out with great substance.
6612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt go to thy fathers in peace; thou shalt be buried in a good old age.
6613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But in the fourth generation they shall come hither again: for the iniquity of the Amorites is not yet full.
6614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, that, when the sun went down, and it was dark, behold a smoking furnace, and a burning lamp that passed between those pieces.
6615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In the same day the LORD made a covenant with Abram, saying, Unto thy seed have I given this land, from the river of Egypt unto the great river, the river Euphrates:
6616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The Kenites, and the Kenizzites, and the Kadmonites,
6617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the Hittites, and the Perizzites, and the Rephaim,
6618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the Amorites, and the Canaanites, and the Girgashites, and the Jebusites.
6619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now Sarai Abram's wife bare him no children: and she had an handmaid, an Egyptian, whose name was Hagar.
6620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Sarai said unto Abram, Behold now, the LORD hath restrained me from bearing: I pray thee, go in unto my maid; it may be that I may obtain children by her. And Abram hearkened to the voice of Sarai.
6621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Sarai Abram's wife took Hagar her maid the Egyptian, after Abram had dwelt ten years in the land of Canaan, and gave her to her husband Abram to be his wife.
6622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he went in unto Hagar, and she conceived: and when she saw that she had conceived, her mistress was despised in her eyes.
6623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Sarai said unto Abram, My wrong be upon thee: I have given my maid into thy bosom; and when she saw that she had conceived, I was despised in her eyes: the LORD judge between me and thee.
6624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Abram said unto Sarai, Behold, thy maid is in thine hand; do to her as it pleaseth thee. And when Sarai dealt hardly with her, she fled from her face.
6625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the angel of the LORD found her by a fountain of water in the wilderness, by the fountain in the way to Shur.
6626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Hagar, Sarai's maid, whence camest thou? and whither wilt thou go? And she said, I flee from the face of my mistress Sarai.
6627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the angel of the LORD said unto her, Return to thy mistress, and submit thyself under her hands.
6628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the angel of the LORD said unto her, I will multiply thy seed exceedingly, that it shall not be numbered for multitude.
6629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the angel of the LORD said unto her, Behold, thou art with child and shalt bear a son, and shalt call his name Ishmael; because the LORD hath heard thy affliction.
6630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he will be a wild man; his hand will be against every man, and every man's hand against him; and he shall dwell in the presence of all his brethren.
6631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she called the name of the LORD that spake unto her, Thou God seest me: for she said, Have I also here looked after him that seeth me?
6632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wherefore the well was called Beerlahairoi; behold, it is between Kadesh and Bered.
6633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Hagar bare Abram a son: and Abram called his son's name, which Hagar bare, Ishmael.
6634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abram was fourscore and six years old, when Hagar bare Ishmael to Abram.
6635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Abram was ninety years old and nine, the LORD appeared to Abram, and said unto him, I am the Almighty God; walk before me, and be thou perfect.
6636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And I will make my covenant between me and thee, and will multiply thee exceedingly.
6637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abram fell on his face: and God talked with him, saying,
6638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As for me, behold, my covenant is with thee, and thou shalt be a father of many nations.
6639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Neither shall thy name any more be called Abram, but thy name shall be Abraham; for a father of many nations have I made thee.
6640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I will make thee exceeding fruitful, and I will make nations of thee, and kings shall come out of thee.
6641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I will establish my covenant between me and thee and thy seed after thee in their generations for an everlasting covenant, to be a God unto thee, and to thy seed after thee.
6642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I will give unto thee, and to thy seed after thee, the land wherein thou art a stranger, all the land of Canaan, for an everlasting possession; and I will be their God.
6643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And God said unto Abraham, Thou shalt keep my covenant therefore, thou, and thy seed after thee in their generations.
6644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is my covenant, which ye shall keep, between me and you and thy seed after thee; Every man child among you shall be circumcised.
6645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ye shall circumcise the flesh of your foreskin; and it shall be a token of the covenant betwixt me and you.
6646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he that is eight days old shall be circumcised among you, every man child in your generations, he that is born in the house, or bought with money of any stranger, which is not of thy seed.
6647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He that is born in thy house, and he that is bought with thy money, must needs be circumcised: and my covenant shall be in your flesh for an everlasting covenant.
6648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the uncircumcised man child whose flesh of his foreskin is not circumcised, that soul shall be cut off from his people; he hath broken my covenant.
6649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God said unto Abraham, As for Sarai thy wife, thou shalt not call her name Sarai, but Sarah shall her name be.
6650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And I will bless her, and give thee a son also of her: yea, I will bless her, and she shall be a mother of nations; kings of people shall be of her.
6651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Abraham fell upon his face, and laughed, and said in his heart, Shall a child be born unto him that is an hundred years old? and shall Sarah, that is ninety years old, bear?
6652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abraham said unto God, O that Ishmael might live before thee!
6653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God said, Sarah thy wife shall bear thee a son indeed; and thou shalt call his name Isaac: and I will establish my covenant with him for an everlasting covenant, and with his seed after him.
6654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And as for Ishmael, I have heard thee: Behold, I have blessed him, and will make him fruitful, and will multiply him exceedingly; twelve princes shall he beget, and I will make him a great nation.
6655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But my covenant will I establish with Isaac, which Sarah shall bear unto thee at this set time in the next year.
6656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he left off talking with him, and God went up from Abraham.
6657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Abraham took Ishmael his son, and all that were born in his house, and all that were bought with his money, every male among the men of Abraham's house; and circumcised the flesh of their foreskin in the selfsame day, as God had said unto him.
6658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abraham was ninety years old and nine, when he was circumcised in the flesh of his foreskin.
6659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ishmael his son was thirteen years old, when he was circumcised in the flesh of his foreskin.
6660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the selfsame day was Abraham circumcised, and Ishmael his son.
6661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the men of his house, born in the house, and bought with money of the stranger, were circumcised with him.
6662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD appeared unto him in the plains of Mamre: and he sat in the tent door in the heat of the day;
6663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he lift up his eyes and looked, and, lo, three men stood by him: and when he saw them, he ran to meet them from the tent door, and bowed himself toward the ground,
6664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And said, My LORD, if now I have found favor in thy sight, pass not away, I pray thee, from thy servant:
6665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let a little water, I pray you, be fetched, and wash your feet, and rest yourselves under the tree:
6666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I will fetch a morsel of bread, and comfort ye your hearts; after that ye shall pass on: for therefore are ye come to your servant. And they said, So do, as thou hast said.
6667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abraham hastened into the tent unto Sarah, and said, Make ready quickly three measures of fine meal, knead it, and make cakes upon the hearth.
6668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abraham ran unto the herd, and fetched a calf tender and good, and gave it unto a young man; and he hasted to dress it.
6669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he took butter, and milk, and the calf which he had dressed, and set it before them; and he stood by them under the tree, and they did eat.
6670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they said unto him, Where is Sarah thy wife? And he said, Behold, in the tent.
6671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said, I will certainly return unto thee according to the time of life; and, lo, Sarah thy wife shall have a son. And Sarah heard it in the tent door, which was behind him.
6672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now Abraham and Sarah were old and well stricken in age; and it ceased to be with Sarah after the manner of women.
6673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore Sarah laughed within herself, saying, After I am waxed old shall I have pleasure, my lord being old also?
6674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a surety bear a child, which am old?
6675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Is any thing too hard for the LORD? At the time appointed I will return unto thee, according to the time of life, and Sarah shall have a son.
6676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Sarah denied, saying, I laughed not; for she was afraid. And he said, Nay; but thou didst laugh.
6677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the men rose up from thence, and looked toward Sodom: and Abraham went with them to bring them on the way.
6678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said, Shall I hide from Abraham that thing which I do;
6679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Seeing that Abraham shall surely become a great and mighty nation, and all the nations of the earth shall be blessed in him?
6680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For I know him, that he will command his children and his household after him, and they shall keep the way of the LORD, to do justice and judgment; that the LORD may bring upon Abraham that which he hath spoken of him.
6681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said, Because the cry of Sodom and Gomorrah is great, and because their sin is very grievous;
6682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will go down now, and see whether they have done altogether according to the cry of it, which is come unto me; and if not, I will know.
6683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the men turned their faces from thence, and went toward Sodom: but Abraham stood yet before the LORD.
6684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Abraham drew near, and said, Wilt thou also destroy the righteous with the wicked?
6685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Peradventure there be fifty righteous within the city: wilt thou also destroy and not spare the place for the fifty righteous that are therein?
6686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That be far from thee to do after this manner, to slay the righteous with the wicked: and that the righteous should be as the wicked, that be far from thee: Shall not the Judge of all the earth do right?
6687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said, If I find in Sodom fifty righteous within the city, then I will spare all the place for their sakes.
6688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abraham answered and said, Behold now, I have taken upon me to speak unto the LORD, which am but dust and ashes:
6689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Peradventure there shall lack five of the fifty righteous: wilt thou destroy all the city for lack of five? And he said, If I find there forty and five, I will not destroy it.
6690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he spake unto him yet again, and said, Peradventure there shall be forty found there. And he said, I will not do it for forty's sake.
6691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto him, Oh let not the LORD be angry, and I will speak: Peradventure there shall thirty be found there. And he said, I will not do it, if I find thirty there.
6692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Behold now, I have taken upon me to speak unto the LORD: Peradventure there shall be twenty found there. And he said, I will not destroy it for twenty's sake.
6693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Oh let not the LORD be angry, and I will speak yet but this once: Peradventure ten shall be found there. And he said, I will not destroy it for ten's sake.
6694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD went his way, as soon as he had left communing with Abraham: and Abraham returned unto his place.
6695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there came two angels to Sodom at even; and Lot sat in the gate of Sodom: and Lot seeing them rose up to meet them; and he bowed himself with his face toward the ground;
6696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Behold now, my lords, turn in, I pray you, into your servant's house, and tarry all night, and wash your feet, and ye shall rise up early, and go on your ways. And they said, Nay; but we will abide in the street all night.
6697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he pressed upon them greatly; and they turned in unto him, and entered into his house; and he made them a feast, and did bake unleavened bread, and they did eat.
6698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But before they lay down, the men of the city, even the men of Sodom, compassed the house round, both old and young, all the people from every quarter:
6699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they called unto Lot, and said unto him, Where are the men which came in to thee this night? bring them out unto us, that we may know them.
6700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Lot went out at the door unto them, and shut the door after him,
6701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And said, I pray you, brethren, do not so wickedly.
6702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold now, I have two daughters which have not known man; let me, I pray you, bring them out unto you, and do ye to them as is good in your eyes: only unto these men do nothing; for therefore came they under the shadow of my roof.
6703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they said, Stand back. And they said again, This one fellow came in to sojourn, and he will needs be a judge: now will we deal worse with thee, than with them. And they pressed sore upon the man, even Lot, and came near to break the door.
6704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the men put forth their hand, and pulled Lot into the house to them, and shut to the door.
6705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they smote the men that were at the door of the house with blindness, both small and great: so that they wearied themselves to find the door.
6706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the men said unto Lot, Hast thou here any besides? son in law, and thy sons, and thy daughters, and whatsoever thou hast in the city, bring them out of this place:
6707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For we will destroy this place, because the cry of them is waxen great before the face of the LORD; and the LORD hath sent us to destroy it.
6708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Lot went out, and spake unto his sons in law, which married his daughters, and said, Up, get you out of this place; for the LORD will destroy this city. But he seemed as one that mocked unto his sons in law.
6709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when the morning arose, then the angels hastened Lot, saying, Arise, take thy wife, and thy two daughters, which are here; lest thou be consumed in the iniquity of the city.
6710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And while he lingered, the men laid hold upon his hand, and upon the hand of his wife, and upon the hand of his two daughters; the LORD being merciful unto him: and they brought him forth, and set him without the city.
6711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when they had brought them forth abroad, that he said, Escape for thy life; look not behind thee, neither stay thou in all the plain; escape to the mountain, lest thou be consumed.
6712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Lot said unto them, Oh, not so, my LORD:
6713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Behold now, thy servant hath found grace in thy sight, and thou hast magnified thy mercy, which thou hast showed unto me in saving my life; and I cannot escape to the mountain, lest some evil take me, and I die:
6714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Behold now, this city is near to flee unto, and it is a little one: Oh, let me escape thither, (is it not a little one?) and my soul shall live.
6715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said unto him, See, I have accepted thee concerning this thing also, that I will not overthrow this city, for the which thou hast spoken.
6716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Haste thee, escape thither; for I cannot do anything till thou be come thither. Therefore the name of the city was called Zoar.
6717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sun was risen upon the earth when Lot entered into Zoar.
6718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then the LORD rained upon Sodom and upon Gomorrah brimstone and fire from the LORD out of heaven;
6719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he overthrew those cities, and all the plain, and all the inhabitants of the cities, and that which grew upon the ground.
6720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But his wife looked back from behind him, and she became a pillar of salt.
6721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abraham gat up early in the morning to the place where he stood before the LORD:
6722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he looked toward Sodom and Gomorrah, and toward all the land of the plain, and beheld, and, lo, the smoke of the country went up as the smoke of a furnace.
6723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when God destroyed the cities of the plain, that God remembered Abraham, and sent Lot out of the midst of the overthrow, when he overthrew the cities in the which Lot dwelt.
6724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Lot went up out of Zoar, and dwelt in the mountain, and his two daughters with him; for he feared to dwell in Zoar: and he dwelt in a cave, he and his two daughters.
6725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the firstborn said unto the younger, Our father is old, and there is not a man in the earth to come in unto us after the manner of all the earth:
6726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Come, let us make our father drink wine, and we will lie with him, that we may preserve seed of our father.
6727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they made their father drink wine that night: and the firstborn went in, and lay with her father; and he perceived not when she lay down, nor when she arose.
6728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass on the morrow, that the firstborn said unto the younger, Behold, I lay yesternight with my father: let us make him drink wine this night also; and go thou in, and lie with him, that we may preserve seed of our father.
6729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they made their father drink wine that night also: and the younger arose, and lay with him; and he perceived not when she lay down, nor when she arose.
6730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thus were both the daughters of Lot with child by their father.
6731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the first born bare a son, and called his name Moab: the same is the father of the Moabites unto this day.
6732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the younger, she also bare a son, and called his name Benammi: the same is the father of the children of Ammon unto this day.
6733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abraham journeyed from thence toward the south country, and dwelled between Kadesh and Shur, and sojourned in Gerar.
6734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Abraham said of Sarah his wife, She is my sister: and Abimelech king of Gerar sent, and took Sarah.
6735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But God came to Abimelech in a dream by night, and said to him, Behold, thou art but a dead man, for the woman which thou hast taken; for she is a man's wife.
6736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But Abimelech had not come near her: and he said, LORD, wilt thou slay also a righteous nation?
6737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Said he not unto me, She is my sister? and she, even she herself said, He is my brother: in the integrity of my heart and innocency of my hands have I done this.
6738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And God said unto him in a dream, Yea, I know that thou didst this in the integrity of thy heart; for I also withheld thee from sinning against me: therefore suffered I thee not to touch her.
6739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now therefore restore the man his wife; for he is a prophet, and he shall pray for thee, and thou shalt live: and if thou restore her not, know thou that thou shalt surely die, thou, and all that are thine.
6740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore Abimelech rose early in the morning, and called all his servants, and told all these things in their ears: and the men were sore afraid.
6741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Abimelech called Abraham, and said unto him, What hast thou done unto us? and what have I offended thee, that thou hast brought on me and on my kingdom a great sin? thou hast done deeds unto me that ought not to be done.
6742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abimelech said unto Abraham, What sawest thou, that thou hast done this thing?
6743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abraham said, Because I thought, Surely the fear of God is not in this place; and they will slay me for my wife's sake.
6744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And yet indeed she is my sister; she is the daughter of my father, but not the daughter of my mother; and she became my wife.
6745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when God caused me to wander from my father's house, that I said unto her, This is thy kindness which thou shalt show unto me; at every place whither we shall come, say of me, He is my brother.
6746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abimelech took sheep, and oxen, and menservants, and womenservants, and gave them unto Abraham, and restored him Sarah his wife.
6747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abimelech said, Behold, my land is before thee: dwell where it pleaseth thee.
6748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And unto Sarah he said, Behold, I have given thy brother a thousand pieces of silver: behold, he is to thee a covering of the eyes, unto all that are with thee, and with all other: thus she was reproved.
6749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Abraham prayed unto God: and God healed Abimelech, and his wife, and his maidservants; and they bare children.
6750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the LORD had fast closed up all the wombs of the house of Abimelech, because of Sarah Abraham's wife.
6751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD visited Sarah as he had said, and the LORD did unto Sarah as he had spoken.
6752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For Sarah conceived, and bare Abraham a son in his old age, at the set time of which God had spoken to him.
6753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abraham called the name of his son that was born unto him, whom Sarah bare to him, Isaac.
6754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abraham circumcised his son Isaac being eight days old, as God had commanded him.
6755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abraham was an hundred years old, when his son Isaac was born unto him.
6756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Sarah said, God hath made me to laugh, so that all that hear will laugh with me.
6757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she said, Who would have said unto Abraham, that Sarah should have given children suck? for I have born him a son in his old age.
6758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the child grew, and was weaned: and Abraham made a great feast the same day that Isaac was weaned.
6759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Sarah saw the son of Hagar the Egyptian, which she had born unto Abraham, mocking.
6760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wherefore she said unto Abraham, Cast out this bondwoman and her son: for the son of this bondwoman shall not be heir with my son, even with Isaac.
6761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the thing was very grievous in Abraham's sight because of his son.
6762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God said unto Abraham, Let it not be grievous in thy sight because of the lad, and because of thy bondwoman; in all that Sarah hath said unto thee, hearken unto her voice; for in Isaac shall thy seed be called.
6763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And also of the son of the bondwoman will I make a nation, because he is thy seed.
6764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abraham rose up early in the morning, and took bread, and a bottle of water, and gave it unto Hagar, putting it on her shoulder, and the child, and sent her away: and she departed, and wandered in the wilderness of Beersheba.
6765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the water was spent in the bottle, and she cast the child under one of the shrubs.
6766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she went, and sat her down over against him a good way off, as it were a bow shot: for she said, Let me not see the death of the child. And she sat over against him, and lift up her voice, and wept.
6767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God heard the voice of the lad; and the angel of God called to Hagar out of heaven, and said unto her, What aileth thee, Hagar? fear not; for God hath heard the voice of the lad where he is.
6768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arise, lift up the lad, and hold him in thine hand; for I will make him a great nation.
6769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And God opened her eyes, and she saw a well of water; and she went, and filled the bottle with water, and gave the lad drink.
6770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And God was with the lad; and he grew, and dwelt in the wilderness, and became an archer.
6771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he dwelt in the wilderness of Paran: and his mother took him a wife out of the land of Egypt.
6772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass at that time, that Abimelech and Phichol the chief captain of his host spake unto Abraham, saying, God is with thee in all that thou doest:
6773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now therefore swear unto me here by God that thou wilt not deal falsely with me, nor with my son, nor with my son's son: but according to the kindness that I have done unto thee, thou shalt do unto me, and to the land wherein thou hast sojourned.
6774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Abraham said, I will swear.
6775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Abraham reproved Abimelech because of a well of water, which Abimelech's servants had violently taken away.
6776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Abimelech said, I wot not who hath done this thing; neither didst thou tell me, neither yet heard I of it, but to day.
6777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abraham took sheep and oxen, and gave them unto Abimelech; and both of them made a covenant.
6778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abraham set seven ewe lambs of the flock by themselves.
6779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Abimelech said unto Abraham, What mean these seven ewe lambs which thou hast set by themselves?
6780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, For these seven ewe lambs shalt thou take of my hand, that they may be a witness unto me, that I have digged this well.
6781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wherefore he called that place Beersheba; because there they sware both of them.
6782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thus they made a covenant at Beersheba: then Abimelech rose up, and Phichol the chief captain of his host, and they returned into the land of the Philistines.
6783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abraham planted a grove in Beersheba, and called there on the name of the LORD, the everlasting God.
6784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Abraham sojourned in the Philistines' land many days.
6785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass after these things, that God did tempt Abraham, and said unto him, Abraham: and he said, Behold, here I am.
6786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Take now thy son, thine only son Isaac, whom thou lovest, and get thee into the land of Moriah; and offer him there for a burnt offering upon one of the mountains which I will tell thee of.
6787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abraham rose up early in the morning, and saddled his ass, and took two of his young men with him, and Isaac his son, and clave the wood for the burnt offering, and rose up, and went unto the place of which God had told him.
6788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then on the third day Abraham lifted up his eyes, and saw the place afar off.
6789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abraham said unto his young men, Abide ye here with the ass; and I and the lad will go yonder and worship, and come again to you.
6790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abraham took the wood of the burnt offering, and laid it upon Isaac his son; and he took the fire in his hand, and a knife; and they went both of them together.
6791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Isaac spake unto Abraham his father, and said, My father: and he said, Here am I, my son. And he said, Behold the fire and the wood: but where is the lamb for a burnt offering?
6792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Abraham said, My son, God will provide himself a lamb for a burnt offering: so they went both of them together.
6793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they came to the place which God had told him of; and Abraham built an altar there, and laid the wood in order, and bound Isaac his son, and laid him on the altar upon the wood.
6794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Abraham stretched forth his hand, and took the knife to slay his son.
6795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the angel of the LORD called unto him out of heaven, and said, Abraham, Abraham: and he said, Here am I.
6796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Lay not thine hand upon the lad, neither do thou any thing unto him: for now I know that thou fearest God, seeing thou hast not withheld thy son, thine only son from me.
6797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abraham lifted up his eyes, and looked, and behold behind him a ram caught in a thicket by his horns: and Abraham went and took the ram, and offered him up for a burnt offering in the stead of his son.
6798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abraham called the name of that place Jehovahjireh: as it is said to this day, In the mount of the LORD it shall be seen.
6799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the angel of the LORD called unto Abraham out of heaven the second time,
6800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And said, By myself have I sworn, saith the LORD, for because thou hast done this thing, and hast not withheld thy son, thine only son:
6801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That in blessing I will bless thee, and in multiplying I will multiply thy seed as the stars of the heaven, and as the sand which is upon the sea shore; and thy seed shall possess the gate of his enemies;
6802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in thy seed shall all the nations of the earth be blessed; because thou hast obeyed my voice.
6803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Abraham returned unto his young men, and they rose up and went together to Beersheba; and Abraham dwelt at Beersheba.
6804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass after these things, that it was told Abraham, saying, Behold, Milcah, she hath also born children unto thy brother Nahor;
6805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Huz his firstborn, and Buz his brother, and Kemuel the father of Aram,
6806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Chesed, and Hazo, and Pildash, and Jidlaph, and Bethuel.
6807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Bethuel begat Rebekah: these eight Milcah did bear to Nahor, Abraham's brother.
6808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his concubine, whose name was Reumah, she bare also Tebah, and Gaham, and Thahash, and Maachah.
6809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Sarah was an hundred and seven and twenty years old: these were the years of the life of Sarah.
6810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Sarah died in Kirjatharba; the same is Hebron in the land of Canaan: and Abraham came to mourn for Sarah, and to weep for her.
6811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Abraham stood up from before his dead, and spake unto the sons of Heth, saying,
6812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I am a stranger and a sojourner with you: give me a possession of a buryingplace with you, that I may bury my dead out of my sight.
6813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Heth answered Abraham, saying unto him,
6814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hear us, my lord: thou art a mighty prince among us: in the choice of our sepulchres bury thy dead; none of us shall withhold from thee his sepulchre, but that thou mayest bury thy dead.
6815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abraham stood up, and bowed himself to the people of the land, even to the children of Heth.
6816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he communed with them, saying, If it be your mind that I should bury my dead out of my sight; hear me, and entreat for me to Ephron the son of Zohar,
6817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That he may give me the cave of Machpelah, which he hath, which is in the end of his field; for as much money as it is worth he shall give it me for a possession of a buryingplace amongst you.
6818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ephron dwelt among the children of Heth: and Ephron the Hittite answered Abraham in the audience of the children of Heth, even of all that went in at the gate of his city, saying,
6819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nay, my lord, hear me: the field give I thee, and the cave that is therein, I give it thee; in the presence of the sons of my people give I it thee: bury thy dead.
6820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abraham bowed down himself before the people of the land.
6821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he spake unto Ephron in the audience of the people of the land, saying, But if thou wilt give it, I pray thee, hear me: I will give thee money for the field; take it of me, and I will bury my dead there.
6822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Ephron answered Abraham, saying unto him,
6823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         My lord, hearken unto me: the land is worth four hundred shekels of silver; what is that betwixt me and thee? bury therefore thy dead.
6824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abraham hearkened unto Ephron; and Abraham weighed to Ephron the silver, which he had named in the audience of the sons of Heth, four hundred shekels of silver, current money with the merchant.
6825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the field of Ephron which was in Machpelah, which was before Mamre, the field, and the cave which was therein, and all the trees that were in the field, that were in all the borders round about, were made sure
6826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unto Abraham for a possession in the presence of the children of Heth, before all that went in at the gate of his city.
6827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And after this, Abraham buried Sarah his wife in the cave of the field of Machpelah before Mamre: the same is Hebron in the land of Canaan.
6828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the field, and the cave that is therein, were made sure unto Abraham for a possession of a buryingplace by the sons of Heth.
6829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abraham was old, and well stricken in age: and the LORD had blessed Abraham in all things.
6830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abraham said unto his eldest servant of his house, that ruled over all that he had, Put, I pray thee, thy hand under my thigh:
6831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I will make thee swear by the LORD, the God of heaven, and the God of the earth, that thou shalt not take a wife unto my son of the daughters of the Canaanites, among whom I dwell:
6832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But thou shalt go unto my country, and to my kindred, and take a wife unto my son Isaac.
6833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the servant said unto him, Peradventure the woman will not be willing to follow me unto this land: must I needs bring thy son again unto the land from whence thou camest?
6834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abraham said unto him, Beware thou that thou bring not my son thither again.
6835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD God of heaven, which took me from my father's house, and from the land of my kindred, and which spake unto me, and that sware unto me, saying, Unto thy seed will I give this land; he shall send his angel before thee, and thou shalt take a wife unto my son from thence.
6836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if the woman will not be willing to follow thee, then thou shalt be clear from this my oath: only bring not my son thither again.
6837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the servant put his hand under the thigh of Abraham his master, and sware to him concerning that matter.
6838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the servant took ten camels of the camels of his master, and departed; for all the goods of his master were in his hand: and he arose, and went to Mesopotamia, unto the city of Nahor.
6839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he made his camels to kneel down without the city by a well of water at the time of the evening, even the time that women go out to draw water.
6840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said O LORD God of my master Abraham, I pray thee, send me good speed this day, and show kindness unto my master Abraham.
6841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behold, I stand here by the well of water; and the daughters of the men of the city come out to draw water:
6842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And let it come to pass, that the damsel to whom I shall say, Let down thy pitcher, I pray thee, that I may drink; and she shall say, Drink, and I will give thy camels drink also: let the same be she that thou hast appointed for thy servant Isaac; and thereby shall I know that thou hast showed kindness unto my master.
6843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, before he had done speaking, that, behold, Rebekah came out, who was born to Bethuel, son of Milcah, the wife of Nahor, Abraham's brother, with her pitcher upon her shoulder.
6844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the damsel was very fair to look upon, a virgin, neither had any man known her: and she went down to the well, and filled her pitcher, and came up.
6845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the servant ran to meet her, and said, Let me, I pray thee, drink a little water of thy pitcher.
6846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she said, Drink, my lord: and she hasted, and let down her pitcher upon her hand, and gave him drink.
6847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when she had done giving him drink, she said, I will draw water for thy camels also, until they have done drinking.
6848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she hasted, and emptied her pitcher into the trough, and ran again unto the well to draw water, and drew for all his camels.
6849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the man wondering at her held his peace, to wit whether the LORD had made his journey prosperous or not.
6850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, as the camels had done drinking, that the man took a golden earring of half a shekel weight, and two bracelets for her hands of ten shekels weight of gold;
6851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And said, Whose daughter art thou? tell me, I pray thee: is there room in thy father's house for us to lodge in?
6852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And she said unto him, I am the daughter of Bethuel the son of Milcah, which she bare unto Nahor.
6853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     She said moreover unto him, We have both straw and provender enough, and room to lodge in.
6854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the man bowed down his head, and worshipped the LORD.
6855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Blessed be the LORD God of my master Abraham, who hath not left destitute my master of his mercy and his truth: I being in the way, the LORD led me to the house of my master's brethren.
6856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the damsel ran, and told them of her mother's house these things.
6857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Rebekah had a brother, and his name was Laban: and Laban ran out unto the man, unto the well.
6858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when he saw the earring and bracelets upon his sister's hands, and when he heard the words of Rebekah his sister, saying, Thus spake the man unto me; that he came unto the man; and, behold, he stood by the camels at the well.
6859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Come in, thou blessed of the LORD; wherefore standest thou without? for I have prepared the house, and room for the camels.
6860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the man came into the house: and he ungirded his camels, and gave straw and provender for the camels, and water to wash his feet, and the men's feet that were with him.
6861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there was set meat before him to eat: but he said, I will not eat, until I have told mine errand. And he said, Speak on.
6862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, I am Abraham's servant.
6863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD hath blessed my master greatly; and he is become great: and he hath given him flocks, and herds, and silver, and gold, and menservants, and maidservants, and camels, and asses.
6864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Sarah my master's wife bare a son to my master when she was old: and unto him hath he given all that he hath.
6865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And my master made me swear, saying, Thou shalt not take a wife to my son of the daughters of the Canaanites, in whose land I dwell:
6866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But thou shalt go unto my father's house, and to my kindred, and take a wife unto my son.
6867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I said unto my master, Peradventure the woman will not follow me.
6868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said unto me, The LORD, before whom I walk, will send his angel with thee, and prosper thy way; and thou shalt take a wife for my son of my kindred, and of my father's house:
6869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then shalt thou be clear from this my oath, when thou comest to my kindred; and if they give not thee one, thou shalt be clear from my oath.
6870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I came this day unto the well, and said, O LORD God of my master Abraham, if now thou do prosper my way which I go:
6871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Behold, I stand by the well of water; and it shall come to pass, that when the virgin cometh forth to draw water, and I say to her, Give me, I pray thee, a little water of thy pitcher to drink;
6872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And she say to me, Both drink thou, and I will also draw for thy camels: let the same be the woman whom the LORD hath appointed out for my master's son.
6873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And before I had done speaking in mine heart, behold, Rebekah came forth with her pitcher on her shoulder; and she went down unto the well, and drew water: and I said unto her, Let me drink, I pray thee.
6874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And she made haste, and let down her pitcher from her shoulder, and said, Drink, and I will give thy camels drink also: so I drank, and she made the camels drink also.
6875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I asked her, and said, Whose daughter art thou? And she said, the daughter of Bethuel, Nahor's son, whom Milcah bare unto him: and I put the earring upon her face, and the bracelets upon her hands.
6876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I bowed down my head, and worshipped the LORD, and blessed the LORD God of my master Abraham, which had led me in the right way to take my master's brother's daughter unto his son.
6877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And now if ye will deal kindly and truly with my master, tell me: and if not, tell me; that I may turn to the right hand, or to the left.
6878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Laban and Bethuel answered and said, The thing proceedeth from the LORD: we cannot speak unto thee bad or good.
6879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, Rebekah is before thee, take her, and go, and let her be thy master's son's wife, as the LORD hath spoken.
6880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, that, when Abraham's servant heard their words, he worshipped the LORD, bowing himself to the earth.
6881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the servant brought forth jewels of silver, and jewels of gold, and raiment, and gave them to Rebekah: he gave also to her brother and to her mother precious things.
6882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they did eat and drink, he and the men that were with him, and tarried all night; and they rose up in the morning, and he said, Send me away unto my master.
6883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And her brother and her mother said, Let the damsel abide with us a few days, at the least ten; after that she shall go.
6884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said unto them, Hinder me not, seeing the LORD hath prospered my way; send me away that I may go to my master.
6885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they said, We will call the damsel, and inquire at her mouth.
6886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they called Rebekah, and said unto her, Wilt thou go with this man? And she said, I will go.
6887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they sent away Rebekah their sister, and her nurse, and Abraham's servant, and his men.
6888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they blessed Rebekah, and said unto her, Thou art our sister, be thou the mother of thousands of millions, and let thy seed possess the gate of those which hate them.
6889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Rebekah arose, and her damsels, and they rode upon the camels, and followed the man: and the servant took Rebekah, and went his way.
6890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Isaac came from the way of the well Lahairoi; for he dwelt in the south country.
6891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Isaac went out to meditate in the field at the eventide: and he lifted up his eyes, and saw, and, behold, the camels were coming.
6892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Rebekah lifted up her eyes, and when she saw Isaac, she lighted off the camel.
6893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For she had said unto the servant, What man is this that walketh in the field to meet us? And the servant had said, It is my master: therefore she took a vail, and covered herself.
6894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the servant told Isaac all things that he had done.
6895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Isaac brought her into his mother Sarah's tent, and took Rebekah, and she became his wife; and he loved her: and Isaac was comforted after his mother's death.
6896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then again Abraham took a wife, and her name was Keturah.
6897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And she bare him Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah.
6898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jokshan begat Sheba, and Dedan. And the sons of Dedan were Asshurim, and Letushim, and Leummim.
6899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Midian; Ephah, and Epher, and Hanoch, and Abidah, and Eldaah. All these were the children of Keturah.
6900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abraham gave all that he had unto Isaac.
6901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But unto the sons of the concubines, which Abraham had, Abraham gave gifts, and sent them away from Isaac his son, while he yet lived, eastward, unto the east country.
6902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And these are the days of the years of Abraham's life which he lived, an hundred threescore and fifteen years.
6903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Abraham gave up the ghost, and died in a good old age, an old man, and full of years; and was gathered to his people.
6904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And his sons Isaac and Ishmael buried him in the cave of Machpelah, in the field of Ephron the son of Zohar the Hittite, which is before Mamre;
6905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The field which Abraham purchased of the sons of Heth: there was Abraham buried, and Sarah his wife.
6906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass after the death of Abraham, that God blessed his son Isaac; and Isaac dwelt by the well Lahairoi.
6907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now these are the generations of Ishmael, Abraham's son, whom Hagar the Egyptian, Sarah's handmaid, bare unto Abraham:
6908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And these are the names of the sons of Ishmael, by their names, according to their generations: the firstborn of Ishmael, Nebajoth; and Kedar, and Adbeel, and Mibsam,
6909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Mishma, and Dumah, and Massa,
6910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hadar, and Tema, Jetur, Naphish, and Kedemah:
6911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the sons of Ishmael, and these are their names, by their towns, and by their castles; twelve princes according to their nations.
6912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And these are the years of the life of Ishmael, an hundred and thirty and seven years: and he gave up the ghost and died; and was gathered unto his people.
6913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they dwelt from Havilah unto Shur, that is before Egypt, as thou goest toward Assyria: and he died in the presence of all his brethren.
6914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And these are the generations of Isaac, Abraham's son: Abraham begat Isaac:
6915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Isaac was forty years old when he took Rebekah to wife, the daughter of Bethuel the Syrian of Padanaram, the sister to Laban the Syrian.
6916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Isaac entreated the LORD for his wife, because she was barren: and the LORD was entreated of him, and Rebekah his wife conceived.
6917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the children struggled together within her; and she said, If it be so, why am I thus? And she went to inquire of the LORD.
6918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto her, Two nations are in thy womb, and two manner of people shall be separated from thy bowels; and the one people shall be stronger than the other people; and the elder shall serve the younger.
6919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when her days to be delivered were fulfilled, behold, there were twins in her womb.
6920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the first came out red, all over like an hairy garment; and they called his name Esau.
6921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And after that came his brother out, and his hand took hold on Esau's heel; and his name was called Jacob: and Isaac was threescore years old when she bare them.
6922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the boys grew: and Esau was a cunning hunter, a man of the field; and Jacob was a plain man, dwelling in tents.
6923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Isaac loved Esau, because he did eat of his venison: but Rebekah loved Jacob.
6924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob sod pottage: and Esau came from the field, and he was faint:
6925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Esau said to Jacob, Feed me, I pray thee, with that same red pottage; for I am faint: therefore was his name called Edom.
6926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob said, Sell me this day thy birthright.
6927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Esau said, Behold, I am at the point to die: and what profit shall this birthright do to me?
6928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jacob said, Swear to me this day; and he sware unto him: and he sold his birthright unto Jacob.
6929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Jacob gave Esau bread and pottage of lentils; and he did eat and drink, and rose up, and went his way: thus Esau despised his birthright.
6930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there was a famine in the land, beside the first famine that was in the days of Abraham. And Isaac went unto Abimelech king of the Philistines unto Gerar.
6931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD appeared unto him, and said, Go not down into Egypt; dwell in the land which I shall tell thee of:
6932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sojourn in this land, and I will be with thee, and will bless thee; for unto thee, and unto thy seed, I will give all these countries, and I will perform the oath which I sware unto Abraham thy father;
6933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I will make thy seed to multiply as the stars of heaven, and will give unto thy seed all these countries; and in thy seed shall all the nations of the earth be blessed;
6934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Because that Abraham obeyed my voice, and kept my charge, my commandments, my statutes, and my laws.
6935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Isaac dwelt in Gerar:
6936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the men of the place asked him of his wife; and he said, She is my sister: for he feared to say, She is my wife; lest, said he, the men of the place should kill me for Rebekah; because she was fair to look upon.
6937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when he had been there a long time, that Abimelech king of the Philistines looked out at a window, and saw, and, behold, Isaac was sporting with Rebekah his wife.
6938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abimelech called Isaac, and said, Behold, of a surety she is thy wife; and how saidst thou, She is my sister? And Isaac said unto him, Because I said, Lest I die for her.
6939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abimelech said, What is this thou hast done unto us? one of the people might lightly have lien with thy wife, and thou shouldest have brought guiltiness upon us.
6940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abimelech charged all his people, saying, He that toucheth this man or his wife shall surely be put to death.
6941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Isaac sowed in that land, and received in the same year an hundredfold: and the LORD blessed him.
6942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the man waxed great, and went forward, and grew until he became very great:
6943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For he had possession of flocks, and possession of herds, and great store of servants: and the Philistines envied him.
6944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For all the wells which his father's servants had digged in the days of Abraham his father, the Philistines had stopped them, and filled them with earth.
6945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abimelech said unto Isaac, Go from us; for thou art much mightier than we.
6946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Isaac departed thence, and pitched his tent in the valley of Gerar, and dwelt there.
6947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Isaac digged again the wells of water, which they had digged in the days of Abraham his father; for the Philistines had stopped them after the death of Abraham: and he called their names after the names by which his father had called them.
6948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Isaac's servants digged in the valley, and found there a well of springing water.
6949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the herdmen of Gerar did strive with Isaac's herdmen, saying, The water is ours: and he called the name of the well Esek; because they strove with him.
6950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they digged another well, and strove for that also: and he called the name of it Sitnah.
6951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he removed from thence, and digged another well; and for that they strove not: and he called the name of it Rehoboth; and he said, For now the LORD hath made room for us, and we shall be fruitful in the land.
6952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he went up from thence to Beersheba.
6953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD appeared unto him the same night, and said, I am the God of Abraham thy father: fear not, for I am with thee, and will bless thee, and multiply thy seed for my servant Abraham's sake.
6954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he builded an altar there, and called upon the name of the LORD, and pitched his tent there: and there Isaac's servants digged a well.
6955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Abimelech went to him from Gerar, and Ahuzzath one of his friends, and Phichol the chief captain of his army.
6956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Isaac said unto them, Wherefore come ye to me, seeing ye hate me, and have sent me away from you?
6957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they said, We saw certainly that the LORD was with thee: and we said, Let there be now an oath betwixt us, even betwixt us and thee, and let us make a covenant with thee;
6958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That thou wilt do us no hurt, as we have not touched thee, and as we have done unto thee nothing but good, and have sent thee away in peace: thou art now the blessed of the LORD.
6959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made them a feast, and they did eat and drink.
6960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they rose up betimes in the morning, and sware one to another: and Isaac sent them away, and they departed from him in peace.
6961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass the same day, that Isaac's servants came, and told him concerning the well which they had digged, and said unto him, We have found water.
6962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he called it Shebah: therefore the name of the city is Beersheba unto this day.
6963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Esau was forty years old when he took to wife Judith the daughter of Beeri the Hittite, and Bashemath the daughter of Elon the Hittite:
6964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Which were a grief of mind unto Isaac and to Rebekah.
6965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, that when Isaac was old, and his eyes were dim, so that he could not see, he called Esau his eldest son, and said unto him, My son: and he said unto him, Behold, here am I.
6966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said, Behold now, I am old, I know not the day of my death:
6967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore take, I pray thee, thy weapons, thy quiver and thy bow, and go out to the field, and take me some venison;
6968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And make me savory meat, such as I love, and bring it to me, that I may eat; that my soul may bless thee before I die.
6969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Rebekah heard when Isaac spake to Esau his son. And Esau went to the field to hunt for venison, and to bring it.
6970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Rebekah spake unto Jacob her son, saying, Behold, I heard thy father speak unto Esau thy brother, saying,
6971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bring me venison, and make me savory meat, that I may eat, and bless thee before the LORD before my death.
6972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now therefore, my son, obey my voice according to that which I command thee.
6973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Go now to the flock, and fetch me from thence two good kids of the goats; and I will make them savory meat for thy father, such as he loveth:
6974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt bring it to thy father, that he may eat, and that he may bless thee before his death.
6975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob said to Rebekah his mother, Behold, Esau my brother is a hairy man, and I am a smooth man:
6976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             My father peradventure will feel me, and I shall seem to him as a deceiver; and I shall bring a curse upon me, and not a blessing.
6977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And his mother said unto him, Upon me be thy curse, my son: only obey my voice, and go fetch me them.
6978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he went, and fetched, and brought them to his mother: and his mother made savory meat, such as his father loved.
6979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Rebekah took goodly raiment of her eldest son Esau, which were with her in the house, and put them upon Jacob her younger son:
6980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she put the skins of the kids of the goats upon his hands, and upon the smooth of his neck:
6981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And she gave the savory meat and the bread, which she had prepared, into the hand of her son Jacob.
6982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he came unto his father, and said, My father: and he said, Here am I; who art thou, my son?
6983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jacob said unto his father, I am Esau thy first born; I have done according as thou badest me: arise, I pray thee, sit and eat of my venison, that thy soul may bless me.
6984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Isaac said unto his son, How is it that thou hast found it so quickly, my son? And he said, Because the LORD thy God brought it to me.
6985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Isaac said unto Jacob, Come near, I pray thee, that I may feel thee, my son, whether thou be my very son Esau or not.
6986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob went near unto Isaac his father; and he felt him, and said, The voice is Jacob's voice, but the hands are the hands of Esau.
6987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he discerned him not, because his hands were hairy, as his brother Esau's hands: so he blessed him.
6988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Art thou my very son Esau? And he said, I am.
6989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said, Bring it near to me, and I will eat of my son's venison, that my soul may bless thee. And he brought it near to him, and he did eat: and he brought him wine and he drank.
6990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And his father Isaac said unto him, Come near now, and kiss me, my son.
6991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he came near, and kissed him: and he smelled the smell of his raiment, and blessed him, and said, See, the smell of my son is as the smell of a field which the LORD hath blessed:
6992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Therefore God give thee of the dew of heaven, and the fatness of the earth, and plenty of corn and wine:
6993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let people serve thee, and nations bow down to thee: be lord over thy brethren, and let thy mother's sons bow down to thee: cursed be every one that curseth thee, and blessed be he that blesseth thee.
6994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, as soon as Isaac had made an end of blessing Jacob, and Jacob was yet scarce gone out from the presence of Isaac his father, that Esau his brother came in from his hunting.
6995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he also had made savory meat, and brought it unto his father, and said unto his father, Let my father arise, and eat of his son's venison, that thy soul may bless me.
6996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Isaac his father said unto him, Who art thou? And he said, I am thy son, thy firstborn Esau.
6997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Isaac trembled very exceedingly, and said, Who? where is he that hath taken venison, and brought it me, and I have eaten of all before thou camest, and have blessed him? yea, and he shall be blessed.
6998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when Esau heard the words of his father, he cried with a great and exceeding bitter cry, and said unto his father, Bless me, even me also, O my father.
6999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Thy brother came with subtilty, and hath taken away thy blessing.
7000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Is not he rightly named Jacob? for he hath supplanted me these two times: he took away my birthright; and, behold, now he hath taken away my blessing. And he said, Hast thou not reserved a blessing for me?
7001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Isaac answered and said unto Esau, Behold, I have made him thy lord, and all his brethren have I given to him for servants; and with corn and wine have I sustained him: and what shall I do now unto thee, my son?
7002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Esau said unto his father, Hast thou but one blessing, my father? bless me, even me also, O my father. And Esau lifted up his voice, and wept.
7003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Isaac his father answered and said unto him, Behold, thy dwelling shall be the fatness of the earth, and of the dew of heaven from above;
7004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And by thy sword shalt thou live, and shalt serve thy brother; and it shall come to pass when thou shalt have the dominion, that thou shalt break his yoke from off thy neck.
7005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Esau hated Jacob because of the blessing wherewith his father blessed him: and Esau said in his heart, The days of mourning for my father are at hand; then will I slay my brother Jacob.
7006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And these words of Esau her elder son were told to Rebekah: and she sent and called Jacob her younger son, and said unto him, Behold, thy brother Esau, as touching thee, doth comfort himself, purposing to kill thee.
7007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore, my son, obey my voice; arise, flee thou to Laban my brother to Haran;
7008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And tarry with him a few days, until thy brother's fury turn away;
7009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Until thy brother's anger turn away from thee, and he forget that which thou hast done to him: then I will send, and fetch thee from thence: why should I be deprived also of you both in one day?
7010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Rebekah said to Isaac, I am weary of my life because of the daughters of Heth: if Jacob take a wife of the daughters of Heth, such as these which are of the daughters of the land, what good shall my life do me?
7011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Isaac called Jacob, and blessed him, and charged him, and said unto him, Thou shalt not take a wife of the daughters of Canaan.
7012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Arise, go to Padanaram, to the house of Bethuel thy mother's father; and take thee a wife from thence of the daughters of Laban thy mother's brother.
7013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God Almighty bless thee, and make thee fruitful, and multiply thee, that thou mayest be a multitude of people;
7014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And give thee the blessing of Abraham, to thee, and to thy seed with thee; that thou mayest inherit the land wherein thou art a stranger, which God gave unto Abraham.
7015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Isaac sent away Jacob: and he went to Padanaram unto Laban, son of Bethuel the Syrian, the brother of Rebekah, Jacob's and Esau's mother.
7016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Esau saw that Isaac had blessed Jacob, and sent him away to Padanaram, to take him a wife from thence; and that as he blessed him he gave him a charge, saying, Thou shalt not take a wife of the daughters of Canaan;
7017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And that Jacob obeyed his father and his mother, and was gone to Padanaram;
7018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Esau seeing that the daughters of Canaan pleased not Isaac his father;
7019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then went Esau unto Ishmael, and took unto the wives which he had Mahalath the daughter of Ishmael Abraham's son, the sister of Nebajoth, to be his wife.
7020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jacob went out from Beersheba, and went toward Haran.
7021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he lighted upon a certain place, and tarried there all night, because the sun was set; and he took of the stones of that place, and put them for his pillows, and lay down in that place to sleep.
7022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he dreamed, and behold a ladder set up on the earth, and the top of it reached to heaven: and behold the angels of God ascending and descending on it.
7023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And, behold, the LORD stood above it, and said, I am the LORD God of Abraham thy father, and the God of Isaac: the land whereon thou liest, to thee will I give it, and to thy seed;
7024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thy seed shall be as the dust of the earth, and thou shalt spread abroad to the west, and to the east, and to the north, and to the south: and in thee and in thy seed shall all the families of the earth be blessed.
7025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And, behold, I am with thee, and will keep thee in all places whither thou goest, and will bring thee again into this land; for I will not leave thee, until I have done that which I have spoken to thee of.
7026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob awaked out of his sleep, and he said, Surely the LORD is in this place; and I knew it not.
7027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he was afraid, and said, How dreadful is this place! this is none other but the house of God, and this is the gate of heaven.
7028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob rose up early in the morning, and took the stone that he had put for his pillows, and set it up for a pillar, and poured oil upon the top of it.
7029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he called the name of that place Bethel: but the name of that city was called Luz at the first.
7030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob vowed a vow, saying, If God will be with me, and will keep me in this way that I go, and will give me bread to eat, and raiment to put on,
7031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So that I come again to my father's house in peace; then shall the LORD be my God:
7032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And this stone, which I have set for a pillar, shall be God's house: and of all that thou shalt give me I will surely give the tenth unto thee.
7033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Jacob went on his journey, and came into the land of the people of the east.
7034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he looked, and behold a well in the field, and, lo, there were three flocks of sheep lying by it; for out of that well they watered the flocks: and a great stone was upon the well's mouth.
7035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thither were all the flocks gathered: and they rolled the stone from the well's mouth, and watered the sheep, and put the stone again upon the well's mouth in his place.
7036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob said unto them, My brethren, whence be ye? And they said, Of Haran are we.
7037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said unto them, Know ye Laban the son of Nahor? And they said, We know him.
7038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said unto them, Is he well? And they said, He is well: and, behold, Rachel his daughter cometh with the sheep.
7039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Lo, it is yet high day, neither is it time that the cattle should be gathered together: water ye the sheep, and go and feed them.
7040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they said, We cannot, until all the flocks be gathered together, and till they roll the stone from the well's mouth; then we water the sheep.
7041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And while he yet spake with them, Rachel came with her father's sheep; for she kept them.
7042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when Jacob saw Rachel the daughter of Laban his mother's brother, and the sheep of Laban his mother's brother, that Jacob went near, and rolled the stone from the well's mouth, and watered the flock of Laban his mother's brother.
7043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jacob kissed Rachel, and lifted up his voice, and wept.
7044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob told Rachel that he was her father's brother, and that he was Rebekah's son: and she ran and told her father.
7045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when Laban heard the tidings of Jacob his sister's son, that he ran to meet him, and embraced him, and kissed him, and brought him to his house. And he told Laban all these things.
7046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Laban said to him, Surely thou art my bone and my flesh. And he abode with him the space of a month.
7047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Laban said unto Jacob, Because thou art my brother, shouldest thou therefore serve me for nought? tell me, what shall thy wages be?
7048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Laban had two daughters: the name of the elder was Leah, and the name of the younger was Rachel.
7049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Leah was tender eyed; but Rachel was beautiful and well favored.
7050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob loved Rachel; and said, I will serve thee seven years for Rachel thy younger daughter.
7051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Laban said, It is better that I give her to thee, than that I should give her to another man: abide with me.
7052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jacob served seven years for Rachel; and they seemed unto him but a few days, for the love he had to her.
7053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jacob said unto Laban, Give me my wife, for my days are fulfilled, that I may go in unto her.
7054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Laban gathered together all the men of the place, and made a feast.
7055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass in the evening, that he took Leah his daughter, and brought her to him; and he went in unto her.
7056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Laban gave unto his daughter Leah Zilpah his maid for an handmaid.
7057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, that in the morning, behold, it was Leah: and he said to Laban, What is this thou hast done unto me? did not I serve with thee for Rachel? wherefore then hast thou beguiled me?
7058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Laban said, It must not be so done in our country, to give the younger before the firstborn.
7059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fulfil her week, and we will give thee this also for the service which thou shalt serve with me yet seven other years.
7060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jacob did so, and fulfilled her week: and he gave him Rachel his daughter to wife also.
7061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Laban gave to Rachel his daughter Bilhah his handmaid to be her maid.
7062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he went in also unto Rachel, and he loved also Rachel more than Leah, and served with him yet seven other years.
7063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when the LORD saw that Leah was hated, he opened her womb: but Rachel was barren.
7064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Leah conceived, and bare a son, and she called his name Reuben: for she said, Surely the LORD hath looked upon my affliction; now therefore my husband will love me.
7065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she conceived again, and bare a son; and said, Because the LORD hath heard I was hated, he hath therefore given me this son also: and she called his name Simeon.
7066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And she conceived again, and bare a son; and said, Now this time will my husband be joined unto me, because I have born him three sons: therefore was his name called Levi.
7067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she conceived again, and bare a son: and she said, Now will I praise the LORD: therefore she called his name Judah; and left bearing.
7068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Rachel saw that she bare Jacob no children, Rachel envied her sister; and said unto Jacob, Give me children, or else I die.
7069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jacob's anger was kindled against Rachel: and he said, Am I in God's stead, who hath withheld from thee the fruit of the womb?
7070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she said, Behold my maid Bilhah, go in unto her; and she shall bear upon my knees, that I may also have children by her.
7071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she gave him Bilhah her handmaid to wife: and Jacob went in unto her.
7072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Bilhah conceived, and bare Jacob a son.
7073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Rachel said, God hath judged me, and hath also heard my voice, and hath given me a son: therefore called she his name Dan.
7074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Bilhah Rachel's maid conceived again, and bare Jacob a second son.
7075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Rachel said, With great wrestlings have I wrestled with my sister, and I have prevailed: and she called his name Naphtali.
7076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When Leah saw that she had left bearing, she took Zilpah her maid, and gave her Jacob to wife.
7077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Zilpah Leah's maid bare Jacob a son.
7078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Leah said, A troop cometh: and she called his name Gad.
7079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Zilpah Leah's maid bare Jacob a second son.
7080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Leah said, Happy am I, for the daughters will call me blessed: and she called his name Asher.
7081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Reuben went in the days of wheat harvest, and found mandrakes in the field, and brought them unto his mother Leah. Then Rachel said to Leah, Give me, I pray thee, of thy son's mandrakes.
7082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she said unto her, Is it a small matter that thou hast taken my husband? and wouldest thou take away my son's mandrakes also? And Rachel said, Therefore he shall lie with thee to night for thy son's mandrakes.
7083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jacob came out of the field in the evening, and Leah went out to meet him, and said, Thou must come in unto me; for surely I have hired thee with my son's mandrakes. And he lay with her that night.
7084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And God hearkened unto Leah, and she conceived, and bare Jacob the fifth son.
7085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Leah said, God hath given me my hire, because I have given my maiden to my husband: and she called his name Issachar.
7086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Leah conceived again, and bare Jacob the sixth son.
7087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Leah said, God hath endued me with a good dowry; now will my husband dwell with me, because I have born him six sons: and she called his name Zebulun.
7088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And afterwards she bare a daughter, and called her name Dinah.
7089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And God remembered Rachel, and God hearkened to her, and opened her womb.
7090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she conceived, and bare a son; and said, God hath taken away my reproach:
7091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she called his name Joseph; and said, The LORD shall add to me another son.
7092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when Rachel had born Joseph, that Jacob said unto Laban, Send me away, that I may go unto mine own place, and to my country.
7093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Give me my wives and my children, for whom I have served thee, and let me go: for thou knowest my service which I have done thee.
7094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Laban said unto him, I pray thee, if I have found favor in thine eyes, tarry: for I have learned by experience that the LORD hath blessed me for thy sake.
7095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Appoint me thy wages, and I will give it.
7096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto him, Thou knowest how I have served thee, and how thy cattle was with me.
7097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For it was little which thou hadst before I came, and it is now increased unto a multitude; and the LORD hath blessed thee since my coming: and now when shall I provide for mine own house also?
7098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, What shall I give thee? And Jacob said, Thou shalt not give me any thing: if thou wilt do this thing for me, I will again feed and keep thy flock.
7099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will pass through all thy flock to day, removing from thence all the speckled and spotted cattle, and all the brown cattle among the sheep, and the spotted and speckled among the goats: and of such shall be my hire.
7100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So shall my righteousness answer for me in time to come, when it shall come for my hire before thy face: every one that is not speckled and spotted among the goats, and brown among the sheep, that shall be counted stolen with me.
7101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Laban said, Behold, I would it might be according to thy word.
7102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he removed that day the he goats that were ring-streaked and spotted, and all the she goats that were speckled and spotted, and every one that had some white in it, and all the brown among the sheep, and gave them into the hand of his sons.
7103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he set three days' journey betwixt himself and Jacob: and Jacob fed the rest of Laban's flocks.
7104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jacob took him rods of green poplar, and of the hazel and chestnut tree; and pilled white streaks in them, and made the white appear which was in the rods.
7105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he set the rods which he had pilled before the flocks in the gutters in the watering troughs when the flocks came to drink, that they should conceive when they came to drink.
7106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the flocks conceived before the rods, and brought forth cattle ring-streaked, speckled, and spotted.
7107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jacob did separate the lambs, and set the faces of the flocks toward the ring-streaked, and all the brown in the flock of Laban; and he put his own flocks by themselves, and put them not unto Laban's cattle.
7108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, whensoever the stronger cattle did conceive, that Jacob laid the rods before the eyes of the cattle in the gutters, that they might conceive among the rods.
7109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But when the cattle were feeble, he put them not in: so the feebler were Laban's, and the stronger Jacob's.
7110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the man increased exceedingly, and had much cattle, and maidservants, and menservants, and camels, and asses.
7111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he heard the words of Laban's sons, saying, Jacob hath taken away all that was our father's; and of that which was our father's hath he gotten all this glory.
7112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jacob beheld the countenance of Laban, and, behold, it was not toward him as before.
7113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Jacob, Return unto the land of thy fathers, and to thy kindred; and I will be with thee.
7114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob sent and called Rachel and Leah to the field unto his flock,
7115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And said unto them, I see your father's countenance, that it is not toward me as before; but the God of my father hath been with me.
7116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye know that with all my power I have served your father.
7117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And your father hath deceived me, and changed my wages ten times; but God suffered him not to hurt me.
7118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If he said thus, The speckled shall be thy wages; then all the cattle bare speckled: and if he said thus, The ring-streaked shall be thy hire; then bare all the cattle ring-streaked.
7119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thus God hath taken away the cattle of your father, and given them to me.
7120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass at the time that the cattle conceived, that I lifted up mine eyes, and saw in a dream, and, behold, the rams which leaped upon the cattle were ring-streaked, speckled, and grizzled.
7121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the angel of God spake unto me in a dream, saying, Jacob: And I said, Here am I.
7122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Lift up now thine eyes, and see, all the rams which leap upon the cattle are ring-streaked, speckled, and grizzled: for I have seen all that Laban doeth unto thee.
7123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I am the God of Bethel, where thou anointedst the pillar, and where thou vowedst a vow unto me: now arise, get thee out from this land, and return unto the land of thy kindred.
7124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Rachel and Leah answered and said unto him, Is there yet any portion or inheritance for us in our father's house?
7125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Are we not counted of him strangers? for he hath sold us, and hath quite devoured also our money.
7126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For all the riches which God hath taken from our father, that is ours, and our children's: now then, whatsoever God hath said unto thee, do.
7127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Jacob rose up, and set his sons and his wives upon camels;
7128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he carried away all his cattle, and all his goods which he had gotten, the cattle of his getting, which he had gotten in Padanaram, for to go to Isaac his father in the land of Canaan.
7129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Laban went to shear his sheep: and Rachel had stolen the images that were her father's.
7130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jacob stole away unawares to Laban the Syrian, in that he told him not that he fled.
7131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So he fled with all that he had; and he rose up, and passed over the river, and set his face toward the mount Gilead.
7132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it was told Laban on the third day that Jacob was fled.
7133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took his brethren with him, and pursued after him seven days' journey; and they overtook him in the mount Gilead.
7134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And God came to Laban the Syrian in a dream by night, and said unto him, Take heed that thou speak not to Jacob either good or bad.
7135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Laban overtook Jacob. Now Jacob had pitched his tent in the mount: and Laban with his brethren pitched in the mount of Gilead.
7136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Laban said to Jacob, What hast thou done, that thou hast stolen away unawares to me, and carried away my daughters, as captives taken with the sword?
7137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wherefore didst thou flee away secretly, and steal away from me; and didst not tell me, that I might have sent thee away with mirth, and with songs, with tabret, and with harp?
7138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And hast not suffered me to kiss my sons and my daughters? thou hast now done foolishly in so doing.
7139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It is in the power of my hand to do you hurt: but the God of your father spake unto me yesternight, saying, Take thou heed that thou speak not to Jacob either good or bad.
7140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And now, though thou wouldest needs be gone, because thou sore longedst after thy father's house, yet wherefore hast thou stolen my gods?
7141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob answered and said to Laban, Because I was afraid: for I said, Peradventure thou wouldest take by force thy daughters from me.
7142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          With whomsoever thou findest thy gods, let him not live: before our brethren discern thou what is thine with me, and take it to thee. For Jacob knew not that Rachel had stolen them.
7143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Laban went into Jacob's tent, and into Leah's tent, and into the two maidservants' tents; but he found them not. Then went he out of Leah's tent, and entered into Rachel's tent.
7144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now Rachel had taken the images, and put them in the camel's furniture, and sat upon them. And Laban searched all the tent, but found them not.
7145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she said to her father, Let it not displease my lord that I cannot rise up before thee; for the custom of women is upon me. And he searched but found not the images.
7146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jacob was wroth, and chode with Laban: and Jacob answered and said to Laban, What is my trespass? what is my sin, that thou hast so hotly pursued after me?
7147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whereas thou hast searched all my stuff, what hast thou found of all thy household stuff? set it here before my brethren and thy brethren, that they may judge betwixt us both.
7148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This twenty years have I been with thee; thy ewes and thy she goats have not cast their young, and the rams of thy flock have I not eaten.
7149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That which was torn of beasts I brought not unto thee; I bare the loss of it; of my hand didst thou require it, whether stolen by day, or stolen by night.
7150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thus I was; in the day the drought consumed me, and the frost by night; and my sleep departed from mine eyes.
7151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus have I been twenty years in thy house; I served thee fourteen years for thy two daughters, and six years for thy cattle: and thou hast changed my wages ten times.
7152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Except the God of my father, the God of Abraham, and the fear of Isaac, had been with me, surely thou hadst sent me away now empty. God hath seen mine affliction and the labor of my hands, and rebuked thee yesternight.
7153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Laban answered and said unto Jacob, These daughters are my daughters, and these children are my children, and these cattle are my cattle, and all that thou seest is mine: and what can I do this day unto these my daughters, or unto their children which they have born?
7154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore come thou, let us make a covenant, I and thou; and let it be for a witness between me and thee.
7155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jacob took a stone, and set it up for a pillar.
7156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jacob said unto his brethren, Gather stones; and they took stones, and made an heap: and they did eat there upon the heap.
7157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Laban called it Jegarsahadutha: but Jacob called it Galeed.
7158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Laban said, This heap is a witness between me and thee this day. Therefore was the name of it called Galeed;
7159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Mizpah; for he said, The LORD watch between me and thee, when we are absent one from another.
7160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If thou shalt afflict my daughters, or if thou shalt take other wives beside my daughters, no man is with us; see, God is witness betwixt me and thee.
7161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Laban said to Jacob, Behold this heap, and behold this pillar, which I have cast betwixt me and thee:
7162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This heap be witness, and this pillar be witness, that I will not pass over this heap to thee, and that thou shalt not pass over this heap and this pillar unto me, for harm.
7163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The God of Abraham, and the God of Nahor, the God of their father, judge betwixt us. And Jacob sware by the fear of his father Isaac.
7164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Jacob offered sacrifice upon the mount, and called his brethren to eat bread: and they did eat bread, and tarried all night in the mount.
7165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And early in the morning Laban rose up, and kissed his sons and his daughters, and blessed them: and Laban departed, and returned unto his place.
7166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jacob went on his way, and the angels of God met him.
7167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Jacob saw them, he said, This is God's host: and he called the name of that place Mahanaim.
7168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob sent messengers before him to Esau his brother unto the land of Seir, the country of Edom.
7169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he commanded them, saying, Thus shall ye speak unto my lord Esau; Thy servant Jacob saith thus, I have sojourned with Laban, and stayed there until now:
7170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I have oxen, and asses, flocks, and menservants, and womenservants: and I have sent to tell my lord, that I may find grace in thy sight.
7171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the messengers returned to Jacob, saying, We came to thy brother Esau, and also he cometh to meet thee, and four hundred men with him.
7172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then Jacob was greatly afraid and distressed: and he divided the people that was with him, and the flocks, and herds, and the camels, into two bands;
7173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And said, If Esau come to the one company, and smite it, then the other company which is left shall escape.
7174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jacob said, O God of my father Abraham, and God of my father Isaac, the LORD which saidst unto me, Return unto thy country, and to thy kindred, and I will deal well with thee:
7175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I am not worthy of the least of all the mercies, and of all the truth, which thou hast showed unto thy servant; for with my staff I passed over this Jordan; and now I am become two bands.
7176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Deliver me, I pray thee, from the hand of my brother, from the hand of Esau: for I fear him, lest he will come and smite me, and the mother with the children.
7177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou saidst, I will surely do thee good, and make thy seed as the sand of the sea, which cannot be numbered for multitude.
7178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he lodged there that same night; and took of that which came to his hand a present for Esau his brother;
7179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Two hundred she goats, and twenty he goats, two hundred ewes, and twenty rams,
7180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thirty milch camels with their colts, forty kine, and ten bulls, twenty she asses, and ten foals.
7181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he delivered them into the hand of his servants, every drove by themselves; and said unto his servants, Pass over before me, and put a space betwixt drove and drove.
7182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he commanded the foremost, saying, When Esau my brother meeteth thee, and asketh thee, saying, Whose art thou? and whither goest thou? and whose are these before thee?
7183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then thou shalt say, They be thy servant Jacob's; it is a present sent unto my lord Esau: and, behold, also he is behind us.
7184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And so commanded he the second, and the third, and all that followed the droves, saying, On this manner shall ye speak unto Esau, when ye find him.
7185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And say ye moreover, Behold, thy servant Jacob is behind us. For he said, I will appease him with the present that goeth before me, and afterward I will see his face; peradventure he will accept of me.
7186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So went the present over before him: and himself lodged that night in the company.
7187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he rose up that night, and took his two wives, and his two womenservants, and his eleven sons, and passed over the ford Jabbok.
7188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he took them, and sent them over the brook, and sent over that he had.
7189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob was left alone; and there wrestled a man with him until the breaking of the day.
7190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when he saw that he prevailed not against him, he touched the hollow of his thigh; and the hollow of Jacob's thigh was out of joint, as he wrestled with him.
7191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Let me go, for the day breaketh. And he said, I will not let thee go, except thou bless me.
7192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said unto him, What is thy name? And he said, Jacob.
7193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Thy name shall be called no more Jacob, but Israel: for as a prince hast thou power with God and with men, and hast prevailed.
7194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob asked him, and said, Tell me, I pray thee, thy name. And he said, Wherefore is it that thou dost ask after my name? And he blessed him there.
7195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob called the name of the place Peniel: for I have seen God face to face, and my life is preserved.
7196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And as he passed over Penuel the sun rose upon him, and he halted upon his thigh.
7197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore the children of Israel eat not of the sinew which shrank, which is upon the hollow of the thigh, unto this day: because he touched the hollow of Jacob's thigh in the sinew that shrank.
7198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jacob lifted up his eyes, and looked, and, behold, Esau came, and with him four hundred men. And he divided the children unto Leah, and unto Rachel, and unto the two handmaids.
7199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he put the handmaids and their children foremost, and Leah and her children after, and Rachel and Joseph hindermost.
7200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he passed over before them, and bowed himself to the ground seven times, until he came near to his brother.
7201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Esau ran to meet him, and embraced him, and fell on his neck, and kissed him: and they wept.
7202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he lifted up his eyes, and saw the women and the children; and said, Who are those with thee? And he said, The children which God hath graciously given thy servant.
7203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the handmaidens came near, they and their children, and they bowed themselves.
7204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Leah also with her children came near, and bowed themselves: and after came Joseph near and Rachel, and they bowed themselves.
7205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, What meanest thou by all this drove which I met? And he said, These are to find grace in the sight of my lord.
7206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Esau said, I have enough, my brother; keep that thou hast unto thyself.
7207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob said, Nay, I pray thee, if now I have found grace in thy sight, then receive my present at my hand: for therefore I have seen thy face, as though I had seen the face of God, and thou wast pleased with me.
7208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Take, I pray thee, my blessing that is brought to thee; because God hath dealt graciously with me, and because I have enough. And he urged him, and he took it.
7209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, Let us take our journey, and let us go, and I will go before thee.
7210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto him, My lord knoweth that the children are tender, and the flocks and herds with young are with me: and if men should overdrive them one day, all the flock will die.
7211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let my lord, I pray thee, pass over before his servant: and I will lead on softly, according as the cattle that goeth before me and the children be able to endure, until I come unto my lord unto Seir.
7212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Esau said, Let me now leave with thee some of the folk that are with me. And he said, What needeth it? let me find grace in the sight of my lord.
7213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Esau returned that day on his way unto Seir.
7214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob journeyed to Succoth, and built him an house, and made booths for his cattle: therefore the name of the place is called Succoth.
7215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jacob came to Shalem, a city of Shechem, which is in the land of Canaan, when he came from Padanaram; and pitched his tent before the city.
7216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he bought a parcel of a field, where he had spread his tent, at the hand of the children of Hamor, Shechem's father, for an hundred pieces of money.
7217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he erected there an altar, and called it EleloheIsrael.
7218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Dinah the daughter of Leah, which she bare unto Jacob, went out to see the daughters of the land.
7219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when Shechem the son of Hamor the Hivite, prince of the country, saw her, he took her, and lay with her, and defiled her.
7220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And his soul clave unto Dinah the daughter of Jacob, and he loved the damsel, and spake kindly unto the damsel.
7221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Shechem spake unto his father Hamor, saying, Get me this damsel to wife.
7222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jacob heard that he had defiled Dinah his daughter: now his sons were with his cattle in the field: and Jacob held his peace until they were come.
7223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Hamor the father of Shechem went out unto Jacob to commune with him.
7224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Jacob came out of the field when they heard it: and the men were grieved, and they were very wroth, because he had wrought folly in Israel in lying with Jacob's daughter: which thing ought not to be done.
7225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Hamor communed with them, saying, The soul of my son Shechem longeth for your daughter: I pray you give her him to wife.
7226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And make ye marriages with us, and give your daughters unto us, and take our daughters unto you.
7227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ye shall dwell with us: and the land shall be before you; dwell and trade ye therein, and get you possessions therein.
7228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Shechem said unto her father and unto her brethren, Let me find grace in your eyes, and what ye shall say unto me I will give.
7229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ask me never so much dowry and gift, and I will give according as ye shall say unto me: but give me the damsel to wife.
7230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Jacob answered Shechem and Hamor his father deceitfully, and said, because he had defiled Dinah their sister:
7231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they said unto them, We cannot do this thing, to give our sister to one that is uncircumcised; for that were a reproach unto us:
7232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But in this will we consent unto you: If ye will be as we be, that every male of you be circumcised;
7233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then will we give our daughters unto you, and we will take your daughters to us, and we will dwell with you, and we will become one people.
7234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if ye will not hearken unto us, to be circumcised; then will we take our daughter, and we will be gone.
7235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And their words pleased Hamor, and Shechem Hamor's son.
7236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the young man deferred not to do the thing, because he had delight in Jacob's daughter: and he was more honorable than all the house of his father.
7237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Hamor and Shechem his son came unto the gate of their city, and communed with the men of their city, saying,
7238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These men are peaceable with us; therefore let them dwell in the land, and trade therein; for the land, behold, it is large enough for them; let us take their daughters to us for wives, and let us give them our daughters.
7239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Only herein will the men consent unto us for to dwell with us, to be one people, if every male among us be circumcised, as they are circumcised.
7240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shall not their cattle and their substance and every beast of theirs be ours? only let us consent unto them, and they will dwell with us.
7241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And unto Hamor and unto Shechem his son hearkened all that went out of the gate of his city; and every male was circumcised, all that went out of the gate of his city.
7242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass on the third day, when they were sore, that two of the sons of Jacob, Simeon and Levi, Dinah's brethren, took each man his sword, and came upon the city boldly, and slew all the males.
7243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they slew Hamor and Shechem his son with the edge of the sword, and took Dinah out of Shechem's house, and went out.
7244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sons of Jacob came upon the slain, and spoiled the city, because they had defiled their sister.
7245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They took their sheep, and their oxen, and their asses, and that which was in the city, and that which was in the field,
7246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And all their wealth, and all their little ones, and their wives took they captive, and spoiled even all that was in the house.
7247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob said to Simeon and Levi, Ye have troubled me to make me to stink among the inhabitants of the land, among the Canaanites and the Perizzites: and I being few in number, they shall gather themselves together against me, and slay me; and I shall be destroyed, I and my house.
7248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they said, Should he deal with our sister as with an harlot?
7249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And God said unto Jacob, Arise, go up to Bethel, and dwell there: and make there an altar unto God, that appeared unto thee when thou fleddest from the face of Esau thy brother.
7250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Jacob said unto his household, and to all that were with him, Put away the strange gods that are among you, and be clean, and change your garments:
7251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And let us arise, and go up to Bethel; and I will make there an altar unto God, who answered me in the day of my distress, and was with me in the way which I went.
7252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they gave unto Jacob all the strange gods which were in their hand, and all their earrings which were in their ears; and Jacob hid them under the oak which was by Shechem.
7253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they journeyed: and the terror of God was upon the cities that were round about them, and they did not pursue after the sons of Jacob.
7254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Jacob came to Luz, which is in the land of Canaan, that is, Bethel, he and all the people that were with him.
7255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he built there an altar, and called the place Elbethel: because there God appeared unto him, when he fled from the face of his brother.
7256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But Deborah Rebekah's nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allonbachuth.
7257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God appeared unto Jacob again, when he came out of Padanaram, and blessed him.
7258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And God said unto him, Thy name is Jacob: thy name shall not be called any more Jacob, but Israel shall be thy name: and he called his name Israel.
7259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And God said unto him, I am God Almighty: be fruitful and multiply; a nation and a company of nations shall be of thee, and kings shall come out of thy loins;
7260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the land which I gave Abraham and Isaac, to thee I will give it, and to thy seed after thee will I give the land.
7261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And God went up from him in the place where he talked with him.
7262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jacob set up a pillar in the place where he talked with him, even a pillar of stone: and he poured a drink offering thereon, and he poured oil thereon.
7263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jacob called the name of the place where God spake with him, Bethel.
7264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they journeyed from Bethel; and there was but a little way to come to Ephrath: and Rachel travailed, and she had hard labor.
7265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when she was in hard labor, that the midwife said unto her, Fear not; thou shalt have this son also.
7266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as her soul was in departing, (for she died) that she called his name Benoni: but his father called him Benjamin.
7267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Rachel died, and was buried in the way to Ephrath, which is Bethlehem.
7268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jacob set a pillar upon her grave: that is the pillar of Rachel's grave unto this day.
7269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Israel journeyed, and spread his tent beyond the tower of Edar.
7270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when Israel dwelt in that land, that Reuben went and lay with Bilhah his father's concubine: and Israel heard it. Now the sons of Jacob were twelve:
7271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The sons of Leah; Reuben, Jacob's firstborn, and Simeon, and Levi, and Judah, and Issachar, and Zebulun:
7272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Rachel; Joseph, and Benjamin:
7273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Bilhah, Rachel's handmaid; Dan, and Naphtali:
7274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Zilpah, Leah's handmaid: Gad, and Asher: these are the sons of Jacob, which were born to him in Padanaram.
7275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jacob came unto Isaac his father unto Mamre, unto the city of Arba, which is Hebron, where Abraham and Isaac sojourned.
7276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the days of Isaac were an hundred and fourscore years.
7277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Isaac gave up the ghost, and died, and was gathered unto his people, being old and full of days: and his sons Esau and Jacob buried him.
7278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now these are the generations of Esau, who is Edom.
7279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Esau took his wives of the daughters of Canaan; Adah the daughter of Elon the Hittite, and Aholibamah the daughter of Anah the daughter of Zibeon the Hivite;
7280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Bashemath Ishmael's daughter, sister of Nebajoth.
7281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Adah bare to Esau Eliphaz; and Bashemath bare Reuel;
7282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of Esau, which were born unto him in the land of Canaan.
7283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Esau took his wives, and his sons, and his daughters, and all the persons of his house, and his cattle, and all his beasts, and all his substance, which he had got in the land of Canaan; and went into the country from the face of his brother Jacob.
7284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For their riches were more than that they might dwell together; and the land wherein they were strangers could not bear them because of their cattle.
7285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thus dwelt Esau in mount Seir: Esau is Edom.
7286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And these are the generations of Esau the father of the Edomites in mount Seir:
7287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the names of Esau's sons; Eliphaz the son of Adah the wife of Esau, Reuel the son of Bashemath the wife of Esau.
7288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and Kenaz.
7289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Timna was concubine to Eliphaz Esau's son; and she bare to Eliphaz Amalek: these were the sons of Adah Esau's wife.
7290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And these are the sons of Reuel; Nahath, and Zerah, Shammah, and Mizzah: these were the sons of Bashemath Esau's wife.
7291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And these were the sons of Aholibamah, the daughter of Anah the daughter of Zibeon, Esau's wife: and she bare to Esau Jeush, and Jaalam, and Korah.
7292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These were dukes of the sons of Esau: the sons of Eliphaz the firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz,
7293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Duke Korah, duke Gatam, and duke Amalek: these are the dukes that came of Eliphaz in the land of Edom; these were the sons of Adah.
7294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And these are the sons of Reuel Esau's son; duke Nahath, duke Zerah, duke Shammah, duke Mizzah: these are the dukes that came of Reuel in the land of Edom; these are the sons of Bashemath Esau's wife.
7295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And these are the sons of Aholibamah Esau's wife; duke Jeush, duke Jaalam, duke Korah: these were the dukes that came of Aholibamah the daughter of Anah, Esau's wife.
7296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the sons of Esau, who is Edom, and these are their dukes.
7297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the sons of Seir the Horite, who inhabited the land; Lotan, and Shobal, and Zibeon, and Anah,
7298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Dishon, and Ezer, and Dishan: these are the dukes of the Horites, the children of Seir in the land of Edom.
7299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Lotan were Hori and Hemam; and Lotan's sister was Timna.
7300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Shobal were these; Alvan, and Manahath, and Ebal, Shepho, and Onam.
7301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And these are the children of Zibeon; both Ajah, and Anah: this was that Anah that found the mules in the wilderness, as he fed the asses of Zibeon his father.
7302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the children of Anah were these; Dishon, and Aholibamah the daughter of Anah.
7303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And these are the children of Dishon; Hemdan, and Eshban, and Ithran, and Cheran.
7304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The children of Ezer are these; Bilhan, and Zaavan, and Akan.
7305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The children of Dishan are these; Uz, and Aran.
7306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These are the dukes that came of the Horites; duke Lotan, duke Shobal, duke Zibeon, duke Anah,
7307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Duke Dishon, duke Ezer, duke Dishan: these are the dukes that came of Hori, among their dukes in the land of Seir.
7308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And these are the kings that reigned in the land of Edom, before there reigned any king over the children of Israel.
7309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Bela the son of Beor reigned in Edom: and the name of his city was Dinhabah.
7310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Bela died, and Jobab the son of Zerah of Bozrah reigned in his stead.
7311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jobab died, and Husham of the land of Temani reigned in his stead.
7312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Husham died, and Hadad the son of Bedad, who smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith.
7313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Hadad died, and Samlah of Masrekah reigned in his stead.
7314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Samlah died, and Saul of Rehoboth by the river reigned in his stead.
7315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul died, and Baalhanan the son of Achbor reigned in his stead.
7316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Baalhanan the son of Achbor died, and Hadar reigned in his stead: and the name of his city was Pau; and his wife's name was Mehetabel, the daughter of Matred, the daughter of Mezahab.
7317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And these are the names of the dukes that came of Esau, according to their families, after their places, by their names; duke Timnah, duke Alvah, duke Jetheth,
7318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Duke Aholibamah, duke Elah, duke Pinon,
7319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Duke Kenaz, duke Teman, duke Mibzar,
7320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Duke Magdiel, duke Iram: these be the dukes of Edom, according to their habitations in the land of their possession: he is Esau the father of the Edomites.
7321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jacob dwelt in the land wherein his father was a stranger, in the land of Canaan.
7322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the generations of Jacob. Joseph, being seventeen years old, was feeding the flock with his brethren; and the lad was with the sons of Bilhah, and with the sons of Zilpah, his father's wives: and Joseph brought unto his father their evil report.
7323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now Israel loved Joseph more than all his children, because he was the son of his old age: and he made him a coat of many colors.
7324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when his brethren saw that their father loved him more than all his brethren, they hated him, and could not speak peaceably unto him.
7325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joseph dreamed a dream, and he told it his brethren: and they hated him yet the more.
7326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto them, Hear, I pray you, this dream which I have dreamed:
7327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For, behold, we were binding sheaves in the field, and, lo, my sheaf arose, and also stood upright; and, behold, your sheaves stood round about, and made obeisance to my sheaf.
7328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his brethren said to him, Shalt thou indeed reign over us? or shalt thou indeed have dominion over us? And they hated him yet the more for his dreams, and for his words.
7329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he dreamed yet another dream, and told it his brethren, and said, Behold, I have dreamed a dream more; and, behold, the sun and the moon and the eleven stars made obeisance to me.
7330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he told it to his father, and to his brethren: and his father rebuked him, and said unto him, What is this dream that thou hast dreamed? Shall I and thy mother and thy brethren indeed come to bow down ourselves to thee to the earth?
7331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And his brethren envied him; but his father observed the saying.
7332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his brethren went to feed their father's flock in Shechem.
7333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Israel said unto Joseph, Do not thy brethren feed the flock in Shechem? come, and I will send thee unto them. And he said to him, Here am I.
7334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said to him, Go, I pray thee, see whether it be well with thy brethren, and well with the flocks; and bring me word again. So he sent him out of the vale of Hebron, and he came to Shechem.
7335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And a certain man found him, and, behold, he was wandering in the field: and the man asked him, saying, What seekest thou?
7336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, I seek my brethren: tell me, I pray thee, where they feed their flocks.
7337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the man said, They are departed hence; for I heard them say, Let us go to Dothan. And Joseph went after his brethren, and found them in Dothan.
7338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when they saw him afar off, even before he came near unto them, they conspired against him to slay him.
7339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they said one to another, Behold, this dreamer cometh.
7340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Come now therefore, and let us slay him, and cast him into some pit, and we will say, Some evil beast hath devoured him: and we shall see what will become of his dreams.
7341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Reuben heard it, and he delivered him out of their hands; and said, Let us not kill him.
7342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Reuben said unto them, Shed no blood, but cast him into this pit that is in the wilderness, and lay no hand upon him; that he might rid him out of their hands, to deliver him to his father again.
7343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when Joseph was come unto his brethren, that they stripped Joseph out of his coat, his coat of many colors that was on him;
7344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they took him, and cast him into a pit: and the pit was empty, there was no water in it.
7345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they sat down to eat bread: and they lifted up their eyes and looked, and, behold, a company of Ishmaelites came from Gilead with their camels bearing spicery and balm and myrrh, going to carry it down to Egypt.
7346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Judah said unto his brethren, What profit is it if we slay our brother, and conceal his blood?
7347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Come, and let us sell him to the Ishmaelites, and let not our hand be upon him; for he is our brother and our flesh. And his brethren were content.
7348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then there passed by Midianites merchantmen; and they drew and lifted up Joseph out of the pit, and sold Joseph to the Ishmaelites for twenty pieces of silver: and they brought Joseph into Egypt.
7349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Reuben returned unto the pit; and, behold, Joseph was not in the pit; and he rent his clothes.
7350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he returned unto his brethren, and said, The child is not; and I, whither shall I go?
7351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they took Joseph's coat, and killed a kid of the goats, and dipped the coat in the blood;
7352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they sent the coat of many colors, and they brought it to their father; and said, This have we found: know now whether it be thy son's coat or no.
7353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he knew it, and said, It is my son's coat; an evil beast hath devoured him; Joseph is without doubt rent in pieces.
7354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jacob rent his clothes, and put sackcloth upon his loins, and mourned for his son many days.
7355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all his sons and all his daughters rose up to comfort him; but he refused to be comforted; and he said, For I will go down into the grave unto my son mourning. Thus his father wept for him.
7356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the Midianites sold him into Egypt unto Potiphar, an officer of Pharaoh's, and captain of the guard.
7357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass at that time, that Judah went down from his brethren, and turned in to a certain Adullamite, whose name was Hirah.
7358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Judah saw there a daughter of a certain Canaanite, whose name was Shuah; and he took her, and went in unto her.
7359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she conceived, and bare a son; and he called his name Er.
7360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she conceived again, and bare a son; and she called his name Onan.
7361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And she yet again conceived, and bare a son; and called his name Shelah: and he was at Chezib, when she bare him.
7362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Judah took a wife for Er his firstborn, whose name was Tamar.
7363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Er, Judah's firstborn, was wicked in the sight of the LORD; and the LORD slew him.
7364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Judah said unto Onan, Go in unto thy brother's wife, and marry her, and raise up seed to thy brother.
7365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Onan knew that the seed should not be his; and it came to pass, when he went in unto his brother's wife, that he spilled it on the ground, lest that he should give seed to his brother.
7366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the thing which he did displeased the LORD: wherefore he slew him also.
7367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then said Judah to Tamar his daughter in law, Remain a widow at thy father's house, till Shelah my son be grown: for he said, Lest peradventure he die also, as his brethren did. And Tamar went and dwelt in her father's house.
7368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And in process of time the daughter of Shuah Judah's wife died; and Judah was comforted, and went up unto his sheepshearers to Timnath, he and his friend Hirah the Adullamite.
7369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it was told Tamar, saying, Behold thy father in law goeth up to Timnath to shear his sheep.
7370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she put her widow's garments off from her, and covered her with a vail, and wrapped herself, and sat in an open place, which is by the way to Timnath; for she saw that Shelah was grown, and she was not given unto him to wife.
7371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When Judah saw her, he thought her to be an harlot; because she had covered her face.
7372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he turned unto her by the way, and said, Go to, I pray thee, let me come in unto thee; (for he knew not that she was his daughter in law.) And she said, What wilt thou give me, that thou mayest come in unto me?
7373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, I will send thee a kid from the flock. And she said, Wilt thou give me a pledge, till thou send it?
7374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, What pledge shall I give thee? And she said, Thy signet, and thy bracelets, and thy staff that is in thine hand. And he gave it her, and came in unto her, and she conceived by him.
7375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she arose, and went away, and laid by her vail from her, and put on the garments of her widowhood.
7376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Judah sent the kid by the hand of his friend the Adullamite, to receive his pledge from the woman's hand: but he found her not.
7377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then he asked the men of that place, saying, Where is the harlot, that was openly by the way side? And they said, There was no harlot in this place.
7378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he returned to Judah, and said, I cannot find her; and also the men of the place said, that there was no harlot in this place.
7379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Judah said, Let her take it to her, lest we be shamed: behold, I sent this kid, and thou hast not found her.
7380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass about three months after, that it was told Judah, saying, Tamar thy daughter in law hath played the harlot; and also, behold, she is with child by whoredom. And Judah said, Bring her forth, and let her be burnt.
7381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When she was brought forth, she sent to her father in law, saying, By the man, whose these are, am I with child: and she said, Discern, I pray thee, whose are these, the signet, and bracelets, and staff.
7382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Judah acknowledged them, and said, She hath been more righteous than I; because that I gave her not to Shelah my son. And he knew her again no more.
7383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass in the time of her travail, that, behold, twins were in her womb.
7384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when she travailed, that the one put out his hand: and the midwife took and bound upon his hand a scarlet thread, saying, This came out first.
7385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, as he drew back his hand, that, behold, his brother came out: and she said, How hast thou broken forth? this breach be upon thee: therefore his name was called Pharez.
7386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And afterward came out his brother, that had the scarlet thread upon his hand: and his name was called Zarah.
7387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Joseph was brought down to Egypt; and Potiphar, an officer of Pharaoh, captain of the guard, an Egyptian, bought him of the hands of the Ishmaelites, which had brought him down thither.
7388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD was with Joseph, and he was a prosperous man; and he was in the house of his master the Egyptian.
7389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his master saw that the LORD was with him, and that the LORD made all that he did to prosper in his hand.
7390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph found grace in his sight, and he served him: and he made him overseer over his house, and all that he had he put into his hand.
7391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass from the time that he had made him overseer in his house, and over all that he had, that the LORD blessed the Egyptian's house for Joseph's sake; and the blessing of the LORD was upon all that he had in the house, and in the field.
7392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he left all that he had in Joseph's hand; and he knew not ought he had, save the bread which he did eat. And Joseph was a goodly person, and well favored.
7393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass after these things, that his master's wife cast her eyes upon Joseph; and she said, Lie with me.
7394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But he refused, and said unto his master's wife, Behold, my master wotteth not what is with me in the house, and he hath committed all that he hath to my hand;
7395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There is none greater in this house than I; neither hath he kept back any thing from me but thee, because thou art his wife: how then can I do this great wickedness, and sin against God?
7396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as she spake to Joseph day by day, that he hearkened not unto her, to lie by her, or to be with her.
7397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass about this time, that Joseph went into the house to do his business; and there was none of the men of the house there within.
7398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And she caught him by his garment, saying, Lie with me: and he left his garment in her hand, and fled, and got him out.
7399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, when she saw that he had left his garment in her hand, and was fled forth,
7400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That she called unto the men of her house, and spake unto them, saying, See, he hath brought in an Hebrew unto us to mock us; he came in unto me to lie with me, and I cried with a loud voice:
7401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when he heard that I lifted up my voice and cried, that he left his garment with me, and fled, and got him out.
7402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she laid up his garment by her, until his lord came home.
7403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And she spake unto him according to these words, saying, The Hebrew servant, which thou hast brought unto us, came in unto me to mock me:
7404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, as I lifted up my voice and cried, that he left his garment with me, and fled out.
7405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when his master heard the words of his wife, which she spake unto him, saying, After this manner did thy servant to me; that his wrath was kindled.
7406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joseph's master took him, and put him into the prison, a place where the king's prisoners were bound: and he was there in the prison.
7407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But the LORD was with Joseph, and showed him mercy, and gave him favor in the sight of the keeper of the prison.
7408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the keeper of the prison committed to Joseph's hand all the prisoners that were in the prison; and whatsoever they did there, he was the doer of it.
7409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The keeper of the prison looked not to any thing that was under his hand; because the LORD was with him, and that which he did, the LORD made it to prosper.
7410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass after these things, that the butler of the king of Egypt and his baker had offended their lord the king of Egypt.
7411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Pharaoh was wroth against two of his officers, against the chief of the butlers, and against the chief of the bakers.
7412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he put them in ward in the house of the captain of the guard, into the prison, the place where Joseph was bound.
7413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the captain of the guard charged Joseph with them, and he served them: and they continued a season in ward.
7414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they dreamed a dream both of them, each man his dream in one night, each man according to the interpretation of his dream, the butler and the baker of the king of Egypt, which were bound in the prison.
7415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joseph came in unto them in the morning, and looked upon them, and, behold, they were sad.
7416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he asked Pharaoh's officers that were with him in the ward of his lord's house, saying, Wherefore look ye so sadly to day?
7417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they said unto him, We have dreamed a dream, and there is no interpreter of it. And Joseph said unto them, Do not interpretations belong to God? tell me them, I pray you.
7418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the chief butler told his dream to Joseph, and said to him, In my dream, behold, a vine was before me;
7419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the vine were three branches: and it was as though it budded, and her blossoms shot forth; and the clusters thereof brought forth ripe grapes:
7420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh's cup was in my hand: and I took the grapes, and pressed them into Pharaoh's cup, and I gave the cup into Pharaoh's hand.
7421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joseph said unto him, This is the interpretation of it: The three branches are three days:
7422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yet within three days shall Pharaoh lift up thine head, and restore thee unto thy place: and thou shalt deliver Pharaoh's cup into his hand, after the former manner when thou wast his butler.
7423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But think on me when it shall be well with thee, and show kindness, I pray thee, unto me, and make mention of me unto Pharaoh, and bring me out of this house:
7424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For indeed I was stolen away out of the land of the Hebrews: and here also have I done nothing that they should put me into the dungeon.
7425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     When the chief baker saw that the interpretation was good, he said unto Joseph, I also was in my dream, and, behold, I had three white baskets on my head:
7426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And in the uppermost basket there was of all manner of bakemeats for Pharaoh; and the birds did eat them out of the basket upon my head.
7427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joseph answered and said, This is the interpretation thereof: The three baskets are three days:
7428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet within three days shall Pharaoh lift up thy head from off thee, and shall hang thee on a tree; and the birds shall eat thy flesh from off thee.
7429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass the third day, which was Pharaoh's birthday, that he made a feast unto all his servants: and he lifted up the head of the chief butler and of the chief baker among his servants.
7430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he restored the chief butler unto his butlership again; and he gave the cup into Pharaoh's hand:
7431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But he hanged the chief baker: as Joseph had interpreted to them.
7432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Yet did not the chief butler remember Joseph, but forgat him.
7433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass at the end of two full years, that Pharaoh dreamed: and, behold, he stood by the river.
7434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And, behold, there came up out of the river seven well favored kine and fatfleshed; and they fed in a meadow.
7435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And, behold, seven other kine came up after them out of the river, ill favored and leanfleshed; and stood by the other kine upon the brink of the river.
7436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the ill favored and leanfleshed kine did eat up the seven well favored and fat kine. So Pharaoh awoke.
7437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he slept and dreamed the second time: and, behold, seven ears of corn came up upon one stalk, rank and good.
7438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And, behold, seven thin ears and blasted with the east wind sprung up after them.
7439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the seven thin ears devoured the seven rank and full ears. And Pharaoh awoke, and, behold, it was a dream.
7440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass in the morning that his spirit was troubled; and he sent and called for all the magicians of Egypt, and all the wise men thereof: and Pharaoh told them his dream; but there was none that could interpret them unto Pharaoh.
7441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then spake the chief butler unto Pharaoh, saying, I do remember my faults this day:
7442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pharaoh was wroth with his servants, and put me in ward in the captain of the guard's house, both me and the chief baker:
7443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And we dreamed a dream in one night, I and he; we dreamed each man according to the interpretation of his dream.
7444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And there was there with us a young man, an Hebrew, servant to the captain of the guard; and we told him, and he interpreted to us our dreams; to each man according to his dream he did interpret.
7445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, as he interpreted to us, so it was; me he restored unto mine office, and him he hanged.
7446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Pharaoh sent and called Joseph, and they brought him hastily out of the dungeon: and he shaved himself, and changed his raiment, and came in unto Pharaoh.
7447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Pharaoh said unto Joseph, I have dreamed a dream, and there is none that can interpret it: and I have heard say of thee, that thou canst understand a dream to interpret it.
7448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joseph answered Pharaoh, saying, It is not in me: God shall give Pharaoh an answer of peace.
7449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh said unto Joseph, In my dream, behold, I stood upon the bank of the river:
7450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And, behold, there came up out of the river seven kine, fatfleshed and well favored; and they fed in a meadow:
7451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And, behold, seven other kine came up after them, poor and very ill favored and leanfleshed, such as I never saw in all the land of Egypt for badness:
7452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the lean and the ill favored kine did eat up the first seven fat kine:
7453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when they had eaten them up, it could not be known that they had eaten them; but they were still ill favored, as at the beginning. So I awoke.
7454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I saw in my dream, and, behold, seven ears came up in one stalk, full and good:
7455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And, behold, seven ears, withered, thin, and blasted with the east wind, sprung up after them:
7456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the thin ears devoured the seven good ears: and I told this unto the magicians; but there was none that could declare it to me.
7457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph said unto Pharaoh, The dream of Pharaoh is one: God hath showed Pharaoh what he is about to do.
7458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The seven good kine are seven years; and the seven good ears are seven years: the dream is one.
7459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the seven thin and ill favored kine that came up after them are seven years; and the seven empty ears blasted with the east wind shall be seven years of famine.
7460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is the thing which I have spoken unto Pharaoh: What God is about to do he showeth unto Pharaoh.
7461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Behold, there come seven years of great plenty throughout all the land of Egypt:
7462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there shall arise after them seven years of famine; and all the plenty shall be forgotten in the land of Egypt; and the famine shall consume the land;
7463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the plenty shall not be known in the land by reason of that famine following; for it shall be very grievous.
7464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And for that the dream was doubled unto Pharaoh twice; it is because the thing is established by God, and God will shortly bring it to pass.
7465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore let Pharaoh look out a man discreet and wise, and set him over the land of Egypt.
7466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Let Pharaoh do this, and let him appoint officers over the land, and take up the fifth part of the land of Egypt in the seven plenteous years.
7467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And let them gather all the food of those good years that come, and lay up corn under the hand of Pharaoh, and let them keep food in the cities.
7468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And that food shall be for store to the land against the seven years of famine, which shall be in the land of Egypt; that the land perish not through the famine.
7469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the thing was good in the eyes of Pharaoh, and in the eyes of all his servants.
7470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Pharaoh said unto his servants, Can we find such a one as this is, a man in whom the Spirit of God is?
7471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Pharaoh said unto Joseph, Forasmuch as God hath showed thee all this, there is none so discreet and wise as thou art:
7472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt be over my house, and according unto thy word shall all my people be ruled: only in the throne will I be greater than thou.
7473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Pharaoh said unto Joseph, See, I have set thee over all the land of Egypt.
7474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Pharaoh took off his ring from his hand, and put it upon Joseph's hand, and arrayed him in vestures of fine linen, and put a gold chain about his neck;
7475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he made him to ride in the second chariot which he had; and they cried before him, Bow the knee: and he made him ruler over all the land of Egypt.
7476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Pharaoh said unto Joseph, I am Pharaoh, and without thee shall no man lift up his hand or foot in all the land of Egypt.
7477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Pharaoh called Joseph's name Zaphnathpaaneah; and he gave him to wife Asenath the daughter of Potipherah priest of On. And Joseph went out over all the land of Egypt.
7478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joseph was thirty years old when he stood before Pharaoh king of Egypt. And Joseph went out from the presence of Pharaoh, and went throughout all the land of Egypt.
7479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the seven plenteous years the earth brought forth by handfuls.
7480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he gathered up all the food of the seven years, which were in the land of Egypt, and laid up the food in the cities: the food of the field, which was round about every city, laid he up in the same.
7481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joseph gathered corn as the sand of the sea, very much, until he left numbering; for it was without number.
7482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And unto Joseph were born two sons before the years of famine came, which Asenath the daughter of Potipherah priest of On bare unto him.
7483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joseph called the name of the firstborn Manasseh: For God, said he, hath made me forget all my toil, and all my father's house.
7484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the name of the second called he Ephraim: For God hath caused me to be fruitful in the land of my affliction.
7485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the seven years of plenteousness, that was in the land of Egypt, were ended.
7486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the seven years of dearth began to come, according as Joseph had said: and the dearth was in all lands; but in all the land of Egypt there was bread.
7487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when all the land of Egypt was famished, the people cried to Pharaoh for bread: and Pharaoh said unto all the Egyptians, Go unto Joseph; what he saith to you, do.
7488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the famine was over all the face of the earth: and Joseph opened all the storehouses, and sold unto the Egyptians; and the famine waxed sore in the land of Egypt.
7489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And all countries came into Egypt to Joseph for to buy corn; because that the famine was so sore in all lands.
7490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now when Jacob saw that there was corn in Egypt, Jacob said unto his sons, Why do ye look one upon another?
7491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, Behold, I have heard that there is corn in Egypt: get you down thither, and buy for us from thence; that we may live, and not die.
7492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joseph's ten brethren went down to buy corn in Egypt.
7493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But Benjamin, Joseph's brother, Jacob sent not with his brethren; for he said, Lest peradventure mischief befall him.
7494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Israel came to buy corn among those that came: for the famine was in the land of Canaan.
7495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joseph was the governor over the land, and he it was that sold to all the people of the land: and Joseph's brethren came, and bowed down themselves before him with their faces to the earth.
7496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph saw his brethren, and he knew them, but made himself strange unto them, and spake roughly unto them; and he said unto them, Whence come ye? And they said, From the land of Canaan to buy food.
7497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joseph knew his brethren, but they knew not him.
7498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph remembered the dreams which he dreamed of them, and said unto them, Ye are spies; to see the nakedness of the land ye are come.
7499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they said unto him, Nay, my lord, but to buy food are thy servants come.
7500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We are all one man's sons; we are true men, thy servants are no spies.
7501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto them, Nay, but to see the nakedness of the land ye are come.
7502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they said, Thy servants are twelve brethren, the sons of one man in the land of Canaan; and, behold, the youngest is this day with our father, and one is not.
7503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joseph said unto them, That is it that I spake unto you, saying, Ye are spies:
7504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Hereby ye shall be proved: By the life of Pharaoh ye shall not go forth hence, except your youngest brother come hither.
7505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Send one of you, and let him fetch your brother, and ye shall be kept in prison, that your words may be proved, whether there be any truth in you: or else by the life of Pharaoh surely ye are spies.
7506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he put them all together into ward three days.
7507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joseph said unto them the third day, This do, and live; for I fear God:
7508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If ye be true men, let one of your brethren be bound in the house of your prison: go ye, carry corn for the famine of your houses:
7509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But bring your youngest brother unto me; so shall your words be verified, and ye shall not die. And they did so.
7510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they said one to another, We are verily guilty concerning our brother, in that we saw the anguish of his soul, when he besought us, and we would not hear; therefore is this distress come upon us.
7511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Reuben answered them, saying, Spake I not unto you, saying, Do not sin against the child; and ye would not hear? therefore, behold, also his blood is required.
7512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they knew not that Joseph understood them; for he spake unto them by an interpreter.
7513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he turned himself about from them, and wept; and returned to them again, and communed with them, and took from them Simeon, and bound him before their eyes.
7514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then Joseph commanded to fill their sacks with corn, and to restore every man's money into his sack, and to give them provision for the way: and thus did he unto them.
7515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they laded their asses with the corn, and departed thence.
7516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as one of them opened his sack to give his ass provender in the inn, he espied his money; for, behold, it was in his sack's mouth.
7517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said unto his brethren, My money is restored; and, lo, it is even in my sack: and their heart failed them, and they were afraid, saying one to another, What is this that God hath done unto us?
7518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they came unto Jacob their father unto the land of Canaan, and told him all that befell unto them; saying,
7519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The man, who is the lord of the land, spake roughly to us, and took us for spies of the country.
7520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And we said unto him, We are true men; we are no spies:
7521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     We be twelve brethren, sons of our father; one is not, and the youngest is this day with our father in the land of Canaan.
7522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the man, the lord of the country, said unto us, Hereby shall I know that ye are true men; leave one of your brethren here with me, and take food for the famine of your households, and be gone:
7523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And bring your youngest brother unto me: then shall I know that ye are no spies, but that ye are true men: so will I deliver you your brother, and ye shall traffic in the land.
7524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass as they emptied their sacks, that, behold, every man's bundle of money was in his sack: and when both they and their father saw the bundles of money, they were afraid.
7525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jacob their father said unto them, Me have ye bereaved of my children: Joseph is not, and Simeon is not, and ye will take Benjamin away: all these things are against me.
7526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Reuben spake unto his father, saying, Slay my two sons, if I bring him not to thee: deliver him into my hand, and I will bring him to thee again.
7527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said, My son shall not go down with you; for his brother is dead, and he is left alone: if mischief befall him by the way in the which ye go, then shall ye bring down my gray hairs with sorrow to the grave.
7528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the famine was sore in the land.
7529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when they had eaten up the corn which they had brought out of Egypt, their father said unto them, Go again, buy us a little food.
7530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Judah spake unto him, saying, The man did solemnly protest unto us, saying, Ye shall not see my face, except your brother be with you.
7531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If thou wilt send our brother with us, we will go down and buy thee food:
7532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if thou wilt not send him, we will not go down: for the man said unto us, Ye shall not see my face, except your brother be with you.
7533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Israel said, Wherefore dealt ye so ill with me, as to tell the man whether ye had yet a brother?
7534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they said, The man asked us straitly of our state, and of our kindred, saying, Is your father yet alive? have ye another brother? and we told him according to the tenor of these words: could we certainly know that he would say, Bring your brother down?
7535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Judah said unto Israel his father, Send the lad with me, and we will arise and go; that we may live, and not die, both we, and thou, and also our little ones.
7536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I will be surety for him; of my hand shalt thou require him: if I bring him not unto thee, and set him before thee, then let me bear the blame for ever:
7537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For except we had lingered, surely now we had returned this second time.
7538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And their father Israel said unto them, If it must be so now, do this; take of the best fruits in the land in your vessels, and carry down the man a present, a little balm, and a little honey, spices, and myrrh, nuts, and almonds:
7539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And take double money in your hand; and the money that was brought again in the mouth of your sacks, carry it again in your hand; peradventure it was an oversight:
7540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Take also your brother, and arise, go again unto the man:
7541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And God Almighty give you mercy before the man, that he may send away your other brother, and Benjamin. If I be bereaved of my children, I am bereaved.
7542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the men took that present, and they took double money in their hand and Benjamin; and rose up, and went down to Egypt, and stood before Joseph.
7543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Joseph saw Benjamin with them, he said to the ruler of his house, Bring these men home, and slay, and make ready; for these men shall dine with me at noon.
7544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the man did as Joseph bade; and the man brought the men into Joseph's house.
7545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the men were afraid, because they were brought into Joseph's house; and they said, Because of the money that was returned in our sacks at the first time are we brought in; that he may seek occasion against us, and fall upon us, and take us for bondmen, and our asses.
7546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they came near to the steward of Joseph's house, and they communed with him at the door of the house,
7547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And said, O sir, we came indeed down at the first time to buy food:
7548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when we came to the inn, that we opened our sacks, and, behold, every man's money was in the mouth of his sack, our money in full weight: and we have brought it again in our hand.
7549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And other money have we brought down in our hands to buy food: we cannot tell who put our money in our sacks.
7550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Peace be to you, fear not: your God, and the God of your father, hath given you treasure in your sacks: I had your money. And he brought Simeon out unto them.
7551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the man brought the men into Joseph's house, and gave them water, and they washed their feet; and he gave their asses provender.
7552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they made ready the present against Joseph came at noon: for they heard that they should eat bread there.
7553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when Joseph came home, they brought him the present which was in their hand into the house, and bowed themselves to him to the earth.
7554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he asked them of their welfare, and said, Is your father well, the old man of whom ye spake? Is he yet alive?
7555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they answered, Thy servant our father is in good health, he is yet alive. And they bowed down their heads, and made obeisance.
7556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he lifted up his eyes, and saw his brother Benjamin, his mother's son, and said, Is this your younger brother, of whom ye spake unto me? And he said, God be gracious unto thee, my son.
7557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joseph made haste; for his bowels did yearn upon his brother: and he sought where to weep; and he entered into his chamber, and wept there.
7558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he washed his face, and went out, and refrained himself, and said, Set on bread.
7559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they set on for him by himself, and for them by themselves, and for the Egyptians, which did eat with him, by themselves: because the Egyptians might not eat bread with the Hebrews; for that is an abomination unto the Egyptians.
7560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they sat before him, the firstborn according to his birthright, and the youngest according to his youth: and the men marveled one at another.
7561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he took and sent messes unto them from before him: but Benjamin's mess was five times so much as any of theirs. And they drank, and were merry with him.
7562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he commanded the steward of his house, saying, Fill the men's sacks with food, as much as they can carry, and put every man's money in his sack's mouth.
7563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And put my cup, the silver cup, in the sack's mouth of the youngest, and his corn money. And he did according to the word that Joseph had spoken.
7564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As soon as the morning was light, the men were sent away, they and their asses.
7565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when they were gone out of the city, and not yet far off, Joseph said unto his steward, Up, follow after the men; and when thou dost overtake them, say unto them, Wherefore have ye rewarded evil for good?
7566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Is not this it in which my lord drinketh, and whereby indeed he divineth? ye have done evil in so doing.
7567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he overtook them, and he spake unto them these same words.
7568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they said unto him, Wherefore saith my lord these words? God forbid that thy servants should do according to this thing:
7569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, the money, which we found in our sacks' mouths, we brought again unto thee out of the land of Canaan: how then should we steal out of thy lord's house silver or gold?
7570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          With whomsoever of thy servants it be found, both let him die, and we also will be my lord's bondmen.
7571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said, Now also let it be according unto your words: he with whom it is found shall be my servant; and ye shall be blameless.
7572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then they speedily took down every man his sack to the ground, and opened every man his sack.
7573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he searched, and began at the eldest, and left at the youngest: and the cup was found in Benjamin's sack.
7574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then they rent their clothes, and laded every man his ass, and returned to the city.
7575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Judah and his brethren came to Joseph's house; for he was yet there: and they fell before him on the ground.
7576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joseph said unto them, What deed is this that ye have done? wot ye not that such a man as I can certainly divine?
7577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Judah said, What shall we say unto my lord? what shall we speak? or how shall we clear ourselves? God hath found out the iniquity of thy servants: behold, we are my lord's servants, both we, and he also with whom the cup is found.
7578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, God forbid that I should do so: but the man in whose hand the cup is found, he shall be my servant; and as for you, get you up in peace unto your father.
7579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Judah came near unto him, and said, Oh my lord, let thy servant, I pray thee, speak a word in my lord's ears, and let not thine anger burn against thy servant: for thou art even as Pharaoh.
7580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My lord asked his servants, saying, Have ye a father, or a brother?
7581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And we said unto my lord, We have a father, an old man, and a child of his old age, a little one; and his brother is dead, and he alone is left of his mother, and his father loveth him.
7582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou saidst unto thy servants, Bring him down unto me, that I may set mine eyes upon him.
7583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And we said unto my lord, The lad cannot leave his father: for if he should leave his father, his father would die.
7584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou saidst unto thy servants, Except your youngest brother come down with you, ye shall see my face no more.
7585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass when we came up unto thy servant my father, we told him the words of my lord.
7586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And our father said, Go again, and buy us a little food.
7587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And we said, We cannot go down: if our youngest brother be with us, then will we go down: for we may not see the man's face, except our youngest brother be with us.
7588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thy servant my father said unto us, Ye know that my wife bare me two sons:
7589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the one went out from me, and I said, Surely he is torn in pieces; and I saw him not since:
7590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if ye take this also from me, and mischief befall him, ye shall bring down my gray hairs with sorrow to the grave.
7591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore when I come to thy servant my father, and the lad be not with us; seeing that his life is bound up in the lad's life;
7592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It shall come to pass, when he seeth that the lad is not with us, that he will die: and thy servants shall bring down the gray hairs of thy servant our father with sorrow to the grave.
7593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For thy servant became surety for the lad unto my father, saying, If I bring him not unto thee, then I shall bear the blame to my father for ever.
7594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore, I pray thee, let thy servant abide instead of the lad a bondman to my lord; and let the lad go up with his brethren.
7595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For how shall I go up to my father, and the lad be not with me? lest peradventure I see the evil that shall come on my father.
7596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Joseph could not refrain himself before all them that stood by him; and he cried, Cause every man to go out from me. And there stood no man with him, while Joseph made himself known unto his brethren.
7597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he wept aloud: and the Egyptians and the house of Pharaoh heard.
7598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph said unto his brethren, I am Joseph; doth my father yet live? And his brethren could not answer him; for they were troubled at his presence.
7599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joseph said unto his brethren, Come near to me, I pray you. And they came near. And he said, I am Joseph your brother, whom ye sold into Egypt.
7600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now therefore be not grieved, nor angry with yourselves, that ye sold me hither: for God did send me before you to preserve life.
7601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For these two years hath the famine been in the land: and yet there are five years, in the which there shall neither be earing nor harvest.
7602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And God sent me before you to preserve you a posterity in the earth, and to save your lives by a great deliverance.
7603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So now it was not you that sent me hither, but God: and he hath made me a father to Pharaoh, and lord of all his house, and a ruler throughout all the land of Egypt.
7604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Haste ye, and go up to my father, and say unto him, Thus saith thy son Joseph, God hath made me lord of all Egypt: come down unto me, tarry not:
7605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt dwell in the land of Goshen, and thou shalt be near unto me, thou, and thy children, and thy children's children, and thy flocks, and thy herds, and all that thou hast:
7606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there will I nourish thee; for yet there are five years of famine; lest thou, and thy household, and all that thou hast, come to poverty.
7607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And, behold, your eyes see, and the eyes of my brother Benjamin, that it is my mouth that speaketh unto you.
7608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall tell my father of all my glory in Egypt, and of all that ye have seen; and ye shall haste and bring down my father hither.
7609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he fell upon his brother Benjamin's neck, and wept; and Benjamin wept upon his neck.
7610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moreover he kissed all his brethren, and wept upon them: and after that his brethren talked with him.
7611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the fame thereof was heard in Pharaoh's house, saying, Joseph's brethren are come: and it pleased Pharaoh well, and his servants.
7612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Pharaoh said unto Joseph, Say unto thy brethren, This do ye; lade your beasts, and go, get you unto the land of Canaan;
7613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And take your father and your households, and come unto me: and I will give you the good of the land of Egypt, and ye shall eat the fat of the land.
7614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now thou art commanded, this do ye; take you wagons out of the land of Egypt for your little ones, and for your wives, and bring your father, and come.
7615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also regard not your stuff; for the good of all the land of Egypt is yours.
7616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Israel did so: and Joseph gave them wagons, according to the commandment of Pharaoh, and gave them provision for the way.
7617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To all of them he gave each man changes of raiment; but to Benjamin he gave three hundred pieces of silver, and five changes of raiment.
7618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And to his father he sent after this manner; ten asses laden with the good things of Egypt, and ten she asses laden with corn and bread and meat for his father by the way.
7619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So he sent his brethren away, and they departed: and he said unto them, See that ye fall not out by the way.
7620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they went up out of Egypt, and came into the land of Canaan unto Jacob their father,
7621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And told him, saying, Joseph is yet alive, and he is governor over all the land of Egypt. And Jacob's heart fainted, for he believed them not.
7622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they told him all the words of Joseph, which he had said unto them: and when he saw the wagons which Joseph had sent to carry him, the spirit of Jacob their father revived:
7623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Israel said, It is enough; Joseph my son is yet alive: I will go and see him before I die.
7624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Israel took his journey with all that he had, and came to Beersheba, and offered sacrifices unto the God of his father Isaac.
7625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God spake unto Israel in the visions of the night, and said, Jacob, Jacob. And he said, Here am I.
7626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, I am God, the God of thy father: fear not to go down into Egypt; for I will there make of thee a great nation:
7627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I will go down with thee into Egypt; and I will also surely bring thee up again: and Joseph shall put his hand upon thine eyes.
7628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jacob rose up from Beersheba: and the sons of Israel carried Jacob their father, and their little ones, and their wives, in the wagons which Pharaoh had sent to carry him.
7629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they took their cattle, and their goods, which they had gotten in the land of Canaan, and came into Egypt, Jacob, and all his seed with him:
7630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                His sons, and his sons' sons with him, his daughters, and his sons' daughters, and all his seed brought he with him into Egypt.
7631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And these are the names of the children of Israel, which came into Egypt, Jacob and his sons: Reuben, Jacob's firstborn.
7632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Reuben; Hanoch, and Phallu, and Hezron, and Carmi.
7633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman.
7634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Levi; Gershon, Kohath, and Merari.
7635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Judah; Er, and Onan, and Shelah, and Pharez, and Zarah: but Er and Onan died in the land of Canaan. And the sons of Pharez were Hezron and Hamul.
7636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Issachar; Tola, and Phuvah, and Job, and Shimron.
7637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Zebulun; Sered, and Elon, and Jahleel.
7638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These be the sons of Leah, which she bare unto Jacob in Padanaram, with his daughter Dinah: all the souls of his sons and his daughters were thirty and three.
7639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri, and Arodi, and Areli.
7640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Asher; Jimnah, and Ishuah, and Isui, and Beriah, and Serah their sister: and the sons of Beriah; Heber, and Malchiel.
7641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the sons of Zilpah, whom Laban gave to Leah his daughter, and these she bare unto Jacob, even sixteen souls.
7642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Rachel Jacob's wife; Joseph, and Benjamin.
7643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And unto Joseph in the land of Egypt were born Manasseh and Ephraim, which Asenath the daughter of Potipherah priest of On bare unto him.
7644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Benjamin were Belah, and Becher, and Ashbel, Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard.
7645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the sons of Rachel, which were born to Jacob: all the souls were fourteen.
7646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Dan; Hushim.
7647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Naphtali; Jahzeel, and Guni, and Jezer, and Shillem.
7648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are the sons of Bilhah, which Laban gave unto Rachel his daughter, and she bare these unto Jacob: all the souls were seven.
7649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All the souls that came with Jacob into Egypt, which came out of his loins, besides Jacob's sons' wives, all the souls were threescore and six;
7650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Joseph, which were born him in Egypt, were two souls: all the souls of the house of Jacob, which came into Egypt, were threescore and ten.
7651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he sent Judah before him unto Joseph, to direct his face unto Goshen; and they came into the land of Goshen.
7652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joseph made ready his chariot, and went up to meet Israel his father, to Goshen, and presented himself unto him; and he fell on his neck, and wept on his neck a good while.
7653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Israel said unto Joseph, Now let me die, since I have seen thy face, because thou art yet alive.
7654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joseph said unto his brethren, and unto his father's house, I will go up, and show Pharaoh, and say unto him, My brethren, and my father's house, which were in the land of Canaan, are come unto me;
7655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the men are shepherds, for their trade hath been to feed cattle; and they have brought their flocks, and their herds, and all that they have.
7656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it shall come to pass, when Pharaoh shall call you, and shall say, What is your occupation?
7657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That ye shall say, Thy servants' trade hath been about cattle from our youth even until now, both we, and also our fathers: that ye may dwell in the land of Goshen; for every shepherd is an abomination unto the Egyptians.
7658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Joseph came and told Pharaoh, and said, My father and my brethren, and their flocks, and their herds, and all that they have, are come out of the land of Canaan; and, behold, they are in the land of Goshen.
7659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he took some of his brethren, even five men, and presented them unto Pharaoh.
7660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Pharaoh said unto his brethren, What is your occupation? And they said unto Pharaoh, Thy servants are shepherds, both we, and also our fathers.
7661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           They said moreover unto Pharaoh, For to sojourn in the land are we come; for thy servants have no pasture for their flocks; for the famine is sore in the land of Canaan: now therefore, we pray thee, let thy servants dwell in the land of Goshen.
7662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh spake unto Joseph, saying, Thy father and thy brethren are come unto thee:
7663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The land of Egypt is before thee; in the best of the land make thy father and brethren to dwell; in the land of Goshen let them dwell: and if thou knowest any men of activity among them, then make them rulers over my cattle.
7664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joseph brought in Jacob his father, and set him before Pharaoh: and Jacob blessed Pharaoh.
7665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Pharaoh said unto Jacob, How old art thou?
7666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jacob said unto Pharaoh, The days of the years of my pilgrimage are an hundred and thirty years: few and evil have the days of the years of my life been, and have not attained unto the days of the years of the life of my fathers in the days of their pilgrimage.
7667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jacob blessed Pharaoh, and went out from before Pharaoh.
7668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph placed his father and his brethren, and gave them a possession in the land of Egypt, in the best of the land, in the land of Rameses, as Pharaoh had commanded.
7669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joseph nourished his father, and his brethren, and all his father's household, with bread, according to their families.
7670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there was no bread in all the land; for the famine was very sore, so that the land of Egypt and all the land of Canaan fainted by reason of the famine.
7671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph gathered up all the money that was found in the land of Egypt, and in the land of Canaan, for the corn which they bought: and Joseph brought the money into Pharaoh's house.
7672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when money failed in the land of Egypt, and in the land of Canaan, all the Egyptians came unto Joseph, and said, Give us bread: for why should we die in thy presence? for the money faileth.
7673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joseph said, Give your cattle; and I will give you for your cattle, if money fail.
7674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they brought their cattle unto Joseph: and Joseph gave them bread in exchange for horses, and for the flocks, and for the cattle of the herds, and for the asses: and he fed them with bread for all their cattle for that year.
7675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When that year was ended, they came unto him the second year, and said unto him, We will not hide it from my lord, how that our money is spent; my lord also hath our herds of cattle; there is not ought left in the sight of my lord, but our bodies, and our lands:
7676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wherefore shall we die before thine eyes, both we and our land? buy us and our land for bread, and we and our land will be servants unto Pharaoh: and give us seed, that we may live, and not die, that the land be not desolate.
7677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joseph bought all the land of Egypt for Pharaoh; for the Egyptians sold every man his field, because the famine prevailed over them: so the land became Pharaoh's.
7678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And as for the people, he removed them to cities from one end of the borders of Egypt even to the other end thereof.
7679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Only the land of the priests bought he not; for the priests had a portion assigned them of Pharaoh, and did eat their portion which Pharaoh gave them: wherefore they sold not their lands.
7680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Joseph said unto the people, Behold, I have bought you this day and your land for Pharaoh: lo, here is seed for you, and ye shall sow the land.
7681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it shall come to pass in the increase, that ye shall give the fifth part unto Pharaoh, and four parts shall be your own, for seed of the field, and for your food, and for them of your households, and for food for your little ones.
7682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they said, Thou hast saved our lives: let us find grace in the sight of my lord, and we will be Pharaoh's servants.
7683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joseph made it a law over the land of Egypt unto this day, that Pharaoh should have the fifth part, except the land of the priests only, which became not Pharaoh's.
7684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Israel dwelt in the land of Egypt, in the country of Goshen; and they had possessions therein, and grew, and multiplied exceedingly.
7685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jacob lived in the land of Egypt seventeen years: so the whole age of Jacob was an hundred forty and seven years.
7686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the time drew nigh that Israel must die: and he called his son Joseph, and said unto him, If now I have found grace in thy sight, put, I pray thee, thy hand under my thigh, and deal kindly and truly with me; bury me not, I pray thee, in Egypt:
7687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But I will lie with my fathers, and thou shalt carry me out of Egypt, and bury me in their buryingplace. And he said, I will do as thou hast said.
7688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Swear unto me. And he sware unto him. And Israel bowed himself upon the bed's head.
7689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass after these things, that one told Joseph, Behold, thy father is sick: and he took with him his two sons, Manasseh and Ephraim.
7690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And one told Jacob, and said, Behold, thy son Joseph cometh unto thee: and Israel strengthened himself, and sat upon the bed.
7691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob said unto Joseph, God Almighty appeared unto me at Luz in the land of Canaan, and blessed me,
7692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And said unto me, Behold, I will make thee fruitful, and multiply thee, and I will make of thee a multitude of people; and will give this land to thy seed after thee for an everlasting possession.
7693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And now thy two sons, Ephraim and Manasseh, which were born unto thee in the land of Egypt before I came unto thee into Egypt, are mine; as Reuben and Simeon, they shall be mine.
7694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thy issue, which thou begettest after them, shall be thine, and shall be called after the name of their brethren in their inheritance.
7695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And as for me, when I came from Padan, Rachel died by me in the land of Canaan in the way, when yet there was but a little way to come unto Ephrath: and I buried her there in the way of Ephrath; the same is Bethlehem.
7696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Israel beheld Joseph's sons, and said, Who are these?
7697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joseph said unto his father, They are my sons, whom God hath given me in this place. And he said, Bring them, I pray thee, unto me, and I will bless them.
7698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now the eyes of Israel were dim for age, so that he could not see. And he brought them near unto him; and he kissed them, and embraced them.
7699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Israel said unto Joseph, I had not thought to see thy face: and, lo, God hath showed me also thy seed.
7700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joseph brought them out from between his knees, and he bowed himself with his face to the earth.
7701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joseph took them both, Ephraim in his right hand toward Israel's left hand, and Manasseh in his left hand toward Israel's right hand, and brought them near unto him.
7702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Israel stretched out his right hand, and laid it upon Ephraim's head, who was the younger, and his left hand upon Manasseh's head, guiding his hands wittingly; for Manasseh was the firstborn.
7703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he blessed Joseph, and said, God, before whom my fathers Abraham and Isaac did walk, the God which fed me all my life long unto this day,
7704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Angel which redeemed me from all evil, bless the lads; and let my name be named on them, and the name of my fathers Abraham and Isaac; and let them grow into a multitude in the midst of the earth.
7705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when Joseph saw that his father laid his right hand upon the head of Ephraim, it displeased him: and he held up his father's hand, to remove it from Ephraim's head unto Manasseh's head.
7706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joseph said unto his father, Not so, my father: for this is the firstborn; put thy right hand upon his head.
7707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And his father refused, and said, I know it, my son, I know it: he also shall become a people, and he also shall be great: but truly his younger brother shall be greater than he, and his seed shall become a multitude of nations.
7708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he blessed them that day, saying, In thee shall Israel bless, saying, God make thee as Ephraim and as Manasseh: and he set Ephraim before Manasseh.
7709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Israel said unto Joseph, Behold, I die: but God shall be with you, and bring you again unto the land of your fathers.
7710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moreover I have given to thee one portion above thy brethren, which I took out of the hand of the Amorite with my sword and with my bow.
7711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jacob called unto his sons, and said, Gather yourselves together, that I may tell you that which shall befall you in the last days.
7712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Gather yourselves together, and hear, ye sons of Jacob; and hearken unto Israel your father.
7713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Reuben, thou art my firstborn, my might, and the beginning of my strength, the excellency of dignity, and the excellency of power:
7714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Unstable as water, thou shalt not excel; because thou wentest up to thy father's bed; then defiledst thou it: he went up to my couch.
7715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Simeon and Levi are brethren; instruments of cruelty are in their habitations.
7716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           O my soul, come not thou into their secret; unto their assembly, mine honor, be not thou united: for in their anger they slew a man, and in their self-will they digged down a wall.
7717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cursed be their anger, for it was fierce; and their wrath, for it was cruel: I will divide them in Jacob, and scatter them in Israel.
7718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judah, thou art he whom thy brethren shall praise: thy hand shall be in the neck of thine enemies; thy father's children shall bow down before thee.
7719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Judah is a lion's whelp: from the prey, my son, thou art gone up: he stooped down, he couched as a lion, and as an old lion; who shall rouse him up?
7720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sceptre shall not depart from Judah, nor a lawgiver from between his feet, until Shiloh come; and unto him shall the gathering of the people be.
7721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Binding his foal unto the vine, and his ass's colt unto the choice vine; he washed his garments in wine, and his clothes in the blood of grapes:
7722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                His eyes shall be red with wine, and his teeth white with milk.
7723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Zebulun shall dwell at the haven of the sea; and he shall be for an haven of ships; and his border shall be unto Zidon.
7724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Issachar is a strong ass couching down between two burdens:
7725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he saw that rest was good, and the land that it was pleasant; and bowed his shoulder to bear, and became a servant unto tribute.
7726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dan shall judge his people, as one of the tribes of Israel.
7727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Dan shall be a serpent by the way, an adder in the path, that biteth the horse heels, so that his rider shall fall backward.
7728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I have waited for thy salvation, O LORD.
7729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Gad, a troop shall overcome him: but he shall overcome at the last.
7730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Out of Asher his bread shall be fat, and he shall yield royal dainties.
7731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Naphtali is a hind let loose: he giveth goodly words.
7732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Joseph is a fruitful bough, even a fruitful bough by a well; whose branches run over the wall:
7733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The archers have sorely grieved him, and shot at him, and hated him:
7734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But his bow abode in strength, and the arms of his hands were made strong by the hands of the mighty God of Jacob; (from thence is the shepherd, the stone of Israel:)
7735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Even by the God of thy father, who shall help thee; and by the Almighty, who shall bless thee with blessings of heaven above, blessings of the deep that lieth under, blessings of the breasts, and of the womb:
7736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The blessings of thy father have prevailed above the blessings of my progenitors unto the utmost bound of the everlasting hills: they shall be on the head of Joseph, and on the crown of the head of him that was separate from his brethren.
7737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Benjamin shall raven as a wolf: in the morning he shall devour the prey, and at night he shall divide the spoil.
7738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All these are the twelve tribes of Israel: and this is it that their father spake unto them, and blessed them; every one according to his blessing he blessed them.
7739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he charged them, and said unto them, I am to be gathered unto my people: bury me with my fathers in the cave that is in the field of Ephron the Hittite,
7740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the cave that is in the field of Machpelah, which is before Mamre, in the land of Canaan, which Abraham bought with the field of Ephron the Hittite for a possession of a buryingplace.
7741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There they buried Abraham and Sarah his wife; there they buried Isaac and Rebekah his wife; and there I buried Leah.
7742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The purchase of the field and of the cave that is therein was from the children of Heth.
7743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Jacob had made an end of commanding his sons, he gathered up his feet into the bed, and yielded up the ghost, and was gathered unto his people.
7744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph fell upon his father's face, and wept upon him, and kissed him.
7745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph commanded his servants the physicians to embalm his father: and the physicians embalmed Israel.
7746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And forty days were fulfilled for him; for so are fulfilled the days of those which are embalmed: and the Egyptians mourned for him threescore and ten days.
7747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the days of his mourning were past, Joseph spake unto the house of Pharaoh, saying, If now I have found grace in your eyes, speak, I pray you, in the ears of Pharaoh, saying,
7748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        My father made me swear, saying, Lo, I die: in my grave which I have digged for me in the land of Canaan, there shalt thou bury me. Now therefore let me go up, I pray thee, and bury my father, and I will come again.
7749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Pharaoh said, Go up, and bury thy father, according as he made thee swear.
7750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joseph went up to bury his father: and with him went up all the servants of Pharaoh, the elders of his house, and all the elders of the land of Egypt,
7751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the house of Joseph, and his brethren, and his father's house: only their little ones, and their flocks, and their herds, they left in the land of Goshen.
7752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there went up with him both chariots and horsemen: and it was a very great company.
7753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they came to the threshingfloor of Atad, which is beyond Jordan, and there they mourned with a great and very sore lamentation: and he made a mourning for his father seven days.
7754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the inhabitants of the land, the Canaanites, saw the mourning in the floor of Atad, they said, This is a grievous mourning to the Egyptians: wherefore the name of it was called Abelmizraim, which is beyond Jordan.
7755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his sons did unto him according as he commanded them:
7756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For his sons carried him into the land of Canaan, and buried him in the cave of the field of Machpelah, which Abraham bought with the field for a possession of a buryingplace of Ephron the Hittite, before Mamre.
7757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joseph returned into Egypt, he, and his brethren, and all that went up with him to bury his father, after he had buried his father.
7758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when Joseph's brethren saw that their father was dead, they said, Joseph will peradventure hate us, and will certainly requite us all the evil which we did unto him.
7759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they sent a messenger unto Joseph, saying, Thy father did command before he died, saying,
7760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So shall ye say unto Joseph, Forgive, I pray thee now, the trespass of thy brethren, and their sin; for they did unto thee evil: and now, we pray thee, forgive the trespass of the servants of the God of thy father. And Joseph wept when they spake unto him.
7761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And his brethren also went and fell down before his face; and they said, Behold, we be thy servants.
7762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joseph said unto them, Fear not: for am I in the place of God?
7763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But as for you, ye thought evil against me; but God meant it unto good, to bring to pass, as it is this day, to save much people alive.
7764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now therefore fear ye not: I will nourish you, and your little ones. And he comforted them, and spake kindly unto them.
7765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joseph dwelt in Egypt, he, and his father's house: and Joseph lived an hundred and ten years.
7766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joseph saw Ephraim's children of the third generation: the children also of Machir the son of Manasseh were brought up upon Joseph's knees.
7767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joseph said unto his brethren, I die: and God will surely visit you, and bring you out of this land unto the land which he sware to Abraham, to Isaac, and to Jacob.
7768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joseph took an oath of the children of Israel, saying, God will surely visit you, and ye shall carry up my bones from hence.
7769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Joseph died, being an hundred and ten years old: and they embalmed him, and he was put in a coffin in Egypt.
7770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now these are the names of the children of Israel, which came into Egypt; every man and his household came with Jacob.
7771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Reuben, Simeon, Levi, and Judah,
7772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Issachar, Zebulun, and Benjamin,
7773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Dan, and Naphtali, Gad, and Asher.
7774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the souls that came out of the loins of Jacob were seventy souls: for Joseph was in Egypt already.
7775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joseph died, and all his brethren, and all that generation.
7776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel were fruitful, and increased abundantly, and multiplied, and waxed exceeding mighty; and the land was filled with them.
7777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now there arose up a new king over Egypt, which knew not Joseph.
7778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto his people, Behold, the people of the children of Israel are more and mightier than we:
7779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Come on, let us deal wisely with them; lest they multiply, and it come to pass, that, when there falleth out any war, they join also unto our enemies, and fight against us, and so get them up out of the land.
7780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore they did set over them taskmasters to afflict them with their burdens. And they built for Pharaoh treasure cities, Pithom and Raamses.
7781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the more they afflicted them, the more they multiplied and grew. And they were grieved because of the children of Israel.
7782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the Egyptians made the children of Israel to serve with rigor:
7783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they made their lives bitter with hard bondage, in mortar, and in brick, and in all manner of service in the field: all their service, wherein they made them serve, was with rigor.
7784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king of Egypt spake to the Hebrew midwives, of which the name of the one was Shiphrah, and the name of the other Puah:
7785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, When ye do the office of a midwife to the Hebrew women, and see them upon the stools; if it be a son, then ye shall kill him: but if it be a daughter, then she shall live.
7786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But the midwives feared God, and did not as the king of Egypt commanded them, but saved the men children alive.
7787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king of Egypt called for the midwives, and said unto them, Why have ye done this thing, and have saved the men children alive?
7788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the midwives said unto Pharaoh, Because the Hebrew women are not as the Egyptian women; for they are lively, and are delivered ere the midwives come in unto them.
7789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore God dealt well with the midwives: and the people multiplied, and waxed very mighty.
7790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, because the midwives feared God, that he made them houses.
7791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Pharaoh charged all his people, saying, Every son that is born ye shall cast into the river, and every daughter ye shall save alive.
7792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there went a man of the house of Levi, and took to wife a daughter of Levi.
7793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the woman conceived, and bare a son: and when she saw him that he was a goodly child, she hid him three months.
7794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when she could not longer hide him, she took for him an ark of bulrushes, and daubed it with slime and with pitch, and put the child therein; and she laid it in the flags by the river's brink.
7795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And his sister stood afar off, to wit what would be done to him.
7796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the daughter of Pharaoh came down to wash herself at the river; and her maidens walked along by the river's side; and when she saw the ark among the flags, she sent her maid to fetch it.
7797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when she had opened it, she saw the child: and, behold, the babe wept. And she had compassion on him, and said, This is one of the Hebrews' children.
7798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then said his sister to Pharaoh's daughter, Shall I go and call to thee a nurse of the Hebrew women, that she may nurse the child for thee?
7799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Pharaoh's daughter said to her, Go. And the maid went and called the child's mother.
7800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Pharaoh's daughter said unto her, Take this child away, and nurse it for me, and I will give thee thy wages. And the women took the child, and nursed it.
7801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the child grew, and she brought him unto Pharaoh's daughter, and he became her son. And she called his name Moses: and she said, Because I drew him out of the water.
7802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass in those days, when Moses was grown, that he went out unto his brethren, and looked on their burdens: and he spied an Egyptian smiting an Hebrew, one of his brethren.
7803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he looked this way and that way, and when he saw that there was no man, he slew the Egyptian, and hid him in the sand.
7804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when he went out the second day, behold, two men of the Hebrews strove together: and he said to him that did the wrong, Wherefore smitest thou thy fellow?
7805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Who made thee a prince and a judge over us? intendest thou to kill me, as thou killedst the Egyptian? And Moses feared, and said, Surely this thing is known.
7806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now when Pharaoh heard this thing, he sought to slay Moses. But Moses fled from the face of Pharaoh, and dwelt in the land of Midian: and he sat down by a well.
7807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now the priest of Midian had seven daughters: and they came and drew water, and filled the troughs to water their father's flock.
7808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the shepherds came and drove them away: but Moses stood up and helped them, and watered their flock.
7809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when they came to Reuel their father, he said, How is it that ye are come so soon to day?
7810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they said, An Egyptian delivered us out of the hand of the shepherds, and also drew water enough for us, and watered the flock.
7811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto his daughters, And where is he? why is it that ye have left the man? call him, that he may eat bread.
7812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses was content to dwell with the man: and he gave Moses Zipporah his daughter.
7813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she bare him a son, and he called his name Gershom: for he said, I have been a stranger in a strange land.
7814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass in process of time, that the king of Egypt died: and the children of Israel sighed by reason of the bondage, and they cried, and their cry came up unto God by reason of the bondage.
7815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And God heard their groaning, and God remembered his covenant with Abraham, with Isaac, and with Jacob.
7816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And God looked upon the children of Israel, and God had respect unto them.
7817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now Moses kept the flock of Jethro his father in law, the priest of Midian: and he led the flock to the backside of the desert, and came to the mountain of God, even to Horeb.
7818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the angel of the LORD appeared unto him in a flame of fire out of the midst of a bush: and he looked, and, behold, the bush burned with fire, and the bush was not consumed.
7819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses said, I will now turn aside, and see this great sight, why the bush is not burnt.
7820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when the LORD saw that he turned aside to see, God called unto him out of the midst of the bush, and said, Moses, Moses. And he said, Here am I.
7821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Draw not nigh hither: put off thy shoes from off thy feet, for the place whereon thou standest is holy ground.
7822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moreover he said, I am the God of thy father, the God of Abraham, the God of Isaac, and the God of Jacob. And Moses hid his face; for he was afraid to look upon God.
7823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said, I have surely seen the affliction of my people which are in Egypt, and have heard their cry by reason of their taskmasters; for I know their sorrows;
7824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I am come down to deliver them out of the hand of the Egyptians, and to bring them up out of that land unto a good land and a large, unto a land flowing with milk and honey; unto the place of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites.
7825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore, behold, the cry of the children of Israel is come unto me: and I have also seen the oppression wherewith the Egyptians oppress them.
7826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Come now therefore, and I will send thee unto Pharaoh, that thou mayest bring forth my people the children of Israel out of Egypt.
7827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses said unto God, Who am I, that I should go unto Pharaoh, and that I should bring forth the children of Israel out of Egypt?
7828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Certainly I will be with thee; and this shall be a token unto thee, that I have sent thee: When thou hast brought forth the people out of Egypt, ye shall serve God upon this mountain.
7829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said unto God, Behold, when I come unto the children of Israel, and shall say unto them, The God of your fathers hath sent me unto you; and they shall say to me, What is his name? what shall I say unto them?
7830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God said unto Moses, I AM THAT I AM: and he said, Thus shalt thou say unto the children of Israel, I AM hath sent me unto you.
7831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And God said moreover unto Moses, Thus shalt thou say unto the children of Israel, the LORD God of your fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath sent me unto you: this is my name for ever, and this is my memorial unto all generations.
7832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Go, and gather the elders of Israel together, and say unto them, The LORD God of your fathers, the God of Abraham, of Isaac, and of Jacob, appeared unto me, saying, I have surely visited you, and seen that which is done to you in Egypt:
7833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I have said, I will bring you up out of the affliction of Egypt unto the land of the Canaanites, and the Hittites, and the Amorites, and the Perizzites, and the Hivites, and the Jebusites, unto a land flowing with milk and honey.
7834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they shall hearken to thy voice: and thou shalt come, thou and the elders of Israel, unto the king of Egypt, and ye shall say unto him, The LORD God of the Hebrews hath met with us: and now let us go, we beseech thee, three days' journey into the wilderness, that we may sacrifice to the LORD our God.
7835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I am sure that the king of Egypt will not let you go, no, not by a mighty hand.
7836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I will stretch out my hand, and smite Egypt with all my wonders which I will do in the midst thereof: and after that he will let you go.
7837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And I will give this people favor in the sight of the Egyptians: and it shall come to pass, that, when ye go, ye shall not go empty.
7838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But every woman shall borrow of her neighbor, and of her that sojourneth in her house, jewels of silver, and jewels of gold, and raiment: and ye shall put them upon your sons, and upon your daughters; and ye shall spoil the Egyptians.
7839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses answered and said, But, behold, they will not believe me, nor hearken unto my voice: for they will say, The LORD hath not appeared unto thee.
7840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto him, What is that in thine hand? And he said, A rod.
7841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said, Cast it on the ground. And he cast it on the ground, and it became a serpent; and Moses fled from before it.
7842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, Put forth thine hand, and take it by the tail. And he put forth his hand, and caught it, and it became a rod in his hand:
7843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That they may believe that the LORD God of their fathers, the God of Abraham, the God of Isaac, and the God of Jacob, hath appeared unto thee.
7844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said furthermore unto him, Put now thine hand into thy bosom. And he put his hand into his bosom: and when he took it out, behold, his hand was leprous as snow.
7845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, Put thine hand into thy bosom again. And he put his hand into his bosom again; and plucked it out of his bosom, and, behold, it was turned again as his other flesh.
7846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it shall come to pass, if they will not believe thee, neither hearken to the voice of the first sign, that they will believe the voice of the latter sign.
7847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it shall come to pass, if they will not believe also these two signs, neither hearken unto thy voice, that thou shalt take of the water of the river, and pour it upon the dry land: and the water which thou takest out of the river shall become blood upon the dry land.
7848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses said unto the LORD, O my LORD, I am not eloquent, neither heretofore, nor since thou hast spoken unto thy servant: but I am slow of speech, and of a slow tongue.
7849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto him, Who hath made man's mouth? or who maketh the dumb, or deaf, or the seeing, or the blind? have not I the LORD?
7850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore go, and I will be with thy mouth, and teach thee what thou shalt say.
7851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said, O my LORD, send, I pray thee, by the hand of him whom thou wilt send.
7852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the anger of the LORD was kindled against Moses, and he said, Is not Aaron the Levite thy brother? I know that he can speak well. And also, behold, he cometh forth to meet thee: and when he seeth thee, he will be glad in his heart.
7853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt speak unto him, and put words in his mouth: and I will be with thy mouth, and with his mouth, and will teach you what ye shall do.
7854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he shall be thy spokesman unto the people: and he shall be, even he shall be to thee instead of a mouth, and thou shalt be to him instead of God.
7855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt take this rod in thine hand, wherewith thou shalt do signs.
7856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses went and returned to Jethro his father in law, and said unto him, Let me go, I pray thee, and return unto my brethren which are in Egypt, and see whether they be yet alive. And Jethro said to Moses, Go in peace.
7857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses in Midian, Go, return into Egypt: for all the men are dead which sought thy life.
7858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses took his wife and his sons, and set them upon an ass, and he returned to the land of Egypt: and Moses took the rod of God in his hand.
7859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto Moses, When thou goest to return into Egypt, see that thou do all those wonders before Pharaoh, which I have put in thine hand: but I will harden his heart, that he shall not let the people go.
7860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt say unto Pharaoh, Thus saith the LORD, Israel is my son, even my firstborn:
7861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I say unto thee, Let my son go, that he may serve me: and if thou refuse to let him go, behold, I will slay thy son, even thy firstborn.
7862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass by the way in the inn, that the LORD met him, and sought to kill him.
7863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Zipporah took a sharp stone, and cut off the foreskin of her son, and cast it at his feet, and said, Surely a bloody husband art thou to me.
7864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he let him go: then she said, A bloody husband thou art, because of the circumcision.
7865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said to Aaron, Go into the wilderness to meet Moses. And he went, and met him in the mount of God, and kissed him.
7866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses told Aaron all the words of the LORD who had sent him, and all the signs which he had commanded him.
7867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses and Aaron went and gathered together all the elders of the children of Israel:
7868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Aaron spake all the words which the LORD had spoken unto Moses, and did the signs in the sight of the people.
7869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people believed: and when they heard that the LORD had visited the children of Israel, and that he had looked upon their affliction, then they bowed their heads and worshipped.
7870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And afterward Moses and Aaron went in, and told Pharaoh, Thus saith the LORD God of Israel, Let my people go, that they may hold a feast unto me in the wilderness.
7871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Pharaoh said, Who is the LORD, that I should obey his voice to let Israel go? I know not the LORD, neither will I let Israel go.
7872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they said, The God of the Hebrews hath met with us: let us go, we pray thee, three days' journey into the desert, and sacrifice unto the LORD our God; lest he fall upon us with pestilence, or with the sword.
7873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king of Egypt said unto them, Wherefore do ye, Moses and Aaron, let the people from their works? get you unto your burdens.
7874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Pharaoh said, Behold, the people of the land now are many, and ye make them rest from their burdens.
7875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Pharaoh commanded the same day the taskmasters of the people, and their officers, saying,
7876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall no more give the people straw to make brick, as heretofore: let them go and gather straw for themselves.
7877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the tale of the bricks, which they did make heretofore, ye shall lay upon them; ye shall not diminish ought thereof: for they be idle; therefore they cry, saying, Let us go and sacrifice to our God.
7878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let there more work be laid upon the men, that they may labor therein; and let them not regard vain words.
7879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the taskmasters of the people went out, and their officers, and they spake to the people, saying, Thus saith Pharaoh, I will not give you straw.
7880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Go ye, get you straw where ye can find it: yet not ought of your work shall be diminished.
7881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the people were scattered abroad throughout all the land of Egypt to gather stubble instead of straw.
7882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the taskmasters hasted them, saying, Fulfil your works, your daily tasks, as when there was straw.
7883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the officers of the children of Israel, which Pharaoh's taskmasters had set over them, were beaten, and demanded, Wherefore have ye not fulfilled your task in making brick both yesterday and to day, as heretofore?
7884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the officers of the children of Israel came and cried unto Pharaoh, saying, Wherefore dealest thou thus with thy servants?
7885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         There is no straw given unto thy servants, and they say to us, Make brick: and, behold, thy servants are beaten; but the fault is in thine own people.
7886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But he said, Ye are idle, ye are idle: therefore ye say, Let us go and do sacrifice to the LORD.
7887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Go therefore now, and work; for there shall no straw be given you, yet shall ye deliver the tale of bricks.
7888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the officers of the children of Israel did see that they were in evil case, after it was said, Ye shall not minish ought from your bricks of your daily task.
7889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they met Moses and Aaron, who stood in the way, as they came forth from Pharaoh:
7890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they said unto them, The LORD look upon you, and judge; because ye have made our savor to be abhorred in the eyes of Pharaoh, and in the eyes of his servants, to put a sword in their hand to slay us.
7891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses returned unto the LORD, and said, LORD, wherefore hast thou so evil entreated this people? why is it that thou hast sent me?
7892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For since I came to Pharaoh to speak in thy name, he hath done evil to this people; neither hast thou delivered thy people at all.
7893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the LORD said unto Moses, Now shalt thou see what I will do to Pharaoh: for with a strong hand shall he let them go, and with a strong hand shall he drive them out of his land.
7894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And God spake unto Moses, and said unto him, I am the LORD:
7895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I appeared unto Abraham, unto Isaac, and unto Jacob, by the name of God Almighty, but by my name JEHOVAH was I not known to them.
7896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I have also established my covenant with them, to give them the land of Canaan, the land of their pilgrimage, wherein they were strangers.
7897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And I have also heard the groaning of the children of Israel, whom the Egyptians keep in bondage; and I have remembered my covenant.
7898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wherefore say unto the children of Israel, I am the LORD, and I will bring you out from under the burdens of the Egyptians, and I will rid you out of their bondage, and I will redeem you with a stretched out arm, and with great judgments:
7899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will take you to me for a people, and I will be to you a God: and ye shall know that I am the LORD your God, which bringeth you out from under the burdens of the Egyptians.
7900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I will bring you in unto the land, concerning the which I did swear to give it to Abraham, to Isaac, and to Jacob; and I will give it you for an heritage: I am the LORD.
7901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses spake so unto the children of Israel: but they hearkened not unto Moses for anguish of spirit, and for cruel bondage.
7902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
7903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Go in, speak unto Pharaoh king of Egypt, that he let the children of Israel go out of his land.
7904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses spake before the LORD, saying, Behold, the children of Israel have not hearkened unto me; how then shall Pharaoh hear me, who am of uncircumcised lips?
7905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD spake unto Moses and unto Aaron, and gave them a charge unto the children of Israel, and unto Pharaoh king of Egypt, to bring the children of Israel out of the land of Egypt.
7906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These be the heads of their fathers' houses: The sons of Reuben the firstborn of Israel; Hanoch, and Pallu, Hezron, and Carmi: these be the families of Reuben.
7907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin, and Zohar, and Shaul the son of a Canaanitish woman: these are the families of Simeon.
7908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And these are the names of the sons of Levi according to their generations; Gershon, and Kohath, and Merari: and the years of the life of Levi were an hundred thirty and seven years.
7909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sons of Gershon; Libni, and Shimi, according to their families.
7910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Kohath; Amram, and Izhar, and Hebron, and Uzziel: and the years of the life of Kohath were an hundred thirty and three years.
7911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Merari; Mahali and Mushi: these are the families of Levi according to their generations.
7912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Amram took him Jochebed his father's sister to wife; and she bare him Aaron and Moses: and the years of the life of Amram were an hundred and thirty and seven years.
7913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Izhar; Korah, and Nepheg, and Zichri.
7914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Uzziel; Mishael, and Elzaphan, and Zithri.
7915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Aaron took him Elisheba, daughter of Amminadab, sister of Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and Ithamar.
7916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Korah; Assir, and Elkanah, and Abiasaph: these are the families of the Korhites.
7917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Eleazar Aaron's son took him one of the daughters of Putiel to wife; and she bare him Phinehas: these are the heads of the fathers of the Levites according to their families.
7918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      These are that Aaron and Moses, to whom the LORD said, Bring out the children of Israel from the land of Egypt according to their armies.
7919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are they which spake to Pharaoh king of Egypt, to bring out the children of Israel from Egypt: these are that Moses and Aaron.
7920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass on the day when the LORD spake unto Moses in the land of Egypt,
7921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         That the LORD spake unto Moses, saying, I am the LORD: speak thou unto Pharaoh king of Egypt all that I say unto thee.
7922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said before the LORD, Behold, I am of uncircumcised lips, and how shall Pharaoh hearken unto me?
7923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy brother shall be thy prophet.
7924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt speak all that I command thee: and Aaron thy brother shall speak unto Pharaoh, that he send the children of Israel out of his land.
7925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I will harden Pharaoh's heart, and multiply my signs and my wonders in the land of Egypt.
7926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Pharaoh shall not hearken unto you, that I may lay my hand upon Egypt, and bring forth mine armies, and my people the children of Israel, out of the land of Egypt by great judgments.
7927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the Egyptians shall know that I am the LORD, when I stretch forth mine hand upon Egypt, and bring out the children of Israel from among them.
7928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses and Aaron did as the LORD commanded them, so did they.
7929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses was fourscore years old, and Aaron fourscore and three years old, when they spake unto Pharaoh.
7930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto Moses and unto Aaron, saying,
7931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Pharaoh shall speak unto you, saying, Show a miracle for you: then thou shalt say unto Aaron, Take thy rod, and cast it before Pharaoh, and it shall become a serpent.
7932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses and Aaron went in unto Pharaoh, and they did so as the LORD had commanded: and Aaron cast down his rod before Pharaoh, and before his servants, and it became a serpent.
7933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Pharaoh also called the wise men and the sorcerers: now the magicians of Egypt, they also did in like manner with their enchantments.
7934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For they cast down every man his rod, and they became serpents: but Aaron's rod swallowed up their rods.
7935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he hardened Pharaoh's heart, that he hearkened not unto them; as the LORD had said.
7936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Pharaoh's heart is hardened, he refuseth to let the people go.
7937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Get thee unto Pharaoh in the morning; lo, he goeth out unto the water; and thou shalt stand by the river's brink against he come; and the rod which was turned to a serpent shalt thou take in thine hand.
7938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt say unto him, The LORD God of the Hebrews hath sent me unto thee, saying, Let my people go, that they may serve me in the wilderness: and, behold, hitherto thou wouldest not hear.
7939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thus saith the LORD, In this thou shalt know that I am the LORD: behold, I will smite with the rod that is in mine hand upon the waters which are in the river, and they shall be turned to blood.
7940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the fish that is in the river shall die, and the river shall stink; and the Egyptians shall loathe to drink of the water of the river.
7941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD spake unto Moses, Say unto Aaron, Take thy rod, and stretch out thine hand upon the waters of Egypt, upon their streams, upon their rivers, and upon their ponds, and upon all their pools of water, that they may become blood; and that there may be blood throughout all the land of Egypt, both in vessels of wood, and in vessels of stone.
7942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses and Aaron did so, as the LORD commanded; and he lifted up the rod, and smote the waters that were in the river, in the sight of Pharaoh, and in the sight of his servants; and all the waters that were in the river were turned to blood.
7943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the fish that was in the river died; and the river stank, and the Egyptians could not drink of the water of the river; and there was blood throughout all the land of Egypt.
7944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the magicians of Egypt did so with their enchantments: and Pharaoh's heart was hardened, neither did he hearken unto them; as the LORD had said.
7945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh turned and went into his house, neither did he set his heart to this also.
7946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the Egyptians digged round about the river for water to drink; for they could not drink of the water of the river.
7947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And seven days were fulfilled, after that the LORD had smitten the river.
7948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses, Go unto Pharaoh, and say unto him, Thus saith the LORD, Let my people go, that they may serve me.
7949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if thou refuse to let them go, behold, I will smite all thy borders with frogs:
7950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the river shall bring forth frogs abundantly, which shall go up and come into thine house, and into thy bedchamber, and upon thy bed, and into the house of thy servants, and upon thy people, and into thine ovens, and into thy kneadingtroughs:
7951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the frogs shall come up both on thee, and upon thy people, and upon all thy servants.
7952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD spake unto Moses, Say unto Aaron, Stretch forth thine hand with thy rod over the streams, over the rivers, and over the ponds, and cause frogs to come up upon the land of Egypt.
7953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Aaron stretched out his hand over the waters of Egypt; and the frogs came up, and covered the land of Egypt.
7954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the magicians did so with their enchantments, and brought up frogs upon the land of Egypt.
7955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Pharaoh called for Moses and Aaron, and said, Entreat the LORD, that he may take away the frogs from me, and from my people; and I will let the people go, that they may do sacrifice unto the LORD.
7956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses said unto Pharaoh, Glory over me: when shall I entreat for thee, and for thy servants, and for thy people, to destroy the frogs from thee and thy houses, that they may remain in the river only?
7957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, To morrow. And he said, Be it according to thy word: that thou mayest know that there is none like unto the LORD our God.
7958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the frogs shall depart from thee, and from thy houses, and from thy servants, and from thy people; they shall remain in the river only.
7959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses and Aaron went out from Pharaoh: and Moses cried unto the LORD because of the frogs which he had brought against Pharaoh.
7960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD did according to the word of Moses; and the frogs died out of the houses, out of the villages, and out of the fields.
7961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they gathered them together upon heaps: and the land stank.
7962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But when Pharaoh saw that there was respite, he hardened his heart, and hearkened not unto them; as the LORD had said.
7963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Say unto Aaron, Stretch out thy rod, and smite the dust of the land, that it may become lice throughout all the land of Egypt.
7964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they did so; for Aaron stretched out his hand with his rod, and smote the dust of the earth, and it became lice in man, and in beast; all the dust of the land became lice throughout all the land of Egypt.
7965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the magicians did so with their enchantments to bring forth lice, but they could not: so there were lice upon man, and upon beast.
7966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then the magicians said unto Pharaoh, This is the finger of God: and Pharaoh's heart was hardened, and he hearkened not unto them; as the LORD had said.
7967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto Moses, Rise up early in the morning, and stand before Pharaoh; lo, he cometh forth to the water; and say unto him, Thus saith the LORD, Let my people go, that they may serve me.
7968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Else, if thou wilt not let my people go, behold, I will send swarms of flies upon thee, and upon thy servants, and upon thy people, and into thy houses: and the houses of the Egyptians shall be full of swarms of flies, and also the ground whereon they are.
7969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I will sever in that day the land of Goshen, in which my people dwell, that no swarms of flies shall be there; to the end thou mayest know that I am the LORD in the midst of the earth.
7970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I will put a division between my people and thy people: to morrow shall this sign be.
7971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD did so; and there came a grievous swarm of flies into the house of Pharaoh, and into his servants' houses, and into all the land of Egypt: the land was corrupted by reason of the swarm of flies.
7972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Pharaoh called for Moses and for Aaron, and said, Go ye, sacrifice to your God in the land.
7973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses said, It is not meet so to do; for we shall sacrifice the abomination of the Egyptians to the LORD our God: lo, shall we sacrifice the abomination of the Egyptians before their eyes, and will they not stone us?
7974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 We will go three days' journey into the wilderness, and sacrifice to the LORD our God, as he shall command us.
7975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Pharaoh said, I will let you go, that ye may sacrifice to the LORD your God in the wilderness; only ye shall not go very far away: entreat for me.
7976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses said, Behold, I go out from thee, and I will entreat the LORD that the swarms of flies may depart from Pharaoh, from his servants, and from his people, to morrow: but let not Pharaoh deal deceitfully any more in not letting the people go to sacrifice to the LORD.
7977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses went out from Pharaoh, and entreated the LORD.
7978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD did according to the word of Moses; and he removed the swarms of flies from Pharaoh, from his servants, and from his people; there remained not one.
7979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh hardened his heart at this time also, neither would he let the people go.
7980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the LORD said unto Moses, Go in unto Pharaoh, and tell him, Thus saith the LORD God of the Hebrews, Let my people go, that they may serve me.
7981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For if thou refuse to let them go, and wilt hold them still,
7982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Behold, the hand of the LORD is upon thy cattle which is in the field, upon the horses, upon the asses, upon the camels, upon the oxen, and upon the sheep: there shall be a very grievous murrain.
7983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD shall sever between the cattle of Israel and the cattle of Egypt: and there shall nothing die of all that is the children's of Israel.
7984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD appointed a set time, saying, To morrow the LORD shall do this thing in the land.
7985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD did that thing on the morrow, and all the cattle of Egypt died: but of the cattle of the children of Israel died not one.
7986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Pharaoh sent, and, behold, there was not one of the cattle of the Israelites dead. And the heart of Pharaoh was hardened, and he did not let the people go.
7987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses and unto Aaron, Take to you handfuls of ashes of the furnace, and let Moses sprinkle it toward the heaven in the sight of Pharaoh.
7988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it shall become small dust in all the land of Egypt, and shall be a boil breaking forth with blains upon man, and upon beast, throughout all the land of Egypt.
7989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they took ashes of the furnace, and stood before Pharaoh; and Moses sprinkled it up toward heaven; and it became a boil breaking forth with blains upon man, and upon beast.
7990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the magicians could not stand before Moses because of the boils; for the boil was upon the magicians, and upon all the Egyptians.
7991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD hardened the heart of Pharaoh, and he hearkened not unto them; as the LORD had spoken unto Moses.
7992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Rise up early in the morning, and stand before Pharaoh, and say unto him, Thus saith the LORD God of the Hebrews, Let my people go, that they may serve me.
7993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For I will at this time send all my plagues upon thine heart, and upon thy servants, and upon thy people; that thou mayest know that there is none like me in all the earth.
7994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For now I will stretch out my hand, that I may smite thee and thy people with pestilence; and thou shalt be cut off from the earth.
7995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And in very deed for this cause have I raised thee up, for to show in thee my power; and that my name may be declared throughout all the earth.
7996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                As yet exaltest thou thyself against my people, that thou wilt not let them go?
7997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behold, to morrow about this time I will cause it to rain a very grievous hail, such as hath not been in Egypt since the foundation thereof even until now.
7998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Send therefore now, and gather thy cattle, and all that thou hast in the field; for upon every man and beast which shall be found in the field, and shall not be brought home, the hail shall come down upon them, and they shall die.
7999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He that feared the word of the LORD among the servants of Pharaoh made his servants and his cattle flee into the houses:
8000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that regarded not the word of the LORD left his servants and his cattle in the field.
8001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses, Stretch forth thine hand toward heaven, that there may be hail in all the land of Egypt, upon man, and upon beast, and upon every herb of the field, throughout the land of Egypt.
8002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses stretched forth his rod toward heaven: and the LORD sent thunder and hail, and the fire ran along upon the ground; and the LORD rained hail upon the land of Egypt.
8003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So there was hail, and fire mingled with the hail, very grievous, such as there was none like it in all the land of Egypt since it became a nation.
8004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the hail smote throughout all the land of Egypt all that was in the field, both man and beast; and the hail smote every herb of the field, and brake every tree of the field.
8005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Only in the land of Goshen, where the children of Israel were, was there no hail.
8006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh sent, and called for Moses and Aaron, and said unto them, I have sinned this time: the LORD is righteous, and I and my people are wicked.
8007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Entreat the LORD (for it is enough) that there be no more mighty thunderings and hail; and I will let you go, and ye shall stay no longer.
8008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses said unto him, As soon as I am gone out of the city, I will spread abroad my hands unto the LORD; and the thunder shall cease, neither shall there be any more hail; that thou mayest know how that the earth is the LORD's.
8009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But as for thee and thy servants, I know that ye will not yet fear the LORD God.
8010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the flax and the barley was smitten: for the barley was in the ear, and the flax was bolled.
8011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But the wheat and the rye were not smitten: for they were not grown up.
8012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses went out of the city from Pharaoh, and spread abroad his hands unto the LORD: and the thunders and hail ceased, and the rain was not poured upon the earth.
8013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Pharaoh saw that the rain and the hail and the thunders were ceased, he sinned yet more, and hardened his heart, he and his servants.
8014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the heart of Pharaoh was hardened, neither would he let the children of Israel go; as the LORD had spoken by Moses.
8015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Go in unto Pharaoh: for I have hardened his heart, and the heart of his servants, that I might show these my signs before him:
8016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And that thou mayest tell in the ears of thy son, and of thy son's son, what things I have wrought in Egypt, and my signs which I have done among them; that ye may know how that I am the LORD.
8017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses and Aaron came in unto Pharaoh, and said unto him, Thus saith the LORD God of the Hebrews, How long wilt thou refuse to humble thyself before me? let my people go, that they may serve me.
8018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Else, if thou refuse to let my people go, behold, to morrow will I bring the locusts into thy coast:
8019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they shall cover the face of the earth, that one cannot be able to see the earth: and they shall eat the residue of that which is escaped, which remaineth unto you from the hail, and shall eat every tree which groweth for you out of the field:
8020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they shall fill thy houses, and the houses of all thy servants, and the houses of all the Egyptians; which neither thy fathers, nor thy fathers' fathers have seen, since the day that they were upon the earth unto this day. And he turned himself, and went out from Pharaoh.
8021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Pharaoh's servants said unto him, How long shall this man be a snare unto us? let the men go, that they may serve the LORD their God: knowest thou not yet that Egypt is destroyed?
8022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses and Aaron were brought again unto Pharaoh: and he said unto them, Go, serve the LORD your God: but who are they that shall go?
8023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses said, We will go with our young and with our old, with our sons and with our daughters, with our flocks and with our herds will we go; for we must hold a feast unto the LORD.
8024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto them, Let the LORD be so with you, as I will let you go, and your little ones: look to it; for evil is before you.
8025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Not so: go now ye that are men, and serve the LORD; for that ye did desire. And they were driven out from Pharaoh's presence.
8026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Stretch out thine hand over the land of Egypt for the locusts, that they may come up upon the land of Egypt, and eat every herb of the land, even all that the hail hath left.
8027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses stretched forth his rod over the land of Egypt, and the LORD brought an east wind upon the land all that day, and all that night; and when it was morning, the east wind brought the locusts.
8028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the locust went up over all the land of Egypt, and rested in all the coasts of Egypt: very grievous were they; before them there were no such locusts as they, neither after them shall be such.
8029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For they covered the face of the whole earth, so that the land was darkened; and they did eat every herb of the land, and all the fruit of the trees which the hail had left: and there remained not any green thing in the trees, or in the herbs of the field, through all the land of Egypt.
8030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Pharaoh called for Moses and Aaron in haste; and he said, I have sinned against the LORD your God, and against you.
8031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore forgive, I pray thee, my sin only this once, and entreat the LORD your God, that he may take away from me this death only.
8032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he went out from Pharaoh, and entreated the LORD.
8033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD turned a mighty strong west wind, which took away the locusts, and cast them into the Red sea; there remained not one locust in all the coasts of Egypt.
8034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go.
8035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, Stretch out thine hand toward heaven, that there may be darkness over the land of Egypt, even darkness which may be felt.
8036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses stretched forth his hand toward heaven; and there was a thick darkness in all the land of Egypt three days:
8037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They saw not one another, neither rose any from his place for three days: but all the children of Israel had light in their dwellings.
8038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Pharaoh called unto Moses, and said, Go ye, serve the LORD; only let your flocks and your herds be stayed: let your little ones also go with you.
8039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses said, Thou must give us also sacrifices and burnt offerings, that we may sacrifice unto the LORD our God.
8040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Our cattle also shall go with us; there shall not an hoof be left behind; for thereof must we take to serve the LORD our God; and we know not with what we must serve the LORD, until we come thither.
8041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But the LORD hardened Pharaoh's heart, and he would not let them go.
8042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Pharaoh said unto him, Get thee from me, take heed to thyself, see my face no more; for in that day thou seest my face thou shalt die.
8043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said, Thou hast spoken well, I will see thy face again no more.
8044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Moses, Yet will I bring one plague more upon Pharaoh, and upon Egypt; afterwards he will let you go hence: when he shall let you go, he shall surely thrust you out hence altogether.
8045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Speak now in the ears of the people, and let every man borrow of his neighbor, and every woman of her neighbor, jewels of silver and jewels of gold.
8046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD gave the people favor in the sight of the Egyptians. Moreover the man Moses was very great in the land of Egypt, in the sight of Pharaoh's servants, and in the sight of the people.
8047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said, Thus saith the LORD, About midnight will I go out into the midst of Egypt:
8048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the firstborn in the land of Egypt shall die, from the first born of Pharaoh that sitteth upon his throne, even unto the firstborn of the maidservant that is behind the mill; and all the firstborn of beasts.
8049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there shall be a great cry throughout all the land of Egypt, such as there was none like it, nor shall be like it any more.
8050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But against any of the children of Israel shall not a dog move his tongue, against man or beast: that ye may know how that the LORD doth put a difference between the Egyptians and Israel.
8051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And all these thy servants shall come down unto me, and bow down themselves unto me, saying, Get thee out, and all the people that follow thee: and after that I will go out. And he went out from Pharaoh in a great anger.
8052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Pharaoh shall not hearken unto you; that my wonders may be multiplied in the land of Egypt.
8053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses and Aaron did all these wonders before Pharaoh: and the LORD hardened Pharaoh's heart, so that he would not let the children of Israel go out of his land.
8054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto Moses and Aaron in the land of Egypt saying,
8055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This month shall be unto you the beginning of months: it shall be the first month of the year to you.
8056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Speak ye unto all the congregation of Israel, saying, In the tenth day of this month they shall take to them every man a lamb, according to the house of their fathers, a lamb for an house:
8057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if the household be too little for the lamb, let him and his neighbor next unto his house take it according to the number of the souls; every man according to his eating shall make your count for the lamb.
8058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Your lamb shall be without blemish, a male of the first year: ye shall take it out from the sheep, or from the goats:
8059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall keep it up until the fourteenth day of the same month: and the whole assembly of the congregation of Israel shall kill it in the evening.
8060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they shall take of the blood, and strike it on the two side posts and on the upper door post of the houses, wherein they shall eat it.
8061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they shall eat the flesh in that night, roast with fire, and unleavened bread; and with bitter herbs they shall eat it.
8062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Eat not of it raw, nor sodden at all with water, but roast with fire; his head with his legs, and with the purtenance thereof.
8063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall let nothing of it remain until the morning; and that which remaineth of it until the morning ye shall burn with fire.
8064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thus shall ye eat it; with your loins girded, your shoes on your feet, and your staff in your hand; and ye shall eat it in haste: it is the LORD's passover.
8065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For I will pass through the land of Egypt this night, and will smite all the firstborn in the land of Egypt, both man and beast; and against all the gods of Egypt I will execute judgment: I am the LORD.
8066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the blood shall be to you for a token upon the houses where ye are: and when I see the blood, I will pass over you, and the plague shall not be upon you to destroy you, when I smite the land of Egypt.
8067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And this day shall be unto you for a memorial; and ye shall keep it a feast to the LORD throughout your generations; ye shall keep it a feast by an ordinance for ever.
8068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Seven days shall ye eat unleavened bread; even the first day ye shall put away leaven out of your houses: for whosoever eateth leavened bread from the first day until the seventh day, that soul shall be cut off from Israel.
8069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the first day there shall be an holy convocation, and in the seventh day there shall be an holy convocation to you; no manner of work shall be done in them, save that which every man must eat, that only may be done of you.
8070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye shall observe the feast of unleavened bread; for in this selfsame day have I brought your armies out of the land of Egypt: therefore shall ye observe this day in your generations by an ordinance for ever.
8071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In the first month, on the fourteenth day of the month at even, ye shall eat unleavened bread, until the one and twentieth day of the month at even.
8072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Seven days shall there be no leaven found in your houses: for whosoever eateth that which is leavened, even that soul shall be cut off from the congregation of Israel, whether he be a stranger, or born in the land.
8073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall eat nothing leavened; in all your habitations shall ye eat unleavened bread.
8074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Moses called for all the elders of Israel, and said unto them, Draw out and take you a lamb according to your families, and kill the passover.
8075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall take a bunch of hyssop, and dip it in the blood that is in the basin, and strike the lintel and the two side posts with the blood that is in the basin; and none of you shall go out at the door of his house until the morning.
8076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For the LORD will pass through to smite the Egyptians; and when he seeth the blood upon the lintel, and on the two side posts, the LORD will pass over the door, and will not suffer the destroyer to come in unto your houses to smite you.
8077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall observe this thing for an ordinance to thee and to thy sons for ever.
8078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it shall come to pass, when ye be come to the land which the LORD will give you, according as he hath promised, that ye shall keep this service.
8079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it shall come to pass, when your children shall say unto you, What mean ye by this service?
8080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That ye shall say, It is the sacrifice of the LORD's passover, who passed over the houses of the children of Israel in Egypt, when he smote the Egyptians, and delivered our houses. And the people bowed the head and worshipped.
8081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel went away, and did as the LORD had commanded Moses and Aaron, so did they.
8082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, that at midnight the LORD smote all the firstborn in the land of Egypt, from the firstborn of Pharaoh that sat on his throne unto the firstborn of the captive that was in the dungeon; and all the firstborn of cattle.
8083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Pharaoh rose up in the night, he, and all his servants, and all the Egyptians; and there was a great cry in Egypt; for there was not a house where there was not one dead.
8084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he called for Moses and Aaron by night, and said, Rise up, and get you forth from among my people, both ye and the children of Israel; and go, serve the LORD, as ye have said.
8085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Also take your flocks and your herds, as ye have said, and be gone; and bless me also.
8086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Egyptians were urgent upon the people, that they might send them out of the land in haste; for they said, We be all dead men.
8087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the people took their dough before it was leavened, their kneadingtroughs being bound up in their clothes upon their shoulders.
8088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the children of Israel did according to the word of Moses; and they borrowed of the Egyptians jewels of silver, and jewels of gold, and raiment:
8089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD gave the people favor in the sight of the Egyptians, so that they lent unto them such things as they required. And they spoiled the Egyptians.
8090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Israel journeyed from Rameses to Succoth, about six hundred thousand on foot that were men, beside children.
8091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And a mixed multitude went up also with them; and flocks, and herds, even very much cattle.
8092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they baked unleavened cakes of the dough which they brought forth out of Egypt, for it was not leavened; because they were thrust out of Egypt, and could not tarry, neither had they prepared for themselves any victual.
8093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now the sojourning of the children of Israel, who dwelt in Egypt, was four hundred and thirty years.
8094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass at the end of the four hundred and thirty years, even the selfsame day it came to pass, that all the hosts of the LORD went out from the land of Egypt.
8095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is a night to be much observed unto the LORD for bringing them out from the land of Egypt: this is that night of the LORD to be observed of all the children of Israel in their generations.
8096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses and Aaron, This is the ordinance of the passover: There shall no stranger eat thereof:
8097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But every man's servant that is bought for money, when thou hast circumcised him, then shall he eat thereof.
8098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A foreigner and an hired servant shall not eat thereof.
8099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In one house shall it be eaten; thou shalt not carry forth ought of the flesh abroad out of the house; neither shall ye break a bone thereof.
8100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All the congregation of Israel shall keep it.
8101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when a stranger shall sojourn with thee, and will keep the passover to the LORD, let all his males be circumcised, and then let him come near and keep it; and he shall be as one that is born in the land: for no uncircumcised person shall eat thereof.
8102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     One law shall be to him that is homeborn, and unto the stranger that sojourneth among you.
8103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thus did all the children of Israel; as the LORD commanded Moses and Aaron, so did they.
8104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass the selfsame day, that the LORD did bring the children of Israel out of the land of Egypt by their armies.
8105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Sanctify unto me all the firstborn, whatsoever openeth the womb among the children of Israel, both of man and of beast: it is mine.
8107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses said unto the people, Remember this day, in which ye came out from Egypt, out of the house of bondage; for by strength of hand the LORD brought you out from this place: there shall no leavened bread be eaten.
8108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This day came ye out in the month Abib.
8109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it shall be when the LORD shall bring thee into the land of the Canaanites, and the Hittites, and the Amorites, and the Hivites, and the Jebusites, which he sware unto thy fathers to give thee, a land flowing with milk and honey, that thou shalt keep this service in this month.
8110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Seven days thou shalt eat unleavened bread, and in the seventh day shall be a feast to the LORD.
8111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Unleavened bread shall be eaten seven days; and there shall no leavened bread be seen with thee, neither shall there be leaven seen with thee in all thy quarters.
8112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt show thy son in that day, saying, This is done because of that which the LORD did unto me when I came forth out of Egypt.
8113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall be for a sign unto thee upon thine hand, and for a memorial between thine eyes, that the LORD's law may be in thy mouth: for with a strong hand hath the LORD brought thee out of Egypt.
8114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt therefore keep this ordinance in his season from year to year.
8115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it shall be when the LORD shall bring thee into the land of the Canaanites, as he sware unto thee and to thy fathers, and shall give it thee,
8116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That thou shalt set apart unto the LORD all that openeth the matrix, and every firstling that cometh of a beast which thou hast; the males shall be the LORD's.
8117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And every firstling of an ass thou shalt redeem with a lamb; and if thou wilt not redeem it, then thou shalt break his neck: and all the firstborn of man among thy children shalt thou redeem.
8118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it shall be when thy son asketh thee in time to come, saying, What is this? that thou shalt say unto him, By strength of hand the LORD brought us out from Egypt, from the house of bondage:
8119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Pharaoh would hardly let us go, that the LORD slew all the firstborn in the land of Egypt, both the firstborn of man, and the firstborn of beast: therefore I sacrifice to the LORD all that openeth the matrix, being males; but all the firstborn of my children I redeem.
8120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it shall be for a token upon thine hand, and for frontlets between thine eyes: for by strength of hand the LORD brought us forth out of Egypt.
8121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, when Pharaoh had let the people go, that God led them not through the way of the land of the Philistines, although that was near; for God said, Lest peradventure the people repent when they see war, and they return to Egypt:
8122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But God led the people about, through the way of the wilderness of the Red sea: and the children of Israel went up harnessed out of the land of Egypt.
8123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses took the bones of Joseph with him: for he had straitly sworn the children of Israel, saying, God will surely visit you; and ye shall carry up my bones away hence with you.
8124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they took their journey from Succoth, and encamped in Etham, in the edge of the wilderness.
8125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD went before them by day in a pillar of a cloud, to lead them the way; and by night in a pillar of fire, to give them light; to go by day and night:
8126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He took not away the pillar of the cloud by day, nor the pillar of fire by night, from before the people.
8127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Speak unto the children of Israel, that they turn and encamp before Pihahiroth, between Migdol and the sea, over against Baalzephon: before it shall ye encamp by the sea.
8129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For Pharaoh will say of the children of Israel, They are entangled in the land, the wilderness hath shut them in.
8130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I will harden Pharaoh's heart, that he shall follow after them; and I will be honored upon Pharaoh, and upon all his host; that the Egyptians may know that I am the LORD. And they did so.
8131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was told the king of Egypt that the people fled: and the heart of Pharaoh and of his servants was turned against the people, and they said, Why have we done this, that we have let Israel go from serving us?
8132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he made ready his chariot, and took his people with him:
8133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he took six hundred chosen chariots, and all the chariots of Egypt, and captains over every one of them.
8134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD hardened the heart of Pharaoh king of Egypt, and he pursued after the children of Israel: and the children of Israel went out with an high hand.
8135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the Egyptians pursued after them, all the horses and chariots of Pharaoh, and his horsemen, and his army, and overtook them encamping by the sea, beside Pihahiroth, before Baalzephon.
8136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when Pharaoh drew nigh, the children of Israel lifted up their eyes, and, behold, the Egyptians marched after them; and they were sore afraid: and the children of Israel cried out unto the LORD.
8137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they said unto Moses, Because there were no graves in Egypt, hast thou taken us away to die in the wilderness? wherefore hast thou dealt thus with us, to carry us forth out of Egypt?
8138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Is not this the word that we did tell thee in Egypt, saying, Let us alone, that we may serve the Egyptians? For it had been better for us to serve the Egyptians, than that we should die in the wilderness.
8139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses said unto the people, Fear ye not, stand still, and see the salvation of the LORD, which he will show to you to day: for the Egyptians whom ye have seen to day, ye shall see them again no more for ever.
8140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD shall fight for you, and ye shall hold your peace.
8141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, Wherefore criest thou unto me? speak unto the children of Israel, that they go forward:
8142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But lift thou up thy rod, and stretch out thine hand over the sea, and divide it: and the children of Israel shall go on dry ground through the midst of the sea.
8143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I, behold, I will harden the hearts of the Egyptians, and they shall follow them: and I will get me honor upon Pharaoh, and upon all his host, upon his chariots, and upon his horsemen.
8144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Egyptians shall know that I am the LORD, when I have gotten me honor upon Pharaoh, upon his chariots, and upon his horsemen.
8145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the angel of God, which went before the camp of Israel, removed and went behind them; and the pillar of the cloud went from before their face, and stood behind them:
8146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came between the camp of the Egyptians and the camp of Israel; and it was a cloud and darkness to them, but it gave light by night to these: so that the one came not near the other all the night.
8147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses stretched out his hand over the sea; and the LORD caused the sea to go back by a strong east wind all that night, and made the sea dry land, and the waters were divided.
8148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel went into the midst of the sea upon the dry ground: and the waters were a wall unto them on their right hand, and on their left.
8149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Egyptians pursued, and went in after them to the midst of the sea, even all Pharaoh's horses, his chariots, and his horsemen.
8150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, that in the morning watch the LORD looked unto the host of the Egyptians through the pillar of fire and of the cloud, and troubled the host of the Egyptians,
8151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And took off their chariot wheels, that they drave them heavily: so that the Egyptians said, Let us flee from the face of Israel; for the LORD fighteth for them against the Egyptians.
8152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, Stretch out thine hand over the sea, that the waters may come again upon the Egyptians, upon their chariots, and upon their horsemen.
8153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses stretched forth his hand over the sea, and the sea returned to his strength when the morning appeared; and the Egyptians fled against it; and the LORD overthrew the Egyptians in the midst of the sea.
8154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the waters returned, and covered the chariots, and the horsemen, and all the host of Pharaoh that came into the sea after them; there remained not so much as one of them.
8155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the children of Israel walked upon dry land in the midst of the sea; and the waters were a wall unto them on their right hand, and on their left.
8156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus the LORD saved Israel that day out of the hand of the Egyptians; and Israel saw the Egyptians dead upon the sea shore.
8157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Israel saw that great work which the LORD did upon the Egyptians: and the people feared the LORD, and believed the LORD, and his servant Moses.
8158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then sang Moses and the children of Israel this song unto the LORD, and spake, saying, I will sing unto the LORD, for he hath triumphed gloriously: the horse and his rider hath he thrown into the sea.
8159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD is my strength and song, and he is become my salvation: he is my God, and I will prepare him an habitation; my father's God, and I will exalt him.
8160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD is a man of war: the LORD is his name.
8161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pharaoh's chariots and his host hath he cast into the sea: his chosen captains also are drowned in the Red sea.
8162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The depths have covered them: they sank into the bottom as a stone.
8163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thy right hand, O LORD, is become glorious in power: thy right hand, O LORD, hath dashed in pieces the enemy.
8164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And in the greatness of thine excellency thou hast overthrown them that rose up against thee: thou sentest forth thy wrath, which consumed them as stubble.
8165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And with the blast of thy nostrils the waters were gathered together, the floods stood upright as an heap, and the depths were congealed in the heart of the sea.
8166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The enemy said, I will pursue, I will overtake, I will divide the spoil; my lust shall be satisfied upon them; I will draw my sword, my hand shall destroy them.
8167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou didst blow with thy wind, the sea covered them: they sank as lead in the mighty waters.
8168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Who is like unto thee, O LORD, among the gods? who is like thee, glorious in holiness, fearful in praises, doing wonders?
8169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou stretchedst out thy right hand, the earth swallowed them.
8170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou in thy mercy hast led forth the people which thou hast redeemed: thou hast guided them in thy strength unto thy holy habitation.
8171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The people shall hear, and be afraid: sorrow shall take hold on the inhabitants of Palestina.
8172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the dukes of Edom shall be amazed; the mighty men of Moab, trembling shall take hold upon them; all the inhabitants of Canaan shall melt away.
8173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fear and dread shall fall upon them; by the greatness of thine arm they shall be as still as a stone; till thy people pass over, O LORD, till the people pass over, which thou hast purchased.
8174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt bring them in, and plant them in the mountain of thine inheritance, in the place, O LORD, which thou hast made for thee to dwell in, in the Sanctuary, O LORD, which thy hands have established.
8175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD shall reign for ever and ever.
8176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For the horse of Pharaoh went in with his chariots and with his horsemen into the sea, and the LORD brought again the waters of the sea upon them; but the children of Israel went on dry land in the midst of the sea.
8177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Miriam the prophetess, the sister of Aaron, took a timbrel in her hand; and all the women went out after her with timbrels and with dances.
8178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Miriam answered them, Sing ye to the LORD, for he hath triumphed gloriously; the horse and his rider hath he thrown into the sea.
8179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Moses brought Israel from the Red sea, and they went out into the wilderness of Shur; and they went three days in the wilderness, and found no water.
8180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when they came to Marah, they could not drink of the waters of Marah, for they were bitter: therefore the name of it was called Marah.
8181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the people murmured against Moses, saying, What shall we drink?
8182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he cried unto the LORD; and the LORD showed him a tree, which when he had cast into the waters, the waters were made sweet: there he made for them a statute and an ordinance, and there he proved them,
8183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And said, If thou wilt diligently hearken to the voice of the LORD thy God, and wilt do that which is right in his sight, and wilt give ear to his commandments, and keep all his statutes, I will put none of these diseases upon thee, which I have brought upon the Egyptians: for I am the LORD that healeth thee.
8184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they came to Elim, where were twelve wells of water, and threescore and ten palm trees: and they encamped there by the waters.
8185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they took their journey from Elim, and all the congregation of the children of Israel came unto the wilderness of Sin, which is between Elim and Sinai, on the fifteenth day of the second month after their departing out of the land of Egypt.
8186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the whole congregation of the children of Israel murmured against Moses and Aaron in the wilderness:
8187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel said unto them, Would to God we had died by the hand of the LORD in the land of Egypt, when we sat by the flesh pots, and when we did eat bread to the full; for ye have brought us forth into this wilderness, to kill this whole assembly with hunger.
8188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said the LORD unto Moses, Behold, I will rain bread from heaven for you; and the people shall go out and gather a certain rate every day, that I may prove them, whether they will walk in my law, or no.
8189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it shall come to pass, that on the sixth day they shall prepare that which they bring in; and it shall be twice as much as they gather daily.
8190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses and Aaron said unto all the children of Israel, At even, then ye shall know that the LORD hath brought you out from the land of Egypt:
8191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And in the morning, then ye shall see the glory of the LORD; for that he heareth your murmurings against the LORD: and what are we, that ye murmur against us?
8192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses said, This shall be, when the LORD shall give you in the evening flesh to eat, and in the morning bread to the full; for that the LORD heareth your murmurings which ye murmur against him: and what are we? your murmurings are not against us, but against the LORD.
8193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses spake unto Aaron, Say unto all the congregation of the children of Israel, Come near before the LORD: for he hath heard your murmurings.
8194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, as Aaron spake unto the whole congregation of the children of Israel, that they looked toward the wilderness, and, behold, the glory of the LORD appeared in the cloud.
8195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I have heard the murmurings of the children of Israel: speak unto them, saying, At even ye shall eat flesh, and in the morning ye shall be filled with bread; and ye shall know that I am the LORD your God.
8197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, that at even the quails came up, and covered the camp: and in the morning the dew lay round about the host.
8198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the dew that lay was gone up, behold, upon the face of the wilderness there lay a small round thing, as small as the hoar frost on the ground.
8199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the children of Israel saw it, they said one to another, It is manna: for they wist not what it was. And Moses said unto them, This is the bread which the LORD hath given you to eat.
8200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is the thing which the LORD hath commanded, Gather of it every man according to his eating, an omer for every man, according to the number of your persons; take ye every man for them which are in his tents.
8201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel did so, and gathered, some more, some less.
8202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when they did mete it with an omer, he that gathered much had nothing over, and he that gathered little had no lack; they gathered every man according to his eating.
8203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses said, Let no man leave of it till the morning.
8204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Notwithstanding they hearkened not unto Moses; but some of them left of it until the morning, and it bred worms, and stank: and Moses was wroth with them.
8205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they gathered it every morning, every man according to his eating: and when the sun waxed hot, it melted.
8206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, that on the sixth day they gathered twice as much bread, two omers for one man: and all the rulers of the congregation came and told Moses.
8207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto them, This is that which the LORD hath said, To morrow is the rest of the holy sabbath unto the LORD: bake that which ye will bake to day, and seethe that ye will seethe; and that which remaineth over lay up for you to be kept until the morning.
8208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they laid it up till the morning, as Moses bade: and it did not stink, neither was there any worm therein.
8209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses said, Eat that to day; for to day is a sabbath unto the LORD: to day ye shall not find it in the field.
8210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Six days ye shall gather it; but on the seventh day, which is the sabbath, in it there shall be none.
8211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, that there went out some of the people on the seventh day for to gather, and they found none.
8212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, How long refuse ye to keep my commandments and my laws?
8213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         See, for that the LORD hath given you the sabbath, therefore he giveth you on the sixth day the bread of two days; abide ye every man in his place, let no man go out of his place on the seventh day.
8214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the people rested on the seventh day.
8215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the house of Israel called the name thereof Manna: and it was like coriander seed, white; and the taste of it was like wafers made with honey.
8216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said, This is the thing which the LORD commandeth, Fill an omer of it to be kept for your generations; that they may see the bread wherewith I have fed you in the wilderness, when I brought you forth from the land of Egypt.
8217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto Aaron, Take a pot, and put an omer full of manna therein, and lay it up before the LORD, to be kept for your generations.
8218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As the LORD commanded Moses, so Aaron laid it up before the Testimony, to be kept.
8219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel did eat manna forty years, until they came to a land inhabited; they did eat manna, until they came unto the borders of the land of Canaan.
8220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now an omer is the tenth part of an ephah.
8221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the congregation of the children of Israel journeyed from the wilderness of Sin, after their journeys, according to the commandment of the LORD, and pitched in Rephidim: and there was no water for the people to drink.
8222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wherefore the people did chide with Moses, and said, Give us water that we may drink. And Moses said unto them, Why chide ye with me? wherefore do ye tempt the LORD?
8223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the people thirsted there for water; and the people murmured against Moses, and said, Wherefore is this that thou hast brought us up out of Egypt, to kill us and our children and our cattle with thirst?
8224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses cried unto the LORD, saying, What shall I do unto this people? they be almost ready to stone me.
8225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said unto Moses, Go on before the people, and take with thee of the elders of Israel; and thy rod, wherewith thou smotest the river, take in thine hand, and go.
8226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Behold, I will stand before thee there upon the rock in Horeb; and thou shalt smite the rock, and there shall come water out of it, that the people may drink. And Moses did so in the sight of the elders of Israel.
8227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he called the name of the place Massah, and Meribah, because of the chiding of the children of Israel, and because they tempted the LORD, saying, Is the LORD among us, or not?
8228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then came Amalek, and fought with Israel in Rephidim.
8229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto Joshua, Choose us out men, and go out, fight with Amalek: to morrow I will stand on the top of the hill with the rod of God in mine hand.
8230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Joshua did as Moses had said to him, and fought with Amalek: and Moses, Aaron, and Hur went up to the top of the hill.
8231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when Moses held up his hand, that Israel prevailed: and when he let down his hand, Amalek prevailed.
8232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Moses hands were heavy; and they took a stone, and put it under him, and he sat thereon; and Aaron and Hur stayed up his hands, the one on the one side, and the other on the other side; and his hands were steady until the going down of the sun.
8233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joshua discomfited Amalek and his people with the edge of the sword.
8234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto Moses, Write this for a memorial in a book, and rehearse it in the ears of Joshua: for I will utterly put out the remembrance of Amalek from under heaven.
8235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses built an altar, and called the name of it Jehovahnissi:
8236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For he said, Because the LORD hath sworn that the LORD will have war with Amalek from generation to generation.
8237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When Jethro, the priest of Midian, Moses' father in law, heard of all that God had done for Moses, and for Israel his people, and that the LORD had brought Israel out of Egypt;
8238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Jethro, Moses' father in law, took Zipporah, Moses' wife, after he had sent her back,
8239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And her two sons; of which the name of the one was Gershom; for he said, I have been an alien in a strange land:
8240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the name of the other was Eliezer; for the God of my father, said he, was mine help, and delivered me from the sword of Pharaoh:
8241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jethro, Moses' father in law, came with his sons and his wife unto Moses into the wilderness, where he encamped at the mount of God:
8242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto Moses, I thy father in law Jethro am come unto thee, and thy wife, and her two sons with her.
8243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses went out to meet his father in law, and did obeisance, and kissed him; and they asked each other of their welfare; and they came into the tent.
8244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses told his father in law all that the LORD had done unto Pharaoh and to the Egyptians for Israel's sake, and all the travail that had come upon them by the way, and how the LORD delivered them.
8245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jethro rejoiced for all the goodness which the LORD had done to Israel, whom he had delivered out of the hand of the Egyptians.
8246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jethro said, Blessed be the LORD, who hath delivered you out of the hand of the Egyptians, and out of the hand of Pharaoh, who hath delivered the people from under the hand of the Egyptians.
8247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now I know that the LORD is greater than all gods: for in the thing wherein they dealt proudly he was above them.
8248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jethro, Moses' father in law, took a burnt offering and sacrifices for God: and Aaron came, and all the elders of Israel, to eat bread with Moses' father in law before God.
8249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass on the morrow, that Moses sat to judge the people: and the people stood by Moses from the morning unto the evening.
8250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Moses' father in law saw all that he did to the people, he said, What is this thing that thou doest to the people? why sittest thou thyself alone, and all the people stand by thee from morning unto even?
8251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said unto his father in law, Because the people come unto me to inquire of God:
8252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When they have a matter, they come unto me; and I judge between one and another, and I do make them know the statutes of God, and his laws.
8253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses' father in law said unto him, The thing that thou doest is not good.
8254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou wilt surely wear away, both thou, and this people that is with thee: for this thing is too heavy for thee; thou art not able to perform it thyself alone.
8255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Hearken now unto my voice, I will give thee counsel, and God shall be with thee: Be thou for the people to God-ward, that thou mayest bring the causes unto God:
8256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt teach them ordinances and laws, and shalt show them the way wherein they must walk, and the work that they must do.
8257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moreover thou shalt provide out of all the people able men, such as fear God, men of truth, hating covetousness; and place such over them, to be rulers of thousands, and rulers of hundreds, rulers of fifties, and rulers of tens:
8258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And let them judge the people at all seasons: and it shall be, that every great matter they shall bring unto thee, but every small matter they shall judge: so shall it be easier for thyself, and they shall bear the burden with thee.
8259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If thou shalt do this thing, and God command thee so, then thou shalt be able to endure, and all this people shall also go to their place in peace.
8260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Moses hearkened to the voice of his father in law, and did all that he had said.
8261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses chose able men out of all Israel, and made them heads over the people, rulers of thousands, rulers of hundreds, rulers of fifties, and rulers of tens.
8262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they judged the people at all seasons: the hard causes they brought unto Moses, but every small matter they judged themselves.
8263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses let his father in law depart; and he went his way into his own land.
8264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the third month, when the children of Israel were gone forth out of the land of Egypt, the same day came they into the wilderness of Sinai.
8265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For they were departed from Rephidim, and were come to the desert of Sinai, and had pitched in the wilderness; and there Israel camped before the mount.
8266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses went up unto God, and the LORD called unto him out of the mountain, saying, Thus shalt thou say to the house of Jacob, and tell the children of Israel;
8267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ye have seen what I did unto the Egyptians, and how I bare you on eagles' wings, and brought you unto myself.
8268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore, if ye will obey my voice indeed, and keep my covenant, then ye shall be a peculiar treasure unto me above all people: for all the earth is mine:
8269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ye shall be unto me a kingdom of priests, and an holy nation. These are the words which thou shalt speak unto the children of Israel.
8270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses came and called for the elders of the people, and laid before their faces all these words which the LORD commanded him.
8271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the people answered together, and said, All that the LORD hath spoken we will do. And Moses returned the words of the people unto the LORD.
8272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto Moses, Lo, I come unto thee in a thick cloud, that the people may hear when I speak with thee, and believe thee for ever. And Moses told the words of the people unto the LORD.
8273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Moses, Go unto the people, and sanctify them to day and to morrow, and let them wash their clothes,
8274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And be ready against the third day: for the third day the LORD will come down in the sight of all the people upon mount Sinai.
8275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt set bounds unto the people round about, saying, Take heed to yourselves, that ye go not up into the mount, or touch the border of it: whosoever toucheth the mount shall be surely put to death:
8276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There shall not an hand touch it, but he shall surely be stoned, or shot through; whether it be beast or man, it shall not live: when the trumpet soundeth long, they shall come up to the mount.
8277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses went down from the mount unto the people, and sanctified the people; and they washed their clothes.
8278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said unto the people, Be ready against the third day: come not at your wives.
8279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass on the third day in the morning, that there were thunders and lightnings, and a thick cloud upon the mount, and the voice of the trumpet exceeding loud; so that all the people that was in the camp trembled.
8280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses brought forth the people out of the camp to meet with God; and they stood at the nether part of the mount.
8281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And mount Sinai was altogether on a smoke, because the LORD descended upon it in fire: and the smoke thereof ascended as the smoke of a furnace, and the whole mount quaked greatly.
8282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when the voice of the trumpet sounded long, and waxed louder and louder, Moses spake, and God answered him by a voice.
8283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD came down upon mount Sinai, on the top of the mount: and the LORD called Moses up to the top of the mount; and Moses went up.
8284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto Moses, Go down, charge the people, lest they break through unto the LORD to gaze, and many of them perish.
8285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And let the priests also, which come near to the LORD, sanctify themselves, lest the LORD break forth upon them.
8286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses said unto the LORD, The people cannot come up to mount Sinai: for thou chargedst us, saying, Set bounds about the mount, and sanctify it.
8287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto him, Away, get thee down, and thou shalt come up, thou, and Aaron with thee: but let not the priests and the people break through to come up unto the LORD, lest he break forth upon them.
8288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Moses went down unto the people, and spake unto them.
8289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God spake all these words, saying,
8290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I am the LORD thy God, which have brought thee out of the land of Egypt, out of the house of bondage.
8291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt have no other gods before me.
8292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not make unto thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the water under the earth.
8293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not bow down thyself to them, nor serve them: for I the LORD thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me;
8294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And showing mercy unto thousands of them that love me, and keep my commandments.
8295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not take the name of the LORD thy God in vain; for the LORD will not hold him guiltless that taketh his name in vain.
8296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Remember the sabbath day, to keep it holy.
8297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Six days shalt thou labor, and do all thy work:
8298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the seventh day is the sabbath of the LORD thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, thy manservant, nor thy maidservant, nor thy cattle, nor thy stranger that is within thy gates:
8299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For in six days the LORD made heaven and earth, the sea, and all that in them is, and rested the seventh day: wherefore the LORD blessed the sabbath day, and hallowed it.
8300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Honor thy father and thy mother: that thy days may be long upon the land which the LORD thy God giveth thee.
8301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not kill.
8302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not commit adultery.
8303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not steal.
8304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt not bear false witness against thy neighbor.
8305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not covet thy neighbor's house, thou shalt not covet thy neighbor's wife, nor his manservant, nor his maidservant, nor his ox, nor his ass, nor any thing that is thy neighbor's.
8306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the people saw the thunderings, and the lightnings, and the noise of the trumpet, and the mountain smoking: and when the people saw it, they removed, and stood afar off.
8307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they said unto Moses, Speak thou with us, and we will hear: but let not God speak with us, lest we die.
8308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses said unto the people, Fear not: for God is come to prove you, and that his fear may be before your faces, that ye sin not.
8309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the people stood afar off, and Moses drew near unto the thick darkness where God was.
8310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Moses, Thus thou shalt say unto the children of Israel, Ye have seen that I have talked with you from heaven.
8311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ye shall not make with me gods of silver, neither shall ye make unto you gods of gold.
8312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             An altar of earth thou shalt make unto me, and shalt sacrifice thereon thy burnt offerings, and thy peace offerings, thy sheep, and thine oxen: in all places where I record my name I will come unto thee, and I will bless thee.
8313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if thou wilt make me an altar of stone, thou shalt not build it of hewn stone: for if thou lift up thy tool upon it, thou hast polluted it.
8314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Neither shalt thou go up by steps unto mine altar, that thy nakedness be not discovered thereon.
8315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now these are the judgments which thou shalt set before them.
8316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If thou buy an Hebrew servant, six years he shall serve: and in the seventh he shall go out free for nothing.
8317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If he came in by himself, he shall go out by himself: if he were married, then his wife shall go out with him.
8318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If his master have given him a wife, and she have born him sons or daughters; the wife and her children shall be her master's, and he shall go out by himself.
8319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And if the servant shall plainly say, I love my master, my wife, and my children; I will not go out free:
8320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then his master shall bring him unto the judges; he shall also bring him to the door, or unto the door post; and his master shall bore his ear through with an awl; and he shall serve him for ever.
8321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if a man sell his daughter to be a maidservant, she shall not go out as the menservants do.
8322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If she please not her master, who hath betrothed her to himself, then shall he let her be redeemed: to sell her unto a strange nation he shall have no power, seeing he hath dealt deceitfully with her.
8323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if he have betrothed her unto his son, he shall deal with her after the manner of daughters.
8324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If he take him another wife; her food, her raiment, and her duty of marriage, shall he not diminish.
8325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if he do not these three unto her, then shall she go out free without money.
8326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He that smiteth a man, so that he die, shall be surely put to death.
8327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if a man lie not in wait, but God deliver him into his hand; then I will appoint thee a place whither he shall flee.
8328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But if a man come presumptuously upon his neighbor, to slay him with guile; thou shalt take him from mine altar, that he may die.
8329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that smiteth his father, or his mother, shall be surely put to death.
8330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that stealeth a man, and selleth him, or if he be found in his hand, he shall surely be put to death.
8331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that curseth his father, or his mother, shall surely be put to death.
8332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if men strive together, and one smite another with a stone, or with his fist, and he die not, but keepeth his bed:
8333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If he rise again, and walk abroad upon his staff, then shall he that smote him be quit: only he shall pay for the loss of his time, and shall cause him to be thoroughly healed.
8334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if a man smite his servant, or his maid, with a rod, and he die under his hand; he shall be surely punished.
8335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Notwithstanding, if he continue a day or two, he shall not be punished: for he is his money.
8336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If men strive, and hurt a woman with child, so that her fruit depart from her, and yet no mischief follow: he shall be surely punished, according as the woman's husband will lay upon him; and he shall pay as the judges determine.
8337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if any mischief follow, then thou shalt give life for life,
8338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Eye for eye, tooth for tooth, hand for hand, foot for foot,
8339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Burning for burning, wound for wound, stripe for stripe.
8340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if a man smite the eye of his servant, or the eye of his maid, that it perish; he shall let him go free for his eye's sake.
8341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if he smite out his manservant's tooth, or his maidservant's tooth; he shall let him go free for his tooth's sake.
8342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If an ox gore a man or a woman, that they die: then the ox shall be surely stoned, and his flesh shall not be eaten; but the owner of the ox shall be quit.
8343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if the ox were wont to push with his horn in time past, and it hath been testified to his owner, and he hath not kept him in, but that he hath killed a man or a woman; the ox shall be stoned, and his owner also shall be put to death.
8344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If there be laid on him a sum of money, then he shall give for the ransom of his life whatsoever is laid upon him.
8345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whether he have gored a son, or have gored a daughter, according to this judgment shall it be done unto him.
8346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If the ox shall push a manservant or a maidservant; he shall give unto their master thirty shekels of silver, and the ox shall be stoned.
8347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if a man shall open a pit, or if a man shall dig a pit, and not cover it, and an ox or an ass fall therein;
8348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The owner of the pit shall make it good, and give money unto the owner of them; and the dead beast shall be his.
8349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if one man's ox hurt another's, that he die; then they shall sell the live ox, and divide the money of it; and the dead ox also they shall divide.
8350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or if it be known that the ox hath used to push in time past, and his owner hath not kept him in; he shall surely pay ox for ox; and the dead shall be his own.
8351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If a man shall steal an ox, or a sheep, and kill it, or sell it; he shall restore five oxen for an ox, and four sheep for a sheep.
8352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If a thief be found breaking up, and be smitten that he die, there shall no blood be shed for him.
8353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If the sun be risen upon him, there shall be blood shed for him; for he should make full restitution; if he have nothing, then he shall be sold for his theft.
8354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If the theft be certainly found in his hand alive, whether it be ox, or ass, or sheep; he shall restore double.
8355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If a man shall cause a field or vineyard to be eaten, and shall put in his beast, and shall feed in another man's field; of the best of his own field, and of the best of his own vineyard, shall he make restitution.
8356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If fire break out, and catch in thorns, so that the stacks of corn, or the standing corn, or the field, be consumed therewith; he that kindled the fire shall surely make restitution.
8357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If a man shall deliver unto his neighbor money or stuff to keep, and it be stolen out of the man's house; if the thief be found, let him pay double.
8358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If the thief be not found, then the master of the house shall be brought unto the judges, to see whether he have put his hand unto his neighbor's goods.
8359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For all manner of trespass, whether it be for ox, for ass, for sheep, for raiment, or for any manner of lost thing which another challengeth to be his, the cause of both parties shall come before the judges; and whom the judges shall condemn, he shall pay double unto his neighbor.
8360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If a man deliver unto his neighbor an ass, or an ox, or a sheep, or any beast, to keep; and it die, or be hurt, or driven away, no man seeing it:
8361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then shall an oath of the LORD be between them both, that he hath not put his hand unto his neighbor's goods; and the owner of it shall accept thereof, and he shall not make it good.
8362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if it be stolen from him, he shall make restitution unto the owner thereof.
8363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If it be torn in pieces, then let him bring it for witness, and he shall not make good that which was torn.
8364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if a man borrow ought of his neighbor, and it be hurt, or die, the owner thereof being not with it, he shall surely make it good.
8365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if the owner thereof be with it, he shall not make it good: if it be an hired thing, it came for his hire.
8366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if a man entice a maid that is not betrothed, and lie with her, he shall surely endow her to be his wife.
8367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If her father utterly refuse to give her unto him, he shall pay money according to the dowry of virgins.
8368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not suffer a witch to live.
8369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whosoever lieth with a beast shall surely be put to death.
8370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He that sacrificeth unto any god, save unto the LORD only, he shall be utterly destroyed.
8371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt neither vex a stranger, nor oppress him: for ye were strangers in the land of Egypt.
8372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall not afflict any widow, or fatherless child.
8373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If thou afflict them in any wise, and they cry at all unto me, I will surely hear their cry;
8374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And my wrath shall wax hot, and I will kill you with the sword; and your wives shall be widows, and your children fatherless.
8375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If thou lend money to any of my people that is poor by thee, thou shalt not be to him as an usurer, neither shalt thou lay upon him usury.
8376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If thou at all take thy neighbor's raiment to pledge, thou shalt deliver it unto him by that the sun goeth down:
8377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For that is his covering only, it is his raiment for his skin: wherein shall he sleep? and it shall come to pass, when he crieth unto me, that I will hear; for I am gracious.
8378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not revile the gods, nor curse the ruler of thy people.
8379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not delay to offer the first of thy ripe fruits, and of thy liquors: the firstborn of thy sons shalt thou give unto me.
8380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Likewise shalt thou do with thine oxen, and with thy sheep: seven days it shall be with his dam; on the eighth day thou shalt give it me.
8381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye shall be holy men unto me: neither shall ye eat any flesh that is torn of beasts in the field; ye shall cast it to the dogs.
8382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not raise a false report: put not thine hand with the wicked to be an unrighteous witness.
8383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not follow a multitude to do evil; neither shalt thou speak in a cause to decline after many to wrest judgment:
8384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Neither shalt thou countenance a poor man in his cause.
8385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           If thou meet thine enemy's ox or his ass going astray, thou shalt surely bring it back to him again.
8386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If thou see the ass of him that hateth thee lying under his burden, and wouldest forbear to help him, thou shalt surely help with him.
8387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt not wrest the judgment of thy poor in his cause.
8388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Keep thee far from a false matter; and the innocent and righteous slay thou not: for I will not justify the wicked.
8389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt take no gift: for the gift blindeth the wise, and perverteth the words of the righteous.
8390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also thou shalt not oppress a stranger: for ye know the heart of a stranger, seeing ye were strangers in the land of Egypt.
8391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And six years thou shalt sow thy land, and shalt gather in the fruits thereof:
8392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But the seventh year thou shalt let it rest and lie still; that the poor of thy people may eat: and what they leave the beasts of the field shall eat. In like manner thou shalt deal with thy vineyard, and with thy oliveyard.
8393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Six days thou shalt do thy work, and on the seventh day thou shalt rest: that thine ox and thine ass may rest, and the son of thy handmaid, and the stranger, may be refreshed.
8394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And in all things that I have said unto you be circumspect: and make no mention of the name of other gods, neither let it be heard out of thy mouth.
8395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Three times thou shalt keep a feast unto me in the year.
8396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt keep the feast of unleavened bread: (thou shalt eat unleavened bread seven days, as I commanded thee, in the time appointed of the month Abib; for in it thou camest out from Egypt: and none shall appear before me empty:)
8397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the feast of harvest, the firstfruits of thy labors, which thou hast sown in the field: and the feast of ingathering, which is in the end of the year, when thou hast gathered in thy labors out of the field.
8398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Three items in the year all thy males shall appear before the LORD God.
8399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not offer the blood of my sacrifice with leavened bread; neither shall the fat of my sacrifice remain until the morning.
8400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The first of the firstfruits of thy land thou shalt bring into the house of the LORD thy God. Thou shalt not seethe a kid in his mother's milk.
8401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Behold, I send an Angel before thee, to keep thee in the way, and to bring thee into the place which I have prepared.
8402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Beware of him, and obey his voice, provoke him not; for he will not pardon your transgressions: for my name is in him.
8403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if thou shalt indeed obey his voice, and do all that I speak; then I will be an enemy unto thine enemies, and an adversary unto thine adversaries.
8404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For mine Angel shall go before thee, and bring thee in unto the Amorites, and the Hittites, and the Perizzites, and the Canaanites, the Hivites, and the Jebusites: and I will cut them off.
8405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not bow down to their gods, nor serve them, nor do after their works: but thou shalt utterly overthrow them, and quite break down their images.
8406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ye shall serve the LORD your God, and he shall bless thy bread, and thy water; and I will take sickness away from the midst of thee.
8407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There shall nothing cast their young, nor be barren, in thy land: the number of thy days I will fulfil.
8408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I will send my fear before thee, and will destroy all the people to whom thou shalt come, and I will make all thine enemies turn their backs unto thee.
8409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I will send hornets before thee, which shall drive out the Hivite, the Canaanite, and the Hittite, from before thee.
8410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I will not drive them out from before thee in one year; lest the land become desolate, and the beast of the field multiply against thee.
8411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    By little and little I will drive them out from before thee, until thou be increased, and inherit the land.
8412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I will set thy bounds from the Red sea even unto the sea of the Philistines, and from the desert unto the river: for I will deliver the inhabitants of the land into your hand; and thou shalt drive them out before thee.
8413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt make no covenant with them, nor with their gods.
8414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They shall not dwell in thy land, lest they make thee sin against me: for if thou serve their gods, it will surely be a snare unto thee.
8415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said unto Moses, Come up unto the LORD, thou, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel; and worship ye afar off.
8416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses alone shall come near the LORD: but they shall not come nigh; neither shall the people go up with him.
8417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses came and told the people all the words of the LORD, and all the judgments: and all the people answered with one voice, and said, All the words which the LORD hath said will we do.
8418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses wrote all the words of the LORD, and rose up early in the morning, and builded an altar under the hill, and twelve pillars, according to the twelve tribes of Israel.
8419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he sent young men of the children of Israel, which offered burnt offerings, and sacrificed peace offerings of oxen unto the LORD.
8420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses took half of the blood, and put it in basins; and half of the blood he sprinkled on the altar.
8421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he took the book of the covenant, and read in the audience of the people: and they said, All that the LORD hath said will we do, and be obedient.
8422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses took the blood, and sprinkled it on the people, and said, Behold the blood of the covenant, which the LORD hath made with you concerning all these words.
8423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then went up Moses, and Aaron, Nadab, and Abihu, and seventy of the elders of Israel:
8424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they saw the God of Israel: and there was under his feet as it were a paved work of a sapphire stone, and as it were the body of heaven in his clearness.
8425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And upon the nobles of the children of Israel he laid not his hand: also they saw God, and did eat and drink.
8426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses, Come up to me into the mount, and be there: and I will give thee tables of stone, and a law, and commandments which I have written; that thou mayest teach them.
8427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses rose up, and his minister Joshua: and Moses went up into the mount of God.
8428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said unto the elders, Tarry ye here for us, until we come again unto you: and, behold, Aaron and Hur are with you: if any man have any matters to do, let him come unto them.
8429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses went up into the mount, and a cloud covered the mount.
8430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the glory of the LORD abode upon mount Sinai, and the cloud covered it six days: and the seventh day he called unto Moses out of the midst of the cloud.
8431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sight of the glory of the LORD was like devouring fire on the top of the mount in the eyes of the children of Israel.
8432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses went into the midst of the cloud, and gat him up into the mount: and Moses was in the mount forty days and forty nights.
8433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Speak unto the children of Israel, that they bring me an offering: of every man that giveth it willingly with his heart ye shall take my offering.
8435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And this is the offering which ye shall take of them; gold, and silver, and brass,
8436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And blue, and purple, and scarlet, and fine linen, and goats' hair,
8437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And rams' skins dyed red, and badgers' skins, and shittim wood,
8438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Oil for the light, spices for anointing oil, and for sweet incense,
8439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Onyx stones, and stones to be set in the ephod, and in the breastplate.
8440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And let them make me a sanctuary; that I may dwell among them.
8441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              According to all that I show thee, after the pattern of the tabernacle, and the pattern of all the instruments thereof, even so shall ye make it.
8442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they shall make an ark of shittim wood: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof, and a cubit and a half the height thereof.
8443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt overlay it with pure gold, within and without shalt thou overlay it, and shalt make upon it a crown of gold round about.
8444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt cast four rings of gold for it, and put them in the four corners thereof; and two rings shall be in the one side of it, and two rings in the other side of it.
8445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make staves of shittim wood, and overlay them with gold.
8446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt put the staves into the rings by the sides of the ark, that the ark may be borne with them.
8447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The staves shall be in the rings of the ark: they shall not be taken from it.
8448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt put into the ark the testimony which I shall give thee.
8449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt make a mercy seat of pure gold: two cubits and a half shall be the length thereof, and a cubit and a half the breadth thereof.
8450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt make two cherubim of gold, of beaten work shalt thou make them, in the two ends of the mercy seat.
8451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And make one cherub on the one end, and the other cherub on the other end: even of the mercy seat shall ye make the cherubim on the two ends thereof.
8452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the cherubim shall stretch forth their wings on high, covering the mercy seat with their wings, and their faces shall look one to another; toward the mercy seat shall the faces of the cherubim be.
8453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt put the mercy seat above upon the ark; and in the ark thou shalt put the testimony that I shall give thee.
8454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there I will meet with thee, and I will commune with thee from above the mercy seat, from between the two cherubim which are upon the ark of the testimony, of all things which I will give thee in commandment unto the children of Israel.
8455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt also make a table of shittim wood: two cubits shall be the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof.
8456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt overlay it with pure gold, and make thereto a crown of gold round about.
8457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt make unto it a border of an hand breadth round about, and thou shalt make a golden crown to the border thereof round about.
8458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make for it four rings of gold, and put the rings in the four corners that are on the four feet thereof.
8459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Over against the border shall the rings be for places of the staves to bear the table.
8460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt make the staves of shittim wood, and overlay them with gold, that the table may be borne with them.
8461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt make the dishes thereof, and spoons thereof, and covers thereof, and bowls thereof, to cover withal: of pure gold shalt thou make them.
8462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt set upon the table showbread before me always.
8463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make a candlestick of pure gold: of beaten work shall the candlestick be made: his shaft, and his branches, his bowls, his knops, and his flowers, shall be of the same.
8464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And six branches shall come out of the sides of it; three branches of the candlestick out of the one side, and three branches of the candlestick out of the other side:
8465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Three bowls made like unto almonds, with a knop and a flower in one branch; and three bowls made like almonds in the other branch, with a knop and a flower: so in the six branches that come out of the candlestick.
8466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And in the candlesticks shall be four bowls made like unto almonds, with their knops and their flowers.
8467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there shall be a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches that proceed out of the candlestick.
8468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Their knops and their branches shall be of the same: all it shall be one beaten work of pure gold.
8469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt make the seven lamps thereof: and they shall light the lamps thereof, that they may give light over against it.
8470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the tongs thereof, and the snuffdishes thereof, shall be of pure gold.
8471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of a talent of pure gold shall he make it, with all these vessels.
8472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And look that thou make them after their pattern, which was showed thee in the mount.
8473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moreover thou shalt make the tabernacle with ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubim of cunning work shalt thou make them.
8474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The length of one curtain shall be eight and twenty cubits, and the breadth of one curtain four cubits: and every one of the curtains shall have one measure.
8475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The five curtains shall be coupled together one to another; and other five curtains shall be coupled one to another.
8476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make loops of blue upon the edge of the one curtain from the selvedge in the coupling; and likewise shalt thou make in the uttermost edge of another curtain, in the coupling of the second.
8477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Fifty loops shalt thou make in the one curtain, and fifty loops shalt thou make in the edge of the curtain that is in the coupling of the second; that the loops may take hold one of another.
8478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make fifty taches of gold, and couple the curtains together with the taches: and it shall be one tabernacle.
8479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt make curtains of goats' hair to be a covering upon the tabernacle: eleven curtains shalt thou make.
8480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The length of one curtain shall be thirty cubits, and the breadth of one curtain four cubits: and the eleven curtains shall be all of one measure.
8481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt couple five curtains by themselves, and six curtains by themselves, and shalt double the sixth curtain in the forefront of the tabernacle.
8482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt make fifty loops on the edge of the one curtain that is outmost in the coupling, and fifty loops in the edge of the curtain which coupleth the second.
8483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt make fifty taches of brass, and put the taches into the loops, and couple the tent together, that it may be one.
8484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the remnant that remaineth of the curtains of the tent, the half curtain that remaineth, shall hang over the backside of the tabernacle.
8485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And a cubit on the one side, and a cubit on the other side of that which remaineth in the length of the curtains of the tent, it shall hang over the sides of the tabernacle on this side and on that side, to cover it.
8486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt make a covering for the tent of rams' skins dyed red, and a covering above of badgers' skins.
8487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt make boards for the tabernacle of shittim wood standing up.
8488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ten cubits shall be the length of a board, and a cubit and a half shall be the breadth of one board.
8489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Two tenons shall there be in one board, set in order one against another: thus shalt thou make for all the boards of the tabernacle.
8490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt make the boards for the tabernacle, twenty boards on the south side southward.
8491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt make forty sockets of silver under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons.
8492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And for the second side of the tabernacle on the north side there shall be twenty boards:
8493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And their forty sockets of silver; two sockets under one board, and two sockets under another board.
8494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And for the sides of the tabernacle westward thou shalt make six boards.
8495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And two boards shalt thou make for the corners of the tabernacle in the two sides.
8496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they shall be coupled together beneath, and they shall be coupled together above the head of it unto one ring: thus shall it be for them both; they shall be for the two corners.
8497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they shall be eight boards, and their sockets of silver, sixteen sockets; two sockets under one board, and two sockets under another board.
8498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt make bars of shittim wood; five for the boards of the one side of the tabernacle,
8499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And five bars for the boards of the other side of the tabernacle, and five bars for the boards of the side of the tabernacle, for the two sides westward.
8500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the middle bar in the midst of the boards shall reach from end to end.
8501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt overlay the boards with gold, and make their rings of gold for places for the bars: and thou shalt overlay the bars with gold.
8502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt rear up the tabernacle according to the fashion thereof which was showed thee in the mount.
8503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make a vail of blue, and purple, and scarlet, and fine twined linen of cunning work: with cherubim shall it be made:
8504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt hang it upon four pillars of shittim wood overlaid with gold: their hooks shall be of gold, upon the four sockets of silver.
8505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt hang up the vail under the taches, that thou mayest bring in thither within the vail the ark of the testimony: and the vail shall divide unto you between the holy place and the most holy.
8506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt put the mercy seat upon the ark of the testimony in the most holy place.
8507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt set the table without the vail, and the candlestick over against the table on the side of the tabernacle toward the south: and thou shalt put the table on the north side.
8508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt make an hanging for the door of the tent, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework.
8509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make for the hanging five pillars of shittim wood, and overlay them with gold, and their hooks shall be of gold: and thou shalt cast five sockets of brass for them.
8510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make an altar of shittim wood, five cubits long, and five cubits broad; the altar shall be foursquare: and the height thereof shall be three cubits.
8511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt make the horns of it upon the four corners thereof: his horns shall be of the same: and thou shalt overlay it with brass.
8512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make his pans to receive his ashes, and his shovels, and his basins, and his fleshhooks, and his firepans: all the vessels thereof thou shalt make of brass.
8513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make for it a grate of network of brass; and upon the net shalt thou make four brazen rings in the four corners thereof.
8514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt put it under the compass of the altar beneath, that the net may be even to the midst of the altar.
8515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt make staves for the altar, staves of shittim wood, and overlay them with brass.
8516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the staves shall be put into the rings, and the staves shall be upon the two sides of the altar, to bear it.
8517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hollow with boards shalt thou make it: as it was showed thee in the mount, so shall they make it.
8518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt make the court of the tabernacle: for the south side southward there shall be hangings for the court of fine twined linen of an hundred cubits long for one side:
8519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the twenty pillars thereof and their twenty sockets shall be of brass; the hooks of the pillars and their fillets shall be of silver.
8520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And likewise for the north side in length there shall be hangings of an hundred cubits long, and his twenty pillars and their twenty sockets of brass; the hooks of the pillars and their fillets of silver.
8521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for the breadth of the court on the west side shall be hangings of fifty cubits: their pillars ten, and their sockets ten.
8522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the breadth of the court on the east side eastward shall be fifty cubits.
8523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The hangings of one side of the gate shall be fifteen cubits: their pillars three, and their sockets three.
8524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And on the other side shall be hangings fifteen cubits: their pillars three, and their sockets three.
8525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for the gate of the court shall be an hanging of twenty cubits, of blue, and purple, and scarlet, and fine twined linen, wrought with needlework: and their pillars shall be four, and their sockets four.
8526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All the pillars round about the court shall be filleted with silver; their hooks shall be of silver, and their sockets of brass.
8527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The length of the court shall be an hundred cubits, and the breadth fifty every where, and the height five cubits of fine twined linen, and their sockets of brass.
8528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All the vessels of the tabernacle in all the service thereof, and all the pins thereof, and all the pins of the court, shall be of brass.
8529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt command the children of Israel, that they bring thee pure oil olive beaten for the light, to cause the lamp to burn always.
8530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               In the tabernacle of the congregation without the vail, which is before the testimony, Aaron and his sons shall order it from evening to morning before the LORD: it shall be a statute for ever unto their generations on the behalf of the children of Israel.
8531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And take thou unto thee Aaron thy brother, and his sons with him, from among the children of Israel, that he may minister unto me in the priest's office, even Aaron, Nadab and Abihu, Eleazar and Ithamar, Aaron's sons.
8532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt make holy garments for Aaron thy brother for glory and for beauty.
8533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt speak unto all that are wise hearted, whom I have filled with the spirit of wisdom, that they may make Aaron's garments to consecrate him, that he may minister unto me in the priest's office.
8534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And these are the garments which they shall make; a breastplate, and an ephod, and a robe, and a broidered coat, a mitre, and a girdle: and they shall make holy garments for Aaron thy brother, and his sons, that he may minister unto me in the priest's office.
8535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they shall take gold, and blue, and purple, and scarlet, and fine linen.
8536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they shall make the ephod of gold, of blue, and of purple, of scarlet, and fine twined linen, with cunning work.
8537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It shall have the two shoulderpieces thereof joined at the two edges thereof; and so it shall be joined together.
8538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the curious girdle of the ephod, which is upon it, shall be of the same, according to the work thereof; even of gold, of blue, and purple, and scarlet, and fine twined linen.
8539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt take two onyx stones, and grave on them the names of the children of Israel:
8540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Six of their names on one stone, and the other six names of the rest on the other stone, according to their birth.
8541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          With the work of an engraver in stone, like the engravings of a signet, shalt thou engrave the two stones with the names of the children of Israel: thou shalt make them to be set in ouches of gold.
8542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt put the two stones upon the shoulders of the ephod for stones of memorial unto the children of Israel: and Aaron shall bear their names before the LORD upon his two shoulders for a memorial.
8543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make ouches of gold;
8544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And two chains of pure gold at the ends; of wreathed work shalt thou make them, and fasten the wreathed chains to the ouches.
8545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt make the breastplate of judgment with cunning work; after the work of the ephod thou shalt make it; of gold, of blue, and of purple, and of scarlet, and of fine twined linen, shalt thou make it.
8546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Foursquare it shall be being doubled; a span shall be the length thereof, and a span shall be the breadth thereof.
8547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt set in it settings of stones, even four rows of stones: the first row shall be a sardius, a topaz, and a carbuncle: this shall be the first row.
8548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the second row shall be an emerald, a sapphire, and a diamond.
8549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the third row a ligure, an agate, and an amethyst.
8550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the fourth row a beryl, and an onyx, and a jasper: they shall be set in gold in their inclosings.
8551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the stones shall be with the names of the children of Israel, twelve, according to their names, like the engravings of a signet; every one with his name shall they be according to the twelve tribes.
8552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt make upon the breastplate chains at the ends of wreathed work of pure gold.
8553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make upon the breastplate two rings of gold, and shalt put the two rings on the two ends of the breastplate.
8554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt put the two wreathed chains of gold in the two rings which are on the ends of the breastplate.
8555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the other two ends of the two wreathed chains thou shalt fasten in the two ouches, and put them on the shoulderpieces of the ephod before it.
8556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt make two rings of gold, and thou shalt put them upon the two ends of the breastplate in the border thereof, which is in the side of the ephod inward.
8557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And two other rings of gold thou shalt make, and shalt put them on the two sides of the ephod underneath, toward the forepart thereof, over against the other coupling thereof, above the curious girdle of the ephod.
8558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they shall bind the breastplate by the rings thereof unto the rings of the ephod with a lace of blue, that it may be above the curious girdle of the ephod, and that the breastplate be not loosed from the ephod.
8559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Aaron shall bear the names of the children of Israel in the breastplate of judgment upon his heart, when he goeth in unto the holy place, for a memorial before the LORD continually.
8560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt put in the breastplate of judgment the Urim and the Thummim; and they shall be upon Aaron's heart, when he goeth in before the LORD: and Aaron shall bear the judgment of the children of Israel upon his heart before the LORD continually.
8561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt make the robe of the ephod all of blue.
8562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there shall be an hole in the top of it, in the midst thereof: it shall have a binding of woven work round about the hole of it, as it were the hole of an habergeon, that it be not rent.
8563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And beneath upon the hem of it thou shalt make pomegranates of blue, and of purple, and of scarlet, round about the hem thereof; and bells of gold between them round about:
8564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A golden bell and a pomegranate, a golden bell and a pomegranate, upon the hem of the robe round about.
8565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it shall be upon Aaron to minister: and his sound shall be heard when he goeth in unto the holy place before the LORD, and when he cometh out, that he die not.
8566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt make a plate of pure gold, and grave upon it, like the engravings of a signet, HOLINESS TO THE LORD.
8567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt put it on a blue lace, that it may be upon the mitre; upon the forefront of the mitre it shall be.
8568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it shall be upon Aaron's forehead, that Aaron may bear the iniquity of the holy things, which the children of Israel shall hallow in all their holy gifts; and it shall be always upon his forehead, that they may be accepted before the LORD.
8569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt embroider the coat of fine linen, and thou shalt make the mitre of fine linen, and thou shalt make the girdle of needlework.
8570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And for Aaron's sons thou shalt make coats, and thou shalt make for them girdles, and bonnets shalt thou make for them, for glory and for beauty.
8571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt put them upon Aaron thy brother, and his sons with him; and shalt anoint them, and consecrate them, and sanctify them, that they may minister unto me in the priest's office.
8572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt make them linen breeches to cover their nakedness; from the loins even unto the thighs they shall reach:
8573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they shall be upon Aaron, and upon his sons, when they come in unto the tabernacle of the congregation, or when they come near unto the altar to minister in the holy place; that they bear not iniquity, and die: it shall be a statute for ever unto him and his seed after him.
8574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And this is the thing that thou shalt do unto them to hallow them, to minister unto me in the priest's office: Take one young bullock, and two rams without blemish,
8575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And unleavened bread, and cakes unleavened tempered with oil, and wafers unleavened anointed with oil: of wheaten flour shalt thou make them.
8576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt put them into one basket, and bring them in the basket, with the bullock and the two rams.
8577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Aaron and his sons thou shalt bring unto the door of the tabernacle of the congregation, and shalt wash them with water.
8578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt take the garments, and put upon Aaron the coat, and the robe of the ephod, and the ephod, and the breastplate, and gird him with the curious girdle of the ephod:
8579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt put the mitre upon his head, and put the holy crown upon the mitre.
8580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then shalt thou take the anointing oil, and pour it upon his head, and anoint him.
8581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt bring his sons, and put coats upon them.
8582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt gird them with girdles, Aaron and his sons, and put the bonnets on them: and the priest's office shall be theirs for a perpetual statute: and thou shalt consecrate Aaron and his sons.
8583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt cause a bullock to be brought before the tabernacle of the congregation: and Aaron and his sons shall put their hands upon the head of the bullock.
8584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt kill the bullock before the LORD, by the door of the tabernacle of the congregation.
8585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt take of the blood of the bullock, and put it upon the horns of the altar with thy finger, and pour all the blood beside the bottom of the altar.
8586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt take all the fat that covereth the inwards, and the caul that is above the liver, and the two kidneys, and the fat that is upon them, and burn them upon the altar.
8587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the flesh of the bullock, and his skin, and his dung, shalt thou burn with fire without the camp: it is a sin offering.
8588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt also take one ram; and Aaron and his sons shall put their hands upon the head of the ram.
8589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt slay the ram, and thou shalt take his blood, and sprinkle it round about upon the altar.
8590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt cut the ram in pieces, and wash the inwards of him, and his legs, and put them unto his pieces, and unto his head.
8591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt burn the whole ram upon the altar: it is a burnt offering unto the LORD: it is a sweet savor, an offering made by fire unto the LORD.
8592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt take the other ram; and Aaron and his sons shall put their hands upon the head of the ram.
8593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then shalt thou kill the ram, and take of his blood, and put it upon the tip of the right ear of Aaron, and upon the tip of the right ear of his sons, and upon the thumb of their right hand, and upon the great toe of their right foot, and sprinkle the blood upon the altar round about.
8594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt take of the blood that is upon the altar, and of the anointing oil, and sprinkle it upon Aaron, and upon his garments, and upon his sons, and upon the garments of his sons with him: and he shall be hallowed, and his garments, and his sons, and his sons' garments with him.
8595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Also thou shalt take of the ram the fat and the rump, and the fat that covereth the inwards, and the caul above the liver, and the two kidneys, and the fat that is upon them, and the right shoulder; for it is a ram of consecration:
8596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And one loaf of bread, and one cake of oiled bread, and one wafer out of the basket of the unleavened bread that is before the LORD:
8597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt put all in the hands of Aaron, and in the hands of his sons; and shalt wave them for a wave offering before the LORD.
8598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt receive them of their hands, and burn them upon the altar for a burnt offering, for a sweet savor before the LORD: it is an offering made by fire unto the LORD.
8599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt take the breast of the ram of Aaron's consecration, and wave it for a wave offering before the LORD: and it shall be thy part.
8600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt sanctify the breast of the wave offering, and the shoulder of the heave offering, which is waved, and which is heaved up, of the ram of the consecration, even of that which is for Aaron, and of that which is for his sons:
8601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it shall be Aaron's and his sons' by a statute for ever from the children of Israel: for it is an heave offering: and it shall be an heave offering from the children of Israel of the sacrifice of their peace offerings, even their heave offering unto the LORD.
8602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the holy garments of Aaron shall be his sons' after him, to be anointed therein, and to be consecrated in them.
8603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And that son that is priest in his stead shall put them on seven days, when he cometh into the tabernacle of the congregation to minister in the holy place.
8604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt take the ram of the consecration, and seethe his flesh in the holy place.
8605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Aaron and his sons shall eat the flesh of the ram, and the bread that is in the basket by the door of the tabernacle of the congregation.
8606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they shall eat those things wherewith the atonement was made, to consecrate and to sanctify them: but a stranger shall not eat thereof, because they are holy.
8607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if ought of the flesh of the consecrations, or of the bread, remain unto the morning, then thou shalt burn the remainder with fire: it shall not be eaten, because it is holy.
8608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thus shalt thou do unto Aaron, and to his sons, according to all things which I have commanded thee: seven days shalt thou consecrate them.
8609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt offer every day a bullock for a sin offering for atonement: and thou shalt cleanse the altar, when thou hast made an atonement for it, and thou shalt anoint it, to sanctify it.
8610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Seven days thou shalt make an atonement for the altar, and sanctify it; and it shall be an altar most holy: whatsoever toucheth the altar shall be holy.
8611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now this is that which thou shalt offer upon the altar; two lambs of the first year day by day continually.
8612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The one lamb thou shalt offer in the morning; and the other lamb thou shalt offer at even:
8613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And with the one lamb a tenth deal of flour mingled with the fourth part of an hin of beaten oil; and the fourth part of an hin of wine for a drink offering.
8614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the other lamb thou shalt offer at even, and shalt do thereto according to the meat offering of the morning, and according to the drink offering thereof, for a sweet savor, an offering made by fire unto the LORD.
8615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This shall be a continual burnt offering throughout your generations at the door of the tabernacle of the congregation before the LORD: where I will meet you, to speak there unto thee.
8616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And there I will meet with the children of Israel, and the tabernacle shall be sanctified by my glory.
8617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I will sanctify the tabernacle of the congregation, and the altar: I will sanctify also both Aaron and his sons, to minister to me in the priest's office.
8618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I will dwell among the children of Israel, and will be their God.
8619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they shall know that I am the LORD their God, that brought them forth out of the land of Egypt, that I may dwell among them: I am the LORD their God.
8620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt make an altar to burn incense upon: of shittim wood shalt thou make it.
8621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A cubit shall be the length thereof, and a cubit the breadth thereof; foursquare shall it be: and two cubits shall be the height thereof: the horns thereof shall be of the same.
8622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt overlay it with pure gold, the top thereof, and the sides thereof round about, and the horns thereof; and thou shalt make unto it a crown of gold round about.
8623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And two golden rings shalt thou make to it under the crown of it, by the two corners thereof, upon the two sides of it shalt thou make it; and they shall be for places for the staves to bear it withal.
8624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt make the staves of shittim wood, and overlay them with gold.
8625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt put it before the vail that is by the ark of the testimony, before the mercy seat that is over the testimony, where I will meet with thee.
8626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Aaron shall burn thereon sweet incense every morning: when he dresseth the lamps, he shall burn incense upon it.
8627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when Aaron lighteth the lamps at even, he shall burn incense upon it, a perpetual incense before the LORD throughout your generations.
8628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ye shall offer no strange incense thereon, nor burnt sacrifice, nor meat offering; neither shall ye pour drink offering thereon.
8629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Aaron shall make an atonement upon the horns of it once in a year with the blood of the sin offering of atonements: once in the year shall he make atonement upon it throughout your generations: it is most holy unto the LORD.
8630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When thou takest the sum of the children of Israel after their number, then shall they give every man a ransom for his soul unto the LORD, when thou numberest them; that there be no plague among them, when thou numberest them.
8632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This they shall give, every one that passeth among them that are numbered, half a shekel after the shekel of the sanctuary: (a shekel is twenty gerahs:) an half shekel shall be the offering of the LORD.
8633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Every one that passeth among them that are numbered, from twenty years old and above, shall give an offering unto the LORD.
8634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The rich shall not give more, and the poor shall not give less than half a shekel, when they give an offering unto the LORD, to make an atonement for your souls.
8635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt take the atonement money of the children of Israel, and shalt appoint it for the service of the tabernacle of the congregation; that it may be a memorial unto the children of Israel before the LORD, to make an atonement for your souls.
8636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt also make a laver of brass, and his foot also of brass, to wash withal: and thou shalt put it between the tabernacle of the congregation and the altar, and thou shalt put water therein.
8638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For Aaron and his sons shall wash their hands and their feet thereat:
8639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When they go into the tabernacle of the congregation, they shall wash with water, that they die not; or when they come near to the altar to minister, to burn offering made by fire unto the LORD:
8640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they shall wash their hands and their feet, that they die not: and it shall be a statute for ever to them, even to him and to his seed throughout their generations.
8641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover the LORD spake unto Moses, saying,
8642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Take thou also unto thee principal spices, of pure myrrh five hundred shekels, and of sweet cinnamon half so much, even two hundred and fifty shekels, and of sweet calamus two hundred and fifty shekels,
8643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And of cassia five hundred shekels, after the shekel of the sanctuary, and of oil olive an hin:
8644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt make it an oil of holy ointment, an ointment compound after the art of the apothecary: it shall be an holy anointing oil.
8645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt anoint the tabernacle of the congregation therewith, and the ark of the testimony,
8646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the table and all his vessels, and the candlestick and his vessels, and the altar of incense,
8647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the altar of burnt offering with all his vessels, and the laver and his foot.
8648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt sanctify them, that they may be most holy: whatsoever toucheth them shall be holy.
8649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt anoint Aaron and his sons, and consecrate them, that they may minister unto me in the priest's office.
8650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt speak unto the children of Israel, saying, This shall be an holy anointing oil unto me throughout your generations.
8651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Upon man's flesh shall it not be poured, neither shall ye make any other like it, after the composition of it: it is holy, and it shall be holy unto you.
8652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whosoever compoundeth any like it, or whosoever putteth any of it upon a stranger, shall even be cut off from his people.
8653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said unto Moses, Take unto thee sweet spices, stacte, and onycha, and galbanum; these sweet spices with pure frankincense: of each shall there be a like weight:
8654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt make it a perfume, a confection after the art of the apothecary, tempered together, pure and holy:
8655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt beat some of it very small, and put of it before the testimony in the tabernacle of the congregation, where I will meet with thee: it shall be unto you most holy.
8656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And as for the perfume which thou shalt make, ye shall not make to yourselves according to the composition thereof: it shall be unto thee holy for the LORD.
8657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whosoever shall make like unto that, to smell thereto, shall even be cut off from his people.
8658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     See, I have called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah:
8660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I have filled him with the spirit of God, in wisdom, and in understanding, and in knowledge, and in all manner of workmanship,
8661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         To devise cunning works, to work in gold, and in silver, and in brass,
8662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in cutting of stones, to set them, and in carving of timber, to work in all manner of workmanship.
8663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I, behold, I have given with him Aholiab, the son of Ahisamach, of the tribe of Dan: and in the hearts of all that are wise hearted I have put wisdom, that they may make all that I have commanded thee;
8664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The tabernacle of the congregation, and the ark of the testimony, and the mercy seat that is thereupon, and all the furniture of the tabernacle,
8665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the table and his furniture, and the pure candlestick with all his furniture, and the altar of incense,
8666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the altar of burnt offering with all his furniture, and the laver and his foot,
8667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the cloths of service, and the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office,
8668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the anointing oil, and sweet incense for the holy place: according to all that I have commanded thee shall they do.
8669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Speak thou also unto the children of Israel, saying, Verily my sabbaths ye shall keep: for it is a sign between me and you throughout your generations; that ye may know that I am the LORD that doth sanctify you.
8671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ye shall keep the sabbath therefore; for it is holy unto you: every one that defileth it shall surely be put to death: for whosoever doeth any work therein, that soul shall be cut off from among his people.
8672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Six days may work be done; but in the seventh is the sabbath of rest, holy to the LORD: whosoever doeth any work in the sabbath day, he shall surely be put to death.
8673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wherefore the children of Israel shall keep the sabbath, to observe the sabbath throughout their generations, for a perpetual covenant.
8674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It is a sign between me and the children of Israel for ever: for in six days the LORD made heaven and earth, and on the seventh day he rested, and was refreshed.
8675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he gave unto Moses, when he had made an end of communing with him upon mount Sinai, two tables of testimony, tables of stone, written with the finger of God.
8676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when the people saw that Moses delayed to come down out of the mount, the people gathered themselves together unto Aaron, and said unto him, Up, make us gods, which shall go before us; for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him.
8677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Aaron said unto them, Break off the golden earrings, which are in the ears of your wives, of your sons, and of your daughters, and bring them unto me.
8678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the people brake off the golden earrings which were in their ears, and brought them unto Aaron.
8679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he received them at their hand, and fashioned it with a graving tool, after he had made it a molten calf: and they said, These be thy gods, O Israel, which brought thee up out of the land of Egypt.
8680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when Aaron saw it, he built an altar before it; and Aaron made proclamation, and said, To morrow is a feast to the LORD.
8681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they rose up early on the morrow, and offered burnt offerings, and brought peace offerings; and the people sat down to eat and to drink, and rose up to play.
8682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Moses, Go, get thee down; for thy people, which thou broughtest out of the land of Egypt, have corrupted themselves:
8683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They have turned aside quickly out of the way which I commanded them: they have made them a molten calf, and have worshipped it, and have sacrificed thereunto, and said, These be thy gods, O Israel, which have brought thee up out of the land of Egypt.
8684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, I have seen this people, and, behold, it is a stiffnecked people:
8685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore let me alone, that my wrath may wax hot against them, and that I may consume them: and I will make of thee a great nation.
8686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses besought the LORD his God, and said, LORD, why doth thy wrath wax hot against thy people, which thou hast brought forth out of the land of Egypt with great power, and with a mighty hand?
8687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore should the Egyptians speak, and say, For mischief did he bring them out, to slay them in the mountains, and to consume them from the face of the earth? Turn from thy fierce wrath, and repent of this evil against thy people.
8688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Remember Abraham, Isaac, and Israel, thy servants, to whom thou swarest by thine own self, and saidst unto them, I will multiply your seed as the stars of heaven, and all this land that I have spoken of will I give unto your seed, and they shall inherit it for ever.
8689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD repented of the evil which he thought to do unto his people.
8690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses turned, and went down from the mount, and the two tables of the testimony were in his hand: the tables were written on both their sides; on the one side and on the other were they written.
8691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the tables were the work of God, and the writing was the writing of God, graven upon the tables.
8692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when Joshua heard the noise of the people as they shouted, he said unto Moses, There is a noise of war in the camp.
8693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, It is not the voice of them that shout for mastery, neither is it the voice of them that cry for being overcome: but the noise of them that sing do I hear.
8694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as soon as he came nigh unto the camp, that he saw the calf, and the dancing: and Moses' anger waxed hot, and he cast the tables out of his hands, and brake them beneath the mount.
8695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took the calf which they had made, and burnt it in the fire, and ground it to powder, and strewed it upon the water, and made the children of Israel drink of it.
8696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses said unto Aaron, What did this people unto thee, that thou hast brought so great a sin upon them?
8697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Aaron said, Let not the anger of my lord wax hot: thou knowest the people, that they are set on mischief.
8698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For they said unto me, Make us gods, which shall go before us: for as for this Moses, the man that brought us up out of the land of Egypt, we wot not what is become of him.
8699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I said unto them, Whosoever hath any gold, let them break it off. So they gave it me: then I cast it into the fire, and there came out this calf.
8700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Moses saw that the people were naked; (for Aaron had made them naked unto their shame among their enemies:)
8701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Moses stood in the gate of the camp, and said, Who is on the LORD's side? let him come unto me. And all the sons of Levi gathered themselves together unto him.
8702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said unto them, Thus saith the LORD God of Israel, Put every man his sword by his side, and go in and out from gate to gate throughout the camp, and slay every man his brother, and every man his companion, and every man his neighbor.
8703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Levi did according to the word of Moses: and there fell of the people that day about three thousand men.
8704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For Moses had said, Consecrate yourselves today to the LORD, even every man upon his son, and upon his brother; that he may bestow upon you a blessing this day.
8705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass on the morrow, that Moses said unto the people, Ye have sinned a great sin: and now I will go up unto the LORD; peradventure I shall make an atonement for your sin.
8706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses returned unto the LORD, and said, Oh, this people have sinned a great sin, and have made them gods of gold.
8707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet now, if thou wilt forgive their sin--; and if not, blot me, I pray thee, out of thy book which thou hast written.
8708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, Whosoever hath sinned against me, him will I blot out of my book.
8709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore now go, lead the people unto the place of which I have spoken unto thee: behold, mine Angel shall go before thee: nevertheless in the day when I visit I will visit their sin upon them.
8710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD plagued the people, because they made the calf, which Aaron made.
8711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, Depart, and go up hence, thou and the people which thou hast brought up out of the land of Egypt, unto the land which I sware unto Abraham, to Isaac, and to Jacob, saying, Unto thy seed will I give it:
8712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I will send an angel before thee; and I will drive out the Canaanite, the Amorite, and the Hittite, and the Perizzite, the Hivite, and the Jebusite:
8713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Unto a land flowing with milk and honey: for I will not go up in the midst of thee; for thou art a stiffnecked people: lest I consume thee in the way.
8714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when the people heard these evil tidings, they mourned: and no man did put on him his ornaments.
8715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the LORD had said unto Moses, Say unto the children of Israel, Ye are a stiffnecked people: I will come up into the midst of thee in a moment, and consume thee: therefore now put off thy ornaments from thee, that I may know what to do unto thee.
8716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel stripped themselves of their ornaments by the mount Horeb.
8717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses took the tabernacle, and pitched it without the camp, afar off from the camp, and called it the Tabernacle of the congregation. And it came to pass, that every one which sought the LORD went out unto the tabernacle of the congregation, which was without the camp.
8718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, when Moses went out unto the tabernacle, that all the people rose up, and stood every man at his tent door, and looked after Moses, until he was gone into the tabernacle.
8719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, as Moses entered into the tabernacle, the cloudy pillar descended, and stood at the door of the tabernacle, and the Lord talked with Moses.
8720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the people saw the cloudy pillar stand at the tabernacle door: and all the people rose up and worshipped, every man in his tent door.
8721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD spake unto Moses face to face, as a man speaketh unto his friend. And he turned again into the camp: but his servant Joshua, the son of Nun, a young man, departed not out of the tabernacle.
8722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto the LORD, See, thou sayest unto me, Bring up this people: and thou hast not let me know whom thou wilt send with me. Yet thou hast said, I know thee by name, and thou hast also found grace in my sight.
8723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore, I pray thee, if I have found grace in thy sight, show me now thy way, that I may know thee, that I may find grace in thy sight: and consider that this nation is thy people.
8724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said, My presence shall go with thee, and I will give thee rest.
8725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto him, If thy presence go not with me, carry us not up hence.
8726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For wherein shall it be known here that I and thy people have found grace in thy sight? is it not in that thou goest with us? so shall we be separated, I and thy people, from all the people that are upon the face of the earth.
8727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses, I will do this thing also that thou hast spoken: for thou hast found grace in my sight, and I know thee by name.
8728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, I beseech thee, show me thy glory.
8729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, I will make all my goodness pass before thee, and I will proclaim the name of the LORD before thee; and will be gracious to whom I will be gracious, and will show mercy on whom I will show mercy.
8730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said, Thou canst not see my face: for there shall no man see me, and live.
8731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said, Behold, there is a place by me, and thou shalt stand upon a rock:
8732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it shall come to pass, while my glory passeth by, that I will put thee in a cleft of the rock, and will cover thee with my hand while I pass by:
8733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I will take away mine hand, and thou shalt see my back parts: but my face shall not be seen.
8734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, Hew thee two tables of stone like unto the first: and I will write upon these tables the words that were in the first tables, which thou brakest.
8735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And be ready in the morning, and come up in the morning unto mount Sinai, and present thyself there to me in the top of the mount.
8736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And no man shall come up with thee, neither let any man be seen throughout all the mount; neither let the flocks nor herds feed before that mount.
8737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he hewed two tables of stone like unto the first; and Moses rose up early in the morning, and went up unto mount Sinai, as the LORD had commanded him, and took in his hand the two tables of stone.
8738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD descended in the cloud, and stood with him there, and proclaimed the name of the LORD.
8739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD passed by before him, and proclaimed, The LORD, The LORD God, merciful and gracious, long-suffering, and abundant in goodness and truth,
8740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Keeping mercy for thousands, forgiving iniquity and transgression and sin, and that will by no means clear the guilty; visiting the iniquity of the fathers upon the children, and upon the children's children, unto the third and to the fourth generation.
8741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses made haste, and bowed his head toward the earth, and worshipped.
8742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, If now I have found grace in thy sight, O LORD, let my LORD, I pray thee, go among us; for it is a stiffnecked people; and pardon our iniquity and our sin, and take us for thine inheritance.
8743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Behold, I make a covenant: before all thy people I will do marvels, such as have not been done in all the earth, nor in any nation: and all the people among which thou art shall see the work of the LORD: for it is a terrible thing that I will do with thee.
8744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Observe thou that which I command thee this day: behold, I drive out before thee the Amorite, and the Canaanite, and the Hittite, and the Perizzite, and the Hivite, and the Jebusite.
8745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Take heed to thyself, lest thou make a covenant with the inhabitants of the land whither thou goest, lest it be for a snare in the midst of thee:
8746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But ye shall destroy their altars, break their images, and cut down their groves:
8747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For thou shalt worship no other god: for the LORD, whose name is Jealous, is a jealous God:
8748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lest thou make a covenant with the inhabitants of the land, and they go a whoring after their gods, and do sacrifice unto their gods, and one call thee, and thou eat of his sacrifice;
8749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou take of their daughters unto thy sons, and their daughters go a whoring after their gods, and make thy sons go a whoring after their gods.
8750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt make thee no molten gods.
8751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The feast of unleavened bread shalt thou keep. Seven days thou shalt eat unleavened bread, as I commanded thee, in the time of the month Abib: for in the month Abib thou camest out from Egypt.
8752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  All that openeth the matrix is mine; and every firstling among thy cattle, whether ox or sheep, that is male.
8753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the firstling of an ass thou shalt redeem with a lamb: and if thou redeem him not, then shalt thou break his neck. All the firstborn of thy sons thou shalt redeem. And none shall appear before me empty.
8754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Six days thou shalt work, but on the seventh day thou shalt rest: in earing time and in harvest thou shalt rest.
8755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt observe the feast of weeks, of the firstfruits of wheat harvest, and the feast of ingathering at the year's end.
8756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thrice in the year shall all your men children appear before the LORD God, the God of Israel.
8757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For I will cast out the nations before thee, and enlarge thy borders: neither shall any man desire thy land, when thou shalt go up to appear before the LORD thy God thrice in the year.
8758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt not offer the blood of my sacrifice with leaven; neither shall the sacrifice of the feast of the passover be left unto the morning.
8759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The first of the firstfruits of thy land thou shalt bring unto the house of the LORD thy God. Thou shalt not seethe a kid in his mother's milk.
8760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Moses, Write thou these words: for after the tenor of these words I have made a covenant with thee and with Israel.
8761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he was there with the LORD forty days and forty nights; he did neither eat bread, nor drink water. And he wrote upon the tables the words of the covenant, the ten commandments.
8762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when Moses came down from mount Sinai with the two tables of testimony in Moses' hand, when he came down from the mount, that Moses wist not that the skin of his face shone while he talked with him.
8763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Aaron and all the children of Israel saw Moses, behold, the skin of his face shone; and they were afraid to come nigh him.
8764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses called unto them; and Aaron and all the rulers of the congregation returned unto him: and Moses talked with them.
8765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And afterward all the children of Israel came nigh: and he gave them in commandment all that the LORD had spoken with him in mount Sinai.
8766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And till Moses had done speaking with them, he put a vail on his face.
8767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But when Moses went in before the LORD to speak with him, he took the vail off, until he came out. And he came out, and spake unto the children of Israel that which he was commanded.
8768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel saw the face of Moses, that the skin of Moses' face shone: and Moses put the vail upon his face again, until he went in to speak with him.
8769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses gathered all the congregation of the children of Israel together, and said unto them, These are the words which the LORD hath commanded, that ye should do them.
8770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Six days shall work be done, but on the seventh day there shall be to you an holy day, a sabbath of rest to the LORD: whosoever doeth work therein shall be put to death.
8771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ye shall kindle no fire throughout your habitations upon the sabbath day.
8772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses spake unto all the congregation of the children of Israel, saying, This is the thing which the LORD commanded, saying,
8773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Take ye from among you an offering unto the LORD: whosoever is of a willing heart, let him bring it, an offering of the LORD; gold, and silver, and brass,
8774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And blue, and purple, and scarlet, and fine linen, and goats' hair,
8775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And rams' skins dyed red, and badgers' skins, and shittim wood,
8776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And oil for the light, and spices for anointing oil, and for the sweet incense,
8777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And onyx stones, and stones to be set for the ephod, and for the breastplate.
8778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And every wise hearted among you shall come, and make all that the LORD hath commanded;
8779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The tabernacle, his tent, and his covering, his taches, and his boards, his bars, his pillars, and his sockets,
8780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The ark, and the staves thereof, with the mercy seat, and the vail of the covering,
8781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The table, and his staves, and all his vessels, and the showbread,
8782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The candlestick also for the light, and his furniture, and his lamps, with the oil for the light,
8783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the incense altar, and his staves, and the anointing oil, and the sweet incense, and the hanging for the door at the entering in of the tabernacle,
8784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The altar of burnt offering, with his brazen grate, his staves, and all his vessels, the laver and his foot,
8785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The hangings of the court, his pillars, and their sockets, and the hanging for the door of the court,
8786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The pins of the tabernacle, and the pins of the court, and their cords,
8787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The cloths of service, to do service in the holy place, the holy garments for Aaron the priest, and the garments of his sons, to minister in the priest's office.
8788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the congregation of the children of Israel departed from the presence of Moses.
8789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they came, every one whose heart stirred him up, and every one whom his spirit made willing, and they brought the LORD's offering to the work of the tabernacle of the congregation, and for all his service, and for the holy garments.
8790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they came, both men and women, as many as were willing hearted, and brought bracelets, and earrings, and rings, and tablets, all jewels of gold: and every man that offered, offered an offering of gold unto the LORD.
8791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And every man, with whom was found blue, and purple, and scarlet, and fine linen, and goats' hair, and red skins of rams, and badgers' skins, brought them.
8792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Every one that did offer an offering of silver and brass brought the LORD's offering: and every man, with whom was found shittim wood for any work of the service, brought it.
8793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the women that were wise hearted did spin with their hands, and brought that which they had spun, both of blue, and of purple, and of scarlet, and of fine linen.
8794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the women whose heart stirred them up in wisdom spun goats' hair.
8795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the rulers brought onyx stones, and stones to be set, for the ephod, and for the breastplate;
8796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And spice, and oil for the light, and for the anointing oil, and for the sweet incense.
8797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The children of Israel brought a willing offering unto the LORD, every man and woman, whose heart made them willing to bring for all manner of work, which the LORD had commanded to be made by the hand of Moses.
8798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto the children of Israel, See, the LORD hath called by name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah;
8799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he hath filled him with the spirit of God, in wisdom, in understanding, and in knowledge, and in all manner of workmanship;
8800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And to devise curious works, to work in gold, and in silver, and in brass,
8801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in the cutting of stones, to set them, and in carving of wood, to make any manner of cunning work.
8802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he hath put in his heart that he may teach, both he, and Aholiab, the son of Ahisamach, of the tribe of Dan.
8803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Them hath he filled with wisdom of heart, to work all manner of work, of the engraver, and of the cunning workman, and of the embroiderer, in blue, and in purple, in scarlet, and in fine linen, and of the weaver, even of them that do any work, and of those that devise cunning work.
8804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then wrought Bezaleel and Aholiab, and every wise hearted man, in whom the LORD put wisdom and understanding to know how to work all manner of work for the service of the sanctuary, according to all that the LORD had commanded.
8805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses called Bezaleel and Aholiab, and every wise hearted man, in whose heart the LORD had put wisdom, even every one whose heart stirred him up to come unto the work to do it:
8806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they received of Moses all the offering, which the children of Israel had brought for the work of the service of the sanctuary, to make it withal. And they brought yet unto him free offerings every morning.
8807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And all the wise men, that wrought all the work of the sanctuary, came every man from his work which they made;
8808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they spake unto Moses, saying, The people bring much more than enough for the service of the work, which the LORD commanded to make.
8809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses gave commandment, and they caused it to be proclaimed throughout the camp, saying, Let neither man nor woman make any more work for the offering of the sanctuary. So the people were restrained from bringing.
8810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the stuff they had was sufficient for all the work to make it, and too much.
8811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And every wise hearted man among them that wrought the work of the tabernacle made ten curtains of fine twined linen, and blue, and purple, and scarlet: with cherubim of cunning work made he them.
8812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The length of one curtain was twenty and eight cubits, and the breadth of one curtain four cubits: the curtains were all of one size.
8813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he coupled the five curtains one unto another: and the other five curtains he coupled one unto another.
8814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made loops of blue on the edge of one curtain from the selvedge in the coupling: likewise he made in the uttermost side of another curtain, in the coupling of the second.
8815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Fifty loops made he in one curtain, and fifty loops made he in the edge of the curtain which was in the coupling of the second: the loops held one curtain to another.
8816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he made fifty taches of gold, and coupled the curtains one unto another with the taches: so it became one tabernacle.
8817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he made curtains of goats' hair for the tent over the tabernacle: eleven curtains he made them.
8818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The length of one curtain was thirty cubits, and four cubits was the breadth of one curtain: the eleven curtains were of one size.
8819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he coupled five curtains by themselves, and six curtains by themselves.
8820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he made fifty loops upon the uttermost edge of the curtain in the coupling, and fifty loops made he upon the edge of the curtain which coupleth the second.
8821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he made fifty taches of brass to couple the tent together, that it might be one.
8822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he made a covering for the tent of rams' skins dyed red, and a covering of badgers' skins above that.
8823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he made boards for the tabernacle of shittim wood, standing up.
8824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The length of a board was ten cubits, and the breadth of a board one cubit and a half.
8825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One board had two tenons, equally distant one from another: thus did he make for all the boards of the tabernacle.
8826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he made boards for the tabernacle; twenty boards for the south side southward:
8827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And forty sockets of silver he made under the twenty boards; two sockets under one board for his two tenons, and two sockets under another board for his two tenons.
8828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And for the other side of the tabernacle, which is toward the north corner, he made twenty boards,
8829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And their forty sockets of silver; two sockets under one board, and two sockets under another board.
8830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And for the sides of the tabernacle westward he made six boards.
8831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And two boards made he for the corners of the tabernacle in the two sides.
8832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they were coupled beneath, and coupled together at the head thereof, to one ring: thus he did to both of them in both the corners.
8833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there were eight boards; and their sockets were sixteen sockets of silver, under every board two sockets.
8834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he made bars of shittim wood; five for the boards of the one side of the tabernacle,
8835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And five bars for the boards of the other side of the tabernacle, and five bars for the boards of the tabernacle for the sides westward.
8836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made the middle bar to shoot through the boards from the one end to the other.
8837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he overlaid the boards with gold, and made their rings of gold to be places for the bars, and overlaid the bars with gold.
8838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made a vail of blue, and purple, and scarlet, and fine twined linen: with cherubim made he it of cunning work.
8839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made thereunto four pillars of shittim wood, and overlaid them with gold: their hooks were of gold; and he cast for them four sockets of silver.
8840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he made an hanging for the tabernacle door of blue, and purple, and scarlet, and fine twined linen, of needlework;
8841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the five pillars of it with their hooks: and he overlaid their chapiters and their fillets with gold: but their five sockets were of brass.
8842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Bezaleel made the ark of shittim wood: two cubits and a half was the length of it, and a cubit and a half the breadth of it, and a cubit and a half the height of it:
8843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he overlaid it with pure gold within and without, and made a crown of gold to it round about.
8844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he cast for it four rings of gold, to be set by the four corners of it; even two rings upon the one side of it, and two rings upon the other side of it.
8845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he made staves of shittim wood, and overlaid them with gold.
8846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he put the staves into the rings by the sides of the ark, to bear the ark.
8847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he made the mercy seat of pure gold: two cubits and a half was the length thereof, and one cubit and a half the breadth thereof.
8848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he made two cherubim of gold, beaten out of one piece made he them, on the two ends of the mercy seat;
8849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One cherub on the end on this side, and another cherub on the other end on that side: out of the mercy seat made he the cherubim on the two ends thereof.
8850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the cherubim spread out their wings on high, and covered with their wings over the mercy seat, with their faces one to another; even to the mercy seatward were the faces of the cherubim.
8851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made the table of shittim wood: two cubits was the length thereof, and a cubit the breadth thereof, and a cubit and a half the height thereof:
8852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he overlaid it with pure gold, and made thereunto a crown of gold round about.
8853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also he made thereunto a border of an handbreadth round about; and made a crown of gold for the border thereof round about.
8854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he cast for it four rings of gold, and put the rings upon the four corners that were in the four feet thereof.
8855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Over against the border were the rings, the places for the staves to bear the table.
8856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made the staves of shittim wood, and overlaid them with gold, to bear the table.
8857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he made the vessels which were upon the table, his dishes, and his spoons, and his bowls, and his covers to cover withal, of pure gold.
8858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made the candlestick of pure gold: of beaten work made he the candlestick; his shaft, and his branch, his bowls, his knops, and his flowers, were of the same:
8859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And six branches going out of the sides thereof; three branches of the candlestick out of the one side thereof, and three branches of the candlestick out of the other side thereof:
8860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Three bowls made after the fashion of almonds in one branch, a knop and a flower; and three bowls made like almonds in another branch, a knop and a flower: so throughout the six branches going out of the candlestick.
8861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the candlestick were four bowls made like almonds, his knops, and his flowers:
8862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And a knop under two branches of the same, and a knop under two branches of the same, and a knop under two branches of the same, according to the six branches going out of it.
8863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Their knops and their branches were of the same: all of it was one beaten work of pure gold.
8864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made his seven lamps, and his snuffers, and his snuffdishes, of pure gold.
8865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of a talent of pure gold made he it, and all the vessels thereof.
8866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made the incense altar of shittim wood: the length of it was a cubit, and the breadth of it a cubit; it was foursquare; and two cubits was the height of it; the horns thereof were of the same.
8867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he overlaid it with pure gold, both the top of it, and the sides thereof round about, and the horns of it: also he made unto it a crown of gold round about.
8868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he made two rings of gold for it under the crown thereof, by the two corners of it, upon the two sides thereof, to be places for the staves to bear it withal.
8869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he made the staves of shittim wood, and overlaid them with gold.
8870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he made the holy anointing oil, and the pure incense of sweet spices, according to the work of the apothecary.
8871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he made the altar of burnt offering of shittim wood: five cubits was the length thereof, and five cubits the breadth thereof; it was foursquare; and three cubits the height thereof.
8872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he made the horns thereof on the four corners of it; the horns thereof were of the same: and he overlaid it with brass.
8873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he made all the vessels of the altar, the pots, and the shovels, and the basins, and the fleshhooks, and the firepans: all the vessels thereof made he of brass.
8874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he made for the altar a brazen grate of network under the compass thereof beneath unto the midst of it.
8875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he cast four rings for the four ends of the grate of brass, to be places for the staves.
8876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made the staves of shittim wood, and overlaid them with brass.
8877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he put the staves into the rings on the sides of the altar, to bear it withal; he made the altar hollow with boards.
8878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he made the laver of brass, and the foot of it of brass, of the lookingglasses of the women assembling, which assembled at the door of the tabernacle of the congregation.
8879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he made the court: on the south side southward the hangings of the court were of fine twined linen, an hundred cubits:
8880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Their pillars were twenty, and their brazen sockets twenty; the hooks of the pillars and their fillets were of silver.
8881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And for the north side the hangings were an hundred cubits, their pillars were twenty, and their sockets of brass twenty; the hooks of the pillars and their fillets of silver.
8882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And for the west side were hangings of fifty cubits, their pillars ten, and their sockets ten; the hooks of the pillars and their fillets of silver.
8883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And for the east side eastward fifty cubits.
8884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The hangings of the one side of the gate were fifteen cubits; their pillars three, and their sockets three.
8885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And for the other side of the court gate, on this hand and that hand, were hangings of fifteen cubits; their pillars three, and their sockets three.
8886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           All the hangings of the court round about were of fine twined linen.
8887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sockets for the pillars were of brass; the hooks of the pillars and their fillets of silver; and the overlaying of their chapiters of silver; and all the pillars of the court were filleted with silver.
8888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the hanging for the gate of the court was needlework, of blue, and purple, and scarlet, and fine twined linen: and twenty cubits was the length, and the height in the breadth was five cubits, answerable to the hangings of the court.
8889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And their pillars were four, and their sockets of brass four; their hooks of silver, and the overlaying of their chapiters and their fillets of silver.
8890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And all the pins of the tabernacle, and of the court round about, were of brass.
8891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the sum of the tabernacle, even of the tabernacle of testimony, as it was counted, according to the commandment of Moses, for the service of the Levites, by the hand of Ithamar, son to Aaron the priest.
8892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Bezaleel the son Uri, the son of Hur, of the tribe of Judah, made all that the LORD commanded Moses.
8893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And with him was Aholiab, son of Ahisamach, of the tribe of Dan, an engraver, and a cunning workman, and an embroiderer in blue, and in purple, and in scarlet, and fine linen.
8894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All the gold that was occupied for the work in all the work of the holy place, even the gold of the offering, was twenty and nine talents, and seven hundred and thirty shekels, after the shekel of the sanctuary.
8895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the silver of them that were numbered of the congregation was an hundred talents, and a thousand seven hundred and threescore and fifteen shekels, after the shekel of the sanctuary:
8896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A bekah for every man, that is, half a shekel, after the shekel of the sanctuary, for every one that went to be numbered, from twenty years old and upward, for six hundred thousand and three thousand and five hundred and fifty men.
8897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And of the hundred talents of silver were cast the sockets of the sanctuary, and the sockets of the vail; an hundred sockets of the hundred talents, a talent for a socket.
8898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of the thousand seven hundred seventy and five shekels he made hooks for the pillars, and overlaid their chapiters, and filleted them.
8899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the brass of the offering was seventy talents, and two thousand and four hundred shekels.
8900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And therewith he made the sockets to the door of the tabernacle of the congregation, and the brazen altar, and the brazen grate for it, and all the vessels of the altar,
8901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sockets of the court round about, and the sockets of the court gate, and all the pins of the tabernacle, and all the pins of the court round about.
8902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of the blue, and purple, and scarlet, they made cloths of service, to do service in the holy place, and made the holy garments for Aaron; as the LORD commanded Moses.
8903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he made the ephod of gold, blue, and purple, and scarlet, and fine twined linen.
8904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they did beat the gold into thin plates, and cut it into wires, to work it in the blue, and in the purple, and in the scarlet, and in the fine linen, with cunning work.
8905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They made shoulderpieces for it, to couple it together: by the two edges was it coupled together.
8906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the curious girdle of his ephod, that was upon it, was of the same, according to the work thereof; of gold, blue, and purple, and scarlet, and fine twined linen; as the LORD commanded Moses.
8907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they wrought onyx stones inclosed in ouches of gold, graven, as signets are graven, with the names of the children of Israel.
8908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he put them on the shoulders of the ephod, that they should be stones for a memorial to the children of Israel; as the LORD commanded Moses.
8909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made the breastplate of cunning work, like the work of the ephod; of gold, blue, and purple, and scarlet, and fine twined linen.
8910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It was foursquare; they made the breastplate double: a span was the length thereof, and a span the breadth thereof, being doubled.
8911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they set in it four rows of stones: the first row was a sardius, a topaz, and a carbuncle: this was the first row.
8912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the second row, an emerald, a sapphire, and a diamond.
8913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the third row, a ligure, an agate, and an amethyst.
8914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the fourth row, a beryl, an onyx, and a jasper: they were inclosed in ouches of gold in their inclosings.
8915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the stones were according to the names of the children of Israel, twelve, according to their names, like the engravings of a signet, every one with his name, according to the twelve tribes.
8916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they made upon the breastplate chains at the ends, of wreathed work of pure gold.
8917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they made two ouches of gold, and two gold rings; and put the two rings in the two ends of the breastplate.
8918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they put the two wreathed chains of gold in the two rings on the ends of the breastplate.
8919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the two ends of the two wreathed chains they fastened in the two ouches, and put them on the shoulderpieces of the ephod, before it.
8920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they made two rings of gold, and put them on the two ends of the breastplate, upon the border of it, which was on the side of the ephod inward.
8921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they made two other golden rings, and put them on the two sides of the ephod underneath, toward the forepart of it, over against the other coupling thereof, above the curious girdle of the ephod.
8922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they did bind the breastplate by his rings unto the rings of the ephod with a lace of blue, that it might be above the curious girdle of the ephod, and that the breastplate might not be loosed from the ephod; as the LORD commanded Moses.
8923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he made the robe of the ephod of woven work, all of blue.
8924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there was an hole in the midst of the robe, as the hole of an habergeon, with a band round about the hole, that it should not rend.
8925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they made upon the hems of the robe pomegranates of blue, and purple, and scarlet, and twined linen.
8926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they made bells of pure gold, and put the bells between the pomegranates upon the hem of the robe, round about between the pomegranates;
8927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A bell and a pomegranate, a bell and a pomegranate, round about the hem of the robe to minister in; as the LORD commanded Moses.
8928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they made coats of fine linen of woven work for Aaron, and for his sons,
8929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And a mitre of fine linen, and goodly bonnets of fine linen, and linen breeches of fine twined linen,
8930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And a girdle of fine twined linen, and blue, and purple, and scarlet, of needlework; as the LORD commanded Moses.
8931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they made the plate of the holy crown of pure gold, and wrote upon it a writing, like to the engravings of a signet, HOLINESS TO THE LORD.
8932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they tied unto it a lace of blue, to fasten it on high upon the mitre; as the LORD commanded Moses.
8933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thus was all the work of the tabernacle of the tent of the congregation finished: and the children of Israel did according to all that the LORD commanded Moses, so did they.
8934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they brought the tabernacle unto Moses, the tent, and all his furniture, his taches, his boards, his bars, and his pillars, and his sockets,
8935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the covering of rams' skins dyed red, and the covering of badgers' skins, and the vail of the covering,
8936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ark of the testimony, and the staves thereof, and the mercy seat,
8937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The table, and all the vessels thereof, and the showbread,
8938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The pure candlestick, with the lamps thereof, even with the lamps to be set in order, and all the vessels thereof, and the oil for light,
8939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the golden altar, and the anointing oil, and the sweet incense, and the hanging for the tabernacle door,
8940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The brazen altar, and his grate of brass, his staves, and all his vessels, the laver and his foot,
8941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The hangings of the court, his pillars, and his sockets, and the hanging for the court gate, his cords, and his pins, and all the vessels of the service of the tabernacle, for the tent of the congregation,
8942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The cloths of service to do service in the holy place, and the holy garments for Aaron the priest, and his sons' garments, to minister in the priest's office.
8943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   According to all that the LORD commanded Moses, so the children of Israel made all the work.
8944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses did look upon all the work, and, behold, they had done it as the LORD had commanded, even so had they done it: and Moses blessed them.
8945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
8946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On the first day of the first month shalt thou set up the tabernacle of the tent of the congregation.
8947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt put therein the ark of the testimony, and cover the ark with the vail.
8948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt bring in the table, and set in order the things that are to be set in order upon it; and thou shalt bring in the candlestick, and light the lamps thereof.
8949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt set the altar of gold for the incense before the ark of the testimony, and put the hanging of the door to the tabernacle.
8950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt set the altar of the burnt offering before the door of the tabernacle of the tent of the congregation.
8951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt set the laver between the tent of the congregation and the altar, and shalt put water therein.
8952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt set up the court round about, and hang up the hanging at the court gate.
8953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt take the anointing oil, and anoint the tabernacle, and all that is therein, and shalt hallow it, and all the vessels thereof: and it shall be holy.
8954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt anoint the altar of the burnt offering, and all his vessels, and sanctify the altar: and it shall be an altar most holy.
8955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt anoint the laver and his foot, and sanctify it.
8956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt bring Aaron and his sons unto the door of the tabernacle of the congregation, and wash them with water.
8957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt put upon Aaron the holy garments, and anoint him, and sanctify him; that he may minister unto me in the priest's office.
8958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt bring his sons, and clothe them with coats:
8959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt anoint them, as thou didst anoint their father, that they may minister unto me in the priest's office: for their anointing shall surely be an everlasting priesthood throughout their generations.
8960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thus did Moses: according to all that the LORD commanded him, so did he.
8961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass in the first month in the second year, on the first day of the month, that the tabernacle was reared up.
8962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses reared up the tabernacle, and fastened his sockets, and set up the boards thereof, and put in the bars thereof, and reared up his pillars.
8963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he spread abroad the tent over the tabernacle, and put the covering of the tent above upon it; as the LORD commanded Moses.
8964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he took and put the testimony into the ark, and set the staves on the ark, and put the mercy seat above upon the ark:
8965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he brought the ark into the tabernacle, and set up the vail of the covering, and covered the ark of the testimony; as the LORD commanded Moses.
8966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he put the table in the tent of the congregation, upon the side of the tabernacle northward, without the vail.
8967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he set the bread in order upon it before the LORD; as the LORD had commanded Moses.
8968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he put the candlestick in the tent of the congregation, over against the table, on the side of the tabernacle southward.
8969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he lighted the lamps before the LORD; as the LORD commanded Moses.
8970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he put the golden altar in the tent of the congregation before the vail:
8971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he burnt sweet incense thereon; as the LORD commanded Moses.
8972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he set up the hanging at the door of the tabernacle.
8973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he put the altar of burnt offering by the door of the tabernacle of the tent of the congregation, and offered upon it the burnt offering and the meat offering; as the LORD commanded Moses.
8974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he set the laver between the tent of the congregation and the altar, and put water there, to wash withal.
8975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses and Aaron and his sons washed their hands and their feet thereat:
8976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When they went into the tent of the congregation, and when they came near unto the altar, they washed; as the LORD commanded Moses.
8977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he reared up the court round about the tabernacle and the altar, and set up the hanging of the court gate. So Moses finished the work.
8978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then a cloud covered the tent of the congregation, and the glory of the LORD filled the tabernacle.
8979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses was not able to enter into the tent of the congregation, because the cloud abode thereon, and the glory of the LORD filled the tabernacle.
8980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when the cloud was taken up from over the tabernacle, the children of Israel went onward in all their journeys:
8981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if the cloud were not taken up, then they journeyed not till the day that it was taken up.
8982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For the cloud of the LORD was upon the tabernacle by day, and fire was on it by night, in the sight of all the house of Israel, throughout all their journeys.
8983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD called unto Moses, and spake unto him out of the tabernacle of the congregation, saying,
8984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Speak unto the children of Israel, and say unto them, If any man of you bring an offering unto the LORD, ye shall bring your offering of the cattle, even of the herd, and of the flock.
8985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If his offering be a burnt sacrifice of the herd, let him offer a male without blemish: he shall offer it of his own voluntary will at the door of the tabernacle of the congregation before the LORD.
8986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall put his hand upon the head of the burnt offering; and it shall be accepted for him to make atonement for him.
8987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall kill the bullock before the LORD: and the priests, Aaron's sons, shall bring the blood, and sprinkle the blood round about upon the altar that is by the door of the tabernacle of the congregation.
8988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall flay the burnt offering, and cut it into his pieces.
8989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Aaron the priest shall put fire upon the altar, and lay the wood in order upon the fire:
8990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priests, Aaron's sons, shall lay the parts, the head, and the fat, in order upon the wood that is on the fire which is upon the altar:
8991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But his inwards and his legs shall he wash in water: and the priest shall burn all on the altar, to be a burnt sacrifice, an offering made by fire, of a sweet savor unto the LORD.
8992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if his offering be of the flocks, namely, of the sheep, or of the goats, for a burnt sacrifice; he shall bring it a male without blemish.
8993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall kill it on the side of the altar northward before the LORD: and the priests, Aaron's sons, shall sprinkle his blood round about upon the altar.
8994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he shall cut it into his pieces, with his head and his fat: and the priest shall lay them in order on the wood that is on the fire which is upon the altar:
8995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But he shall wash the inwards and the legs with water: and the priest shall bring it all, and burn it upon the altar: it is a burnt sacrifice, an offering made by fire, of a sweet savor unto the LORD.
8996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if the burnt sacrifice for his offering to the LORD be of fowls, then he shall bring his offering of turtledoves, or of young pigeons.
8997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the priest shall bring it unto the altar, and wring off his head, and burn it on the altar; and the blood thereof shall be wrung out at the side of the altar:
8998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he shall pluck away his crop with his feathers, and cast it beside the altar on the east part, by the place of the ashes:
8999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he shall cleave it with the wings thereof, but shall not divide it asunder: and the priest shall burn it upon the altar, upon the wood that is upon the fire: it is a burnt sacrifice, an offering made by fire, of a sweet savor unto the LORD.
9000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when any will offer a meat offering unto the LORD, his offering shall be of fine flour; and he shall pour oil upon it, and put frankincense thereon:
9001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall bring it to Aaron's sons the priests: and he shall take thereout his handful of the flour thereof, and of the oil thereof, with all the frankincense thereof; and the priest shall burn the memorial of it upon the altar, to be an offering made by fire, of a sweet savor unto the LORD:
9002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the remnant of the meat offering shall be Aaron's and his sons': it is a thing most holy of the offerings of the LORD made by fire.
9003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if thou bring an oblation of a meat offering baked in the oven, it shall be unleavened cakes of fine flour mingled with oil, or unleavened wafers anointed with oil.
9004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if thy oblation be a meat offering baked in a pan, it shall be of fine flour unleavened, mingled with oil.
9005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt part it in pieces, and pour oil thereon: it is a meat offering.
9006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if thy oblation be a meat offering baked in the frying pan, it shall be made of fine flour with oil.
9007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt bring the meat offering that is made of these things unto the LORD: and when it is presented unto the priest, he shall bring it unto the altar.
9008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the priest shall take from the meat offering a memorial thereof, and shall burn it upon the altar: it is an offering made by fire, of a sweet savor unto the LORD.
9009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And that which is left of the meat offering shall be Aaron's and his sons': it is a thing most holy of the offerings of the LORD made by fire.
9010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         No meat offering, which ye shall bring unto the LORD, shall be made with leaven: for ye shall burn no leaven, nor any honey, in any offering of the LORD made by fire.
9011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the oblation of the firstfruits, ye shall offer them unto the LORD: but they shall not be burnt on the altar for a sweet savor.
9012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And every oblation of thy meat offering shalt thou season with salt; neither shalt thou suffer the salt of the covenant of thy God to be lacking from thy meat offering: with all thine offerings thou shalt offer salt.
9013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if thou offer a meat offering of thy firstfruits unto the LORD, thou shalt offer for the meat offering of thy firstfruits green ears of corn dried by the fire, even corn beaten out of full ears.
9014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt put oil upon it, and lay frankincense thereon: it is a meat offering.
9015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the priest shall burn the memorial of it, part of the beaten corn thereof, and part of the oil thereof, with all the frankincense thereof: it is an offering made by fire unto the LORD.
9016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if his oblation be a sacrifice of peace offering, if he offer it of the herd; whether it be a male or female, he shall offer it without blemish before the LORD.
9017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall lay his hand upon the head of his offering, and kill it at the door of the tabernacle of the congregation: and Aaron's sons the priests shall sprinkle the blood upon the altar round about.
9018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall offer of the sacrifice of the peace offering an offering made by fire unto the LORD; the fat that covereth the inwards, and all the fat that is upon the inwards,
9019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the two kidneys, and the fat that is on them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away.
9020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Aaron's sons shall burn it on the altar upon the burnt sacrifice, which is upon the wood that is on the fire: it is an offering made by fire, of a sweet savor unto the LORD.
9021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if his offering for a sacrifice of peace offering unto the LORD be of the flock; male or female, he shall offer it without blemish.
9022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If he offer a lamb for his offering, then shall he offer it before the LORD.
9023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he shall lay his hand upon the head of his offering, and kill it before the tabernacle of the congregation: and Aaron's sons shall sprinkle the blood thereof round about upon the altar.
9024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall offer of the sacrifice of the peace offering an offering made by fire unto the LORD; the fat thereof, and the whole rump, it shall he take off hard by the backbone; and the fat that covereth the inwards, and all the fat that is upon the inwards,
9025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away.
9026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall burn it upon the altar: it is the food of the offering made by fire unto the LORD.
9027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if his offering be a goat, then he shall offer it before the LORD.
9028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he shall lay his hand upon the head of it, and kill it before the tabernacle of the congregation: and the sons of Aaron shall sprinkle the blood thereof upon the altar round about.
9029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall offer thereof his offering, even an offering made by fire unto the LORD; the fat that covereth the inwards, and all the fat that is upon the inwards,
9030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away.
9031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall burn them upon the altar: it is the food of the offering made by fire for a sweet savor: all the fat is the LORD's.
9032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It shall be a perpetual statute for your generations throughout all your dwellings, that ye eat neither fat nor blood.
9033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Speak unto the children of Israel, saying, If a soul shall sin through ignorance against any of the commandments of the LORD concerning things which ought not to be done, and shall do against any of them:
9035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If the priest that is anointed do sin according to the sin of the people; then let him bring for his sin, which he hath sinned, a young bullock without blemish unto the LORD for a sin offering.
9036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall bring the bullock unto the door of the tabernacle of the congregation before the LORD; and shall lay his hand upon the bullock's head, and kill the bullock before the LORD.
9037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the priest that is anointed shall take of the bullock's blood, and bring it to the tabernacle of the congregation:
9038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall dip his finger in the blood, and sprinkle of the blood seven times before the LORD, before the vail of the sanctuary.
9039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the priest shall put some of the blood upon the horns of the altar of sweet incense before the LORD, which is in the tabernacle of the congregation; and shall pour all the blood of the bullock at the bottom of the altar of the burnt offering, which is at the door of the tabernacle of the congregation.
9040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall take off from it all the fat of the bullock for the sin offering; the fat that covereth the inwards, and all the fat that is upon the inwards,
9041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the two kidneys, and the fat that is upon them, which is by the flanks, and the caul above the liver, with the kidneys, it shall he take away,
9042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As it was taken off from the bullock of the sacrifice of peace offerings: and the priest shall burn them upon the altar of the burnt offering.
9043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the skin of the bullock, and all his flesh, with his head, and with his legs, and his inwards, and his dung,
9044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Even the whole bullock shall he carry forth without the camp unto a clean place, where the ashes are poured out, and burn him on the wood with fire: where the ashes are poured out shall he be burnt.
9045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if the whole congregation of Israel sin through ignorance, and the thing be hid from the eyes of the assembly, and they have done somewhat against any of the commandments of the LORD concerning things which should not be done, and are guilty;
9046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When the sin, which they have sinned against it, is known, then the congregation shall offer a young bullock for the sin, and bring him before the tabernacle of the congregation.
9047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the elders of the congregation shall lay their hands upon the head of the bullock before the LORD: and the bullock shall be killed before the LORD.
9048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the priest that is anointed shall bring of the bullock's blood to the tabernacle of the congregation:
9049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the priest shall dip his finger in some of the blood, and sprinkle it seven times before the LORD, even before the vail.
9050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he shall put some of the blood upon the horns of the altar which is before the LORD, that is in the tabernacle of the congregation, and shall pour out all the blood at the bottom of the altar of the burnt offering, which is at the door of the tabernacle of the congregation.
9051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he shall take all his fat from him, and burn it upon the altar.
9052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall do with the bullock as he did with the bullock for a sin offering, so shall he do with this: and the priest shall make an atonement for them, and it shall be forgiven them.
9053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall carry forth the bullock without the camp, and burn him as he burned the first bullock: it is a sin offering for the congregation.
9054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When a ruler hath sinned, and done somewhat through ignorance against any of the commandments of the LORD his God concerning things which should not be done, and is guilty;
9055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Or if his sin, wherein he hath sinned, come to his knowledge; he shall bring his offering, a kid of the goats, a male without blemish:
9056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall lay his hand upon the head of the goat, and kill it in the place where they kill the burnt offering before the LORD: it is a sin offering.
9057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the priest shall take of the blood of the sin offering with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out his blood at the bottom of the altar of burnt offering.
9058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall burn all his fat upon the altar, as the fat of the sacrifice of peace offerings: and the priest shall make an atonement for him as concerning his sin, and it shall be forgiven him.
9059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if any one of the common people sin through ignorance, while he doeth somewhat against any of the commandments of the LORD concerning things which ought not to be done, and be guilty;
9060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or if his sin, which he hath sinned, come to his knowledge: then he shall bring his offering, a kid of the goats, a female without blemish, for his sin which he hath sinned.
9061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall lay his hand upon the head of the sin offering, and slay the sin offering in the place of the burnt offering.
9062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall take of the blood thereof with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out all the blood thereof at the bottom of the altar.
9063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall take away all the fat thereof, as the fat is taken away from off the sacrifice of peace offerings; and the priest shall burn it upon the altar for a sweet savor unto the LORD; and the priest shall make an atonement for him, and it shall be forgiven him.
9064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if he bring a lamb for a sin offering, he shall bring it a female without blemish.
9065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall lay his hand upon the head of the sin offering, and slay it for a sin offering in the place where they kill the burnt offering.
9066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall take of the blood of the sin offering with his finger, and put it upon the horns of the altar of burnt offering, and shall pour out all the blood thereof at the bottom of the altar:
9067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall take away all the fat thereof, as the fat of the lamb is taken away from the sacrifice of the peace offerings; and the priest shall burn them upon the altar, according to the offerings made by fire unto the LORD: and the priest shall make an atonement for his sin that he hath committed, and it shall be forgiven him.
9068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if a soul sin, and hear the voice of swearing, and is a witness, whether he hath seen or known of it; if he do not utter it, then he shall bear his iniquity.
9069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or if a soul touch any unclean thing, whether it be a carcass of an unclean beast, or a carcass of unclean cattle, or the carcass of unclean creeping things, and if it be hidden from him; he also shall be unclean, and guilty.
9070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or if he touch the uncleanness of man, whatsoever uncleanness it be that a man shall be defiled withal, and it be hid from him; when he knoweth of it, then he shall be guilty.
9071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Or if a soul swear, pronouncing with his lips to do evil, or to do good, whatsoever it be that a man shall pronounce with an oath, and it be hid from him; when he knoweth of it, then he shall be guilty in one of these.
9072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it shall be, when he shall be guilty in one of these things, that he shall confess that he hath sinned in that thing:
9073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he shall bring his trespass offering unto the LORD for his sin which he hath sinned, a female from the flock, a lamb or a kid of the goats, for a sin offering; and the priest shall make an atonement for him concerning his sin.
9074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if he be not able to bring a lamb, then he shall bring for his trespass, which he hath committed, two turtledoves, or two young pigeons, unto the LORD; one for a sin offering, and the other for a burnt offering.
9075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall bring them unto the priest, who shall offer that which is for the sin offering first, and wring off his head from his neck, but shall not divide it asunder:
9076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall sprinkle of the blood of the sin offering upon the side of the altar; and the rest of the blood shall be wrung out at the bottom of the altar: it is a sin offering.
9077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall offer the second for a burnt offering, according to the manner: and the priest shall make an atonement for him for his sin which he hath sinned, and it shall be forgiven him.
9078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if he be not able to bring two turtledoves, or two young pigeons, then he that sinned shall bring for his offering the tenth part of an ephah of fine flour for a sin offering; he shall put no oil upon it, neither shall he put any frankincense thereon: for it is a sin offering.
9079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then shall he bring it to the priest, and the priest shall take his handful of it, even a memorial thereof, and burn it on the altar, according to the offerings made by fire unto the LORD: it is a sin offering.
9080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the priest shall make an atonement for him as touching his sin that he hath sinned in one of these, and it shall be forgiven him: and the remnant shall be the priest's, as a meat offering.
9081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If a soul commit a trespass, and sin through ignorance, in the holy things of the LORD; then he shall bring for his trespass unto the LORD a ram without blemish out of the flocks, with thy estimation by shekels of silver, after the shekel of the sanctuary, for a trespass offering.
9083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall make amends for the harm that he hath done in the holy thing, and shall add the fifth part thereto, and give it unto the priest: and the priest shall make an atonement for him with the ram of the trespass offering, and it shall be forgiven him.
9084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a soul sin, and commit any of these things which are forbidden to be done by the commandments of the LORD; though he wist it not, yet is he guilty, and shall bear his iniquity.
9085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he shall bring a ram without blemish out of the flock, with thy estimation, for a trespass offering, unto the priest: and the priest shall make an atonement for him concerning his ignorance wherein he erred and wist it not, and it shall be forgiven him.
9086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      It is a trespass offering: he hath certainly trespassed against the LORD.
9087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If a soul sin, and commit a trespass against the LORD, and lie unto his neighbor in that which was delivered him to keep, or in fellowship, or in a thing taken away by violence, or hath deceived his neighbor;
9089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Or have found that which was lost, and lieth concerning it, and sweareth falsely; in any of all these that a man doeth, sinning therein:
9090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then it shall be, because he hath sinned, and is guilty, that he shall restore that which he took violently away, or the thing which he hath deceitfully gotten, or that which was delivered him to keep, or the lost thing which he found,
9091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Or all that about which he hath sworn falsely; he shall even restore it in the principal, and shall add the fifth part more thereto, and give it unto him to whom it appertaineth, in the day of his trespass offering.
9092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall bring his trespass offering unto the LORD, a ram without blemish out of the flock, with thy estimation, for a trespass offering, unto the priest:
9093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priest shall make an atonement for him before the LORD: and it shall be forgiven him for any thing of all that he hath done in trespassing therein.
9094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Command Aaron and his sons, saying, This is the law of the burnt offering: It is the burnt offering, because of the burning upon the altar all night unto the morning, and the fire of the altar shall be burning in it.
9096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the priest shall put on his linen garment, and his linen breeches shall he put upon his flesh, and take up the ashes which the fire hath consumed with the burnt offering on the altar, and he shall put them beside the altar.
9097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall put off his garments, and put on other garments, and carry forth the ashes without the camp unto a clean place.
9098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the fire upon the altar shall be burning in it; it shall not be put out: and the priest shall burn wood on it every morning, and lay the burnt offering in order upon it; and he shall burn thereon the fat of the peace offerings.
9099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The fire shall ever be burning upon the altar; it shall never go out.
9100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And this is the law of the meat offering: the sons of Aaron shall offer it before the LORD, before the altar.
9101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he shall take of it his handful, of the flour of the meat offering, and of the oil thereof, and all the frankincense which is upon the meat offering, and shall burn it upon the altar for a sweet savor, even the memorial of it, unto the LORD.
9102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the remainder thereof shall Aaron and his sons eat: with unleavened bread shall it be eaten in the holy place; in the court of the tabernacle of the congregation they shall eat it.
9103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It shall not be baked with leaven. I have given it unto them for their portion of my offerings made by fire; it is most holy, as is the sin offering, and as the trespass offering.
9104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All the males among the children of Aaron shall eat of it. It shall be a statute for ever in your generations concerning the offerings of the LORD made by fire: every one that toucheth them shall be holy.
9105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is the offering of Aaron and of his sons, which they shall offer unto the LORD in the day when he is anointed; the tenth part of an ephah of fine flour for a meat offering perpetual, half of it in the morning, and half thereof at night.
9107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In a pan it shall be made with oil; and when it is baked, thou shalt bring it in: and the baked pieces of the meat offering shalt thou offer for a sweet savor unto the LORD.
9108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest of his sons that is anointed in his stead shall offer it: it is a statute for ever unto the LORD; it shall be wholly burnt.
9109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For every meat offering for the priest shall be wholly burnt: it shall not be eaten.
9110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Speak unto Aaron and to his sons, saying, This is the law of the sin offering: In the place where the burnt offering is killed shall the sin offering be killed before the LORD: it is most holy.
9112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The priest that offereth it for sin shall eat it: in the holy place shall it be eaten, in the court of the tabernacle of the congregation.
9113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whatsoever shall touch the flesh thereof shall be holy: and when there is sprinkled of the blood thereof upon any garment, thou shalt wash that whereon it was sprinkled in the holy place.
9114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But the earthen vessel wherein it is sodden shall be broken: and if it be sodden in a brazen pot, it shall be both scoured, and rinsed in water.
9115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All the males among the priests shall eat thereof: it is most holy.
9116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And no sin offering, whereof any of the blood is brought into the tabernacle of the congregation to reconcile withal in the holy place, shall be eaten: it shall be burnt in the fire.
9117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Likewise this is the law of the trespass offering: it is most holy.
9118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the place where they kill the burnt offering shall they kill the trespass offering: and the blood thereof shall he sprinkle round about upon the altar.
9119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall offer of it all the fat thereof; the rump, and the fat that covereth the inwards,
9120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the two kidneys, and the fat that is on them, which is by the flanks, and the caul that is above the liver, with the kidneys, it shall he take away:
9121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall burn them upon the altar for an offering made by fire unto the LORD: it is a trespass offering.
9122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Every male among the priests shall eat thereof: it shall be eaten in the holy place: it is most holy.
9123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As the sin offering is, so is the trespass offering: there is one law for them: the priest that maketh atonement therewith shall have it.
9124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the priest that offereth any man's burnt offering, even the priest shall have to himself the skin of the burnt offering which he hath offered.
9125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the meat offering that is baked in the oven, and all that is dressed in the frying pan, and in the pan, shall be the priest's that offereth it.
9126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And every meat offering, mingled with oil, and dry, shall all the sons of Aaron have, one as much as another.
9127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And this is the law of the sacrifice of peace offerings, which he shall offer unto the LORD.
9128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If he offer it for a thanksgiving, then he shall offer with the sacrifice of thanksgiving unleavened cakes mingled with oil, and unleavened wafers anointed with oil, and cakes mingled with oil, of fine flour, fried.
9129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Besides the cakes, he shall offer for his offering leavened bread with the sacrifice of thanksgiving of his peace offerings.
9130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of it he shall offer one out of the whole oblation for an heave offering unto the LORD, and it shall be the priest's that sprinkleth the blood of the peace offerings.
9131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the flesh of the sacrifice of his peace offerings for thanksgiving shall be eaten the same day that it is offered; he shall not leave any of it until the morning.
9132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But if the sacrifice of his offering be a vow, or a voluntary offering, it shall be eaten the same day that he offereth his sacrifice: and on the morrow also the remainder of it shall be eaten:
9133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the remainder of the flesh of the sacrifice on the third day shall be burnt with fire.
9134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if any of the flesh of the sacrifice of his peace offerings be eaten at all on the third day, it shall not be accepted, neither shall it be imputed unto him that offereth it: it shall be an abomination, and the soul that eateth of it shall bear his iniquity.
9135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the flesh that toucheth any unclean thing shall not be eaten; it shall be burnt with fire: and as for the flesh, all that be clean shall eat thereof.
9136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the soul that eateth of the flesh of the sacrifice of peace offerings, that pertain unto the LORD, having his uncleanness upon him, even that soul shall be cut off from his people.
9137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover the soul that shall touch any unclean thing, as the uncleanness of man, or any unclean beast, or any abominable unclean thing, and eat of the flesh of the sacrifice of peace offerings, which pertain unto the LORD, even that soul shall be cut off from his people.
9138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Speak unto the children of Israel, saying, Ye shall eat no manner of fat, of ox, or of sheep, or of goat.
9140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the fat of the beast that dieth of itself, and the fat of that which is torn with beasts, may be used in any other use: but ye shall in no wise eat of it.
9141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For whosoever eateth the fat of the beast, of which men offer an offering made by fire unto the LORD, even the soul that eateth it shall be cut off from his people.
9142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moreover ye shall eat no manner of blood, whether it be of fowl or of beast, in any of your dwellings.
9143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whatsoever soul it be that eateth any manner of blood, even that soul shall be cut off from his people.
9144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak unto the children of Israel, saying, He that offereth the sacrifice of his peace offerings unto the LORD shall bring his oblation unto the LORD of the sacrifice of his peace offerings.
9146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                His own hands shall bring the offerings of the LORD made by fire, the fat with the breast, it shall he bring, that the breast may be waved for a wave offering before the LORD.
9147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the priest shall burn the fat upon the altar: but the breast shall be Aaron's and his sons'.
9148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the right shoulder shall ye give unto the priest for an heave offering of the sacrifices of your peace offerings.
9149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He among the sons of Aaron, that offereth the blood of the peace offerings, and the fat, shall have the right shoulder for his part.
9150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the wave breast and the heave shoulder have I taken of the children of Israel from off the sacrifices of their peace offerings, and have given them unto Aaron the priest and unto his sons by a statute for ever from among the children of Israel.
9151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is the portion of the anointing of Aaron, and of the anointing of his sons, out of the offerings of the LORD made by fire, in the day when he presented them to minister unto the LORD in the priest's office;
9152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Which the LORD commanded to be given them of the children of Israel, in the day that he anointed them, by a statute for ever throughout their generations.
9153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the law of the burnt offering, of the meat offering, and of the sin offering, and of the trespass offering, and of the consecrations, and of the sacrifice of the peace offerings;
9154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Which the LORD commanded Moses in mount Sinai, in the day that he commanded the children of Israel to offer their oblations unto the LORD, in the wilderness of Sinai.
9155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Take Aaron and his sons with him, and the garments, and the anointing oil, and a bullock for the sin offering, and two rams, and a basket of unleavened bread;
9157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And gather thou all the congregation together unto the door of the tabernacle of the congregation.
9158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses did as the LORD commanded him; and the assembly was gathered together unto the door of the tabernacle of the congregation.
9159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses said unto the congregation, This is the thing which the LORD commanded to be done.
9160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses brought Aaron and his sons, and washed them with water.
9161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he put upon him the coat, and girded him with the girdle, and clothed him with the robe, and put the ephod upon him, and he girded him with the curious girdle of the ephod, and bound it unto him therewith.
9162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he put the breastplate upon him: also he put in the breastplate the Urim and the Thummim.
9163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he put the mitre upon his head; also upon the mitre, even upon his forefront, did he put the golden plate, the holy crown; as the LORD commanded Moses.
9164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses took the anointing oil, and anointed the tabernacle and all that was therein, and sanctified them.
9165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he sprinkled thereof upon the altar seven times, and anointed the altar and all his vessels, both the laver and his foot, to sanctify them.
9166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he poured of the anointing oil upon Aaron's head, and anointed him, to sanctify him.
9167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses brought Aaron's sons, and put coats upon them, and girded them with girdles, and put bonnets upon them; as the LORD commanded Moses.
9168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he brought the bullock for the sin offering: and Aaron and his sons laid their hands upon the head of the bullock for the sin offering.
9169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he slew it; and Moses took the blood, and put it upon the horns of the altar round about with his finger, and purified the altar, and poured the blood at the bottom of the altar, and sanctified it, to make reconciliation upon it.
9170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took all the fat that was upon the inwards, and the caul above the liver, and the two kidneys, and their fat, and Moses burned it upon the altar.
9171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the bullock, and his hide, his flesh, and his dung, he burnt with fire without the camp; as the LORD commanded Moses.
9172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he brought the ram for the burnt offering: and Aaron and his sons laid their hands upon the head of the ram.
9173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he killed it; and Moses sprinkled the blood upon the altar round about.
9174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he cut the ram into pieces; and Moses burnt the head, and the pieces, and the fat.
9175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he washed the inwards and the legs in water; and Moses burnt the whole ram upon the altar: it was a burnt sacrifice for a sweet savor, and an offering made by fire unto the LORD; as the LORD commanded Moses.
9176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he brought the other ram, the ram of consecration: and Aaron and his sons laid their hands upon the head of the ram.
9177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he slew it; and Moses took of the blood of it, and put it upon the tip of Aaron's right ear, and upon the thumb of his right hand, and upon the great toe of his right foot.
9178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he brought Aaron's sons, and Moses put of the blood upon the tip of their right ear, and upon the thumbs of their right hands, and upon the great toes of their right feet: and Moses sprinkled the blood upon the altar round about.
9179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he took the fat, and the rump, and all the fat that was upon the inwards, and the caul above the liver, and the two kidneys, and their fat, and the right shoulder:
9180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And out of the basket of unleavened bread, that was before the LORD, he took one unleavened cake, and a cake of oiled bread, and one wafer, and put them on the fat, and upon the right shoulder:
9181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he put all upon Aaron's hands, and upon his sons' hands, and waved them for a wave offering before the LORD.
9182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses took them from off their hands, and burnt them on the altar upon the burnt offering: they were consecrations for a sweet savor: it is an offering made by fire unto the LORD.
9183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses took the breast, and waved it for a wave offering before the LORD: for of the ram of consecration it was Moses' part; as the LORD commanded Moses.
9184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses took of the anointing oil, and of the blood which was upon the altar, and sprinkled it upon Aaron, and upon his garments, and upon his sons, and upon his sons' garments with him; and sanctified Aaron, and his garments, and his sons, and his sons' garments with him.
9185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto Aaron and to his sons, Boil the flesh at the door of the tabernacle of the congregation: and there eat it with the bread that is in the basket of consecrations, as I commanded, saying, Aaron and his sons shall eat it.
9186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And that which remaineth of the flesh and of the bread shall ye burn with fire.
9187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall not go out of the door of the tabernacle of the congregation in seven days, until the days of your consecration be at an end: for seven days shall he consecrate you.
9188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      As he hath done this day, so the LORD hath commanded to do, to make an atonement for you.
9189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore shall ye abide at the door of the tabernacle of the congregation day and night seven days, and keep the charge of the LORD, that ye die not: for so I am commanded.
9190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Aaron and his sons did all things which the LORD commanded by the hand of Moses.
9191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass on the eighth day, that Moses called Aaron and his sons, and the elders of Israel;
9192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto Aaron, Take thee a young calf for a sin offering, and a ram for a burnt offering, without blemish, and offer them before the LORD.
9193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And unto the children of Israel thou shalt speak, saying, Take ye a kid of the goats for a sin offering; and a calf and a lamb, both of the first year, without blemish, for a burnt offering;
9194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also a bullock and a ram for peace offerings, to sacrifice before the LORD; and a meat offering mingled with oil: for to day the LORD will appear unto you.
9195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they brought that which Moses commanded before the tabernacle of the congregation: and all the congregation drew near and stood before the LORD.
9196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses said, This is the thing which the LORD commanded that ye should do: and the glory of the LORD shall appear unto you.
9197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses said unto Aaron, Go unto the altar, and offer thy sin offering, and thy burnt offering, and make an atonement for thyself, and for the people: and offer the offering of the people, and make an atonement for them; as the LORD commanded.
9198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Aaron therefore went unto the altar, and slew the calf of the sin offering, which was for himself.
9199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Aaron brought the blood unto him: and he dipped his finger in the blood, and put it upon the horns of the altar, and poured out the blood at the bottom of the altar:
9200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the fat, and the kidneys, and the caul above the liver of the sin offering, he burnt upon the altar; as the LORD commanded Moses.
9201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the flesh and the hide he burnt with fire without the camp.
9202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he slew the burnt offering; and Aaron's sons presented unto him the blood, which he sprinkled round about upon the altar.
9203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they presented the burnt offering unto him, with the pieces thereof, and the head: and he burnt them upon the altar.
9204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he did wash the inwards and the legs, and burnt them upon the burnt offering on the altar.
9205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he brought the people's offering, and took the goat, which was the sin offering for the people, and slew it, and offered it for sin, as the first.
9206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he brought the burnt offering, and offered it according to the manner.
9207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he brought the meat offering, and took an handful thereof, and burnt it upon the altar, beside the burnt sacrifice of the morning.
9208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He slew also the bullock and the ram for a sacrifice of peace offerings, which was for the people: and Aaron's sons presented unto him the blood, which he sprinkled upon the altar round about,
9209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the fat of the bullock and of the ram, the rump, and that which covereth the inwards, and the kidneys, and the caul above the liver:
9210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they put the fat upon the breasts, and he burnt the fat upon the altar:
9211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the breasts and the right shoulder Aaron waved for a wave offering before the LORD; as Moses commanded.
9212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Aaron lifted up his hand toward the people, and blessed them, and came down from offering of the sin offering, and the burnt offering, and peace offerings.
9213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses and Aaron went into the tabernacle of the congregation, and came out, and blessed the people: and the glory of the LORD appeared unto all the people.
9214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And there came a fire out from before the LORD, and consumed upon the altar the burnt offering and the fat: which when all the people saw, they shouted, and fell on their faces.
9215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Nadab and Abihu, the sons of Aaron, took either of them his censer, and put fire therein, and put incense thereon, and offered strange fire before the LORD, which he commanded them not.
9216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there went out fire from the LORD, and devoured them, and they died before the LORD.
9217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Moses said unto Aaron, This is it that the LORD spake, saying, I will be sanctified in them that come nigh me, and before all the people I will be glorified. And Aaron held his peace.
9218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses called Mishael and Elzaphan, the sons of Uzziel the uncle of Aaron, and said unto them, Come near, carry your brethren from before the sanctuary out of the camp.
9219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So they went near, and carried them in their coats out of the camp; as Moses had said.
9220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses said unto Aaron, and unto Eleazar and unto Ithamar, his sons, Uncover not your heads, neither rend your clothes; lest ye die, and lest wrath come upon all the people: but let your brethren, the whole house of Israel, bewail the burning which the LORD hath kindled.
9221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall not go out from the door of the tabernacle of the congregation, lest ye die: for the anointing oil of the LORD is upon you. And they did according to the word of Moses.
9222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Aaron, saying,
9223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Do not drink wine nor strong drink, thou, nor thy sons with thee, when ye go into the tabernacle of the congregation, lest ye die: it shall be a statute for ever throughout your generations:
9224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And that ye may put difference between holy and unholy, and between unclean and clean;
9225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And that ye may teach the children of Israel all the statutes which the LORD hath spoken unto them by the hand of Moses.
9226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses spake unto Aaron, and unto Eleazar and unto Ithamar, his sons that were left, Take the meat offering that remaineth of the offerings of the LORD made by fire, and eat it without leaven beside the altar: for it is most holy:
9227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye shall eat it in the holy place, because it is thy due, and thy sons' due, of the sacrifices of the LORD made by fire: for so I am commanded.
9228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the wave breast and heave shoulder shall ye eat in a clean place; thou, and thy sons, and thy daughters with thee: for they be thy due, and thy sons' due, which are given out of the sacrifices of peace offerings of the children of Israel.
9229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The heave shoulder and the wave breast shall they bring with the offerings made by fire of the fat, to wave it for a wave offering before the LORD; and it shall be thine, and thy sons' with thee, by a statute for ever; as the LORD hath commanded.
9230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses diligently sought the goat of the sin offering, and, behold, it was burnt: and he was angry with Eleazar and Ithamar, the sons of Aaron which were left alive, saying,
9231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wherefore have ye not eaten the sin offering in the holy place, seeing it is most holy, and God hath given it you to bear the iniquity of the congregation, to make atonement for them before the LORD?
9232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Behold, the blood of it was not brought in within the holy place: ye should indeed have eaten it in the holy place, as I commanded.
9233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Aaron said unto Moses, Behold, this day have they offered their sin offering and their burnt offering before the LORD; and such things have befallen me: and if I had eaten the sin offering to day, should it have been accepted in the sight of the LORD?
9234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when Moses heard that, he was content.
9235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD spake unto Moses and to Aaron, saying unto them,
9236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak unto the children of Israel, saying, These are the beasts which ye shall eat among all the beasts that are on the earth.
9237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whatsoever parteth the hoof, and is cloven-footed, and cheweth the cud, among the beasts, that shall ye eat.
9238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Nevertheless these shall ye not eat of them that chew the cud, or of them that divide the hoof: as the camel, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.
9239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the coney, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.
9240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the hare, because he cheweth the cud, but divideth not the hoof; he is unclean unto you.
9241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the swine, though he divide the hoof, and be cloven-footed, yet he cheweth not the cud; he is unclean to you.
9242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of their flesh shall ye not eat, and their carcass shall ye not touch; they are unclean to you.
9243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These shall ye eat of all that are in the waters: whatsoever hath fins and scales in the waters, in the seas, and in the rivers, them shall ye eat.
9244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And all that have not fins and scales in the seas, and in the rivers, of all that move in the waters, and of any living thing which is in the waters, they shall be an abomination unto you:
9245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They shall be even an abomination unto you; ye shall not eat of their flesh, but ye shall have their carcasses in abomination.
9246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whatsoever hath no fins nor scales in the waters, that shall be an abomination unto you.
9247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And these are they which ye shall have in abomination among the fowls; they shall not be eaten, they are an abomination: the eagle, and the ossifrage, and the ospray,
9248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the vulture, and the kite after his kind;
9249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Every raven after his kind;
9250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the owl, and the night hawk, and the cuckoo, and the hawk after his kind,
9251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the little owl, and the cormorant, and the great owl,
9252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the swan, and the pelican, and the gier eagle,
9253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the stork, the heron after her kind, and the lapwing, and the bat.
9254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All fowls that creep, going upon all four, shall be an abomination unto you.
9255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Yet these may ye eat of every flying creeping thing that goeth upon all four, which have legs above their feet, to leap withal upon the earth;
9256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Even these of them ye may eat; the locust after his kind, and the bald locust after his kind, and the beetle after his kind, and the grasshopper after his kind.
9257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But all other flying creeping things, which have four feet, shall be an abomination unto you.
9258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And for these ye shall be unclean: whosoever toucheth the carcass of them shall be unclean until the even.
9259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And whosoever beareth ought of the carcass of them shall wash his clothes, and be unclean until the even.
9260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The carcasses of every beast which divideth the hoof, and is not cloven-footed, nor cheweth the cud, are unclean unto you: every one that toucheth them shall be unclean.
9261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whatsoever goeth upon his paws, among all manner of beasts that go on all four, those are unclean unto you: whoso toucheth their carcass shall be unclean until the even.
9262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that beareth the carcass of them shall wash his clothes, and be unclean until the even: they are unclean unto you.
9263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These also shall be unclean unto you among the creeping things that creep upon the earth; the weasel, and the mouse, and the tortoise after his kind,
9264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the ferret, and the chameleon, and the lizard, and the snail, and the mole.
9265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These are unclean to you among all that creep: whosoever doth touch them, when they be dead, shall be unclean until the even.
9266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And upon whatsoever any of them, when they are dead, doth fall, it shall be unclean; whether it be any vessel of wood, or raiment, or skin, or sack, whatsoever vessel it be, wherein any work is done, it must be put into water, and it shall be unclean until the even; so it shall be cleansed.
9267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And every earthen vessel, whereinto any of them falleth, whatsoever is in it shall be unclean; and ye shall break it.
9268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of all meat which may be eaten, that on which such water cometh shall be unclean: and all drink that may be drunk in every such vessel shall be unclean.
9269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And every thing whereupon any part of their carcass falleth shall be unclean; whether it be oven, or ranges for pots, they shall be broken down: for they are unclean and shall be unclean unto you.
9270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nevertheless a fountain or pit, wherein there is plenty of water, shall be clean: but that which toucheth their carcass shall be unclean.
9271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if any part of their carcass fall upon any sowing seed which is to be sown, it shall be clean.
9272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if any water be put upon the seed, and any part of their carcass fall thereon, it shall be unclean unto you.
9273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if any beast, of which ye may eat, die; he that toucheth the carcass thereof shall be unclean until the even.
9274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that eateth of the carcass of it shall wash his clothes, and be unclean until the even: he also that beareth the carcass of it shall wash his clothes, and be unclean until the even.
9275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And every creeping thing that creepeth upon the earth shall be an abomination; it shall not be eaten.
9276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whatsoever goeth upon the belly, and whatsoever goeth upon all four, or whatsoever hath more feet among all creeping things that creep upon the earth, them ye shall not eat; for they are an abomination.
9277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall not make yourselves abominable with any creeping thing that creepeth, neither shall ye make yourselves unclean with them, that ye should be defiled thereby.
9278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I am the LORD your God: ye shall therefore sanctify yourselves, and ye shall be holy; for I am holy: neither shall ye defile yourselves with any manner of creeping thing that creepeth upon the earth.
9279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I am the LORD that bringeth you up out of the land of Egypt, to be your God: ye shall therefore be holy, for I am holy.
9280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is the law of the beasts, and of the fowl, and of every living creature that moveth in the waters, and of every creature that creepeth upon the earth:
9281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To make a difference between the unclean and the clean, and between the beast that may be eaten and the beast that may not be eaten.
9282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Speak unto the children of Israel, saying, If a woman have conceived seed, and born a man child: then she shall be unclean seven days; according to the days of the separation for her infirmity shall she be unclean.
9284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the eighth day the flesh of his foreskin shall be circumcised.
9285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she shall then continue in the blood of her purifying three and thirty days; she shall touch no hallowed thing, nor come into the sanctuary, until the days of her purifying be fulfilled.
9286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if she bear a maid child, then she shall be unclean two weeks, as in her separation: and she shall continue in the blood of her purifying threescore and six days.
9287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the days of her purifying are fulfilled, for a son, or for a daughter, she shall bring a lamb of the first year for a burnt offering, and a young pigeon, or a turtledove, for a sin offering, unto the door of the tabernacle of the congregation, unto the priest:
9288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Who shall offer it before the LORD, and make an atonement for her; and she shall be cleansed from the issue of her blood. This is the law for her that hath born a male or a female.
9289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And if she be not able to bring a lamb, then she shall bring two turtles, or two young pigeons; the one for the burnt offering, and the other for a sin offering: and the priest shall make an atonement for her, and she shall be clean.
9290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses and Aaron, saying,
9291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When a man shall have in the skin of his flesh a rising, a scab, or bright spot, and it be in the skin of his flesh like the plague of leprosy; then he shall be brought unto Aaron the priest, or unto one of his sons the priests:
9292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall look on the plague in the skin of the flesh: and when the hair in the plague is turned white, and the plague in sight be deeper than the skin of his flesh, it is a plague of leprosy: and the priest shall look on him, and pronounce him unclean.
9293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If the bright spot be white in the skin of his flesh, and in sight be not deeper than the skin, and the hair thereof be not turned white; then the priest shall shut up him that hath the plague seven days:
9294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall look on him the seventh day: and, behold, if the plague in his sight be at a stay, and the plague spread not in the skin; then the priest shall shut him up seven days more:
9295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the priest shall look on him again the seventh day: and, behold, if the plague be somewhat dark, and the plague spread not in the skin, the priest shall pronounce him clean: it is but a scab: and he shall wash his clothes, and be clean.
9296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if the scab spread much abroad in the skin, after that he hath been seen of the priest for his cleansing, he shall be seen of the priest again.
9297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if the priest see that, behold, the scab spreadeth in the skin, then the priest shall pronounce him unclean: it is a leprosy.
9298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When the plague of leprosy is in a man, then he shall be brought unto the priest;
9299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the priest shall see him: and, behold, if the rising be white in the skin, and it have turned the hair white, and there be quick raw flesh in the rising;
9300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It is an old leprosy in the skin of his flesh, and the priest shall pronounce him unclean, and shall not shut him up: for he is unclean.
9301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if a leprosy break out abroad in the skin, and the leprosy cover all the skin of him that hath the plague from his head even to his foot, wheresoever the priest looketh;
9302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the priest shall consider: and, behold, if the leprosy have covered all his flesh, he shall pronounce him clean that hath the plague: it is all turned white: he is clean.
9303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But when raw flesh appeareth in him, he shall be unclean.
9304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall see the raw flesh, and pronounce him to be unclean: for the raw flesh is unclean: it is a leprosy.
9305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Or if the raw flesh turn again, and be changed unto white, he shall come unto the priest;
9306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priest shall see him: and, behold, if the plague be turned into white; then the priest shall pronounce him clean that hath the plague: he is clean.
9307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The flesh also, in which, even in the skin thereof, was a boil, and is healed,
9308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And in the place of the boil there be a white rising, or a bright spot, white, and somewhat reddish, and it be showed to the priest;
9309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if, when the priest seeth it, behold, it be in sight lower than the skin, and the hair thereof be turned white; the priest shall pronounce him unclean: it is a plague of leprosy broken out of the boil.
9310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if the priest look on it, and, behold, there be no white hairs therein, and if it be not lower than the skin, but be somewhat dark; then the priest shall shut him up seven days:
9311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if it spread much abroad in the skin, then the priest shall pronounce him unclean: it is a plague.
9312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if the bright spot stay in his place, and spread not, it is a burning boil; and the priest shall pronounce him clean.
9313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or if there be any flesh, in the skin whereof there is a hot burning, and the quick flesh that burneth have a white bright spot, somewhat reddish, or white;
9314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the priest shall look upon it: and, behold, if the hair in the bright spot be turned white, and it be in sight deeper than the skin; it is a leprosy broken out of the burning: wherefore the priest shall pronounce him unclean: it is the plague of leprosy.
9315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But if the priest look on it, and, behold, there be no white hair in the bright spot, and it be no lower than the other skin, but be somewhat dark; then the priest shall shut him up seven days:
9316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall look upon him the seventh day: and if it be spread much abroad in the skin, then the priest shall pronounce him unclean: it is the plague of leprosy.
9317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if the bright spot stay in his place, and spread not in the skin, but it be somewhat dark; it is a rising of the burning, and the priest shall pronounce him clean: for it is an inflammation of the burning.
9318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If a man or woman have a plague upon the head or the beard;
9319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then the priest shall see the plague: and, behold, if it be in sight deeper than the skin; and there be in it a yellow thin hair; then the priest shall pronounce him unclean: it is a dry scall, even a leprosy upon the head or beard.
9320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if the priest look on the plague of the scall, and, behold, it be not in sight deeper than the skin, and that there is no black hair in it; then the priest shall shut up him that hath the plague of the scall seven days:
9321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And in the seventh day the priest shall look on the plague: and, behold, if the scall spread not, and there be in it no yellow hair, and the scall be not in sight deeper than the skin;
9322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He shall be shaven, but the scall shall he not shave; and the priest shall shut up him that hath the scall seven days more:
9323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And in the seventh day the priest shall look on the scall: and, behold, if the scall be not spread in the skin, nor be in sight deeper than the skin; then the priest shall pronounce him clean: and he shall wash his clothes, and be clean.
9324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if the scall spread much in the skin after his cleansing;
9325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the priest shall look on him: and, behold, if the scall be spread in the skin, the priest shall not seek for yellow hair; he is unclean.
9326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if the scall be in his sight at a stay, and that there is black hair grown up therein; the scall is healed, he is clean: and the priest shall pronounce him clean.
9327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If a man also or a woman have in the skin of their flesh bright spots, even white bright spots;
9328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then the priest shall look: and, behold, if the bright spots in the skin of their flesh be darkish white; it is a freckled spot that groweth in the skin; he is clean.
9329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the man whose hair is fallen off his head, he is bald; yet is he clean.
9330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he that hath his hair fallen off from the part of his head toward his face, he is forehead bald: yet is he clean.
9331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if there be in the bald head, or bald forehead, a white reddish sore; it is a leprosy sprung up in his bald head, or his bald forehead.
9332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then the priest shall look upon it: and, behold, if the rising of the sore be white reddish in his bald head, or in his bald forehead, as the leprosy appeareth in the skin of the flesh;
9333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He is a leprous man, he is unclean: the priest shall pronounce him utterly unclean; his plague is in his head.
9334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the leper in whom the plague is, his clothes shall be rent, and his head bare, and he shall put a covering upon his upper lip, and shall cry, Unclean, unclean.
9335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All the days wherein the plague shall be in him he shall be defiled; he is unclean: he shall dwell alone; without the camp shall his habitation be.
9336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The garment also that the plague of leprosy is in, whether it be a woolen garment, or a linen garment;
9337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whether it be in the warp, or woof; of linen, or of woolen; whether in a skin, or in any thing made of skin;
9338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if the plague be greenish or reddish in the garment, or in the skin, either in the warp, or in the woof, or in any thing of skin; it is a plague of leprosy, and shall be showed unto the priest:
9339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall look upon the plague, and shut up it that hath the plague seven days:
9340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he shall look on the plague on the seventh day: if the plague be spread in the garment, either in the warp, or in the woof, or in a skin, or in any work that is made of skin; the plague is a fretting leprosy; it is unclean.
9341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He shall therefore burn that garment, whether warp or woof, in woolen or in linen, or any thing of skin, wherein the plague is: for it is a fretting leprosy; it shall be burnt in the fire.
9342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if the priest shall look, and, behold, the plague be not spread in the garment, either in the warp, or in the woof, or in any thing of skin;
9343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then the priest shall command that they wash the thing wherein the plague is, and he shall shut it up seven days more:
9344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall look on the plague, after that it is washed: and, behold, if the plague have not changed his color, and the plague be not spread; it is unclean; thou shalt burn it in the fire; it is fret inward, whether it be bare within or without.
9345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if the priest look, and, behold, the plague be somewhat dark after the washing of it; then he shall rend it out of the garment, or out of the skin, or out of the warp, or out of the woof:
9346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if it appear still in the garment, either in the warp, or in the woof, or in any thing of skin; it is a spreading plague: thou shalt burn that wherein the plague is with fire.
9347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the garment, either warp, or woof, or whatsoever thing of skin it be, which thou shalt wash, if the plague be departed from them, then it shall be washed the second time, and shall be clean.
9348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               This is the law of the plague of leprosy in a garment of woolen or linen, either in the warp, or woof, or any thing of skins, to pronounce it clean, or to pronounce it unclean.
9349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This shall be the law of the leper in the day of his cleansing: He shall be brought unto the priest:
9351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall go forth out of the camp; and the priest shall look, and, behold, if the plague of leprosy be healed in the leper;
9352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then shall the priest command to take for him that is to be cleansed two birds alive and clean, and cedar wood, and scarlet, and hyssop:
9353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the priest shall command that one of the birds be killed in an earthen vessel over running water:
9354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As for the living bird, he shall take it, and the cedar wood, and the scarlet, and the hyssop, and shall dip them and the living bird in the blood of the bird that was killed over the running water:
9355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall sprinkle upon him that is to be cleansed from the leprosy seven times, and shall pronounce him clean, and shall let the living bird loose into the open field.
9356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he that is to be cleansed shall wash his clothes, and shave off all his hair, and wash himself in water, that he may be clean: and after that he shall come into the camp, and shall tarry abroad out of his tent seven days.
9357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But it shall be on the seventh day, that he shall shave all his hair off his head and his beard and his eyebrows, even all his hair he shall shave off: and he shall wash his clothes, also he shall wash his flesh in water, and he shall be clean.
9358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And on the eighth day he shall take two he lambs without blemish, and one ewe lamb of the first year without blemish, and three tenth deals of fine flour for a meat offering, mingled with oil, and one log of oil.
9359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest that maketh him clean shall present the man that is to be made clean, and those things, before the LORD, at the door of the tabernacle of the congregation:
9360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall take one he lamb, and offer him for a trespass offering, and the log of oil, and wave them for a wave offering before the LORD:
9361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall slay the lamb in the place where he shall kill the sin offering and the burnt offering, in the holy place: for as the sin offering is the priest's, so is the trespass offering: it is most holy:
9362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall take some of the blood of the trespass offering, and the priest shall put it upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot:
9363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall take some of the log of oil, and pour it into the palm of his own left hand:
9364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the priest shall dip his right finger in the oil that is in his left hand, and shall sprinkle of the oil with his finger seven times before the LORD:
9365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And of the rest of the oil that is in his hand shall the priest put upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot, upon the blood of the trespass offering:
9366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the remnant of the oil that is in the priest's hand he shall pour upon the head of him that is to be cleansed: and the priest shall make an atonement for him before the LORD.
9367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall offer the sin offering, and make an atonement for him that is to be cleansed from his uncleanness; and afterward he shall kill the burnt offering:
9368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall offer the burnt offering and the meat offering upon the altar: and the priest shall make an atonement for him, and he shall be clean.
9369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if he be poor, and cannot get so much; then he shall take one lamb for a trespass offering to be waved, to make an atonement for him, and one tenth deal of fine flour mingled with oil for a meat offering, and a log of oil;
9370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And two turtledoves, or two young pigeons, such as he is able to get; and the one shall be a sin offering, and the other a burnt offering.
9371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall bring them on the eighth day for his cleansing unto the priest, unto the door of the tabernacle of the congregation, before the LORD.
9372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall take the lamb of the trespass offering, and the log of oil, and the priest shall wave them for a wave offering before the LORD:
9373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall kill the lamb of the trespass offering, and the priest shall take some of the blood of the trespass offering, and put it upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot:
9374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall pour of the oil into the palm of his own left hand:
9375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the priest shall sprinkle with his right finger some of the oil that is in his left hand seven times before the LORD:
9376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall put of the oil that is in his hand upon the tip of the right ear of him that is to be cleansed, and upon the thumb of his right hand, and upon the great toe of his right foot, upon the place of the blood of the trespass offering:
9377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the rest of the oil that is in the priest's hand he shall put upon the head of him that is to be cleansed, to make an atonement for him before the LORD.
9378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall offer the one of the turtledoves, or of the young pigeons, such as he can get;
9379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Even such as he is able to get, the one for a sin offering, and the other for a burnt offering, with the meat offering: and the priest shall make an atonement for him that is to be cleansed before the LORD.
9380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 This is the law of him in whom is the plague of leprosy, whose hand is not able to get that which pertaineth to his cleansing.
9381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto Moses and unto Aaron, saying,
9382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When ye be come into the land of Canaan, which I give to you for a possession, and I put the plague of leprosy in a house of the land of your possession;
9383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he that owneth the house shall come and tell the priest, saying, It seemeth to me there is as it were a plague in the house:
9384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the priest shall command that they empty the house, before the priest go into it to see the plague, that all that is in the house be not made unclean: and afterward the priest shall go in to see the house:
9385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall look on the plague, and, behold, if the plague be in the walls of the house with hollow streaks, greenish or reddish, which in sight are lower than the wall;
9386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the priest shall go out of the house to the door of the house, and shut up the house seven days:
9387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the priest shall come again the seventh day, and shall look: and, behold, if the plague be spread in the walls of the house;
9388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the priest shall command that they take away the stones in which the plague is, and they shall cast them into an unclean place without the city:
9389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall cause the house to be scraped within round about, and they shall pour out the dust that they scrape off without the city into an unclean place:
9390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they shall take other stones, and put them in the place of those stones; and he shall take other mortar, and shall plaster the house.
9391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if the plague come again, and break out in the house, after that he hath taken away the stones, and after he hath scraped the house, and after it is plastered;
9392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the priest shall come and look, and, behold, if the plague be spread in the house, it is a fretting leprosy in the house; it is unclean.
9393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall break down the house, the stones of it, and the timber thereof, and all the mortar of the house; and he shall carry them forth out of the city into an unclean place.
9394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Moreover he that goeth into the house all the while that it is shut up shall be unclean until the even.
9395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he that lieth in the house shall wash his clothes; and he that eateth in the house shall wash his clothes.
9396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if the priest shall come in, and look upon it, and, behold, the plague hath not spread in the house, after the house was plastered: then the priest shall pronounce the house clean, because the plague is healed.
9397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall take to cleanse the house two birds, and cedar wood, and scarlet, and hyssop:
9398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he shall kill the one of the birds in an earthen vessel over running water:
9399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall take the cedar wood, and the hyssop, and the scarlet, and the living bird, and dip them in the blood of the slain bird, and in the running water, and sprinkle the house seven times:
9400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he shall cleanse the house with the blood of the bird, and with the running water, and with the living bird, and with the cedar wood, and with the hyssop, and with the scarlet:
9401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But he shall let go the living bird out of the city into the open fields, and make an atonement for the house: and it shall be clean.
9402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is the law for all manner of plague of leprosy, and scall,
9403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And for the leprosy of a garment, and of a house,
9404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And for a rising, and for a scab, and for a bright spot:
9405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 To teach when it is unclean, and when it is clean: this is the law of leprosy.
9406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD spake unto Moses and to Aaron, saying,
9407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Speak unto the children of Israel, and say unto them, When any man hath a running issue out of his flesh, because of his issue he is unclean.
9408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And this shall be his uncleanness in his issue: whether his flesh run with his issue, or his flesh be stopped from his issue, it is his uncleanness.
9409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Every bed, whereon he lieth that hath the issue, is unclean: and every thing, whereon he sitteth, shall be unclean.
9410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And whosoever toucheth his bed shall wash his clothes, and bathe himself in water, and be unclean until the even.
9411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he that sitteth on any thing whereon he sat that hath the issue shall wash his clothes, and bathe himself in water, and be unclean until the even.
9412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that toucheth the flesh of him that hath the issue shall wash his clothes, and bathe himself in water, and be unclean until the even.
9413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if he that hath the issue spit upon him that is clean; then he shall wash his clothes, and bathe himself in water, and be unclean until the even.
9414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what saddle soever he rideth upon that hath the issue shall be unclean.
9415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And whosoever toucheth any thing that was under him shall be unclean until the even: and he that beareth any of those things shall wash his clothes, and bathe himself in water, and be unclean until the even.
9416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And whomsoever he toucheth that hath the issue, and hath not rinsed his hands in water, he shall wash his clothes, and bathe himself in water, and be unclean until the even.
9417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the vessel of earth, that he toucheth which hath the issue, shall be broken: and every vessel of wood shall be rinsed in water.
9418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when he that hath an issue is cleansed of his issue; then he shall number to himself seven days for his cleansing, and wash his clothes, and bathe his flesh in running water, and shall be clean.
9419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And on the eighth day he shall take to him two turtledoves, or two young pigeons, and come before the LORD unto the door of the tabernacle of the congregation, and give them unto the priest:
9420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall offer them, the one for a sin offering, and the other for a burnt offering; and the priest shall make an atonement for him before the LORD for his issue.
9421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if any man's seed of copulation go out from him, then he shall wash all his flesh in water, and be unclean until the even.
9422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And every garment, and every skin, whereon is the seed of copulation, shall be washed with water, and be unclean until the even.
9423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The woman also with whom man shall lie with seed of copulation, they shall both bathe themselves in water, and be unclean until the even.
9424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if a woman have an issue, and her issue in her flesh be blood, she shall be put apart seven days: and whosoever toucheth her shall be unclean until the even.
9425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And every thing that she lieth upon in her separation shall be unclean: every thing also that she sitteth upon shall be unclean.
9426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And whosoever toucheth her bed shall wash his clothes, and bathe himself in water, and be unclean until the even.
9427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And whosoever toucheth any thing that she sat upon shall wash his clothes, and bathe himself in water, and be unclean until the even.
9428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if it be on her bed, or on any thing whereon she sitteth, when he toucheth it, he shall be unclean until the even.
9429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if any man lie with her at all, and her flowers be upon him, he shall be unclean seven days; and all the bed whereon he lieth shall be unclean.
9430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if a woman have an issue of her blood many days out of the time of her separation, or if it run beyond the time of her separation; all the days of the issue of her uncleanness shall be as the days of her separation: she shall be unclean.
9431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Every bed whereon she lieth all the days of her issue shall be unto her as the bed of her separation: and whatsoever she sitteth upon shall be unclean, as the uncleanness of her separation.
9432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And whosoever toucheth those things shall be unclean, and shall wash his clothes, and bathe himself in water, and be unclean until the even.
9433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if she be cleansed of her issue, then she shall number to herself seven days, and after that she shall be clean.
9434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And on the eighth day she shall take unto her two turtles, or two young pigeons, and bring them unto the priest, to the door of the tabernacle of the congregation.
9435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priest shall offer the one for a sin offering, and the other for a burnt offering; and the priest shall make an atonement for her before the LORD for the issue of her uncleanness.
9436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thus shall ye separate the children of Israel from their uncleanness; that they die not in their uncleanness, when they defile my tabernacle that is among them.
9437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the law of him that hath an issue, and of him whose seed goeth from him, and is defiled therewith;
9438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And of her that is sick of her flowers, and of him that hath an issue, of the man, and of the woman, and of him that lieth with her that is unclean.
9439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto Moses after the death of the two sons of Aaron, when they offered before the LORD, and died;
9440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses, Speak unto Aaron thy brother, that he come not at all times into the holy place within the vail before the mercy seat, which is upon the ark; that he die not: for I will appear in the cloud upon the mercy seat.
9441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thus shall Aaron come into the holy place: with a young bullock for a sin offering, and a ram for a burnt offering.
9442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He shall put on the holy linen coat, and he shall have the linen breeches upon his flesh, and shall be girded with a linen girdle, and with the linen mitre shall he be attired: these are holy garments; therefore shall he wash his flesh in water, and so put them on.
9443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall take of the congregation of the children of Israel two kids of the goats for a sin offering, and one ram for a burnt offering.
9444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Aaron shall offer his bullock of the sin offering, which is for himself, and make an atonement for himself, and for his house.
9445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he shall take the two goats, and present them before the LORD at the door of the tabernacle of the congregation.
9446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Aaron shall cast lots upon the two goats; one lot for the LORD, and the other lot for the scapegoat.
9447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Aaron shall bring the goat upon which the LORD's lot fell, and offer him for a sin offering.
9448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the goat, on which the lot fell to be the scapegoat, shall be presented alive before the LORD, to make an atonement with him, and to let him go for a scapegoat into the wilderness.
9449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Aaron shall bring the bullock of the sin offering, which is for himself, and shall make an atonement for himself, and for his house, and shall kill the bullock of the sin offering which is for himself:
9450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall take a censer full of burning coals of fire from off the altar before the LORD, and his hands full of sweet incense beaten small, and bring it within the vail:
9451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he shall put the incense upon the fire before the LORD, that the cloud of the incense may cover the mercy seat that is upon the testimony, that he die not:
9452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he shall take of the blood of the bullock, and sprinkle it with his finger upon the mercy seat eastward; and before the mercy seat shall he sprinkle of the blood with his finger seven times.
9453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then shall he kill the goat of the sin offering, that is for the people, and bring his blood within the vail, and do with that blood as he did with the blood of the bullock, and sprinkle it upon the mercy seat, and before the mercy seat:
9454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall make an atonement for the holy place, because of the uncleanness of the children of Israel, and because of their transgressions in all their sins: and so shall he do for the tabernacle of the congregation, that remaineth among them in the midst of their uncleanness.
9455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there shall be no man in the tabernacle of the congregation when he goeth in to make an atonement in the holy place, until he come out, and have made an atonement for himself, and for his household, and for all the congregation of Israel.
9456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he shall go out unto the altar that is before the LORD, and make an atonement for it; and shall take of the blood of the bullock, and of the blood of the goat, and put it upon the horns of the altar round about.
9457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he shall sprinkle of the blood upon it with his finger seven times, and cleanse it, and hallow it from the uncleanness of the children of Israel.
9458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when he hath made an end of reconciling the holy place, and the tabernacle of the congregation, and the altar, he shall bring the live goat:
9459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Aaron shall lay both his hands upon the head of the live goat, and confess over him all the iniquities of the children of Israel, and all their transgressions in all their sins, putting them upon the head of the goat, and shall send him away by the hand of a fit man into the wilderness:
9460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the goat shall bear upon him all their iniquities unto a land not inhabited: and he shall let go the goat in the wilderness.
9461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Aaron shall come into the tabernacle of the congregation, and shall put off the linen garments, which he put on when he went into the holy place, and shall leave them there:
9462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he shall wash his flesh with water in the holy place, and put on his garments, and come forth, and offer his burnt offering, and the burnt offering of the people, and make an atonement for himself, and for the people.
9463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the fat of the sin offering shall he burn upon the altar.
9464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he that let go the goat for the scapegoat shall wash his clothes, and bathe his flesh in water, and afterward come into the camp.
9465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the bullock for the sin offering, and the goat for the sin offering, whose blood was brought in to make atonement in the holy place, shall one carry forth without the camp; and they shall burn in the fire their skins, and their flesh, and their dung.
9466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that burneth them shall wash his clothes, and bathe his flesh in water, and afterward he shall come into the camp.
9467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And this shall be a statute for ever unto you: that in the seventh month, on the tenth day of the month, ye shall afflict your souls, and do no work at all, whether it be one of your own country, or a stranger that sojourneth among you:
9468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For on that day shall the priest make an atonement for you, to cleanse you, that ye may be clean from all your sins before the LORD.
9469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It shall be a sabbath of rest unto you, and ye shall afflict your souls, by a statute for ever.
9470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the priest, whom he shall anoint, and whom he shall consecrate to minister in the priest's office in his father's stead, shall make the atonement, and shall put on the linen clothes, even the holy garments:
9471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall make an atonement for the holy sanctuary, and he shall make an atonement for the tabernacle of the congregation, and for the altar, and he shall make an atonement for the priests, and for all the people of the congregation.
9472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And this shall be an everlasting statute unto you, to make an atonement for the children of Israel for all their sins once a year. And he did as the LORD commanded Moses.
9473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Speak unto Aaron, and unto his sons, and unto all the children of Israel, and say unto them; This is the thing which the LORD hath commanded, saying,
9475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What man soever there be of the house of Israel, that killeth an ox, or lamb, or goat, in the camp, or that killeth it out of the camp,
9476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And bringeth it not unto the door of the tabernacle of the congregation, to offer an offering unto the LORD before the tabernacle of the LORD; blood shall be imputed unto that man; he hath shed blood; and that man shall be cut off from among his people:
9477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To the end that the children of Israel may bring their sacrifices, which they offer in the open field, even that they may bring them unto the LORD, unto the door of the tabernacle of the congregation, unto the priest, and offer them for peace offerings unto the LORD.
9478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall sprinkle the blood upon the altar of the LORD at the door of the tabernacle of the congregation, and burn the fat for a sweet savor unto the LORD.
9479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they shall no more offer their sacrifices unto devils, after whom they have gone a whoring. This shall be a statute for ever unto them throughout their generations.
9480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt say unto them, Whatsoever man there be of the house of Israel, or of the strangers which sojourn among you, that offereth a burnt offering or sacrifice,
9481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And bringeth it not unto the door of the tabernacle of the congregation, to offer it unto the LORD; even that man shall be cut off from among his people.
9482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And whatsoever man there be of the house of Israel, or of the strangers that sojourn among you, that eateth any manner of blood; I will even set my face against that soul that eateth blood, and will cut him off from among his people.
9483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For the life of the flesh is in the blood: and I have given it to you upon the altar to make an atonement for your souls: for it is the blood that maketh an atonement for the soul.
9484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore I said unto the children of Israel, No soul of you shall eat blood, neither shall any stranger that sojourneth among you eat blood.
9485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And whatsoever man there be of the children of Israel, or of the strangers that sojourn among you, which hunteth and catcheth any beast or fowl that may be eaten; he shall even pour out the blood thereof, and cover it with dust.
9486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For it is the life of all flesh; the blood of it is for the life thereof: therefore I said unto the children of Israel, Ye shall eat the blood of no manner of flesh: for the life of all flesh is the blood thereof: whosoever eateth it shall be cut off.
9487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And every soul that eateth that which died of itself, or that which was torn with beasts, whether it be one of your own country, or a stranger, he shall both wash his clothes, and bathe himself in water, and be unclean until the even: then shall he be clean.
9488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if he wash them not, nor bathe his flesh; then he shall bear his iniquity.
9489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Speak unto the children of Israel, and say unto them, I am the LORD your God.
9491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         After the doings of the land of Egypt, wherein ye dwelt, shall ye not do: and after the doings of the land of Canaan, whither I bring you, shall ye not do: neither shall ye walk in their ordinances.
9492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ye shall do my judgments, and keep mine ordinances, to walk therein: I am the LORD your God.
9493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ye shall therefore keep my statutes, and my judgments: which if a man do, he shall live in them: I am the LORD.
9494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       None of you shall approach to any that is near of kin to him, to uncover their nakedness: I am the LORD.
9495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The nakedness of thy father, or the nakedness of thy mother, shalt thou not uncover: she is thy mother; thou shalt not uncover her nakedness.
9496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The nakedness of thy father's wife shalt thou not uncover: it is thy father's nakedness.
9497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The nakedness of thy sister, the daughter of thy father, or daughter of thy mother, whether she be born at home, or born abroad, even their nakedness thou shalt not uncover.
9498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The nakedness of thy son's daughter, or of thy daughter's daughter, even their nakedness thou shalt not uncover: for theirs is thine own nakedness.
9499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The nakedness of thy father's wife's daughter, begotten of thy father, she is thy sister, thou shalt not uncover her nakedness.
9500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not uncover the nakedness of thy father's sister: she is thy father's near kinswoman.
9501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not uncover the nakedness of thy mother's sister: for she is thy mother's near kinswoman.
9502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not uncover the nakedness of thy father's brother, thou shalt not approach to his wife: she is thine aunt.
9503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt not uncover the nakedness of thy daughter in law: she is thy son's wife; thou shalt not uncover her nakedness.
9504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not uncover the nakedness of thy brother's wife: it is thy brother's nakedness.
9505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not uncover the nakedness of a woman and her daughter, neither shalt thou take her son's daughter, or her daughter's daughter, to uncover her nakedness; for they are her near kinswomen: it is wickedness.
9506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Neither shalt thou take a wife to her sister, to vex her, to uncover her nakedness, beside the other in her life time.
9507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Also thou shalt not approach unto a woman to uncover her nakedness, as long as she is put apart for her uncleanness.
9508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moreover thou shalt not lie carnally with thy neighbor's wife, to defile thyself with her.
9509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt not let any of thy seed pass through the fire to Molech, neither shalt thou profane the name of thy God: I am the LORD.
9510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not lie with mankind, as with womankind: it is abomination.
9511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither shalt thou lie with any beast to defile thyself therewith: neither shall any woman stand before a beast to lie down thereto: it is confusion.
9512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Defile not ye yourselves in any of these things: for in all these the nations are defiled which I cast out before you:
9513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the land is defiled: therefore I do visit the iniquity thereof upon it, and the land itself vomiteth out her inhabitants.
9514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall therefore keep my statutes and my judgments, and shall not commit any of these abominations; neither any of your own nation, nor any stranger that sojourneth among you:
9515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (For all these abominations have the men of the land done, which were before you, and the land is defiled;)
9516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That the land spue not you out also, when ye defile it, as it spued out the nations that were before you.
9517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For whosoever shall commit any of these abominations, even the souls that commit them shall be cut off from among their people.
9518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore shall ye keep mine ordinance, that ye commit not any one of these abominable customs, which were committed before you, and that ye defile not yourselves therein: I am the LORD your God.
9519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto all the congregation of the children of Israel, and say unto them, Ye shall be holy: for I the LORD your God am holy.
9521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall fear every man his mother, and his father, and keep my sabbaths: I am the LORD your God.
9522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Turn ye not unto idols, nor make to yourselves molten gods: I am the LORD your God.
9523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if ye offer a sacrifice of peace offerings unto the LORD, ye shall offer it at your own will.
9524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It shall be eaten the same day ye offer it, and on the morrow: and if ought remain until the third day, it shall be burnt in the fire.
9525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if it be eaten at all on the third day, it is abominable; it shall not be accepted.
9526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore every one that eateth it shall bear his iniquity, because he hath profaned the hallowed thing of the LORD: and that soul shall be cut off from among his people.
9527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when ye reap the harvest of your land, thou shalt not wholly reap the corners of thy field, neither shalt thou gather the gleanings of thy harvest.
9528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt not glean thy vineyard, neither shalt thou gather every grape of thy vineyard; thou shalt leave them for the poor and stranger: I am the LORD your God.
9529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall not steal, neither deal falsely, neither lie one to another.
9530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ye shall not swear by my name falsely, neither shalt thou profane the name of thy God: I am the LORD.
9531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt not defraud thy neighbor, neither rob him: the wages of him that is hired shall not abide with thee all night until the morning.
9532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt not curse the deaf, nor put a stumbling-block before the blind, but shalt fear thy God: I am the LORD.
9533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall do no unrighteousness in judgment: thou shalt not respect the person of the poor, nor honor the person of the mighty: but in righteousness shalt thou judge thy neighbor.
9534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not go up and down as a talebearer among thy people: neither shalt thou stand against the blood of thy neighbor; I am the LORD.
9535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not hate thy brother in thine heart: thou shalt in any wise rebuke thy neighbor, and not suffer sin upon him.
9536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not avenge, nor bear any grudge against the children of thy people, but thou shalt love thy neighbor as thyself: I am the LORD.
9537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ye shall keep my statutes. Thou shalt not let thy cattle gender with a diverse kind: thou shalt not sow thy field with mingled seed: neither shall a garment mingled of linen and woolen come upon thee.
9538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And whosoever lieth carnally with a woman, that is a bondmaid, betrothed to an husband, and not at all redeemed, nor freedom given her; she shall be scourged; they shall not be put to death, because she was not free.
9539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he shall bring his trespass offering unto the LORD, unto the door of the tabernacle of the congregation, even a ram for a trespass offering.
9540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the priest shall make an atonement for him with the ram of the trespass offering before the LORD for his sin which he hath done: and the sin which he hath done shall be forgiven him.
9541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when ye shall come into the land, and shall have planted all manner of trees for food, then ye shall count the fruit thereof as uncircumcised: three years shall it be as uncircumcised unto you: it shall not be eaten of.
9542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But in the fourth year all the fruit thereof shall be holy to praise the LORD withal.
9543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in the fifth year shall ye eat of the fruit thereof, that it may yield unto you the increase thereof: I am the LORD your God.
9544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ye shall not eat any thing with the blood: neither shall ye use enchantment, nor observe times.
9545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ye shall not round the corners of your heads, neither shalt thou mar the corners of thy beard.
9546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye shall not make any cuttings in your flesh for the dead, nor print any marks upon you: I am the LORD.
9547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do not prostitute thy daughter, to cause her to be a whore; lest the land fall to whoredom, and the land become full of wickedness.
9548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD.
9549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Regard not them that have familiar spirits, neither seek after wizards, to be defiled by them: I am the LORD your God.
9550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt rise up before the hoary head, and honor the face of the old man, and fear thy God: I am the LORD.
9551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a stranger sojourn with thee in your land, ye shall not vex him.
9552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the stranger that dwelleth with you shall be unto you as one born among you, and thou shalt love him as thyself; for ye were strangers in the land of Egypt: I am the LORD your God.
9553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall do no unrighteousness in judgment, in meteyard, in weight, or in measure.
9554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Just balances, just weights, a just ephah, and a just hin, shall ye have: I am the LORD your God, which brought you out of the land of Egypt.
9555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore shall ye observe all my statutes, and all my judgments, and do them: I am the LORD.
9556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Again, thou shalt say to the children of Israel, Whosoever he be of the children of Israel, or of the strangers that sojourn in Israel, that giveth any of his seed unto Molech; he shall surely be put to death: the people of the land shall stone him with stones.
9558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I will set my face against that man, and will cut him off from among his people; because he hath given of his seed unto Molech, to defile my sanctuary, and to profane my holy name.
9559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if the people of the land do any ways hide their eyes from the man, when he giveth of his seed unto Molech, and kill him not:
9560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then I will set my face against that man, and against his family, and will cut him off, and all that go a whoring after him, to commit whoredom with Molech, from among their people.
9561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the soul that turneth after such as have familiar spirits, and after wizards, to go a whoring after them, I will even set my face against that soul, and will cut him off from among his people.
9562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Sanctify yourselves therefore, and be ye holy: for I am the LORD your God.
9563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall keep my statutes, and do them: I am the LORD which sanctify you.
9564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For every one that curseth his father or his mother shall be surely put to death: he hath cursed his father or his mother; his blood shall be upon him.
9565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the man that committeth adultery with another man's wife, even he that committeth adultery with his neighbor's wife, the adulterer and the adulteress shall surely be put to death.
9566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the man that lieth with his father's wife hath uncovered his father's nakedness: both of them shall surely be put to death; their blood shall be upon them.
9567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if a man lie with his daughter in law, both of them shall surely be put to death: they have wrought confusion; their blood shall be upon them.
9568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If a man also lie with mankind, as he lieth with a woman, both of them have committed an abomination: they shall surely be put to death; their blood shall be upon them.
9569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if a man take a wife and her mother, it is wickedness: they shall be burnt with fire, both he and they; that there be no wickedness among you.
9570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if a man lie with a beast, he shall surely be put to death: and ye shall slay the beast.
9571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if a woman approach unto any beast, and lie down thereto, thou shalt kill the woman, and the beast: they shall surely be put to death; their blood shall be upon them.
9572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if a man shall take his sister, his father's daughter, or his mother's daughter, and see her nakedness, and she see his nakedness; it is a wicked thing; and they shall be cut off in the sight of their people: he hath uncovered his sister's nakedness; he shall bear his iniquity.
9573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a man shall lie with a woman having her sickness, and shall uncover her nakedness; he hath discovered her fountain, and she hath uncovered the fountain of her blood: and both of them shall be cut off from among their people.
9574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt not uncover the nakedness of thy mother's sister, nor of thy father's sister: for he uncovereth his near kin: they shall bear their iniquity.
9575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if a man shall lie with his uncle's wife, he hath uncovered his uncle's nakedness: they shall bear their sin; they shall die childless.
9576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a man shall take his brother's wife, it is an unclean thing: he hath uncovered his brother's nakedness; they shall be childless.
9577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ye shall therefore keep all my statutes, and all my judgments, and do them: that the land, whither I bring you to dwell therein, spue you not out.
9578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ye shall not walk in the manners of the nation, which I cast out before you: for they committed all these things, and therefore I abhorred them.
9579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But I have said unto you, Ye shall inherit their land, and I will give it unto you to possess it, a land that floweth with milk and honey: I am the LORD your God, which have separated you from other people.
9580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall therefore put difference between clean beasts and unclean, and between unclean fowls and clean: and ye shall not make your souls abominable by beast, or by fowl, or by any manner of living thing that creepeth on the ground, which I have separated from you as unclean.
9581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall be holy unto me: for I the LORD am holy, and have severed you from other people, that ye should be mine.
9582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A man also or woman that hath a familiar spirit, or that is a wizard, shall surely be put to death: they shall stone them with stones: their blood shall be upon them.
9583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Moses, Speak unto the priests the sons of Aaron, and say unto them, There shall none be defiled for the dead among his people:
9584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But for his kin, that is near unto him, that is, for his mother, and for his father, and for his son, and for his daughter, and for his brother.
9585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And for his sister a virgin, that is nigh unto him, which hath had no husband; for her may he be defiled.
9586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But he shall not defile himself, being a chief man among his people, to profane himself.
9587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They shall not make baldness upon their head, neither shall they shave off the corner of their beard, nor make any cuttings in their flesh.
9588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They shall be holy unto their God, and not profane the name of their God: for the offerings of the LORD made by fire, and the bread of their God, they do offer: therefore they shall be holy.
9589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They shall not take a wife that is a whore, or profane; neither shall they take a woman put away from her husband: for he is holy unto his God.
9590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt sanctify him therefore; for he offereth the bread of thy God: he shall be holy unto thee: for I the LORD, which sanctify you, am holy.
9591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the daughter of any priest, if she profane herself by playing the whore, she profaneth her father: she shall be burnt with fire.
9592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he that is the high priest among his brethren, upon whose head the anointing oil was poured, and that is consecrated to put on the garments, shall not uncover his head, nor rend his clothes;
9593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Neither shall he go in to any dead body, nor defile himself for his father, or for his mother;
9594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Neither shall he go out of the sanctuary, nor profane the sanctuary of his God; for the crown of the anointing oil of his God is upon him: I am the LORD.
9595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he shall take a wife in her virginity.
9596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         A widow, or a divorced woman, or profane, or an harlot, these shall he not take: but he shall take a virgin of his own people to wife.
9597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Neither shall he profane his seed among his people: for I the LORD do sanctify him.
9598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Speak unto Aaron, saying, Whosoever he be of thy seed in their generations that hath any blemish, let him not approach to offer the bread of his God.
9600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For whatsoever man he be that hath a blemish, he shall not approach: a blind man, or a lame, or he that hath a flat nose, or any thing superfluous,
9601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Or a man that is broken-footed, or broken-handed,
9602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or crookbacked, or a dwarf, or that hath a blemish in his eye, or be scurvy, or scabbed, or hath his stones broken;
9603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           No man that hath a blemish of the seed of Aaron the priest shall come nigh to offer the offerings of the LORD made by fire: he hath a blemish; he shall not come nigh to offer the bread of his God.
9604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He shall eat the bread of his God, both of the most holy, and of the holy.
9605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Only he shall not go in unto the vail, nor come nigh unto the altar, because he hath a blemish; that he profane not my sanctuaries: for I the LORD do sanctify them.
9606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses told it unto Aaron, and to his sons, and unto all the children of Israel.
9607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto Aaron and to his sons, that they separate themselves from the holy things of the children of Israel, and that they profane not my holy name in those things which they hallow unto me: I am the LORD.
9609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say unto them, Whosoever he be of all your seed among your generations, that goeth unto the holy things, which the children of Israel hallow unto the LORD, having his uncleanness upon him, that soul shall be cut off from my presence: I am the LORD.
9610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What man soever of the seed of Aaron is a leper, or hath a running issue; he shall not eat of the holy things, until he be clean. And whoso toucheth any thing that is unclean by the dead, or a man whose seed goeth from him;
9611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or whosoever toucheth any creeping thing, whereby he may be made unclean, or a man of whom he may take uncleanness, whatsoever uncleanness he hath;
9612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The soul which hath touched any such shall be unclean until even, and shall not eat of the holy things, unless he wash his flesh with water.
9613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when the sun is down, he shall be clean, and shall afterward eat of the holy things; because it is his food.
9614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That which dieth of itself, or is torn with beasts, he shall not eat to defile himself therewith; I am the LORD.
9615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They shall therefore keep mine ordinance, lest they bear sin for it, and die therefore, if they profane it: I the LORD do sanctify them.
9616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There shall no stranger eat of the holy thing: a sojourner of the priest, or an hired servant, shall not eat of the holy thing.
9617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if the priest buy any soul with his money, he shall eat of it, and he that is born in his house: they shall eat of his meat.
9618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If the priest's daughter also be married unto a stranger, she may not eat of an offering of the holy things.
9619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But if the priest's daughter be a widow, or divorced, and have no child, and is returned unto her father's house, as in her youth, she shall eat of her father's meat: but there shall be no stranger eat thereof.
9620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if a man eat of the holy thing unwittingly, then he shall put the fifth part thereof unto it, and shall give it unto the priest with the holy thing.
9621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they shall not profane the holy things of the children of Israel, which they offer unto the LORD;
9622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Or suffer them to bear the iniquity of trespass, when they eat their holy things: for I the LORD do sanctify them.
9623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Speak unto Aaron, and to his sons, and unto all the children of Israel, and say unto them, Whatsoever he be of the house of Israel, or of the strangers in Israel, that will offer his oblation for all his vows, and for all his freewill offerings, which they will offer unto the LORD for a burnt offering;
9625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall offer at your own will a male without blemish, of the beeves, of the sheep, or of the goats.
9626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But whatsoever hath a blemish, that shall ye not offer: for it shall not be acceptable for you.
9627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And whosoever offereth a sacrifice of peace offerings unto the LORD to accomplish his vow, or a freewill offering in beeves or sheep, it shall be perfect to be accepted; there shall be no blemish therein.
9628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Blind, or broken, or maimed, or having a wen, or scurvy, or scabbed, ye shall not offer these unto the LORD, nor make an offering by fire of them upon the altar unto the LORD.
9629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Either a bullock or a lamb that hath any thing superfluous or lacking in his parts, that mayest thou offer for a freewill offering; but for a vow it shall not be accepted.
9630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ye shall not offer unto the LORD that which is bruised, or crushed, or broken, or cut; neither shall ye make any offering thereof in your land.
9631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Neither from a stranger's hand shall ye offer the bread of your God of any of these; because their corruption is in them, and blemishes be in them: they shall not be accepted for you.
9632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When a bullock, or a sheep, or a goat, is brought forth, then it shall be seven days under the dam; and from the eighth day and thenceforth it shall be accepted for an offering made by fire unto the LORD.
9634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And whether it be cow, or ewe, ye shall not kill it and her young both in one day.
9635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when ye will offer a sacrifice of thanksgiving unto the LORD, offer it at your own will.
9636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the same day it shall be eaten up; ye shall leave none of it until the morrow: I am the LORD.
9637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore shall ye keep my commandments, and do them: I am the LORD.
9638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Neither shall ye profane my holy name; but I will be hallowed among the children of Israel: I am the LORD which hallow you,
9639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That brought you out of the land of Egypt, to be your God: I am the LORD.
9640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Speak unto the children of Israel, and say unto them, Concerning the feasts of the LORD, which ye shall proclaim to be holy convocations, even these are my feasts.
9642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Six days shall work be done: but the seventh day is the sabbath of rest, an holy convocation; ye shall do no work therein: it is the sabbath of the LORD in all your dwellings.
9643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the feasts of the LORD, even holy convocations, which ye shall proclaim in their seasons.
9644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the fourteenth day of the first month at even is the LORD's passover.
9645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And on the fifteenth day of the same month is the feast of unleavened bread unto the LORD: seven days ye must eat unleavened bread.
9646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the first day ye shall have an holy convocation: ye shall do no servile work therein.
9647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But ye shall offer an offering made by fire unto the LORD seven days: in the seventh day is an holy convocation: ye shall do no servile work therein.
9648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak unto the children of Israel, and say unto them, When ye be come into the land which I give unto you, and shall reap the harvest thereof, then ye shall bring a sheaf of the firstfruits of your harvest unto the priest:
9650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he shall wave the sheaf before the LORD, to be accepted for you: on the morrow after the sabbath the priest shall wave it.
9651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye shall offer that day when ye wave the sheaf an he lamb without blemish of the first year for a burnt offering unto the LORD.
9652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the meat offering thereof shall be two tenth deals of fine flour mingled with oil, an offering made by fire unto the LORD for a sweet savor: and the drink offering thereof shall be of wine, the fourth part of an hin.
9653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ye shall eat neither bread, nor parched corn, nor green ears, until the selfsame day that ye have brought an offering unto your God: it shall be a statute for ever throughout your generations in all your dwellings.
9654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall count unto you from the morrow after the sabbath, from the day that ye brought the sheaf of the wave offering; seven sabbaths shall be complete:
9655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Even unto the morrow after the seventh sabbath shall ye number fifty days; and ye shall offer a new meat offering unto the LORD.
9656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ye shall bring out of your habitations two wave loaves of two tenth deals; they shall be of fine flour; they shall be baked with leaven; they are the firstfruits unto the LORD.
9657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ye shall offer with the bread seven lambs without blemish of the first year, and one young bullock, and two rams: they shall be for a burnt offering unto the LORD, with their meat offering, and their drink offerings, even an offering made by fire, of sweet savor unto the LORD.
9658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then ye shall sacrifice one kid of the goats for a sin offering, and two lambs of the first year for a sacrifice of peace offerings.
9659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall wave them with the bread of the firstfruits for a wave offering before the LORD, with the two lambs: they shall be holy to the LORD for the priest.
9660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ye shall proclaim on the selfsame day, that it may be an holy convocation unto you: ye shall do no servile work therein: it shall be a statute for ever in all your dwellings throughout your generations.
9661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when ye reap the harvest of your land, thou shalt not make clean riddance of the corners of thy field when thou reapest, neither shalt thou gather any gleaning of thy harvest: thou shalt leave them unto the poor, and to the stranger: I am the LORD your God.
9662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto the children of Israel, saying, In the seventh month, in the first day of the month, shall ye have a sabbath, a memorial of blowing of trumpets, an holy convocation.
9664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ye shall do no servile work therein: but ye shall offer an offering made by fire unto the LORD.
9665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also on the tenth day of this seventh month there shall be a day of atonement: it shall be an holy convocation unto you; and ye shall afflict your souls, and offer an offering made by fire unto the LORD.
9667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ye shall do no work in that same day: for it is a day of atonement, to make an atonement for you before the LORD your God.
9668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For whatsoever soul it be that shall not be afflicted in that same day, he shall be cut off from among his people.
9669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And whatsoever soul it be that doeth any work in that same day, the same soul will I destroy from among his people.
9670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ye shall do no manner of work: it shall be a statute for ever throughout your generations in all your dwellings.
9671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It shall be unto you a sabbath of rest, and ye shall afflict your souls: in the ninth day of the month at even, from even unto even, shall ye celebrate your sabbath.
9672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Speak unto the children of Israel, saying, The fifteenth day of this seventh month shall be the feast of tabernacles for seven days unto the LORD.
9674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            On the first day shall be an holy convocation: ye shall do no servile work therein.
9675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Seven days ye shall offer an offering made by fire unto the LORD: on the eighth day shall be an holy convocation unto you; and ye shall offer an offering made by fire unto the LORD: it is a solemn assembly; and ye shall do no servile work therein.
9676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the feasts of the LORD, which ye shall proclaim to be holy convocations, to offer an offering made by fire unto the LORD, a burnt offering, and a meat offering, a sacrifice, and drink offerings, every thing upon his day:
9677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Beside the sabbaths of the LORD, and beside your gifts, and beside all your vows, and beside all your freewill offerings, which ye give unto the LORD.
9678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Also in the fifteenth day of the seventh month, when ye have gathered in the fruit of the land, ye shall keep a feast unto the LORD seven days: on the first day shall be a sabbath, and on the eighth day shall be a sabbath.
9679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall take you on the first day the boughs of goodly trees, branches of palm trees, and the boughs of thick trees, and willows of the brook; and ye shall rejoice before the LORD your God seven days.
9680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall keep it a feast unto the LORD seven days in the year. It shall be a statute for ever in your generations: ye shall celebrate it in the seventh month.
9681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ye shall dwell in booths seven days; all that are Israelites born shall dwell in booths:
9682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    That your generations may know that I made the children of Israel to dwell in booths, when I brought them out of the land of Egypt: I am the LORD your God.
9683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses declared unto the children of Israel the feasts of the LORD.
9684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Command the children of Israel, that they bring unto thee pure oil olive beaten for the light, to cause the lamps to burn continually.
9686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Without the vail of the testimony, in the tabernacle of the congregation, shall Aaron order it from the evening unto the morning before the LORD continually: it shall be a statute for ever in your generations.
9687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He shall order the lamps upon the pure candlestick before the LORD continually.
9688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt take fine flour, and bake twelve cakes thereof: two tenth deals shall be in one cake.
9689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt set them in two rows, six on a row, upon the pure table before the LORD.
9690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt put pure frankincense upon each row, that it may be on the bread for a memorial, even an offering made by fire unto the LORD.
9691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Every sabbath he shall set it in order before the LORD continually, being taken from the children of Israel by an everlasting covenant.
9692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it shall be Aaron's and his sons'; and they shall eat it in the holy place: for it is most holy unto him of the offerings of the LORD made by fire by a perpetual statute.
9693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the son of an Israelitish woman, whose father was an Egyptian, went out among the children of Israel: and this son of the Israelitish woman and a man of Israel strove together in the camp;
9694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Israelitish woman's son blasphemed the name of the Lord, and cursed. And they brought him unto Moses: (and his mother's name was Shelomith, the daughter of Dibri, of the tribe of Dan:)
9695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they put him in ward, that the mind of the LORD might be showed them.
9696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Bring forth him that hath cursed without the camp; and let all that heard him lay their hands upon his head, and let all the congregation stone him.
9698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt speak unto the children of Israel, saying, Whosoever curseth his God shall bear his sin.
9699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that blasphemeth the name of the LORD, he shall surely be put to death, and all the congregation shall certainly stone him: as well the stranger, as he that is born in the land, when he blasphemeth the name of the Lord, shall be put to death.
9700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he that killeth any man shall surely be put to death.
9701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he that killeth a beast shall make it good; beast for beast.
9702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if a man cause a blemish in his neighbor; as he hath done, so shall it be done to him;
9703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Breach for breach, eye for eye, tooth for tooth: as he hath caused a blemish in a man, so shall it be done to him again.
9704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he that killeth a beast, he shall restore it: and he that killeth a man, he shall be put to death.
9705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ye shall have one manner of law, as well for the stranger, as for one of your own country: for I am the LORD your God.
9706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses spake to the children of Israel, that they should bring forth him that had cursed out of the camp, and stone him with stones. And the children of Israel did as the LORD commanded Moses.
9707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto Moses in mount Sinai, saying,
9708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Speak unto the children of Israel, and say unto them, When ye come into the land which I give you, then shall the land keep a sabbath unto the LORD.
9709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Six years thou shalt sow thy field, and six years thou shalt prune thy vineyard, and gather in the fruit thereof;
9710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But in the seventh year shall be a sabbath of rest unto the land, a sabbath for the LORD: thou shalt neither sow thy field, nor prune thy vineyard.
9711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That which groweth of its own accord of thy harvest thou shalt not reap, neither gather the grapes of thy vine undressed: for it is a year of rest unto the land.
9712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sabbath of the land shall be meat for you; for thee, and for thy servant, and for thy maid, and for thy hired servant, and for thy stranger that sojourneth with thee.
9713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And for thy cattle, and for the beast that are in thy land, shall all the increase thereof be meat.
9714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt number seven sabbaths of years unto thee, seven times seven years; and the space of the seven sabbaths of years shall be unto thee forty and nine years.
9715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then shalt thou cause the trumpet of the jubilee to sound on the tenth day of the seventh month, in the day of atonement shall ye make the trumpet sound throughout all your land.
9716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall hallow the fiftieth year, and proclaim liberty throughout all the land unto all the inhabitants thereof: it shall be a jubilee unto you; and ye shall return every man unto his possession, and ye shall return every man unto his family.
9717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A jubilee shall that fiftieth year be unto you: ye shall not sow, neither reap that which groweth of itself in it, nor gather the grapes in it of thy vine undressed.
9718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For it is the jubilee; it shall be holy unto you: ye shall eat the increase thereof out of the field.
9719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the year of this jubilee ye shall return every man unto his possession.
9720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if thou sell ought unto thy neighbor, or buyest ought of thy neighbor's hand, ye shall not oppress one another:
9721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               According to the number of years after the jubilee thou shalt buy of thy neighbor, and according unto the number of years of the fruits he shall sell unto thee:
9722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           According to the multitude of years thou shalt increase the price thereof, and according to the fewness of years thou shalt diminish the price of it: for according to the number of the years of the fruits doth he sell unto thee.
9723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall not therefore oppress one another; but thou shalt fear thy God: for I am the LORD your God.
9724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Wherefore ye shall do my statutes, and keep my judgments, and do them; and ye shall dwell in the land in safety.
9725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the land shall yield her fruit, and ye shall eat your fill, and dwell therein in safety.
9726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if ye shall say, What shall we eat the seventh year? behold, we shall not sow, nor gather in our increase:
9727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then I will command my blessing upon you in the sixth year, and it shall bring forth fruit for three years.
9728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ye shall sow the eighth year, and eat yet of old fruit until the ninth year; until her fruits come in ye shall eat of the old store.
9729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The land shall not be sold for ever: for the land is mine, for ye are strangers and sojourners with me.
9730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And in all the land of your possession ye shall grant a redemption for the land.
9731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If thy brother be waxen poor, and hath sold away some of his possession, and if any of his kin come to redeem it, then shall he redeem that which his brother sold.
9732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if the man have none to redeem it, and himself be able to redeem it;
9733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then let him count the years of the sale thereof, and restore the overplus unto the man to whom he sold it; that he may return unto his possession.
9734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But if he be not able to restore it to him, then that which is sold shall remain in the hand of him that hath bought it until the year of jubilee: and in the jubilee it shall go out, and he shall return unto his possession.
9735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if a man sell a dwelling house in a walled city, then he may redeem it within a whole year after it is sold; within a full year may he redeem it.
9736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if it be not redeemed within the space of a full year, then the house that is in the walled city shall be established for ever to him that bought it throughout his generations: it shall not go out in the jubilee.
9737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the houses of the villages which have no wall round about them shall be counted as the fields of the country: they may be redeemed, and they shall go out in the jubilee.
9738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Notwithstanding the cities of the Levites, and the houses of the cities of their possession, may the Levites redeem at any time.
9739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a man purchase of the Levites, then the house that was sold, and the city of his possession, shall go out in the year of jubilee: for the houses of the cities of the Levites are their possession among the children of Israel.
9740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the field of the suburbs of their cities may not be sold; for it is their perpetual possession.
9741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if thy brother be waxen poor, and fallen in decay with thee; then thou shalt relieve him: yea, though he be a stranger, or a sojourner; that he may live with thee.
9742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Take thou no usury of him, or increase: but fear thy God; that thy brother may live with thee.
9743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not give him thy money upon usury, nor lend him thy victuals for increase.
9744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am the LORD your God, which brought you forth out of the land of Egypt, to give you the land of Canaan, and to be your God.
9745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if thy brother that dwelleth by thee be waxen poor, and be sold unto thee; thou shalt not compel him to serve as a bondservant:
9746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But as an hired servant, and as a sojourner, he shall be with thee, and shall serve thee unto the year of jubilee.
9747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And then shall he depart from thee, both he and his children with him, and shall return unto his own family, and unto the possession of his fathers shall he return.
9748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For they are my servants, which I brought forth out of the land of Egypt: they shall not be sold as bondmen.
9749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not rule over him with rigor; but shalt fear thy God.
9750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Both thy bondmen, and thy bondmaids, which thou shalt have, shall be of the heathen that are round about you; of them shall ye buy bondmen and bondmaids.
9751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moreover of the children of the strangers that do sojourn among you, of them shall ye buy, and of their families that are with you, which they begat in your land: and they shall be your possession.
9752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ye shall take them as an inheritance for your children after you, to inherit them for a possession; they shall be your bondmen for ever: but over your brethren the children of Israel, ye shall not rule one over another with rigor.
9753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if a sojourner or stranger wax rich by thee, and thy brother that dwelleth by him wax poor, and sell himself unto the stranger or sojourner by thee, or to the stock of the stranger's family:
9754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            After that he is sold he may be redeemed again; one of his brethren may redeem him:
9755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Either his uncle, or his uncle's son, may redeem him, or any that is nigh of kin unto him of his family may redeem him; or if he be able, he may redeem himself.
9756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he shall reckon with him that bought him from the year that he was sold to him unto the year of jubilee: and the price of his sale shall be according unto the number of years, according to the time of an hired servant shall it be with him.
9757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If there be yet many years behind, according unto them he shall give again the price of his redemption out of the money that he was bought for.
9758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if there remain but few years unto the year of jubilee, then he shall count with him, and according unto his years shall he give him again the price of his redemption.
9759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And as a yearly hired servant shall he be with him: and the other shall not rule with rigor over him in thy sight.
9760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if he be not redeemed in these years, then he shall go out in the year of jubilee, both he, and his children with him.
9761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For unto me the children of Israel are servants; they are my servants whom I brought forth out of the land of Egypt: I am the LORD your God.
9762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ye shall make you no idols nor graven image, neither rear you up a standing image, neither shall ye set up any image of stone in your land, to bow down unto it: for I am the LORD your God.
9763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall keep my sabbaths, and reverence my sanctuary: I am the LORD.
9764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If ye walk in my statutes, and keep my commandments, and do them;
9765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then I will give you rain in due season, and the land shall yield her increase, and the trees of the field shall yield their fruit.
9766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And your threshing shall reach unto the vintage, and the vintage shall reach unto the sowing time: and ye shall eat your bread to the full, and dwell in your land safely.
9767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I will give peace in the land, and ye shall lie down, and none shall make you afraid: and I will rid evil beasts out of the land, neither shall the sword go through your land.
9768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye shall chase your enemies, and they shall fall before you by the sword.
9769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And five of you shall chase an hundred, and an hundred of you shall put ten thousand to flight: and your enemies shall fall before you by the sword.
9770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For I will have respect unto you, and make you fruitful, and multiply you, and establish my covenant with you.
9771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall eat old store, and bring forth the old because of the new.
9772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I set my tabernacle among you: and my soul shall not abhor you.
9773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I will walk among you, and will be your God, and ye shall be my people.
9774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I am the LORD your God, which brought you forth out of the land of Egypt, that ye should not be their bondmen; and I have broken the bands of your yoke, and made you go upright.
9775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if ye will not hearken unto me, and will not do all these commandments;
9776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if ye shall despise my statutes, or if your soul abhor my judgments, so that ye will not do all my commandments, but that ye break my covenant:
9777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I also will do this unto you; I will even appoint over you terror, consumption, and the burning ague, that shall consume the eyes, and cause sorrow of heart: and ye shall sow your seed in vain, for your enemies shall eat it.
9778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I will set my face against you, and ye shall be slain before your enemies: they that hate you shall reign over you; and ye shall flee when none pursueth you.
9779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if ye will not yet for all this hearken unto me, then I will punish you seven times more for your sins.
9780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I will break the pride of your power; and I will make your heaven as iron, and your earth as brass:
9781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And your strength shall be spent in vain: for your land shall not yield her increase, neither shall the trees of the land yield their fruits.
9782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if ye walk contrary unto me, and will not hearken unto me; I will bring seven times more plagues upon you according to your sins.
9783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I will also send wild beasts among you, which shall rob you of your children, and destroy your cattle, and make you few in number; and your high ways shall be desolate.
9784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if ye will not be reformed by me by these things, but will walk contrary unto me;
9785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then will I also walk contrary unto you, and will punish you yet seven times for your sins.
9786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will bring a sword upon you, that shall avenge the quarrel of my covenant: and when ye are gathered together within your cities, I will send the pestilence among you; and ye shall be delivered into the hand of the enemy.
9787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when I have broken the staff of your bread, ten women shall bake your bread in one oven, and they shall deliver you your bread again by weight: and ye shall eat, and not be satisfied.
9788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if ye will not for all this hearken unto me, but walk contrary unto me;
9789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then I will walk contrary unto you also in fury; and I, even I, will chastise you seven times for your sins.
9790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall eat the flesh of your sons, and the flesh of your daughters shall ye eat.
9791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I will destroy your high places, and cut down your images, and cast your carcasses upon the carcasses of your idols, and my soul shall abhor you.
9792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I will make your cities waste, and bring your sanctuaries unto desolation, and I will not smell the savor of your sweet odors.
9793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I will bring the land into desolation: and your enemies which dwell therein shall be astonished at it.
9794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will scatter you among the heathen, and will draw out a sword after you: and your land shall be desolate, and your cities waste.
9795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then shall the land enjoy her sabbaths, as long as it lieth desolate, and ye be in your enemies' land; even then shall the land rest, and enjoy her sabbaths.
9796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As long as it lieth desolate it shall rest; because it did not rest in your sabbaths, when ye dwelt upon it.
9797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And upon them that are left alive of you I will send a faintness into their hearts in the lands of their enemies; and the sound of a shaken leaf shall chase them; and they shall flee, as fleeing from a sword; and they shall fall when none pursueth.
9798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they shall fall one upon another, as it were before a sword, when none pursueth: and ye shall have no power to stand before your enemies.
9799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall perish among the heathen, and the land of your enemies shall eat you up.
9800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they that are left of you shall pine away in their iniquity in your enemies' lands; and also in the iniquities of their fathers shall they pine away with them.
9801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If they shall confess their iniquity, and the iniquity of their fathers, with their trespass which they trespassed against me, and that also they have walked contrary unto me;
9802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And that I also have walked contrary unto them, and have brought them into the land of their enemies; if then their uncircumcised hearts be humbled, and they then accept of the punishment of their iniquity:
9803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then will I remember my covenant with Jacob, and also my covenant with Isaac, and also my covenant with Abraham will I remember; and I will remember the land.
9804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The land also shall be left of them, and shall enjoy her sabbaths, while she lieth desolate without them: and they shall accept of the punishment of their iniquity: because, even because they despised my judgments, and because their soul abhorred my statutes.
9805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And yet for all that, when they be in the land of their enemies, I will not cast them away, neither will I abhor them, to destroy them utterly, and to break my covenant with them: for I am the LORD their God.
9806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But I will for their sakes remember the covenant of their ancestors, whom I brought forth out of the land of Egypt in the sight of the heathen, that I might be their God: I am the LORD.
9807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These are the statutes and judgments and laws, which the LORD made between him and the children of Israel in mount Sinai by the hand of Moses.
9808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto the children of Israel, and say unto them, When a man shall make a singular vow, the persons shall be for the LORD by thy estimation.
9810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thy estimation shall be of the male from twenty years old even unto sixty years old, even thy estimation shall be fifty shekels of silver, after the shekel of the sanctuary.
9811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if it be a female, then thy estimation shall be thirty shekels.
9812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if it be from five years old even unto twenty years old, then thy estimation shall be of the male twenty shekels, and for the female ten shekels.
9813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if it be from a month old even unto five years old, then thy estimation shall be of the male five shekels of silver, and for the female thy estimation shall be three shekels of silver.
9814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if it be from sixty years old and above; if it be a male, then thy estimation shall be fifteen shekels, and for the female ten shekels.
9815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if he be poorer than thy estimation, then he shall present himself before the priest, and the priest shall value him; according to his ability that vowed shall the priest value him.
9816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if it be a beast, whereof men bring an offering unto the LORD, all that any man giveth of such unto the LORD shall be holy.
9817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He shall not alter it, nor change it, a good for a bad, or a bad for a good: and if he shall at all change beast for beast, then it and the exchange thereof shall be holy.
9818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if it be any unclean beast, of which they do not offer a sacrifice unto the LORD, then he shall present the beast before the priest:
9819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the priest shall value it, whether it be good or bad: as thou valuest it, who art the priest, so shall it be.
9820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if he will at all redeem it, then he shall add a fifth part thereof unto thy estimation.
9821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when a man shall sanctify his house to be holy unto the LORD, then the priest shall estimate it, whether it be good or bad: as the priest shall estimate it, so shall it stand.
9822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if he that sanctified it will redeem his house, then he shall add the fifth part of the money of thy estimation unto it, and it shall be his.
9823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if a man shall sanctify unto the LORD some part of a field of his possession, then thy estimation shall be according to the seed thereof: an homer of barley seed shall be valued at fifty shekels of silver.
9824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If he sanctify his field from the year of jubilee, according to thy estimation it shall stand.
9825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But if he sanctify his field after the jubilee, then the priest shall reckon unto him the money according to the years that remain, even unto the year of the jubilee, and it shall be abated from thy estimation.
9826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if he that sanctified the field will in any wise redeem it, then he shall add the fifth part of the money of thy estimation unto it, and it shall be assured to him.
9827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if he will not redeem the field, or if he have sold the field to another man, it shall not be redeemed any more.
9828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But the field, when it goeth out in the jubilee, shall be holy unto the LORD, as a field devoted; the possession thereof shall be the priest's.
9829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if a man sanctify unto the LORD a field which he hath bought, which is not of the fields of his possession;
9830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the priest shall reckon unto him the worth of thy estimation, even unto the year of the jubilee: and he shall give thine estimation in that day, as a holy thing unto the LORD.
9831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In the year of the jubilee the field shall return unto him of whom it was bought, even to him to whom the possession of the land did belong.
9832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all thy estimations shall be according to the shekel of the sanctuary: twenty gerahs shall be the shekel.
9833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Only the firstling of the beasts, which should be the LORD's firstling, no man shall sanctify it; whether it be ox, or sheep: it is the LORD's.
9834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if it be of an unclean beast, then he shall redeem it according to thine estimation, and shall add a fifth part of it thereto: or if it be not redeemed, then it shall be sold according to thy estimation.
9835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Notwithstanding no devoted thing, that a man shall devote unto the LORD of all that he hath, both of man and beast, and of the field of his possession, shall be sold or redeemed: every devoted thing is most holy unto the LORD.
9836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              None devoted, which shall be devoted of men, shall be redeemed; but shall surely be put to death.
9837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the tithe of the land, whether of the seed of the land, or of the fruit of the tree, is the LORD's: it is holy unto the LORD.
9838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if a man will at all redeem ought of his tithes, he shall add thereto the fifth part thereof.
9839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And concerning the tithe of the herd, or of the flock, even of whatsoever passeth under the rod, the tenth shall be holy unto the LORD.
9840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He shall not search whether it be good or bad, neither shall he change it: and if he change it at all, then both it and the change thereof shall be holy; it shall not be redeemed.
9841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These are the commandments, which the LORD commanded Moses for the children of Israel in mount Sinai.
9842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses in the wilderness of Sinai, in the tabernacle of the congregation, on the first day of the second month, in the second year after they were come out of the land of Egypt, saying,
9843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Take ye the sum of all the congregation of the children of Israel, after their families, by the house of their fathers, with the number of their names, every male by their polls;
9844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            From twenty years old and upward, all that are able to go forth to war in Israel: thou and Aaron shall number them by their armies.
9845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And with you there shall be a man of every tribe; every one head of the house of his fathers.
9846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And these are the names of the men that shall stand with you: of the tribe of Reuben; Elizur the son of Shedeur.
9847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Of Simeon; Shelumiel the son of Zurishaddai.
9848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Of Judah; Nahshon the son of Amminadab.
9849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Of Issachar; Nethaneel the son of Zuar.
9850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of Zebulun; Eliab the son of Helon.
9851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the children of Joseph: of Ephraim; Elishama the son of Ammihud: of Manasseh; Gamaliel the son of Pedahzur.
9852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Of Benjamin; Abidan the son of Gideoni.
9853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Of Dan; Ahiezer the son of Ammishaddai.
9854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of Asher; Pagiel the son of Ocran.
9855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of Gad; Eliasaph the son of Deuel.
9856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of Naphtali; Ahira the son of Enan.
9857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These were the renowned of the congregation, princes of the tribes of their fathers, heads of thousands in Israel.
9858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses and Aaron took these men which are expressed by their names:
9859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they assembled all the congregation together on the first day of the second month, and they declared their pedigrees after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, by their polls.
9860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As the LORD commanded Moses, so he numbered them in the wilderness of Sinai.
9861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Reuben, Israel's eldest son, by their generations, after their families, by the house of their fathers, according to the number of the names, by their polls, every male from twenty years old and upward, all that were able to go forth to war;
9862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Those that were numbered of them, even of the tribe of Reuben, were forty and six thousand and five hundred.
9863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the children of Simeon, by their generations, after their families, by the house of their fathers, those that were numbered of them, according to the number of the names, by their polls, every male from twenty years old and upward, all that were able to go forth to war;
9864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those that were numbered of them, even of the tribe of Simeon, were fifty and nine thousand and three hundred.
9865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the children of Gad, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those that were numbered of them, even of the tribe of Gad, were forty and five thousand six hundred and fifty.
9867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of the children of Judah, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those that were numbered of them, even of the tribe of Judah, were threescore and fourteen thousand and six hundred.
9869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of the children of Issachar, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those that were numbered of them, even of the tribe of Issachar, were fifty and four thousand and four hundred.
9871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Of the children of Zebulun, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those that were numbered of them, even of the tribe of Zebulun, were fifty and seven thousand and four hundred.
9873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of the children of Joseph, namely, of the children of Ephraim, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Those that were numbered of them, even of the tribe of Ephraim, were forty thousand and five hundred.
9875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of the children of Manasseh, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Those that were numbered of them, even of the tribe of Manasseh, were thirty and two thousand and two hundred.
9877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of the children of Benjamin, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those that were numbered of them, even of the tribe of Benjamin, were thirty and five thousand and four hundred.
9879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the children of Dan, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Those that were numbered of them, even of the tribe of Dan, were threescore and two thousand and seven hundred.
9881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of the children of Asher, by their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Those that were numbered of them, even of the tribe of Asher, were forty and one thousand and five hundred.
9883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the children of Naphtali, throughout their generations, after their families, by the house of their fathers, according to the number of the names, from twenty years old and upward, all that were able to go forth to war;
9884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Those that were numbered of them, even of the tribe of Naphtali, were fifty and three thousand and four hundred.
9885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These are those that were numbered, which Moses and Aaron numbered, and the princes of Israel, being twelve men: each one was for the house of his fathers.
9886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So were all those that were numbered of the children of Israel, by the house of their fathers, from twenty years old and upward, all that were able to go forth to war in Israel;
9887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Even all they that were numbered were six hundred thousand and three thousand and five hundred and fifty.
9888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the Levites after the tribe of their fathers were not numbered among them.
9889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For the LORD had spoken unto Moses, saying,
9890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Only thou shalt not number the tribe of Levi, neither take the sum of them among the children of Israel:
9891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But thou shalt appoint the Levites over the tabernacle of testimony, and over all the vessels thereof, and over all things that belong to it: they shall bear the tabernacle, and all the vessels thereof; and they shall minister unto it, and shall encamp round about the tabernacle.
9892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when the tabernacle setteth forward, the Levites shall take it down: and when the tabernacle is to be pitched, the Levites shall set it up: and the stranger that cometh nigh shall be put to death.
9893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel shall pitch their tents, every man by his own camp, and every man by his own standard, throughout their hosts.
9894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the Levites shall pitch round about the tabernacle of testimony, that there be no wrath upon the congregation of the children of Israel: and the Levites shall keep the charge of the tabernacle of testimony.
9895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel did according to all that the LORD commanded Moses, so did they.
9896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto Moses and unto Aaron, saying,
9897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Every man of the children of Israel shall pitch by his own standard, with the ensign of their father's house: far off about the tabernacle of the congregation shall they pitch.
9898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And on the east side toward the rising of the sun shall they of the standard of the camp of Judah pitch throughout their armies: and Nahshon the son of Amminadab shall be captain of the children of Judah.
9899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And his host, and those that were numbered of them, were threescore and fourteen thousand and six hundred.
9900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And those that do pitch next unto him shall be the tribe of Issachar: and Nethaneel the son of Zuar shall be captain of the children of Issachar.
9901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And his host, and those that were numbered thereof, were fifty and four thousand and four hundred.
9902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the tribe of Zebulun: and Eliab the son of Helon shall be captain of the children of Zebulun.
9903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his host, and those that were numbered thereof, were fifty and seven thousand and four hundred.
9904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           All that were numbered in the camp of Judah were an hundred thousand and fourscore thousand and six thousand and four hundred, throughout their armies. These shall first set forth.
9905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         On the south side shall be the standard of the camp of Reuben according to their armies: and the captain of the children of Reuben shall be Elizur the son of Shedeur.
9906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And his host, and those that were numbered thereof, were forty and six thousand and five hundred.
9907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those which pitch by him shall be the tribe of Simeon: and the captain of the children of Simeon shall be Shelumiel the son of Zurishaddai.
9908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his host, and those that were numbered of them, were fifty and nine thousand and three hundred.
9909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the tribe of Gad: and the captain of the sons of Gad shall be Eliasaph the son of Reuel.
9910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And his host, and those that were numbered of them, were forty and five thousand and six hundred and fifty.
9911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All that were numbered in the camp of Reuben were an hundred thousand and fifty and one thousand and four hundred and fifty, throughout their armies. And they shall set forth in the second rank.
9912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then the tabernacle of the congregation shall set forward with the camp of the Levites in the midst of the camp: as they encamp, so shall they set forward, every man in his place by their standards.
9913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          On the west side shall be the standard of the camp of Ephraim according to their armies: and the captain of the sons of Ephraim shall be Elishama the son of Ammihud.
9914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his host, and those that were numbered of them, were forty thousand and five hundred.
9915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And by him shall be the tribe of Manasseh: and the captain of the children of Manasseh shall be Gamaliel the son of Pedahzur.
9916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And his host, and those that were numbered of them, were thirty and two thousand and two hundred.
9917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then the tribe of Benjamin: and the captain of the sons of Benjamin shall be Abidan the son of Gideoni.
9918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his host, and those that were numbered of them, were thirty and five thousand and four hundred.
9919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All that were numbered of the camp of Ephraim were an hundred thousand and eight thousand and an hundred, throughout their armies. And they shall go forward in the third rank.
9920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The standard of the camp of Dan shall be on the north side by their armies: and the captain of the children of Dan shall be Ahiezer the son of Ammishaddai.
9921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And his host, and those that were numbered of them, were threescore and two thousand and seven hundred.
9922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And those that encamp by him shall be the tribe of Asher: and the captain of the children of Asher shall be Pagiel the son of Ocran.
9923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And his host, and those that were numbered of them, were forty and one thousand and five hundred.
9924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then the tribe of Naphtali: and the captain of the children of Naphtali shall be Ahira the son of Enan.
9925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his host, and those that were numbered of them, were fifty and three thousand and four hundred.
9926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All they that were numbered in the camp of Dan were an hundred thousand and fifty and seven thousand and six hundred. They shall go hindmost with their standards.
9927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are those which were numbered of the children of Israel by the house of their fathers: all those that were numbered of the camps throughout their hosts were six hundred thousand and three thousand and five hundred and fifty.
9928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the Levites were not numbered among the children of Israel; as the LORD commanded Moses.
9929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the children of Israel did according to all that the LORD commanded Moses: so they pitched by their standards, and so they set forward, every one after their families, according to the house of their fathers.
9930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These also are the generations of Aaron and Moses in the day that the LORD spake with Moses in mount Sinai.
9931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And these are the names of the sons of Aaron; Nadab the firstborn, and Abihu, Eleazar, and Ithamar.
9932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These are the names of the sons of Aaron, the priests which were anointed, whom he consecrated to minister in the priest's office.
9933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Nadab and Abihu died before the LORD, when they offered strange fire before the LORD, in the wilderness of Sinai, and they had no children: and Eleazar and Ithamar ministered in the priest's office in the sight of Aaron their father.
9934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bring the tribe of Levi near, and present them before Aaron the priest, that they may minister unto him.
9936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they shall keep his charge, and the charge of the whole congregation before the tabernacle of the congregation, to do the service of the tabernacle.
9937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they shall keep all the instruments of the tabernacle of the congregation, and the charge of the children of Israel, to do the service of the tabernacle.
9938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt give the Levites unto Aaron and to his sons: they are wholly given unto him out of the children of Israel.
9939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt appoint Aaron and his sons, and they shall wait on their priest's office: and the stranger that cometh nigh shall be put to death.
9940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I, behold, I have taken the Levites from among the children of Israel instead of all the firstborn that openeth the matrix among the children of Israel: therefore the Levites shall be mine;
9942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Because all the firstborn are mine; for on the day that I smote all the firstborn in the land of Egypt I hallowed unto me all the firstborn in Israel, both man and beast: mine shall they be: I am the LORD.
9943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD spake unto Moses in the wilderness of Sinai, saying,
9944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Number the children of Levi after the house of their fathers, by their families: every male from a month old and upward shalt thou number them.
9945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses numbered them according to the word of the LORD, as he was commanded.
9946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And these were the sons of Levi by their names; Gershon, and Kohath, and Merari.
9947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And these are the names of the sons of Gershon by their families; Libni, and Shimei.
9948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Kohath by their families; Amram, and Izehar, Hebron, and Uzziel.
9949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Merari by their families; Mahli, and Mushi. These are the families of the Levites according to the house of their fathers.
9950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Of Gershon was the family of the Libnites, and the family of the Shimites: these are the families of the Gershonites.
9951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Those that were numbered of them, according to the number of all the males, from a month old and upward, even those that were numbered of them were seven thousand and five hundred.
9952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The families of the Gershonites shall pitch behind the tabernacle westward.
9953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the chief of the house of the father of the Gershonites shall be Eliasaph the son of Lael.
9954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the charge of the sons of Gershon in the tabernacle of the congregation shall be the tabernacle, and the tent, the covering thereof, and the hanging for the door of the tabernacle of the congregation,
9955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the hangings of the court, and the curtain for the door of the court, which is by the tabernacle, and by the altar round about, and the cords of it for all the service thereof.
9956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And of Kohath was the family of the Amramites, and the family of the Izeharites, and the family of the Hebronites, and the family of the Uzzielites: these are the families of the Kohathites.
9957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In the number of all the males, from a month old and upward, were eight thousand and six hundred, keeping the charge of the sanctuary.
9958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The families of the sons of Kohath shall pitch on the side of the tabernacle southward.
9959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the chief of the house of the father of the families of the Kohathites shall be Elizaphan the son of Uzziel.
9960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And their charge shall be the ark, and the table, and the candlestick, and the altars, and the vessels of the sanctuary wherewith they minister, and the hanging, and all the service thereof.
9961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Eleazar the son of Aaron the priest shall be chief over the chief of the Levites, and have the oversight of them that keep the charge of the sanctuary.
9962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of Merari was the family of the Mahlites, and the family of the Mushites: these are the families of Merari.
9963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those that were numbered of them, according to the number of all the males, from a month old and upward, were six thousand and two hundred.
9964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the chief of the house of the father of the families of Merari was Zuriel the son of Abihail: these shall pitch on the side of the tabernacle northward.
9965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And under the custody and charge of the sons of Merari shall be the boards of the tabernacle, and the bars thereof, and the pillars thereof, and the sockets thereof, and all the vessels thereof, and all that serveth thereto,
9966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the pillars of the court round about, and their sockets, and their pins, and their cords.
9967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But those that encamp before the tabernacle toward the east, even before the tabernacle of the congregation eastward, shall be Moses, and Aaron and his sons, keeping the charge of the sanctuary for the charge of the children of Israel; and the stranger that cometh nigh shall be put to death.
9968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All that were numbered of the Levites, which Moses and Aaron numbered at the commandment of the LORD, throughout their families, all the males from a month old and upward, were twenty and two thousand.
9969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Moses, Number all the firstborn of the males of the children of Israel from a month old and upward, and take the number of their names.
9970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt take the Levites for me (I am the LORD) instead of all the firstborn among the children of Israel; and the cattle of the Levites instead of all the firstlings among the cattle of the children of Israel.
9971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses numbered, as the LORD commanded him, all the firstborn among the children of Israel.
9972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all the firstborn males by the number of names, from a month old and upward, of those that were numbered of them, were twenty and two thousand two hundred and threescore and thirteen.
9973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses, saying,
9974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Take the Levites instead of all the firstborn among the children of Israel, and the cattle of the Levites instead of their cattle; and the Levites shall be mine: I am the LORD.
9975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And for those that are to be redeemed of the two hundred and threescore and thirteen of the firstborn of the children of Israel, which are more than the Levites;
9976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt even take five shekels apiece by the poll, after the shekel of the sanctuary shalt thou take them: (the shekel is twenty gerahs:)
9977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt give the money, wherewith the odd number of them is to be redeemed, unto Aaron and to his sons.
9978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses took the redemption money of them that were over and above them that were redeemed by the Levites:
9979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the firstborn of the children of Israel took he the money; a thousand three hundred and threescore and five shekels, after the shekel of the sanctuary:
9980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses gave the money of them that were redeemed unto Aaron and to his sons, according to the word of the LORD, as the LORD commanded Moses.
9981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD spake unto Moses and unto Aaron, saying,
9982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Take the sum of the sons of Kohath from among the sons of Levi, after their families, by the house of their fathers,
9983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               From thirty years old and upward even until fifty years old, all that enter into the host, to do the work in the tabernacle of the congregation.
9984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This shall be the service of the sons of Kohath in the tabernacle of the congregation, about the most holy things:
9985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when the camp setteth forward, Aaron shall come, and his sons, and they shall take down the covering vail, and cover the ark of testimony with it:
9986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And shall put thereon the covering of badgers' skins, and shall spread over it a cloth wholly of blue, and shall put in the staves thereof.
9987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And upon the table of showbread they shall spread a cloth of blue, and put thereon the dishes, and the spoons, and the bowls, and covers to cover withal: and the continual bread shall be thereon:
9988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they shall spread upon them a cloth of scarlet, and cover the same with a covering of badgers' skins, and shall put in the staves thereof.
9989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they shall take a cloth of blue, and cover the candlestick of the light, and his lamps, and his tongs, and his snuffdishes, and all the oil vessels thereof, wherewith they minister unto it:
9990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they shall put it and all the vessels thereof within a covering of badgers' skins, and shall put it upon a bar.
9991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And upon the golden altar they shall spread a cloth of blue, and cover it with a covering of badgers' skins, and shall put to the staves thereof:
9992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they shall take all the instruments of ministry, wherewith they minister in the sanctuary, and put them in a cloth of blue, and cover them with a covering of badgers' skins, and shall put them on a bar:
9993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they shall take away the ashes from the altar, and spread a purple cloth thereon:
9994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they shall put upon it all the vessels thereof, wherewith they minister about it, even the censers, the fleshhooks, and the shovels, and the basins, all the vessels of the altar; and they shall spread upon it a covering of badgers' skins, and put to the staves of it.
9995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Aaron and his sons have made an end of covering the sanctuary, and all the vessels of the sanctuary, as the camp is to set forward; after that, the sons of Kohath shall come to bear it: but they shall not touch any holy thing, lest they die. These things are the burden of the sons of Kohath in the tabernacle of the congregation.
9996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And to the office of Eleazar the son of Aaron the priest pertaineth the oil for the light, and the sweet incense, and the daily meat offering, and the anointing oil, and the oversight of all the tabernacle, and of all that therein is, in the sanctuary, and in the vessels thereof.
9997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto Moses and unto Aaron saying,
9998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Cut ye not off the tribe of the families of the Kohathites from among the Levites:
9999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But thus do unto them, that they may live, and not die, when they approach unto the most holy things: Aaron and his sons shall go in, and appoint them every one to his service and to his burden:
10000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But they shall not go in to see when the holy things are covered, lest they die.
10001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Take also the sum of the sons of Gershon, throughout the houses of their fathers, by their families;
10003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                From thirty years old and upward until fifty years old shalt thou number them; all that enter in to perform the service, to do the work in the tabernacle of the congregation.
10004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is the service of the families of the Gershonites, to serve, and for burdens:
10005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they shall bear the curtains of the tabernacle, and the tabernacle of the congregation, his covering, and the covering of the badgers' skins that is above upon it, and the hanging for the door of the tabernacle of the congregation,
10006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the hangings of the court, and the hanging for the door of the gate of the court, which is by the tabernacle and by the altar round about, and their cords, and all the instruments of their service, and all that is made for them: so shall they serve.
10007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 At the appointment of Aaron and his sons shall be all the service of the sons of the Gershonites, in all their burdens, and in all their service: and ye shall appoint unto them in charge all their burdens.
10008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is the service of the families of the sons of Gershon in the tabernacle of the congregation: and their charge shall be under the hand of Ithamar the son of Aaron the priest.
10009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As for the sons of Merari, thou shalt number them after their families, by the house of their fathers;
10010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            From thirty years old and upward even unto fifty years old shalt thou number them, every one that entereth into the service, to do the work of the tabernacle of the congregation.
10011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this is the charge of their burden, according to all their service in the tabernacle of the congregation; the boards of the tabernacle, and the bars thereof, and the pillars thereof, and sockets thereof,
10012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the pillars of the court round about, and their sockets, and their pins, and their cords, with all their instruments, and with all their service: and by name ye shall reckon the instruments of the charge of their burden.
10013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is the service of the families of the sons of Merari, according to all their service, in the tabernacle of the congregation, under the hand of Ithamar the son of Aaron the priest.
10014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses and Aaron and the chief of the congregation numbered the sons of the Kohathites after their families, and after the house of their fathers,
10015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     From thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation:
10016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And those that were numbered of them by their families were two thousand seven hundred and fifty.
10017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These were they that were numbered of the families of the Kohathites, all that might do service in the tabernacle of the congregation, which Moses and Aaron did number according to the commandment of the LORD by the hand of Moses.
10018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And those that were numbered of the sons of Gershon, throughout their families, and by the house of their fathers,
10019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     From thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation,
10020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Even those that were numbered of them, throughout their families, by the house of their fathers, were two thousand and six hundred and thirty.
10021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       These are they that were numbered of the families of the sons of Gershon, of all that might do service in the tabernacle of the congregation, whom Moses and Aaron did number according to the commandment of the LORD.
10022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And those that were numbered of the families of the sons of Merari, throughout their families, by the house of their fathers,
10023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     From thirty years old and upward even unto fifty years old, every one that entereth into the service, for the work in the tabernacle of the congregation,
10024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Even those that were numbered of them after their families, were three thousand and two hundred.
10025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These be those that were numbered of the families of the sons of Merari, whom Moses and Aaron numbered according to the word of the LORD by the hand of Moses.
10026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All those that were numbered of the Levites, whom Moses and Aaron and the chief of Israel numbered, after their families, and after the house of their fathers,
10027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From thirty years old and upward even unto fifty years old, every one that came to do the service of the ministry, and the service of the burden in the tabernacle of the congregation.
10028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Even those that were numbered of them, were eight thousand and five hundred and fourscore,
10029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               According to the commandment of the LORD they were numbered by the hand of Moses, every one according to his service, and according to his burden: thus were they numbered of him, as the LORD commanded Moses.
10030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Command the children of Israel, that they put out of the camp every leper, and every one that hath an issue, and whosoever is defiled by the dead:
10032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Both male and female shall ye put out, without the camp shall ye put them; that they defile not their camps, in the midst whereof I dwell.
10033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel did so, and put them out without the camp: as the LORD spake unto Moses, so did the children of Israel.
10034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, When a man or woman shall commit any sin that men commit, to do a trespass against the LORD, and that person be guilty;
10036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then they shall confess their sin which they have done: and he shall recompense his trespass with the principal thereof, and add unto it the fifth part thereof, and give it unto him against whom he hath trespassed.
10037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if the man have no kinsman to recompense the trespass unto, let the trespass be recompensed unto the LORD, even to the priest; beside the ram of the atonement, whereby an atonement shall be made for him.
10038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And every offering of all the holy things of the children of Israel, which they bring unto the priest, shall be his.
10039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And every man's hallowed things shall be his: whatsoever any man giveth the priest, it shall be his.
10040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Speak unto the children of Israel, and say unto them, If any man's wife go aside, and commit a trespass against him,
10042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And a man lie with her carnally, and it be hid from the eyes of her husband, and be kept close, and she be defiled, and there be no witness against her, neither she be taken with the manner;
10043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the spirit of jealousy come upon him, and he be jealous of his wife, and she be defiled: or if the spirit of jealousy come upon him, and he be jealous of his wife, and she be not defiled:
10044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then shall the man bring his wife unto the priest, and he shall bring her offering for her, the tenth part of an ephah of barley meal; he shall pour no oil upon it, nor put frankincense thereon; for it is an offering of jealousy, an offering of memorial, bringing iniquity to remembrance.
10045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the priest shall bring her near, and set her before the LORD:
10046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the priest shall take holy water in an earthen vessel; and of the dust that is in the floor of the tabernacle the priest shall take, and put it into the water:
10047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the priest shall set the woman before the LORD, and uncover the woman's head, and put the offering of memorial in her hands, which is the jealousy offering: and the priest shall have in his hand the bitter water that causeth the curse:
10048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the priest shall charge her by an oath, and say unto the woman, If no man have lain with thee, and if thou hast not gone aside to uncleanness with another instead of thy husband, be thou free from this bitter water that causeth the curse:
10049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if thou hast gone aside to another instead of thy husband, and if thou be defiled, and some man have lain with thee beside thine husband:
10050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the priest shall charge the woman with an oath of cursing, and the priest shall say unto the woman, The LORD make thee a curse and an oath among thy people, when the LORD doth make thy thigh to rot, and thy belly to swell;
10051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And this water that causeth the curse shall go into thy bowels, to make thy belly to swell, and thy thigh to rot: And the woman shall say, Amen, amen.
10052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the priest shall write these curses in a book, and he shall blot them out with the bitter water:
10053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he shall cause the woman to drink the bitter water that causeth the curse: and the water that causeth the curse shall enter into her, and become bitter.
10054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the priest shall take the jealousy offering out of the woman's hand, and shall wave the offering before the LORD, and offer it upon the altar:
10055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the priest shall take an handful of the offering, even the memorial thereof, and burn it upon the altar, and afterward shall cause the woman to drink the water.
10056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when he hath made her to drink the water, then it shall come to pass, that, if she be defiled, and have done trespass against her husband, that the water that causeth the curse shall enter into her, and become bitter, and her belly shall swell, and her thigh shall rot: and the woman shall be a curse among her people.
10057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if the woman be not defiled, but be clean; then she shall be free, and shall conceive seed.
10058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the law of jealousies, when a wife goeth aside to another instead of her husband, and is defiled;
10059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Or when the spirit of jealousy cometh upon him, and he be jealous over his wife, and shall set the woman before the LORD, and the priest shall execute upon her all this law.
10060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then shall the man be guiltless from iniquity, and this woman shall bear her iniquity.
10061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, and say unto them, When either man or woman shall separate themselves to vow a vow of a Nazarite, to separate themselves unto the LORD:
10063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He shall separate himself from wine and strong drink, and shall drink no vinegar of wine, or vinegar of strong drink, neither shall he drink any liquor of grapes, nor eat moist grapes, or dried.
10064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         All the days of his separation shall he eat nothing that is made of the vine tree, from the kernels even to the husk.
10065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     All the days of the vow of his separation there shall no razor come upon his head: until the days be fulfilled, in the which he separateth himself unto the LORD, he shall be holy, and shall let the locks of the hair of his head grow.
10066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All the days that he separateth himself unto the LORD he shall come at no dead body.
10067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He shall not make himself unclean for his father, or for his mother, for his brother, or for his sister, when they die: because the consecration of his God is upon his head.
10068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All the days of his separation he is holy unto the LORD.
10069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if any man die very suddenly by him, and he hath defiled the head of his consecration; then he shall shave his head in the day of his cleansing, on the seventh day shall he shave it.
10070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And on the eighth day he shall bring two turtles, or two young pigeons, to the priest, to the door of the tabernacle of the congregation:
10071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the priest shall offer the one for a sin offering, and the other for a burnt offering, and make an atonement for him, for that he sinned by the dead, and shall hallow his head that same day.
10072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he shall consecrate unto the LORD the days of his separation, and shall bring a lamb of the first year for a trespass offering: but the days that were before shall be lost, because his separation was defiled.
10073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And this is the law of the Nazarite, when the days of his separation are fulfilled: he shall be brought unto the door of the tabernacle of the congregation:
10074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he shall offer his offering unto the LORD, one he lamb of the first year without blemish for a burnt offering, and one ewe lamb of the first year without blemish for a sin offering, and one ram without blemish for peace offerings,
10075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And a basket of unleavened bread, cakes of fine flour mingled with oil, and wafers of unleavened bread anointed with oil, and their meat offering, and their drink offerings.
10076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priest shall bring them before the LORD, and shall offer his sin offering, and his burnt offering:
10077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall offer the ram for a sacrifice of peace offerings unto the LORD, with the basket of unleavened bread: the priest shall offer also his meat offering, and his drink offering.
10078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the Nazarite shall shave the head of his separation at the door of the tabernacle of the congregation, and shall take the hair of the head of his separation, and put it in the fire which is under the sacrifice of the peace offerings.
10079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall take the sodden shoulder of the ram, and one unleavened cake out of the basket, and one unleavened wafer, and shall put them upon the hands of the Nazarite, after the hair of his separation is shaven:
10080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the priest shall wave them for a wave offering before the LORD: this is holy for the priest, with the wave breast and heave shoulder: and after that the Nazarite may drink wine.
10081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is the law of the Nazarite who hath vowed, and of his offering unto the LORD for his separation, beside that that his hand shall get: according to the vow which he vowed, so he must do after the law of his separation.
10082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Speak unto Aaron and unto his sons, saying, On this wise ye shall bless the children of Israel, saying unto them,
10084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD bless thee, and keep thee:
10085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD make his face shine upon thee, and be gracious unto thee:
10086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD lift up his countenance upon thee, and give thee peace.
10087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they shall put my name upon the children of Israel, and I will bless them.
10088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass on the day that Moses had fully set up the tabernacle, and had anointed it, and sanctified it, and all the instruments thereof, both the altar and all the vessels thereof, and had anointed them, and sanctified them;
10089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That the princes of Israel, heads of the house of their fathers, who were the princes of the tribes, and were over them that were numbered, offered:
10090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they brought their offering before the LORD, six covered wagons, and twelve oxen; a wagon for two of the princes, and for each one an ox: and they brought them before the tabernacle.
10091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Take it of them, that they may be to do the service of the tabernacle of the congregation; and thou shalt give them unto the Levites, to every man according to his service.
10093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses took the wagons and the oxen, and gave them unto the Levites.
10094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Two wagons and four oxen he gave unto the sons of Gershon, according to their service:
10095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And four wagons and eight oxen he gave unto the sons of Merari, according unto their service, under the hand of Ithamar the son of Aaron the priest.
10096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But unto the sons of Kohath he gave none: because the service of the sanctuary belonging unto them was that they should bear upon their shoulders.
10097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the princes offered for dedicating of the altar in the day that it was anointed, even the princes offered their offering before the altar.
10098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto Moses, They shall offer their offering, each prince on his day, for the dedicating of the altar.
10099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he that offered his offering the first day was Nahshon the son of Amminadab, of the tribe of Judah:
10100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And his offering was one silver charger, the weight thereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them were full of fine flour mingled with oil for a meat offering:
10101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One spoon of ten shekels of gold, full of incense:
10102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Nahshon the son of Amminadab.
10105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   On the second day Nethaneel the son of Zuar, prince of Issachar, did offer:
10106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He offered for his offering one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One spoon of gold of ten shekels, full of incense:
10108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Nethaneel the son of Zuar.
10111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the third day Eliab the son of Helon, prince of the children of Zebulun, did offer:
10112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Eliab the son of Helon.
10117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     On the fourth day Elizur the son of Shedeur, prince of the children of Reuben, did offer:
10118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              His offering was one silver charger of the weight of an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Elizur the son of Shedeur.
10123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               On the fifth day Shelumiel the son of Zurishaddai, prince of the children of Simeon, did offer:
10124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Shelumiel the son of Zurishaddai.
10129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           On the sixth day Eliasaph the son of Deuel, prince of the children of Gad, offered:
10130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                His offering was one silver charger of the weight of an hundred and thirty shekels, a silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Eliasaph the son of Deuel.
10135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   On the seventh day Elishama the son of Ammihud, prince of the children of Ephraim, offered:
10136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Elishama the son of Ammihud.
10141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   On the eighth day offered Gamaliel the son of Pedahzur, prince of the children of Manasseh:
10142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              His offering was one silver charger of the weight of an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Gamaliel the son of Pedahzur.
10147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On the ninth day Abidan the son of Gideoni, prince of the children of Benjamin, offered:
10148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Abidan the son of Gideoni.
10153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      On the tenth day Ahiezer the son of Ammishaddai, prince of the children of Dan, offered:
10154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Ahiezer the son of Ammishaddai.
10159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the eleventh day Pagiel the son of Ocran, prince of the children of Asher, offered:
10160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Pagiel the son of Ocran.
10165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the twelfth day Ahira the son of Enan, prince of the children of Naphtali, offered:
10166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       His offering was one silver charger, the weight whereof was an hundred and thirty shekels, one silver bowl of seventy shekels, after the shekel of the sanctuary; both of them full of fine flour mingled with oil for a meat offering:
10167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             One golden spoon of ten shekels, full of incense:
10168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One young bullock, one ram, one lamb of the first year, for a burnt offering:
10169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering:
10170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And for a sacrifice of peace offerings, two oxen, five rams, five he goats, five lambs of the first year: this was the offering of Ahira the son of Enan.
10171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This was the dedication of the altar, in the day when it was anointed, by the princes of Israel: twelve chargers of silver, twelve silver bowls, twelve spoons of gold:
10172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Each charger of silver weighing an hundred and thirty shekels, each bowl seventy: all the silver vessels weighed two thousand and four hundred shekels, after the shekel of the sanctuary:
10173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The golden spoons were twelve, full of incense, weighing ten shekels apiece, after the shekel of the sanctuary: all the gold of the spoons was an hundred and twenty shekels.
10174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All the oxen for the burnt offering were twelve bullocks, the rams twelve, the lambs of the first year twelve, with their meat offering: and the kids of the goats for sin offering twelve.
10175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the oxen for the sacrifice of the peace offerings were twenty and four bullocks, the rams sixty, the he goats sixty, the lambs of the first year sixty. This was the dedication of the altar, after that it was anointed.
10176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when Moses was gone into the tabernacle of the congregation to speak with him, then he heard the voice of one speaking unto him from off the mercy seat that was upon the ark of testimony, from between the two cherubim: and he spake unto him.
10177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto Aaron and say unto him, When thou lightest the lamps, the seven lamps shall give light over against the candlestick.
10179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Aaron did so; he lighted the lamps thereof over against the candlestick, as the LORD commanded Moses.
10180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this work of the candlestick was of beaten gold, unto the shaft thereof, unto the flowers thereof, was beaten work: according unto the pattern which the LORD had showed Moses, so he made the candlestick.
10181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Take the Levites from among the children of Israel, and cleanse them.
10183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thus shalt thou do unto them, to cleanse them: Sprinkle water of purifying upon them, and let them shave all their flesh, and let them wash their clothes, and so make themselves clean.
10184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then let them take a young bullock with his meat offering, even fine flour mingled with oil, and another young bullock shalt thou take for a sin offering.
10185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt bring the Levites before the tabernacle of the congregation: and thou shalt gather the whole assembly of the children of Israel together:
10186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thou shalt bring the Levites before the LORD: and the children of Israel shall put their hands upon the Levites:
10187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Aaron shall offer the Levites before the LORD for an offering of the children of Israel, that they may execute the service of the LORD.
10188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Levites shall lay their hands upon the heads of the bullocks: and thou shalt offer the one for a sin offering, and the other for a burnt offering, unto the LORD, to make an atonement for the Levites.
10189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt set the Levites before Aaron, and before his sons, and offer them for an offering unto the LORD.
10190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus shalt thou separate the Levites from among the children of Israel: and the Levites shall be mine.
10191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And after that shall the Levites go in to do the service of the tabernacle of the congregation: and thou shalt cleanse them, and offer them for an offering.
10192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For they are wholly given unto me from among the children of Israel; instead of such as open every womb, even instead of the firstborn of all the children of Israel, have I taken them unto me.
10193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For all the firstborn of the children of Israel are mine, both man and beast: on the day that I smote every firstborn in the land of Egypt I sanctified them for myself.
10194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I have taken the Levites for all the firstborn of the children of Israel.
10195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I have given the Levites as a gift to Aaron and to his sons from among the children of Israel, to do the service of the children of Israel in the tabernacle of the congregation, and to make an atonement for the children of Israel: that there be no plague among the children of Israel, when the children of Israel come nigh unto the sanctuary.
10196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses, and Aaron, and all the congregation of the children of Israel, did to the Levites according unto all that the LORD commanded Moses concerning the Levites, so did the children of Israel unto them.
10197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the Levites were purified, and they washed their clothes; and Aaron offered them as an offering before the LORD; and Aaron made an atonement for them to cleanse them.
10198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And after that went the Levites in to do their service in the tabernacle of the congregation before Aaron, and before his sons: as the LORD had commanded Moses concerning the Levites, so did they unto them.
10199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This is it that belongeth unto the Levites: from twenty and five years old and upward they shall go in to wait upon the service of the tabernacle of the congregation:
10201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And from the age of fifty years they shall cease waiting upon the service thereof, and shall serve no more:
10202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But shall minister with their brethren in the tabernacle of the congregation, to keep the charge, and shall do no service. Thus shalt thou do unto the Levites touching their charge.
10203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses in the wilderness of Sinai, in the first month of the second year after they were come out of the land of Egypt, saying,
10204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Let the children of Israel also keep the passover at his appointed season.
10205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In the fourteenth day of this month, at even, ye shall keep it in his appointed season: according to all the rites of it, and according to all the ceremonies thereof, shall ye keep it.
10206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses spake unto the children of Israel, that they should keep the passover.
10207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they kept the passover on the fourteenth day of the first month at even in the wilderness of Sinai: according to all that the LORD commanded Moses, so did the children of Israel.
10208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there were certain men, who were defiled by the dead body of a man, that they could not keep the passover on that day: and they came before Moses and before Aaron on that day:
10209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And those men said unto him, We are defiled by the dead body of a man: wherefore are we kept back, that we may not offer an offering of the LORD in his appointed season among the children of Israel?
10210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses said unto them, Stand still, and I will hear what the LORD will command concerning you.
10211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Speak unto the children of Israel, saying, If any man of you or of your posterity shall be unclean by reason of a dead body, or be in a journey afar off, yet he shall keep the passover unto the LORD.
10213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The fourteenth day of the second month at even they shall keep it, and eat it with unleavened bread and bitter herbs.
10214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   They shall leave none of it unto the morning, nor break any bone of it: according to all the ordinances of the passover they shall keep it.
10215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But the man that is clean, and is not in a journey, and forbeareth to keep the passover, even the same soul shall be cut off from among his people: because he brought not the offering of the LORD in his appointed season, that man shall bear his sin.
10216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And if a stranger shall sojourn among you, and will keep the passover unto the LORD; according to the ordinance of the passover, and according to the manner thereof, so shall he do: ye shall have one ordinance, both for the stranger, and for him that was born in the land.
10217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And on the day that the tabernacle was reared up the cloud covered the tabernacle, namely, the tent of the testimony: and at even there was upon the tabernacle as it were the appearance of fire, until the morning.
10218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So it was alway: the cloud covered it by day, and the appearance of fire by night.
10219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when the cloud was taken up from the tabernacle, then after that the children of Israel journeyed: and in the place where the cloud abode, there the children of Israel pitched their tents.
10220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  At the commandment of the LORD the children of Israel journeyed, and at the commandment of the LORD they pitched: as long as the cloud abode upon the tabernacle they rested in their tents.
10221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the cloud tarried long upon the tabernacle many days, then the children of Israel kept the charge of the LORD, and journeyed not.
10222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And so it was, when the cloud was a few days upon the tabernacle; according to the commandment of the LORD they abode in their tents, and according to the commandment of the LORD they journeyed.
10223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And so it was, when the cloud abode from even unto the morning, and that the cloud was taken up in the morning, then they journeyed: whether it was by day or by night that the cloud was taken up, they journeyed.
10224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or whether it were two days, or a month, or a year, that the cloud tarried upon the tabernacle, remaining thereon, the children of Israel abode in their tents, and journeyed not: but when it was taken up, they journeyed.
10225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            At the commandment of the LORD they rested in the tents, and at the commandment of the LORD they journeyed: they kept the charge of the LORD, at the commandment of the LORD by the hand of Moses.
10226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make thee two trumpets of silver; of a whole piece shalt thou make them: that thou mayest use them for the calling of the assembly, and for the journeying of the camps.
10228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when they shall blow with them, all the assembly shall assemble themselves to thee at the door of the tabernacle of the congregation.
10229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if they blow but with one trumpet, then the princes, which are heads of the thousands of Israel, shall gather themselves unto thee.
10230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When ye blow an alarm, then the camps that lie on the east parts shall go forward.
10231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When ye blow an alarm the second time, then the camps that lie on the south side shall take their journey: they shall blow an alarm for their journeys.
10232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But when the congregation is to be gathered together, ye shall blow, but ye shall not sound an alarm.
10233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Aaron, the priests, shall blow with the trumpets; and they shall be to you for an ordinance for ever throughout your generations.
10234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if ye go to war in your land against the enemy that oppresseth you, then ye shall blow an alarm with the trumpets; and ye shall be remembered before the LORD your God, and ye shall be saved from your enemies.
10235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also in the day of your gladness, and in your solemn days, and in the beginnings of your months, ye shall blow with the trumpets over your burnt offerings, and over the sacrifices of your peace offerings; that they may be to you for a memorial before your God: I am the LORD your God.
10236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass on the twentieth day of the second month, in the second year, that the cloud was taken up from off the tabernacle of the testimony.
10237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Israel took their journeys out of the wilderness of Sinai; and the cloud rested in the wilderness of Paran.
10238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they first took their journey according to the commandment of the LORD by the hand of Moses.
10239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In the first place went the standard of the camp of the children of Judah according to their armies: and over his host was Nahshon the son of Amminadab.
10240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And over the host of the tribe of the children of Issachar was Nethaneel the son of Zuar.
10241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And over the host of the tribe of the children of Zebulun was Eliab the son of Helon.
10242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the tabernacle was taken down; and the sons of Gershon and the sons of Merari set forward, bearing the tabernacle.
10243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the standard of the camp of Reuben set forward according to their armies: and over his host was Elizur the son of Shedeur.
10244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And over the host of the tribe of the children of Simeon was Shelumiel the son of Zurishaddai.
10245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And over the host of the tribe of the children of Gad was Eliasaph the son of Deuel.
10246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the Kohathites set forward, bearing the sanctuary: and the other did set up the tabernacle against they came.
10247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the standard of the camp of the children of Ephraim set forward according to their armies: and over his host was Elishama the son of Ammihud.
10248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And over the host of the tribe of the children of Manasseh was Gamaliel the son of Pedahzur.
10249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And over the host of the tribe of the children of Benjamin was Abidan the son of Gideoni.
10250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the standard of the camp of the children of Dan set forward, which was the rearward of all the camps throughout their hosts: and over his host was Ahiezer the son of Ammishaddai.
10251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And over the host of the tribe of the children of Asher was Pagiel the son of Ocran.
10252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And over the host of the tribe of the children of Naphtali was Ahira the son of Enan.
10253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thus were the journeyings of the children of Israel according to their armies, when they set forward.
10254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto Hobab, the son of Raguel the Midianite, Moses' father in law, We are journeying unto the place of which the LORD said, I will give it you: come thou with us, and we will do thee good: for the LORD hath spoken good concerning Israel.
10255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto him, I will not go; but I will depart to mine own land, and to my kindred.
10256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Leave us not, I pray thee; forasmuch as thou knowest how we are to encamp in the wilderness, and thou mayest be to us instead of eyes.
10257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it shall be, if thou go with us, yea, it shall be, that what goodness the LORD shall do unto us, the same will we do unto thee.
10258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they departed from the mount of the LORD three days' journey: and the ark of the covenant of the LORD went before them in the three days' journey, to search out a resting place for them.
10259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the cloud of the LORD was upon them by day, when they went out of the camp.
10260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when the ark set forward, that Moses said, Rise up, LORD, and let thine enemies be scattered; and let them that hate thee flee before thee.
10261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when it rested, he said, Return, O LORD, unto the many thousands of Israel.
10262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when the people complained, it displeased the LORD: and the LORD heard it; and his anger was kindled; and the fire of the LORD burnt among them, and consumed them that were in the uttermost parts of the camp.
10263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the people cried unto Moses; and when Moses prayed unto the LORD, the fire was quenched.
10264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he called the name of the place Taberah: because the fire of the LORD burnt among them.
10265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the mixed multitude that was among them fell a lusting: and the children of Israel also wept again, and said, Who shall give us flesh to eat?
10266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         We remember the fish, which we did eat in Egypt freely; the cucumbers, and the melons, and the leeks, and the onions, and the garlic:
10267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But now our soul is dried away: there is nothing at all, beside this manna, before our eyes.
10268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the manna was as coriander seed, and the color thereof as the color of bdellium.
10269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the people went about, and gathered it, and ground it in mills, or beat it in a mortar, and baked it in pans, and made cakes of it: and the taste of it was as the taste of fresh oil.
10270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when the dew fell upon the camp in the night, the manna fell upon it.
10271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Moses heard the people weep throughout their families, every man in the door of his tent: and the anger of the LORD was kindled greatly; Moses also was displeased.
10272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses said unto the LORD, Wherefore hast thou afflicted thy servant? and wherefore have I not found favor in thy sight, that thou layest the burden of all this people upon me?
10273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Have I conceived all this people? have I begotten them, that thou shouldest say unto me, Carry them in thy bosom, as a nursing father beareth the sucking child, unto the land which thou swarest unto their fathers?
10274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whence should I have flesh to give unto all this people? for they weep unto me, saying, Give us flesh, that we may eat.
10275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I am not able to bear all this people alone, because it is too heavy for me.
10276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if thou deal thus with me, kill me, I pray thee, out of hand, if I have found favor in thy sight; and let me not see my wretchedness.
10277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Gather unto me seventy men of the elders of Israel, whom thou knowest to be the elders of the people, and officers over them; and bring them unto the tabernacle of the congregation, that they may stand there with thee.
10278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I will come down and talk with thee there: and I will take of the spirit which is upon thee, and will put it upon them; and they shall bear the burden of the people with thee, that thou bear it not thyself alone.
10279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And say thou unto the people, Sanctify yourselves against to morrow, and ye shall eat flesh: for ye have wept in the ears of the LORD, saying, Who shall give us flesh to eat? for it was well with us in Egypt: therefore the LORD will give you flesh, and ye shall eat.
10280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ye shall not eat one day, nor two days, nor five days, neither ten days, nor twenty days;
10281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But even a whole month, until it come out at your nostrils, and it be loathsome unto you: because that ye have despised the LORD which is among you, and have wept before him, saying, Why came we forth out of Egypt?
10282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses said, The people, among whom I am, are six hundred thousand footmen; and thou hast said, I will give them flesh, that they may eat a whole month.
10283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Shall the flocks and the herds be slain for them, to suffice them? or shall all the fish of the sea be gathered together for them, to suffice them?
10284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto Moses, Is the LORD's hand waxed short? thou shalt see now whether my word shall come to pass unto thee or not.
10285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses went out, and told the people the words of the LORD, and gathered the seventy men of the elders of the people, and set them round about the tabernacle.
10286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD came down in a cloud, and spake unto him, and took of the spirit that was upon him, and gave it unto the seventy elders: and it came to pass, that, when the spirit rested upon them, they prophesied, and did not cease.
10287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But there remained two of the men in the camp, the name of the one was Eldad, and the name of the other Medad: and the spirit rested upon them; and they were of them that were written, but went not out unto the tabernacle: and they prophesied in the camp.
10288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there ran a young man, and told Moses, and said, Eldad and Medad do prophesy in the camp.
10289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joshua the son of Nun, the servant of Moses, one of his young men, answered and said, My lord Moses, forbid them.
10290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses said unto him, Enviest thou for my sake? would God that all the LORD's people were prophets, and that the LORD would put his spirit upon them!
10291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses gat him into the camp, he and the elders of Israel.
10292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there went forth a wind from the LORD, and brought quails from the sea, and let them fall by the camp, as it were a day's journey on this side, and as it were a day's journey on the other side, round about the camp, and as it were two cubits high upon the face of the earth.
10293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the people stood up all that day, and all that night, and all the next day, and they gathered the quails: he that gathered least gathered ten homers: and they spread them all abroad for themselves round about the camp.
10294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And while the flesh was yet between their teeth, ere it was chewed, the wrath of the LORD was kindled against the people, and the LORD smote the people with a very great plague.
10295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he called the name of that place Kibrothhattaavah: because there they buried the people that lusted.
10296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the people journeyed from Kibrothhattaavah unto Hazeroth; and abode at Hazeroth.
10297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Miriam and Aaron spake against Moses because of the Ethiopian woman whom he had married: for he had married an Ethiopian woman.
10298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they said, Hath the LORD indeed spoken only by Moses? hath he not spoken also by us? And the LORD heard it.
10299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   (Now the man Moses was very meek, above all the men which were upon the face of the earth.)
10300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD spake suddenly unto Moses, and unto Aaron, and unto Miriam, Come out ye three unto the tabernacle of the congregation. And they three came out.
10301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD came down in the pillar of the cloud, and stood in the door of the tabernacle, and called Aaron and Miriam: and they both came forth.
10302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Hear now my words: If there be a prophet among you, I the LORD will make myself known unto him in a vision, and will speak unto him in a dream.
10303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My servant Moses is not so, who is faithful in all mine house.
10304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         With him will I speak mouth to mouth, even apparently, and not in dark speeches; and the similitude of the LORD shall he behold: wherefore then were ye not afraid to speak against my servant Moses?
10305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the anger of the LORD was kindled against them; and he departed.
10306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the cloud departed from off the tabernacle; and, behold, Miriam became leprous, white as snow: and Aaron looked upon Miriam, and, behold, she was leprous.
10307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Aaron said unto Moses, Alas, my lord, I beseech thee, lay not the sin upon us, wherein we have done foolishly, and wherein we have sinned.
10308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let her not be as one dead, of whom the flesh is half consumed when he cometh out of his mother's womb.
10309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Moses cried unto the LORD, saying, Heal her now, O God, I beseech thee.
10310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, If her father had but spit in her face, should she not be ashamed seven days? let her be shut out from the camp seven days, and after that let her be received in again.
10311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Miriam was shut out from the camp seven days: and the people journeyed not till Miriam was brought in again.
10312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And afterward the people removed from Hazeroth, and pitched in the wilderness of Paran.
10313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Send thou men, that they may search the land of Canaan, which I give unto the children of Israel: of every tribe of their fathers shall ye send a man, every one a ruler among them.
10315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses by the commandment of the LORD sent them from the wilderness of Paran: all those men were heads of the children of Israel.
10316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And these were their names: of the tribe of Reuben, Shammua the son of Zaccur.
10317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the tribe of Simeon, Shaphat the son of Hori.
10318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of the tribe of Judah, Caleb the son of Jephunneh.
10319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of the tribe of Issachar, Igal the son of Joseph.
10320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of the tribe of Ephraim, Oshea the son of Nun.
10321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of the tribe of Benjamin, Palti the son of Raphu.
10322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of the tribe of Zebulun, Gaddiel the son of Sodi.
10323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of the tribe of Joseph, namely, of the tribe of Manasseh, Gaddi the son of Susi.
10324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Of the tribe of Dan, Ammiel the son of Gemalli.
10325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of the tribe of Asher, Sethur the son of Michael.
10326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of the tribe of Naphtali, Nahbi the son of Vophsi.
10327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of the tribe of Gad, Geuel the son of Machi.
10328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These are the names of the men which Moses sent to spy out the land. And Moses called Oshea the son of Nun Jehoshua.
10329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses sent them to spy out the land of Canaan, and said unto them, Get you up this way southward, and go up into the mountain:
10330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And see the land, what it is, and the people that dwelleth therein, whether they be strong or weak, few or many;
10331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And what the land is that they dwell in, whether it be good or bad; and what cities they be that they dwell in, whether in tents, or in strong holds;
10332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what the land is, whether it be fat or lean, whether there be wood therein, or not. And be ye of good courage, and bring of the fruit of the land. Now the time was the time of the first ripe grapes.
10333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So they went up, and searched the land from the wilderness of Zin unto Rehob, as men come to Hamath.
10334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they ascended by the south, and came unto Hebron; where Ahiman, Sheshai, and Talmai, the children of Anak, were. (Now Hebron was built seven years before Zoan in Egypt.)
10335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they came unto the brook of Eshcol, and cut down from thence a branch with one cluster of grapes, and they bare it between two upon a staff; and they brought of the pomegranates, and of the figs.
10336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The place was called the brook Eshcol, because of the cluster of grapes which the children of Israel cut down from thence.
10337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they returned from searching of the land after forty days.
10338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they went and came to Moses, and to Aaron, and to all the congregation of the children of Israel, unto the wilderness of Paran, to Kadesh; and brought back word unto them, and unto all the congregation, and showed them the fruit of the land.
10339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they told him, and said, We came unto the land whither thou sentest us, and surely it floweth with milk and honey; and this is the fruit of it.
10340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nevertheless the people be strong that dwell in the land, and the cities are walled, and very great: and moreover we saw the children of Anak there.
10341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Amalekites dwell in the land of the south: and the Hittites, and the Jebusites, and the Amorites, dwell in the mountains: and the Canaanites dwell by the sea, and by the coast of Jordan.
10342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Caleb stilled the people before Moses, and said, Let us go up at once, and possess it; for we are well able to overcome it.
10343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the men that went up with him said, We be not able to go up against the people; for they are stronger than we.
10344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they brought up an evil report of the land which they had searched unto the children of Israel, saying, The land, through which we have gone to search it, is a land that eateth up the inhabitants thereof; and all the people that we saw in it are men of a great stature.
10345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And there we saw the giants, the sons of Anak, which come of the giants: and we were in our own sight as grasshoppers, and so we were in their sight.
10346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all the congregation lifted up their voice, and cried; and the people wept that night.
10347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the children of Israel murmured against Moses and against Aaron: and the whole congregation said unto them, Would God that we had died in the land of Egypt! or would God we had died in this wilderness!
10348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And wherefore hath the LORD brought us unto this land, to fall by the sword, that our wives and our children should be a prey? were it not better for us to return into Egypt?
10349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they said one to another, Let us make a captain, and let us return into Egypt.
10350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Moses and Aaron fell on their faces before all the assembly of the congregation of the children of Israel.
10351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joshua the son of Nun, and Caleb the son of Jephunneh, which were of them that searched the land, rent their clothes:
10352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they spake unto all the company of the children of Israel, saying, The land, which we passed through to search it, is an exceeding good land.
10353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If the LORD delight in us, then he will bring us into this land, and give it us; a land which floweth with milk and honey.
10354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Only rebel not ye against the LORD, neither fear ye the people of the land; for they are bread for us: their defense is departed from them, and the LORD is with us: fear them not.
10355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But all the congregation bade stone them with stones. And the glory of the LORD appeared in the tabernacle of the congregation before all the children of Israel.
10356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, How long will this people provoke me? and how long will it be ere they believe me, for all the signs which I have showed among them?
10357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I will smite them with the pestilence, and disinherit them, and will make of thee a greater nation and mightier than they.
10358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses said unto the LORD, Then the Egyptians shall hear it, (for thou broughtest up this people in thy might from among them;)
10359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they will tell it to the inhabitants of this land: for they have heard that thou LORD art among this people, that thou LORD art seen face to face, and that thy cloud standeth over them, and that thou goest before them, by day time in a pillar of a cloud, and in a pillar of fire by night.
10360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now if thou shalt kill all this people as one man, then the nations which have heard the fame of thee will speak, saying,
10361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Because the LORD was not able to bring this people into the land which he sware unto them, therefore he hath slain them in the wilderness.
10362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And now, I beseech thee, let the power of my Lord be great, according as thou hast spoken, saying,
10363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD is long-suffering, and of great mercy, forgiving iniquity and transgression, and by no means clearing the guilty, visiting the iniquity of the fathers upon the children unto the third and fourth generation.
10364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pardon, I beseech thee, the iniquity of this people according unto the greatness of thy mercy, and as thou hast forgiven this people, from Egypt even until now.
10365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said, I have pardoned according to thy word:
10366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But as truly as I live, all the earth shall be filled with the glory of the LORD.
10367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Because all those men which have seen my glory, and my miracles, which I did in Egypt and in the wilderness, and have tempted me now these ten times, and have not hearkened to my voice;
10368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Surely they shall not see the land which I sware unto their fathers, neither shall any of them that provoked me see it:
10369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But my servant Caleb, because he had another spirit with him, and hath followed me fully, him will I bring into the land whereinto he went; and his seed shall possess it.
10370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (Now the Amalekites and the Canaanites dwelt in the valley.) Tomorrow turn you, and get you into the wilderness by the way of the Red sea.
10371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses and unto Aaron, saying,
10372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How long shall I bear with this evil congregation, which murmur against me? I have heard the murmurings of the children of Israel, which they murmur against me.
10373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Say unto them, As truly as I live, saith the LORD, as ye have spoken in mine ears, so will I do to you:
10374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Your carcasses shall fall in this wilderness; and all that were numbered of you, according to your whole number, from twenty years old and upward which have murmured against me.
10375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Doubtless ye shall not come into the land, concerning which I sware to make you dwell therein, save Caleb the son of Jephunneh, and Joshua the son of Nun.
10376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But your little ones, which ye said should be a prey, them will I bring in, and they shall know the land which ye have despised.
10377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But as for you, your carcasses, they shall fall in this wilderness.
10378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And your children shall wander in the wilderness forty years, and bear your whoredoms, until your carcasses be wasted in the wilderness.
10379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After the number of the days in which ye searched the land, even forty days, each day for a year, shall ye bear your iniquities, even forty years, and ye shall know my breach of promise.
10380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I the LORD have said, I will surely do it unto all this evil congregation, that are gathered together against me: in this wilderness they shall be consumed, and there they shall die.
10381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the men, which Moses sent to search the land, who returned, and made all the congregation to murmur against him, by bringing up a slander upon the land,
10382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Even those men that did bring up the evil report upon the land, died by the plague before the LORD.
10383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Joshua the son of Nun, and Caleb the son of Jephunneh, which were of the men that went to search the land, lived still.
10384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses told these sayings unto all the children of Israel: and the people mourned greatly.
10385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they rose up early in the morning, and gat them up into the top of the mountain, saying, Lo, we be here, and will go up unto the place which the LORD hath promised: for we have sinned.
10386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses said, Wherefore now do ye transgress the commandment of the LORD? but it shall not prosper.
10387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Go not up, for the LORD is not among you; that ye be not smitten before your enemies.
10388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For the Amalekites and the Canaanites are there before you, and ye shall fall by the sword: because ye are turned away from the LORD, therefore the LORD will not be with you.
10389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But they presumed to go up unto the hill top: nevertheless the ark of the covenant of the LORD, and Moses, departed not out of the camp.
10390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the Amalekites came down, and the Canaanites which dwelt in that hill, and smote them, and discomfited them, even unto Hormah.
10391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto the children of Israel, and say unto them, When ye be come into the land of your habitations, which I give unto you,
10393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And will make an offering by fire unto the LORD, a burnt offering, or a sacrifice in performing a vow, or in a freewill offering, or in your solemn feasts, to make a sweet savor unto the LORD, of the herd or of the flock:
10394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then shall he that offereth his offering unto the LORD bring a meat offering of a tenth deal of flour mingled with the fourth part of an hin of oil.
10395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the fourth part of an hin of wine for a drink offering shalt thou prepare with the burnt offering or sacrifice, for one lamb.
10396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Or for a ram, thou shalt prepare for a meat offering two tenth deals of flour mingled with the third part of an hin of oil.
10397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And for a drink offering thou shalt offer the third part of an hin of wine, for a sweet savor unto the LORD.
10398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when thou preparest a bullock for a burnt offering, or for a sacrifice in performing a vow, or peace offerings unto the LORD:
10399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then shall he bring with a bullock a meat offering of three tenth deals of flour mingled with half an hin of oil.
10400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt bring for a drink offering half an hin of wine, for an offering made by fire, of a sweet savor unto the LORD.
10401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thus shall it be done for one bullock, or for one ram, or for a lamb, or a kid.
10402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         According to the number that ye shall prepare, so shall ye do to every one according to their number.
10403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               All that are born of the country shall do these things after this manner, in offering an offering made by fire, of a sweet savor unto the LORD.
10404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if a stranger sojourn with you, or whosoever be among you in your generations, and will offer an offering made by fire, of a sweet savor unto the LORD; as ye do, so he shall do.
10405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  One ordinance shall be both for you of the congregation, and also for the stranger that sojourneth with you, an ordinance for ever in your generations: as ye are, so shall the stranger be before the LORD.
10406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       One law and one manner shall be for you, and for the stranger that sojourneth with you.
10407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Speak unto the children of Israel, and say unto them, When ye come into the land whither I bring you,
10409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then it shall be, that, when ye eat of the bread of the land, ye shall offer up an heave offering unto the LORD.
10410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall offer up a cake of the first of your dough for an heave offering: as ye do the heave offering of the threshingfloor, so shall ye heave it.
10411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of the first of your dough ye shall give unto the LORD an heave offering in your generations.
10412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if ye have erred, and not observed all these commandments, which the LORD hath spoken unto Moses,
10413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Even all that the LORD hath commanded you by the hand of Moses, from the day that the LORD commanded Moses, and henceforward among your generations;
10414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then it shall be, if ought be committed by ignorance without the knowledge of the congregation, that all the congregation shall offer one young bullock for a burnt offering, for a sweet savor unto the LORD, with his meat offering, and his drink offering, according to the manner, and one kid of the goats for a sin offering.
10415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the priest shall make an atonement for all the congregation of the children of Israel, and it shall be forgiven them; for it is ignorance: and they shall bring their offering, a sacrifice made by fire unto the LORD, and their sin offering before the LORD, for their ignorance:
10416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it shall be forgiven all the congregation of the children of Israel, and the stranger that sojourneth among them; seeing all the people were in ignorance.
10417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And if any soul sin through ignorance, then he shall bring a she goat of the first year for a sin offering.
10418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest shall make an atonement for the soul that sinneth ignorantly, when he sinneth by ignorance before the LORD, to make an atonement for him; and it shall be forgiven him.
10419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye shall have one law for him that sinneth through ignorance, both for him that is born among the children of Israel, and for the stranger that sojourneth among them.
10420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the soul that doeth ought presumptuously, whether he be born in the land, or a stranger, the same reproacheth the LORD; and that soul shall be cut off from among his people.
10421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Because he hath despised the word of the LORD, and hath broken his commandment, that soul shall utterly be cut off; his iniquity shall be upon him.
10422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And while the children of Israel were in the wilderness, they found a man that gathered sticks upon the sabbath day.
10423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they that found him gathering sticks brought him unto Moses and Aaron, and unto all the congregation.
10424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they put him in ward, because it was not declared what should be done to him.
10425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Moses, The man shall be surely put to death: all the congregation shall stone him with stones without the camp.
10426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the congregation brought him without the camp, and stoned him with stones, and he died; as the LORD commanded Moses.
10427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Speak unto the children of Israel, and bid them that they make them fringes in the borders of their garments throughout their generations, and that they put upon the fringe of the borders a ribband of blue:
10429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it shall be unto you for a fringe, that ye may look upon it, and remember all the commandments of the LORD, and do them; and that ye seek not after your own heart and your own eyes, after which ye use to go a whoring:
10430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That ye may remember, and do all my commandments, and be holy unto your God.
10431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   I am the LORD your God, which brought you out of the land of Egypt, to be your God: I am the LORD your God.
10432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now Korah, the son of Izhar, the son of Kohath, the son of Levi, and Dathan and Abiram, the sons of Eliab, and On, the son of Peleth, sons of Reuben, took men:
10433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they rose up before Moses, with certain of the children of Israel, two hundred and fifty princes of the assembly, famous in the congregation, men of renown:
10434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they gathered themselves together against Moses and against Aaron, and said unto them, Ye take too much upon you, seeing all the congregation are holy, every one of them, and the LORD is among them: wherefore then lift ye up yourselves above the congregation of the LORD?
10435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Moses heard it, he fell upon his face:
10436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he spake unto Korah and unto all his company, saying, Even to morrow the LORD will show who are his, and who is holy; and will cause him to come near unto him: even him whom he hath chosen will he cause to come near unto him.
10437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This do; Take you censers, Korah, and all his company;
10438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And put fire therein, and put incense in them before the LORD to morrow: and it shall be that the man whom the LORD doth choose, he shall be holy: ye take too much upon you, ye sons of Levi.
10439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses said unto Korah, Hear, I pray you, ye sons of Levi:
10440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Seemeth it but a small thing unto you, that the God of Israel hath separated you from the congregation of Israel, to bring you near to himself to do the service of the tabernacle of the LORD, and to stand before the congregation to minister unto them?
10441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he hath brought thee near to him, and all thy brethren the sons of Levi with thee: and seek ye the priesthood also?
10442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For which cause both thou and all thy company are gathered together against the LORD: and what is Aaron, that ye murmur against him?
10443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses sent to call Dathan and Abiram, the sons of Eliab: which said, We will not come up:
10444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Is it a small thing that thou hast brought us up out of a land that floweth with milk and honey, to kill us in the wilderness, except thou make thyself altogether a prince over us?
10445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover thou hast not brought us into a land that floweth with milk and honey, or given us inheritance of fields and vineyards: wilt thou put out the eyes of these men? we will not come up.
10446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses was very wroth, and said unto the LORD, Respect not thou their offering: I have not taken one ass from them, neither have I hurt one of them.
10447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses said unto Korah, Be thou and all thy company before the LORD, thou, and they, and Aaron, to morrow:
10448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And take every man his censer, and put incense in them, and bring ye before the LORD every man his censer, two hundred and fifty censers; thou also, and Aaron, each of you his censer.
10449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they took every man his censer, and put fire in them, and laid incense thereon, and stood in the door of the tabernacle of the congregation with Moses and Aaron.
10450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Korah gathered all the congregation against them unto the door of the tabernacle of the congregation: and the glory of the LORD appeared unto all the congregation.
10451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses and unto Aaron, saying,
10452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Separate yourselves from among this congregation, that I may consume them in a moment.
10453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they fell upon their faces, and said, O God, the God of the spirits of all flesh, shall one man sin, and wilt thou be wroth with all the congregation?
10454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Speak unto the congregation, saying, Get you up from about the tabernacle of Korah, Dathan, and Abiram.
10456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses rose up and went unto Dathan and Abiram; and the elders of Israel followed him.
10457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he spake unto the congregation, saying, Depart, I pray you, from the tents of these wicked men, and touch nothing of theirs, lest ye be consumed in all their sins.
10458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So they gat up from the tabernacle of Korah, Dathan, and Abiram, on every side: and Dathan and Abiram came out, and stood in the door of their tents, and their wives, and their sons, and their little children.
10459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses said, Hereby ye shall know that the LORD hath sent me to do all these works; for I have not done them of mine own mind.
10460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If these men die the common death of all men, or if they be visited after the visitation of all men; then the LORD hath not sent me.
10461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if the LORD make a new thing, and the earth open her mouth, and swallow them up, with all that appertain unto them, and they go down quick into the pit; then ye shall understand that these men have provoked the LORD.
10462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, as he had made an end of speaking all these words, that the ground clave asunder that was under them:
10463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the earth opened her mouth, and swallowed them up, and their houses, and all the men that appertained unto Korah, and all their goods.
10464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They, and all that appertained to them, went down alive into the pit, and the earth closed upon them: and they perished from among the congregation.
10465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all Israel that were round about them fled at the cry of them: for they said, Lest the earth swallow us up also.
10466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there came out a fire from the LORD, and consumed the two hundred and fifty men that offered incense.
10467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Speak unto Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter thou the fire yonder; for they are hallowed.
10469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The censers of these sinners against their own souls, let them make them broad plates for a covering of the altar: for they offered them before the LORD, therefore they are hallowed: and they shall be a sign unto the children of Israel.
10470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Eleazar the priest took the brazen censers, wherewith they that were burnt had offered; and they were made broad plates for a covering of the altar:
10471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     To be a memorial unto the children of Israel, that no stranger, which is not of the seed of Aaron, come near to offer incense before the LORD; that he be not as Korah, and as his company: as the LORD said to him by the hand of Moses.
10472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But on the morrow all the congregation of the children of Israel murmured against Moses and against Aaron, saying, Ye have killed the people of the LORD.
10473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when the congregation was gathered against Moses and against Aaron, that they looked toward the tabernacle of the congregation: and, behold, the cloud covered it, and the glory of the LORD appeared.
10474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses and Aaron came before the tabernacle of the congregation.
10475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Get you up from among this congregation, that I may consume them as in a moment. And they fell upon their faces.
10477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto Aaron, Take a censer, and put fire therein from off the altar, and put on incense, and go quickly unto the congregation, and make an atonement for them: for there is wrath gone out from the LORD; the plague is begun.
10478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Aaron took as Moses commanded, and ran into the midst of the congregation; and, behold, the plague was begun among the people: and he put on incense, and made an atonement for the people.
10479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he stood between the dead and the living; and the plague was stayed.
10480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now they that died in the plague were fourteen thousand and seven hundred, beside them that died about the matter of Korah.
10481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Aaron returned unto Moses unto the door of the tabernacle of the congregation: and the plague was stayed.
10482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Speak unto the children of Israel, and take of every one of them a rod according to the house of their fathers, of all their princes according to the house of their fathers twelve rods: write thou every man's name upon his rod.
10484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt write Aaron's name upon the rod of Levi: for one rod shall be for the head of the house of their fathers.
10485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt lay them up in the tabernacle of the congregation before the testimony, where I will meet with you.
10486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it shall come to pass, that the man's rod, whom I shall choose, shall blossom: and I will make to cease from me the murmurings of the children of Israel, whereby they murmur against you.
10487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses spake unto the children of Israel, and every one of their princes gave him a rod apiece, for each prince one, according to their fathers' houses, even twelve rods: and the rod of Aaron was among their rods.
10488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses laid up the rods before the LORD in the tabernacle of witness.
10489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, that on the morrow Moses went into the tabernacle of witness; and, behold, the rod of Aaron for the house of Levi was budded, and brought forth buds, and bloomed blossoms, and yielded almonds.
10490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses brought out all the rods from before the LORD unto all the children of Israel: and they looked, and took every man his rod.
10491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, Bring Aaron's rod again before the testimony, to be kept for a token against the rebels; and thou shalt quite take away their murmurings from me, that they die not.
10492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Moses did so: as the LORD commanded him, so did he.
10493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel spake unto Moses, saying, Behold, we die, we perish, we all perish.
10494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Whosoever cometh any thing near unto the tabernacle of the LORD shall die: shall we be consumed with dying?
10495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Aaron, Thou and thy sons and thy father's house with thee shall bear the iniquity of the sanctuary: and thou and thy sons with thee shall bear the iniquity of your priesthood.
10496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thy brethren also of the tribe of Levi, the tribe of thy father, bring thou with thee, that they may be joined unto thee, and minister unto thee: but thou and thy sons with thee shall minister before the tabernacle of witness.
10497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they shall keep thy charge, and the charge of all the tabernacle: only they shall not come nigh the vessels of the sanctuary and the altar, that neither they, nor ye also, die.
10498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they shall be joined unto thee, and keep the charge of the tabernacle of the congregation, for all the service of the tabernacle: and a stranger shall not come nigh unto you.
10499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ye shall keep the charge of the sanctuary, and the charge of the altar: that there be no wrath any more upon the children of Israel.
10500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I, behold, I have taken your brethren the Levites from among the children of Israel: to you they are given as a gift for the LORD, to do the service of the tabernacle of the congregation.
10501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore thou and thy sons with thee shall keep your priest's office for everything of the altar, and within the vail; and ye shall serve: I have given your priest's office unto you as a service of gift: and the stranger that cometh nigh shall be put to death.
10502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD spake unto Aaron, Behold, I also have given thee the charge of mine heave offerings of all the hallowed things of the children of Israel; unto thee have I given them by reason of the anointing, and to thy sons, by an ordinance for ever.
10503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This shall be thine of the most holy things, reserved from the fire: every oblation of theirs, every meat offering of theirs, and every sin offering of theirs, and every trespass offering of theirs which they shall render unto me, shall be most holy for thee and for thy sons.
10504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In the most holy place shalt thou eat it; every male shall eat it: it shall be holy unto thee.
10505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And this is thine; the heave offering of their gift, with all the wave offerings of the children of Israel: I have given them unto thee, and to thy sons and to thy daughters with thee, by a statute for ever: every one that is clean in thy house shall eat of it.
10506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All the best of the oil, and all the best of the wine, and of the wheat, the firstfruits of them which they shall offer unto the LORD, them have I given thee.
10507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And whatsoever is first ripe in the land, which they shall bring unto the LORD, shall be thine; every one that is clean in thine house shall eat of it.
10508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Every thing devoted in Israel shall be thine.
10509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Every thing that openeth the matrix in all flesh, which they bring unto the LORD, whether it be of men or beasts, shall be thine: nevertheless the firstborn of man shalt thou surely redeem, and the firstling of unclean beasts shalt thou redeem.
10510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those that are to be redeemed from a month old shalt thou redeem, according to thine estimation, for the money of five shekels, after the shekel of the sanctuary, which is twenty gerahs.
10511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the firstling of a cow, or the firstling of a sheep, or the firstling of a goat, thou shalt not redeem; they are holy: thou shalt sprinkle their blood upon the altar, and shalt burn their fat for an offering made by fire, for a sweet savor unto the LORD.
10512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the flesh of them shall be thine, as the wave breast and as the right shoulder are thine.
10513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All the heave offerings of the holy things, which the children of Israel offer unto the LORD, have I given thee, and thy sons and thy daughters with thee, by a statute for ever: it is a covenant of salt for ever before the LORD unto thee and to thy seed with thee.
10514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD spake unto Aaron, Thou shalt have no inheritance in their land, neither shalt thou have any part among them: I am thy part and thine inheritance among the children of Israel.
10515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And, behold, I have given the children of Levi all the tenth in Israel for an inheritance, for their service which they serve, even the service of the tabernacle of the congregation.
10516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Neither must the children of Israel henceforth come nigh the tabernacle of the congregation, lest they bear sin, and die.
10517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the Levites shall do the service of the tabernacle of the congregation, and they shall bear their iniquity: it shall be a statute for ever throughout your generations, that among the children of Israel they have no inheritance.
10518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the tithes of the children of Israel, which they offer as an heave offering unto the LORD, I have given to the Levites to inherit: therefore I have said unto them, Among the children of Israel they shall have no inheritance.
10519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thus speak unto the Levites, and say unto them, When ye take of the children of Israel the tithes which I have given you from them for your inheritance, then ye shall offer up an heave offering of it for the LORD, even a tenth part of the tithe.
10521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this your heave offering shall be reckoned unto you, as though it were the corn of the threshingfloor, and as the fulness of the winepress.
10522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thus ye also shall offer an heave offering unto the LORD of all your tithes, which ye receive of the children of Israel; and ye shall give thereof the LORD's heave offering to Aaron the priest.
10523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Out of all your gifts ye shall offer every heave offering of the LORD, of all the best thereof, even the hallowed part thereof out of it.
10524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Therefore thou shalt say unto them, When ye have heaved the best thereof from it, then it shall be counted unto the Levites as the increase of the threshingfloor, and as the increase of the winepress.
10525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ye shall eat it in every place, ye and your households: for it is your reward for your service in the tabernacle of the congregation.
10526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall bear no sin by reason of it, when ye have heaved from it the best of it: neither shall ye pollute the holy things of the children of Israel, lest ye die.
10527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD spake unto Moses and unto Aaron, saying,
10528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the ordinance of the law which the LORD hath commanded, saying, Speak unto the children of Israel, that they bring thee a red heifer without spot, wherein is no blemish, and upon which never came yoke:
10529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall give her unto Eleazar the priest, that he may bring her forth without the camp, and one shall slay her before his face:
10530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Eleazar the priest shall take of her blood with his finger, and sprinkle of her blood directly before the tabernacle of the congregation seven times:
10531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And one shall burn the heifer in his sight; her skin, and her flesh, and her blood, with her dung, shall he burn:
10532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the priest shall take cedar wood, and hyssop, and scarlet, and cast it into the midst of the burning of the heifer.
10533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then the priest shall wash his clothes, and he shall bathe his flesh in water, and afterward he shall come into the camp, and the priest shall be unclean until the even.
10534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that burneth her shall wash his clothes in water, and bathe his flesh in water, and shall be unclean until the even.
10535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And a man that is clean shall gather up the ashes of the heifer, and lay them up without the camp in a clean place, and it shall be kept for the congregation of the children of Israel for a water of separation: it is a purification for sin.
10536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he that gathereth the ashes of the heifer shall wash his clothes, and be unclean until the even: and it shall be unto the children of Israel, and unto the stranger that sojourneth among them, for a statute for ever.
10537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He that toucheth the dead body of any man shall be unclean seven days.
10538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He shall purify himself with it on the third day, and on the seventh day he shall be clean: but if he purify not himself the third day, then the seventh day he shall not be clean.
10539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whosoever toucheth the dead body of any man that is dead, and purifieth not himself, defileth the tabernacle of the LORD; and that soul shall be cut off from Israel: because the water of separation was not sprinkled upon him, he shall be unclean; his uncleanness is yet upon him.
10540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This is the law, when a man dieth in a tent: all that come into the tent, and all that is in the tent, shall be unclean seven days.
10541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And every open vessel, which hath no covering bound upon it, is unclean.
10542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And whosoever toucheth one that is slain with a sword in the open fields, or a dead body, or a bone of a man, or a grave, shall be unclean seven days.
10543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And for an unclean person they shall take of the ashes of the burnt heifer of purification for sin, and running water shall be put thereto in a vessel:
10544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And a clean person shall take hyssop, and dip it in the water, and sprinkle it upon the tent, and upon all the vessels, and upon the persons that were there, and upon him that touched a bone, or one slain, or one dead, or a grave:
10545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the clean person shall sprinkle upon the unclean on the third day, and on the seventh day: and on the seventh day he shall purify himself, and wash his clothes, and bathe himself in water, and shall be clean at even.
10546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the man that shall be unclean, and shall not purify himself, that soul shall be cut off from among the congregation, because he hath defiled the sanctuary of the LORD: the water of separation hath not been sprinkled upon him; he is unclean.
10547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it shall be a perpetual statute unto them, that he that sprinkleth the water of separation shall wash his clothes; and he that toucheth the water of separation shall be unclean until even.
10548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And whatsoever the unclean person toucheth shall be unclean; and the soul that toucheth it shall be unclean until even.
10549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then came the children of Israel, even the whole congregation, into the desert of Zin in the first month: and the people abode in Kadesh; and Miriam died there, and was buried there.
10550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there was no water for the congregation: and they gathered themselves together against Moses and against Aaron.
10551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the people chode with Moses, and spake, saying, Would God that we had died when our brethren died before the LORD!
10552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And why have ye brought up the congregation of the LORD into this wilderness, that we and our cattle should die there?
10553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And wherefore have ye made us to come up out of Egypt, to bring us in unto this evil place? it is no place of seed, or of figs, or of vines, or of pomegranates; neither is there any water to drink.
10554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses and Aaron went from the presence of the assembly unto the door of the tabernacle of the congregation, and they fell upon their faces: and the glory of the LORD appeared unto them.
10555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Take the rod, and gather thou the assembly together, thou, and Aaron thy brother, and speak ye unto the rock before their eyes; and it shall give forth his water, and thou shalt bring forth to them water out of the rock: so thou shalt give the congregation and their beasts drink.
10557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses took the rod from before the LORD, as he commanded him.
10558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses and Aaron gathered the congregation together before the rock, and he said unto them, Hear now, ye rebels; must we fetch you water out of this rock?
10559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses lifted up his hand, and with his rod he smote the rock twice: and the water came out abundantly, and the congregation drank, and their beasts also.
10560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD spake unto Moses and Aaron, Because ye believed me not, to sanctify me in the eyes of the children of Israel, therefore ye shall not bring this congregation into the land which I have given them.
10561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the water of Meribah; because the children of Israel strove with the LORD, and he was sanctified in them.
10562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses sent messengers from Kadesh unto the king of Edom, Thus saith thy brother Israel, Thou knowest all the travail that hath befallen us:
10563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How our fathers went down into Egypt, and we have dwelt in Egypt a long time; and the Egyptians vexed us, and our fathers:
10564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when we cried unto the LORD, he heard our voice, and sent an angel, and hath brought us forth out of Egypt: and, behold, we are in Kadesh, a city in the uttermost of thy border:
10565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let us pass, I pray thee, through thy country: we will not pass through the fields, or through the vineyards, neither will we drink of the water of the wells: we will go by the king's high way, we will not turn to the right hand nor to the left, until we have passed thy borders.
10566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Edom said unto him, Thou shalt not pass by me, lest I come out against thee with the sword.
10567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel said unto him, We will go by the high way: and if I and my cattle drink of thy water, then I will pay for it: I will only, without doing anything else, go through on my feet.
10568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Thou shalt not go through. And Edom came out against him with much people, and with a strong hand.
10569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thus Edom refused to give Israel passage through his border: wherefore Israel turned away from him.
10570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel, even the whole congregation, journeyed from Kadesh, and came unto mount Hor.
10571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD spake unto Moses and Aaron in mount Hor, by the coast of the land of Edom, saying,
10572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Aaron shall be gathered unto his people: for he shall not enter into the land which I have given unto the children of Israel, because ye rebelled against my word at the water of Meribah.
10573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Take Aaron and Eleazar his son, and bring them up unto mount Hor:
10574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And strip Aaron of his garments, and put them upon Eleazar his son: and Aaron shall be gathered unto his people, and shall die there.
10575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses did as the LORD commanded: and they went up into mount Hor in the sight of all the congregation.
10576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses stripped Aaron of his garments, and put them upon Eleazar his son; and Aaron died there in the top of the mount: and Moses and Eleazar came down from the mount.
10577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when all the congregation saw that Aaron was dead, they mourned for Aaron thirty days, even all the house of Israel.
10578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when king Arad the Canaanite, which dwelt in the south, heard tell that Israel came by the way of the spies; then he fought against Israel, and took some of them prisoners.
10579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Israel vowed a vow unto the LORD, and said, If thou wilt indeed deliver this people into my hand, then I will utterly destroy their cities.
10580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD hearkened to the voice of Israel, and delivered up the Canaanites; and they utterly destroyed them and their cities: and he called the name of the place Hormah.
10581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they journeyed from mount Hor by the way of the Red sea, to compass the land of Edom: and the soul of the people was much discouraged because of the way.
10582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the people spake against God, and against Moses, Wherefore have ye brought us up out of Egypt to die in the wilderness? for there is no bread, neither is there any water; and our soul loatheth this light bread.
10583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD sent fiery serpents among the people, and they bit the people; and much people of Israel died.
10584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore the people came to Moses, and said, We have sinned, for we have spoken against the LORD, and against thee; pray unto the LORD, that he take away the serpents from us. And Moses prayed for the people.
10585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses, Make thee a fiery serpent, and set it upon a pole: and it shall come to pass, that every one that is bitten, when he looketh upon it, shall live.
10586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses made a serpent of brass, and put it upon a pole, and it came to pass, that if a serpent had bitten any man, when he beheld the serpent of brass, he lived.
10587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the children of Israel set forward, and pitched in Oboth.
10588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they journeyed from Oboth, and pitched at Ijeabarim, in the wilderness which is before Moab, toward the sunrising.
10589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 From thence they removed, and pitched in the valley of Zared.
10590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   From thence they removed, and pitched on the other side of Arnon, which is in the wilderness that cometh out of the coasts of the Amorites: for Arnon is the border of Moab, between Moab and the Amorites.
10591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wherefore it is said in the book of the wars of the LORD, What he did in the Red sea, and in the brooks of Arnon,
10592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And at the stream of the brooks that goeth down to the dwelling of Ar, and lieth upon the border of Moab.
10593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And from thence they went to Beer: that is the well whereof the LORD spake unto Moses, Gather the people together, and I will give them water.
10594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Israel sang this song, Spring up, O well; sing ye unto it:
10595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The princes digged the well, the nobles of the people digged it, by the direction of the lawgiver, with their staves. And from the wilderness they went to Mattanah:
10596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And from Mattanah to Nahaliel: and from Nahaliel to Bamoth:
10597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And from Bamoth in the valley, that is in the country of Moab, to the top of Pisgah, which looketh toward Jeshimon.
10598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Israel sent messengers unto Sihon king of the Amorites, saying,
10599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let me pass through thy land: we will not turn into the fields, or into the vineyards; we will not drink of the waters of the well: but we will go along by the king's high way, until we be past thy borders.
10600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Sihon would not suffer Israel to pass through his border: but Sihon gathered all his people together, and went out against Israel into the wilderness: and he came to Jahaz, and fought against Israel.
10601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Israel smote him with the edge of the sword, and possessed his land from Arnon unto Jabbok, even unto the children of Ammon: for the border of the children of Ammon was strong.
10602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Israel took all these cities: and Israel dwelt in all the cities of the Amorites, in Heshbon, and in all the villages thereof.
10603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For Heshbon was the city of Sihon the king of the Amorites, who had fought against the former king of Moab, and taken all his land out of his hand, even unto Arnon.
10604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wherefore they that speak in proverbs say, Come into Heshbon, let the city of Sihon be built and prepared:
10605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For there is a fire gone out of Heshbon, a flame from the city of Sihon: it hath consumed Ar of Moab, and the lords of the high places of Arnon.
10606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Woe to thee, Moab! thou art undone, O people of Chemosh: he hath given his sons that escaped, and his daughters, into captivity unto Sihon king of the Amorites.
10607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We have shot at them; Heshbon is perished even unto Dibon, and we have laid them waste even unto Nophah, which reacheth unto Medeba.
10608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thus Israel dwelt in the land of the Amorites.
10609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses sent to spy out Jaazer, and they took the villages thereof, and drove out the Amorites that were there.
10610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they turned and went up by the way of Bashan: and Og the king of Bashan went out against them, he, and all his people, to the battle at Edrei.
10611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto Moses, Fear him not: for I have delivered him into thy hand, and all his people, and his land; and thou shalt do to him as thou didst unto Sihon king of the Amorites, which dwelt at Heshbon.
10612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they smote him, and his sons, and all his people, until there was none left him alive: and they possessed his land.
10613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel set forward, and pitched in the plains of Moab on this side Jordan by Jericho.
10614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Balak the son of Zippor saw all that Israel had done to the Amorites.
10615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moab was sore afraid of the people, because they were many: and Moab was distressed because of the children of Israel.
10616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moab said unto the elders of Midian, Now shall this company lick up all that are round about us, as the ox licketh up the grass of the field. And Balak the son of Zippor was king of the Moabites at that time.
10617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He sent messengers therefore unto Balaam the son of Beor to Pethor, which is by the river of the land of the children of his people, to call him, saying, Behold, there is a people come out from Egypt: behold, they cover the face of the earth, and they abide over against me:
10618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Come now therefore, I pray thee, curse me this people; for they are too mighty for me: peradventure I shall prevail, that we may smite them, and that I may drive them out of the land: for I wot that he whom thou blessest is blessed, and he whom thou cursest is cursed.
10619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the elders of Moab and the elders of Midian departed with the rewards of divination in their hand; and they came unto Balaam, and spake unto him the words of Balak.
10620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said unto them, Lodge here this night, and I will bring you word again, as the LORD shall speak unto me: and the princes of Moab abode with Balaam.
10621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And God came unto Balaam, and said, What men are these with thee?
10622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Balaam said unto God, Balak the son of Zippor, king of Moab, hath sent unto me, saying,
10623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, there is a people come out of Egypt, which covereth the face of the earth: come now, curse me them; peradventure I shall be able to overcome them, and drive them out.
10624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And God said unto Balaam, Thou shalt not go with them; thou shalt not curse the people: for they are blessed.
10625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Balaam rose up in the morning, and said unto the princes of Balak, Get you into your land: for the LORD refuseth to give me leave to go with you.
10626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the princes of Moab rose up, and they went unto Balak, and said, Balaam refuseth to come with us.
10627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Balak sent yet again princes, more, and more honorable than they.
10628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they came to Balaam, and said to him, Thus saith Balak the son of Zippor, Let nothing, I pray thee, hinder thee from coming unto me:
10629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For I will promote thee unto very great honor, and I will do whatsoever thou sayest unto me: come therefore, I pray thee, curse me this people.
10630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Balaam answered and said unto the servants of Balak, If Balak would give me his house full of silver and gold, I cannot go beyond the word of the LORD my God, to do less or more.
10631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore, I pray you, tarry ye also here this night, that I may know what the LORD will say unto me more.
10632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And God came unto Balaam at night, and said unto him, If the men come to call thee, rise up, and go with them; but yet the word which I shall say unto thee, that shalt thou do.
10633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Balaam rose up in the morning, and saddled his ass, and went with the princes of Moab.
10634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And God's anger was kindled because he went: and the angel of the LORD stood in the way for an adversary against him. Now he was riding upon his ass, and his two servants were with him.
10635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the ass saw the angel of the LORD standing in the way, and his sword drawn in his hand: and the ass turned aside out of the way, and went into the field: and Balaam smote the ass, to turn her into the way.
10636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But the angel of the LORD stood in a path of the vineyards, a wall being on this side, and a wall on that side.
10637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the ass saw the angel of the LORD, she thrust herself unto the wall, and crushed Balaam's foot against the wall: and he smote her again.
10638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the angel of the LORD went further, and stood in a narrow place, where was no way to turn either to the right hand or to the left.
10639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the ass saw the angel of the LORD, she fell down under Balaam: and Balaam's anger was kindled, and he smote the ass with a staff.
10640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD opened the mouth of the ass, and she said unto Balaam, What have I done unto thee, that thou hast smitten me these three times?
10641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Balaam said unto the ass, Because thou hast mocked me: I would there were a sword in mine hand, for now would I kill thee.
10642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the ass said unto Balaam, Am not I thine ass, upon which thou hast ridden ever since I was thine unto this day? was I ever wont to do so unto thee? And he said, Nay.
10643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then the LORD opened the eyes of Balaam, and he saw the angel of the LORD standing in the way, and his sword drawn in his hand: and he bowed down his head, and fell flat on his face.
10644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the angel of the LORD said unto him, Wherefore hast thou smitten thine ass these three times? behold, I went out to withstand thee, because thy way is perverse before me:
10645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the ass saw me, and turned from me these three times: unless she had turned from me, surely now also I had slain thee, and saved her alive.
10646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Balaam said unto the angel of the LORD, I have sinned; for I knew not that thou stoodest in the way against me: now therefore, if it displease thee, I will get me back again.
10647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the angel of the LORD said unto Balaam, Go with the men: but only the word that I shall speak unto thee, that thou shalt speak. So Balaam went with the princes of Balak.
10648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when Balak heard that Balaam was come, he went out to meet him unto a city of Moab, which is in the border of Arnon, which is in the utmost coast.
10649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Balak said unto Balaam, Did I not earnestly send unto thee to call thee? wherefore camest thou not unto me? am I not able indeed to promote thee to honor?
10650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Balaam said unto Balak, Lo, I am come unto thee: have I now any power at all to say any thing? the word that God putteth in my mouth, that shall I speak.
10651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Balaam went with Balak, and they came unto Kirjathhuzoth.
10652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Balak offered oxen and sheep, and sent to Balaam, and to the princes that were with him.
10653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass on the morrow, that Balak took Balaam, and brought him up into the high places of Baal, that thence he might see the utmost part of the people.
10654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Balaam said unto Balak, Build me here seven altars, and prepare me here seven oxen and seven rams.
10655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Balak did as Balaam had spoken; and Balak and Balaam offered on every altar a bullock and a ram.
10656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Balaam said unto Balak, Stand by thy burnt offering, and I will go: peradventure the LORD will come to meet me: and whatsoever he showeth me I will tell thee. And he went to an high place.
10657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And God met Balaam: and he said unto him, I have prepared seven altars, and I have offered upon every altar a bullock and a ram.
10658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD put a word in Balaam's mouth, and said, Return unto Balak, and thus thou shalt speak.
10659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he returned unto him, and, lo, he stood by his burnt sacrifice, he, and all the princes of Moab.
10660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he took up his parable, and said, Balak the king of Moab hath brought me from Aram, out of the mountains of the east, saying, Come, curse me Jacob, and come, defy Israel.
10661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How shall I curse, whom God hath not cursed? or how shall I defy, whom the LORD hath not defied?
10662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For from the top of the rocks I see him, and from the hills I behold him: lo, the people shall dwell alone, and shall not be reckoned among the nations.
10663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Who can count the dust of Jacob, and the number of the fourth part of Israel? Let me die the death of the righteous, and let my last end be like his!
10664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Balak said unto Balaam, What hast thou done unto me? I took thee to curse mine enemies, and, behold, thou hast blessed them altogether.
10665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he answered and said, Must I not take heed to speak that which the LORD hath put in my mouth?
10666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Balak said unto him, Come, I pray thee, with me unto another place, from whence thou mayest see them: thou shalt see but the utmost part of them, and shalt not see them all: and curse me them from thence.
10667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he brought him into the field of Zophim, to the top of Pisgah, and built seven altars, and offered a bullock and a ram on every altar.
10668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto Balak, Stand here by thy burnt offering, while I meet the LORD yonder.
10669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD met Balaam, and put a word in his mouth, and said, Go again unto Balak, and say thus.
10670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when he came to him, behold, he stood by his burnt offering, and the princes of Moab with him. And Balak said unto him, What hath the LORD spoken?
10671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he took up his parable, and said, Rise up, Balak, and hear; hearken unto me, thou son of Zippor:
10672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  God is not a man, that he should lie; neither the son of man, that he should repent: hath he said, and shall he not do it? or hath he spoken, and shall he not make it good?
10673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Behold, I have received commandment to bless: and he hath blessed; and I cannot reverse it.
10674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He hath not beheld iniquity in Jacob, neither hath he seen perverseness in Israel: the LORD his God is with him, and the shout of a king is among them.
10675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 God brought them out of Egypt; he hath as it were the strength of an unicorn.
10676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely there is no enchantment against Jacob, neither is there any divination against Israel: according to this time it shall be said of Jacob and of Israel, What hath God wrought!
10677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Behold, the people shall rise up as a great lion, and lift up himself as a young lion: he shall not lie down until he eat of the prey, and drink the blood of the slain.
10678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Balak said unto Balaam, Neither curse them at all, nor bless them at all.
10679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But Balaam answered and said unto Balak, Told not I thee, saying, All that the LORD speaketh, that I must do?
10680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Balak said unto Balaam, Come, I pray thee, I will bring thee unto another place; peradventure it will please God that thou mayest curse me them from thence.
10681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Balak brought Balaam unto the top of Peor, that looketh toward Jeshimon.
10682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Balaam said unto Balak, Build me here seven altars, and prepare me here seven bullocks and seven rams.
10683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Balak did as Balaam had said, and offered a bullock and a ram on every altar.
10684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Balaam saw that it pleased the LORD to bless Israel, he went not, as at other times, to seek for enchantments, but he set his face toward the wilderness.
10685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Balaam lifted up his eyes, and he saw Israel abiding in his tents according to their tribes; and the spirit of God came upon him.
10686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said:
10687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He hath said, which heard the words of God, which saw the vision of the Almighty, falling into a trance, but having his eyes open:
10688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             How goodly are thy tents, O Jacob, and thy tabernacles, O Israel!
10689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           As the valleys are they spread forth, as gardens by the river's side, as the trees of lign aloes which the LORD hath planted, and as cedar trees beside the waters.
10690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He shall pour the water out of his buckets, and his seed shall be in many waters, and his king shall be higher than Agag, and his kingdom shall be exalted.
10691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             God brought him forth out of Egypt; he hath as it were the strength of an unicorn: he shall eat up the nations his enemies, and shall break their bones, and pierce them through with his arrows.
10692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He couched, he lay down as a lion, and as a great lion: who shall stir him up? Blessed is he that blesseth thee, and cursed is he that curseth thee.
10693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Balak's anger was kindled against Balaam, and he smote his hands together: and Balak said unto Balaam, I called thee to curse mine enemies, and, behold, thou hast altogether blessed them these three times.
10694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore now flee thou to thy place: I thought to promote thee unto great honor; but, lo, the LORD hath kept thee back from honor.
10695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Balaam said unto Balak, Spake I not also to thy messengers which thou sentest unto me, saying,
10696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If Balak would give me his house full of silver and gold, I cannot go beyond the commandment of the LORD, to do either good or bad of mine own mind; but what the LORD saith, that will I speak?
10697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And now, behold, I go unto my people: come therefore, and I will advertise thee what this people shall do to thy people in the latter days.
10698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he took up his parable, and said, Balaam the son of Beor hath said, and the man whose eyes are open hath said:
10699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He hath said, which heard the words of God, and knew the knowledge of the most High, which saw the vision of the Almighty, falling into a trance, but having his eyes open:
10700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I shall see him, but not now: I shall behold him, but not nigh: there shall come a Star out of Jacob, and a Sceptre shall rise out of Israel, and shall smite the corners of Moab, and destroy all the children of Sheth.
10701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Edom shall be a possession, Seir also shall be a possession for his enemies; and Israel shall do valiantly.
10702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Out of Jacob shall come he that shall have dominion, and shall destroy him that remaineth of the city.
10703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when he looked on Amalek, he took up his parable, and said, Amalek was the first of the nations; but his latter end shall be that he perish for ever.
10704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he looked on the Kenites, and took up his parable, and said, Strong is thy dwelling place, and thou puttest thy nest in a rock.
10705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nevertheless the Kenite shall be wasted, until Asshur shall carry thee away captive.
10706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he took up his parable, and said, Alas, who shall live when God doeth this!
10707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ships shall come from the coast of Chittim, and shall afflict Asshur, and shall afflict Eber, and he also shall perish for ever.
10708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Balaam rose up, and went and returned to his place: and Balak also went his way.
10709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Israel abode in Shittim, and the people began to commit whoredom with the daughters of Moab.
10710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they called the people unto the sacrifices of their gods: and the people did eat, and bowed down to their gods.
10711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Israel joined himself unto Baalpeor: and the anger of the LORD was kindled against Israel.
10712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Moses, Take all the heads of the people, and hang them up before the LORD against the sun, that the fierce anger of the LORD may be turned away from Israel.
10713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Moses said unto the judges of Israel, Slay ye every one his men that were joined unto Baalpeor.
10714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And, behold, one of the children of Israel came and brought unto his brethren a Midianitish woman in the sight of Moses, and in the sight of all the congregation of the children of Israel, who were weeping before the door of the tabernacle of the congregation.
10715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Phinehas, the son of Eleazar, the son of Aaron the priest, saw it, he rose up from among the congregation, and took a javelin in his hand;
10716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he went after the man of Israel into the tent, and thrust both of them through, the man of Israel, and the woman through her belly. So the plague was stayed from the children of Israel.
10717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And those that died in the plague were twenty and four thousand.
10718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Phinehas, the son of Eleazar, the son of Aaron the priest, hath turned my wrath away from the children of Israel, while he was zealous for my sake among them, that I consumed not the children of Israel in my jealousy.
10720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore say, Behold, I give unto him my covenant of peace:
10721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he shall have it, and his seed after him, even the covenant of an everlasting priesthood; because he was zealous for his God, and made an atonement for the children of Israel.
10722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now the name of the Israelite that was slain, even that was slain with the Midianitish woman, was Zimri, the son of Salu, a prince of a chief house among the Simeonites.
10723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the name of the Midianitish woman that was slain was Cozbi, the daughter of Zur; he was head over a people, and of a chief house in Midian.
10724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Vex the Midianites, and smite them:
10726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For they vex you with their wiles, wherewith they have beguiled you in the matter of Peor, and in the matter of Cozbi, the daughter of a prince of Midian, their sister, which was slain in the day of the plague for Peor's sake.
10727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass after the plague, that the LORD spake unto Moses and unto Eleazar the son of Aaron the priest, saying,
10728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Take the sum of all the congregation of the children of Israel, from twenty years old and upward, throughout their fathers' house, all that are able to go to war in Israel.
10729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses and Eleazar the priest spake with them in the plains of Moab by Jordan near Jericho, saying,
10730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Take the sum of the people, from twenty years old and upward; as the LORD commanded Moses and the children of Israel, which went forth out of the land of Egypt.
10731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Reuben, the eldest son of Israel: the children of Reuben; Hanoch, of whom cometh the family of the Hanochites: of Pallu, the family of the Palluites:
10732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Of Hezron, the family of the Hezronites: of Carmi, the family of the Carmites.
10733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the families of the Reubenites: and they that were numbered of them were forty and three thousand and seven hundred and thirty.
10734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Pallu; Eliab.
10735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Eliab; Nemuel, and Dathan, and Abiram. This is that Dathan and Abiram, which were famous in the congregation, who strove against Moses and against Aaron in the company of Korah, when they strove against the LORD:
10736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the earth opened her mouth, and swallowed them up together with Korah, when that company died, what time the fire devoured two hundred and fifty men: and they became a sign.
10737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Notwithstanding the children of Korah died not.
10738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Simeon after their families: of Nemuel, the family of the Nemuelites: of Jamin, the family of the Jaminites: of Jachin, the family of the Jachinites:
10739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of Zerah, the family of the Zarhites: of Shaul, the family of the Shaulites.
10740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the families of the Simeonites, twenty and two thousand and two hundred.
10741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The children of Gad after their families: of Zephon, the family of the Zephonites: of Haggi, the family of the Haggites: of Shuni, the family of the Shunites:
10742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of Ozni, the family of the Oznites: of Eri, the family of the Erites:
10743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of Arod, the family of the Arodites: of Areli, the family of the Arelites.
10744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These are the families of the children of Gad according to those that were numbered of them, forty thousand and five hundred.
10745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sons of Judah were Er and Onan: and Er and Onan died in the land of Canaan.
10746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Judah after their families were; of Shelah, the family of the Shelanites: of Pharez, the family of the Pharzites: of Zerah, the family of the Zarhites.
10747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Pharez were; of Hezron, the family of the Hezronites: of Hamul, the family of the Hamulites.
10748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are the families of Judah according to those that were numbered of them, threescore and sixteen thousand and five hundred.
10749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Of the sons of Issachar after their families: of Tola, the family of the Tolaites: of Pua, the family of the Punites:
10750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of Jashub, the family of the Jashubites: of Shimron, the family of the Shimronites.
10751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             These are the families of Issachar according to those that were numbered of them, threescore and four thousand and three hundred.
10752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of the sons of Zebulun after their families: of Sered, the family of the Sardites: of Elon, the family of the Elonites: of Jahleel, the family of the Jahleelites.
10753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the families of the Zebulunites according to those that were numbered of them, threescore thousand and five hundred.
10754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sons of Joseph after their families were Manasseh and Ephraim.
10755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of the sons of Manasseh: of Machir, the family of the Machirites: and Machir begat Gilead: of Gilead come the family of the Gileadites.
10756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These are the sons of Gilead: of Jeezer, the family of the Jeezerites: of Helek, the family of the Helekites:
10757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And of Asriel, the family of the Asrielites: and of Shechem, the family of the Shechemites:
10758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And of Shemida, the family of the Shemidaites: and of Hepher, the family of the Hepherites.
10759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Zelophehad the son of Hepher had no sons, but daughters: and the names of the daughters of Zelophehad were Mahlah, and Noah, Hoglah, Milcah, and Tirzah.
10760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the families of Manasseh, and those that were numbered of them, fifty and two thousand and seven hundred.
10761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are the sons of Ephraim after their families: of Shuthelah, the family of the Shuthalhites: of Becher, the family of the Bachrites: of Tahan, the family of the Tahanites.
10762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And these are the sons of Shuthelah: of Eran, the family of the Eranites.
10763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the families of the sons of Ephraim according to those that were numbered of them, thirty and two thousand and five hundred. These are the sons of Joseph after their families.
10764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Benjamin after their families: of Bela, the family of the Belaites: of Ashbel, the family of the Ashbelites: of Ahiram, the family of the Ahiramites:
10765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Of Shupham, the family of the Shuphamites: of Hupham, the family of the Huphamites.
10766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Bela were Ard and Naaman: of Ard, the family of the Ardites: and of Naaman, the family of the Naamites.
10767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the sons of Benjamin after their families: and they that were numbered of them were forty and five thousand and six hundred.
10768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These are the sons of Dan after their families: of Shuham, the family of the Shuhamites. These are the families of Dan after their families.
10769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All the families of the Shuhamites, according to those that were numbered of them, were threescore and four thousand and four hundred.
10770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of the children of Asher after their families: of Jimna, the family of the Jimnites: of Jesui, the family of the Jesuites: of Beriah, the family of the Beriites.
10771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Of the sons of Beriah: of Heber, the family of the Heberites: of Malchiel, the family of the Malchielites.
10772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the name of the daughter of Asher was Sarah.
10773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the families of the sons of Asher according to those that were numbered of them; who were fifty and three thousand and four hundred.
10774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Of the sons of Naphtali after their families: of Jahzeel, the family of the Jahzeelites: of Guni, the family of the Gunites:
10775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Of Jezer, the family of the Jezerites: of Shillem, the family of the Shillemites.
10776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the families of Naphtali according to their families: and they that were numbered of them were forty and five thousand and four hundred.
10777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These were the numbered of the children of Israel, six hundred thousand and a thousand seven hundred and thirty.
10778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Unto these the land shall be divided for an inheritance according to the number of names.
10780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To many thou shalt give the more inheritance, and to few thou shalt give the less inheritance: to every one shall his inheritance be given according to those that were numbered of him.
10781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Notwithstanding the land shall be divided by lot: according to the names of the tribes of their fathers they shall inherit.
10782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            According to the lot shall the possession thereof be divided between many and few.
10783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And these are they that were numbered of the Levites after their families: of Gershon, the family of the Gershonites: of Kohath, the family of the Kohathites: of Merari, the family of the Merarites.
10784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These are the families of the Levites: the family of the Libnites, the family of the Hebronites, the family of the Mahlites, the family of the Mushites, the family of the Korathites. And Kohath begat Amram.
10785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the name of Amram's wife was Jochebed, the daughter of Levi, whom her mother bare to Levi in Egypt: and she bare unto Amram Aaron and Moses, and Miriam their sister.
10786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And unto Aaron was born Nadab, and Abihu, Eleazar, and Ithamar.
10787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Nadab and Abihu died, when they offered strange fire before the LORD.
10788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And those that were numbered of them were twenty and three thousand, all males from a month old and upward: for they were not numbered among the children of Israel, because there was no inheritance given them among the children of Israel.
10789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These are they that were numbered by Moses and Eleazar the priest, who numbered the children of Israel in the plains of Moab by Jordan near Jericho.
10790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But among these there was not a man of them whom Moses and Aaron the priest numbered, when they numbered the children of Israel in the wilderness of Sinai.
10791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For the LORD had said of them, They shall surely die in the wilderness. And there was not left a man of them, save Caleb the son of Jephunneh, and Joshua the son of Nun.
10792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then came the daughters of Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, of the families of Manasseh the son of Joseph: and these are the names of his daughters; Mahlah, Noah, and Hoglah, and Milcah, and Tirzah.
10793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they stood before Moses, and before Eleazar the priest, and before the princes and all the congregation, by the door of the tabernacle of the congregation, saying,
10794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Our father died in the wilderness, and he was not in the company of them that gathered themselves together against the LORD in the company of Korah; but died in his own sin, and had no sons.
10795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Why should the name of our father be done away from among his family, because he hath no son? Give unto us therefore a possession among the brethren of our father.
10796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses brought their cause before the LORD.
10797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The daughters of Zelophehad speak right: thou shalt surely give them a possession of an inheritance among their father's brethren; and thou shalt cause the inheritance of their father to pass unto them.
10799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt speak unto the children of Israel, saying, If a man die, and have no son, then ye shall cause his inheritance to pass unto his daughter.
10800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if he have no daughter, then ye shall give his inheritance unto his brethren.
10801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if he have no brethren, then ye shall give his inheritance unto his father's brethren.
10802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if his father have no brethren, then ye shall give his inheritance unto his kinsman that is next to him of his family, and he shall possess it: and it shall be unto the children of Israel a statute of judgment, as the LORD commanded Moses.
10803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Moses, Get thee up into this mount Abarim, and see the land which I have given unto the children of Israel.
10804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when thou hast seen it, thou also shalt be gathered unto thy people, as Aaron thy brother was gathered.
10805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For ye rebelled against my commandment in the desert of Zin, in the strife of the congregation, to sanctify me at the water before their eyes: that is the water of Meribah in Kadesh in the wilderness of Zin.
10806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses spake unto the LORD, saying,
10807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Let the LORD, the God of the spirits of all flesh, set a man over the congregation,
10808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Which may go out before them, and which may go in before them, and which may lead them out, and which may bring them in; that the congregation of the LORD be not as sheep which have no shepherd.
10809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said unto Moses, Take thee Joshua the son of Nun, a man in whom is the spirit, and lay thine hand upon him;
10810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And set him before Eleazar the priest, and before all the congregation; and give him a charge in their sight.
10811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt put some of thine honor upon him, that all the congregation of the children of Israel may be obedient.
10812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he shall stand before Eleazar the priest, who shall ask counsel for him after the judgment of Urim before the LORD: at his word shall they go out, and at his word they shall come in, both he, and all the children of Israel with him, even all the congregation.
10813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses did as the LORD commanded him: and he took Joshua, and set him before Eleazar the priest, and before all the congregation:
10814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he laid his hands upon him, and gave him a charge, as the LORD commanded by the hand of Moses.
10815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Command the children of Israel, and say unto them, My offering, and my bread for my sacrifices made by fire, for a sweet savor unto me, shall ye observe to offer unto me in their due season.
10817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt say unto them, This is the offering made by fire which ye shall offer unto the LORD; two lambs of the first year without spot day by day, for a continual burnt offering.
10818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The one lamb shalt thou offer in the morning, and the other lamb shalt thou offer at even;
10819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And a tenth part of an ephah of flour for a meat offering, mingled with the fourth part of an hin of beaten oil.
10820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                It is a continual burnt offering, which was ordained in mount Sinai for a sweet savor, a sacrifice made by fire unto the LORD.
10821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the drink offering thereof shall be the fourth part of an hin for the one lamb: in the holy place shalt thou cause the strong wine to be poured unto the LORD for a drink offering.
10822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the other lamb shalt thou offer at even: as the meat offering of the morning, and as the drink offering thereof, thou shalt offer it, a sacrifice made by fire, of a sweet savor unto the LORD.
10823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And on the sabbath day two lambs of the first year without spot, and two tenth deals of flour for a meat offering, mingled with oil, and the drink offering thereof:
10824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the burnt offering of every sabbath, beside the continual burnt offering, and his drink offering.
10825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in the beginnings of your months ye shall offer a burnt offering unto the LORD; two young bullocks, and one ram, seven lambs of the first year without spot;
10826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And three tenth deals of flour for a meat offering, mingled with oil, for one bullock; and two tenth deals of flour for a meat offering, mingled with oil, for one ram;
10827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And a several tenth deal of flour mingled with oil for a meat offering unto one lamb; for a burnt offering of a sweet savor, a sacrifice made by fire unto the LORD.
10828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And their drink offerings shall be half an hin of wine unto a bullock, and the third part of an hin unto a ram, and a fourth part of an hin unto a lamb: this is the burnt offering of every month throughout the months of the year.
10829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And one kid of the goats for a sin offering unto the LORD shall be offered, beside the continual burnt offering, and his drink offering.
10830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And in the fourteenth day of the first month is the passover of the LORD.
10831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And in the fifteenth day of this month is the feast: seven days shall unleavened bread be eaten.
10832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the first day shall be an holy convocation; ye shall do no manner of servile work therein:
10833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But ye shall offer a sacrifice made by fire for a burnt offering unto the LORD; two young bullocks, and one ram, and seven lambs of the first year: they shall be unto you without blemish:
10834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And their meat offering shall be of flour mingled with oil: three tenth deals shall ye offer for a bullock, and two tenth deals for a ram;
10835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             A several tenth deal shalt thou offer for every lamb, throughout the seven lambs:
10836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And one goat for a sin offering, to make an atonement for you.
10837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ye shall offer these beside the burnt offering in the morning, which is for a continual burnt offering.
10838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   After this manner ye shall offer daily, throughout the seven days, the meat of the sacrifice made by fire, of a sweet savor unto the LORD: it shall be offered beside the continual burnt offering, and his drink offering.
10839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And on the seventh day ye shall have an holy convocation; ye shall do no servile work.
10840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Also in the day of the firstfruits, when ye bring a new meat offering unto the LORD, after your weeks be out, ye shall have an holy convocation; ye shall do no servile work:
10841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But ye shall offer the burnt offering for a sweet savor unto the LORD; two young bullocks, one ram, seven lambs of the first year;
10842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And their meat offering of flour mingled with oil, three tenth deals unto one bullock, two tenth deals unto one ram,
10843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A several tenth deal unto one lamb, throughout the seven lambs;
10844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And one kid of the goats, to make an atonement for you.
10845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall offer them beside the continual burnt offering, and his meat offering, (they shall be unto you without blemish) and their drink offerings.
10846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And in the seventh month, on the first day of the month, ye shall have an holy convocation; ye shall do no servile work: it is a day of blowing the trumpets unto you.
10847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ye shall offer a burnt offering for a sweet savor unto the LORD; one young bullock, one ram, and seven lambs of the first year without blemish:
10848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And their meat offering shall be of flour mingled with oil, three tenth deals for a bullock, and two tenth deals for a ram,
10849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And one tenth deal for one lamb, throughout the seven lambs:
10850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And one kid of the goats for a sin offering, to make an atonement for you:
10851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Beside the burnt offering of the month, and his meat offering, and the daily burnt offering, and his meat offering, and their drink offerings, according unto their manner, for a sweet savor, a sacrifice made by fire unto the LORD.
10852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ye shall have on the tenth day of this seventh month an holy convocation; and ye shall afflict your souls: ye shall not do any work therein:
10853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But ye shall offer a burnt offering unto the LORD for a sweet savor; one young bullock, one ram, and seven lambs of the first year; they shall be unto you without blemish:
10854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And their meat offering shall be of flour mingled with oil, three tenth deals to a bullock, and two tenth deals to one ram,
10855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A several tenth deal for one lamb, throughout the seven lambs:
10856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      One kid of the goats for a sin offering; beside the sin offering of atonement, and the continual burnt offering, and the meat offering of it, and their drink offerings.
10857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And on the fifteenth day of the seventh month ye shall have an holy convocation; ye shall do no servile work, and ye shall keep a feast unto the LORD seven days:
10858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall offer a burnt offering, a sacrifice made by fire, of a sweet savor unto the LORD; thirteen young bullocks, two rams, and fourteen lambs of the first year; they shall be without blemish:
10859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And their meat offering shall be of flour mingled with oil, three tenth deals unto every bullock of the thirteen bullocks, two tenth deals to each ram of the two rams,
10860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And a several tenth deal to each lamb of the fourteen lambs:
10861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
10862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And on the second day ye shall offer twelve young bullocks, two rams, fourteen lambs of the first year without spot:
10863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
10864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And one kid of the goats for a sin offering; beside the continual burnt offering, and the meat offering thereof, and their drink offerings.
10865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And on the third day eleven bullocks, two rams, fourteen lambs of the first year without blemish;
10866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
10867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.
10868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And on the fourth day ten bullocks, two rams, and fourteen lambs of the first year without blemish:
10869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
10870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And one kid of the goats for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
10871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And on the fifth day nine bullocks, two rams, and fourteen lambs of the first year without spot:
10872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
10873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.
10874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And on the sixth day eight bullocks, two rams, and fourteen lambs of the first year without blemish:
10875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
10876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
10877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And on the seventh day seven bullocks, two rams, and fourteen lambs of the first year without blemish:
10878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And their meat offering and their drink offerings for the bullocks, for the rams, and for the lambs, shall be according to their number, after the manner:
10879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And one goat for a sin offering; beside the continual burnt offering, his meat offering, and his drink offering.
10880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       On the eighth day ye shall have a solemn assembly: ye shall do no servile work therein:
10881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But ye shall offer a burnt offering, a sacrifice made by fire, of a sweet savor unto the LORD: one bullock, one ram, seven lambs of the first year without blemish:
10882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Their meat offering and their drink offerings for the bullock, for the ram, and for the lambs, shall be according to their number, after the manner:
10883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And one goat for a sin offering; beside the continual burnt offering, and his meat offering, and his drink offering.
10884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These things ye shall do unto the LORD in your set feasts, beside your vows, and your freewill offerings, for your burnt offerings, and for your meat offerings, and for your drink offerings, and for your peace offerings.
10885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses told the children of Israel according to all that the LORD commanded Moses.
10886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses spake unto the heads of the tribes concerning the children of Israel, saying, This is the thing which the LORD hath commanded.
10887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If a man vow a vow unto the LORD, or swear an oath to bind his soul with a bond; he shall not break his word, he shall do according to all that proceedeth out of his mouth.
10888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If a woman also vow a vow unto the LORD, and bind herself by a bond, being in her father's house in her youth;
10889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And her father hear her vow, and her bond wherewith she hath bound her soul, and her father shall hold his peace at her; then all her vows shall stand, and every bond wherewith she hath bound her soul shall stand.
10890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if her father disallow her in the day that he heareth; not any of her vows, or of her bonds wherewith she hath bound her soul, shall stand: and the LORD shall forgive her, because her father disallowed her.
10891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if she had at all an husband, when she vowed, or uttered ought out of her lips, wherewith she bound her soul;
10892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And her husband heard it, and held his peace at her in the day that he heard it: then her vows shall stand, and her bonds wherewith she bound her soul shall stand.
10893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But if her husband disallowed her on the day that he heard it; then he shall make her vow which she vowed, and that which she uttered with her lips, wherewith she bound her soul, of none effect: and the LORD shall forgive her.
10894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But every vow of a widow, and of her that is divorced, wherewith they have bound their souls, shall stand against her.
10895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if she vowed in her husband's house, or bound her soul by a bond with an oath;
10896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And her husband heard it, and held his peace at her, and disallowed her not: then all her vows shall stand, and every bond wherewith she bound her soul shall stand.
10897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if her husband hath utterly made them void on the day he heard them; then whatsoever proceeded out of her lips concerning her vows, or concerning the bond of her soul, shall not stand: her husband hath made them void; and the LORD shall forgive her.
10898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Every vow, and every binding oath to afflict the soul, her husband may establish it, or her husband may make it void.
10899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But if her husband altogether hold his peace at her from day to day; then he establisheth all her vows, or all her bonds, which are upon her: he confirmeth them, because he held his peace at her in the day that he heard them.
10900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if he shall any ways make them void after that he hath heard them; then he shall bear her iniquity.
10901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the statutes, which the LORD commanded Moses, between a man and his wife, between the father and his daughter, being yet in her youth in her father's house.
10902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avenge the children of Israel of the Midianites: afterward shalt thou be gathered unto thy people.
10904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Moses spake unto the people, saying, Arm some of yourselves unto the war, and let them go against the Midianites, and avenge the LORD of Midian.
10905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of every tribe a thousand, throughout all the tribes of Israel, shall ye send to the war.
10906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So there were delivered out of the thousands of Israel, a thousand of every tribe, twelve thousand armed for war.
10907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses sent them to the war, a thousand of every tribe, them and Phinehas the son of Eleazar the priest, to the war, with the holy instruments, and the trumpets to blow in his hand.
10908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they warred against the Midianites, as the LORD commanded Moses; and they slew all the males.
10909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they slew the kings of Midian, beside the rest of them that were slain; namely, Evi, and Rekem, and Zur, and Hur, and Reba, five kings of Midian: Balaam also the son of Beor they slew with the sword.
10910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Israel took all the women of Midian captives, and their little ones, and took the spoil of all their cattle, and all their flocks, and all their goods.
10911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they burnt all their cities wherein they dwelt, and all their goodly castles, with fire.
10912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they took all the spoil, and all the prey, both of men and of beasts.
10913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they brought the captives, and the prey, and the spoil, unto Moses, and Eleazar the priest, and unto the congregation of the children of Israel, unto the camp at the plains of Moab, which are by Jordan near Jericho.
10914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses, and Eleazar the priest, and all the princes of the congregation, went forth to meet them without the camp.
10915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses was wroth with the officers of the host, with the captains over thousands, and captains over hundreds, which came from the battle.
10916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto them, Have ye saved all the women alive?
10917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, these caused the children of Israel, through the counsel of Balaam, to commit trespass against the LORD in the matter of Peor, and there was a plague among the congregation of the LORD.
10918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now therefore kill every male among the little ones, and kill every woman that hath known man by lying with him.
10919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But all the women children, that have not known a man by lying with him, keep alive for yourselves.
10920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And do ye abide without the camp seven days: whosoever hath killed any person, and whosoever hath touched any slain, purify both yourselves and your captives on the third day, and on the seventh day.
10921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And purify all your raiment, and all that is made of skins, and all work of goats' hair, and all things made of wood.
10922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Eleazar the priest said unto the men of war which went to the battle, This is the ordinance of the law which the LORD commanded Moses;
10923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Only the gold, and the silver, the brass, the iron, the tin, and the lead,
10924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Every thing that may abide the fire, ye shall make it go through the fire, and it shall be clean: nevertheless it shall be purified with the water of separation: and all that abideth not the fire ye shall make go through the water.
10925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall wash your clothes on the seventh day, and ye shall be clean, and afterward ye shall come into the camp.
10926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
10927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Take the sum of the prey that was taken, both of man and of beast, thou, and Eleazar the priest, and the chief fathers of the congregation:
10928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And divide the prey into two parts; between them that took the war upon them, who went out to battle, and between all the congregation:
10929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And levy a tribute unto the LORD of the men of war which went out to battle: one soul of five hundred, both of the persons, and of the beeves, and of the asses, and of the sheep:
10930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Take it of their half, and give it unto Eleazar the priest, for an heave offering of the LORD.
10931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of the children of Israel's half, thou shalt take one portion of fifty, of the persons, of the beeves, of the asses, and of the flocks, of all manner of beasts, and give them unto the Levites, which keep the charge of the tabernacle of the LORD.
10932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses and Eleazar the priest did as the LORD commanded Moses.
10933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the booty, being the rest of the prey which the men of war had caught, was six hundred thousand and seventy thousand and five thousand sheep,
10934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And threescore and twelve thousand beeves,
10935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And threescore and one thousand asses,
10936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thirty and two thousand persons in all, of women that had not known man by lying with him.
10937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the half, which was the portion of them that went out to war, was in number three hundred thousand and seven and thirty thousand and five hundred sheep:
10938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD's tribute of the sheep was six hundred and threescore and fifteen.
10939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the beeves were thirty and six thousand; of which the LORD's tribute was threescore and twelve.
10940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the asses were thirty thousand and five hundred; of which the LORD's tribute was threescore and one.
10941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the persons were sixteen thousand; of which the LORD's tribute was thirty and two persons.
10942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Moses gave the tribute, which was the LORD's heave offering, unto Eleazar the priest, as the LORD commanded Moses.
10943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And of the children of Israel's half, which Moses divided from the men that warred,
10944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (Now the half that pertained unto the congregation was three hundred thousand and thirty thousand and seven thousand and five hundred sheep,
10945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thirty and six thousand beeves,
10946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thirty thousand asses and five hundred,
10947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And sixteen thousand persons;)
10948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Even of the children of Israel's half, Moses took one portion of fifty, both of man and of beast, and gave them unto the Levites, which kept the charge of the tabernacle of the LORD; as the LORD commanded Moses.
10949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the officers which were over thousands of the host, the captains of thousands, and captains of hundreds, came near unto Moses:
10950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they said unto Moses, Thy servants have taken the sum of the men of war which are under our charge, and there lacketh not one man of us.
10951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   We have therefore brought an oblation for the LORD, what every man hath gotten, of jewels of gold, chains, and bracelets, rings, earrings, and tablets, to make an atonement for our souls before the LORD.
10952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses and Eleazar the priest took the gold of them, even all wrought jewels.
10953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the gold of the offering that they offered up to the LORD, of the captains of thousands, and of the captains of hundreds, was sixteen thousand seven hundred and fifty shekels.
10954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (For the men of war had taken spoil, every man for himself.)
10955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses and Eleazar the priest took the gold of the captains of thousands and of hundreds, and brought it into the tabernacle of the congregation, for a memorial for the children of Israel before the LORD.
10956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now the children of Reuben and the children of Gad had a very great multitude of cattle: and when they saw the land of Jazer, and the land of Gilead, that, behold, the place was a place for cattle;
10957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The children of Gad and the children of Reuben came and spake unto Moses, and to Eleazar the priest, and unto the princes of the congregation, saying,
10958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ataroth, and Dibon, and Jazer, and Nimrah, and Heshbon, and Elealeh, and Shebam, and Nebo, and Beon,
10959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Even the country which the LORD smote before the congregation of Israel, is a land for cattle, and thy servants have cattle:
10960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore, said they, if we have found grace in thy sight, let this land be given unto thy servants for a possession, and bring us not over Jordan.
10961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses said unto the children of Gad and to the children of Reuben, Shall your brethren go to war, and shall ye sit here?
10962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And wherefore discourage ye the heart of the children of Israel from going over into the land which the LORD hath given them?
10963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus did your fathers, when I sent them from Kadeshbarnea to see the land.
10964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For when they went up unto the valley of Eshcol, and saw the land, they discouraged the heart of the children of Israel, that they should not go into the land which the LORD had given them.
10965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD's anger was kindled the same time, and he sware, saying,
10966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Surely none of the men that came up out of Egypt, from twenty years old and upward, shall see the land which I sware unto Abraham, unto Isaac, and unto Jacob; because they have not wholly followed me:
10967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Save Caleb the son of Jephunneh the Kenezite, and Joshua the son of Nun: for they have wholly followed the LORD.
10968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD's anger was kindled against Israel, and he made them wander in the wilderness forty years, until all the generation, that had done evil in the sight of the LORD, was consumed.
10969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And, behold, ye are risen up in your fathers' stead, an increase of sinful men, to augment yet the fierce anger of the LORD toward Israel.
10970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For if ye turn away from after him, he will yet again leave them in the wilderness; and ye shall destroy all this people.
10971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they came near unto him, and said, We will build sheepfolds here for our cattle, and cities for our little ones:
10972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But we ourselves will go ready armed before the children of Israel, until we have brought them unto their place: and our little ones shall dwell in the fenced cities because of the inhabitants of the land.
10973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    We will not return unto our houses, until the children of Israel have inherited every man his inheritance.
10974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For we will not inherit with them on yonder side Jordan, or forward; because our inheritance is fallen to us on this side Jordan eastward.
10975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses said unto them, If ye will do this thing, if ye will go armed before the LORD to war,
10976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And will go all of you armed over Jordan before the LORD, until he hath driven out his enemies from before him,
10977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the land be subdued before the LORD: then afterward ye shall return, and be guiltless before the LORD, and before Israel; and this land shall be your possession before the LORD.
10978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if ye will not do so, behold, ye have sinned against the LORD: and be sure your sin will find you out.
10979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build you cities for your little ones, and folds for your sheep; and do that which hath proceeded out of your mouth.
10980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Gad and the children of Reuben spake unto Moses, saying, Thy servants will do as my lord commandeth.
10981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Our little ones, our wives, our flocks, and all our cattle, shall be there in the cities of Gilead:
10982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But thy servants will pass over, every man armed for war, before the Lord to battle, as my lord saith.
10983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So concerning them Moses commanded Eleazar the priest, and Joshua the son of Nun, and the chief fathers of the tribes of the children of Israel:
10984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses said unto them, If the children of Gad and the children of Reuben will pass with you over Jordan, every man armed to battle, before the LORD, and the land shall be subdued before you; then ye shall give them the land of Gilead for a possession:
10985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if they will not pass over with you armed, they shall have possessions among you in the land of Canaan.
10986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Gad and the children of Reuben answered, saying, As the LORD hath said unto thy servants, so will we do.
10987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We will pass over armed before the LORD into the land of Canaan, that the possession of our inheritance on this side Jordan may be ours.
10988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Moses gave unto them, even to the children of Gad, and to the children of Reuben, and unto half the tribe of Manasseh the son of Joseph, the kingdom of Sihon king of the Amorites, and the kingdom of Og king of Bashan, the land, with the cities thereof in the coasts, even the cities of the country round about.
10989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Gad built Dibon, and Ataroth, and Aroer,
10990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Atroth, Shophan, and Jaazer, and Jogbehah,
10991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Bethnimrah, and Bethharan, fenced cities: and folds for sheep.
10992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Reuben built Heshbon, and Elealeh, and Kirjathaim,
10993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Nebo, and Baalmeon, (their names being changed,) and Shibmah: and gave other names unto the cities which they builded.
10994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Machir the son of Manasseh went to Gilead, and took it, and dispossessed the Amorite which was in it.
10995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses gave Gilead unto Machir the son of Manasseh; and he dwelt therein.
10996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jair the son of Manasseh went and took the small towns thereof, and called them Havothjair.
10997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Nobah went and took Kenath, and the villages thereof, and called it Nobah, after his own name.
10998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These are the journeys of the children of Israel, which went forth out of the land of Egypt with their armies under the hand of Moses and Aaron.
10999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses wrote their goings out according to their journeys by the commandment of the LORD: and these are their journeys according to their goings out.
11000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they departed from Rameses in the first month, on the fifteenth day of the first month; on the morrow after the passover the children of Israel went out with an high hand in the sight of all the Egyptians.
11001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For the Egyptians buried all their firstborn, which the LORD had smitten among them: upon their gods also the LORD executed judgments.
11002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel removed from Rameses, and pitched in Succoth.
11003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they departed from Succoth, and pitched in Etham, which is in the edge of the wilderness.
11004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they removed from Etham, and turned again unto Pihahiroth, which is before Baalzephon: and they pitched before Migdol.
11005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they departed from before Pihahiroth, and passed through the midst of the sea into the wilderness, and went three days' journey in the wilderness of Etham, and pitched in Marah.
11006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they removed from Marah, and came unto Elim: and in Elim were twelve fountains of water, and threescore and ten palm trees; and they pitched there.
11007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they removed from Elim, and encamped by the Red sea.
11008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they removed from the Red sea, and encamped in the wilderness of Sin.
11009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they took their journey out of the wilderness of Sin, and encamped in Dophkah.
11010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they departed from Dophkah, and encamped in Alush.
11011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they removed from Alush, and encamped at Rephidim, where was no water for the people to drink.
11012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they departed from Rephidim, and pitched in the wilderness of Sinai.
11013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they removed from the desert of Sinai, and pitched at Kibrothhattaavah.
11014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they departed from Kibrothhattaavah, and encamped at Hazeroth.
11015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they departed from Hazeroth, and pitched in Rithmah.
11016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they departed from Rithmah, and pitched at Rimmonparez.
11017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they departed from Rimmonparez, and pitched in Libnah.
11018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Libnah, and pitched at Rissah.
11019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they journeyed from Rissah, and pitched in Kehelathah.
11020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they went from Kehelathah, and pitched in mount Shapher.
11021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they removed from mount Shapher, and encamped in Haradah.
11022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they removed from Haradah, and pitched in Makheloth.
11023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they removed from Makheloth, and encamped at Tahath.
11024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they departed from Tahath, and pitched at Tarah.
11025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they removed from Tarah, and pitched in Mithcah.
11026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they went from Mithcah, and pitched in Hashmonah.
11027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they departed from Hashmonah, and encamped at Moseroth.
11028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they departed from Moseroth, and pitched in Benejaakan.
11029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they removed from Benejaakan, and encamped at Horhagidgad.
11030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they went from Horhagidgad, and pitched in Jotbathah.
11031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they removed from Jotbathah, and encamped at Ebronah.
11032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they departed from Ebronah, and encamped at Eziongaber.
11033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they removed from Eziongaber, and pitched in the wilderness of Zin, which is Kadesh.
11034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they removed from Kadesh, and pitched in mount Hor, in the edge of the land of Edom.
11035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Aaron the priest went up into mount Hor at the commandment of the LORD, and died there, in the fortieth year after the children of Israel were come out of the land of Egypt, in the first day of the fifth month.
11036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Aaron was an hundred and twenty and three years old when he died in mount Hor.
11037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And king Arad the Canaanite, which dwelt in the south in the land of Canaan, heard of the coming of the children of Israel.
11038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they departed from mount Hor, and pitched in Zalmonah.
11039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they departed from Zalmonah, and pitched in Punon.
11040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they departed from Punon, and pitched in Oboth.
11041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they departed from Oboth, and pitched in Ijeabarim, in the border of Moab.
11042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they departed from Iim, and pitched in Dibongad.
11043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they removed from Dibongad, and encamped in Almondiblathaim.
11044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they removed from Almondiblathaim, and pitched in the mountains of Abarim, before Nebo.
11045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they departed from the mountains of Abarim, and pitched in the plains of Moab by Jordan near Jericho.
11046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they pitched by Jordan, from Bethjesimoth even unto Abelshittim in the plains of Moab.
11047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying,
11048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak unto the children of Israel, and say unto them, When ye are passed over Jordan into the land of Canaan;
11049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then ye shall drive out all the inhabitants of the land from before you, and destroy all their pictures, and destroy all their molten images, and quite pluck down all their high places:
11050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye shall dispossess the inhabitants of the land, and dwell therein: for I have given you the land to possess it.
11051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ye shall divide the land by lot for an inheritance among your families: and to the more ye shall give the more inheritance, and to the fewer ye shall give the less inheritance: every man's inheritance shall be in the place where his lot falleth; according to the tribes of your fathers ye shall inherit.
11052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if ye will not drive out the inhabitants of the land from before you; then it shall come to pass, that those which ye let remain of them shall be pricks in your eyes, and thorns in your sides, and shall vex you in the land wherein ye dwell.
11053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moreover it shall come to pass, that I shall do unto you, as I thought to do unto them.
11054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
11055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Command the children of Israel, and say unto them, When ye come into the land of Canaan; (this is the land that shall fall unto you for an inheritance, even the land of Canaan with the coasts thereof:)
11056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then your south quarter shall be from the wilderness of Zin along by the coast of Edom, and your south border shall be the outmost coast of the salt sea eastward:
11057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And your border shall turn from the south to the ascent of Akrabbim, and pass on to Zin: and the going forth thereof shall be from the south to Kadeshbarnea, and shall go on to Hazaraddar, and pass on to Azmon:
11058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the border shall fetch a compass from Azmon unto the river of Egypt, and the goings out of it shall be at the sea.
11059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And as for the western border, ye shall even have the great sea for a border: this shall be your west border.
11060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And this shall be your north border: from the great sea ye shall point out for you mount Hor:
11061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              From mount Hor ye shall point out your border unto the entrance of Hamath; and the goings forth of the border shall be to Zedad:
11062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the border shall go on to Ziphron, and the goings out of it shall be at Hazarenan: this shall be your north border.
11063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye shall point out your east border from Hazarenan to Shepham:
11064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the coast shall go down from Shepham to Riblah, on the east side of Ain; and the border shall descend, and shall reach unto the side of the sea of Chinnereth eastward:
11065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the border shall go down to Jordan, and the goings out of it shall be at the salt sea: this shall be your land with the coasts thereof round about.
11066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Moses commanded the children of Israel, saying, This is the land which ye shall inherit by lot, which the LORD commanded to give unto the nine tribes, and to the half tribe:
11067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the tribe of the children of Reuben according to the house of their fathers, and the tribe of the children of Gad according to the house of their fathers, have received their inheritance; and half the tribe of Manasseh have received their inheritance:
11068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The two tribes and the half tribe have received their inheritance on this side Jordan near Jericho eastward, toward the sunrising.
11069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
11070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the names of the men which shall divide the land unto you: Eleazar the priest, and Joshua the son of Nun.
11071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And ye shall take one prince of every tribe, to divide the land by inheritance.
11072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the names of the men are these: Of the tribe of Judah, Caleb the son of Jephunneh.
11073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of the tribe of the children of Simeon, Shemuel the son of Ammihud.
11074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Of the tribe of Benjamin, Elidad the son of Chislon.
11075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the prince of the tribe of the children of Dan, Bukki the son of Jogli.
11076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The prince of the children of Joseph, for the tribe of the children of Manasseh, Hanniel the son of Ephod.
11077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the prince of the tribe of the children of Ephraim, Kemuel the son of Shiphtan.
11078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the prince of the tribe of the children of Zebulun, Elizaphan the son of Parnach.
11079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the prince of the tribe of the children of Issachar, Paltiel the son of Azzan.
11080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the prince of the tribe of the children of Asher, Ahihud the son of Shelomi.
11081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the prince of the tribe of the children of Naphtali, Pedahel the son of Ammihud.
11082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are they whom the LORD commanded to divide the inheritance unto the children of Israel in the land of Canaan.
11083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto Moses in the plains of Moab by Jordan near Jericho, saying,
11084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Command the children of Israel, that they give unto the Levites of the inheritance of their possession cities to dwell in; and ye shall give also unto the Levites suburbs for the cities round about them.
11085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the cities shall they have to dwell in; and the suburbs of them shall be for their cattle, and for their goods, and for all their beasts.
11086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the suburbs of the cities, which ye shall give unto the Levites, shall reach from the wall of the city and outward a thousand cubits round about.
11087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ye shall measure from without the city on the east side two thousand cubits, and on the south side two thousand cubits, and on the west side two thousand cubits, and on the north side two thousand cubits; and the city shall be in the midst: this shall be to them the suburbs of the cities.
11088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And among the cities which ye shall give unto the Levites there shall be six cities for refuge, which ye shall appoint for the manslayer, that he may flee thither: and to them ye shall add forty and two cities.
11089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So all the cities which ye shall give to the Levites shall be forty and eight cities: them shall ye give with their suburbs.
11090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the cities which ye shall give shall be of the possession of the children of Israel: from them that have many ye shall give many; but from them that have few ye shall give few: every one shall give of his cities unto the Levites according to his inheritance which he inheriteth.
11091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD spake unto Moses, saying,
11092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Speak unto the children of Israel, and say unto them, When ye be come over Jordan into the land of Canaan;
11093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then ye shall appoint you cities to be cities of refuge for you; that the slayer may flee thither, which killeth any person at unawares.
11094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they shall be unto you cities for refuge from the avenger; that the manslayer die not, until he stand before the congregation in judgment.
11095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And of these cities which ye shall give six cities shall ye have for refuge.
11096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye shall give three cities on this side Jordan, and three cities shall ye give in the land of Canaan, which shall be cities of refuge.
11097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                These six cities shall be a refuge, both for the children of Israel, and for the stranger, and for the sojourner among them: that every one that killeth any person unawares may flee thither.
11098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if he smite him with an instrument of iron, so that he die, he is a murderer: the murderer shall surely be put to death.
11099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if he smite him with throwing a stone, wherewith he may die, and he die, he is a murderer: the murderer shall surely be put to death.
11100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or if he smite him with an hand weapon of wood, wherewith he may die, and he die, he is a murderer: the murderer shall surely be put to death.
11101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The revenger of blood himself shall slay the murderer: when he meeteth him, he shall slay him.
11102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But if he thrust him of hatred, or hurl at him by laying of wait, that he die;
11103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Or in enmity smite him with his hand, that he die: he that smote him shall surely be put to death; for he is a murderer: the revenger of blood shall slay the murderer, when he meeteth him.
11104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if he thrust him suddenly without enmity, or have cast upon him any thing without laying of wait,
11105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or with any stone, wherewith a man may die, seeing him not, and cast it upon him, that he die, and was not his enemy, neither sought his harm:
11106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the congregation shall judge between the slayer and the revenger of blood according to these judgments:
11107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the congregation shall deliver the slayer out of the hand of the revenger of blood, and the congregation shall restore him to the city of his refuge, whither he was fled: and he shall abide in it unto the death of the high priest, which was anointed with the holy oil.
11108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But if the slayer shall at any time come without the border of the city of his refuge, whither he was fled;
11109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the revenger of blood find him without the borders of the city of his refuge, and the revenger of blood kill the slayer; he shall not be guilty of blood:
11110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Because he should have remained in the city of his refuge until the death of the high priest: but after the death of the high priest the slayer shall return into the land of his possession.
11111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So these things shall be for a statute of judgment unto you throughout your generations in all your dwellings.
11112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Whoso killeth any person, the murderer shall be put to death by the mouth of witnesses: but one witness shall not testify against any person to cause him to die.
11113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moreover ye shall take no satisfaction for the life of a murderer, which is guilty of death: but he shall be surely put to death.
11114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ye shall take no satisfaction for him that is fled to the city of his refuge, that he should come again to dwell in the land, until the death of the priest.
11115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So ye shall not pollute the land wherein ye are: for blood it defileth the land: and the land cannot be cleansed of the blood that is shed therein, but by the blood of him that shed it.
11116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Defile not therefore the land which ye shall inhabit, wherein I dwell: for I the LORD dwell among the children of Israel.
11117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the chief fathers of the families of the children of Gilead, the son of Machir, the son of Manasseh, of the families of the sons of Joseph, came near, and spake before Moses, and before the princes, the chief fathers of the children of Israel:
11118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they said, The LORD commanded my lord to give the land for an inheritance by lot to the children of Israel: and my lord was commanded by the LORD to give the inheritance of Zelophehad our brother unto his daughters.
11119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if they be married to any of the sons of the other tribes of the children of Israel, then shall their inheritance be taken from the inheritance of our fathers, and shall be put to the inheritance of the tribe whereunto they are received: so shall it be taken from the lot of our inheritance.
11120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the jubilee of the children of Israel shall be, then shall their inheritance be put unto the inheritance of the tribe whereunto they are received: so shall their inheritance be taken away from the inheritance of the tribe of our fathers.
11121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses commanded the children of Israel according to the word of the LORD, saying, The tribe of the sons of Joseph hath said well.
11122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This is the thing which the LORD doth command concerning the daughters of Zelophehad, saying, Let them marry to whom they think best; only to the family of the tribe of their father shall they marry.
11123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So shall not the inheritance of the children of Israel remove from tribe to tribe: for every one of the children of Israel shall keep himself to the inheritance of the tribe of his fathers.
11124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And every daughter, that possesseth an inheritance in any tribe of the children of Israel, shall be wife unto one of the family of the tribe of her father, that the children of Israel may enjoy every man the inheritance of his fathers.
11125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Neither shall the inheritance remove from one tribe to another tribe; but every one of the tribes of the children of Israel shall keep himself to his own inheritance.
11126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Even as the LORD commanded Moses, so did the daughters of Zelophehad:
11127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For Mahlah, Tirzah, and Hoglah, and Milcah, and Noah, the daughters of Zelophehad, were married unto their father's brothers' sons:
11128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they were married into the families of the sons of Manasseh the son of Joseph, and their inheritance remained in the tribe of the family of their father.
11129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the commandments and the judgments, which the LORD commanded by the hand of Moses unto the children of Israel in the plains of Moab by Jordan near Jericho.
11130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These be the words which Moses spake unto all Israel on this side Jordan in the wilderness, in the plain over against the Red sea, between Paran, and Tophel, and Laban, and Hazeroth, and Dizahab.
11131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       (There are eleven days' journey from Horeb by the way of mount Seir unto Kadeshbarnea.)
11132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass in the fortieth year, in the eleventh month, on the first day of the month, that Moses spake unto the children of Israel, according unto all that the LORD had given him in commandment unto them;
11133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After he had slain Sihon the king of the Amorites, which dwelt in Heshbon, and Og the king of Bashan, which dwelt at Astaroth in Edrei:
11134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            On this side Jordan, in the land of Moab, began Moses to declare this law, saying,
11135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD our God spake unto us in Horeb, saying, Ye have dwelt long enough in this mount:
11136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Turn you, and take your journey, and go to the mount of the Amorites, and unto all the places nigh thereunto, in the plain, in the hills, and in the vale, and in the south, and by the sea side, to the land of the Canaanites, and unto Lebanon, unto the great river, the river Euphrates.
11137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, I have set the land before you: go in and possess the land which the LORD sware unto your fathers, Abraham, Isaac, and Jacob, to give unto them and to their seed after them.
11138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I spake unto you at that time, saying, I am not able to bear you myself alone:
11139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD your God hath multiplied you, and, behold, ye are this day as the stars of heaven for multitude.
11140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (The LORD God of your fathers make you a thousand times so many more as ye are, and bless you, as he hath promised you!)
11141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 How can I myself alone bear your cumbrance, and your burden, and your strife?
11142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Take you wise men, and understanding, and known among your tribes, and I will make them rulers over you.
11143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And ye answered me, and said, The thing which thou hast spoken is good for us to do.
11144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So I took the chief of your tribes, wise men, and known, and made them heads over you, captains over thousands, and captains over hundreds, and captains over fifties, and captains over tens, and officers among your tribes.
11145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I charged your judges at that time, saying, Hear the causes between your brethren, and judge righteously between every man and his brother, and the stranger that is with him.
11146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ye shall not respect persons in judgment; but ye shall hear the small as well as the great; ye shall not be afraid of the face of man; for the judgment is God's: and the cause that is too hard for you, bring it unto me, and I will hear it.
11147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And I commanded you at that time all the things which ye should do.
11148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when we departed from Horeb, we went through all that great and terrible wilderness, which ye saw by the way of the mountain of the Amorites, as the LORD our God commanded us; and we came to Kadeshbarnea.
11149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I said unto you, Ye are come unto the mountain of the Amorites, which the LORD our God doth give unto us.
11150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, the LORD thy God hath set the land before thee: go up and possess it, as the LORD God of thy fathers hath said unto thee; fear not, neither be discouraged.
11151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ye came near unto me every one of you, and said, We will send men before us, and they shall search us out the land, and bring us word again by what way we must go up, and into what cities we shall come.
11152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the saying pleased me well: and I took twelve men of you, one of a tribe:
11153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they turned and went up into the mountain, and came unto the valley of Eshcol, and searched it out.
11154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they took of the fruit of the land in their hands, and brought it down unto us, and brought us word again, and said, It is a good land which the LORD our God doth give us.
11155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Notwithstanding ye would not go up, but rebelled against the commandment of the LORD your God:
11156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye murmured in your tents, and said, Because the LORD hated us, he hath brought us forth out of the land of Egypt, to deliver us into the hand of the Amorites, to destroy us.
11157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whither shall we go up? our brethren have discouraged our heart, saying, The people is greater and taller than we; the cities are great and walled up to heaven; and moreover we have seen the sons of the Anakims there.
11158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then I said unto you, Dread not, neither be afraid of them.
11159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD your God which goeth before you, he shall fight for you, according to all that he did for you in Egypt before your eyes;
11160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And in the wilderness, where thou hast seen how that the LORD thy God bare thee, as a man doth bear his son, in all the way that ye went, until ye came into this place.
11161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet in this thing ye did not believe the LORD your God,
11162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who went in the way before you, to search you out a place to pitch your tents in, in fire by night, to show you by what way ye should go, and in a cloud by day.
11163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD heard the voice of your words, and was wroth, and sware, saying,
11164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Surely there shall not one of these men of this evil generation see that good land, which I sware to give unto your fathers.
11165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Save Caleb the son of Jephunneh; he shall see it, and to him will I give the land that he hath trodden upon, and to his children, because he hath wholly followed the LORD.
11166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also the LORD was angry with me for your sakes, saying, Thou also shalt not go in thither.
11167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But Joshua the son of Nun, which standeth before thee, he shall go in thither: encourage him: for he shall cause Israel to inherit it.
11168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover your little ones, which ye said should be a prey, and your children, which in that day had no knowledge between good and evil, they shall go in thither, and unto them will I give it, and they shall possess it.
11169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But as for you, turn you, and take your journey into the wilderness by the way of the Red sea.
11170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then ye answered and said unto me, We have sinned against the LORD, we will go up and fight, according to all that the LORD our God commanded us. And when ye had girded on every man his weapons of war, ye were ready to go up into the hill.
11171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto me, Say unto them. Go not up, neither fight; for I am not among you; lest ye be smitten before your enemies.
11172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So I spake unto you; and ye would not hear, but rebelled against the commandment of the LORD, and went presumptuously up into the hill.
11173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Amorites, which dwelt in that mountain, came out against you, and chased you, as bees do, and destroyed you in Seir, even unto Hormah.
11174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ye returned and wept before the LORD; but the LORD would not hearken to your voice, nor give ear unto you.
11175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So ye abode in Kadesh many days, according unto the days that ye abode there.
11176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then we turned, and took our journey into the wilderness by the way of the Red sea, as the LORD spake unto me: and we compassed mount Seir many days.
11177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD spake unto me, saying,
11178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye have compassed this mountain long enough: turn you northward.
11179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And command thou the people, saying, Ye are to pass through the coast of your brethren the children of Esau, which dwell in Seir; and they shall be afraid of you: take ye good heed unto yourselves therefore:
11180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Meddle not with them; for I will not give you of their land, no, not so much as a foot breadth; because I have given mount Seir unto Esau for a possession.
11181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ye shall buy meat of them for money, that ye may eat; and ye shall also buy water of them for money, that ye may drink.
11182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For the LORD thy God hath blessed thee in all the works of thy hand: he knoweth thy walking through this great wilderness: these forty years the LORD thy God hath been with thee; thou hast lacked nothing.
11183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when we passed by from our brethren the children of Esau, which dwelt in Seir, through the way of the plain from Elath, and from Eziongaber, we turned and passed by the way of the wilderness of Moab.
11184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto me, Distress not the Moabites, neither contend with them in battle: for I will not give thee of their land for a possession; because I have given Ar unto the children of Lot for a possession.
11185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Emims dwelt therein in times past, a people great, and many, and tall, as the Anakims;
11186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Which also were accounted giants, as the Anakims; but the Moabites called them Emims.
11187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Horims also dwelt in Seir beforetime; but the children of Esau succeeded them, when they had destroyed them from before them, and dwelt in their stead; as Israel did unto the land of his possession, which the LORD gave unto them.
11188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now rise up, said I, and get you over the brook Zered. And we went over the brook Zered.
11189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the space in which we came from Kadeshbarnea, until we were come over the brook Zered, was thirty and eight years; until all the generation of the men of war were wasted out from among the host, as the LORD sware unto them.
11190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For indeed the hand of the LORD was against them, to destroy them from among the host, until they were consumed.
11191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So it came to pass, when all the men of war were consumed and dead from among the people,
11192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That the LORD spake unto me, saying,
11193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou art to pass over through Ar, the coast of Moab, this day:
11194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when thou comest nigh over against the children of Ammon, distress them not, nor meddle with them: for I will not give thee of the land of the children of Ammon any possession; because I have given it unto the children of Lot for a possession.
11195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          (That also was accounted a land of giants: giants dwelt therein in old time; and the Ammonites call them Zamzummims;
11196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A people great, and many, and tall, as the Anakims; but the LORD destroyed them before them; and they succeeded them, and dwelt in their stead:
11197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As he did to the children of Esau, which dwelt in Seir, when he destroyed the Horims from before them; and they succeeded them, and dwelt in their stead even unto this day:
11198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Avims which dwelt in Hazerim, even unto Azzah, the Caphtorims, which came forth out of Caphtor, destroyed them, and dwelt in their stead.)
11199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Rise ye up, take your journey, and pass over the river Arnon: behold, I have given into thine hand Sihon the Amorite, king of Heshbon, and his land: begin to possess it, and contend with him in battle.
11200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This day will I begin to put the dread of thee and the fear of thee upon the nations that are under the whole heaven, who shall hear report of thee, and shall tremble, and be in anguish because of thee.
11201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I sent messengers out of the wilderness of Kedemoth unto Sihon king of Heshbon with words of peace, saying,
11202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Let me pass through thy land: I will go along by the high way, I will neither turn unto the right hand nor to the left.
11203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt sell me meat for money, that I may eat; and give me water for money, that I may drink: only I will pass through on my feet;
11204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                (As the children of Esau which dwell in Seir, and the Moabites which dwell in Ar, did unto me;) until I shall pass over Jordan into the land which the LORD our God giveth us.
11205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But Sihon king of Heshbon would not let us pass by him: for the LORD thy God hardened his spirit, and made his heart obstinate, that he might deliver him into thy hand, as appeareth this day.
11206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said unto me, Behold, I have begun to give Sihon and his land before thee: begin to possess, that thou mayest inherit his land.
11207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Sihon came out against us, he and all his people, to fight at Jahaz.
11208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD our God delivered him before us; and we smote him, and his sons, and all his people.
11209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And we took all his cities at that time, and utterly destroyed the men, and the women, and the little ones, of every city, we left none to remain:
11210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Only the cattle we took for a prey unto ourselves, and the spoil of the cities which we took.
11211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          From Aroer, which is by the brink of the river of Arnon, and from the city that is by the river, even unto Gilead, there was not one city too strong for us: the LORD our God delivered all unto us:
11212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Only unto the land of the children of Ammon thou camest not, nor unto any place of the river Jabbok, nor unto the cities in the mountains, nor unto whatsoever the LORD our God forbade us.
11213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then we turned, and went up the way to Bashan: and Og the king of Bashan came out against us, he and all his people, to battle at Edrei.
11214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto me, Fear him not: for I will deliver him, and all his people, and his land, into thy hand; and thou shalt do unto him as thou didst unto Sihon king of the Amorites, which dwelt at Heshbon.
11215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the LORD our God delivered into our hands Og also, the king of Bashan, and all his people: and we smote him until none was left to him remaining.
11216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And we took all his cities at that time, there was not a city which we took not from them, threescore cities, all the region of Argob, the kingdom of Og in Bashan.
11217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All these cities were fenced with high walls, gates, and bars; beside unwalled towns a great many.
11218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And we utterly destroyed them, as we did unto Sihon king of Heshbon, utterly destroying the men, women, and children, of every city.
11219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But all the cattle, and the spoil of the cities, we took for a prey to ourselves.
11220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And we took at that time out of the hand of the two kings of the Amorites the land that was on this side Jordan, from the river of Arnon unto mount Hermon;
11221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (Which Hermon the Sidonians call Sirion; and the Amorites call it Shenir;)
11222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   All the cities of the plain, and all Gilead, and all Bashan, unto Salchah and Edrei, cities of the kingdom of Og in Bashan.
11223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For only Og king of Bashan remained of the remnant of giants; behold his bedstead was a bedstead of iron; is it not in Rabbath of the children of Ammon? nine cubits was the length thereof, and four cubits the breadth of it, after the cubit of a man.
11224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And this land, which we possessed at that time, from Aroer, which is by the river Arnon, and half mount Gilead, and the cities thereof, gave I unto the Reubenites and to the Gadites.
11225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the rest of Gilead, and all Bashan, being the kingdom of Og, gave I unto the half tribe of Manasseh; all the region of Argob, with all Bashan, which was called the land of giants.
11226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Jair the son of Manasseh took all the country of Argob unto the coasts of Geshuri and Maachathi; and called them after his own name, Bashanhavothjair, unto this day.
11227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I gave Gilead unto Machir.
11228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And unto the Reubenites and unto the Gadites I gave from Gilead even unto the river Arnon half the valley, and the border even unto the river Jabbok, which is the border of the children of Ammon;
11229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The plain also, and Jordan, and the coast thereof, from Chinnereth even unto the sea of the plain, even the salt sea, under Ashdothpisgah eastward.
11230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I commanded you at that time, saying, The LORD your God hath given you this land to possess it: ye shall pass over armed before your brethren the children of Israel, all that are meet for the war.
11231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But your wives, and your little ones, and your cattle, (for I know that ye have much cattle,) shall abide in your cities which I have given you;
11232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Until the LORD have given rest unto your brethren, as well as unto you, and until they also possess the land which the LORD your God hath given them beyond Jordan: and then shall ye return every man unto his possession, which I have given you.
11233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I commanded Joshua at that time, saying, Thine eyes have seen all that the LORD your God hath done unto these two kings: so shall the LORD do unto all the kingdoms whither thou passest.
11234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ye shall not fear them: for the LORD your God he shall fight for you.
11235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I besought the LORD at that time, saying,
11236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              O Lord GOD, thou hast begun to show thy servant thy greatness, and thy mighty hand: for what God is there in heaven or in earth, that can do according to thy works, and according to thy might?
11237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I pray thee, let me go over, and see the good land that is beyond Jordan, that goodly mountain, and Lebanon.
11238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the LORD was wroth with me for your sakes, and would not hear me: and the LORD said unto me, Let it suffice thee; speak no more unto me of this matter.
11239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Get thee up into the top of Pisgah, and lift up thine eyes westward, and northward, and southward, and eastward, and behold it with thine eyes: for thou shalt not go over this Jordan.
11240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But charge Joshua, and encourage him, and strengthen him: for he shall go over before this people, and he shall cause them to inherit the land which thou shalt see.
11241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So we abode in the valley over against Bethpeor.
11242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now therefore hearken, O Israel, unto the statutes and unto the judgments, which I teach you, for to do them, that ye may live, and go in and possess the land which the LORD God of your fathers giveth you.
11243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ye shall not add unto the word which I command you, neither shall ye diminish ought from it, that ye may keep the commandments of the LORD your God which I command you.
11244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Your eyes have seen what the LORD did because of Baalpeor: for all the men that followed Baalpeor, the LORD thy God hath destroyed them from among you.
11245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But ye that did cleave unto the LORD your God are alive every one of you this day.
11246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, I have taught you statutes and judgments, even as the LORD my God commanded me, that ye should do so in the land whither ye go to possess it.
11247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Keep therefore and do them; for this is your wisdom and your understanding in the sight of the nations, which shall hear all these statutes, and say, Surely this great nation is a wise and understanding people.
11248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For what nation is there so great, who hath God so nigh unto them, as the LORD our God is in all things that we call upon him for?
11249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And what nation is there so great, that hath statutes and judgments so righteous as all this law, which I set before you this day?
11250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Only take heed to thyself, and keep thy soul diligently, lest thou forget the things which thine eyes have seen, and lest they depart from thy heart all the days of thy life: but teach them thy sons, and thy sons' sons;
11251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Specially the day that thou stoodest before the LORD thy God in Horeb, when the LORD said unto me, Gather me the people together, and I will make them hear my words, that they may learn to fear me all the days that they shall live upon the earth, and that they may teach their children.
11252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And ye came near and stood under the mountain; and the mountain burned with fire unto the midst of heaven, with darkness, clouds, and thick darkness.
11253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD spake unto you out of the midst of the fire: ye heard the voice of the words, but saw no similitude; only ye heard a voice.
11254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he declared unto you his covenant, which he commanded you to perform, even ten commandments; and he wrote them upon two tables of stone.
11255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD commanded me at that time to teach you statutes and judgments, that ye might do them in the land whither ye go over to possess it.
11256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Take ye therefore good heed unto yourselves; for ye saw no manner of similitude on the day that the LORD spake unto you in Horeb out of the midst of the fire:
11257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lest ye corrupt yourselves, and make you a graven image, the similitude of any figure, the likeness of male or female,
11258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The likeness of any beast that is on the earth, the likeness of any winged fowl that flieth in the air,
11259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The likeness of any thing that creepeth on the ground, the likeness of any fish that is in the waters beneath the earth:
11260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And lest thou lift up thine eyes unto heaven, and when thou seest the sun, and the moon, and the stars, even all the host of heaven, shouldest be driven to worship them, and serve them, which the LORD thy God hath divided unto all nations under the whole heaven.
11261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the LORD hath taken you, and brought you forth out of the iron furnace, even out of Egypt, to be unto him a people of inheritance, as ye are this day.
11262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Furthermore the LORD was angry with me for your sakes, and sware that I should not go over Jordan, and that I should not go in unto that good land, which the LORD thy God giveth thee for an inheritance:
11263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But I must die in this land, I must not go over Jordan: but ye shall go over, and possess that good land.
11264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Take heed unto yourselves, lest ye forget the covenant of the LORD your God, which he made with you, and make you a graven image, or the likeness of any thing, which the LORD thy God hath forbidden thee.
11265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For the LORD thy God is a consuming fire, even a jealous God.
11266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When thou shalt beget children, and children's children, and ye shall have remained long in the land, and shall corrupt yourselves, and make a graven image, or the likeness of any thing, and shall do evil in the sight of the LORD thy God, to provoke him to anger:
11267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               I call heaven and earth to witness against you this day, that ye shall soon utterly perish from off the land whereunto ye go over Jordan to possess it; ye shall not prolong your days upon it, but shall utterly be destroyed.
11268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD shall scatter you among the nations, and ye shall be left few in number among the heathen, whither the LORD shall lead you.
11269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there ye shall serve gods, the work of men's hands, wood and stone, which neither see, nor hear, nor eat, nor smell.
11270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But if from thence thou shalt seek the LORD thy God, thou shalt find him, if thou seek him with all thy heart and with all thy soul.
11271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When thou art in tribulation, and all these things are come upon thee, even in the latter days, if thou turn to the LORD thy God, and shalt be obedient unto his voice;
11272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (For the LORD thy God is a merciful God;) he will not forsake thee, neither destroy thee, nor forget the covenant of thy fathers which he sware unto them.
11273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For ask now of the days that are past, which were before thee, since the day that God created man upon the earth, and ask from the one side of heaven unto the other, whether there hath been any such thing as this great thing is, or hath been heard like it?
11274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Did ever people hear the voice of God speaking out of the midst of the fire, as thou hast heard, and live?
11275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Or hath God assayed to go and take him a nation from the midst of another nation, by temptations, by signs, and by wonders, and by war, and by a mighty hand, and by a stretched out arm, and by great terrors, according to all that the LORD your God did for you in Egypt before your eyes?
11276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unto thee it was showed, that thou mightest know that the LORD he is God; there is none else beside him.
11277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Out of heaven he made thee to hear his voice, that he might instruct thee: and upon earth he showed thee his great fire; and thou heardest his words out of the midst of the fire.
11278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And because he loved thy fathers, therefore he chose their seed after them, and brought thee out in his sight with his mighty power out of Egypt;
11279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To drive out nations from before thee greater and mightier than thou art, to bring thee in, to give thee their land for an inheritance, as it is this day.
11280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Know therefore this day, and consider it in thine heart, that the LORD he is God in heaven above, and upon the earth beneath: there is none else.
11281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt keep therefore his statutes, and his commandments, which I command thee this day, that it may go well with thee, and with thy children after thee, and that thou mayest prolong thy days upon the earth, which the LORD thy God giveth thee, for ever.
11282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Moses severed three cities on this side Jordan toward the sunrising;
11283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That the slayer might flee thither, which should kill his neighbor unawares, and hated him not in times past; and that fleeing unto one of these cities he might live:
11284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Namely, Bezer in the wilderness, in the plain country, of the Reubenites; and Ramoth in Gilead, of the Gadites; and Golan in Bashan, of the Manassites.
11285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And this is the law which Moses set before the children of Israel:
11286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the testimonies, and the statutes, and the judgments, which Moses spake unto the children of Israel, after they came forth out of Egypt.
11287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              On this side Jordan, in the valley over against Bethpeor, in the land of Sihon king of the Amorites, who dwelt at Heshbon, whom Moses and the children of Israel smote, after they were come forth out of Egypt:
11288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they possessed his land, and the land of Og king of Bashan, two kings of the Amorites, which were on this side Jordan toward the sunrising;
11289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   From Aroer, which is by the bank of the river Arnon, even unto mount Sion, which is Hermon,
11290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the plain on this side Jordan eastward, even unto the sea of the plain, under the springs of Pisgah.
11291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses called all Israel, and said unto them, Hear, O Israel, the statutes and judgments which I speak in your ears this day, that ye may learn them, and keep, and do them.
11292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD our God made a covenant with us in Horeb.
11293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD made not this covenant with our fathers, but with us, even us, who are all of us here alive this day.
11294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD talked with you face to face in the mount out of the midst of the fire,
11295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          (I stood between the LORD and you at that time, to show you the word of the LORD: for ye were afraid by reason of the fire, and went not up into the mount;) saying,
11296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I am the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage.
11297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt have none other gods before me.
11298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt not make thee any graven image, or any likeness of any thing that is in heaven above, or that is in the earth beneath, or that is in the waters beneath the earth:
11299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not bow down thyself unto them, nor serve them: for I the LORD thy God am a jealous God, visiting the iniquity of the fathers upon the children unto the third and fourth generation of them that hate me,
11300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And showing mercy unto thousands of them that love me and keep my commandments.
11301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt not take the name of the LORD thy God in vain: for the LORD will not hold him guiltless that taketh his name in vain.
11302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Keep the sabbath day to sanctify it, as the LORD thy God hath commanded thee.
11303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Six days thou shalt labor, and do all thy work:
11304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the seventh day is the sabbath of the LORD thy God: in it thou shalt not do any work, thou, nor thy son, nor thy daughter, nor thy manservant, nor thy maidservant, nor thine ox, nor thine ass, nor any of thy cattle, nor thy stranger that is within thy gates; that thy manservant and thy maidservant may rest as well as thou.
11305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And remember that thou wast a servant in the land of Egypt, and that the LORD thy God brought thee out thence through a mighty hand and by a stretched out arm: therefore the LORD thy God commanded thee to keep the sabbath day.
11306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Honor thy father and thy mother, as the LORD thy God hath commanded thee; that thy days may be prolonged, and that it may go well with thee, in the land which the LORD thy God giveth thee.
11307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not kill.
11308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Neither shalt thou commit adultery.
11309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Neither shalt thou steal.
11310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neither shalt thou bear false witness against thy neighbor.
11311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Neither shalt thou desire thy neighbor's wife, neither shalt thou covet thy neighbor's house, his field, or his manservant, or his maidservant, his ox, or his ass, or any thing that is thy neighbor's.
11312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These words the LORD spake unto all your assembly in the mount out of the midst of the fire, of the cloud, and of the thick darkness, with a great voice: and he added no more. And he wrote them in two tables of stone, and delivered them unto me.
11313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, when ye heard the voice out of the midst of the darkness, (for the mountain did burn with fire,) that ye came near unto me, even all the heads of your tribes, and your elders;
11314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And ye said, Behold, the LORD our God hath showed us his glory and his greatness, and we have heard his voice out of the midst of the fire: we have seen this day that God doth talk with man, and he liveth.
11315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now therefore why should we die? for this great fire will consume us: if we hear the voice of the LORD our God any more, then we shall die.
11316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For who is there of all flesh, that hath heard the voice of the living God speaking out of the midst of the fire, as we have, and lived?
11317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Go thou near, and hear all that the LORD our God shall say: and speak thou unto us all that the LORD our God shall speak unto thee; and we will hear it, and do it.
11318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD heard the voice of your words, when ye spake unto me; and the LORD said unto me, I have heard the voice of the words of this people, which they have spoken unto thee: they have well said all that they have spoken.
11319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     O that there were such an heart in them, that they would fear me, and keep all my commandments always, that it might be well with them, and with their children for ever!
11320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Go say to them, Get you into your tents again.
11321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But as for thee, stand thou here by me, and I will speak unto thee all the commandments, and the statutes, and the judgments, which thou shalt teach them, that they may do them in the land which I give them to possess it.
11322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall observe to do therefore as the LORD your God hath commanded you: ye shall not turn aside to the right hand or to the left.
11323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye shall walk in all the ways which the LORD your God hath commanded you, that ye may live, and that it may be well with you, and that ye may prolong your days in the land which ye shall possess.
11324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now these are the commandments, the statutes, and the judgments, which the LORD your God commanded to teach you, that ye might do them in the land whither ye go to possess it:
11325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That thou mightest fear the LORD thy God, to keep all his statutes and his commandments, which I command thee, thou, and thy son, and thy son's son, all the days of thy life; and that thy days may be prolonged.
11326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hear therefore, O Israel, and observe to do it; that it may be well with thee, and that ye may increase mightily, as the LORD God of thy fathers hath promised thee, in the land that floweth with milk and honey.
11327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Hear, O Israel: The LORD our God is one LORD:
11328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt love the LORD thy God with all thine heart, and with all thy soul, and with all thy might.
11329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And these words, which I command thee this day, shall be in thine heart:
11330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt teach them diligently unto thy children, and shalt talk of them when thou sittest in thine house, and when thou walkest by the way, and when thou liest down, and when thou risest up.
11331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt bind them for a sign upon thine hand, and they shall be as frontlets between thine eyes.
11332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt write them upon the posts of thy house, and on thy gates.
11333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it shall be, when the LORD thy God shall have brought thee into the land which he sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give thee great and goodly cities, which thou buildedst not,
11334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And houses full of all good things, which thou filledst not, and wells digged, which thou diggedst not, vineyards and olive trees, which thou plantedst not; when thou shalt have eaten and be full;
11335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then beware lest thou forget the LORD, which brought thee forth out of the land of Egypt, from the house of bondage.
11336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt fear the LORD thy God, and serve him, and shalt swear by his name.
11337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye shall not go after other gods, of the gods of the people which are round about you;
11338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                (For the LORD thy God is a jealous God among you) lest the anger of the LORD thy God be kindled against thee, and destroy thee from off the face of the earth.
11339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ye shall not tempt the LORD your God, as ye tempted him in Massah.
11340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye shall diligently keep the commandments of the LORD your God, and his testimonies, and his statutes, which he hath commanded thee.
11341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt do that which is right and good in the sight of the LORD: that it may be well with thee, and that thou mayest go in and possess the good land which the LORD sware unto thy fathers.
11342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To cast out all thine enemies from before thee, as the LORD hath spoken.
11343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when thy son asketh thee in time to come, saying, What mean the testimonies, and the statutes, and the judgments, which the LORD our God hath commanded you?
11344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then thou shalt say unto thy son, We were Pharaoh's bondmen in Egypt; and the LORD brought us out of Egypt with a mighty hand:
11345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD showed signs and wonders, great and sore, upon Egypt, upon Pharaoh, and upon all his household, before our eyes:
11346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he brought us out from thence, that he might bring us in, to give us the land which he sware unto our fathers.
11347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD commanded us to do all these statutes, to fear the LORD our God, for our good always, that he might preserve us alive, as it is at this day.
11348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it shall be our righteousness, if we observe to do all these commandments before the LORD our God, as he hath commanded us.
11349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When the LORD thy God shall bring thee into the land whither thou goest to possess it, and hath cast out many nations before thee, the Hittites, and the Girgashites, and the Amorites, and the Canaanites, and the Perizzites, and the Hivites, and the Jebusites, seven nations greater and mightier than thou;
11350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when the LORD thy God shall deliver them before thee; thou shalt smite them, and utterly destroy them; thou shalt make no covenant with them, nor show mercy unto them:
11351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Neither shalt thou make marriages with them; thy daughter thou shalt not give unto his son, nor his daughter shalt thou take unto thy son.
11352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For they will turn away thy son from following me, that they may serve other gods: so will the anger of the LORD be kindled against you, and destroy thee suddenly.
11353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But thus shall ye deal with them; ye shall destroy their altars, and break down their images, and cut down their groves, and burn their graven images with fire.
11354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For thou art an holy people unto the LORD thy God: the LORD thy God hath chosen thee to be a special people unto himself, above all people that are upon the face of the earth.
11355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The LORD did not set his love upon you, nor choose you, because ye were more in number than any people; for ye were the fewest of all people:
11356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But because the LORD loved you, and because he would keep the oath which he had sworn unto your fathers, hath the LORD brought you out with a mighty hand, and redeemed you out of the house of bondmen, from the hand of Pharaoh king of Egypt.
11357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Know therefore that the LORD thy God, he is God, the faithful God, which keepeth covenant and mercy with them that love him and keep his commandments to a thousand generations;
11358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And repayeth them that hate him to their face, to destroy them: he will not be slack to him that hateth him, he will repay him to his face.
11359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt therefore keep the commandments, and the statutes, and the judgments, which I command thee this day, to do them.
11360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wherefore it shall come to pass, if ye hearken to these judgments, and keep, and do them, that the LORD thy God shall keep unto thee the covenant and the mercy which he sware unto thy fathers:
11361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he will love thee, and bless thee, and multiply thee: he will also bless the fruit of thy womb, and the fruit of thy land, thy corn, and thy wine, and thine oil, the increase of thy kine, and the flocks of thy sheep, in the land which he sware unto thy fathers to give thee.
11362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt be blessed above all people: there shall not be male or female barren among you, or among your cattle.
11363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD will take away from thee all sickness, and will put none of the evil diseases of Egypt, which thou knowest, upon thee; but will lay them upon all them that hate thee.
11364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt consume all the people which the LORD thy God shall deliver thee; thine eye shall have no pity upon them: neither shalt thou serve their gods; for that will be a snare unto thee.
11365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If thou shalt say in thine heart, These nations are more than I; how can I dispossess them?
11366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt not be afraid of them: but shalt well remember what the LORD thy God did unto Pharaoh, and unto all Egypt;
11367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The great temptations which thine eyes saw, and the signs, and the wonders, and the mighty hand, and the stretched out arm, whereby the LORD thy God brought thee out: so shall the LORD thy God do unto all the people of whom thou art afraid.
11368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Moreover the LORD thy God will send the hornet among them, until they that are left, and hide themselves from thee, be destroyed.
11369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not be affrighted at them: for the LORD thy God is among you, a mighty God and terrible.
11370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD thy God will put out those nations before thee by little and little: thou mayest not consume them at once, lest the beasts of the field increase upon thee.
11371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the LORD thy God shall deliver them unto thee, and shall destroy them with a mighty destruction, until they be destroyed.
11372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he shall deliver their kings into thine hand, and thou shalt destroy their name from under heaven: there shall no man be able to stand before thee, until thou have destroyed them.
11373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The graven images of their gods shall ye burn with fire: thou shalt not desire the silver or gold that is on them, nor take it unto thee, lest thou be snared therein: for it is an abomination to the LORD thy God.
11374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neither shalt thou bring an abomination into thine house, lest thou be a cursed thing like it: but thou shalt utterly detest it, and thou shalt utterly abhor it; for it is a cursed thing.
11375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             All the commandments which I command thee this day shall ye observe to do, that ye may live, and multiply, and go in and possess the land which the LORD sware unto your fathers.
11376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt remember all the way which the LORD thy God led thee these forty years in the wilderness, to humble thee, and to prove thee, to know what was in thine heart, whether thou wouldest keep his commandments, or no.
11377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he humbled thee, and suffered thee to hunger, and fed thee with manna, which thou knewest not, neither did thy fathers know; that he might make thee know that man doth not live by bread only, but by every word that proceedeth out of the mouth of the LORD doth man live.
11378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thy raiment waxed not old upon thee, neither did thy foot swell, these forty years.
11379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt also consider in thine heart, that, as a man chasteneth his son, so the LORD thy God chasteneth thee.
11380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore thou shalt keep the commandments of the LORD thy God, to walk in his ways, and to fear him.
11381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For the LORD thy God bringeth thee into a good land, a land of brooks of water, of fountains and depths that spring out of valleys and hills;
11382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A land of wheat, and barley, and vines, and fig trees, and pomegranates; a land of oil olive, and honey;
11383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A land wherein thou shalt eat bread without scarceness, thou shalt not lack any thing in it; a land whose stones are iron, and out of whose hills thou mayest dig brass.
11384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When thou hast eaten and art full, then thou shalt bless the LORD thy God for the good land which he hath given thee.
11385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Beware that thou forget not the LORD thy God, in not keeping his commandments, and his judgments, and his statutes, which I command thee this day:
11386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lest when thou hast eaten and art full, and hast built goodly houses, and dwelt therein;
11387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when thy herds and thy flocks multiply, and thy silver and thy gold is multiplied, and all that thou hast is multiplied;
11388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then thine heart be lifted up, and thou forget the LORD thy God, which brought thee forth out of the land of Egypt, from the house of bondage;
11389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who led thee through that great and terrible wilderness, wherein were fiery serpents, and scorpions, and drought, where there was no water; who brought thee forth water out of the rock of flint;
11390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Who fed thee in the wilderness with manna, which thy fathers knew not, that he might humble thee, and that he might prove thee, to do thee good at thy latter end;
11391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou say in thine heart, My power and the might of mine hand hath gotten me this wealth.
11392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But thou shalt remember the LORD thy God: for it is he that giveth thee power to get wealth, that he may establish his covenant which he sware unto thy fathers, as it is this day.
11393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall be, if thou do at all forget the LORD thy God, and walk after other gods, and serve them, and worship them, I testify against you this day that ye shall surely perish.
11394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As the nations which the LORD destroyeth before your face, so shall ye perish; because ye would not be obedient unto the voice of the LORD your God.
11395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hear, O Israel: Thou art to pass over Jordan this day, to go in to possess nations greater and mightier than thyself, cities great and fenced up to heaven,
11396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A people great and tall, the children of the Anakims, whom thou knowest, and of whom thou hast heard say, Who can stand before the children of Anak!
11397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Understand therefore this day, that the LORD thy God is he which goeth over before thee; as a consuming fire he shall destroy them, and he shall bring them down before thy face: so shalt thou drive them out, and destroy them quickly, as the LORD hath said unto thee.
11398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Speak not thou in thine heart, after that the LORD thy God hath cast them out from before thee, saying, For my righteousness the LORD hath brought me in to possess this land: but for the wickedness of these nations the LORD doth drive them out from before thee.
11399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Not for thy righteousness, or for the uprightness of thine heart, dost thou go to possess their land: but for the wickedness of these nations the LORD thy God doth drive them out from before thee, and that he may perform the word which the LORD sware unto thy fathers, Abraham, Isaac, and Jacob.
11400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Understand therefore, that the LORD thy God giveth thee not this good land to possess it for thy righteousness; for thou art a stiffnecked people.
11401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Remember, and forget not, how thou provokedst the LORD thy God to wrath in the wilderness: from the day that thou didst depart out of the land of Egypt, until ye came unto this place, ye have been rebellious against the LORD.
11402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Also in Horeb ye provoked the LORD to wrath, so that the LORD was angry with you to have destroyed you.
11403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When I was gone up into the mount to receive the tables of stone, even the tables of the covenant which the LORD made with you, then I abode in the mount forty days and forty nights, I neither did eat bread nor drink water:
11404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD delivered unto me two tables of stone written with the finger of God; and on them was written according to all the words, which the LORD spake with you in the mount out of the midst of the fire in the day of the assembly.
11405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass at the end of forty days and forty nights, that the LORD gave me the two tables of stone, even the tables of the covenant.
11406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto me, Arise, get thee down quickly from hence; for thy people which thou hast brought forth out of Egypt have corrupted themselves; they are quickly turned aside out of the way which I commanded them; they have made them a molten image.
11407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Furthermore the LORD spake unto me, saying, I have seen this people, and, behold, it is a stiffnecked people:
11408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Let me alone, that I may destroy them, and blot out their name from under heaven: and I will make of thee a nation mightier and greater than they.
11409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So I turned and came down from the mount, and the mount burned with fire: and the two tables of the covenant were in my two hands.
11410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I looked, and, behold, ye had sinned against the LORD your God, and had made you a molten calf: ye had turned aside quickly out of the way which the LORD had commanded you.
11411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I took the two tables, and cast them out of my two hands, and brake them before your eyes.
11412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I fell down before the LORD, as at the first, forty days and forty nights: I did neither eat bread, nor drink water, because of all your sins which ye sinned, in doing wickedly in the sight of the LORD, to provoke him to anger.
11413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For I was afraid of the anger and hot displeasure, wherewith the LORD was wroth against you to destroy you. But the LORD hearkened unto me at that time also.
11414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD was very angry with Aaron to have destroyed him: and I prayed for Aaron also the same time.
11415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I took your sin, the calf which ye had made, and burnt it with fire, and stamped it, and ground it very small, even until it was as small as dust: and I cast the dust thereof into the brook that descended out of the mount.
11416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And at Taberah, and at Massah, and at Kibrothhattaavah, ye provoked the LORD to wrath.
11417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Likewise when the LORD sent you from Kadeshbarnea, saying, Go up and possess the land which I have given you; then ye rebelled against the commandment of the LORD your God, and ye believed him not, nor hearkened to his voice.
11418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ye have been rebellious against the LORD from the day that I knew you.
11419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus I fell down before the LORD forty days and forty nights, as I fell down at the first; because the LORD had said he would destroy you.
11420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I prayed therefore unto the LORD, and said, O Lord GOD, destroy not thy people and thine inheritance, which thou hast redeemed through thy greatness, which thou hast brought forth out of Egypt with a mighty hand.
11421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Remember thy servants, Abraham, Isaac, and Jacob; look not unto the stubbornness of this people, nor to their wickedness, nor to their sin:
11422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lest the land whence thou broughtest us out say, Because the LORD was not able to bring them into the land which he promised them, and because he hated them, he hath brought them out to slay them in the wilderness.
11423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet they are thy people and thine inheritance, which thou broughtest out by thy mighty power and by thy stretched out arm.
11424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       At that time the LORD said unto me, Hew thee two tables of stone like unto the first, and come up unto me into the mount, and make thee an ark of wood.
11425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I will write on the tables the words that were in the first tables which thou brakest, and thou shalt put them in the ark.
11426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I made an ark of shittim wood, and hewed two tables of stone like unto the first, and went up into the mount, having the two tables in mine hand.
11427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he wrote on the tables, according to the first writing, the ten commandments, which the LORD spake unto you in the mount out of the midst of the fire in the day of the assembly: and the LORD gave them unto me.
11428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I turned myself and came down from the mount, and put the tables in the ark which I had made; and there they be, as the LORD commanded me.
11429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel took their journey from Beeroth of the children of Jaakan to Mosera: there Aaron died, and there he was buried; and Eleazar his son ministered in the priest's office in his stead.
11430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           From thence they journeyed unto Gudgodah; and from Gudgodah to Jotbath, a land of rivers of waters.
11431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       At that time the LORD separated the tribe of Levi, to bear the ark of the covenant of the LORD, to stand before the LORD to minister unto him, and to bless in his name, unto this day.
11432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wherefore Levi hath no part nor inheritance with his brethren; the LORD is his inheritance, according as the LORD thy God promised him.
11433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I stayed in the mount, according to the first time, forty days and forty nights; and the LORD hearkened unto me at that time also, and the LORD would not destroy thee.
11434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto me, Arise, take thy journey before the people, that they may go in and possess the land, which I sware unto their fathers to give unto them.
11435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And now, Israel, what doth the LORD thy God require of thee, but to fear the LORD thy God, to walk in all his ways, and to love him, and to serve the LORD thy God with all thy heart and with all thy soul,
11436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           To keep the commandments of the LORD, and his statutes, which I command thee this day for thy good?
11437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, the heaven and the heaven of heavens is the LORD's thy God, the earth also, with all that therein is.
11438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Only the LORD had a delight in thy fathers to love them, and he chose their seed after them, even you above all people, as it is this day.
11439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Circumcise therefore the foreskin of your heart, and be no more stiffnecked.
11440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the LORD your God is God of gods, and Lord of lords, a great God, a mighty, and a terrible, which regardeth not persons, nor taketh reward:
11441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He doth execute the judgment of the fatherless and widow, and loveth the stranger, in giving him food and raiment.
11442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Love ye therefore the stranger: for ye were strangers in the land of Egypt.
11443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt fear the LORD thy God; him shalt thou serve, and to him shalt thou cleave, and swear by his name.
11444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He is thy praise, and he is thy God, that hath done for thee these great and terrible things, which thine eyes have seen.
11445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thy fathers went down into Egypt with threescore and ten persons; and now the LORD thy God hath made thee as the stars of heaven for multitude.
11446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore thou shalt love the LORD thy God, and keep his charge, and his statutes, and his judgments, and his commandments, alway.
11447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And know ye this day: for I speak not with your children which have not known, and which have not seen the chastisement of the LORD your God, his greatness, his mighty hand, and his stretched out arm,
11448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And his miracles, and his acts, which he did in the midst of Egypt unto Pharaoh the king of Egypt, and unto all his land;
11449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And what he did unto the army of Egypt, unto their horses, and to their chariots; how he made the water of the Red sea to overflow them as they pursued after you, and how the LORD hath destroyed them unto this day;
11450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And what he did unto you in the wilderness, until ye came into this place;
11451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And what he did unto Dathan and Abiram, the sons of Eliab, the son of Reuben: how the earth opened her mouth, and swallowed them up, and their households, and their tents, and all the substance that was in their possession, in the midst of all Israel:
11452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But your eyes have seen all the great acts of the LORD which he did.
11453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Therefore shall ye keep all the commandments which I command you this day, that ye may be strong, and go in and possess the land, whither ye go to possess it;
11454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And that ye may prolong your days in the land, which the LORD sware unto your fathers to give unto them and to their seed, a land that floweth with milk and honey.
11455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For the land, whither thou goest in to possess it, is not as the land of Egypt, from whence ye came out, where thou sowedst thy seed, and wateredst it with thy foot, as a garden of herbs:
11456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the land, whither ye go to possess it, is a land of hills and valleys, and drinketh water of the rain of heaven:
11457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A land which the LORD thy God careth for: the eyes of the LORD thy God are always upon it, from the beginning of the year even unto the end of the year.
11458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall come to pass, if ye shall hearken diligently unto my commandments which I command you this day, to love the LORD your God, and to serve him with all your heart and with all your soul,
11459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That I will give you the rain of your land in his due season, the first rain and the latter rain, that thou mayest gather in thy corn, and thy wine, and thine oil.
11460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will send grass in thy fields for thy cattle, that thou mayest eat and be full.
11461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Take heed to yourselves, that your heart be not deceived, and ye turn aside, and serve other gods, and worship them;
11462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And then the LORD's wrath be kindled against you, and he shut up the heaven, that there be no rain, and that the land yield not her fruit; and lest ye perish quickly from off the good land which the LORD giveth you.
11463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore shall ye lay up these my words in your heart and in your soul, and bind them for a sign upon your hand, that they may be as frontlets between your eyes.
11464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ye shall teach them your children, speaking of them when thou sittest in thine house, and when thou walkest by the way, when thou liest down, and when thou risest up.
11465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt write them upon the door posts of thine house, and upon thy gates:
11466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That your days may be multiplied, and the days of your children, in the land which the LORD sware unto your fathers to give them, as the days of heaven upon the earth.
11467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For if ye shall diligently keep all these commandments which I command you, to do them, to love the LORD your God, to walk in all his ways, and to cleave unto him;
11468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then will the LORD drive out all these nations from before you, and ye shall possess greater nations and mightier than yourselves.
11469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Every place whereon the soles of your feet shall tread shall be yours: from the wilderness and Lebanon, from the river, the river Euphrates, even unto the uttermost sea shall your coast be.
11470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There shall no man be able to stand before you: for the LORD your God shall lay the fear of you and the dread of you upon all the land that ye shall tread upon, as he hath said unto you.
11471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Behold, I set before you this day a blessing and a curse;
11472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   A blessing, if ye obey the commandments of the LORD your God, which I command you this day:
11473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And a curse, if ye will not obey the commandments of the LORD your God, but turn aside out of the way which I command you this day, to go after other gods, which ye have not known.
11474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it shall come to pass, when the LORD thy God hath brought thee in unto the land whither thou goest to possess it, that thou shalt put the blessing upon mount Gerizim, and the curse upon mount Ebal.
11475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Are they not on the other side Jordan, by the way where the sun goeth down, in the land of the Canaanites, which dwell in the champaign over against Gilgal, beside the plains of Moreh?
11476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For ye shall pass over Jordan to go in to possess the land which the LORD your God giveth you, and ye shall possess it, and dwell therein.
11477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And ye shall observe to do all the statutes and judgments which I set before you this day.
11478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These are the statutes and judgments, which ye shall observe to do in the land, which the LORD God of thy fathers giveth thee to possess it, all the days that ye live upon the earth.
11479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ye shall utterly destroy all the places, wherein the nations which ye shall possess served their gods, upon the high mountains, and upon the hills, and under every green tree:
11480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And ye shall overthrow their altars, and break their pillars, and burn their groves with fire; and ye shall hew down the graven images of their gods, and destroy the names of them out of that place.
11481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ye shall not do so unto the LORD your God.
11482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But unto the place which the LORD your God shall choose out of all your tribes to put his name there, even unto his habitation shall ye seek, and thither thou shalt come:
11483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thither ye shall bring your burnt offerings, and your sacrifices, and your tithes, and heave offerings of your hand, and your vows, and your freewill offerings, and the firstlings of your herds and of your flocks:
11484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there ye shall eat before the LORD your God, and ye shall rejoice in all that ye put your hand unto, ye and your households, wherein the LORD thy God hath blessed thee.
11485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ye shall not do after all the things that we do here this day, every man whatsoever is right in his own eyes.
11486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For ye are not as yet come to the rest and to the inheritance, which the LORD your God giveth you.
11487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But when ye go over Jordan, and dwell in the land which the LORD your God giveth you to inherit, and when he giveth you rest from all your enemies round about, so that ye dwell in safety;
11488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then there shall be a place which the LORD your God shall choose to cause his name to dwell there; thither shall ye bring all that I command you; your burnt offerings, and your sacrifices, your tithes, and the heave offering of your hand, and all your choice vows which ye vow unto the LORD:
11489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And ye shall rejoice before the LORD your God, ye, and your sons, and your daughters, and your menservants, and your maidservants, and the Levite that is within your gates; forasmuch as he hath no part nor inheritance with you.
11490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Take heed to thyself that thou offer not thy burnt offerings in every place that thou seest:
11491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But in the place which the LORD shall choose in one of thy tribes, there thou shalt offer thy burnt offerings, and there thou shalt do all that I command thee.
11492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Notwithstanding thou mayest kill and eat flesh in all thy gates, whatsoever thy soul lusteth after, according to the blessing of the LORD thy God which he hath given thee: the unclean and the clean may eat thereof, as of the roebuck, and as of the hart.
11493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Only ye shall not eat the blood; ye shall pour it upon the earth as water.
11494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou mayest not eat within thy gates the tithe of thy corn, or of thy wine, or of thy oil, or the firstlings of thy herds or of thy flock, nor any of thy vows which thou vowest, nor thy freewill offerings, or heave offering of thine hand:
11495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But thou must eat them before the LORD thy God in the place which the LORD thy God shall choose, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite that is within thy gates: and thou shalt rejoice before the LORD thy God in all that thou puttest thine hands unto.
11496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Take heed to thyself that thou forsake not the Levite as long as thou livest upon the earth.
11497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When the LORD thy God shall enlarge thy border, as he hath promised thee, and thou shalt say, I will eat flesh, because thy soul longeth to eat flesh; thou mayest eat flesh, whatsoever thy soul lusteth after.
11498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If the place which the LORD thy God hath chosen to put his name there be too far from thee, then thou shalt kill of thy herd and of thy flock, which the LORD hath given thee, as I have commanded thee, and thou shalt eat in thy gates whatsoever thy soul lusteth after.
11499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Even as the roebuck and the hart is eaten, so thou shalt eat them: the unclean and the clean shall eat of them alike.
11500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Only be sure that thou eat not the blood: for the blood is the life; and thou mayest not eat the life with the flesh.
11501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not eat it; thou shalt pour it upon the earth as water.
11502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt not eat it; that it may go well with thee, and with thy children after thee, when thou shalt do that which is right in the sight of the LORD.
11503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Only thy holy things which thou hast, and thy vows, thou shalt take, and go unto the place which the LORD shall choose:
11504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt offer thy burnt offerings, the flesh and the blood, upon the altar of the LORD thy God: and the blood of thy sacrifices shall be poured out upon the altar of the LORD thy God, and thou shalt eat the flesh.
11505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Observe and hear all these words which I command thee, that it may go well with thee, and with thy children after thee for ever, when thou doest that which is good and right in the sight of the LORD thy God.
11506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When the LORD thy God shall cut off the nations from before thee, whither thou goest to possess them, and thou succeedest them, and dwellest in their land;
11507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Take heed to thyself that thou be not snared by following them, after that they be destroyed from before thee; and that thou inquire not after their gods, saying, How did these nations serve their gods? even so will I do likewise.
11508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not do so unto the LORD thy God: for every abomination to the LORD, which he hateth, have they done unto their gods; for even their sons and their daughters they have burnt in the fire to their gods.
11509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          What thing soever I command you, observe to do it: thou shalt not add thereto, nor diminish from it.
11510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If there arise among you a prophet, or a dreamer of dreams, and giveth thee a sign or a wonder,
11511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sign or the wonder come to pass, whereof he spake unto thee, saying, Let us go after other gods, which thou hast not known, and let us serve them;
11512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou shalt not hearken unto the words of that prophet, or that dreamer of dreams: for the LORD your God proveth you, to know whether ye love the LORD your God with all your heart and with all your soul.
11513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye shall walk after the LORD your God, and fear him, and keep his commandments, and obey his voice, and ye shall serve him, and cleave unto him.
11514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And that prophet, or that dreamer of dreams, shall be put to death; because he hath spoken to turn you away from the LORD your God, which brought you out of the land of Egypt, and redeemed you out of the house of bondage, to thrust thee out of the way which the LORD thy God commanded thee to walk in. So shalt thou put the evil away from the midst of thee.
11515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If thy brother, the son of thy mother, or thy son, or thy daughter, or the wife of thy bosom, or thy friend, which is as thine own soul, entice thee secretly, saying, Let us go and serve other gods, which thou hast not known, thou, nor thy fathers;
11516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Namely, of the gods of the people which are round about you, nigh unto thee, or far off from thee, from the one end of the earth even unto the other end of the earth;
11517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not consent unto him, nor hearken unto him; neither shall thine eye pity him, neither shalt thou spare, neither shalt thou conceal him:
11518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But thou shalt surely kill him; thine hand shall be first upon him to put him to death, and afterwards the hand of all the people.
11519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt stone him with stones, that he die; because he hath sought to thrust thee away from the LORD thy God, which brought thee out of the land of Egypt, from the house of bondage.
11520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all Israel shall hear, and fear, and shall do no more any such wickedness as this is among you.
11521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If thou shalt hear say in one of thy cities, which the LORD thy God hath given thee to dwell there, saying,
11522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Certain men, the children of Belial, are gone out from among you, and have withdrawn the inhabitants of their city, saying, Let us go and serve other gods, which ye have not known;
11523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then shalt thou inquire, and make search, and ask diligently; and, behold, if it be truth, and the thing certain, that such abomination is wrought among you;
11524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt surely smite the inhabitants of that city with the edge of the sword, destroying it utterly, and all that is therein, and the cattle thereof, with the edge of the sword.
11525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt gather all the spoil of it into the midst of the street thereof, and shalt burn with fire the city, and all the spoil thereof every whit, for the LORD thy God: and it shall be an heap for ever; it shall not be built again.
11526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there shall cleave nought of the cursed thing to thine hand: that the LORD may turn from the fierceness of his anger, and show thee mercy, and have compassion upon thee, and multiply thee, as he hath sworn unto thy fathers;
11527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When thou shalt hearken to the voice of the LORD thy God, to keep all his commandments which I command thee this day, to do that which is right in the eyes of the LORD thy God.
11528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ye are the children of the LORD your God: ye shall not cut yourselves, nor make any baldness between your eyes for the dead.
11529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For thou art an holy people unto the LORD thy God, and the LORD hath chosen thee to be a peculiar people unto himself, above all the nations that are upon the earth.
11530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt not eat any abominable thing.
11531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the beasts which ye shall eat: the ox, the sheep, and the goat,
11532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The hart, and the roebuck, and the fallow deer, and the wild goat, and the pygarg, and the wild ox, and the chamois.
11533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And every beast that parteth the hoof, and cleaveth the cleft into two claws, and cheweth the cud among the beasts, that ye shall eat.
11534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Nevertheless these ye shall not eat of them that chew the cud, or of them that divide the cloven hoof; as the camel, and the hare, and the coney: for they chew the cud, but divide not the hoof; therefore they are unclean unto you.
11535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the swine, because it divideth the hoof, yet cheweth not the cud, it is unclean unto you: ye shall not eat of their flesh, nor touch their dead carcass.
11536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 These ye shall eat of all that are in the waters: all that have fins and scales shall ye eat:
11537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And whatsoever hath not fins and scales ye may not eat; it is unclean unto you.
11538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Of all clean birds ye shall eat.
11539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But these are they of which ye shall not eat: the eagle, and the ossifrage, and the ospray,
11540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the glede, and the kite, and the vulture after his kind,
11541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And every raven after his kind,
11542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the owl, and the night hawk, and the cuckoo, and the hawk after his kind,
11543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The little owl, and the great owl, and the swan,
11544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the pelican, and the gier eagle, and the cormorant,
11545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the stork, and the heron after her kind, and the lapwing, and the bat.
11546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And every creeping thing that flieth is unclean unto you: they shall not be eaten.
11547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But of all clean fowls ye may eat.
11548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ye shall not eat of anything that dieth of itself: thou shalt give it unto the stranger that is in thy gates, that he may eat it; or thou mayest sell it unto an alien: for thou art an holy people unto the LORD thy God. Thou shalt not seethe a kid in his mother's milk.
11549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou shalt truly tithe all the increase of thy seed, that the field bringeth forth year by year.
11550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt eat before the LORD thy God, in the place which he shall choose to place his name there, the tithe of thy corn, of thy wine, and of thine oil, and the firstlings of thy herds and of thy flocks; that thou mayest learn to fear the LORD thy God always.
11551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if the way be too long for thee, so that thou art not able to carry it; or if the place be too far from thee, which the LORD thy God shall choose to set his name there, when the LORD thy God hath blessed thee:
11552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then shalt thou turn it into money, and bind up the money in thine hand, and shalt go unto the place which the LORD thy God shall choose:
11553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thou shalt bestow that money for whatsoever thy soul lusteth after, for oxen, or for sheep, or for wine, or for strong drink, or for whatsoever thy soul desireth: and thou shalt eat there before the LORD thy God, and thou shalt rejoice, thou, and thine household,
11554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Levite that is within thy gates; thou shalt not forsake him; for he hath no part nor inheritance with thee.
11555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         At the end of three years thou shalt bring forth all the tithe of thine increase the same year, and shalt lay it up within thy gates:
11556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the Levite, (because he hath no part nor inheritance with thee,) and the stranger, and the fatherless, and the widow, which are within thy gates, shall come, and shall eat and be satisfied; that the LORD thy God may bless thee in all the work of thine hand which thou doest.
11557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    At the end of every seven years thou shalt make a release.
11558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this is the manner of the release: Every creditor that lendeth ought unto his neighbor shall release it; he shall not exact it of his neighbor, or of his brother; because it is called the LORD's release.
11559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Of a foreigner thou mayest exact it again: but that which is thine with thy brother thine hand shall release;
11560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Save when there shall be no poor among you; for the LORD shall greatly bless thee in the land which the LORD thy God giveth thee for an inheritance to possess it:
11561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Only if thou carefully hearken unto the voice of the LORD thy God, to observe to do all these commandments which I command thee this day.
11562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For the LORD thy God blesseth thee, as he promised thee: and thou shalt lend unto many nations, but thou shalt not borrow; and thou shalt reign over many nations, but they shall not reign over thee.
11563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If there be among you a poor man of one of thy brethren within any of thy gates in thy land which the LORD thy God giveth thee, thou shalt not harden thine heart, nor shut thine hand from thy poor brother:
11564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But thou shalt open thine hand wide unto him, and shalt surely lend him sufficient for his need, in that which he wanteth.
11565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Beware that there be not a thought in thy wicked heart, saying, The seventh year, the year of release, is at hand; and thine eye be evil against thy poor brother, and thou givest him nought; and he cry unto the LORD against thee, and it be sin unto thee.
11566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt surely give him, and thine heart shall not be grieved when thou givest unto him: because that for this thing the LORD thy God shall bless thee in all thy works, and in all that thou puttest thine hand unto.
11567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the poor shall never cease out of the land: therefore I command thee, saying, Thou shalt open thine hand wide unto thy brother, to thy poor, and to thy needy, in thy land.
11568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if thy brother, an Hebrew man, or an Hebrew woman, be sold unto thee, and serve thee six years; then in the seventh year thou shalt let him go free from thee.
11569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when thou sendest him out free from thee, thou shalt not let him go away empty:
11570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt furnish him liberally out of thy flock, and out of thy floor, and out of thy winepress: of that wherewith the LORD thy God hath blessed thee thou shalt give unto him.
11571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And thou shalt remember that thou wast a bondman in the land of Egypt, and the LORD thy God redeemed thee: therefore I command thee this thing to day.
11572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it shall be, if he say unto thee, I will not go away from thee; because he loveth thee and thine house, because he is well with thee;
11573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then thou shalt take an awl, and thrust it through his ear unto the door, and he shall be thy servant for ever. And also unto thy maidservant thou shalt do likewise.
11574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It shall not seem hard unto thee, when thou sendest him away free from thee; for he hath been worth a double hired servant to thee, in serving thee six years: and the LORD thy God shall bless thee in all that thou doest.
11575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All the firstling males that come of thy herd and of thy flock thou shalt sanctify unto the LORD thy God: thou shalt do no work with the firstling of thy bullock, nor shear the firstling of thy sheep.
11576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt eat it before the LORD thy God year by year in the place which the LORD shall choose, thou and thy household.
11577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And if there be any blemish therein, as if it be lame, or blind, or have any ill blemish, thou shalt not sacrifice it unto the LORD thy God.
11578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt eat it within thy gates: the unclean and the clean person shall eat it alike, as the roebuck, and as the hart.
11579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Only thou shalt not eat the blood thereof; thou shalt pour it upon the ground as water.
11580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Observe the month of Abib, and keep the passover unto the LORD thy God: for in the month of Abib the LORD thy God brought thee forth out of Egypt by night.
11581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt therefore sacrifice the passover unto the LORD thy God, of the flock and the herd, in the place which the LORD shall choose to place his name there.
11582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt eat no leavened bread with it; seven days shalt thou eat unleavened bread therewith, even the bread of affliction; for thou camest forth out of the land of Egypt in haste: that thou mayest remember the day when thou camest forth out of the land of Egypt all the days of thy life.
11583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there shall be no leavened bread seen with thee in all thy coast seven days; neither shall there any thing of the flesh, which thou sacrificedst the first day at even, remain all night until the morning.
11584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou mayest not sacrifice the passover within any of thy gates, which the LORD thy God giveth thee:
11585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But at the place which the LORD thy God shall choose to place his name in, there thou shalt sacrifice the passover at even, at the going down of the sun, at the season that thou camest forth out of Egypt.
11586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt roast and eat it in the place which the LORD thy God shall choose: and thou shalt turn in the morning, and go unto thy tents.
11587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Six days thou shalt eat unleavened bread: and on the seventh day shall be a solemn assembly to the LORD thy God: thou shalt do no work therein.
11588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seven weeks shalt thou number unto thee: begin to number the seven weeks from such time as thou beginnest to put the sickle to the corn.
11589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt keep the feast of weeks unto the LORD thy God with a tribute of a freewill offering of thine hand, which thou shalt give unto the LORD thy God, according as the LORD thy God hath blessed thee:
11590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt rejoice before the LORD thy God, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite that is within thy gates, and the stranger, and the fatherless, and the widow, that are among you, in the place which the LORD thy God hath chosen to place his name there.
11591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thou shalt remember that thou wast a bondman in Egypt: and thou shalt observe and do these statutes.
11592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt observe the feast of tabernacles seven days, after that thou hast gathered in thy corn and thy wine:
11593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt rejoice in thy feast, thou, and thy son, and thy daughter, and thy manservant, and thy maidservant, and the Levite, the stranger, and the fatherless, and the widow, that are within thy gates.
11594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Seven days shalt thou keep a solemn feast unto the LORD thy God in the place which the LORD shall choose: because the LORD thy God shall bless thee in all thine increase, and in all the works of thine hands, therefore thou shalt surely rejoice.
11595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Three times in a year shall all thy males appear before the LORD thy God in the place which he shall choose; in the feast of unleavened bread, and in the feast of weeks, and in the feast of tabernacles: and they shall not appear before the LORD empty:
11596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Every man shall give as he is able, according to the blessing of the LORD thy God which he hath given thee.
11597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Judges and officers shalt thou make thee in all thy gates, which the LORD thy God giveth thee, throughout thy tribes: and they shall judge the people with just judgment.
11598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thou shalt not wrest judgment; thou shalt not respect persons, neither take a gift: for a gift doth blind the eyes of the wise, and pervert the words of the righteous.
11599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That which is altogether just shalt thou follow, that thou mayest live, and inherit the land which the LORD thy God giveth thee.
11600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not plant thee a grove of any trees near unto the altar of the LORD thy God, which thou shalt make thee.
11601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Neither shalt thou set thee up any image; which the LORD thy God hateth.
11602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt not sacrifice unto the LORD thy God any bullock, or sheep, wherein is blemish, or any evilfavouredness: for that is an abomination unto the LORD thy God.
11603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If there be found among you, within any of thy gates which the LORD thy God giveth thee, man or woman, that hath wrought wickedness in the sight of the LORD thy God, in transgressing his covenant,
11604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And hath gone and served other gods, and worshipped them, either the sun, or moon, or any of the host of heaven, which I have not commanded;
11605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it be told thee, and thou hast heard of it, and inquired diligently, and, behold, it be true, and the thing certain, that such abomination is wrought in Israel:
11606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then shalt thou bring forth that man or that woman, which have committed that wicked thing, unto thy gates, even that man or that woman, and shalt stone them with stones, till they die.
11607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            At the mouth of two witnesses, or three witnesses, shall he that is worthy of death be put to death; but at the mouth of one witness he shall not be put to death.
11608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The hands of the witnesses shall be first upon him to put him to death, and afterward the hands of all the people. So thou shalt put the evil away from among you.
11609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If there arise a matter too hard for thee in judgment, between blood and blood, between plea and plea, and between stroke and stroke, being matters of controversy within thy gates: then shalt thou arise, and get thee up into the place which the LORD thy God shall choose;
11610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt come unto the priests the Levites, and unto the judge that shall be in those days, and inquire; and they shall show thee the sentence of judgment:
11611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt do according to the sentence, which they of that place which the LORD shall choose shall show thee; and thou shalt observe to do according to all that they inform thee:
11612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           According to the sentence of the law which they shall teach thee, and according to the judgment which they shall tell thee, thou shalt do: thou shalt not decline from the sentence which they shall show thee, to the right hand, nor to the left.
11613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the man that will do presumptuously, and will not hearken unto the priest that standeth to minister there before the LORD thy God, or unto the judge, even that man shall die: and thou shalt put away the evil from Israel.
11614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the people shall hear, and fear, and do no more presumptuously.
11615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When thou art come unto the land which the LORD thy God giveth thee, and shalt possess it, and shalt dwell therein, and shalt say, I will set a king over me, like as all the nations that are about me;
11616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt in any wise set him king over thee, whom the LORD thy God shall choose: one from among thy brethren shalt thou set king over thee: thou mayest not set a stranger over thee, which is not thy brother.
11617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But he shall not multiply horses to himself, nor cause the people to return to Egypt, to the end that he should multiply horses: forasmuch as the LORD hath said unto you, Ye shall henceforth return no more that way.
11618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Neither shall he multiply wives to himself, that his heart turn not away: neither shall he greatly multiply to himself silver and gold.
11619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it shall be, when he sitteth upon the throne of his kingdom, that he shall write him a copy of this law in a book out of that which is before the priests the Levites:
11620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it shall be with him, and he shall read therein all the days of his life: that he may learn to fear the LORD his God, to keep all the words of this law and these statutes, to do them:
11621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That his heart be not lifted up above his brethren, and that he turn not aside from the commandment, to the right hand, or to the left: to the end that he may prolong his days in his kingdom, he, and his children, in the midst of Israel.
11622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The priests the Levites, and all the tribe of Levi, shall have no part nor inheritance with Israel: they shall eat the offerings of the LORD made by fire, and his inheritance.
11623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Therefore shall they have no inheritance among their brethren: the LORD is their inheritance, as he hath said unto them.
11624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And this shall be the priest's due from the people, from them that offer a sacrifice, whether it be ox or sheep; and they shall give unto the priest the shoulder, and the two cheeks, and the maw.
11625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The firstfruit also of thy corn, of thy wine, and of thine oil, and the first of the fleece of thy sheep, shalt thou give him.
11626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the LORD thy God hath chosen him out of all thy tribes, to stand to minister in the name of the LORD, him and his sons for ever.
11627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if a Levite come from any of thy gates out of all Israel, where he sojourned, and come with all the desire of his mind unto the place which the LORD shall choose;
11628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then he shall minister in the name of the LORD his God, as all his brethren the Levites do, which stand there before the LORD.
11629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They shall have like portions to eat, beside that which cometh of the sale of his patrimony.
11630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When thou art come into the land which the LORD thy God giveth thee, thou shalt not learn to do after the abominations of those nations.
11631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There shall not be found among you any one that maketh his son or his daughter to pass through the fire, or that useth divination, or an observer of times, or an enchanter, or a witch.
11632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Or a charmer, or a consulter with familiar spirits, or a wizard, or a necromancer.
11633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For all that do these things are an abomination unto the LORD: and because of these abominations the LORD thy God doth drive them out from before thee.
11634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt be perfect with the LORD thy God.
11635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For these nations, which thou shalt possess, hearkened unto observers of times, and unto diviners: but as for thee, the LORD thy God hath not suffered thee so to do.
11636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD thy God will raise up unto thee a Prophet from the midst of thee, of thy brethren, like unto me; unto him ye shall hearken;
11637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        According to all that thou desiredst of the LORD thy God in Horeb in the day of the assembly, saying, Let me not hear again the voice of the LORD my God, neither let me see this great fire any more, that I die not.
11638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto me, They have well spoken that which they have spoken.
11639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I will raise them up a Prophet from among their brethren, like unto thee, and will put my words in his mouth; and he shall speak unto them all that I shall command him.
11640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it shall come to pass, that whosoever will not hearken unto my words which he shall speak in my name, I will require it of him.
11641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But the prophet, which shall presume to speak a word in my name, which I have not commanded him to speak, or that shall speak in the name of other gods, even that prophet shall die.
11642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And if thou say in thine heart, How shall we know the word which the LORD hath not spoken?
11643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When a prophet speaketh in the name of the LORD, if the thing follow not, nor come to pass, that is the thing which the LORD hath not spoken, but the prophet hath spoken it presumptuously: thou shalt not be afraid of him.
11644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When the LORD thy God hath cut off the nations, whose land the LORD thy God giveth thee, and thou succeedest them, and dwellest in their cities, and in their houses;
11645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt separate three cities for thee in the midst of thy land, which the LORD thy God giveth thee to possess it.
11646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou shalt prepare thee a way, and divide the coasts of thy land, which the LORD thy God giveth thee to inherit, into three parts, that every slayer may flee thither.
11647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And this is the case of the slayer, which shall flee thither, that he may live: Whoso killeth his neighbor ignorantly, whom he hated not in time past;
11648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       As when a man goeth into the wood with his neighbor to hew wood, and his hand fetcheth a stroke with the axe to cut down the tree, and the head slippeth from the helve, and lighteth upon his neighbor, that he die; he shall flee unto one of those cities, and live:
11649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lest the avenger of the blood pursue the slayer, while his heart is hot, and overtake him, because the way is long, and slay him; whereas he was not worthy of death, inasmuch as he hated him not in time past.
11650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore I command thee, saying, Thou shalt separate three cities for thee.
11651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if the LORD thy God enlarge thy coast, as he hath sworn unto thy fathers, and give thee all the land which he promised to give unto thy fathers;
11652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If thou shalt keep all these commandments to do them, which I command thee this day, to love the LORD thy God, and to walk ever in his ways; then shalt thou add three cities more for thee, beside these three:
11653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That innocent blood be not shed in thy land, which the LORD thy God giveth thee for an inheritance, and so blood be upon thee.
11654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if any man hate his neighbor, and lie in wait for him, and rise up against him, and smite him mortally that he die, and fleeth into one of these cities:
11655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the elders of his city shall send and fetch him thence, and deliver him into the hand of the avenger of blood, that he may die.
11656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thine eye shall not pity him, but thou shalt put away the guilt of innocent blood from Israel, that it may go well with thee.
11657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not remove thy  neighbor's landmark, which they of old time have set in thine inheritance, which thou shalt inherit in the land that the LORD thy God giveth thee to possess it.
11658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 One witness shall not rise up against a man for any iniquity, or for any sin, in any sin that he sinneth: at the mouth of two witnesses, or at the mouth of three witnesses, shall the matter be established.
11659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If a false witness rise up against any man to testify against him that which is wrong;
11660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then both the men, between whom the controversy is, shall stand before the LORD, before the priests and the judges, which shall be in those days;
11661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the judges shall make diligent inquisition: and, behold, if the witness be a false witness, and hath testified falsely against his brother;
11662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then shall ye do unto him, as he had thought to have done unto his brother: so shalt thou put the evil away from among you.
11663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And those which remain shall hear, and fear, and shall henceforth commit no more any such evil among you.
11664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thine eye shall not pity; but life shall go for life, eye for eye, tooth for tooth, hand for hand, foot for foot.
11665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When thou goest out to battle against thine enemies, and seest horses, and chariots, and a people more than thou, be not afraid of them: for the LORD thy God is with thee, which brought thee up out of the land of Egypt.
11666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it shall be, when ye are come nigh unto the battle, that the priest shall approach and speak unto the people,
11667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And shall say unto them, Hear, O Israel, ye approach this day unto battle against your enemies: let not your hearts faint, fear not, and do not tremble, neither be ye terrified because of them;
11668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the LORD your God is he that goeth with you, to fight for you against your enemies, to save you.
11669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the officers shall speak unto the people, saying, What man is there that hath built a new house, and hath not dedicated it? let him go and return to his house, lest he die in the battle, and another man dedicate it.
11670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And what man is he that hath planted a vineyard, and hath not yet eaten of it? let him also go and return unto his house, lest he die in the battle, and another man eat of it.
11671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And what man is there that hath betrothed a wife, and hath not taken her? let him go and return unto his house, lest he die in the battle, and another man take her.
11672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the officers shall speak further unto the people, and they shall say, What man is there that is fearful and fainthearted? let him go and return unto his house, lest his brethren's heart faint as well as his heart.
11673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it shall be, when the officers have made an end of speaking unto the people that they shall make captains of the armies to lead the people.
11674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When thou comest nigh unto a city to fight against it, then proclaim peace unto it.
11675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it shall be, if it make thee answer of peace, and open unto thee, then it shall be, that all the people that is found therein shall be tributaries unto thee, and they shall serve thee.
11676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And if it will make no peace with thee, but will make war against thee, then thou shalt besiege it:
11677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the LORD thy God hath delivered it into thine hands, thou shalt smite every male thereof with the edge of the sword:
11678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the women, and the little ones, and the cattle, and all that is in the city, even all the spoil thereof, shalt thou take unto thyself; and thou shalt eat the spoil of thine enemies, which the LORD thy God hath given thee.
11679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus shalt thou do unto all the cities which are very far off from thee, which are not of the cities of these nations.
11680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But of the cities of these people, which the LORD thy God doth give thee for an inheritance, thou shalt save alive nothing that breatheth:
11681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But thou shalt utterly destroy them; namely, the Hittites, and the Amorites, the Canaanites, and the Perizzites, the Hivites, and the Jebusites; as the LORD thy God hath commanded thee:
11682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That they teach you not to do after all their abominations, which they have done unto their gods; so should ye sin against the LORD your God.
11683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When thou shalt besiege a city a long time, in making war against it to take it, thou shalt not destroy the trees thereof by forcing an axe against them: for thou mayest eat of them, and thou shalt not cut them down (for the tree of the field is man's life) to employ them in the siege:
11684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Only the trees which thou knowest that they be not trees for meat, thou shalt destroy and cut them down; and thou shalt build bulwarks against the city that maketh war with thee, until it be subdued.
11685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If one be found slain in the land which the LORD thy God giveth thee to possess it, lying in the field, and it be not known who hath slain him:
11686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then thy elders and thy judges shall come forth, and they shall measure unto the cities which are round about him that is slain:
11687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it shall be, that the city which is next unto the slain man, even the elders of that city shall take an heifer, which hath not been wrought with, and which hath not drawn in the yoke;
11688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the elders of that city shall bring down the heifer unto a rough valley, which is neither eared nor sown, and shall strike off the heifer's neck there in the valley:
11689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the priests the sons of Levi shall come near; for them the LORD thy God hath chosen to minister unto him, and to bless in the name of the LORD; and by their word shall every controversy and every stroke be tried:
11690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the elders of that city, that are next unto the slain man, shall wash their hands over the heifer that is beheaded in the valley:
11691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they shall answer and say, Our hands have not shed this blood, neither have our eyes seen it.
11692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Be merciful, O LORD, unto thy people Israel, whom thou hast redeemed, and lay not innocent blood unto thy people of Israel's charge. And the blood shall be forgiven them.
11693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So shalt thou put away the guilt of innocent blood from among you, when thou shalt do that which is right in the sight of the LORD.
11694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When thou goest forth to war against thine enemies, and the LORD thy God hath delivered them into thine hands, and thou hast taken them captive,
11695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And seest among the captives a beautiful woman, and hast a desire unto her, that thou wouldest have her to thy wife;
11696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then thou shalt bring her home to thine house, and she shall shave her head, and pare her nails;
11697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she shall put the raiment of her captivity from off her, and shall remain in thine house, and bewail her father and her mother a full month: and after that thou shalt go in unto her, and be her husband, and she shall be thy wife.
11698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it shall be, if thou have no delight in her, then thou shalt let her go whither she will; but thou shalt not sell her at all for money, thou shalt not make merchandise of her, because thou hast humbled her.
11699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If a man have two wives, one beloved, and another hated, and they have born him children, both the beloved and the hated; and if the firstborn son be hers that was hated:
11700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then it shall be, when he maketh his sons to inherit that which he hath, that he may not make the son of the beloved firstborn before the son of the hated, which is indeed the firstborn:
11701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But he shall acknowledge the son of the hated for the firstborn, by giving him a double portion of all that he hath: for he is the beginning of his strength; the right of the firstborn is his.
11702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If a man have a stubborn and rebellious son, which will not obey the voice of his father, or the voice of his mother, and that, when they have chastened him, will not hearken unto them:
11703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then shall his father and his mother lay hold on him, and bring him out unto the elders of his city, and unto the gate of his place;
11704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they shall say unto the elders of his city, This our son is stubborn and rebellious, he will not obey our voice; he is a glutton, and a drunkard.
11705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the men of his city shall stone him with stones, that he die: so shalt thou put evil away from among you; and all Israel shall hear, and fear.
11706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if a man have committed a sin worthy of death, and he be to be put to death, and thou hang him on a tree:
11707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             His body shall not remain all night upon the tree, but thou shalt in any wise bury him that day; (for he that is hanged is accursed of God;) that thy land be not defiled, which the LORD thy God giveth thee for an inheritance.
11708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not see thy brother's ox or his sheep go astray, and hide thyself from them: thou shalt in any case bring them again unto thy brother.
11709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And if thy brother be not nigh unto thee, or if thou know him not, then thou shalt bring it unto thine own house, and it shall be with thee until thy brother seek after it, and thou shalt restore it to him again.
11710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In like manner shalt thou do with his ass; and so shalt thou do with his raiment; and with all lost thing of thy brother's, which he hath lost, and thou hast found, shalt thou do likewise: thou mayest not hide thyself.
11711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt not see thy brother's ass or his ox fall down by the way, and hide thyself from them: thou shalt surely help him to lift them up again.
11712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The woman shall not wear that which pertaineth unto a man, neither shall a man put on a woman's garment: for all that do so are abomination unto the LORD thy God.
11713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If a bird's nest chance to be before thee in the way in any tree, or on the ground, whether they be young ones, or eggs, and the dam sitting upon the young, or upon the eggs, thou shalt not take the dam with the young:
11714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But thou shalt in any wise let the dam go, and take the young to thee; that it may be well with thee, and that thou mayest prolong thy days.
11715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When thou buildest a new house, then thou shalt make a battlement for thy roof, that thou bring not blood upon thine house, if any man fall from thence.
11716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not sow thy vineyard with divers seeds: lest the fruit of thy seed which thou hast sown, and the fruit of thy vineyard, be defiled.
11717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not plow with an ox and an ass together.
11718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt not wear a garment of divers sorts, as of woolen and linen together.
11719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Thou shalt make thee fringes upon the four quarters of thy vesture, wherewith thou coverest thyself.
11720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     If any man take a wife, and go in unto her, and hate her,
11721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And give occasions of speech against her, and bring up an evil name upon her, and say, I took this woman, and when I came to her, I found her not a maid:
11722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then shall the father of the damsel, and her mother, take and bring forth the tokens of the damsel's virginity unto the elders of the city in the gate:
11723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the damsel's father shall say unto the elders, I gave my daughter unto this man to wife, and he hateth her;
11724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And, lo, he hath given occasions of speech against her, saying, I found not thy daughter a maid; and yet these are the tokens of my daughter's virginity. And they shall spread the cloth before the elders of the city.
11725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the elders of that city shall take that man and chastise him;
11726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they shall amerce him in an hundred shekels of silver, and give them unto the father of the damsel, because he hath brought up an evil name upon a virgin of Israel: and she shall be his wife; he may not put her away all his days.
11727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But if this thing be true, and the tokens of virginity be not found for the damsel:
11728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then they shall bring out the damsel to the door of her father's house, and the men of her city shall stone her with stones that she die: because she hath wrought folly in Israel, to play the whore in her father's house: so shalt thou put evil away from among you.
11729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   If a man be found lying with a woman married to an husband, then they shall both of them die, both the man that lay with the woman, and the woman: so shalt thou put away evil from Israel.
11730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If a damsel that is a virgin be betrothed unto an husband, and a man find her in the city, and lie with her;
11731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then ye shall bring them both out unto the gate of that city, and ye shall stone them with stones that they die; the damsel, because she cried not, being in the city; and the man, because he hath humbled his neighbor's wife: so thou shalt put away evil from among you.
11732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if a man find a betrothed damsel in the field, and the man force her, and lie with her: then the man only that lay with her shall die.
11733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But unto the damsel thou shalt do nothing; there is in the damsel no sin worthy of death: for as when a man riseth against his neighbor, and slayeth him, even so is this matter:
11734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For he found her in the field, and the betrothed damsel cried, and there was none to save her.
11735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If a man find a damsel that is a virgin, which is not betrothed, and lay hold on her, and lie with her, and they be found;
11736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then the man that lay with her shall give unto the damsel's father fifty shekels of silver, and she shall be his wife; because he hath humbled her, he may not put her away all his days.
11737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A man shall not take his father's wife, nor discover his father's skirt.
11738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He that is wounded in the stones, or hath his privy member cut off, shall not enter into the congregation of the LORD.
11739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A bastard shall not enter into the congregation of the LORD; even to his tenth generation shall he not enter into the congregation of the LORD.
11740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     An Ammonite or Moabite shall not enter into the congregation of the LORD; even to their tenth generation shall they not enter into the congregation of the LORD for ever:
11741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Because they met you not with bread and with water in the way, when ye came forth out of Egypt; and because they hired against thee Balaam the son of Beor of Pethor of Mesopotamia, to curse thee.
11742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Nevertheless the LORD thy God would not hearken unto Balaam; but the LORD thy God turned the curse into a blessing unto thee, because the LORD thy God loved thee.
11743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not seek their peace nor their prosperity all thy days for ever.
11744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not abhor an Edomite; for he is thy brother: thou shalt not abhor an Egyptian; because thou wast a stranger in his land.
11745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The children that are begotten of them shall enter into the congregation of the LORD in their third generation.
11746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When the host goeth forth against thine enemies, then keep thee from every wicked thing.
11747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If there be among you any man, that is not clean by reason of uncleanness that chanceth him by night, then shall he go abroad out of the camp, he shall not come within the camp:
11748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But it shall be, when evening cometh on, he shall wash himself with water: and when the sun is down, he shall come into the camp again.
11749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Thou shalt have a place also without the camp, whither thou shalt go forth abroad:
11750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt have a paddle upon thy weapon; and it shall be, when thou wilt ease thyself abroad, thou shalt dig therewith, and shalt turn back and cover that which cometh from thee:
11751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For the LORD thy God walketh in the midst of thy camp, to deliver thee, and to give up thine enemies before thee; therefore shall thy camp be holy: that he see no unclean thing in thee, and turn away from thee.
11752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou shalt not deliver unto his master the servant which is escaped from his master unto thee:
11753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He shall dwell with thee, even among you, in that place which he shall choose in one of thy gates, where it liketh him best: thou shalt not oppress him.
11754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     There shall be no whore of the daughters of Israel, nor a sodomite of the sons of Israel.
11755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not bring the hire of a whore, or the price of a dog, into the house of the LORD thy God for any vow: for even both these are abomination unto the LORD thy God.
11756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thou shalt not lend upon usury to thy brother; usury of money, usury of victuals, usury of any thing that is lent upon usury:
11757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Unto a stranger thou mayest lend upon usury; but unto thy brother thou shalt not lend upon usury: that the LORD thy God may bless thee in all that thou settest thine hand to in the land whither thou goest to possess it.
11758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When thou shalt vow a vow unto the LORD thy God, thou shalt not slack to pay it: for the LORD thy God will surely require it of thee; and it would be sin in thee.
11759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if thou shalt forbear to vow, it shall be no sin in thee.
11760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That which is gone out of thy lips thou shalt keep and perform; even a freewill offering, according as thou hast vowed unto the LORD thy God, which thou hast promised with thy mouth.
11761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When thou comest into thy neighbor's vineyard, then thou mayest eat grapes thy fill at thine own pleasure; but thou shalt not put any in thy vessel.
11762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When thou comest into the standing corn of thy neighbor, then thou mayest pluck the ears with thine hand; but thou shalt not move a sickle unto thy neighbor's standing corn.
11763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When a man hath taken a wife, and married her, and it come to pass that she find no favor in his eyes, because he hath found some uncleanness in her: then let him write her a bill of divorcement, and give it in her hand, and send her out of his house.
11764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when she is departed out of his house, she may go and be another man's wife.
11765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And if the latter husband hate her, and write her a bill of divorcement, and giveth it in her hand, and sendeth her out of his house; or if the latter husband die, which took her to be his wife;
11766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Her former husband, which sent her away, may not take her again to be his wife, after that she is defiled; for that is abomination before the LORD: and thou shalt not cause the land to sin, which the LORD thy God giveth thee for an inheritance.
11767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When a man hath taken a new wife, he shall not go out to war, neither shall he be charged with any business: but he shall be free at home one year, and shall cheer up his wife which he hath taken.
11768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          No man shall take the nether or the upper millstone to pledge: for he taketh a man's life to pledge.
11769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If a man be found stealing any of his brethren of the children of Israel, and maketh merchandise of him, or selleth him; then that thief shall die; and thou shalt put evil away from among you.
11770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Take heed in the plague of leprosy, that thou observe diligently, and do according to all that the priests the Levites shall teach you: as I commanded them, so ye shall observe to do.
11771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Remember what the LORD thy God did unto Miriam by the way, after that ye were come forth out of Egypt.
11772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When thou dost lend thy brother any thing, thou shalt not go into his house to fetch his pledge.
11773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt stand abroad, and the man to whom thou dost lend shall bring out the pledge abroad unto thee.
11774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And if the man be poor, thou shalt not sleep with his pledge:
11775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In any case thou shalt deliver him the pledge again when the sun goeth down, that he may sleep in his own raiment, and bless thee: and it shall be righteousness unto thee before the LORD thy God.
11776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thou shalt not oppress an hired servant that is poor and needy, whether he be of thy brethren, or of thy strangers that are in thy land within thy gates:
11777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               At his day thou shalt give him his hire, neither shall the sun go down upon it; for he is poor, and setteth his heart upon it: lest he cry against thee unto the LORD, and it be sin unto thee.
11778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The fathers shall not be put to death for the children, neither shall the children be put to death for the fathers: every man shall be put to death for his own sin.
11779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt not pervert the judgment of the stranger, nor of the fatherless; nor take a widow's raiment to pledge:
11780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But thou shalt remember that thou wast a bondman in Egypt, and the LORD thy God redeemed thee thence: therefore I command thee to do this thing.
11781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When thou cuttest down thine harvest in thy field, and hast forgot a sheaf in the field, thou shalt not go again to fetch it: it shall be for the stranger, for the fatherless, and for the widow: that the LORD thy God may bless thee in all the work of thine hands.
11782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When thou beatest thine olive tree, thou shalt not go over the boughs again: it shall be for the stranger, for the fatherless, and for the widow.
11783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When thou gatherest the grapes of thy vineyard, thou shalt not glean it afterward: it shall be for the stranger, for the fatherless, and for the widow.
11784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thou shalt remember that thou wast a bondman in the land of Egypt: therefore I command thee to do this thing.
11785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If there be a controversy between men, and they come unto judgment, that the judges may judge them; then they shall justify the righteous, and condemn the wicked.
11786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it shall be, if the wicked man be worthy to be beaten, that the judge shall cause him to lie down, and to be beaten before his face, according to his fault, by a certain number.
11787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Forty stripes he may give him, and not exceed: lest, if he should exceed, and beat him above these with many stripes, then thy brother should seem vile unto thee.
11788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou shalt not muzzle the ox when he treadeth out the corn.
11789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If brethren dwell together, and one of them die, and have no child, the wife of the dead shall not marry without unto a stranger: her husband's brother shall go in unto her, and take her to him to wife, and perform the duty of an husband's brother unto her.
11790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it shall be, that the firstborn which she beareth shall succeed in the name of his brother which is dead, that his name be not put out of Israel.
11791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And if the man like not to take his brother's wife, then let his brother's wife go up to the gate unto the elders, and say, My husband's brother refuseth to raise up unto his brother a name in Israel, he will not perform the duty of my husband's brother.
11792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then the elders of his city shall call him, and speak unto him: and if he stand to it, and say, I like not to take her;
11793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then shall his brother's wife come unto him in the presence of the elders, and loose his shoe from off his foot, and spit in his face, and shall answer and say, So shall it be done unto that man that will not build up his brother's house.
11794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And his name shall be called in Israel, The house of him that hath his shoe loosed.
11795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When men strive together one with another, and the wife of the one draweth near for to deliver her husband out of the hand of him that smiteth him, and putteth forth her hand, and taketh him by the secrets:
11796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then thou shalt cut off her hand, thine eye shall not pity her.
11797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt not have in thy bag divers weights, a great and a small.
11798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thou shalt not have in thine house divers measures, a great and a small.
11799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But thou shalt have a perfect and just weight, a perfect and just measure shalt thou have: that thy days may be lengthened in the land which the LORD thy God giveth thee.
11800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For all that do such things, and all that do unrighteously, are an abomination unto the LORD thy God.
11801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Remember what Amalek did unto thee by the way, when ye were come forth out of Egypt;
11802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     How he met thee by the way, and smote the hindmost of thee, even all that were feeble behind thee, when thou wast faint and weary; and he feared not God.
11803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Therefore it shall be, when the LORD thy God hath given thee rest from all thine enemies round about, in the land which the LORD thy God giveth thee for an inheritance to possess it, that thou shalt blot out the remembrance of Amalek from under heaven; thou shalt not forget it.
11804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall be, when thou art come in unto the land which the LORD thy God giveth thee for an inheritance, and possessest it, and dwellest therein;
11805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That thou shalt take of the first of all the fruit of the earth, which thou shalt bring of thy land that the LORD thy God giveth thee, and shalt put it in a basket, and shalt go unto the place which the LORD thy God shall choose to place his name there.
11806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt go unto the priest that shall be in those days, and say unto him, I profess this day unto the LORD thy God, that I am come unto the country which the LORD sware unto our fathers for to give us.
11807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the priest shall take the basket out of thine hand, and set it down before the altar of the LORD thy God.
11808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt speak and say before the LORD thy God, A Syrian ready to perish was my father, and he went down into Egypt, and sojourned there with a few, and became there a nation, great, mighty, and populous:
11809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the Egyptians evil entreated us, and afflicted us, and laid upon us hard bondage:
11810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when we cried unto the LORD God of our fathers, the LORD heard our voice, and looked on our affliction, and our labor, and our oppression:
11811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD brought us forth out of Egypt with a mighty hand, and with an outstretched arm, and with great terribleness, and with signs, and with wonders:
11812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he hath brought us into this place, and hath given us this land, even a land that floweth with milk and honey.
11813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And now, behold, I have brought the firstfruits of the land, which thou, O LORD, hast given me. And thou shalt set it before the LORD thy God, and worship before the LORD thy God:
11814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt rejoice in every good thing which the LORD thy God hath given unto thee, and unto thine house, thou, and the Levite, and the stranger that is among you.
11815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When thou hast made an end of tithing all the tithes of thine increase the third year, which is the year of tithing, and hast given it unto the Levite, the stranger, the fatherless, and the widow, that they may eat within thy gates, and be filled;
11816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then thou shalt say before the LORD thy God, I have brought away the hallowed things out of mine house, and also have given them unto the Levite, and unto the stranger, to the fatherless, and to the widow, according to all thy commandments which thou hast commanded me: I have not transgressed thy commandments, neither have I forgotten them.
11817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I have not eaten thereof in my mourning, neither have I taken away ought thereof for any unclean use, nor given ought thereof for the dead: but I have hearkened to the voice of the LORD my God, and have done according to all that thou hast commanded me.
11818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Look down from thy holy habitation, from heaven, and bless thy people Israel, and the land which thou hast given us, as thou swarest unto our fathers, a land that floweth with milk and honey.
11819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This day the LORD thy God hath commanded thee to do these statutes and judgments: thou shalt therefore keep and do them with all thine heart, and with all thy soul.
11820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou hast avouched the LORD this day to be thy God, and to walk in his ways, and to keep his statutes, and his commandments, and his judgments, and to hearken unto his voice:
11821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD hath avouched thee this day to be his peculiar people, as he hath promised thee, and that thou shouldest keep all his commandments;
11822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And to make thee high above all nations which he hath made, in praise, and in name, and in honor; and that thou mayest be an holy people unto the LORD thy God, as he hath spoken.
11823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Moses with the elders of Israel commanded the people, saying, Keep all the commandments which I command you this day.
11824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall be on the day when ye shall pass over Jordan unto the land which the LORD thy God giveth thee, that thou shalt set thee up great stones, and plaster them with plaster:
11825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt write upon them all the words of this law, when thou art passed over, that thou mayest go in unto the land which the LORD thy God giveth thee, a land that floweth with milk and honey; as the LORD God of thy fathers hath promised thee.
11826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore it shall be when ye be gone over Jordan, that ye shall set up these stones, which I command you this day, in mount Ebal, and thou shalt plaster them with plaster.
11827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there shalt thou build an altar unto the LORD thy God, an altar of stones: thou shalt not lift up any iron tool upon them.
11828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou shalt build the altar of the LORD thy God of whole stones: and thou shalt offer burnt offerings thereon unto the LORD thy God:
11829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt offer peace offerings, and shalt eat there, and rejoice before the LORD thy God.
11830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And thou shalt write upon the stones all the words of this law very plainly.
11831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Moses and the priests the Levites spake unto all Israel, saying, Take heed, and hearken, O Israel; this day thou art become the people of the LORD thy God.
11832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt therefore obey the voice of the LORD thy God, and do his commandments and his statutes, which I command thee this day.
11833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses charged the people the same day, saying,
11834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These shall stand upon mount Gerizim to bless the people, when ye are come over Jordan; Simeon, and Levi, and Judah, and Issachar, and Joseph, and Benjamin:
11835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And these shall stand upon mount Ebal to curse; Reuben, Gad, and Asher, and Zebulun, Dan, and Naphtali.
11836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Levites shall speak, and say unto all the men of Israel with a loud voice,
11837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cursed be the man that maketh any graven or molten image, an abomination unto the LORD, the work of the hands of the craftsman, and putteth it in a secret place. And all the people shall answer and say, Amen.
11838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cursed be he that setteth light by his father or his mother. And all the people shall say, Amen.
11839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Cursed be he that removeth his neighbor's landmark. And all the people shall say, Amen.
11840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cursed be he that maketh the blind to wander out of the way. And all the people shall say, Amen.
11841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cursed be he that perverteth the judgment of the stranger, fatherless, and widow. And all the people shall say, Amen.
11842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Cursed be he that lieth with his father's wife; because he uncovereth his father's skirt. And all the people shall say, Amen.
11843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Cursed be he that lieth with any manner of beast. And all the people shall say, Amen.
11844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Cursed be he that lieth with his sister, the daughter of his father, or the daughter of his mother. And all the people shall say, Amen.
11845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Cursed be he that lieth with his mother in law. And all the people shall say, Amen.
11846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cursed be he that smiteth his neighbor secretly. And all the people shall say, Amen.
11847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Cursed be he that taketh reward to slay an innocent person. And all the people shall say, Amen.
11848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cursed be he that confirmeth not all the words of this law to do them. And all the people shall say, Amen.
11849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it shall come to pass, if thou shalt hearken diligently unto the voice of the LORD thy God, to observe and to do all his commandments which I command thee this day, that the LORD thy God will set thee on high above all nations of the earth:
11850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all these blessings shall come on thee, and overtake thee, if thou shalt hearken unto the voice of the LORD thy God.
11851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Blessed shalt thou be in the city, and blessed shalt thou be in the field.
11852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Blessed shall be the fruit of thy body, and the fruit of thy ground, and the fruit of thy cattle, the increase of thy kine, and the flocks of thy sheep.
11853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Blessed shall be thy basket and thy store.
11854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Blessed shalt thou be when thou comest in, and blessed shalt thou be when thou goest out.
11855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The LORD shall cause thine enemies that rise up against thee to be smitten before thy face: they shall come out against thee one way, and flee before thee seven ways.
11856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD shall command the blessing upon thee in thy storehouses, and in all that thou settest thine hand unto; and he shall bless thee in the land which the LORD thy God giveth thee.
11857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD shall establish thee an holy people unto himself, as he hath sworn unto thee, if thou shalt keep the commandments of the LORD thy God, and walk in his ways.
11858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And all people of the earth shall see that thou art called by the name of the LORD; and they shall be afraid of thee.
11859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD shall make thee plenteous in goods, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy ground, in the land which the LORD sware unto thy fathers to give thee.
11860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD shall open unto thee his good treasure, the heaven to give the rain unto thy land in his season, and to bless all the work of thine hand: and thou shalt lend unto many nations, and thou shalt not borrow.
11861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD shall make thee the head, and not the tail; and thou shalt be above only, and thou shalt not be beneath; if that thou hearken unto the commandments of the LORD thy God, which I command thee this day, to observe and to do them:
11862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou shalt not go aside from any of the words which I command thee this day, to the right hand, or to the left, to go after other gods to serve them.
11863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But it shall come to pass, if thou wilt not hearken unto the voice of the LORD thy God, to observe to do all his commandments and his statutes which I command thee this day; that all these curses shall come upon thee, and overtake thee:
11864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cursed shalt thou be in the city, and cursed shalt thou be in the field.
11865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cursed shall be thy basket and thy store.
11866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cursed shall be the fruit of thy body, and the fruit of thy land, the increase of thy kine, and the flocks of thy sheep.
11867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Cursed shalt thou be when thou comest in, and cursed shalt thou be when thou goest out.
11868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD shall send upon thee cursing, vexation, and rebuke, in all that thou settest thine hand unto for to do, until thou be destroyed, and until thou perish quickly; because of the wickedness of thy doings, whereby thou hast forsaken me.
11869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD shall make the pestilence cleave unto thee, until he have consumed thee from off the land, whither thou goest to possess it.
11870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD shall smite thee with a consumption, and with a fever, and with an inflammation, and with an extreme burning, and with the sword, and with blasting, and with mildew; and they shall pursue thee until thou perish.
11871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thy heaven that is over thy head shall be brass, and the earth that is under thee shall be iron.
11872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD shall make the rain of thy land powder and dust: from heaven shall it come down upon thee, until thou be destroyed.
11873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD shall cause thee to be smitten before thine enemies: thou shalt go out one way against them, and flee seven ways before them: and shalt be removed into all the kingdoms of the earth.
11874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thy carcass shall be meat unto all fowls of the air, and unto the beasts of the earth, and no man shall fray them away.
11875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The LORD will smite thee with the botch of Egypt, and with the emerods, and with the scab, and with the itch, whereof thou canst not be healed.
11876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The LORD shall smite thee with madness, and blindness, and astonishment of heart:
11877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And thou shalt grope at noonday, as the blind gropeth in darkness, and thou shalt not prosper in thy ways: and thou shalt be only oppressed and spoiled evermore, and no man shall save thee.
11878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou shalt betroth a wife, and another man shall lie with her: thou shalt build an house, and thou shalt not dwell therein: thou shalt plant a vineyard, and shalt not gather the grapes thereof.
11879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thine ox shall be slain before thine eyes, and thou shalt not eat thereof: thine ass shall be violently taken away from before thy face, and shall not be restored to thee: thy sheep shall be given unto thine enemies, and thou shalt have none to rescue them.
11880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thy sons and thy daughters shall be given unto another people, and thine eyes shall look, and fail with longing for them all the day long; and there shall be no might in thine hand.
11881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fruit of thy land, and all thy labors, shall a nation which thou knowest not eat up; and thou shalt be only oppressed and crushed alway:
11882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So that thou shalt be mad for the sight of thine eyes which thou shalt see.
11883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The LORD shall smite thee in the knees, and in the legs, with a sore botch that cannot be healed, from the sole of thy foot unto the top of thy head.
11884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The LORD shall bring thee, and thy king which thou shalt set over thee, unto a nation which neither thou nor thy fathers have known; and there shalt thou serve other gods, wood and stone.
11885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt become an astonishment, a proverb, and a byword, among all nations whither the LORD shall lead thee.
11886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thou shalt carry much seed out into the field, and shalt gather but little in; for the locust shall consume it.
11887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt plant vineyards, and dress them, but shalt neither drink of the wine, nor gather the grapes; for the worms shall eat them.
11888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thou shalt have olive trees throughout all thy coasts, but thou shalt not anoint thyself with the oil; for thine olive shall cast his fruit.
11889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thou shalt beget sons and daughters, but thou shalt not enjoy them; for they shall go into captivity.
11890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All thy trees and fruit of thy land shall the locust consume.
11891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The stranger that is within thee shall get up above thee very high; and thou shalt come down very low.
11892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He shall lend to thee, and thou shalt not lend to him: he shall be the head, and thou shalt be the tail.
11893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moreover all these curses shall come upon thee, and shall pursue thee, and overtake thee, till thou be destroyed; because thou hearkenedst not unto the voice of the LORD thy God, to keep his commandments and his statutes which he commanded thee:
11894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they shall be upon thee for a sign and for a wonder, and upon thy seed for ever.
11895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Because thou servedst not the LORD thy God with joyfulness, and with gladness of heart, for the abundance of all things;
11896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Therefore shalt thou serve thine enemies which the LORD shall send against thee, in hunger, and in thirst, and in nakedness, and in want of all things: and he shall put a yoke of iron upon thy neck, until he have destroyed thee.
11897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD shall bring a nation against thee from far, from the end of the earth, as swift as the eagle flieth; a nation whose tongue thou shalt not understand;
11898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A nation of fierce countenance, which shall not regard the person of the old, nor show favor to the young:
11899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he shall eat the fruit of thy cattle, and the fruit of thy land, until thou be destroyed: which also shall not leave thee either corn, wine, or oil, or the increase of thy kine, or flocks of thy sheep, until he have destroyed thee.
11900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he shall besiege thee in all thy gates, until thy high and fenced walls come down, wherein thou trustedst, throughout all thy land: and he shall besiege thee in all thy gates throughout all thy land, which the LORD thy God hath given thee.
11901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thou shalt eat the fruit of thine own body, the flesh of thy sons and of thy daughters, which the LORD thy God hath given thee, in the siege, and in the straitness, wherewith thine enemies shall distress thee:
11902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So that the man that is tender among you, and very delicate, his eye shall be evil toward his brother, and toward the wife of his bosom, and toward the remnant of his children which he shall leave:
11903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So that he will not give to any of them of the flesh of his children whom he shall eat: because he hath nothing left him in the siege, and in the straitness, wherewith thine enemies shall distress thee in all thy gates.
11904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The tender and delicate woman among you, which would not adventure to set the sole of her foot upon the ground for delicateness and tenderness, her eye shall be evil toward the husband of her bosom, and toward her son, and toward her daughter,
11905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And toward her young one that cometh out from between her feet, and toward her children which she shall bear: for she shall eat them for want of all things secretly in the siege and straitness, wherewith thine enemy shall distress thee in thy gates.
11906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If thou wilt not observe to do all the words of this law that are written in this book, that thou mayest fear this glorious and fearful name, THE LORD THY GOD;
11907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then the LORD will make thy plagues wonderful, and the plagues of thy seed, even great plagues, and of long continuance, and sore sicknesses, and of long continuance.
11908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moreover he will bring upon thee all the diseases of Egypt, which thou wast afraid of; and they shall cleave unto thee.
11909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Also every sickness, and every plague, which is not written in the book of this law, them will the LORD bring upon thee, until thou be destroyed.
11910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ye shall be left few in number, whereas ye were as the stars of heaven for multitude; because thou wouldest not obey the voice of the LORD thy God.
11911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it shall come to pass, that as the LORD rejoiced over you to do you good, and to multiply you; so the LORD will rejoice over you to destroy you, and to bring you to nought; and ye shall be plucked from off the land whither thou goest to possess it.
11912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD shall scatter thee among all people, from the one end of the earth even unto the other; and there thou shalt serve other gods, which neither thou nor thy fathers have known, even wood and stone.
11913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And among these nations shalt thou find no ease, neither shall the sole of thy foot have rest: but the LORD shall give thee there a trembling heart, and failing of eyes, and sorrow of mind:
11914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And thy life shall hang in doubt before thee; and thou shalt fear day and night, and shalt have none assurance of thy life:
11915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In the morning thou shalt say, Would God it were even! and at even thou shalt say, Would God it were morning! for the fear of thine heart wherewith thou shalt fear, and for the sight of thine eyes which thou shalt see.
11916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD shall bring thee into Egypt again with ships, by the way whereof I spake unto thee, Thou shalt see it no more again: and there ye shall be sold unto your enemies for bondmen and bondwomen, and no man shall buy you.
11917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These are the words of the covenant, which the LORD commanded Moses to make with the children of Israel in the land of Moab, beside the covenant which he made with them in Horeb.
11918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses called unto all Israel, and said unto them, Ye have seen all that the LORD did before your eyes in the land of Egypt unto Pharaoh, and unto all his servants, and unto all his land;
11919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The great temptations which thine eyes have seen, the signs, and those great miracles:
11920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Yet the LORD hath not given you an heart to perceive, and eyes to see, and ears to hear, unto this day.
11921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I have led you forty years in the wilderness: your clothes are not waxen old upon you, and thy shoe is not waxen old upon thy foot.
11922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ye have not eaten bread, neither have ye drunk wine or strong drink: that ye might know that I am the LORD your God.
11923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when ye came unto this place, Sihon the king of Heshbon, and Og the king of Bashan, came out against us unto battle, and we smote them:
11924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And we took their land, and gave it for an inheritance unto the Reubenites, and to the Gadites, and to the half tribe of Manasseh.
11925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Keep therefore the words of this covenant, and do them, that ye may prosper in all that ye do.
11926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ye stand this day all of you before the LORD your God; your captains of your tribes, your elders, and your officers, with all the men of Israel,
11927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Your little ones, your wives, and thy stranger that is in thy camp, from the hewer of thy wood unto the drawer of thy water:
11928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That thou shouldest enter into covenant with the LORD thy God, and into his oath, which the LORD thy God maketh with thee this day:
11929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That he may establish thee to day for a people unto himself, and that he may be unto thee a God, as he hath said unto thee, and as he hath sworn unto thy fathers, to Abraham, to Isaac, and to Jacob.
11930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Neither with you only do I make this covenant and this oath;
11931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But with him that standeth here with us this day before the LORD our God, and also with him that is not here with us this day:
11932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (For ye know how we have dwelt in the land of Egypt; and how we came through the nations which ye passed by;
11933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And ye have seen their abominations, and their idols, wood and stone, silver and gold, which were among them:)
11934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lest there should be among you man, or woman, or family, or tribe, whose heart turneth away this day from the LORD our God, to go and serve the gods of these nations; lest there should be among you a root that beareth gall and wormwood;
11935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it come to pass, when he heareth the words of this curse, that he bless himself in his heart, saying, I shall have peace, though I walk in the imagination of mine heart, to add drunkenness to thirst:
11936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD will not spare him, but then the anger of the LORD and his jealousy shall smoke against that man, and all the curses that are written in this book shall lie upon him, and the LORD shall blot out his name from under heaven.
11937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD shall separate him unto evil out of all the tribes of Israel, according to all the curses of the covenant that are written in this book of the law:
11938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So that the generation to come of your children that shall rise up after you, and the stranger that shall come from a far land, shall say, when they see the plagues of that land, and the sicknesses which the LORD hath laid upon it;
11939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And that the whole land thereof is brimstone, and salt, and burning, that it is not sown, nor beareth, nor any grass groweth therein, like the overthrow of Sodom, and Gomorrah, Admah, and Zeboim, which the LORD overthrew in his anger, and in his wrath:
11940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Even all nations shall say, Wherefore hath the LORD done thus unto this land? what meaneth the heat of this great anger?
11941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then men shall say, Because they have forsaken the covenant of the LORD God of their fathers, which he made with them when he brought them forth out of the land of Egypt:
11942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For they went and served other gods, and worshipped them, gods whom they knew not, and whom he had not given unto them:
11943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the anger of the LORD was kindled against this land, to bring upon it all the curses that are written in this book:
11944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD rooted them out of their land in anger, and in wrath, and in great indignation, and cast them into another land, as it is this day.
11945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The secret things belong unto the LORD our God: but those things which are revealed belong unto us and to our children for ever, that we may do all the words of this law.
11946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it shall come to pass, when all these things are come upon thee, the blessing and the curse, which I have set before thee, and thou shalt call them to mind among all the nations, whither the LORD thy God hath driven thee,
11947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And shalt return unto the LORD thy God, and shalt obey his voice according to all that I command thee this day, thou and thy children, with all thine heart, and with all thy soul;
11948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That then the LORD thy God will turn thy captivity, and have compassion upon thee, and will return and gather thee from all the nations, whither the LORD thy God hath scattered thee.
11949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If any of thine be driven out unto the outmost parts of heaven, from thence will the LORD thy God gather thee, and from thence will he fetch thee:
11950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD thy God will bring thee into the land which thy fathers possessed, and thou shalt possess it; and he will do thee good, and multiply thee above thy fathers.
11951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD thy God will circumcise thine heart, and the heart of thy seed, to love the LORD thy God with all thine heart, and with all thy soul, that thou mayest live.
11952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD thy God will put all these curses upon thine enemies, and on them that hate thee, which persecuted thee.
11953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And thou shalt return and obey the voice of the LORD, and do all his commandments which I command thee this day.
11954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD thy God will make thee plenteous in every work of thine hand, in the fruit of thy body, and in the fruit of thy cattle, and in the fruit of thy land, for good: for the LORD will again rejoice over thee for good, as he rejoiced over thy fathers:
11955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If thou shalt hearken unto the voice of the LORD thy God, to keep his commandments and his statutes which are written in this book of the law, and if thou turn unto the LORD thy God with all thine heart, and with all thy soul.
11956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For this commandment which I command thee this day, it is not hidden from thee, neither is it far off.
11957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         It is not in heaven, that thou shouldest say, Who shall go up for us to heaven, and bring it unto us, that we may hear it, and do it?
11958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Neither is it beyond the sea, that thou shouldest say, Who shall go over the sea for us, and bring it unto us, that we may hear it, and do it?
11959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the word is very nigh unto thee, in thy mouth, and in thy heart, that thou mayest do it.
11960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       See, I have set before thee this day life and good, and death and evil;
11961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In that I command thee this day to love the LORD thy God, to walk in his ways, and to keep his commandments and his statutes and his judgments, that thou mayest live and multiply: and the LORD thy God shall bless thee in the land whither thou goest to possess it.
11962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But if thine heart turn away, so that thou wilt not hear, but shalt be drawn away, and worship other gods, and serve them;
11963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I denounce unto you this day, that ye shall surely perish, and that ye shall not prolong your days upon the land, whither thou passest over Jordan to go to possess it.
11964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         I call heaven and earth to record this day against you, that I have set before you life and death, blessing and cursing: therefore choose life, that both thou and thy seed may live:
11965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That thou mayest love the LORD thy God, and that thou mayest obey his voice, and that thou mayest cleave unto him: for he is thy life, and the length of thy days: that thou mayest dwell in the land which the LORD sware unto thy fathers, to Abraham, to Isaac, and to Jacob, to give them.
11966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Moses went and spake these words unto all Israel.
11967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto them, I am an hundred and twenty years old this day; I can no more go out and come in: also the LORD hath said unto me, Thou shalt not go over this Jordan.
11968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The LORD thy God, he will go over before thee, and he will destroy these nations from before thee, and thou shalt possess them: and Joshua, he shall go over before thee, as the LORD hath said.
11969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD shall do unto them as he did to Sihon and to Og, kings of the Amorites, and unto the land of them, whom he destroyed.
11970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD shall give them up before your face, that ye may do unto them according unto all the commandments which I have commanded you.
11971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Be strong and of a good courage, fear not, nor be afraid of them: for the LORD thy God, he it is that doth go with thee; he will not fail thee, nor forsake thee.
11972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses called unto Joshua, and said unto him in the sight of all Israel, Be strong and of a good courage: for thou must go with this people unto the land which the LORD hath sworn unto their fathers to give them; and thou shalt cause them to inherit it.
11973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD, he it is that doth go before thee; he will be with thee, he will not fail thee, neither forsake thee: fear not, neither be dismayed.
11974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses wrote this law, and delivered it unto the priests the sons of Levi, which bare the ark of the covenant of the LORD, and unto all the elders of Israel.
11975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses commanded them, saying, At the end of every seven years, in the solemnity of the year of release, in the feast of tabernacles,
11976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When all Israel is come to appear before the LORD thy God in the place which he shall choose, thou shalt read this law before all Israel in their hearing.
11977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Gather the people together, men and women, and children, and thy stranger that is within thy gates, that they may hear, and that they may learn, and fear the LORD your God, and observe to do all the words of this law:
11978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And that their children, which have not known any thing, may hear, and learn to fear the LORD your God, as long as ye live in the land whither ye go over Jordan to possess it.
11979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD said unto Moses, Behold, thy days approach that thou must die: call Joshua, and present yourselves in the tabernacle of the congregation, that I may give him a charge. And Moses and Joshua went, and presented themselves in the tabernacle of the congregation.
11980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD appeared in the tabernacle in a pillar of a cloud: and the pillar of the cloud stood over the door of the tabernacle.
11981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Moses, Behold, thou shalt sleep with thy fathers; and this people will rise up, and go a whoring after the gods of the strangers of the land, whither they go to be among them, and will forsake me, and break my covenant which I have made with them.
11982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then my anger shall be kindled against them in that day, and I will forsake them, and I will hide my face from them, and they shall be devoured, and many evils and troubles shall befall them; so that they will say in that day, Are not these evils come upon us, because our God is not among us?
11983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I will surely hide my face in that day for all the evils which they shall have wrought, in that they are turned unto other gods.
11984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now therefore write ye this song for you, and teach it the children of Israel: put it in their mouths, that this song may be a witness for me against the children of Israel.
11985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For when I shall have brought them into the land which I sware unto their fathers, that floweth with milk and honey; and they shall have eaten and filled themselves, and waxen fat; then will they turn unto other gods, and serve them, and provoke me, and break my covenant.
11986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it shall come to pass, when many evils and troubles are befallen them, that this song shall testify against them as a witness; for it shall not be forgotten out of the mouths of their seed: for I know their imagination which they go about, even now, before I have brought them into the land which I sware.
11987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moses therefore wrote this song the same day, and taught it the children of Israel.
11988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he gave Joshua the son of Nun a charge, and said, Be strong and of a good courage: for thou shalt bring the children of Israel into the land which I sware unto them: and I will be with thee.
11989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Moses had made an end of writing the words of this law in a book, until they were finished,
11990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That Moses commanded the Levites, which bare the ark of the covenant of the LORD, saying,
11991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Take this book of the law, and put it in the side of the ark of the covenant of the LORD your God, that it may be there for a witness against thee.
11992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For I know thy rebellion, and thy stiff neck: behold, while I am yet alive with you this day, ye have been rebellious against the LORD; and how much more after my death?
11993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Gather unto me all the elders of your tribes, and your officers, that I may speak these words in their ears, and call heaven and earth to record against them.
11994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For I know that after my death ye will utterly corrupt yourselves, and turn aside from the way which I have commanded you; and evil will befall you in the latter days; because ye will do evil in the sight of the LORD, to provoke him to anger through the work of your hands.
11995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses spake in the ears of all the congregation of Israel the words of this song, until they were ended.
11996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Give ear, O ye heavens, and I will speak; and hear, O earth, the words of my mouth.
11997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             My doctrine shall drop as the rain, my speech shall distil as the dew, as the small rain upon the tender herb, and as the showers upon the grass:
11998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Because I will publish the name of the LORD: ascribe ye greatness unto our God.
11999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He is the Rock, his work is perfect: for all his ways are judgment: a God of truth and without iniquity, just and right is he.
12000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They have corrupted themselves, their spot is not the spot of his children: they are a perverse and crooked generation.
12001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Do ye thus requite the LORD, O foolish people and unwise? is not he thy father that hath bought thee? hath he not made thee, and established thee?
12002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Remember the days of old, consider the years of many generations: ask thy father, and he will show thee; thy elders, and they will tell thee.
12003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When the Most High divided to the nations their inheritance, when he separated the sons of Adam, he set the bounds of the people according to the number of the children of Israel.
12004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For the LORD's portion is his people; Jacob is the lot of his inheritance.
12005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 He found him in a desert land, and in the waste howling wilderness; he led him about, he instructed him, he kept him as the apple of his eye.
12006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As an eagle stirreth up her nest, fluttereth over her young, spreadeth abroad her wings, taketh them, beareth them on her wings:
12007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the LORD alone did lead him, and there was no strange god with him.
12008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He made him ride on the high places of the earth, that he might eat the increase of the fields; and he made him to suck honey out of the rock, and oil out of the flinty rock;
12009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Butter of kine, and milk of sheep, with fat of lambs, and rams of the breed of Bashan, and goats, with the fat of kidneys of wheat; and thou didst drink the pure blood of the grape.
12010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Jeshurun waxed fat, and kicked: thou art waxen fat, thou art grown thick, thou art covered with fatness; then he forsook God which made him, and lightly esteemed the Rock of his salvation.
12011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They provoked him to jealousy with strange gods, with abominations provoked they him to anger.
12012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They sacrificed unto devils, not to God; to gods whom they knew not, to new gods that came newly up, whom your fathers feared not.
12013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Of the Rock that begat thee thou art unmindful, and hast forgotten God that formed thee.
12014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when the LORD saw it, he abhorred them, because of the provoking of his sons, and of his daughters.
12015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, I will hide my face from them, I will see what their end shall be: for they are a very froward generation, children in whom is no faith.
12016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They have moved me to jealousy with that which is not God; they have provoked me to anger with their vanities: and I will move them to jealousy with those which are not a people; I will provoke them to anger with a foolish nation.
12017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For a fire is kindled in mine anger, and shall burn unto the lowest hell, and shall consume the earth with her increase, and set on fire the foundations of the mountains.
12018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I will heap mischiefs upon them; I will spend mine arrows upon them.
12019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They shall be burnt with hunger, and devoured with burning heat, and with bitter destruction: I will also send the teeth of beasts upon them, with the poison of serpents of the dust.
12020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sword without, and terror within, shall destroy both the young man and the virgin, the suckling also with the man of gray hairs.
12021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I said, I would scatter them into corners, I would make the remembrance of them to cease from among men:
12022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Were it not that I feared the wrath of the enemy, lest their adversaries should behave themselves strangely, and lest they should say, Our hand is high, and the LORD hath not done all this.
12023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For they are a nation void of counsel, neither is there any understanding in them.
12024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  O that they were wise, that they understood this, that they would consider their latter end!
12025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How should one chase a thousand, and two put ten thousand to flight, except their Rock had sold them, and the LORD had shut them up?
12026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For their rock is not as our Rock, even our enemies themselves being judges.
12027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For their vine is of the vine of Sodom, and of the fields of Gomorrah: their grapes are grapes of gall, their clusters are bitter:
12028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Their wine is the poison of dragons, and the cruel venom of asps.
12029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Is not this laid up in store with me, and sealed up among my treasures?
12030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  To me belongeth vengeance and recompence; their foot shall slide in due time: for the day of their calamity is at hand, and the things that shall come upon them make haste.
12031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For the LORD shall judge his people, and repent himself for his servants, when he seeth that their power is gone, and there is none shut up, or left.
12032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he shall say, Where are their gods, their rock in whom they trusted,
12033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Which did eat the fat of their sacrifices, and drank the wine of their drink offerings? let them rise up and help you, and be your protection.
12034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              See now that I, even I, am he, and there is no god with me: I kill, and I make alive; I wound, and I heal: neither is there any that can deliver out of my hand.
12035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For I lift up my hand to heaven, and say, I live for ever.
12036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If I whet my glittering sword, and mine hand take hold on judgment; I will render vengeance to mine enemies, and will reward them that hate me.
12037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           I will make mine arrows drunk with blood, and my sword shall devour flesh; and that with the blood of the slain and of the captives, from the beginning of revenges upon the enemy.
12038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Rejoice, O ye nations, with his people: for he will avenge the blood of his servants, and will render vengeance to his adversaries, and will be merciful unto his land, and to his people.
12039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Moses came and spake all the words of this song in the ears of the people, he, and Hoshea the son of Nun.
12040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses made an end of speaking all these words to all Israel:
12041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said unto them, Set your hearts unto all the words which I testify among you this day, which ye shall command your children to observe to do, all the words of this law.
12042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For it is not a vain thing for you; because it is your life: and through this thing ye shall prolong your days in the land, whither ye go over Jordan to possess it.
12043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD spake unto Moses that selfsame day, saying,
12044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Get thee up into this mountain Abarim, unto mount Nebo, which is in the land of Moab, that is over against Jericho; and behold the land of Canaan, which I give unto the children of Israel for a possession:
12045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And die in the mount whither thou goest up, and be gathered unto thy people; as Aaron thy brother died in mount Hor, and was gathered unto his people:
12046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Because ye trespassed against me among the children of Israel at the waters of MeribahKadesh, in the wilderness of Zin; because ye sanctified me not in the midst of the children of Israel.
12047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Yet thou shalt see the land before thee; but thou shalt not go thither unto the land which I give the children of Israel.
12048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And this is the blessing, wherewith Moses the man of God blessed the children of Israel before his death.
12049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said, The LORD came from Sinai, and rose up from Seir unto them; he shined forth from mount Paran, and he came with ten thousands of saints: from his right hand went a fiery law for them.
12050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yea, he loved the people; all his saints are in thy hand: and they sat down at thy feet; every one shall receive of thy words.
12051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moses commanded us a law, even the inheritance of the congregation of Jacob.
12052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he was king in Jeshurun, when the heads of the people and the tribes of Israel were gathered together.
12053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let Reuben live, and not die; and let not his men be few.
12054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And this is the blessing of Judah: and he said, Hear, LORD, the voice of Judah, and bring him unto his people: let his hands be sufficient for him; and be thou an help to him from his enemies.
12055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And of Levi he said, Let thy Thummim and thy Urim be with thy holy one, whom thou didst prove at Massah, and with whom thou didst strive at the waters of Meribah;
12056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Who said unto his father and to his mother, I have not seen him; neither did he acknowledge his brethren, nor knew his own children: for they have observed thy word, and kept thy covenant.
12057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     They shall teach Jacob thy judgments, and Israel thy law: they shall put incense before thee, and whole burnt sacrifice upon thine altar.
12058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Bless, LORD, his substance, and accept the work of his hands; smite through the loins of them that rise against him, and of them that hate him, that they rise not again.
12059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of Benjamin he said, The beloved of the LORD shall dwell in safety by him; and the Lord shall cover him all the day long, and he shall dwell between his shoulders.
12060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And of Joseph he said, Blessed of the LORD be his land, for the precious things of heaven, for the dew, and for the deep that coucheth beneath,
12061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And for the precious fruits brought forth by the sun, and for the precious things put forth by the moon,
12062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And for the chief things of the ancient mountains, and for the precious things of the lasting hills,
12063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And for the precious things of the earth and fulness thereof, and for the good will of him that dwelt in the bush: let the blessing come upon the head of Joseph, and upon the top of the head of him that was separated from his brethren.
12064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        His glory is like the firstling of his bullock, and his horns are like the horns of unicorns: with them he shall push the people together to the ends of the earth: and they are the ten thousands of Ephraim, and they are the thousands of Manasseh.
12065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And of Zebulun he said, Rejoice, Zebulun, in thy going out; and, Issachar, in thy tents.
12066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         They shall call the people unto the mountain; there they shall offer sacrifices of righteousness: for they shall suck of the abundance of the seas, and of treasures hid in the sand.
12067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And of Gad he said, Blessed be he that enlargeth Gad: he dwelleth as a lion, and teareth the arm with the crown of the head.
12068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he provided the first part for himself, because there, in a portion of the lawgiver, was he seated; and he came with the heads of the people, he executed the justice of the LORD, and his judgments with Israel.
12069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And of Dan he said, Dan is a lion's whelp: he shall leap from Bashan.
12070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And of Naphtali he said, O Naphtali, satisfied with favor, and full with the blessing of the LORD: possess thou the west and the south.
12071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And of Asher he said, Let Asher be blessed with children; let him be acceptable to his brethren, and let him dip his foot in oil.
12072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thy shoes shall be iron and brass; and as thy days, so shall thy strength be.
12073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is none like unto the God of Jeshurun, who rideth upon the heaven in thy help, and in his excellency on the sky.
12074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The eternal God is thy refuge, and underneath are the everlasting arms: and he shall thrust out the enemy from before thee; and shall say, Destroy them.
12075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Israel then shall dwell in safety alone: the fountain of Jacob shall be upon a land of corn and wine; also his heavens shall drop down dew.
12076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Happy art thou, O Israel: who is like unto thee, O people saved by the LORD, the shield of thy help, and who is the sword of thy excellency! and thine enemies shall be found liars unto thee; and thou shalt tread upon their high places.
12077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Moses went up from the plains of Moab unto the mountain of Nebo, to the top of Pisgah, that is over against Jericho. And the LORD showed him all the land of Gilead, unto Dan,
12078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all Naphtali, and the land of Ephraim, and Manasseh, and all the land of Judah, unto the utmost sea,
12079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the south, and the plain of the valley of Jericho, the city of palm trees, unto Zoar.
12080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said unto him, This is the land which I sware unto Abraham, unto Isaac, and unto Jacob, saying, I will give it unto thy seed: I have caused thee to see it with thine eyes, but thou shalt not go over thither.
12081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Moses the servant of the LORD died there in the land of Moab, according to the word of the LORD.
12082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he buried him in a valley in the land of Moab, over against Bethpeor: but no man knoweth of his sepulchre unto this day.
12083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses was an hundred and twenty years old when he died: his eye was not dim, nor his natural force abated.
12084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Israel wept for Moses in the plains of Moab thirty days: so the days of weeping and mourning for Moses were ended.
12085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joshua the son of Nun was full of the spirit of wisdom; for Moses had laid his hands upon him: and the children of Israel hearkened unto him, and did as the LORD commanded Moses.
12086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there arose not a prophet since in Israel like unto Moses, whom the LORD knew face to face,
12087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In all the signs and the wonders, which the LORD sent him to do in the land of Egypt to Pharaoh, and to all his servants, and to all his land,
12088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And in all that mighty hand, and in all the great terror which Moses showed in the sight of all Israel.
12089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now after the death of Moses the servant of the LORD it came to pass, that the LORD spake unto Joshua the son of Nun, Moses' minister, saying,
12090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moses my servant is dead; now therefore arise, go over this Jordan, thou, and all this people, unto the land which I do give to them, even to the children of Israel.
12091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Every place that the sole of your foot shall tread upon, that have I given unto you, as I said unto Moses.
12092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              From the wilderness and this Lebanon even unto the great river, the river Euphrates, all the land of the Hittites, and unto the great sea toward the going down of the sun, shall be your coast.
12093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           There shall not any man be able to stand before thee all the days of thy life: as I was with Moses, so I will be with thee: I will not fail thee, nor forsake thee.
12094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Be strong and of a good courage: for unto this people shalt thou divide for an inheritance the land, which I sware unto their fathers to give them.
12095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Only be thou strong and very courageous, that thou mayest observe to do according to all the law, which Moses my servant commanded thee: turn not from it to the right hand or to the left, that thou mayest prosper whithersoever thou goest.
12096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           This book of the law shall not depart out of thy mouth; but thou shalt meditate therein day and night, that thou mayest observe to do according to all that is written therein: for then thou shalt make thy way prosperous, and then thou shalt have good success.
12097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Have not I commanded thee? Be strong and of a good courage; be not afraid, neither be thou dismayed: for the LORD thy God is with thee whithersoever thou goest.
12098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Joshua commanded the officers of the people, saying,
12099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pass through the host, and command the people, saying, Prepare you victuals; for within three days ye shall pass over this Jordan, to go in to possess the land, which the LORD your God giveth you to possess it.
12100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And to the Reubenites, and to the Gadites, and to half the tribe of Manasseh, spake Joshua, saying,
12101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Remember the word which Moses the servant of the LORD commanded you, saying, The LORD your God hath given you rest, and hath given you this land.
12102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Your wives, your little ones, and your cattle, shall remain in the land which Moses gave you on this side Jordan; but ye shall pass before your brethren armed, all the mighty men of valor, and help them;
12103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Until the LORD have given your brethren rest, as he hath given you, and they also have possessed the land which the LORD your God giveth them: then ye shall return unto the land of your possession, and enjoy it, which Moses the LORD's servant gave you on this side Jordan toward the sunrising.
12104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they answered Joshua, saying, All that thou commandest us we will do, and whithersoever thou sendest us, we will go.
12105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   According as we hearkened unto Moses in all things, so will we hearken unto thee: only the LORD thy God be with thee, as he was with Moses.
12106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Whosoever he be that doth rebel against thy commandment, and will not hearken unto thy words in all that thou commandest him, he shall be put to death: only be strong and of a good courage.
12107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joshua the son of Nun sent out of Shittim two men to spy secretly, saying, Go view the land, even Jericho. And they went, and came into an harlot's house, named Rahab, and lodged there.
12108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it was told the king of Jericho, saying, Behold, there came men in hither to night of the children of Israel to search out the country.
12109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Jericho sent unto Rahab, saying, Bring forth the men that are come to thee, which are entered into thine house: for they be come to search out all the country.
12110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the woman took the two men, and hid them, and said thus, There came men unto me, but I wist not whence they were:
12111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass about the time of shutting of the gate, when it was dark, that the men went out: whither the men went I wot not: pursue after them quickly; for ye shall overtake them.
12112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But she had brought them up to the roof of the house, and hid them with the stalks of flax, which she had laid in order upon the roof.
12113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the men pursued after them the way to Jordan unto the fords: and as soon as they which pursued after them were gone out, they shut the gate.
12114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And before they were laid down, she came up unto them upon the roof;
12115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she said unto the men, I know that the LORD hath given you the land, and that your terror is fallen upon us, and that all the inhabitants of the land faint because of you.
12116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For we have heard how the LORD dried up the water of the Red sea for you, when ye came out of Egypt; and what ye did unto the two kings of the Amorites, that were on the other side Jordan, Sihon and Og, whom ye utterly destroyed.
12117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And as soon as we had heard these things, our hearts did melt, neither did there remain any more courage in any man, because of you: for the LORD your God, he is God in heaven above, and in earth beneath.
12118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now therefore, I pray you, swear unto me by the LORD, since I have showed you kindness, that ye will also show kindness unto my father's house, and give me a true token:
12119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And that ye will save alive my father, and my mother, and my brethren, and my sisters, and all that they have, and deliver our lives from death.
12120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the men answered her, Our life for yours, if ye utter not this our business. And it shall be, when the LORD hath given us the land, that we will deal kindly and truly with thee.
12121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then she let them down by a cord through the window: for her house was upon the town wall, and she dwelt upon the wall.
12122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she said unto them, Get you to the mountain, lest the pursuers meet you; and hide yourselves there three days, until the pursuers be returned: and afterward may ye go your way.
12123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the men said unto her, We will be blameless of this thine oath which thou hast made us swear.
12124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, when we come into the land, thou shalt bind this line of scarlet thread in the window which thou didst let us down by: and thou shalt bring thy father, and thy mother, and thy brethren, and all thy father's household, home unto thee.
12125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it shall be, that whosoever shall go out of the doors of thy house into the street, his blood shall be upon his head, and we will be guiltless: and whosoever shall be with thee in the house, his blood shall be on our head, if any hand be upon him.
12126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if thou utter this our business, then we will be quit of thine oath which thou hast made us to swear.
12127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she said, According unto your words, so be it. And she sent them away, and they departed: and she bound the scarlet line in the window.
12128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they went, and came unto the mountain, and abode there three days, until the pursuers were returned: and the pursuers sought them throughout all the way, but found them not.
12129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the two men returned, and descended from the mountain, and passed over, and came to Joshua the son of Nun, and told him all things that befell them:
12130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they said unto Joshua, Truly the LORD hath delivered into our hands all the land; for even all the inhabitants of the country do faint because of us.
12131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joshua rose early in the morning; and they removed from Shittim, and came to Jordan, he and all the children of Israel, and lodged there before they passed over.
12132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass after three days, that the officers went through the host;
12133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they commanded the people, saying, When ye see the ark of the covenant of the LORD your God, and the priests the Levites bearing it, then ye shall remove from your place, and go after it.
12134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet there shall be a space between you and it, about two thousand cubits by measure: come not near unto it, that ye may know the way by which ye must go: for ye have not passed this way heretofore.
12135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joshua said unto the people, Sanctify yourselves: for to morrow the LORD will do wonders among you.
12136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua spake unto the priests, saying, Take up the ark of the covenant, and pass over before the people. And they took up the ark of the covenant, and went before the people.
12137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said unto Joshua, This day will I begin to magnify thee in the sight of all Israel, that they may know that, as I was with Moses, so I will be with thee.
12138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And thou shalt command the priests that bear the ark of the covenant, saying, When ye are come to the brink of the water of Jordan, ye shall stand still in Jordan.
12139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua said unto the children of Israel, Come hither, and hear the words of the LORD your God.
12140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joshua said, Hereby ye shall know that the living God is among you, and that he will without fail drive out from before you the Canaanites, and the Hittites, and the Hivites, and the Perizzites, and the Girgashites, and the Amorites, and the Jebusites.
12141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, the ark of the covenant of the LORD of all the earth passeth over before you into Jordan.
12142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now therefore take you twelve men out of the tribes of Israel, out of every tribe a man.
12143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it shall come to pass, as soon as the soles of the feet of the priests that bear the ark of the LORD, the LORD of all the earth, shall rest in the waters of Jordan, that the waters of Jordan shall be cut off from the waters that come down from above; and they shall stand upon an heap.
12144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when the people removed from their tents, to pass over Jordan, and the priests bearing the ark of the covenant before the people;
12145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And as they that bare the ark were come unto Jordan, and the feet of the priests that bare the ark were dipped in the brim of the water, (for Jordan overfloweth all his banks all the time of harvest,)
12146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That the waters which came down from above stood and rose up upon an heap very far from the city Adam, that is beside Zaretan: and those that came down toward the sea of the plain, even the salt sea, failed, and were cut off: and the people passed over right against Jericho.
12147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the priests that bare the ark of the covenant of the LORD stood firm on dry ground in the midst of Jordan, and all the Israelites passed over on dry ground, until all the people were passed clean over Jordan.
12148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when all the people were clean passed over Jordan, that the LORD spake unto Joshua, saying,
12149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Take you twelve men out of the people, out of every tribe a man,
12150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And command ye them, saying, Take you hence out of the midst of Jordan, out of the place where the priests' feet stood firm, twelve stones, and ye shall carry them over with you, and leave them in the lodging place, where ye shall lodge this night.
12151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Joshua called the twelve men, whom he had prepared of the children of Israel, out of every tribe a man:
12152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joshua said unto them, Pass over before the ark of the LORD your God into the midst of Jordan, and take you up every man of you a stone upon his shoulder, according unto the number of the tribes of the children of Israel:
12153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That this may be a sign among you, that when your children ask their fathers in time to come, saying, What mean ye by these stones?
12154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then ye shall answer them, That the waters of Jordan were cut off before the ark of the covenant of the LORD; when it passed over Jordan, the waters of Jordan were cut off: and these stones shall be for a memorial unto the children of Israel for ever.
12155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel did so as Joshua commanded, and took up twelve stones out of the midst of Jordan, as the LORD spake unto Joshua, according to the number of the tribes of the children of Israel, and carried them over with them unto the place where they lodged, and laid them down there.
12156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joshua set up twelve stones in the midst of Jordan, in the place where the feet of the priests which bare the ark of the covenant stood: and they are there unto this day.
12157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For the priests which bare the ark stood in the midst of Jordan, until everything was finished that the LORD commanded Joshua to speak unto the people, according to all that Moses commanded Joshua: and the people hasted and passed over.
12158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when all the people were clean passed over, that the ark of the LORD passed over, and the priests, in the presence of the people.
12159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Reuben, and the children of Gad, and half the tribe of Manasseh, passed over armed before the children of Israel, as Moses spake unto them:
12160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About forty thousand prepared for war passed over before the LORD unto battle, to the plains of Jericho.
12161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On that day the LORD magnified Joshua in the sight of all Israel; and they feared him, as they feared Moses, all the days of his life.
12162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD spake unto Joshua, saying,
12163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Command the priests that bear the ark of the testimony, that they come up out of Jordan.
12164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joshua therefore commanded the priests, saying, Come ye up out of Jordan.
12165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when the priests that bare the ark of the covenant of the LORD were come up out of the midst of Jordan, and the soles of the priests' feet were lifted up unto the dry land, that the waters of Jordan returned unto their place, and flowed over all his banks, as they did before.
12166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the people came up out of Jordan on the tenth day of the first month, and encamped in Gilgal, in the east border of Jericho.
12167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And those twelve stones, which they took out of Jordan, did Joshua pitch in Gilgal.
12168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he spake unto the children of Israel, saying, When your children shall ask their fathers in time to come, saying, What mean these stones?
12169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then ye shall let your children know, saying, Israel came over this Jordan on dry land.
12170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For the LORD your God dried up the waters of Jordan from before you, until ye were passed over, as the LORD your God did to the Red sea, which he dried up from before us, until we were gone over:
12171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That all the people of the earth might know the hand of the LORD, that it is mighty: that ye might fear the LORD your God for ever.
12172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when all the kings of the Amorites, which were on the side of Jordan westward, and all the kings of the Canaanites, which were by the sea, heard that the LORD had dried up the waters of Jordan from before the children of Israel, until we were passed over, that their heart melted, neither was there spirit in them any more, because of the children of Israel.
12173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  At that time the LORD said unto Joshua, Make thee sharp knives, and circumcise again the children of Israel the second time.
12174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joshua made him sharp knives, and circumcised the children of Israel at the hill of the foreskins.
12175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And this is the cause why Joshua did circumcise: All the people that came out of Egypt, that were males, even all the men of war, died in the wilderness by the way, after they came out of Egypt.
12176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now all the people that came out were circumcised: but all the people that were born in the wilderness by the way as they came forth out of Egypt, them they had not circumcised.
12177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the children of Israel walked forty years in the wilderness, till all the people that were men of war, which came out of Egypt, were consumed, because they obeyed not the voice of the LORD: unto whom the LORD sware that he would not show them the land, which the LORD sware unto their fathers that he would give us, a land that floweth with milk and honey.
12178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And their children, whom he raised up in their stead, them Joshua circumcised: for they were uncircumcised, because they had not circumcised them by the way.
12179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when they had done circumcising all the people, that they abode in their places in the camp, till they were whole.
12180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Joshua, This day have I rolled away the reproach of Egypt from off you. Wherefore the name of the place is called Gilgal unto this day.
12181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel encamped in Gilgal, and kept the passover on the fourteenth day of the month at even in the plains of Jericho.
12182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they did eat of the old corn of the land on the morrow after the passover, unleavened cakes, and parched corn in the selfsame day.
12183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the manna ceased on the morrow after they had eaten of the old corn of the land; neither had the children of Israel manna any more; but they did eat of the fruit of the land of Canaan that year.
12184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when Joshua was by Jericho, that he lifted up his eyes and looked, and, behold, there stood a man over against him with his sword drawn in his hand: and Joshua went unto him, and said unto him, Art thou for us, or for our adversaries?
12185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Nay; but as captain of the host of the LORD am I now come. And Joshua fell on his face to the earth, and did worship, and said unto him, What saith my Lord unto his servant?
12186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the captain of the LORD's host said unto Joshua, Loose thy shoe from off thy foot; for the place whereon thou standest is holy. And Joshua did so.
12187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now Jericho was straitly shut up because of the children of Israel: none went out, and none came in.
12188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said unto Joshua, See, I have given into thine hand Jericho, and the king thereof, and the mighty men of valor.
12189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ye shall compass the city, all ye men of war, and go round about the city once. Thus shalt thou do six days.
12190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And seven priests shall bear before the ark seven trumpets of rams' horns: and the seventh day ye shall compass the city seven times, and the priests shall blow with the trumpets.
12191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it shall come to pass, that when they make a long blast with the ram's horn, and when ye hear the sound of the trumpet, all the people shall shout with a great shout; and the wall of the city shall fall down flat, and the people shall ascend up every man straight before him.
12192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joshua the son of Nun called the priests, and said unto them, Take up the ark of the covenant, and let seven priests bear seven trumpets of rams' horns before the ark of the LORD.
12193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto the people, Pass on, and compass the city, and let him that is armed pass on before the ark of the LORD.
12194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when Joshua had spoken unto the people, that the seven priests bearing the seven trumpets of rams' horns passed on before the LORD, and blew with the trumpets: and the ark of the covenant of the LORD followed them.
12195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the armed men went before the priests that blew with the trumpets, and the rearward came after the ark, the priests going on, and blowing with the trumpets.
12196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joshua had commanded the people, saying, Ye shall not shout, nor make any noise with your voice, neither shall any word proceed out of your mouth, until the day I bid you shout; then shall ye shout.
12197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the ark of the LORD compassed the city, going about it once: and they came into the camp, and lodged in the camp.
12198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua rose early in the morning, and the priests took up the ark of the LORD.
12199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And seven priests bearing seven trumpets of rams' horns before the ark of the LORD went on continually, and blew with the trumpets: and the armed men went before them; but the rearward came after the ark of the LORD, the priests going on, and blowing with the trumpets.
12200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the second day they compassed the city once, and returned into the camp: so they did six days.
12201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass on the seventh day, that they rose early about the dawning of the day, and compassed the city after the same manner seven times: only on that day they compassed the city seven times.
12202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass at the seventh time, when the priests blew with the trumpets, Joshua said unto the people, Shout; for the LORD hath given you the city.
12203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the city shall be accursed, even it, and all that are therein, to the LORD: only Rahab the harlot shall live, she and all that are with her in the house, because she hid the messengers that we sent.
12204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ye, in any wise keep yourselves from the accursed thing, lest ye make yourselves accursed, when ye take of the accursed thing, and make the camp of Israel a curse, and trouble it.
12205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But all the silver, and gold, and vessels of brass and iron, are consecrated unto the LORD: they shall come into the treasury of the LORD.
12206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So the people shouted when the priests blew with the trumpets: and it came to pass, when the people heard the sound of the trumpet, and the people shouted with a great shout, that the wall fell down flat, so that the people went up into the city, every man straight before him, and they took the city.
12207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they utterly destroyed all that was in the city, both man and woman, young and old, and ox, and sheep, and ass, with the edge of the sword.
12208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But Joshua had said unto the two men that had spied out the country, Go into the harlot's house, and bring out thence the woman, and all that she hath, as ye sware unto her.
12209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the young men that were spies went in, and brought out Rahab, and her father, and her mother, and her brethren, and all that she had; and they brought out all her kindred, and left them without the camp of Israel.
12210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they burnt the city with fire, and all that was therein: only the silver, and the gold, and the vessels of brass and of iron, they put into the treasury of the house of the LORD.
12211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joshua saved Rahab the harlot alive, and her father's household, and all that she had; and she dwelleth in Israel even unto this day; because she hid the messengers, which Joshua sent to spy out Jericho.
12212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joshua adjured them at that time, saying, Cursed be the man before the LORD, that riseth up and buildeth this city Jericho: he shall lay the foundation thereof in his firstborn, and in his youngest son shall he set up the gates of it.
12213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So the LORD was with Joshua; and his fame was noised throughout all the country.
12214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But the children of Israel committed a trespass in the accursed thing: for Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, took of the accursed thing: and the anger of the LORD was kindled against the children of Israel.
12215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua sent men from Jericho to Ai, which is beside Bethaven, on the east of Bethel, and spake unto them, saying, Go up and view the country. And the men went up and viewed Ai.
12216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they returned to Joshua, and said unto him, Let not all the people go up; but let about two or three thousand men go up and smite Ai; and make not all the people to labor thither; for they are but few.
12217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So there went up thither of the people about three thousand men: and they fled before the men of Ai.
12218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the men of Ai smote of them about thirty and six men: for they chased them from before the gate even unto Shebarim, and smote them in the going down: wherefore the hearts of the people melted, and became as water.
12219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Joshua rent his clothes, and fell to the earth upon his face before the ark of the LORD until the eventide, he and the elders of Israel, and put dust upon their heads.
12220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joshua said, Alas, O LORD God, wherefore hast thou at all brought this people over Jordan, to deliver us into the hand of the Amorites, to destroy us? would to God we had been content, and dwelt on the other side Jordan!
12221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               O LORD, what shall I say, when Israel turneth their backs before their enemies!
12222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the Canaanites and all the inhabitants of the land shall hear of it, and shall environ us round, and cut off our name from the earth: and what wilt thou do unto thy great name?
12223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Joshua, Get thee up; wherefore liest thou thus upon thy face?
12224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Israel hath sinned, and they have also transgressed my covenant which I commanded them: for they have even taken of the accursed thing, and have also stolen, and dissembled also, and they have put it even among their own stuff.
12225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore the children of Israel could not stand before their enemies, but turned their backs before their enemies, because they were accursed: neither will I be with you any more, except ye destroy the accursed from among you.
12226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Up, sanctify the people, and say, Sanctify yourselves against to morrow: for thus saith the LORD God of Israel, There is an accursed thing in the midst of thee, O Israel: thou canst not stand before thine enemies, until ye take away the accursed thing from among you.
12227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the morning therefore ye shall be brought according to your tribes: and it shall be, that the tribe which the LORD taketh shall come according to the families thereof; and the family which the LORD shall take shall come by households; and the household which the LORD shall take shall come man by man.
12228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it shall be, that he that is taken with the accursed thing shall be burnt with fire, he and all that he hath: because he hath transgressed the covenant of the LORD, and because he hath wrought folly in Israel.
12229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So Joshua rose up early in the morning, and brought Israel by their tribes; and the tribe of Judah was taken:
12230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he brought the family of Judah; and he took the family of the Zarhites: and he brought the family of the Zarhites man by man; and Zabdi was taken:
12231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he brought his household man by man; and Achan, the son of Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, was taken.
12232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joshua said unto Achan, My son, give, I pray thee, glory to the LORD God of Israel, and make confession unto him; and tell me now what thou hast done; hide it not from me.
12233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Achan answered Joshua, and said, Indeed I have sinned against the LORD God of Israel, and thus and thus have I done:
12234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When I saw among the spoils a goodly Babylonish garment, and two hundred shekels of silver, and a wedge of gold of fifty shekels weight, then I coveted them, and took them; and, behold, they are hid in the earth in the midst of my tent, and the silver under it.
12235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Joshua sent messengers, and they ran unto the tent; and, behold, it was hid in his tent, and the silver under it.
12236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they took them out of the midst of the tent, and brought them unto Joshua, and unto all the children of Israel, and laid them out before the LORD.
12237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joshua, and all Israel with him, took Achan the son of Zerah, and the silver, and the garment, and the wedge of gold, and his sons, and his daughters, and his oxen, and his asses, and his sheep, and his tent, and all that he had: and they brought them unto the valley of Achor.
12238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Joshua said, Why hast thou troubled us? the LORD shall trouble thee this day. And all Israel stoned him with stones, and burned them with fire, after they had stoned them with stones.
12239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they raised over him a great heap of stones unto this day. So the LORD turned from the fierceness of his anger. Wherefore the name of that place was called, The valley of Achor, unto this day.
12240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD said unto Joshua, Fear not, neither be thou dismayed: take all the people of war with thee, and arise, go up to Ai: see, I have given into thy hand the king of Ai, and his people, and his city, and his land:
12241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt do to Ai and her king as thou didst unto Jericho and her king: only the spoil thereof, and the cattle thereof, shall ye take for a prey unto yourselves: lay thee an ambush for the city behind it.
12242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Joshua arose, and all the people of war, to go up against Ai: and Joshua chose out thirty thousand mighty men of valor, and sent them away by night.
12243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he commanded them, saying, Behold, ye shall lie in wait against the city, even behind the city: go not very far from the city, but be ye all ready:
12244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I, and all the people that are with me, will approach unto the city: and it shall come to pass, when they come out against us, as at the first, that we will flee before them,
12245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         (For they will come out after us) till we have drawn them from the city; for they will say, They flee before us, as at the first: therefore we will flee before them.
12246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then ye shall rise up from the ambush, and seize upon the city: for the LORD your God will deliver it into your hand.
12247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it shall be, when ye have taken the city, that ye shall set the city on fire: according to the commandment of the LORD shall ye do. See, I have commanded you.
12248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joshua therefore sent them forth: and they went to lie in ambush, and abode between Bethel and Ai, on the west side of Ai: but Joshua lodged that night among the people.
12249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua rose up early in the morning, and numbered the people, and went up, he and the elders of Israel, before the people to Ai.
12250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the people, even the people of war that were with him, went up, and drew nigh, and came before the city, and pitched on the north side of Ai: now there was a valley between them and Ai.
12251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took about five thousand men, and set them to lie in ambush between Bethel and Ai, on the west side of the city.
12252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when they had set the people, even all the host that was on the north of the city, and their liers in wait on the west of the city, Joshua went that night into the midst of the valley.
12253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when the king of Ai saw it, that they hasted and rose up early, and the men of the city went out against Israel to battle, he and all his people, at a time appointed, before the plain; but he wist not that there were liers in ambush against him behind the city.
12254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joshua and all Israel made as if they were beaten before them, and fled by the way of the wilderness.
12255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And all the people that were in Ai were called together to pursue after them: and they pursued after Joshua, and were drawn away from the city.
12256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there was not a man left in Ai or Bethel, that went not out after Israel: and they left the city open, and pursued after Israel.
12257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Joshua, Stretch out the spear that is in thy hand toward Ai; for I will give it into thine hand. And Joshua stretched out the spear that he had in his hand toward the city.
12258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the ambush arose quickly out of their place, and they ran as soon as he had stretched out his hand: and they entered into the city, and took it, and hasted and set the city on fire.
12259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the men of Ai looked behind them, they saw, and, behold, the smoke of the city ascended up to heaven, and they had no power to flee this way or that way: and the people that fled to the wilderness turned back upon the pursuers.
12260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Joshua and all Israel saw that the ambush had taken the city, and that the smoke of the city ascended, then they turned again, and slew the men of Ai.
12261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the other issued out of the city against them; so they were in the midst of Israel, some on this side, and some on that side: and they smote them, so that they let none of them remain or escape.
12262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the king of Ai they took alive, and brought him to Joshua.
12263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, when Israel had made an end of slaying all the inhabitants of Ai in the field, in the wilderness wherein they chased them, and when they were all fallen on the edge of the sword, until they were consumed, that all the Israelites returned unto Ai, and smote it with the edge of the sword.
12264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And so it was, that all that fell that day, both of men and women, were twelve thousand, even all the men of Ai.
12265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For Joshua drew not his hand back, wherewith he stretched out the spear, until he had utterly destroyed all the inhabitants of Ai.
12266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Only the cattle and the spoil of that city Israel took for a prey unto themselves, according unto the word of the LORD which he commanded Joshua.
12267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joshua burnt Ai, and made it an heap for ever, even a desolation unto this day.
12268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king of Ai he hanged on a tree until eventide: and as soon as the sun was down, Joshua commanded that they should take his carcass down from the tree, and cast it at the entering of the gate of the city, and raise thereon a great heap of stones, that remaineth unto this day.
12269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Joshua built an altar unto the LORD God of Israel in mount Ebal,
12270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               As Moses the servant of the LORD commanded the children of Israel, as it is written in the book of the law of Moses, an altar of whole stones, over which no man hath lift up any iron: and they offered thereon burnt offerings unto the LORD, and sacrificed peace offerings.
12271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he wrote there upon the stones a copy of the law of Moses, which he wrote in the presence of the children of Israel.
12272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all Israel, and their elders, and officers, and their judges, stood on this side the ark and on that side before the priests the Levites, which bare the ark of the covenant of the LORD, as well the stranger, as he that was born among them; half of them over against mount Gerizim, and half of them over against mount Ebal; as Moses the servant of the LORD had commanded before, that they should bless the people of Israel.
12273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And afterward he read all the words of the law, the blessings and cursings, according to all that is written in the book of the law.
12274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There was not a word of all that Moses commanded, which Joshua read not before all the congregation of Israel, with the women, and the little ones, and the strangers that were conversant among them.
12275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when all the kings which were on this side Jordan, in the hills, and in the valleys, and in all the coasts of the great sea over against Lebanon, the Hittite, and the Amorite, the Canaanite, the Perizzite, the Hivite, and the Jebusite, heard thereof;
12276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That they gathered themselves together, to fight with Joshua and with Israel, with one accord.
12277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when the inhabitants of Gibeon heard what Joshua had done unto Jericho and to Ai,
12278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They did work wilily, and went and made as if they had been ambassadors, and took old sacks upon their asses, and wine bottles, old, and rent, and bound up;
12279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And old shoes and clouted upon their feet, and old garments upon them; and all the bread of their provision was dry and mouldy.
12280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they went to Joshua unto the camp at Gilgal, and said unto him, and to the men of Israel, We be come from a far country: now therefore make ye a league with us.
12281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the men of Israel said unto the Hivites, Peradventure ye dwell among us; and how shall we make a league with you?
12282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they said unto Joshua, We are thy servants. And Joshua said unto them, Who are ye? and from whence come ye?
12283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they said unto him, From a very far country thy servants are come because of the name of the LORD thy God: for we have heard the fame of him, and all that he did in Egypt,
12284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all that he did to the two kings of the Amorites, that were beyond Jordan, to Sihon king of Heshbon, and to Og king of Bashan, which was at Ashtaroth.
12285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wherefore our elders and all the inhabitants of our country spake to us, saying, Take victuals with you for the journey, and go to meet them, and say unto them, We are your servants: therefore now make ye a league with us.
12286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         This our bread we took hot for our provision out of our houses on the day we came forth to go unto you; but now, behold, it is dry, and it is mouldy:
12287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And these bottles of wine, which we filled, were new; and, behold, they be rent: and these our garments and our shoes are become old by reason of the very long journey.
12288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the men took of their victuals, and asked not counsel at the mouth of the LORD.
12289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua made peace with them, and made a league with them, to let them live: and the princes of the congregation sware unto them.
12290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass at the end of three days after they had made a league with them, that they heard that they were their neighbors, and that they dwelt among them.
12291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Israel journeyed, and came unto their cities on the third day. Now their cities were Gibeon, and Chephirah, and Beeroth, and Kirjathjearim.
12292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel smote them not, because the princes of the congregation had sworn unto them by the LORD God of Israel. And all the congregation murmured against the princes.
12293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But all the princes said unto all the congregation, We have sworn unto them by the LORD God of Israel: now therefore we may not touch them.
12294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This we will do to them; we will even let them live, lest wrath be upon us, because of the oath which we sware unto them.
12295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the princes said unto them, Let them live; but let them be hewers of wood and drawers of water unto all the congregation; as the princes had promised them.
12296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua called for them, and he spake unto them, saying, Wherefore have ye beguiled us, saying, We are very far from you; when ye dwell among us?
12297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now therefore ye are cursed, and there shall none of you be freed from being bondmen, and hewers of wood and drawers of water for the house of my God.
12298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they answered Joshua, and said, Because it was certainly told thy servants, how that the LORD thy God commanded his servant Moses to give you all the land, and to destroy all the inhabitants of the land from before you, therefore we were sore afraid of our lives because of you, and have done this thing.
12299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And now, behold, we are in thine hand: as it seemeth good and right unto thee to do unto us, do.
12300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And so did he unto them, and delivered them out of the hand of the children of Israel, that they slew them not.
12301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joshua made them that day hewers of wood and drawers of water for the congregation, and for the altar of the LORD, even unto this day, in the place which he should choose.
12302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now it came to pass, when Adonizedec king of Jerusalem had heard how Joshua had taken Ai, and had utterly destroyed it; as he had done to Jericho and her king, so he had done to Ai and her king; and how the inhabitants of Gibeon had made peace with Israel, and were among them;
12303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That they feared greatly, because Gibeon was a great city, as one of the royal cities, and because it was greater than Ai, and all the men thereof were mighty.
12304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wherefore Adonizedec king of Jerusalem, sent unto Hoham king of Hebron, and unto Piram king of Jarmuth, and unto Japhia king of Lachish, and unto Debir king of Eglon, saying,
12305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Come up unto me, and help me, that we may smite Gibeon: for it hath made peace with Joshua and with the children of Israel.
12306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore the five kings of the Amorites, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, the king of Eglon, gathered themselves together, and went up, they and all their hosts, and encamped before Gibeon, and made war against it.
12307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the men of Gibeon sent unto Joshua to the camp to Gilgal, saying, Slack not thy hand from thy servants; come up to us quickly, and save us, and help us: for all the kings of the Amorites that dwell in the mountains are gathered together against us.
12308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Joshua ascended from Gilgal, he, and all the people of war with him, and all the mighty men of valor.
12309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD said unto Joshua, Fear them not: for I have delivered them into thine hand; there shall not a man of them stand before thee.
12310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Joshua therefore came unto them suddenly, and went up from Gilgal all night.
12311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD discomfited them before Israel, and slew them with a great slaughter at Gibeon, and chased them along the way that goeth up to Bethhoron, and smote them to Azekah, and unto Makkedah.
12312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, as they fled from before Israel, and were in the going down to Bethhoron, that the LORD cast down great stones from heaven upon them unto Azekah, and they died: they were more which died with hailstones than they whom the children of Israel slew with the sword.
12313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then spake Joshua to the LORD in the day when the LORD delivered up the Amorites before the children of Israel, and he said in the sight of Israel, Sun, stand thou still upon Gibeon; and thou, Moon, in the valley of Ajalon.
12314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sun stood still, and the moon stayed, until the people had avenged themselves upon their enemies. Is not this written in the book of Jasher? So the sun stood still in the midst of heaven, and hasted not to go down about a whole day.
12315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there was no day like that before it or after it, that the LORD hearkened unto the voice of a man: for the LORD fought for Israel.
12316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joshua returned, and all Israel with him, unto the camp to Gilgal.
12317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But these five kings fled, and hid themselves in a cave at Makkedah.
12318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it was told Joshua, saying, The five kings are found hid in a cave at Makkedah.
12319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joshua said, Roll great stones upon the mouth of the cave, and set men by it for to keep them:
12320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And stay ye not, but pursue after your enemies, and smite the hindmost of them; suffer them not to enter into their cities: for the LORD your God hath delivered them into your hand.
12321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when Joshua and the children of Israel had made an end of slaying them with a very great slaughter, till they were consumed, that the rest which remained of them entered into fenced cities.
12322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the people returned to the camp to Joshua at Makkedah in peace: none moved his tongue against any of the children of Israel.
12323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then said Joshua, Open the mouth of the cave, and bring out those five kings unto me out of the cave.
12324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they did so, and brought forth those five kings unto him out of the cave, the king of Jerusalem, the king of Hebron, the king of Jarmuth, the king of Lachish, and the king of Eglon.
12325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when they brought out those kings unto Joshua, that Joshua called for all the men of Israel, and said unto the captains of the men of war which went with him, Come near, put your feet upon the necks of these kings. And they came near, and put their feet upon the necks of them.
12326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joshua said unto them, Fear not, nor be dismayed, be strong and of good courage: for thus shall the LORD do to all your enemies against whom ye fight.
12327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And afterward Joshua smote them, and slew them, and hanged them on five trees: and they were hanging upon the trees until the evening.
12328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass at the time of the going down of the sun, that Joshua commanded, and they took them down off the trees, and cast them into the cave wherein they had been hid, and laid great stones in the cave's mouth, which remain until this very day.
12329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And that day Joshua took Makkedah, and smote it with the edge of the sword, and the king thereof he utterly destroyed, them, and all the souls that were therein; he let none remain: and he did to the king of Makkedah as he did unto the king of Jericho.
12330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Joshua passed from Makkedah, and all Israel with him, unto Libnah, and fought against Libnah:
12331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD delivered it also, and the king thereof, into the hand of Israel; and he smote it with the edge of the sword, and all the souls that were therein; he let none remain in it; but did unto the king thereof as he did unto the king of Jericho.
12332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joshua passed from Libnah, and all Israel with him, unto Lachish, and encamped against it, and fought against it:
12333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD delivered Lachish into the hand of Israel, which took it on the second day, and smote it with the edge of the sword, and all the souls that were therein, according to all that he had done to Libnah.
12334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Horam king of Gezer came up to help Lachish; and Joshua smote him and his people, until he had left him none remaining.
12335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And from Lachish Joshua passed unto Eglon, and all Israel with him; and they encamped against it, and fought against it:
12336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they took it on that day, and smote it with the edge of the sword, and all the souls that were therein he utterly destroyed that day, according to all that he had done to Lachish.
12337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joshua went up from Eglon, and all Israel with him, unto Hebron; and they fought against it:
12338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they took it, and smote it with the edge of the sword, and the king thereof, and all the cities thereof, and all the souls that were therein; he left none remaining, according to all that he had done to Eglon; but destroyed it utterly, and all the souls that were therein.
12339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joshua returned, and all Israel with him, to Debir; and fought against it:
12340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took it, and the king thereof, and all the cities thereof; and they smote them with the edge of the sword, and utterly destroyed all the souls that were therein; he left none remaining: as he had done to Hebron, so he did to Debir, and to the king thereof; as he had done also to Libnah, and to her king.
12341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Joshua smote all the country of the hills, and of the south, and of the vale, and of the springs, and all their kings: he left none remaining, but utterly destroyed all that breathed, as the LORD God of Israel commanded.
12342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joshua smote them from Kadeshbarnea even unto Gaza, and all the country of Goshen, even unto Gibeon.
12343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all these kings and their land did Joshua take at one time, because the LORD God of Israel fought for Israel.
12344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joshua returned, and all Israel with him, unto the camp to Gilgal.
12345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Jabin king of Hazor had heard those things, that he sent to Jobab king of Madon, and to the king of Shimron, and to the king of Achshaph,
12346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And to the kings that were on the north of the mountains, and of the plains south of Chinneroth, and in the valley, and in the borders of Dor on the west,
12347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And to the Canaanite on the east and on the west, and to the Amorite, and the Hittite, and the Perizzite, and the Jebusite in the mountains, and to the Hivite under Hermon in the land of Mizpeh.
12348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they went out, they and all their hosts with them, much people, even as the sand that is upon the sea shore in multitude, with horses and chariots very many.
12349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when all these kings were met together, they came and pitched together at the waters of Merom, to fight against Israel.
12350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto Joshua, Be not afraid because of them: for to morrow about this time will I deliver them up all slain before Israel: thou shalt hough their horses, and burn their chariots with fire.
12351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Joshua came, and all the people of war with him, against them by the waters of Merom suddenly; and they fell upon them.
12352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD delivered them into the hand of Israel, who smote them, and chased them unto great Zidon, and unto Misrephothmaim, and unto the valley of Mizpeh eastward; and they smote them, until they left them none remaining.
12353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Joshua did unto them as the LORD bade him: he houghed their horses, and burnt their chariots with fire.
12354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joshua at that time turned back, and took Hazor, and smote the king thereof with the sword: for Hazor beforetime was the head of all those kingdoms.
12355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they smote all the souls that were therein with the edge of the sword, utterly destroying them: there was not any left to breathe: and he burnt Hazor with fire.
12356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the cities of those kings, and all the kings of them, did Joshua take, and smote them with the edge of the sword, and he utterly destroyed them, as Moses the servant of the LORD commanded.
12357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But as for the cities that stood still in their strength, Israel burned none of them, save Hazor only; that did Joshua burn.
12358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the spoil of these cities, and the cattle, the children of Israel took for a prey unto themselves; but every man they smote with the edge of the sword, until they had destroyed them, neither left they any to breathe.
12359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         As the LORD commanded Moses his servant, so did Moses command Joshua, and so did Joshua; he left nothing undone of all that the LORD commanded Moses.
12360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Joshua took all that land, the hills, and all the south country, and all the land of Goshen, and the valley, and the plain, and the mountain of Israel, and the valley of the same;
12361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Even from the mount Halak, that goeth up to Seir, even unto Baalgad in the valley of Lebanon under mount Hermon: and all their kings he took, and smote them, and slew them.
12362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Joshua made war a long time with all those kings.
12363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  There was not a city that made peace with the children of Israel, save the Hivites the inhabitants of Gibeon: all other they took in battle.
12364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For it was of the LORD to harden their hearts, that they should come against Israel in battle, that he might destroy them utterly, and that they might have no favor, but that he might destroy them, as the LORD commanded Moses.
12365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And at that time came Joshua, and cut off the Anakims from the mountains, from Hebron, from Debir, from Anab, and from all the mountains of Judah, and from all the mountains of Israel: Joshua destroyed them utterly with their cities.
12366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               There was none of the Anakims left in the land of the children of Israel: only in Gaza, in Gath, and in Ashdod, there remained.
12367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Joshua took the whole land, according to all that the LORD said unto Moses; and Joshua gave it for an inheritance unto Israel according to their divisions by their tribes. And the land rested from war.
12368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now these are the kings of the land, which the children of Israel smote, and possessed their land on the other side Jordan toward the rising of the sun, from the river Arnon unto mount Hermon, and all the plain on the east:
12369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Sihon king of the Amorites, who dwelt in Heshbon, and ruled from Aroer, which is upon the bank of the river Arnon, and from the middle of the river, and from half Gilead, even unto the river Jabbok, which is the border of the children of Ammon;
12370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And from the plain to the sea of Chinneroth on the east, and unto the sea of the plain, even the salt sea on the east, the way to Bethjeshimoth; and from the south, under Ashdothpisgah:
12371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the coast of Og king of Bashan, which was of the remnant of the giants, that dwelt at Ashtaroth and at Edrei,
12372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And reigned in mount Hermon, and in Salcah, and in all Bashan, unto the border of the Geshurites and the Maachathites, and half Gilead, the border of Sihon king of Heshbon.
12373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Them did Moses the servant of the LORD and the children of Israel smite: and Moses the servant of the LORD gave it for a possession unto the Reubenites, and the Gadites, and the half tribe of Manasseh.
12374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And these are the kings of the country which Joshua and the children of Israel smote on this side Jordan on the west, from Baalgad in the valley of Lebanon even unto the mount Halak, that goeth up to Seir; which Joshua gave unto the tribes of Israel for a possession according to their divisions;
12375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the mountains, and in the valleys, and in the plains, and in the springs, and in the wilderness, and in the south country; the Hittites, the Amorites, and the Canaanites, the Perizzites, the Hivites, and the Jebusites:
12376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The king of Jericho, one; the king of Ai, which is beside Bethel, one;
12377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The king of Jerusalem, one; the king of Hebron, one;
12378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The king of Jarmuth, one; the king of Lachish, one;
12379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Eglon, one; the king of Gezer, one;
12380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Debir, one; the king of Geder, one;
12381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Hormah, one; the king of Arad, one;
12382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The king of Libnah, one; the king of Adullam, one;
12383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The king of Makkedah, one; the king of Bethel, one;
12384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The king of Tappuah, one; the king of Hepher, one;
12385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The king of Aphek, one; the king of Lasharon, one;
12386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The king of Madon, one; the king of Hazor, one;
12387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The king of Shimronmeron, one; the king of Achshaph, one;
12388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The king of Taanach, one; the king of Megiddo, one;
12389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The king of Kedesh, one; the king of Jokneam of Carmel, one;
12390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The king of Dor in the coast of Dor, one; the king of the nations of Gilgal, one;
12391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The king of Tirzah, one: all the kings thirty and one.
12392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now Joshua was old and stricken in years; and the LORD said unto him, Thou art old and stricken in years, and there remaineth yet very much land to be possessed.
12393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     This is the land that yet remaineth: all the borders of the Philistines, and all Geshuri,
12394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From Sihor, which is before Egypt, even unto the borders of Ekron northward, which is counted to the Canaanite: five lords of the Philistines; the Gazathites, and the Ashdothites, the Eshkalonites, the Gittites, and the Ekronites; also the Avites:
12395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           From the south, all the land of the Canaanites, and Mearah that is beside the Sidonians unto Aphek, to the borders of the Amorites:
12396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the land of the Giblites, and all Lebanon, toward the sunrising, from Baalgad under mount Hermon unto the entering into Hamath.
12397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       All the inhabitants of the hill country from Lebanon unto Misrephothmaim, and all the Sidonians, them will I drive out from before the children of Israel: only divide thou it by lot unto the Israelites for an inheritance, as I have commanded thee.
12398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore divide this land for an inheritance unto the nine tribes, and the half tribe of Manasseh,
12399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     With whom the Reubenites and the Gadites have received their inheritance, which Moses gave them, beyond Jordan eastward, even as Moses the servant of the LORD gave them;
12400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 From Aroer, that is upon the bank of the river Arnon, and the city that is in the midst of the river, and all the plain of Medeba unto Dibon;
12401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And all the cities of Sihon king of the Amorites, which reigned in Heshbon, unto the border of the children of Ammon;
12402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Gilead, and the border of the Geshurites and Maachathites, and all mount Hermon, and all Bashan unto Salcah;
12403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            All the kingdom of Og in Bashan, which reigned in Ashtaroth and in Edrei, who remained of the remnant of the giants: for these did Moses smite, and cast them out.
12404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nevertheless the children of Israel expelled not the Geshurites, nor the Maachathites: but the Geshurites and the Maachathites dwell among the Israelites until this day.
12405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Only unto the tribes of Levi he gave none inheritance; the sacrifices of the LORD God of Israel made by fire are their inheritance, as he said unto them.
12406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Moses gave unto the tribe of the children of Reuben inheritance according to their families.
12407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And their coast was from Aroer, that is on the bank of the river Arnon, and the city that is in the midst of the river, and all the plain by Medeba;
12408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Heshbon, and all her cities that are in the plain; Dibon, and Bamothbaal, and Bethbaalmeon,
12409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jahaza, and Kedemoth, and Mephaath,
12410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Kirjathaim, and Sibmah, and Zarethshahar in the mount of the valley,
12411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Bethpeor, and Ashdothpisgah, and Bethjeshimoth,
12412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all the cities of the plain, and all the kingdom of Sihon king of the Amorites, which reigned in Heshbon, whom Moses smote with the princes of Midian, Evi, and Rekem, and Zur, and Hur, and Reba, which were dukes of Sihon, dwelling in the country.
12413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Balaam also the son of Beor, the soothsayer, did the children of Israel slay with the sword among them that were slain by them.
12414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the border of the children of Reuben was Jordan, and the border thereof. This was the inheritance of the children of Reuben after their families, the cities and the villages thereof.
12415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Moses gave inheritance unto the tribe of Gad, even unto the children of Gad according to their families.
12416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And their coast was Jazer, and all the cities of Gilead, and half the land of the children of Ammon, unto Aroer that is before Rabbah;
12417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And from Heshbon unto Ramathmizpeh, and Betonim; and from Mahanaim unto the border of Debir;
12418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And in the valley, Betharam, and Bethnimrah, and Succoth, and Zaphon, the rest of the kingdom of Sihon king of Heshbon, Jordan and his border, even unto the edge of the sea of Chinnereth on the other side Jordan eastward.
12419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is the inheritance of the children of Gad after their families, the cities, and their villages.
12420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Moses gave inheritance unto the half tribe of Manasseh: and this was the possession of the half tribe of the children of Manasseh by their families.
12421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And their coast was from Mahanaim, all Bashan, all the kingdom of Og king of Bashan, and all the towns of Jair, which are in Bashan, threescore cities:
12422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And half Gilead, and Ashtaroth, and Edrei, cities of the kingdom of Og in Bashan, were pertaining unto the children of Machir the son of Manasseh, even to the one half of the children of Machir by their families.
12423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     These are the countries which Moses did distribute for inheritance in the plains of Moab, on the other side Jordan, by Jericho, eastward.
12424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But unto the tribe of Levi Moses gave not any inheritance: the LORD God of Israel was their inheritance, as he said unto them.
12425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And these are the countries which the children of Israel inherited in the land of Canaan, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers of the tribes of the children of Israel, distributed for inheritance to them.
12426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        By lot was their inheritance, as the LORD commanded by the hand of Moses, for the nine tribes, and for the half tribe.
12427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For Moses had given the inheritance of two tribes and an half tribe on the other side Jordan: but unto the Levites he gave none inheritance among them.
12428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For the children of Joseph were two tribes, Manasseh and Ephraim: therefore they gave no part unto the Levites in the land, save cities to dwell in, with their suburbs for their cattle and for their substance.
12429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As the LORD commanded Moses, so the children of Israel did, and they divided the land.
12430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then the children of Judah came unto Joshua in Gilgal: and Caleb the son of Jephunneh the Kenezite said unto him, Thou knowest the thing that the LORD said unto Moses the man of God concerning me and thee in Kadeshbarnea.
12431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Forty years old was I when Moses the servant of the LORD sent me from Kadeshbarnea to espy out the land; and I brought him word again as it was in mine heart.
12432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nevertheless my brethren that went up with me made the heart of the people melt: but I wholly followed the LORD my God.
12433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Moses sware on that day, saying, Surely the land whereon thy feet have trodden shall be thine inheritance, and thy children's for ever, because thou hast wholly followed the LORD my God.
12434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And now, behold, the LORD hath kept me alive, as he said, these forty and five years, even since the LORD spake this word unto Moses, while the children of Israel wandered in the wilderness: and now, lo, I am this day fourscore and five years old.
12435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          As yet I am as strong this day as I was in the day that Moses sent me: as my strength was then, even so is my strength now, for war, both to go out, and to come in.
12436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore give me this mountain, whereof the LORD spake in that day; for thou heardest in that day how the Anakims were there, and that the cities were great and fenced: if so be the LORD will be with me, then I shall be able to drive them out, as the LORD said.
12437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Joshua blessed him, and gave unto Caleb the son of Jephunneh Hebron for an inheritance.
12438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Hebron therefore became the inheritance of Caleb the son of Jephunneh the Kenezite unto this day, because that he wholly followed the LORD God of Israel.
12439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the name of Hebron before was Kirjatharba; which Arba was a great man among the Anakims. And the land had rest from war.
12440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This then was the lot of the tribe of the children of Judah by their families; even to the border of Edom the wilderness of Zin southward was the uttermost part of the south coast.
12441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And their south border was from the shore of the salt sea, from the bay that looketh southward:
12442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it went out to the south side to Maalehacrabbim, and passed along to Zin, and ascended up on the south side unto Kadeshbarnea, and passed along to Hezron, and went up to Adar, and fetched a compass to Karkaa:
12443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   From thence it passed toward Azmon, and went out unto the river of Egypt; and the goings out of that coast were at the sea: this shall be your south coast.
12444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the east border was the salt sea, even unto the end of Jordan. And their border in the north quarter was from the bay of the sea at the uttermost part of Jordan:
12445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the border went up to Bethhogla, and passed along by the north of Betharabah; and the border went up to the stone of Bohan the son of Reuben:
12446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the border went up toward Debir from the valley of Achor, and so northward, looking toward Gilgal, that is before the going up to Adummim, which is on the south side of the river: and the border passed toward the waters of Enshemesh, and the goings out thereof were at Enrogel:
12447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the border went up by the valley of the son of Hinnom unto the south side of the Jebusite; the same is Jerusalem: and the border went up to the top of the mountain that lieth before the valley of Hinnom westward, which is at the end of the valley of the giants northward:
12448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the border was drawn from the top of the hill unto the fountain of the water of Nephtoah, and went out to the cities of mount Ephron; and the border was drawn to Baalah, which is Kirjathjearim:
12449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the border compassed from Baalah westward unto mount Seir, and passed along unto the side of mount Jearim, which is Chesalon, on the north side, and went down to Bethshemesh, and passed on to Timnah:
12450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the border went out unto the side of Ekron northward: and the border was drawn to Shicron, and passed along to mount Baalah, and went out unto Jabneel; and the goings out of the border were at the sea.
12451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the west border was to the great sea, and the coast thereof. This is the coast of the children of Judah round about according to their families.
12452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And unto Caleb the son of Jephunneh he gave a part among the children of Judah, according to the commandment of the LORD to Joshua, even the city of Arba the father of Anak, which city is Hebron.
12453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Caleb drove thence the three sons of Anak, Sheshai, and Ahiman, and Talmai, the children of Anak.
12454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he went up thence to the inhabitants of Debir: and the name of Debir before was Kirjathsepher.
12455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife.
12456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Othniel the son of Kenaz, the brother of Caleb, took it: and he gave him Achsah his daughter to wife.
12457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as she came unto him, that she moved him to ask of her father a field: and she lighted off her ass; and Caleb said unto her, What wouldest thou?
12458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Who answered, Give me a blessing; for thou hast given me a south land; give me also springs of water. And he gave her the upper springs, and the nether springs.
12459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is the inheritance of the tribe of the children of Judah according to their families.
12460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the uttermost cities of the tribe of the children of Judah toward the coast of Edom southward were Kabzeel, and Eder, and Jagur,
12461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Kinah, and Dimonah, and Adadah,
12462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Kedesh, and Hazor, and Ithnan,
12463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Ziph, and Telem, and Bealoth,
12464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Hazor, Hadattah, and Kerioth, and Hezron, which is Hazor,
12465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Amam, and Shema, and Moladah,
12466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Hazargaddah, and Heshmon, and Bethpalet,
12467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Hazarshual, and Beersheba, and Bizjothjah,
12468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Baalah, and Iim, and Azem,
12469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Eltolad, and Chesil, and Hormah,
12470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Ziklag, and Madmannah, and Sansannah,
12471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Lebaoth, and Shilhim, and Ain, and Rimmon: all the cities are twenty and nine, with their villages:
12472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And in the valley, Eshtaol, and Zoreah, and Ashnah,
12473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Zanoah, and Engannim, Tappuah, and Enam,
12474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jarmuth, and Adullam, Socoh, and Azekah,
12475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Sharaim, and Adithaim, and Gederah, and Gederothaim; fourteen cities with their villages:
12476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Zenan, and Hadashah, and Migdalgad,
12477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Dilean, and Mizpeh, and Joktheel,
12478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lachish, and Bozkath, and Eglon,
12479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Cabbon, and Lahmam, and Kithlish,
12480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Gederoth, Bethdagon, and Naamah, and Makkedah; sixteen cities with their villages:
12481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Libnah, and Ether, and Ashan,
12482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jiphtah, and Ashnah, and Nezib,
12483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Keilah, and Achzib, and Mareshah; nine cities with their villages:
12484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Ekron, with her towns and her villages:
12485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  From Ekron even unto the sea, all that lay near Ashdod, with their villages:
12486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ashdod with her towns and her villages, Gaza with her towns and her villages, unto the river of Egypt, and the great sea, and the border thereof:
12487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the mountains, Shamir, and Jattir, and Socoh,
12488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Dannah, and Kirjathsannah, which is Debir,
12489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Anab, and Eshtemoh, and Anim,
12490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Goshen, and Holon, and Giloh; eleven cities with their villages:
12491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Arab, and Dumah, and Eshean,
12492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Janum, and Bethtappuah, and Aphekah,
12493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Humtah, and Kirjatharba, which is Hebron, and Zior; nine cities with their villages:
12494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Maon, Carmel, and Ziph, and Juttah,
12495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jezreel, and Jokdeam, and Zanoah,
12496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Cain, Gibeah, and Timnah; ten cities with their villages:
12497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Halhul, Bethzur, and Gedor,
12498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Maarath, and Bethanoth, and Eltekon; six cities with their villages:
12499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Kirjathbaal, which is Kirjathjearim, and Rabbah; two cities with their villages:
12500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In the wilderness, Betharabah, Middin, and Secacah,
12501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Nibshan, and the city of Salt, and Engedi; six cities with their villages.
12502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             As for the Jebusites the inhabitants of Jerusalem, the children of Judah could not drive them out; but the Jebusites dwell with the children of Judah at Jerusalem unto this day.
12503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the lot of the children of Joseph fell from Jordan by Jericho, unto the water of Jericho on the east, to the wilderness that goeth up from Jericho throughout mount Bethel,
12504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And goeth out from Bethel to Luz, and passeth along unto the borders of Archi to Ataroth,
12505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And goeth down westward to the coast of Japhleti, unto the coast of Bethhoron the nether, and to Gezer; and the goings out thereof are at the sea.
12506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So the children of Joseph, Manasseh and Ephraim, took their inheritance.
12507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the border of the children of Ephraim according to their families was thus: even the border of their inheritance on the east side was Atarothaddar, unto Bethhoron the upper;
12508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the border went out toward the sea to Michmethah on the north side; and the border went about eastward unto Taanathshiloh, and passed by it on the east to Janohah;
12509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it went down from Janohah to Ataroth, and to Naarath, and came to Jericho, and went out at Jordan.
12510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The border went out from Tappuah westward unto the river Kanah; and the goings out thereof were at the sea. This is the inheritance of the tribe of the children of Ephraim by their families.
12511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the separate cities for the children of Ephraim were among the inheritance of the children of Manasseh, all the cities with their villages.
12512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they drave not out the Canaanites that dwelt in Gezer: but the Canaanites dwell among the Ephraimites unto this day, and serve under tribute.
12513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There was also a lot for the tribe of Manasseh; for he was the firstborn of Joseph; to wit, for Machir the firstborn of Manasseh, the father of Gilead: because he was a man of war, therefore he had Gilead and Bashan.
12514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  There was also a lot for the rest of the children of Manasseh by their families; for the children of Abiezer, and for the children of Helek, and for the children of Asriel, and for the children of Shechem, and for the children of Hepher, and for the children of Shemida: these were the male children of Manasseh the son of Joseph by their families.
12515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But Zelophehad, the son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, had no sons, but daughters: and these are the names of his daughters, Mahlah, and Noah, Hoglah, Milcah, and Tirzah.
12516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they came near before Eleazar the priest, and before Joshua the son of Nun, and before the princes, saying, The LORD commanded Moses to give us an inheritance among our brethren. Therefore according to the commandment of the LORD he gave them an inheritance among the brethren of their father.
12517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there fell ten portions to Manasseh, beside the land of Gilead and Bashan, which were on the other side Jordan;
12518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Because the daughters of Manasseh had an inheritance among his sons: and the rest of Manasseh's sons had the land of Gilead.
12519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the coast of Manasseh was from Asher to Michmethah, that lieth before Shechem; and the border went along on the right hand unto the inhabitants of Entappuah.
12520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now Manasseh had the land of Tappuah: but Tappuah on the border of Manasseh belonged to the children of Ephraim;
12521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the coast descended unto the river Kanah, southward of the river: these cities of Ephraim are among the cities of Manasseh: the coast of Manasseh also was on the north side of the river, and the outgoings of it were at the sea:
12522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Southward it was Ephraim's, and northward it was Manasseh's, and the sea is his border; and they met together in Asher on the north, and in Issachar on the east.
12523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Manasseh had in Issachar and in Asher Bethshean and her towns, and Ibleam and her towns, and the inhabitants of Dor and her towns, and the inhabitants of Endor and her towns, and the inhabitants of Taanach and her towns, and the inhabitants of Megiddo and her towns, even three countries.
12524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Yet the children of Manasseh could not drive out the inhabitants of those cities; but the Canaanites would dwell in that land.
12525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet it came to pass, when the children of Israel were waxen strong, that they put the Canaanites to tribute, but did not utterly drive them out.
12526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the children of Joseph spake unto Joshua, saying, Why hast thou given me but one lot and one portion to inherit, seeing I am a great people, forasmuch as the LORD hath blessed me hitherto?
12527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joshua answered them, If thou be a great people, then get thee up to the wood country, and cut down for thyself there in the land of the Perizzites and of the giants, if mount Ephraim be too narrow for thee.
12528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Joseph said, The hill is not enough for us: and all the Canaanites that dwell in the land of the valley have chariots of iron, both they who are of Bethshean and her towns, and they who are of the valley of Jezreel.
12529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua spake unto the house of Joseph, even to Ephraim and to Manasseh, saying, Thou art a great people, and hast great power: thou shalt not have one lot only:
12530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the mountain shall be thine; for it is a wood, and thou shalt cut it down: and the outgoings of it shall be thine: for thou shalt drive out the Canaanites, though they have iron chariots, and though they be strong.
12531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the whole congregation of the children of Israel assembled together at Shiloh, and set up the tabernacle of the congregation there. And the land was subdued before them.
12532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there remained among the children of Israel seven tribes, which had not yet received their inheritance.
12533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Joshua said unto the children of Israel, How long are ye slack to go to possess the land, which the LORD God of your fathers hath given you?
12534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Give out from among you three men for each tribe: and I will send them, and they shall rise, and go through the land, and describe it according to the inheritance of them; and they shall come again to me.
12535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they shall divide it into seven parts: Judah shall abide in their coast on the south, and the house of Joseph shall abide in their coasts on the north.
12536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Ye shall therefore describe the land into seven parts, and bring the description hither to me, that I may cast lots for you here before the LORD our God.
12537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the Levites have no part among you; for the priesthood of the LORD is their inheritance: and Gad, and Reuben, and half the tribe of Manasseh, have received their inheritance beyond Jordan on the east, which Moses the servant of the LORD gave them.
12538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the men arose, and went away: and Joshua charged them that went to describe the land, saying, Go and walk through the land, and describe it, and come again to me, that I may here cast lots for you before the LORD in Shiloh.
12539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the men went and passed through the land, and described it by cities into seven parts in a book, and came again to Joshua to the host at Shiloh.
12540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Joshua cast lots for them in Shiloh before the LORD: and there Joshua divided the land unto the children of Israel according to their divisions.
12541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the lot of the tribe of the children of Benjamin came up according to their families: and the coast of their lot came forth between the children of Judah and the children of Joseph.
12542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And their border on the north side was from Jordan; and the border went up to the side of Jericho on the north side, and went up through the mountains westward; and the goings out thereof were at the wilderness of Bethaven.
12543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the border went over from thence toward Luz, to the side of Luz, which is Bethel, southward; and the border descended to Atarothadar, near the hill that lieth on the south side of the nether Bethhoron.
12544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the border was drawn thence, and compassed the corner of the sea southward, from the hill that lieth before Bethhoron southward; and the goings out thereof were at Kirjathbaal, which is Kirjathjearim, a city of the children of Judah: this was the west quarter.
12545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the south quarter was from the end of Kirjathjearim, and the border went out on the west, and went out to the well of waters of Nephtoah:
12546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the border came down to the end of the mountain that lieth before the valley of the son of Hinnom, and which is in the valley of the giants on the north, and descended to the valley of Hinnom, to the side of Jebusi on the south, and descended to Enrogel,
12547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And was drawn from the north, and went forth to Enshemesh, and went forth toward Geliloth, which is over against the going up of Adummim, and descended to the stone of Bohan the son of Reuben,
12548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And passed along toward the side over against Arabah northward, and went down unto Arabah:
12549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the border passed along to the side of Bethhoglah northward: and the outgoings of the border were at the north bay of the salt sea at the south end of Jordan: this was the south coast.
12550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jordan was the border of it on the east side. This was the inheritance of the children of Benjamin, by the coasts thereof round about, according to their families.
12551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now the cities of the tribe of the children of Benjamin according to their families were Jericho, and Bethhoglah, and the valley of Keziz,
12552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Betharabah, and Zemaraim, and Bethel,
12553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Avim, and Pharah, and Ophrah,
12554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Chepharhaammonai, and Ophni, and Gaba; twelve cities with their villages:
12555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Gibeon, and Ramah, and Beeroth,
12556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Mizpeh, and Chephirah, and Mozah,
12557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Rekem, and Irpeel, and Taralah,
12558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Zelah, Eleph, and Jebusi, which is Jerusalem, Gibeath, and Kirjath; fourteen cities with their villages. This is the inheritance of the children of Benjamin according to their families.
12559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the second lot came forth to Simeon, even for the tribe of the children of Simeon according to their families: and their inheritance was within the inheritance of the children of Judah.
12560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they had in their inheritance Beersheba, and Sheba, and Moladah,
12561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hazarshual, and Balah, and Azem,
12562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Eltolad, and Bethul, and Hormah,
12563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ziklag, and Bethmarcaboth, and Hazarsusah,
12564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Bethlebaoth, and Sharuhen; thirteen cities and their villages:
12565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ain, Remmon, and Ether, and Ashan; four cities and their villages:
12566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the villages that were round about these cities to Baalathbeer, Ramath of the south. This is the inheritance of the tribe of the children of Simeon according to their families.
12567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Out of the portion of the children of Judah was the inheritance of the children of Simeon: for the part of the children of Judah was too much for them: therefore the children of Simeon had their inheritance within the inheritance of them.
12568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the third lot came up for the children of Zebulun according to their families: and the border of their inheritance was unto Sarid:
12569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And their border went up toward the sea, and Maralah, and reached to Dabbasheth, and reached to the river that is before Jokneam;
12570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And turned from Sarid eastward toward the sunrising unto the border of Chislothtabor, and then goeth out to Daberath, and goeth up to Japhia,
12571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And from thence passeth on along on the east to Gittahhepher, to Ittahkazin, and goeth out to Remmonmethoar to Neah;
12572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the border compasseth it on the north side to Hannathon: and the outgoings thereof are in the valley of Jiphthahel:
12573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Kattath, and Nahallal, and Shimron, and Idalah, and Bethlehem: twelve cities with their villages.
12574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the inheritance of the children of Zebulun according to their families, these cities with their villages.
12575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the fourth lot came out to Issachar, for the children of Issachar according to their families.
12576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And their border was toward Jezreel, and Chesulloth, and Shunem,
12577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Haphraim, and Shihon, and Anaharath,
12578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Rabbith, and Kishion, and Abez,
12579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Remeth, and Engannim, and Enhaddah, and Bethpazzez;
12580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the coast reacheth to Tabor, and Shahazimah, and Bethshemesh; and the outgoings of their border were at Jordan: sixteen cities with their villages.
12581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is the inheritance of the tribe of the children of Issachar according to their families, the cities and their villages.
12582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the fifth lot came out for the tribe of the children of Asher according to their families.
12583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And their border was Helkath, and Hali, and Beten, and Achshaph,
12584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Alammelech, and Amad, and Misheal; and reacheth to Carmel westward, and to Shihorlibnath;
12585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And turneth toward the sunrising to Bethdagon, and reacheth to Zebulun, and to the valley of Jiphthahel toward the north side of Bethemek, and Neiel, and goeth out to Cabul on the left hand,
12586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hebron, and Rehob, and Hammon, and Kanah, even unto great Zidon;
12587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And then the coast turneth to Ramah, and to the strong city Tyre; and the coast turneth to Hosah; and the outgoings thereof are at the sea from the coast to Achzib:
12588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Ummah also, and Aphek, and Rehob: twenty and two cities with their villages.
12589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is the inheritance of the tribe of the children of Asher according to their families, these cities with their villages.
12590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sixth lot came out to the children of Naphtali, even for the children of Naphtali according to their families.
12591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And their coast was from Heleph, from Allon to Zaanannim, and Adami, Nekeb, and Jabneel, unto Lakum; and the outgoings thereof were at Jordan:
12592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And then the coast turneth westward to Aznothtabor, and goeth out from thence to Hukkok, and reacheth to Zebulun on the south side, and reacheth to Asher on the west side, and to Judah upon Jordan toward the sunrising.
12593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the fenced cities are Ziddim, Zer, and Hammath, Rakkath, and Chinnereth,
12594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Adamah, and Ramah, and Hazor,
12595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Kedesh, and Edrei, and Enhazor,
12596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Iron, and Migdalel, Horem, and Bethanath, and Bethshemesh; nineteen cities with their villages.
12597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is the inheritance of the tribe of the children of Naphtali according to their families, the cities and their villages.
12598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the seventh lot came out for the tribe of the children of Dan according to their families.
12599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the coast of their inheritance was Zorah, and Eshtaol, and Irshemesh,
12600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Shaalabbin, and Ajalon, and Jethlah,
12601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Elon, and Thimnathah, and Ekron,
12602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Eltekeh, and Gibbethon, and Baalath,
12603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jehud, and Beneberak, and Gathrimmon,
12604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Mejarkon, and Rakkon, with the border before Japho.
12605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the coast of the children of Dan went out too little for them: therefore the children of Dan went up to fight against Leshem, and took it, and smote it with the edge of the sword, and possessed it, and dwelt therein, and called Leshem, Dan, after the name of Dan their father.
12606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is the inheritance of the tribe of the children of Dan according to their families, these cities with their villages.
12607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When they had made an end of dividing the land for inheritance by their coasts, the children of Israel gave an inheritance to Joshua the son of Nun among them:
12608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        According to the word of the LORD they gave him the city which he asked, even Timnathserah in mount Ephraim: and he built the city, and dwelt therein.
12609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           These are the inheritances, which Eleazar the priest, and Joshua the son of Nun, and the heads of the fathers of the tribes of the children of Israel, divided for an inheritance by lot in Shiloh before the LORD, at the door of the tabernacle of the congregation. So they made an end of dividing the country.
12610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The LORD also spake unto Joshua, saying,
12611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Speak to the children of Israel, saying, Appoint out for you cities of refuge, whereof I spake unto you by the hand of Moses:
12612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That the slayer that killeth any person unawares and unwittingly may flee thither: and they shall be your refuge from the avenger of blood.
12613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when he that doth flee unto one of those cities shall stand at the entering of the gate of the city, and shall declare his cause in the ears of the elders of that city, they shall take him into the city unto them, and give him a place, that he may dwell among them.
12614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And if the avenger of blood pursue after him, then they shall not deliver the slayer up into his hand; because he smote his neighbor unwittingly, and hated him not beforetime.
12615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he shall dwell in that city, until he stand before the congregation for judgment, and until the death of the high priest that shall be in those days: then shall the slayer return, and come unto his own city, and unto his own house, unto the city from whence he fled.
12616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they appointed Kedesh in Galilee in mount Naphtali, and Shechem in mount Ephraim, and Kirjatharba, which is Hebron, in the mountain of Judah.
12617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And on the other side Jordan by Jericho eastward, they assigned Bezer in the wilderness upon the plain out of the tribe of Reuben, and Ramoth in Gilead out of the tribe of Gad, and Golan in Bashan out of the tribe of Manasseh.
12618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   These were the cities appointed for all the children of Israel, and for the stranger that sojourneth among them, that whosoever killeth any person at unawares might flee thither, and not die by the hand of the avenger of blood, until he stood before the congregation.
12619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then came near the heads of the fathers of the Levites unto Eleazar the priest, and unto Joshua the son of Nun, and unto the heads of the fathers of the tribes of the children of Israel;
12620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they spake unto them at Shiloh in the land of Canaan, saying, The LORD commanded by the hand of Moses to give us cities to dwell in, with the suburbs thereof for our cattle.
12621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel gave unto the Levites out of their inheritance, at the commandment of the LORD, these cities and their suburbs.
12622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the lot came out for the families of the Kohathites: and the children of Aaron the priest, which were of the Levites, had by lot out of the tribe of Judah, and out of the tribe of Simeon, and out of the tribe of Benjamin, thirteen cities.
12623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the rest of the children of Kohath had by lot out of the families of the tribe of Ephraim, and out of the tribe of Dan, and out of the half tribe of Manasseh, ten cities.
12624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the children of Gershon had by lot out of the families of the tribe of Issachar, and out of the tribe of Asher, and out of the tribe of Naphtali, and out of the half tribe of Manasseh in Bashan, thirteen cities.
12625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The children of Merari by their families had out of the tribe of Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun, twelve cities.
12626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel gave by lot unto the Levites these cities with their suburbs, as the LORD commanded by the hand of Moses.
12627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they gave out of the tribe of the children of Judah, and out of the tribe of the children of Simeon, these cities which are here mentioned by name.
12628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Which the children of Aaron, being of the families of the Kohathites, who were of the children of Levi, had: for theirs was the first lot.
12629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they gave them the city of Arba the father of Anak, which city is Hebron, in the hill country of Judah, with the suburbs thereof round about it.
12630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the fields of the city, and the villages thereof, gave they to Caleb the son of Jephunneh for his possession.
12631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thus they gave to the children of Aaron the priest Hebron with her suburbs, to be a city of refuge for the slayer; and Libnah with her suburbs,
12632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jattir with her suburbs, and Eshtemoa with her suburbs,
12633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Holon with her suburbs, and Debir with her suburbs,
12634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Ain with her suburbs, and Juttah with her suburbs, and Bethshemesh with her suburbs; nine cities out of those two tribes.
12635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And out of the tribe of Benjamin, Gibeon with her suburbs, Geba with her suburbs,
12636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Anathoth with her suburbs, and Almon with her suburbs; four cities.
12637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                All the cities of the children of Aaron, the priests, were thirteen cities with their suburbs.
12638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the families of the children of Kohath, the Levites which remained of the children of Kohath, even they had the cities of their lot out of the tribe of Ephraim.
12639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For they gave them Shechem with her suburbs in mount Ephraim, to be a city of refuge for the slayer; and Gezer with her suburbs,
12640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Kibzaim with her suburbs, and Bethhoron with her suburbs; four cities.
12641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And out of the tribe of Dan, Eltekeh with her suburbs, Gibbethon with her suburbs,
12642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Aijalon with her suburbs, Gathrimmon with her suburbs; four cities.
12643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And out of the half tribe of Manasseh, Tanach with her suburbs, and Gathrimmon with her suburbs; two cities.
12644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          All the cities were ten with their suburbs for the families of the children of Kohath that remained.
12645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And unto the children of Gershon, of the families of the Levites, out of the other half tribe of Manasseh they gave Golan in Bashan with her suburbs, to be a city of refuge for the slayer; and Beeshterah with her suburbs; two cities.
12646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And out of the tribe of Issachar, Kishon with her suburbs, Dabareh with her suburbs,
12647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Jarmuth with her suburbs, Engannim with her suburbs; four cities.
12648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And out of the tribe of Asher, Mishal with her suburbs, Abdon with her suburbs,
12649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Helkath with her suburbs, and Rehob with her suburbs; four cities.
12650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And out of the tribe of Naphtali, Kedesh in Galilee with her suburbs, to be a city of refuge for the slayer; and Hammothdor with her suburbs, and Kartan with her suburbs; three cities.
12651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        All the cities of the Gershonites according to their families were thirteen cities with their suburbs.
12652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And unto the families of the children of Merari, the rest of the Levites, out of the tribe of Zebulun, Jokneam with her suburbs, and Kartah with her suburbs,
12653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Dimnah with her suburbs, Nahalal with her suburbs; four cities.
12654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And out of the tribe of Reuben, Bezer with her suburbs, and Jahazah with her suburbs,
12655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Kedemoth with her suburbs, and Mephaath with her suburbs; four cities.
12656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And out of the tribe of Gad, Ramoth in Gilead with her suburbs, to be a city of refuge for the slayer; and Mahanaim with her suburbs,
12657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Heshbon with her suburbs, Jazer with her suburbs; four cities in all.
12658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So all the cities for the children of Merari by their families, which were remaining of the families of the Levites, were by their lot twelve cities.
12659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 All the cities of the Levites within the possession of the children of Israel were forty and eight cities with their suburbs.
12660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These cities were every one with their suburbs round about them: thus were all these cities.
12661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD gave unto Israel all the land which he sware to give unto their fathers; and they possessed it, and dwelt therein.
12662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD gave them rest round about, according to all that he sware unto their fathers: and there stood not a man of all their enemies before them; the LORD delivered all their enemies into their hand.
12663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There failed not ought of any good thing which the LORD had spoken unto the house of Israel; all came to pass.
12664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Joshua called the Reubenites, and the Gadites, and the half tribe of Manasseh,
12665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And said unto them, Ye have kept all that Moses the servant of the LORD commanded you, and have obeyed my voice in all that I commanded you:
12666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Ye have not left your brethren these many days unto this day, but have kept the charge of the commandment of the LORD your God.
12667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And now the LORD your God hath given rest unto your brethren, as he promised them: therefore now return ye, and get you unto your tents, and unto the land of your possession, which Moses the servant of the LORD gave you on the other side Jordan.
12668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But take diligent heed to do the commandment and the law, which Moses the servant of the LORD charged you, to love the LORD your God, and to walk in all his ways, and to keep his commandments, and to cleave unto him, and to serve him with all your heart and with all your soul.
12669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So Joshua blessed them, and sent them away: and they went unto their tents.
12670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now to the one half of the tribe of Manasseh Moses had given possession in Bashan: but unto the other half thereof gave Joshua among their brethren on this side Jordan westward. And when Joshua sent them away also unto their tents, then he blessed them,
12671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he spake unto them, saying, Return with much riches unto your tents, and with very much cattle, with silver, and with gold, and with brass, and with iron, and with very much raiment: divide the spoil of your enemies with your brethren.
12672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Reuben and the children of Gad and the half tribe of Manasseh returned, and departed from the children of Israel out of Shiloh, which is in the land of Canaan, to go unto the country of Gilead, to the land of their possession, whereof they were possessed, according to the word of the LORD by the hand of Moses.
12673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when they came unto the borders of Jordan, that are in the land of Canaan, the children of Reuben and the children of Gad and the half tribe of Manasseh built there an altar by Jordan, a great altar to see to.
12674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel heard say, Behold, the children of Reuben and the children of Gad and the half tribe of Manasseh have built an altar over against the land of Canaan, in the borders of Jordan, at the passage of the children of Israel.
12675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when the children of Israel heard of it, the whole congregation of the children of Israel gathered themselves together at Shiloh, to go up to war against them.
12676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Israel sent unto the children of Reuben, and to the children of Gad, and to the half tribe of Manasseh, into the land of Gilead, Phinehas the son of Eleazar the priest,
12677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And with him ten princes, of each chief house a prince throughout all the tribes of Israel; and each one was an head of the house of their fathers among the thousands of Israel.
12678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they came unto the children of Reuben, and to the children of Gad, and to the half tribe of Manasseh, unto the land of Gilead, and they spake with them, saying,
12679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus saith the whole congregation of the LORD, What trespass is this that ye have committed against the God of Israel, to turn away this day from following the LORD, in that ye have builded you an altar, that ye might rebel this day against the LORD?
12680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Is the iniquity of Peor too little for us, from which we are not cleansed until this day, although there was a plague in the congregation of the LORD,
12681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But that ye must turn away this day from following the LORD? and it will be, seeing ye rebel to day against the LORD, that to morrow he will be wroth with the whole congregation of Israel.
12682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Notwithstanding, if the land of your possession be unclean, then pass ye over unto the land of the possession of the LORD, wherein the LORD's tabernacle dwelleth, and take possession among us: but rebel not against the LORD, nor rebel against us, in building you an altar beside the altar of the LORD our God.
12683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Did not Achan the son of Zerah commit a trespass in the accursed thing, and wrath fell on all the congregation of Israel? and that man perished not alone in his iniquity.
12684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then the children of Reuben and the children of Gad and the half tribe of Manasseh answered, and said unto the heads of the thousands of Israel,
12685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD God of gods, the LORD God of gods, he knoweth, and Israel he shall know; if it be in rebellion, or if in transgression against the LORD, (save us not this day,)
12686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That we have built us an altar to turn from following the LORD, or if to offer thereon burnt offering or meat offering, or if to offer peace offerings thereon, let the LORD himself require it;
12687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if we have not rather done it for fear of this thing, saying, In time to come your children might speak unto our children, saying, What have ye to do with the LORD God of Israel?
12688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the LORD hath made Jordan a border between us and you, ye children of Reuben and children of Gad; ye have no part in the LORD: so shall your children make our children cease from fearing the LORD.
12689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Therefore we said, Let us now prepare to build us an altar, not for burnt offering, nor for sacrifice:
12690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But that it may be a witness between us, and you, and our generations after us, that we might do the service of the LORD before him with our burnt offerings, and with our sacrifices, and with our peace offerings; that your children may not say to our children in time to come, Ye have no part in the LORD.
12691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore said we, that it shall be, when they should so say to us or to our generations in time to come, that we may say again, Behold the pattern of the altar of the LORD, which our fathers made, not for burnt offerings, nor for sacrifices; but it is a witness between us and you.
12692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                God forbid that we should rebel against the LORD, and turn this day from following the LORD, to build an altar for burnt offerings, for meat offerings, or for sacrifices, beside the altar of the LORD our God that is before his tabernacle.
12693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when Phinehas the priest, and the princes of the congregation and heads of the thousands of Israel which were with him, heard the words that the children of Reuben and the children of Gad and the children of Manasseh spake, it pleased them.
12694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Phinehas the son of Eleazar the priest said unto the children of Reuben, and to the children of Gad, and to the children of Manasseh, This day we perceive that the LORD is among us, because ye have not committed this trespass against the LORD: now ye have delivered the children of Israel out of the hand of the LORD.
12695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Phinehas the son of Eleazar the priest, and the princes, returned from the children of Reuben, and from the children of Gad, out of the land of Gilead, unto the land of Canaan, to the children of Israel, and brought them word again.
12696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the thing pleased the children of Israel; and the children of Israel blessed God, and did not intend to go up against them in battle, to destroy the land wherein the children of Reuben and Gad dwelt.
12697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Reuben and the children of Gad called the altar Ed: for it shall be a witness between us that the LORD is God.
12698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass a long time after that the LORD had given rest unto Israel from all their enemies round about, that Joshua waxed old and stricken in age.
12699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Joshua called for all Israel, and for their elders, and for their heads, and for their judges, and for their officers, and said unto them, I am old and stricken in age:
12700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And ye have seen all that the LORD your God hath done unto all these nations because of you; for the LORD your God is he that hath fought for you.
12701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Behold, I have divided unto you by lot these nations that remain, to be an inheritance for your tribes, from Jordan, with all the nations that I have cut off, even unto the great sea westward.
12702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD your God, he shall expel them from before you, and drive them from out of your sight; and ye shall possess their land, as the LORD your God hath promised unto you.
12703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Be ye therefore very courageous to keep and to do all that is written in the book of the law of Moses, that ye turn not aside therefrom to the right hand or to the left;
12704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              That ye come not among these nations, these that remain among you; neither make mention of the name of their gods, nor cause to swear by them, neither serve them, nor bow yourselves unto them:
12705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But cleave unto the LORD your God, as ye have done unto this day.
12706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the LORD hath driven out from before you great nations and strong: but as for you, no man hath been able to stand before you unto this day.
12707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        One man of you shall chase a thousand: for the LORD your God, he it is that fighteth for you, as he hath promised you.
12708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Take good heed therefore unto yourselves, that ye love the LORD your God.
12709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Else if ye do in any wise go back, and cleave unto the remnant of these nations, even these that remain among you, and shall make marriages with them, and go in unto them, and they to you:
12710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Know for a certainty that the LORD your God will no more drive out any of these nations from before you; but they shall be snares and traps unto you, and scourges in your sides, and thorns in your eyes, until ye perish from off this good land which the LORD your God hath given you.
12711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And, behold, this day I am going the way of all the earth: and ye know in all your hearts and in all your souls, that not one thing hath failed of all the good things which the LORD your God spake concerning you; all are come to pass unto you, and not one thing hath failed thereof.
12712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore it shall come to pass, that as all good things are come upon you, which the LORD your God promised you; so shall the LORD bring upon you all evil things, until he have destroyed you from off this good land which the LORD your God hath given you.
12713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             When ye have transgressed the covenant of the LORD your God, which he commanded you, and have gone and served other gods, and bowed yourselves to them; then shall the anger of the LORD be kindled against you, and ye shall perish quickly from off the good land which he hath given unto you.
12714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Joshua gathered all the tribes of Israel to Shechem, and called for the elders of Israel, and for their heads, and for their judges, and for their officers; and they presented themselves before God.
12715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joshua said unto all the people, Thus saith the LORD God of Israel, Your fathers dwelt on the other side of the flood in old time, even Terah, the father of Abraham, and the father of Nachor: and they served other gods.
12716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I took your father Abraham from the other side of the flood, and led him throughout all the land of Canaan, and multiplied his seed, and gave him Isaac.
12717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I gave unto Isaac Jacob and Esau: and I gave unto Esau mount Seir, to possess it; but Jacob and his children went down into Egypt.
12718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I sent Moses also and Aaron, and I plagued Egypt, according to that which I did among them: and afterward I brought you out.
12719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I brought your fathers out of Egypt: and ye came unto the sea; and the Egyptians pursued after your fathers with chariots and horsemen unto the Red sea.
12720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when they cried unto the LORD, he put darkness between you and the Egyptians, and brought the sea upon them, and covered them; and your eyes have seen what I have done in Egypt: and ye dwelt in the wilderness a long season.
12721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I brought you into the land of the Amorites, which dwelt on the other side Jordan; and they fought with you: and I gave them into your hand, that ye might possess their land; and I destroyed them from before you.
12722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Balak the son of Zippor, king of Moab, arose and warred against Israel, and sent and called Balaam the son of Beor to curse you:
12723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But I would not hearken unto Balaam; therefore he blessed you still: so I delivered you out of his hand.
12724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And you went over Jordan, and came unto Jericho: and the men of Jericho fought against you, the Amorites, and the Perizzites, and the Canaanites, and the Hittites, and the Girgashites, the Hivites, and the Jebusites; and I delivered them into your hand.
12725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I sent the hornet before you, which drave them out from before you, even the two kings of the Amorites; but not with thy sword, nor with thy bow.
12726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I have given you a land for which ye did not labor, and cities which ye built not, and ye dwell in them; of the vineyards and oliveyards which ye planted not do ye eat.
12727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore fear the LORD, and serve him in sincerity and in truth: and put away the gods which your fathers served on the other side of the flood, and in Egypt; and serve ye the LORD.
12728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And if it seem evil unto you to serve the LORD, choose you this day whom ye will serve; whether the gods which your fathers served that were on the other side of the flood, or the gods of the Amorites, in whose land ye dwell: but as for me and my house, we will serve the LORD.
12729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the people answered and said, God forbid that we should forsake the LORD, to serve other gods;
12730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For the LORD our God, he it is that brought us up and our fathers out of the land of Egypt, from the house of bondage, and which did those great signs in our sight, and preserved us in all the way wherein we went, and among all the people through whom we passed:
12731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD drave out from before us all the people, even the Amorites which dwelt in the land: therefore will we also serve the LORD; for he is our God.
12732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joshua said unto the people, Ye cannot serve the LORD: for he is an holy God; he is a jealous God; he will not forgive your transgressions nor your sins.
12733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If ye forsake the LORD, and serve strange gods, then he will turn and do you hurt, and consume you, after that he hath done you good.
12734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the people said unto Joshua, Nay; but we will serve the LORD.
12735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joshua said unto the people, Ye are witnesses against yourselves that ye have chosen you the LORD, to serve him. And they said, We are witnesses.
12736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore put away, said he, the strange gods which are among you, and incline your heart unto the LORD God of Israel.
12737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the people said unto Joshua, The LORD our God will we serve, and his voice will we obey.
12738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Joshua made a covenant with the people that day, and set them a statute and an ordinance in Shechem.
12739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Joshua wrote these words in the book of the law of God, and took a great stone, and set it up there under an oak, that was by the sanctuary of the LORD.
12740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joshua said unto all the people, Behold, this stone shall be a witness unto us; for it hath heard all the words of the LORD which he spake unto us: it shall be therefore a witness unto you, lest ye deny your God.
12741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Joshua let the people depart, every man unto his inheritance.
12742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass after these things, that Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old.
12743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they buried him in the border of his inheritance in Timnathserah, which is in mount Ephraim, on the north side of the hill of Gaash.
12744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Israel served the LORD all the days of Joshua, and all the days of the elders that overlived Joshua, and which had known all the works of the LORD, that he had done for Israel.
12745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the bones of Joseph, which the children of Israel brought up out of Egypt, buried they in Shechem, in a parcel of ground which Jacob bought of the sons of Hamor the father of Shechem for an hundred pieces of silver: and it became the inheritance of the children of Joseph.
12746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Eleazar the son of Aaron died; and they buried him in a hill that pertained to Phinehas his son, which was given him in mount Ephraim.
12747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now after the death of Joshua it came to pass, that the children of Israel asked the LORD, saying, Who shall go up for us against the Canaanites first, to fight against them?
12748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD said, Judah shall go up: behold, I have delivered the land into his hand.
12749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Judah said unto Simeon his brother, Come up with me into my lot, that we may fight against the Canaanites; and I likewise will go with thee into thy lot. So Simeon went with him.
12750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Judah went up; and the LORD delivered the Canaanites and the Perizzites into their hand: and they slew of them in Bezek ten thousand men.
12751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they found Adonibezek in Bezek: and they fought against him, and they slew the Canaanites and the Perizzites.
12752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Adonibezek fled; and they pursued after him, and caught him, and cut off his thumbs and his great toes.
12753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Adonibezek said, Threescore and ten kings, having their thumbs and their great toes cut off, gathered their meat under my table: as I have done, so God hath requited me. And they brought him to Jerusalem, and there he died.
12754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now the children of Judah had fought against Jerusalem, and had taken it, and smitten it with the edge of the sword, and set the city on fire.
12755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And afterward the children of Judah went down to fight against the Canaanites, that dwelt in the mountain, and in the south, and in the valley.
12756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Judah went against the Canaanites that dwelt in Hebron: (now the name of Hebron before was Kirjatharba:) and they slew Sheshai, and Ahiman, and Talmai.
12757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And from thence he went against the inhabitants of Debir: and the name of Debir before was Kirjathsepher:
12758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Caleb said, He that smiteth Kirjathsepher, and taketh it, to him will I give Achsah my daughter to wife.
12759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Othniel the son of Kenaz, Caleb's younger brother, took it: and he gave him Achsah his daughter to wife.
12760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when she came to him, that she moved him to ask of her father a field: and she lighted from off her ass; and Caleb said unto her, What wilt thou?
12761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she said unto him, Give me a blessing: for thou hast given me a south land; give me also springs of water. And Caleb gave her the upper springs and the nether springs.
12762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the children of the Kenite, Moses' father in law, went up out of the city of palm trees with the children of Judah into the wilderness of Judah, which lieth in the south of Arad; and they went and dwelt among the people.
12763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Judah went with Simeon his brother, and they slew the Canaanites that inhabited Zephath, and utterly destroyed it. And the name of the city was called Hormah.
12764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Also Judah took Gaza with the coast thereof, and Askelon with the coast thereof, and Ekron with the coast thereof.
12765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD was with Judah; and he drave out the inhabitants of the mountain; but could not drive out the inhabitants of the valley, because they had chariots of iron.
12766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they gave Hebron unto Caleb, as Moses said: and he expelled thence the three sons of Anak.
12767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Benjamin did not drive out the Jebusites that inhabited Jerusalem; but the Jebusites dwell with the children of Benjamin in Jerusalem unto this day.
12768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the house of Joseph, they also went up against Bethel: and the LORD was with them.
12769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the house of Joseph sent to descry Bethel. (Now the name of the city before was Luz.)
12770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the spies saw a man come forth out of the city, and they said unto him, Show us, we pray thee, the entrance into the city, and we will show thee mercy.
12771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when he showed them the entrance into the city, they smote the city with the edge of the sword; but they let go the man and all his family.
12772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the man went into the land of the Hittites, and built a city, and called the name thereof Luz: which is the name thereof unto this day.
12773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Neither did Manasseh drive out the inhabitants of Bethshean and her towns, nor Taanach and her towns, nor the inhabitants of Dor and her towns, nor the inhabitants of Ibleam and her towns, nor the inhabitants of Megiddo and her towns: but the Canaanites would dwell in that land.
12774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when Israel was strong, that they put the Canaanites to tribute, and did not utterly drive them out.
12775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Neither did Ephraim drive out the Canaanites that dwelt in Gezer; but the Canaanites dwelt in Gezer among them.
12776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Neither did Zebulun drive out the inhabitants of Kitron, nor the inhabitants of Nahalol; but the Canaanites dwelt among them, and became tributaries.
12777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neither did Asher drive out the inhabitants of Accho, nor the inhabitants of Zidon, nor of Ahlab, nor of Achzib, nor of Helbah, nor of Aphik, nor of Rehob:
12778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the Asherites dwelt among the Canaanites, the inhabitants of the land: for they did not drive them out.
12779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Neither did Naphtali drive out the inhabitants of Bethshemesh, nor the inhabitants of Bethanath; but he dwelt among the Canaanites, the inhabitants of the land: nevertheless the inhabitants of Bethshemesh and of Bethanath became tributaries unto them.
12780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the Amorites forced the children of Dan into the mountain: for they would not suffer them to come down to the valley:
12781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the Amorites would dwell in mount Heres in Aijalon, and in Shaalbim: yet the hand of the house of Joseph prevailed, so that they became tributaries.
12782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the coast of the Amorites was from the going up to Akrabbim, from the rock, and upward.
12783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And an angel of the LORD came up from Gilgal to Bochim, and said, I made you to go up out of Egypt, and have brought you unto the land which I sware unto your fathers; and I said, I will never break my covenant with you.
12784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ye shall make no league with the inhabitants of this land; ye shall throw down their altars: but ye have not obeyed my voice: why have ye done this?
12785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wherefore I also said, I will not drive them out from before you; but they shall be as thorns in your sides, and their gods shall be a snare unto you.
12786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when the angel of the LORD spake these words unto all the children of Israel, that the people lifted up their voice, and wept.
12787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they called the name of that place Bochim: and they sacrificed there unto the LORD.
12788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when Joshua had let the people go, the children of Israel went every man unto his inheritance to possess the land.
12789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the people served the LORD all the days of Joshua, and all the days of the elders that outlived Joshua, who had seen all the great works of the LORD, that he did for Israel.
12790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joshua the son of Nun, the servant of the LORD, died, being an hundred and ten years old.
12791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they buried him in the border of his inheritance in Timnathheres, in the mount of Ephraim, on the north side of the hill Gaash.
12792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And also all that generation were gathered unto their fathers: and there arose another generation after them, which knew not the LORD, nor yet the works which he had done for Israel.
12793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the children of Israel did evil in the sight of the LORD, and served Baalim:
12794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they forsook the LORD God of their fathers, which brought them out of the land of Egypt, and followed other gods, of the gods of the people that were round about them, and bowed themselves unto them, and provoked the LORD to anger.
12795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they forsook the LORD, and served Baal and Ashtaroth.
12796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the anger of the LORD was hot against Israel, and he delivered them into the hands of spoilers that spoiled them, and he sold them into the hands of their enemies round about, so that they could not any longer stand before their enemies.
12797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Whithersoever they went out, the hand of the LORD was against them for evil, as the LORD had said, and as the LORD had sworn unto them: and they were greatly distressed.
12798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nevertheless the LORD raised up judges, which delivered them out of the hand of those that spoiled them.
12799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And yet they would not hearken unto their judges, but they went a whoring after other gods, and bowed themselves unto them: they turned quickly out of the way which their fathers walked in, obeying the commandments of the LORD; but they did not so.
12800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when the LORD raised them up judges, then the LORD was with the judge, and delivered them out of the hand of their enemies all the days of the judge: for it repented the LORD because of their groanings by reason of them that oppressed them and vexed them.
12801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when the judge was dead, that they returned, and corrupted themselves more than their fathers, in following other gods to serve them, and to bow down unto them; they ceased not from their own doings, nor from their stubborn way.
12802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the anger of the LORD was hot against Israel; and he said, Because that this people hath transgressed my covenant which I commanded their fathers, and have not hearkened unto my voice;
12803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I also will not henceforth drive out any from before them of the nations which Joshua left when he died:
12804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That through them I may prove Israel, whether they will keep the way of the LORD to walk therein, as their fathers did keep it, or not.
12805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore the LORD left those nations, without driving them out hastily; neither delivered he them into the hand of Joshua.
12806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now these are the nations which the LORD left, to prove Israel by them, even as many of Israel as had not known all the wars of Canaan;
12807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Only that the generations of the children of Israel might know, to teach them war, at the least such as before knew nothing thereof;
12808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Namely, five lords of the Philistines, and all the Canaanites, and the Sidonians, and the Hivites that dwelt in mount Lebanon, from mount Baalhermon unto the entering in of Hamath.
12809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they were to prove Israel by them, to know whether they would hearken unto the commandments of the LORD, which he commanded their fathers by the hand of Moses.
12810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel dwelt among the Canaanites, Hittites, and Amorites, and Perizzites, and Hivites, and Jebusites:
12811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they took their daughters to be their wives, and gave their daughters to their sons, and served their gods.
12812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel did evil in the sight of the LORD, and forgat the LORD their God, and served Baalim and the groves.
12813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore the anger of the LORD was hot against Israel, and he sold them into the hand of Chushanrishathaim king of Mesopotamia: and the children of Israel served Chushanrishathaim eight years.
12814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the children of Israel cried unto the LORD, the LORD raised up a deliverer to the children of Israel, who delivered them, even Othniel the son of Kenaz, Caleb's younger brother.
12815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Spirit of the LORD came upon him, and he judged Israel, and went out to war: and the LORD delivered Chushanrishathaim king of Mesopotamia into his hand; and his hand prevailed against Chushanrishathaim.
12816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the land had rest forty years. And Othniel the son of Kenaz died.
12817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel did evil again in the sight of the LORD: and the LORD strengthened Eglon the king of Moab against Israel, because they had done evil in the sight of the LORD.
12818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he gathered unto him the children of Ammon and Amalek, and went and smote Israel, and possessed the city of palm trees.
12819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the children of Israel served Eglon the king of Moab eighteen years.
12820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But when the children of Israel cried unto the LORD, the LORD raised them up a deliverer, Ehud the son of Gera, a Benjamite, a man lefthanded: and by him the children of Israel sent a present unto Eglon the king of Moab.
12821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But Ehud made him a dagger which had two edges, of a cubit length; and he did gird it under his raiment upon his right thigh.
12822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he brought the present unto Eglon king of Moab: and Eglon was a very fat man.
12823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when he had made an end to offer the present, he sent away the people that bare the present.
12824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But he himself turned again from the quarries that were by Gilgal, and said, I have a secret errand unto thee, O king: who said, Keep silence. And all that stood by him went out from him.
12825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ehud came unto him; and he was sitting in a summer parlor, which he had for himself alone. And Ehud said, I have a message from God unto thee. And he arose out of his seat.
12826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Ehud put forth his left hand, and took the dagger from his right thigh, and thrust it into his belly:
12827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the haft also went in after the blade; and the fat closed upon the blade, so that he could not draw the dagger out of his belly; and the dirt came out.
12828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Ehud went forth through the porch, and shut the doors of the parlor upon him, and locked them.
12829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When he was gone out, his servants came; and when they saw that, behold, the doors of the parlor were locked, they said, Surely he covereth his feet in his summer chamber.
12830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they tarried till they were ashamed: and, behold, he opened not the doors of the parlor; therefore they took a key, and opened them: and, behold, their lord was fallen down dead on the earth.
12831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ehud escaped while they tarried, and passed beyond the quarries, and escaped unto Seirath.
12832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when he was come, that he blew a trumpet in the mountain of Ephraim, and the children of Israel went down with him from the mount, and he before them.
12833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said unto them, Follow after me: for the LORD hath delivered your enemies the Moabites into your hand. And they went down after him, and took the fords of Jordan toward Moab, and suffered not a man to pass over.
12834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they slew of Moab at that time about ten thousand men, all lusty, and all men of valor; and there escaped not a man.
12835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So Moab was subdued that day under the hand of Israel. And the land had rest fourscore years.
12836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And after him was Shamgar the son of Anath, which slew of the Philistines six hundred men with an ox goad: and he also delivered Israel.
12837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the children of Israel again did evil in the sight of the LORD, when Ehud was dead.
12838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD sold them into the hand of Jabin king of Canaan, that reigned in Hazor; the captain of whose host was Sisera, which dwelt in Harosheth of the Gentiles.
12839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Israel cried unto the LORD: for he had nine hundred chariots of iron; and twenty years he mightily oppressed the children of Israel.
12840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Deborah, a prophetess, the wife of Lapidoth, she judged Israel at that time.
12841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she dwelt under the palm tree of Deborah between Ramah and Bethel in mount Ephraim: and the children of Israel came up to her for judgment.
12842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she sent and called Barak the son of Abinoam out of Kedeshnaphtali, and said unto him, Hath not the LORD God of Israel commanded, saying, Go and draw toward mount Tabor, and take with thee ten thousand men of the children of Naphtali and of the children of Zebulun?
12843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And I will draw unto thee to the river Kishon Sisera, the captain of Jabin's army, with his chariots and his multitude; and I will deliver him into thine hand.
12844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Barak said unto her, If thou wilt go with me, then I will go: but if thou wilt not go with me, then I will not go.
12845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she said, I will surely go with thee: notwithstanding the journey that thou takest shall not be for thine honor; for the LORD shall sell Sisera into the hand of a woman. And Deborah arose, and went with Barak to Kedesh.
12846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Barak called Zebulun and Naphtali to Kedesh; and he went up with ten thousand men at his feet: and Deborah went up with him.
12847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now Heber the Kenite, which was of the children of Hobab the father in law of Moses, had severed himself from the Kenites, and pitched his tent unto the plain of Zaanaim, which is by Kedesh.
12848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they showed Sisera that Barak the son of Abinoam was gone up to mount Tabor.
12849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Sisera gathered together all his chariots, even nine hundred chariots of iron, and all the people that were with him, from Harosheth of the Gentiles unto the river of Kishon.
12850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Deborah said unto Barak, Up; for this is the day in which the LORD hath delivered Sisera into thine hand: is not the LORD gone out before thee? So Barak went down from mount Tabor, and ten thousand men after him.
12851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD discomfited Sisera, and all his chariots, and all his host, with the edge of the sword before Barak; so that Sisera lighted down off his chariot, and fled away on his feet.
12852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But Barak pursued after the chariots, and after the host, unto Harosheth of the Gentiles: and all the host of Sisera fell upon the edge of the sword; and there was not a man left.
12853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Howbeit Sisera fled away on his feet to the tent of Jael the wife of Heber the Kenite: for there was peace between Jabin the king of Hazor and the house of Heber the Kenite.
12854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jael went out to meet Sisera, and said unto him, Turn in, my lord, turn in to me; fear not. And when he had turned in unto her into the tent, she covered him with a mantle.
12855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto her, Give me, I pray thee, a little water to drink; for I am thirsty. And she opened a bottle of milk, and gave him drink, and covered him.
12856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Again he said unto her, Stand in the door of the tent, and it shall be, when any man doth come and inquire of thee, and say, Is there any man here? that thou shalt say, No.
12857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Jael Heber's wife took a nail of the tent, and took an hammer in her hand, and went softly unto him, and smote the nail into his temples, and fastened it into the ground: for he was fast asleep and weary. So he died.
12858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And, behold, as Barak pursued Sisera, Jael came out to meet him, and said unto him, Come, and I will show thee the man whom thou seekest. And when he came into her tent, behold, Sisera lay dead, and the nail was in his temples.
12859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So God subdued on that day Jabin the king of Canaan before the children of Israel.
12860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the hand of the children of Israel prospered, and prevailed against Jabin the king of Canaan, until they had destroyed Jabin king of Canaan.
12861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then sang Deborah and Barak the son of Abinoam on that day, saying,
12862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Praise ye the LORD for the avenging of Israel, when the people willingly offered themselves.
12863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Hear, O ye kings; give ear, O ye princes; I, even I, will sing unto the LORD; I will sing praise to the LORD God of Israel.
12864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LORD, when thou wentest out of Seir, when thou marchedst out of the field of Edom, the earth trembled, and the heavens dropped, the clouds also dropped water.
12865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The mountains melted from before the LORD, even that Sinai from before the LORD God of Israel.
12866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In the days of Shamgar the son of Anath, in the days of Jael, the highways were unoccupied, and the travellers walked through byways.
12867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The inhabitants of the villages ceased, they ceased in Israel, until that I Deborah arose, that I arose a mother in Israel.
12868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They chose new gods; then was war in the gates: was there a shield or spear seen among forty thousand in Israel?
12869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            My heart is toward the governors of Israel, that offered themselves willingly among the people. Bless ye the LORD.
12870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Speak, ye that ride on white asses, ye that sit in judgment, and walk by the way.
12871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 They that are delivered from the noise of archers in the places of drawing water, there shall they rehearse the righteous acts of the LORD, even the righteous acts toward the inhabitants of his villages in Israel: then shall the people of the LORD go down to the gates.
12872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Awake, awake, Deborah: awake, awake, utter a song: arise, Barak, and lead thy captivity captive, thou son of Abinoam.
12873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then he made him that remaineth have dominion over the nobles among the people: the LORD made me have dominion over the mighty.
12874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Out of Ephraim was there a root of them against Amalek; after thee, Benjamin, among thy people; out of Machir came down governors, and out of Zebulun they that handle the pen of the writer.
12875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the princes of Issachar were with Deborah; even Issachar, and also Barak: he was sent on foot into the valley. For the divisions of Reuben there were great thoughts of heart.
12876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Why abodest thou among the sheepfolds, to hear the bleatings of the flocks? For the divisions of Reuben there were great searchings of heart.
12877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Gilead abode beyond Jordan: and why did Dan remain in ships? Asher continued on the sea shore, and abode in his breaches.
12878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Zebulun and Naphtali were a people that jeoparded their lives unto the death in the high places of the field.
12879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The kings came and fought, then fought the kings of Canaan in Taanach by the waters of Megiddo; they took no gain of money.
12880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    They fought from heaven; the stars in their courses fought against Sisera.
12881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The river of Kishon swept them away, that ancient river, the river Kishon. O my soul, thou hast trodden down strength.
12882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then were the horsehoofs broken by the means of the pransings, the pransings of their mighty ones.
12883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Curse ye Meroz, said the angel of the LORD, curse ye bitterly the inhabitants thereof; because they came not to the help of the LORD, to the help of the LORD against the mighty.
12884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Blessed above women shall Jael the wife of Heber the Kenite be, blessed shall she be above women in the tent.
12885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He asked water, and she gave him milk; she brought forth butter in a lordly dish.
12886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                She put her hand to the nail, and her right hand to the workmen's hammer; and with the hammer she smote Sisera, she smote off his head, when she had pierced and stricken through his temples.
12887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           At her feet he bowed, he fell, he lay down: at her feet he bowed, he fell: where he bowed, there he fell down dead.
12888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The mother of Sisera looked out at a window, and cried through the lattice, Why is his chariot so long in coming? why tarry the wheels of his chariots?
12889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Her wise ladies answered her, yea, she returned answer to herself,
12890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Have they not sped? have they not divided the prey; to every man a damsel or two; to Sisera a prey of divers colors, a prey of divers colors of needlework, of divers colors of needlework on both sides, meet for the necks of them that take the spoil?
12891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So let all thine enemies perish, O LORD: but let them that love him be as the sun when he goeth forth in his might. And the land had rest forty years.
12892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel did evil in the sight of the LORD: and the LORD delivered them into the hand of Midian seven years.
12893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the hand of Midian prevailed against Israel: and because of the Midianites the children of Israel made them the dens which are in the mountains, and caves, and strong holds.
12894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And so it was, when Israel had sown, that the Midianites came up, and the Amalekites, and the children of the east, even they came up against them;
12895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they encamped against them, and destroyed the increase of the earth, till thou come unto Gaza, and left no sustenance for Israel, neither sheep, nor ox, nor ass.
12896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            For they came up with their cattle and their tents, and they came as grasshoppers for multitude; for both they and their camels were without number: and they entered into the land to destroy it.
12897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Israel was greatly impoverished because of the Midianites; and the children of Israel cried unto the LORD.
12898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when the children of Israel cried unto the LORD because of the Midianites,
12899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            That the LORD sent a prophet unto the children of Israel, which said unto them, Thus saith the LORD God of Israel, I brought you up from Egypt, and brought you forth out of the house of bondage;
12900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I delivered you out of the hand of the Egyptians, and out of the hand of all that oppressed you, and drave them out from before you, and gave you their land;
12901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And I said unto you, I am the LORD your God; fear not the gods of the Amorites, in whose land ye dwell: but ye have not obeyed my voice.
12902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there came an angel of the LORD, and sat under an oak which was in Ophrah, that pertained unto Joash the Abiezrite: and his son Gideon threshed wheat by the winepress, to hide it from the Midianites.
12903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the angel of the LORD appeared unto him, and said unto him, The LORD is with thee, thou mighty man of valor.
12904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Gideon said unto him, Oh my Lord, if the LORD be with us, why then is all this befallen us? and where be all his miracles which our fathers told us of, saying, Did not the LORD bring us up from Egypt? but now the LORD hath forsaken us, and delivered us into the hands of the Midianites.
12905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD looked upon him, and said, Go in this thy might, and thou shalt save Israel from the hand of the Midianites: have not I sent thee?
12906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto him, Oh my Lord, wherewith shall I save Israel? behold, my family is poor in Manasseh, and I am the least in my father's house.
12907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto him, Surely I will be with thee, and thou shalt smite the Midianites as one man.
12908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto him, If now I have found grace in thy sight, then show me a sign that thou talkest with me.
12909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Depart not hence, I pray thee, until I come unto thee, and bring forth my present, and set it before thee. And he said, I will tarry until thou come again.
12910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Gideon went in, and made ready a kid, and unleavened cakes of an ephah of flour: the flesh he put in a basket, and he put the broth in a pot, and brought it out unto him under the oak, and presented it.
12911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the angel of God said unto him, Take the flesh and the unleavened cakes, and lay them upon this rock, and pour out the broth. And he did so.
12912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the angel of the LORD put forth the end of the staff that was in his hand, and touched the flesh and the unleavened cakes; and there rose up fire out of the rock, and consumed the flesh and the unleavened cakes. Then the angel of the LORD departed out of his sight.
12913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when Gideon perceived that he was an angel of the LORD, Gideon said, Alas, O LORD God! for because I have seen an angel of the LORD face to face.
12914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the LORD said unto him, Peace be unto thee; fear not: thou shalt not die.
12915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Gideon built an altar there unto the LORD, and called it Jehovahshalom: unto this day it is yet in Ophrah of the Abiezrites.
12916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass the same night, that the LORD said unto him, Take thy father's young bullock, even the second bullock of seven years old, and throw down the altar of Baal that thy father hath, and cut down the grove that is by it:
12917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And build an altar unto the LORD thy God upon the top of this rock, in the ordered place, and take the second bullock, and offer a burnt sacrifice with the wood of the grove which thou shalt cut down.
12918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Gideon took ten men of his servants, and did as the LORD had said unto him: and so it was, because he feared his father's household, and the men of the city, that he could not do it by day, that he did it by night.
12919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the men of the city arose early in the morning, behold, the altar of Baal was cast down, and the grove was cut down that was by it, and the second bullock was offered upon the altar that was built.
12920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they said one to another, Who hath done this thing? And when they inquired and asked, they said, Gideon the son of Joash hath done this thing.
12921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the men of the city said unto Joash, Bring out thy son, that he may die: because he hath cast down the altar of Baal, and because he hath cut down the grove that was by it.
12922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Joash said unto all that stood against him, Will ye plead for Baal? will ye save him? he that will plead for him, let him be put to death whilst it is yet morning: if he be a god, let him plead for himself, because one hath cast down his altar.
12923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore on that day he called him Jerubbaal, saying, Let Baal plead against him, because he hath thrown down his altar.
12924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then all the Midianites and the Amalekites and the children of the east were gathered together, and went over, and pitched in the valley of Jezreel.
12925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the Spirit of the LORD came upon Gideon, and he blew a trumpet; and Abiezer was gathered after him.
12926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he sent messengers throughout all Manasseh; who also was gathered after him: and he sent messengers unto Asher, and unto Zebulun, and unto Naphtali; and they came up to meet them.
12927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Gideon said unto God, If thou wilt save Israel by mine hand, as thou hast said,
12928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, I will put a fleece of wool in the floor; and if the dew be on the fleece only, and it be dry upon all the earth beside, then shall I know that thou wilt save Israel by mine hand, as thou hast said.
12929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it was so: for he rose up early on the morrow, and thrust the fleece together, and wringed the dew out of the fleece, a bowl full of water.
12930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Gideon said unto God, Let not thine anger be hot against me, and I will speak but this once: let me prove, I pray thee, but this once with the fleece; let it now be dry only upon the fleece, and upon all the ground let there be dew.
12931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And God did so that night: for it was dry upon the fleece only, and there was dew on all the ground.
12932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Jerubbaal, who is Gideon, and all the people that were with him, rose up early, and pitched beside the well of Harod: so that the host of the Midianites were on the north side of them, by the hill of Moreh, in the valley.
12933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD said unto Gideon, The people that are with thee are too many for me to give the Midianites into their hands, lest Israel vaunt themselves against me, saying, Mine own hand hath saved me.
12934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore go to, proclaim in the ears of the people, saying, Whosoever is fearful and afraid, let him return and depart early from mount Gilead. And there returned of the people twenty and two thousand; and there remained ten thousand.
12935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto Gideon, The people are yet too many; bring them down unto the water, and I will try them for thee there: and it shall be, that of whom I say unto thee, This shall go with thee, the same shall go with thee; and of whomsoever I say unto thee, This shall not go with thee, the same shall not go.
12936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So he brought down the people unto the water: and the LORD said unto Gideon, Every one that lappeth of the water with his tongue, as a dog lappeth, him shalt thou set by himself; likewise every one that boweth down upon his knees to drink.
12937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the number of them that lapped, putting their hand to their mouth, were three hundred men: but all the rest of the people bowed down upon their knees to drink water.
12938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD said unto Gideon, By the three hundred men that lapped will I save you, and deliver the Midianites into thine hand: and let all the other people go every man unto his place.
12939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So the people took victuals in their hand, and their trumpets: and he sent all the rest of Israel every man unto his tent, and retained those three hundred men: and the host of Midian was beneath him in the valley.
12940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass the same night, that the LORD said unto him, Arise, get thee down unto the host; for I have delivered it into thine hand.
12941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But if thou fear to go down, go thou with Phurah thy servant down to the host:
12942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And thou shalt hear what they say; and afterward shall thine hands be strengthened to go down unto the host. Then went he down with Phurah his servant unto the outside of the armed men that were in the host.
12943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the Midianites and the Amalekites and all the children of the east lay along in the valley like grasshoppers for multitude; and their camels were without number, as the sand by the sea side for multitude.
12944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Gideon was come, behold, there was a man that told a dream unto his fellow, and said, Behold, I dreamed a dream, and, lo, a cake of barley bread tumbled into the host of Midian, and came unto a tent, and smote it that it fell, and overturned it, that the tent lay along.
12945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And his fellow answered and said, This is nothing else save the sword of Gideon the son of Joash, a man of Israel: for into his hand hath God delivered Midian, and all the host.
12946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was so, when Gideon heard the telling of the dream, and the interpretation thereof, that he worshipped, and returned into the host of Israel, and said, Arise; for the LORD hath delivered into your hand the host of Midian.
12947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he divided the three hundred men into three companies, and he put a trumpet in every man's hand, with empty pitchers, and lamps within the pitchers.
12948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said unto them, Look on me, and do likewise: and, behold, when I come to the outside of the camp, it shall be that, as I do, so shall ye do.
12949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When I blow with a trumpet, I and all that are with me, then blow ye the trumpets also on every side of all the camp, and say, The sword of the LORD, and of Gideon.
12950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So Gideon, and the hundred men that were with him, came unto the outside of the camp in the beginning of the middle watch; and they had but newly set the watch: and they blew the trumpets, and brake the pitchers that were in their hands.
12951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the three companies blew the trumpets, and brake the pitchers, and held the lamps in their left hands, and the trumpets in their right hands to blow withal: and they cried, The sword of the LORD, and of Gideon.
12952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they stood every man in his place round about the camp; and all the host ran, and cried, and fled.
12953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the three hundred blew the trumpets, and the LORD set every man's sword against his fellow, even throughout all the host: and the host fled to Bethshittah in Zererath, and to the border of Abelmeholah, unto Tabbath.
12954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the men of Israel gathered themselves together out of Naphtali, and out of Asher, and out of all Manasseh, and pursued after the Midianites.
12955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Gideon sent messengers throughout all mount Ephraim, saying, come down against the Midianites, and take before them the waters unto Bethbarah and Jordan. Then all the men of Ephraim gathered themselves together, and took the waters unto Bethbarah and Jordan.
12956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they took two princes of the Midianites, Oreb and Zeeb; and they slew Oreb upon the rock Oreb, and Zeeb they slew at the winepress of Zeeb, and pursued Midian, and brought the heads of Oreb and Zeeb to Gideon on the other side Jordan.
12957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the men of Ephraim said unto him, Why hast thou served us thus, that thou calledst us not, when thou wentest to fight with the Midianites? And they did chide with him sharply.
12958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto them, What have I done now in comparison of you? Is not the gleaning of the grapes of Ephraim better than the vintage of Abiezer?
12959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       God hath delivered into your hands the princes of Midian, Oreb and Zeeb: and what was I able to do in comparison of you? Then their anger was abated toward him, when he had said that.
12960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Gideon came to Jordan, and passed over, he, and the three hundred men that were with him, faint, yet pursuing them.
12961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said unto the men of Succoth, Give, I pray you, loaves of bread unto the people that follow me; for they be faint, and I am pursuing after Zebah and Zalmunna, kings of Midian.
12962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the princes of Succoth said, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thine army?
12963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Gideon said, Therefore when the LORD hath delivered Zebah and Zalmunna into mine hand, then I will tear your flesh with the thorns of the wilderness and with briers.
12964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he went up thence to Penuel, and spake unto them likewise: and the men of Penuel answered him as the men of Succoth had answered him.
12965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he spake also unto the men of Penuel, saying, When I come again in peace, I will break down this tower.
12966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now Zebah and Zalmunna were in Karkor, and their hosts with them, about fifteen thousand men, all that were left of all the hosts of the children of the east: for there fell an hundred and twenty thousand men that drew sword.
12967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Gideon went up by the way of them that dwelt in tents on the east of Nobah and Jogbehah, and smote the host; for the host was secure.
12968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when Zebah and Zalmunna fled, he pursued after them, and took the two kings of Midian, Zebah and Zalmunna, and discomfited all the host.
12969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Gideon the son of Joash returned from battle before the sun was up,
12970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And caught a young man of the men of Succoth, and inquired of him: and he described unto him the princes of Succoth, and the elders thereof, even threescore and seventeen men.
12971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he came unto the men of Succoth, and said, Behold Zebah and Zalmunna, with whom ye did upbraid me, saying, Are the hands of Zebah and Zalmunna now in thine hand, that we should give bread unto thy men that are weary?
12972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he took the elders of the city, and thorns of the wilderness and briers, and with them he taught the men of Succoth.
12973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he beat down the tower of Penuel, and slew the men of the city.
12974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said he unto Zebah and Zalmunna, What manner of men were they whom ye slew at Tabor? And they answered, As thou art, so were they; each one resembled the children of a king.
12975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, They were my brethren, even the sons of my mother: as the LORD liveth, if ye had saved them alive, I would not slay you.
12976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said unto Jether his firstborn, Up, and slay them. But the youth drew not his sword: for he feared, because he was yet a youth.
12977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Zebah and Zalmunna said, Rise thou, and fall upon us: for as the man is, so is his strength. And Gideon arose, and slew Zebah and Zalmunna, and took away the ornaments that were on their camels' necks.
12978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then the men of Israel said unto Gideon, Rule thou over us, both thou, and thy son, and thy son's son also: for thou hast delivered us from the hand of Midian.
12979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Gideon said unto them, I will not rule over you, neither shall my son rule over you: the LORD shall rule over you.
12980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Gideon said unto them, I would desire a request of you, that ye would give me every man the earrings of his prey. (For they had golden earrings, because they were Ishmaelites.)
12981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they answered, We will willingly give them. And they spread a garment, and did cast therein every man the earrings of his prey.
12982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the weight of the golden earrings that he requested was a thousand and seven hundred shekels of gold; beside ornaments, and collars, and purple raiment that was on the kings of Midian, and beside the chains that were about their camels' necks.
12983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Gideon made an ephod thereof, and put it in his city, even in Ophrah: and all Israel went thither a whoring after it: which thing became a snare unto Gideon, and to his house.
12984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus was Midian subdued before the children of Israel, so that they lifted up their heads no more. And the country was in quietness forty years in the days of Gideon.
12985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jerubbaal the son of Joash went and dwelt in his own house.
12986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Gideon had threescore and ten sons of his body begotten: for he had many wives.
12987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And his concubine that was in Shechem, she also bare him a son, whose name he called Abimelech.
12988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Gideon the son of Joash died in a good old age, and was buried in the sepulchre of Joash his father, in Ophrah of the Abiezrites.
12989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, as soon as Gideon was dead, that the children of Israel turned again, and went a whoring after Baalim, and made Baalberith their god.
12990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel remembered not the LORD their God, who had delivered them out of the hands of all their enemies on every side:
12991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Neither showed they kindness to the house of Jerubbaal, namely, Gideon, according to all the goodness which he had showed unto Israel.
12992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abimelech the son of Jerubbaal went to Shechem unto his mother's brethren, and communed with them, and with all the family of the house of his mother's father, saying,
12993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak, I pray you, in the ears of all the men of Shechem, Whether is better for you, either that all the sons of Jerubbaal, which are threescore and ten persons, reign over you, or that one reign over you? remember also that I am your bone and your flesh.
12994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And his mother's brethren spake of him in the ears of all the men of Shechem all these words: and their hearts inclined to follow Abimelech; for they said, He is our brother.
12995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they gave him threescore and ten pieces of silver out of the house of Baalberith, wherewith Abimelech hired vain and light persons, which followed him.
12996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he went unto his father's house at Ophrah, and slew his brethren the sons of Jerubbaal, being threescore and ten persons, upon one stone: notwithstanding yet Jotham the youngest son of Jerubbaal was left; for he hid himself.
12997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all the men of Shechem gathered together, and all the house of Millo, and went, and made Abimelech king, by the plain of the pillar that was in Shechem.
12998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when they told it to Jotham, he went and stood in the top of mount Gerizim, and lifted up his voice, and cried, and said unto them, Hearken unto me, ye men of Shechem, that God may hearken unto you.
12999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The trees went forth on a time to anoint a king over them; and they said unto the olive tree, Reign thou over us.
13000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the olive tree said unto them, Should I leave my fatness, wherewith by me they honor God and man, and go to be promoted over the trees?
13001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the trees said to the fig tree, Come thou, and reign over us.
13002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the fig tree said unto them, Should I forsake my sweetness, and my good fruit, and go to be promoted over the trees?
13003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then said the trees unto the vine, Come thou, and reign over us.
13004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the vine said unto them, Should I leave my wine, which cheereth God and man, and go to be promoted over the trees?
13005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then said all the trees unto the bramble, Come thou, and reign over us.
13006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the bramble said unto the trees, If in truth ye anoint me king over you, then come and put your trust in my shadow: and if not, let fire come out of the bramble, and devour the cedars of Lebanon.
13007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now therefore, if ye have done truly and sincerely, in that ye have made Abimelech king, and if ye have dealt well with Jerubbaal and his house, and have done unto him according to the deserving of his hands;
13008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (For my father fought for you, and adventured his life far, and delivered you out of the hand of Midian:
13009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And ye are risen up against my father's house this day, and have slain his sons, threescore and ten persons, upon one stone, and have made Abimelech, the son of his maidservant, king over the men of Shechem, because he is your brother;)
13010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If ye then have dealt truly and sincerely with Jerubbaal and with his house this day, then rejoice ye in Abimelech, and let him also rejoice in you:
13011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if not, let fire come out from Abimelech, and devour the men of Shechem, and the house of Millo; and let fire come out from the men of Shechem, and from the house of Millo, and devour Abimelech.
13012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jotham ran away, and fled, and went to Beer, and dwelt there, for fear of Abimelech his brother.
13013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When Abimelech had reigned three years over Israel,
13014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then God sent an evil spirit between Abimelech and the men of Shechem; and the men of Shechem dealt treacherously with Abimelech:
13015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             That the cruelty done to the threescore and ten sons of Jerubbaal might come, and their blood be laid upon Abimelech their brother, which slew them; and upon the men of Shechem, which aided him in the killing of his brethren.
13016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the men of Shechem set liers in wait for him in the top of the mountains, and they robbed all that came along that way by them: and it was told Abimelech.
13017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Gaal the son of Ebed came with his brethren, and went over to Shechem: and the men of Shechem put their confidence in him.
13018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they went out into the fields, and gathered their vineyards, and trode the grapes, and made merry, and went into the house of their god, and did eat and drink, and cursed Abimelech.
13019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Gaal the son of Ebed said, Who is Abimelech, and who is Shechem, that we should serve him? is not he the son of Jerubbaal? and Zebul his officer? serve the men of Hamor the father of Shechem: for why should we serve him?
13020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And would to God this people were under my hand! then would I remove Abimelech. And he said to Abimelech, Increase thine army, and come out.
13021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when Zebul the ruler of the city heard the words of Gaal the son of Ebed, his anger was kindled.
13022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he sent messengers unto Abimelech privily, saying, Behold, Gaal the son of Ebed and his brethren be come to Shechem; and, behold, they fortify the city against thee.
13023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore up by night, thou and the people that is with thee, and lie in wait in the field:
13024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it shall be, that in the morning, as soon as the sun is up, thou shalt rise early, and set upon the city: and, behold, when he and the people that is with him come out against thee, then mayest thou do to them as thou shalt find occasion.
13025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Abimelech rose up, and all the people that were with him, by night, and they laid wait against Shechem in four companies.
13026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Gaal the son of Ebed went out, and stood in the entering of the gate of the city: and Abimelech rose up, and the people that were with him, from lying in wait.
13027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Gaal saw the people, he said to Zebul, Behold, there come people down from the top of the mountains. And Zebul said unto him, Thou seest the shadow of the mountains as if they were men.
13028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Gaal spake again, and said, See there come people down by the middle of the land, and another company come along by the plain of Meonenim.
13029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said Zebul unto him, Where is now thy mouth, wherewith thou saidst, Who is Abimelech, that we should serve him? is not this the people that thou hast despised? go out, I pray now, and fight with them.
13030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Gaal went out before the men of Shechem, and fought with Abimelech.
13031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abimelech chased him, and he fled before him, and many were overthrown and wounded, even unto the entering of the gate.
13032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abimelech dwelt at Arumah: and Zebul thrust out Gaal and his brethren, that they should not dwell in Shechem.
13033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass on the morrow, that the people went out into the field; and they told Abimelech.
13034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he took the people, and divided them into three companies, and laid wait in the field, and looked, and, behold, the people were come forth out of the city; and he rose up against them, and smote them.
13035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abimelech, and the company that was with him, rushed forward, and stood in the entering of the gate of the city: and the two other companies ran upon all the people that were in the fields, and slew them.
13036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abimelech fought against the city all that day; and he took the city, and slew the people that was therein, and beat down the city, and sowed it with salt.
13037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when all the men of the tower of Shechem heard that, they entered into an hold of the house of the god Berith.
13038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it was told Abimelech, that all the men of the tower of Shechem were gathered together.
13039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Abimelech gat him up to mount Zalmon, he and all the people that were with him; and Abimelech took an axe in his hand, and cut down a bough from the trees, and took it, and laid it on his shoulder, and said unto the people that were with him, What ye have seen me do, make haste, and do as I have done.
13040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the people likewise cut down every man his bough, and followed Abimelech, and put them to the hold, and set the hold on fire upon them; so that all the men of the tower of Shechem died also, about a thousand men and women.
13041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then went Abimelech to Thebez, and encamped against Thebez, and took it.
13042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But there was a strong tower within the city, and thither fled all the men and women, and all they of the city, and shut it to them, and gat them up to the top of the tower.
13043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Abimelech came unto the tower, and fought against it, and went hard unto the door of the tower to burn it with fire.
13044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And a certain woman cast a piece of a millstone upon Abimelech's head, and all to brake his skull.
13045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then he called hastily unto the young man his armourbearer, and said unto him, Draw thy sword, and slay me, that men say not of me, A women slew him. And his young man thrust him through, and he died.
13046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when the men of Israel saw that Abimelech was dead, they departed every man unto his place.
13047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thus God rendered the wickedness of Abimelech, which he did unto his father, in slaying his seventy brethren:
13048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And all the evil of the men of Shechem did God render upon their heads: and upon them came the curse of Jotham the son of Jerubbaal.
13049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And after Abimelech there arose to defend Israel Tola the son of Puah, the son of Dodo, a man of Issachar; and he dwelt in Shamir in mount Ephraim.
13050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he judged Israel twenty and three years, and died, and was buried in Shamir.
13051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And after him arose Jair, a Gileadite, and judged Israel twenty and two years.
13052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he had thirty sons that rode on thirty ass colts, and they had thirty cities, which are called Havothjair unto this day, which are in the land of Gilead.
13053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jair died, and was buried in Camon.
13054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the children of Israel did evil again in the sight of the LORD, and served Baalim, and Ashtaroth, and the gods of Syria, and the gods of Zidon, and the gods of Moab, and the gods of the children of Ammon, and the gods of the Philistines, and forsook the LORD, and served not him.
13055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the anger of the LORD was hot against Israel, and he sold them into the hands of the Philistines, and into the hands of the children of Ammon.
13056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And that year they vexed and oppressed the children of Israel: eighteen years, all the children of Israel that were on the other side Jordan in the land of the Amorites, which is in Gilead.
13057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover the children of Ammon passed over Jordan to fight also against Judah, and against Benjamin, and against the house of Ephraim; so that Israel was sore distressed.
13058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the children of Israel cried unto the LORD, saying, We have sinned against thee, both because we have forsaken our God, and also served Baalim.
13059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said unto the children of Israel, Did not I deliver you from the Egyptians, and from the Amorites, from the children of Ammon, and from the Philistines?
13060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The Zidonians also, and the Amalekites, and the Maonites, did oppress you; and ye cried to me, and I delivered you out of their hand.
13061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet ye have forsaken me, and served other gods: wherefore I will deliver you no more.
13062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Go and cry unto the gods which ye have chosen; let them deliver you in the time of your tribulation.
13063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Israel said unto the LORD, We have sinned: do thou unto us whatsoever seemeth good unto thee; deliver us only, we pray thee, this day.
13064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they put away the strange gods from among them, and served the LORD: and his soul was grieved for the misery of Israel.
13065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the children of Ammon were gathered together, and encamped in Gilead. And the children of Israel assembled themselves together, and encamped in Mizpeh.
13066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the people and princes of Gilead said one to another, What man is he that will begin to fight against the children of Ammon? he shall be head over all the inhabitants of Gilead.
13067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now Jephthah the Gileadite was a mighty man of valor, and he was the son of an harlot: and Gilead begat Jephthah.
13068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Gilead's wife bare him sons; and his wife's sons grew up, and they thrust out Jephthah, and said unto him, Thou shalt not inherit in our father's house; for thou art the son of a strange woman.
13069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Jephthah fled from his brethren, and dwelt in the land of Tob: and there were gathered vain men to Jephthah, and went out with him.
13070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass in process of time, that the children of Ammon made war against Israel.
13071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it was so, that when the children of Ammon made war against Israel, the elders of Gilead went to fetch Jephthah out of the land of Tob:
13072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they said unto Jephthah, Come, and be our captain, that we may fight with the children of Ammon.
13073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Jephthah said unto the elders of Gilead, Did not ye hate me, and expel me out of my father's house? and why are ye come unto me now when ye are in distress?
13074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the elders of Gilead said unto Jephthah, Therefore we turn again to thee now, that thou mayest go with us, and fight against the children of Ammon, and be our head over all the inhabitants of Gilead.
13075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jephthah said unto the elders of Gilead, If ye bring me home again to fight against the children of Ammon, and the LORD deliver them before me, shall I be your head?
13076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the elders of Gilead said unto Jephthah, The LORD be witness between us, if we do not so according to thy words.
13077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Jephthah went with the elders of Gilead, and the people made him head and captain over them: and Jephthah uttered all his words before the LORD in Mizpeh.
13078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jephthah sent messengers unto the king of the children of Ammon, saying, What hast thou to do with me, that thou art come against me to fight in my land?
13079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king of the children of Ammon answered unto the messengers of Jephthah, Because Israel took away my land, when they came up out of Egypt, from Arnon even unto Jabbok, and unto Jordan: now therefore restore those lands again peaceably.
13080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jephthah sent messengers again unto the king of the children of Ammon:
13081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And said unto him, Thus saith Jephthah, Israel took not away the land of Moab, nor the land of the children of Ammon:
13082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But when Israel came up from Egypt, and walked through the wilderness unto the Red sea, and came to Kadesh;
13083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Israel sent messengers unto the king of Edom, saying, Let me, I pray thee, pass through thy land: but the king of Edom would not hearken thereto. And in like manner they sent unto the king of Moab: but he would not consent: and Israel abode in Kadesh.
13084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then they went along through the wilderness, and compassed the land of Edom, and the land of Moab, and came by the east side of the land of Moab, and pitched on the other side of Arnon, but came not within the border of Moab: for Arnon was the border of Moab.
13085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Israel sent messengers unto Sihon king of the Amorites, the king of Heshbon; and Israel said unto him, Let us pass, we pray thee, through thy land into my place.
13086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But Sihon trusted not Israel to pass through his coast: but Sihon gathered all his people together, and pitched in Jahaz, and fought against Israel.
13087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD God of Israel delivered Sihon and all his people into the hand of Israel, and they smote them: so Israel possessed all the land of the Amorites, the inhabitants of that country.
13088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they possessed all the coasts of the Amorites, from Arnon even unto Jabbok, and from the wilderness even unto Jordan.
13089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So now the LORD God of Israel hath dispossessed the Amorites from before his people Israel, and shouldest thou possess it?
13090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wilt not thou possess that which Chemosh thy god giveth thee to possess? So whomsoever the LORD our God shall drive out from before us, them will we possess.
13091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And now art thou any thing better than Balak the son of Zippor, king of Moab? did he ever strive against Israel, or did he ever fight against them,
13092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             While Israel dwelt in Heshbon and her towns, and in Aroer and her towns, and in all the cities that be along by the coasts of Arnon, three hundred years? why therefore did ye not recover them within that time?
13093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore I have not sinned against thee, but thou doest me wrong to war against me: the LORD the Judge be judge this day between the children of Israel and the children of Ammon.
13094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Howbeit the king of the children of Ammon hearkened not unto the words of Jephthah which he sent him.
13095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then the Spirit of the LORD came upon Jephthah, and he passed over Gilead, and Manasseh, and passed over Mizpeh of Gilead, and from Mizpeh of Gilead he passed over unto the children of Ammon.
13096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jephthah vowed a vow unto the LORD, and said, If thou shalt without fail deliver the children of Ammon into mine hands,
13097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then it shall be, that whatsoever cometh forth of the doors of my house to meet me, when I return in peace from the children of Ammon, shall surely be the LORD's, and I will offer it up for a burnt offering.
13098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Jephthah passed over unto the children of Ammon to fight against them; and the LORD delivered them into his hands.
13099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he smote them from Aroer, even till thou come to Minnith, even twenty cities, and unto the plain of the vineyards, with a very great slaughter. Thus the children of Ammon were subdued before the children of Israel.
13100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jephthah came to Mizpeh unto his house, and, behold, his daughter came out to meet him with timbrels and with dances: and she was his only child; beside her he had neither son nor daughter.
13101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when he saw her, that he rent his clothes, and said, Alas, my daughter! thou hast brought me very low, and thou art one of them that trouble me: for I have opened my mouth unto the LORD, and I cannot go back.
13102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she said unto him, My father, if thou hast opened thy mouth unto the LORD, do to me according to that which hath proceeded out of thy mouth; forasmuch as the LORD hath taken vengeance for thee of thine enemies, even of the children of Ammon.
13103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she said unto her father, Let this thing be done for me: let me alone two months, that I may go up and down upon the mountains, and bewail my virginity, I and my fellows.
13104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said, Go. And he sent her away for two months: and she went with her companions, and bewailed her virginity upon the mountains.
13105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass at the end of two months, that she returned unto her father, who did with her according to his vow which he had vowed: and she knew no man. And it was a custom in Israel,
13106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                That the daughters of Israel went yearly to lament the daughter of Jephthah the Gileadite four days in a year.
13107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the men of Ephraim gathered themselves together, and went northward, and said unto Jephthah, Wherefore passedst thou over to fight against the children of Ammon, and didst not call us to go with thee? we will burn thine house upon thee with fire.
13108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jephthah said unto them, I and my people were at great strife with the children of Ammon; and when I called you, ye delivered me not out of their hands.
13109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when I saw that ye delivered me not, I put my life in my hands, and passed over against the children of Ammon, and the LORD delivered them into my hand: wherefore then are ye come up unto me this day, to fight against me?
13110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Jephthah gathered together all the men of Gilead, and fought with Ephraim: and the men of Gilead smote Ephraim, because they said, Ye Gileadites are fugitives of Ephraim among the Ephraimites, and among the Manassites.
13111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the Gileadites took the passages of Jordan before the Ephraimites: and it was so, that when those Ephraimites which were escaped said, Let me go over; that the men of Gilead said unto him, Art thou an Ephraimite? If he said, Nay;
13112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said they unto him, Say now Shibboleth: and he said Sibboleth: for he could not frame to pronounce it right. Then they took him, and slew him at the passages of Jordan: and there fell at that time of the Ephraimites forty and two thousand.
13113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jephthah judged Israel six years. Then died Jephthah the Gileadite, and was buried in one of the cities of Gilead.
13114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And after him Ibzan of Bethlehem judged Israel.
13115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he had thirty sons, and thirty daughters, whom he sent abroad, and took in thirty daughters from abroad for his sons. And he judged Israel seven years.
13116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then died Ibzan, and was buried at Bethlehem.
13117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And after him Elon, a Zebulonite, judged Israel; and he judged Israel ten years.
13118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Elon the Zebulonite died, and was buried in Aijalon in the country of Zebulun.
13119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And after him Abdon the son of Hillel, a Pirathonite, judged Israel.
13120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he had forty sons and thirty nephews, that rode on threescore and ten ass colts: and he judged Israel eight years.
13121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Abdon the son of Hillel the Pirathonite died, and was buried in Pirathon in the land of Ephraim, in the mount of the Amalekites.
13122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the children of Israel did evil again in the sight of the LORD; and the LORD delivered them into the hand of the Philistines forty years.
13123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there was a certain man of Zorah, of the family of the Danites, whose name was Manoah; and his wife was barren, and bare not.
13124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the angel of the LORD appeared unto the woman, and said unto her, Behold now, thou art barren, and bearest not: but thou shalt conceive, and bear a son.
13125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now therefore beware, I pray thee, and drink not wine nor strong drink, and eat not any unclean thing:
13126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For, lo, thou shalt conceive, and bear a son; and no razor shall come on his head: for the child shall be a Nazarite unto God from the womb: and he shall begin to deliver Israel out of the hand of the Philistines.
13127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the woman came and told her husband, saying, A man of God came unto me, and his countenance was like the countenance of an angel of God, very terrible: but I asked him not whence he was, neither told he me his name:
13128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But he said unto me, Behold, thou shalt conceive, and bear a son; and now drink no wine nor strong drink, neither eat any unclean thing: for the child shall be a Nazarite to God from the womb to the day of his death.
13129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Manoah intreated the LORD, and said, O my Lord, let the man of God which thou didst send come again unto us, and teach us what we shall do unto the child that shall be born.
13130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And God hearkened to the voice of Manoah; and the angel of God came again unto the woman as she sat in the field: but Manoah her husband was not with her.
13131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the woman made haste, and ran, and showed her husband, and said unto him, Behold, the man hath appeared unto me, that came unto me the other day.
13132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Manoah arose, and went after his wife, and came to the man, and said unto him, Art thou the man that spakest unto the woman? And he said, I am.
13133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Manoah said, Now let thy words come to pass. How shall we order the child, and how shall we do unto him?
13134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the angel of the LORD said unto Manoah, Of all that I said unto the woman let her beware.
13135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        She may not eat of any thing that cometh of the vine, neither let her drink wine or strong drink, nor eat any unclean thing: all that I commanded her let her observe.
13136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Manoah said unto the angel of the LORD, I pray thee, let us detain thee, until we shall have made ready a kid for thee.
13137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the angel of the LORD said unto Manoah, Though thou detain me, I will not eat of thy bread: and if thou wilt offer a burnt offering, thou must offer it unto the LORD. For Manoah knew not that he was an angel of the LORD.
13138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Manoah said unto the angel of the LORD, What is thy name, that when thy sayings come to pass we may do thee honor?
13139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the angel of the LORD said unto him, Why askest thou thus after my name, seeing it is secret?
13140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Manoah took a kid with a meat offering, and offered it upon a rock unto the LORD: and the angel did wonderously; and Manoah and his wife looked on.
13141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For it came to pass, when the flame went up toward heaven from off the altar, that the angel of the LORD ascended in the flame of the altar. And Manoah and his wife looked on it, and fell on their faces to the ground.
13142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the angel of the LORD did no more appear to Manoah and to his wife. Then Manoah knew that he was an angel of the LORD.
13143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Manoah said unto his wife, We shall surely die, because we have seen God.
13144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But his wife said unto him, If the LORD were pleased to kill us, he would not have received a burnt offering and a meat offering at our hands, neither would he have showed us all these things, nor would as at this time have told us such things as these.
13145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the woman bare a son, and called his name Samson: and the child grew, and the LORD blessed him.
13146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Spirit of the LORD began to move him at times in the camp of Dan between Zorah and Eshtaol.
13147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Samson went down to Timnath, and saw a woman in Timnath of the daughters of the Philistines.
13148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he came up, and told his father and his mother, and said, I have seen a woman in Timnath of the daughters of the Philistines: now therefore get her for me to wife.
13149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then his father and his mother said unto him, Is there never a woman among the daughters of thy brethren, or among all my people, that thou goest to take a wife of the uncircumcised Philistines? And Samson said unto his father, Get her for me; for she pleaseth me well.
13150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But his father and his mother knew not that it was of the LORD, that he sought an occasion against the Philistines: for at that time the Philistines had dominion over Israel.
13151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then went Samson down, and his father and his mother, to Timnath, and came to the vineyards of Timnath: and, behold, a young lion roared against him.
13152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the Spirit of the LORD came mightily upon him, and he rent him as he would have rent a kid, and he had nothing in his hand: but he told not his father or his mother what he had done.
13153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he went down, and talked with the woman; and she pleased Samson well.
13154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And after a time he returned to take her, and he turned aside to see the carcass of the lion: and, behold, there was a swarm of bees and honey in the carcass of the lion.
13155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he took thereof in his hands, and went on eating, and came to his father and mother, and he gave them, and they did eat: but he told not them that he had taken the honey out of the carcass of the lion.
13156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So his father went down unto the woman: and Samson made there a feast; for so used the young men to do.
13157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when they saw him, that they brought thirty companions to be with him.
13158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Samson said unto them, I will now put forth a riddle unto you: if ye can certainly declare it me within the seven days of the feast, and find it out, then I will give you thirty sheets and thirty change of garments:
13159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But if ye cannot declare it me, then shall ye give me thirty sheets and thirty change of garments. And they said unto him, Put forth thy riddle, that we may hear it.
13160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto them, Out of the eater came forth meat, and out of the strong came forth sweetness. And they could not in three days expound the riddle.
13161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass on the seventh day, that they said unto Samson's wife, Entice thy husband, that he may declare unto us the riddle, lest we burn thee and thy father's house with fire: have ye called us to take that we have? is it not so?
13162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Samson's wife wept before him, and said, Thou dost but hate me, and lovest me not: thou hast put forth a riddle unto the children of my people, and hast not told it me. And he said unto her, Behold, I have not told it my father nor my mother, and shall I tell it thee?
13163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And she wept before him the seven days, while their feast lasted: and it came to pass on the seventh day, that he told her, because she lay sore upon him: and she told the riddle to the children of her people.
13164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the men of the city said unto him on the seventh day before the sun went down, What is sweeter than honey? And what is stronger than a lion? and he said unto them, If ye had not plowed with my heifer, ye had not found out my riddle.
13165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the Spirit of the LORD came upon him, and he went down to Ashkelon, and slew thirty men of them, and took their spoil, and gave change of garments unto them which expounded the riddle. And his anger was kindled, and he went up to his father's house.
13166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But Samson's wife was given to his companion, whom he had used as his friend.
13167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But it came to pass within a while after, in the time of wheat harvest, that Samson visited his wife with a kid; and he said, I will go in to my wife into the chamber. But her father would not suffer him to go in.
13168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And her father said, I verily thought that thou hadst utterly hated her; therefore I gave her to thy companion: is not her younger sister fairer than she? take her, I pray thee, instead of her.
13169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Samson said concerning them, Now shall I be more blameless than the Philistines, though I do them a displeasure.
13170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Samson went and caught three hundred foxes, and took firebrands, and turned tail to tail, and put a firebrand in the midst between two tails.
13171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when he had set the brands on fire, he let them go into the standing corn of the Philistines, and burnt up both the shocks, and also the standing corn, with the vineyards and olives.
13172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the Philistines said, Who hath done this? And they answered, Samson, the son in law of the Timnite, because he had taken his wife, and given her to his companion. And the Philistines came up, and burnt her and her father with fire.
13173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Samson said unto them, Though ye have done this, yet will I be avenged of you, and after that I will cease.
13174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he smote them hip and thigh with a great slaughter: and he went down and dwelt in the top of the rock Etam.
13175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the Philistines went up, and pitched in Judah, and spread themselves in Lehi.
13176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the men of Judah said, Why are ye come up against us? And they answered, To bind Samson are we come up, to do to him as he hath done to us.
13177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then three thousand men of Judah went to the top of the rock Etam, and said to Samson, Knowest thou not that the Philistines are rulers over us? what is this that thou hast done unto us? And he said unto them, As they did unto me, so have I done unto them.
13178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they said unto him, We are come down to bind thee, that we may deliver thee into the hand of the Philistines. And Samson said unto them, Swear unto me, that ye will not fall upon me yourselves.
13179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they spake unto him, saying, No; but we will bind thee fast, and deliver thee into their hand: but surely we will not kill thee. And they bound him with two new cords, and brought him up from the rock.
13180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when he came unto Lehi, the Philistines shouted against him: and the Spirit of the LORD came mightily upon him, and the cords that were upon his arms became as flax that was burnt with fire, and his bands loosed from off his hands.
13181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he found a new jawbone of an ass, and put forth his hand, and took it, and slew a thousand men therewith.
13182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Samson said, With the jawbone of an ass, heaps upon heaps, with the jaw of an ass have I slain a thousand men.
13183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when he had made an end of speaking, that he cast away the jawbone out of his hand, and called that place Ramathlehi.
13184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he was sore athirst, and called on the LORD, and said, Thou hast given this great deliverance into the hand of thy servant: and now shall I die for thirst, and fall into the hand of the uncircumcised?
13185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But God clave an hollow place that was in the jaw, and there came water thereout; and when he had drunk, his spirit came again, and he revived: wherefore he called the name thereof Enhakkore, which is in Lehi unto this day.
13186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he judged Israel in the days of the Philistines twenty years.
13187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then went Samson to Gaza, and saw there an harlot, and went in unto her.
13188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it was told the Gazites, saying, Samson is come hither. And they compassed him in, and laid wait for him all night in the gate of the city, and were quiet all the night, saying, In the morning, when it is day, we shall kill him.
13189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Samson lay till midnight, and arose at midnight, and took the doors of the gate of the city, and the two posts, and went away with them, bar and all, and put them upon his shoulders, and carried them up to the top of an hill that is before Hebron.
13190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass afterward, that he loved a woman in the valley of Sorek, whose name was Delilah.
13191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the lords of the Philistines came up unto her, and said unto her, Entice him, and see wherein his great strength lieth, and by what means we may prevail against him, that we may bind him to afflict him; and we will give thee every one of us eleven hundred pieces of silver.
13192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Delilah said to Samson, Tell me, I pray thee, wherein thy great strength lieth, and wherewith thou mightest be bound to afflict thee.
13193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Samson said unto her, If they bind me with seven green withes that were never dried, then shall I be weak, and be as another man.
13194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then the lords of the Philistines brought up to her seven green withes which had not been dried, and she bound him with them.
13195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now there were men lying in wait, abiding with her in the chamber. And she said unto him, The Philistines be upon thee, Samson. And he brake the withes, as a thread of tow is broken when it toucheth the fire. So his strength was not known.
13196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Delilah said unto Samson, Behold, thou hast mocked me, and told me lies: now tell me, I pray thee, wherewith thou mightest be bound.
13197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto her, If they bind me fast with new ropes that never were occupied, then shall I be weak, and be as another man.
13198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Delilah therefore took new ropes, and bound him therewith, and said unto him, The Philistines be upon thee, Samson. And there were liers in wait abiding in the chamber. And he brake them from off his arms like a thread.
13199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Delilah said unto Samson, Hitherto thou hast mocked me, and told me lies: tell me wherewith thou mightest be bound. And he said unto her, If thou weavest the seven locks of my head with the web.
13200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she fastened it with the pin, and said unto him, The Philistines be upon thee, Samson. And he awaked out of his sleep, and went away with the pin of the beam, and with the web.
13201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And she said unto him, How canst thou say, I love thee, when thine heart is not with me? thou hast mocked me these three times, and hast not told me wherein thy great strength lieth.
13202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when she pressed him daily with her words, and urged him, so that his soul was vexed unto death;
13203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That he told her all his heart, and said unto her, There hath not come a razor upon mine head; for I have been a Nazarite unto God from my mother's womb: if I be shaven, then my strength will go from me, and I shall become weak, and be like any other man.
13204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when Delilah saw that he had told her all his heart, she sent and called for the lords of the Philistines, saying, Come up this once, for he hath showed me all his heart. Then the lords of the Philistines came up unto her, and brought money in their hand.
13205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she made him sleep upon her knees; and she called for a man, and she caused him to shave off the seven locks of his head; and she began to afflict him, and his strength went from him.
13206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she said, The Philistines be upon thee, Samson. And he awoke out of his sleep, and said, I will go out as at other times before, and shake myself. And he wist not that the LORD was departed from him.
13207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the Philistines took him, and put out his eyes, and brought him down to Gaza, and bound him with fetters of brass; and he did grind in the prison house.
13208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Howbeit the hair of his head began to grow again after he was shaven.
13209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the lords of the Philistines gathered them together for to offer a great sacrifice unto Dagon their god, and to rejoice: for they said, Our god hath delivered Samson our enemy into our hand.
13210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the people saw him, they praised their god: for they said, Our god hath delivered into our hands our enemy, and the destroyer of our country, which slew many of us.
13211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when their hearts were merry, that they said, Call for Samson, that he may make us sport. And they called for Samson out of the prison house; and he made them sport: and they set him between the pillars.
13212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Samson said unto the lad that held him by the hand, Suffer me that I may feel the pillars whereupon the house standeth, that I may lean upon them.
13213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now the house was full of men and women; and all the lords of the Philistines were there; and there were upon the roof about three thousand men and women, that beheld while Samson made sport.
13214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Samson called unto the LORD, and said, O Lord God, remember me, I pray thee, and strengthen me, I pray thee, only this once, O God, that I may be at once avenged of the Philistines for my two eyes.
13215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Samson took hold of the two middle pillars upon which the house stood, and on which it was borne up, of the one with his right hand, and of the other with his left.
13216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Samson said, Let me die with the Philistines. And he bowed himself with all his might; and the house fell upon the lords, and upon all the people that were therein. So the dead which he slew at his death were more than they which he slew in his life.
13217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then his brethren and all the house of his father came down, and took him, and brought him up, and buried him between Zorah and Eshtaol in the buryingplace of Manoah his father. And he judged Israel twenty years.
13218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there was a man of mount Ephraim, whose name was Micah.
13219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto his mother, The eleven hundred shekels of silver that were taken from thee, about which thou cursedst, and spakest of also in mine ears, behold, the silver is with me; I took it. And his mother said, Blessed be thou of the LORD, my son.
13220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when he had restored the eleven hundred shekels of silver to his mother, his mother said, I had wholly dedicated the silver unto the LORD from my hand for my son, to make a graven image and a molten image: now therefore I will restore it unto thee.
13221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet he restored the money unto his mother; and his mother took two hundred shekels of silver, and gave them to the founder, who made thereof a graven image and a molten image: and they were in the house of Micah.
13222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the man Micah had an house of gods, and made an ephod, and teraphim, and consecrated one of his sons, who became his priest.
13223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In those days there was no king in Israel, but every man did that which was right in his own eyes.
13224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there was a young man out of Bethlehemjudah of the family of Judah, who was a Levite, and he sojourned there.
13225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the man departed out of the city from Bethlehemjudah to sojourn where he could find a place: and he came to mount Ephraim to the house of Micah, as he journeyed.
13226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Micah said unto him, Whence comest thou? And he said unto him, I am a Levite of Bethlehemjudah, and I go to sojourn where I may find a place.
13227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Micah said unto him, Dwell with me, and be unto me a father and a priest, and I will give thee ten shekels of silver by the year, and a suit of apparel, and thy victuals. So the Levite went in.
13228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Levite was content to dwell with the man; and the young man was unto him as one of his sons.
13229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Micah consecrated the Levite; and the young man became his priest, and was in the house of Micah.
13230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then said Micah, Now know I that the LORD will do me good, seeing I have a Levite to my priest.
13231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In those days there was no king in Israel: and in those days the tribe of the Danites sought them an inheritance to dwell in; for unto that day all their inheritance had not fallen unto them among the tribes of Israel.
13232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the children of Dan sent of their family five men from their coasts, men of valor, from Zorah, and from Eshtaol, to spy out the land, and to search it; and they said unto them, Go, search the land: who when they came to mount Ephraim, to the house of Micah, they lodged there.
13233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When they were by the house of Micah, they knew the voice of the young man the Levite: and they turned in thither, and said unto him, Who brought thee hither? and what makest thou in this place? and what hast thou here?
13234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said unto them, Thus and thus dealeth Micah with me, and hath hired me, and I am his priest.
13235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they said unto him, Ask counsel, we pray thee, of God, that we may know whether our way which we go shall be prosperous.
13236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest said unto them, Go in peace: before the LORD is your way wherein ye go.
13237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the five men departed, and came to Laish, and saw the people that were therein, how they dwelt careless, after the manner of the Zidonians, quiet and secure; and there was no magistrate in the land, that might put them to shame in any thing; and they were far from the Zidonians, and had no business with any man.
13238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they came unto their brethren to Zorah and Eshtaol: and their brethren said unto them, What say ye?
13239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they said, Arise, that we may go up against them: for we have seen the land, and, behold, it is very good: and are ye still? be not slothful to go, and to enter to possess the land.
13240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 When ye go, ye shall come unto a people secure, and to a large land: for God hath given it into your hands; a place where there is no want of any thing that is in the earth.
13241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there went from thence of the family of the Danites, out of Zorah and out of Eshtaol, six hundred men appointed with weapons of war.
13242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they went up, and pitched in Kirjathjearim, in Judah: wherefore they called that place Mahanehdan unto this day: behold, it is behind Kirjathjearim.
13243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they passed thence unto mount Ephraim, and came unto the house of Micah.
13244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then answered the five men that went to spy out the country of Laish, and said unto their brethren, Do ye know that there is in these houses an ephod, and teraphim, and a graven image, and a molten image? now therefore consider what ye have to do.
13245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they turned thitherward, and came to the house of the young man the Levite, even unto the house of Micah, and saluted him.
13246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the six hundred men appointed with their weapons of war, which were of the children of Dan, stood by the entering of the gate.
13247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the five men that went to spy out the land went up, and came in thither, and took the graven image, and the ephod, and the teraphim, and the molten image: and the priest stood in the entering of the gate with the six hundred men that were appointed with weapons of war.
13248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And these went into Micah's house, and fetched the carved image, the ephod, and the teraphim, and the molten image. Then said the priest unto them, What do ye?
13249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto him, Hold thy peace, lay thine hand upon thy mouth, and go with us, and be to us a father and a priest: is it better for thee to be a priest unto the house of one man, or that thou be a priest unto a tribe and a family in Israel?
13250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the priest's heart was glad, and he took the ephod, and the teraphim, and the graven image, and went in the midst of the people.
13251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So they turned and departed, and put the little ones and the cattle and the carriage before them.
13252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when they were a good way from the house of Micah, the men that were in the houses near to Micah's house were gathered together, and overtook the children of Dan.
13253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they cried unto the children of Dan. And they turned their faces, and said unto Micah, What aileth thee, that thou comest with such a company?
13254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Ye have taken away my gods which I made, and the priest, and ye are gone away: and what have I more? and what is this that ye say unto me, What aileth thee?
13255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Dan said unto him, Let not thy voice be heard among us, lest angry fellows run upon thee, and thou lose thy life, with the lives of thy household.
13256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Dan went their way: and when Micah saw that they were too strong for him, he turned and went back unto his house.
13257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they took the things which Micah had made, and the priest which he had, and came unto Laish, unto a people that were at quiet and secure: and they smote them with the edge of the sword, and burnt the city with fire.
13258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And there was no deliverer, because it was far from Zidon, and they had no business with any man; and it was in the valley that lieth by Bethrehob. And they built a city, and dwelt therein.
13259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they called the name of the city Dan, after the name of Dan their father, who was born unto Israel: howbeit the name of the city was Laish at the first.
13260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Dan set up the graven image: and Jonathan, the son of Gershom, the son of Manasseh, he and his sons were priests to the tribe of Dan until the day of the captivity of the land.
13261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they set them up Micah's graven image, which he made, all the time that the house of God was in Shiloh.
13262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass in those days, when there was no king in Israel, that there was a certain Levite sojourning on the side of mount Ephraim, who took to him a concubine out of Bethlehemjudah.
13263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And his concubine played the whore against him, and went away from him unto her father's house to Bethlehemjudah, and was there four whole months.
13264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And her husband arose, and went after her, to speak friendly unto her, and to bring her again, having his servant with him, and a couple of asses: and she brought him into her father's house: and when the father of the damsel saw him, he rejoiced to meet him.
13265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his father in law, the damsel's father, retained him; and he abode with him three days: so they did eat and drink, and lodged there.
13266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass on the fourth day, when they arose early in the morning, that he rose up to depart: and the damsel's father said unto his son in law, Comfort thine heart with a morsel of bread, and afterward go your way.
13267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they sat down, and did eat and drink both of them together: for the damsel's father had said unto the man, Be content, I pray thee, and tarry all night, and let thine heart be merry.
13268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the man rose up to depart, his father in law urged him: therefore he lodged there again.
13269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he arose early in the morning on the fifth day to depart; and the damsel's father said, Comfort thine heart, I pray thee. And they tarried until afternoon, and they did eat both of them.
13270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when the man rose up to depart, he, and his concubine, and his servant, his father in law, the damsel's father, said unto him, Behold, now the day draweth toward evening, I pray you tarry all night: behold, the day groweth to an end, lodge here, that thine heart may be merry; and to morrow get you early on your way, that thou mayest go home.
13271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the man would not tarry that night, but he rose up and departed, and came over against Jebus, which is Jerusalem; and there were with him two asses saddled, his concubine also was with him.
13272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when they were by Jebus, the day was far spent; and the servant said unto his master, Come, I pray thee, and let us turn in into this city of the Jebusites, and lodge in it.
13273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his master said unto him, We will not turn aside hither into the city of a stranger, that is not of the children of Israel; we will pass over to Gibeah.
13274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto his servant, Come, and let us draw near to one of these places to lodge all night, in Gibeah, or in Ramah.
13275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they passed on and went their way; and the sun went down upon them when they were by Gibeah, which belongeth to Benjamin.
13276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they turned aside thither, to go in and to lodge in Gibeah: and when he went in, he sat him down in a street of the city: for there was no man that took them into his house to lodging.
13277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And, behold, there came an old man from his work out of the field at even, which was also of mount Ephraim; and he sojourned in Gibeah: but the men of the place were Benjamites.
13278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when he had lifted up his eyes, he saw a wayfaring man in the street of the city: and the old man said, Whither goest thou? and whence comest thou?
13279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto him, We are passing from Bethlehemjudah toward the side of mount Ephraim; from thence am I: and I went to Bethlehemjudah, but I am now going to the house of the LORD; and there is no man that receiveth me to house.
13280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet there is both straw and provender for our asses; and there is bread and wine also for me, and for thy handmaid, and for the young man which is with thy servants: there is no want of any thing.
13281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the old man said, Peace be with thee; howsoever let all thy wants lie upon me; only lodge not in the street.
13282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he brought him into his house, and gave provender unto the asses: and they washed their feet, and did eat and drink.
13283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now as they were making their hearts merry, behold, the men of the city, certain sons of Belial, beset the house round about, and beat at the door, and spake to the master of the house, the old man, saying, Bring forth the man that came into thine house, that we may know him.
13284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the man, the master of the house, went out unto them, and said unto them, Nay, my brethren, nay, I pray you, do not so wickedly; seeing that this man is come into mine house, do not this folly.
13285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, here is my daughter a maiden, and his concubine; them I will bring out now, and humble ye them, and do with them what seemeth good unto you: but unto this man do not so vile a thing.
13286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the men would not hearken to him: so the man took his concubine, and brought her forth unto them; and they knew her, and abused her all the night until the morning: and when the day began to spring, they let her go.
13287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then came the woman in the dawning of the day, and fell down at the door of the man's house where her lord was, till it was light.
13288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And her lord rose up in the morning, and opened the doors of the house, and went out to go his way: and, behold, the woman his concubine was fallen down at the door of the house, and her hands were upon the threshold.
13289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto her, Up, and let us be going. But none answered. Then the man took her up upon an ass, and the man rose up, and gat him unto his place.
13290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when he was come into his house, he took a knife, and laid hold on his concubine, and divided her, together with her bones, into twelve pieces, and sent her into all the coasts of Israel.
13291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it was so, that all that saw it said, There was no such deed done nor seen from the day that the children of Israel came up out of the land of Egypt unto this day: consider of it, take advice, and speak your minds.
13292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then all the children of Israel went out, and the congregation was gathered together as one man, from Dan even to Beersheba, with the land of Gilead, unto the LORD in Mizpeh.
13293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the chief of all the people, even of all the tribes of Israel, presented themselves in the assembly of the people of God, four hundred thousand footmen that drew sword.
13294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (Now the children of Benjamin heard that the children of Israel were gone up to Mizpeh.) Then said the children of Israel, Tell us, how was this wickedness?
13295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the Levite, the husband of the woman that was slain, answered and said, I came into Gibeah that belongeth to Benjamin, I and my concubine, to lodge.
13296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the men of Gibeah rose against me, and beset the house round about upon me by night, and thought to have slain me: and my concubine have they forced, that she is dead.
13297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I took my concubine, and cut her in pieces, and sent her throughout all the country of the inheritance of Israel: for they have committed lewdness and folly in Israel.
13298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Behold, ye are all children of Israel; give here your advice and counsel.
13299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the people arose as one man, saying, We will not any of us go to his tent, neither will we any of us turn into his house.
13300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But now this shall be the thing which we will do to Gibeah; we will go up by lot against it;
13301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And we will take ten men of an hundred throughout all the tribes of Israel, and an hundred of a thousand, and a thousand out of ten thousand, to fetch victual for the people, that they may do, when they come to Gibeah of Benjamin, according to all the folly that they have wrought in Israel.
13302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So all the men of Israel were gathered against the city, knit together as one man.
13303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the tribes of Israel sent men through all the tribe of Benjamin, saying, What wickedness is this that is done among you?
13304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore deliver us the men, the children of Belial, which are in Gibeah, that we may put them to death, and put away evil from Israel. But the children of Benjamin would not hearken to the voice of their brethren the children of Israel.
13305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the children of Benjamin gathered themselves together out of the cities unto Gibeah, to go out to battle against the children of Israel.
13306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the children of Benjamin were numbered at that time out of the cities twenty and six thousand men that drew sword, beside the inhabitants of Gibeah, which were numbered seven hundred chosen men.
13307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Among all this people there were seven hundred chosen men lefthanded; every one could sling stones at an hair breadth, and not miss.
13308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the men of Israel, beside Benjamin, were numbered four hundred thousand men that drew sword: all these were men of war.
13309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the children of Israel arose, and went up to the house of God, and asked counsel of God, and said, Which of us shall go up first to the battle against the children of Benjamin? And the LORD said, Judah shall go up first.
13310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Israel rose up in the morning, and encamped against Gibeah.
13311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the men of Israel went out to battle against Benjamin; and the men of Israel put themselves in array to fight against them at Gibeah.
13312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Benjamin came forth out of Gibeah, and destroyed down to the ground of the Israelites that day twenty and two thousand men.
13313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the people the men of Israel encouraged themselves, and set their battle again in array in the place where they put themselves in array the first day.
13314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             (And the children of Israel went up and wept before the LORD until even, and asked counsel of the LORD, saying, Shall I go up again to battle against the children of Benjamin my brother? And the LORD said, Go up against him.)
13315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel came near against the children of Benjamin the second day.
13316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Benjamin went forth against them out of Gibeah the second day, and destroyed down to the ground of the children of Israel again eighteen thousand men; all these drew the sword.
13317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then all the children of Israel, and all the people, went up, and came unto the house of God, and wept, and sat there before the LORD, and fasted that day until even, and offered burnt offerings and peace offerings before the LORD.
13318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the children of Israel inquired of the LORD, (for the ark of the covenant of God was there in those days,
13319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Phinehas, the son of Eleazar, the son of Aaron, stood before it in those days,) saying, Shall I yet again go out to battle against the children of Benjamin my brother, or shall I cease? And the LORD said, Go up; for to morrow I will deliver them into thine hand.
13320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Israel set liers in wait round about Gibeah.
13321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the children of Israel went up against the children of Benjamin on the third day, and put themselves in array against Gibeah, as at other times.
13322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Benjamin went out against the people, and were drawn away from the city; and they began to smite of the people, and kill, as at other times, in the highways, of which one goeth up to the house of God, and the other to Gibeah in the field, about thirty men of Israel.
13323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Benjamin said, They are smitten down before us, as at the first. But the children of Israel said, Let us flee, and draw them from the city unto the highways.
13324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the men of Israel rose up out of their place, and put themselves in array at Baaltamar: and the liers in wait of Israel came forth out of their places, even out of the meadows of Gibeah.
13325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there came against Gibeah ten thousand chosen men out of all Israel, and the battle was sore: but they knew not that evil was near them.
13326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD smote Benjamin before Israel: and the children of Israel destroyed of the Benjamites that day twenty and five thousand and an hundred men: all these drew the sword.
13327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So the children of Benjamin saw that they were smitten: for the men of Israel gave place to the Benjamites, because they trusted unto the liers in wait which they had set beside Gibeah.
13328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the liers in wait hasted, and rushed upon Gibeah; and the liers in wait drew themselves along, and smote all the city with the edge of the sword.
13329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now there was an appointed sign between the men of Israel and the liers in wait, that they should make a great flame with smoke rise up out of the city.
13330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the men of Israel retired in the battle, Benjamin began to smite and kill of the men of Israel about thirty persons: for they said, Surely they are smitten down before us, as in the first battle.
13331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But when the flame began to arise up out of the city with a pillar of smoke, the Benjamites looked behind them, and, behold, the flame of the city ascended up to heaven.
13332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when the men of Israel turned again, the men of Benjamin were amazed: for they saw that evil was come upon them.
13333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore they turned their backs before the men of Israel unto the way of the wilderness; but the battle overtook them; and them which came out of the cities they destroyed in the midst of them.
13334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thus they inclosed the Benjamites round about, and chased them, and trode them down with ease over against Gibeah toward the sunrising.
13335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there fell of Benjamin eighteen thousand men; all these were men of valor.
13336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they turned and fled toward the wilderness unto the rock of Rimmon: and they gleaned of them in the highways five thousand men; and pursued hard after them unto Gidom, and slew two thousand men of them.
13337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So that all which fell that day of Benjamin were twenty and five thousand men that drew the sword; all these were men of valor.
13338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But six hundred men turned and fled to the wilderness unto the rock Rimmon, and abode in the rock Rimmon four months.
13339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the men of Israel turned again upon the children of Benjamin, and smote them with the edge of the sword, as well the men of every city, as the beast, and all that came to hand: also they set on fire all the cities that they came to.
13340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now the men of Israel had sworn in Mizpeh, saying, There shall not any of us give his daughter unto Benjamin to wife.
13341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the people came to the house of God, and abode there till even before God, and lifted up their voices, and wept sore;
13342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And said, O LORD God of Israel, why is this come to pass in Israel, that there should be to day one tribe lacking in Israel?
13343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass on the morrow, that the people rose early, and built there an altar, and offered burnt offerings and peace offerings.
13344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the children of Israel said, Who is there among all the tribes of Israel that came not up with the congregation unto the LORD? For they had made a great oath concerning him that came not up to the LORD to Mizpeh, saying, He shall surely be put to death.
13345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Israel repented them for Benjamin their brother, and said, There is one tribe cut off from Israel this day.
13346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        How shall we do for wives for them that remain, seeing we have sworn by the LORD that we will not give them of our daughters to wives?
13347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they said, What one is there of the tribes of Israel that came not up to Mizpeh to the LORD? And, behold, there came none to the camp from Jabeshgilead to the assembly.
13348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For the people were numbered, and, behold, there were none of the inhabitants of Jabeshgilead there.
13349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the congregation sent thither twelve thousand men of the valiantest, and commanded them, saying, Go and smite the inhabitants of Jabeshgilead with the edge of the sword, with the women and the children.
13350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And this is the thing that ye shall do, Ye shall utterly destroy every male, and every woman that hath lain by man.
13351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they found among the inhabitants of Jabeshgilead four hundred young virgins, that had known no man by lying with any male: and they brought them unto the camp to Shiloh, which is in the land of Canaan.
13352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the whole congregation sent some to speak to the children of Benjamin that were in the rock Rimmon, and to call peaceably unto them.
13353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Benjamin came again at that time; and they gave them wives which they had saved alive of the women of Jabeshgilead: and yet so they sufficed them not.
13354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the people repented them for Benjamin, because that the LORD had made a breach in the tribes of Israel.
13355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then the elders of the congregation said, How shall we do for wives for them that remain, seeing the women are destroyed out of Benjamin?
13356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they said, There must be an inheritance for them that be escaped of Benjamin, that a tribe be not destroyed out of Israel.
13357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Howbeit we may not give them wives of our daughters: for the children of Israel have sworn, saying, Cursed be he that giveth a wife to Benjamin.
13358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then they said, Behold, there is a feast of the LORD in Shiloh yearly in a place which is on the north side of Bethel, on the east side of the highway that goeth up from Bethel to Shechem, and on the south of Lebonah.
13359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore they commanded the children of Benjamin, saying, Go and lie in wait in the vineyards;
13360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And see, and, behold, if the daughters of Shiloh come out to dance in dances, then come ye out of the vineyards, and catch you every man his wife of the daughters of Shiloh, and go to the land of Benjamin.
13361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it shall be, when their fathers or their brethren come unto us to complain, that we will say unto them, Be favorable unto them for our sakes: because we reserved not to each man his wife in the war: for ye did not give unto them at this time, that ye should be guilty.
13362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the children of Benjamin did so, and took them wives, according to their number, of them that danced, whom they caught: and they went and returned unto their inheritance, and repaired the cities, and dwelt in them.
13363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the children of Israel departed thence at that time, every man to his tribe and to his family, and they went out from thence every man to his inheritance.
13364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In those days there was no king in Israel: every man did that which was right in his own eyes.
13365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now it came to pass in the days when the judges ruled, that there was a famine in the land. And a certain man of Bethlehemjudah went to sojourn in the country of Moab, he, and his wife, and his two sons.
13366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the name of the man was Elimelech, and the name of his wife Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of Bethlehemjudah. And they came into the country of Moab, and continued there.
13367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Elimelech Naomi's husband died; and she was left, and her two sons.
13368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they took them wives of the women of Moab; the name of the one was Orpah, and the name of the other Ruth: and they dwelled there about ten years.
13369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Mahlon and Chilion died also both of them; and the woman was left of her two sons and her husband.
13370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then she arose with her daughters in law, that she might return from the country of Moab: for she had heard in the country of Moab how that the LORD had visited his people in giving them bread.
13371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wherefore she went forth out of the place where she was, and her two daughters in law with her; and they went on the way to return unto the land of Judah.
13372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Naomi said unto her two daughters in law, Go, return each to her mother's house: the LORD deal kindly with you, as ye have dealt with the dead, and with me.
13373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD grant you that ye may find rest, each of you in the house of her husband. Then she kissed them; and they lifted up their voice, and wept.
13374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto her, Surely we will return with thee unto thy people.
13375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Naomi said, Turn again, my daughters: why will ye go with me? are there yet any more sons in my womb, that they may be your husbands?
13376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Turn again, my daughters, go your way; for I am too old to have an husband. If I should say, I have hope, if I should have an husband also to night, and should also bear sons;
13377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Would ye tarry for them till they were grown? would ye stay for them from having husbands? nay, my daughters; for it grieveth me much for your sakes that the hand of the LORD is gone out against me.
13378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they lifted up their voice, and wept again: and Orpah kissed her mother in law; but Ruth clave unto her.
13379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she said, Behold, thy sister in law is gone back unto her people, and unto her gods: return thou after thy sister in law.
13380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ruth said, Entreat me not to leave thee, or to return from following after thee: for whither thou goest, I will go; and where thou lodgest, I will lodge: thy people shall be my people, and thy God my God:
13381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Where thou diest, will I die, and there will I be buried: the LORD do so to me, and more also, if ought but death part thee and me.
13382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When she saw that she was stedfastly minded to go with her, then she left speaking unto her.
13383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So they two went until they came to Bethlehem. And it came to pass, when they were come to Bethlehem, that all the city was moved about them, and they said, Is this Naomi?
13384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she said unto them, Call me not Naomi, call me Mara: for the Almighty hath dealt very bitterly with me.
13385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I went out full and the LORD hath brought me home again empty: why then call ye me Naomi, seeing the LORD hath testified against me, and the Almighty hath afflicted me?
13386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Naomi returned, and Ruth the Moabitess, her daughter in law, with her, which returned out of the country of Moab: and they came to Bethlehem in the beginning of barley harvest.
13387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Naomi had a kinsman of her husband's, a mighty man of wealth, of the family of Elimelech; and his name was Boaz.
13388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Ruth the Moabitess said unto Naomi, Let me now go to the field, and glean ears of corn after him in whose sight I shall find grace. And she said unto her, Go, my daughter.
13389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she went, and came, and gleaned in the field after the reapers: and her hap was to light on a part of the field belonging unto Boaz, who was of the kindred of Elimelech.
13390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And, behold, Boaz came from Bethlehem, and said unto the reapers, The LORD be with you. And they answered him, The LORD bless thee.
13391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said Boaz unto his servant that was set over the reapers, Whose damsel is this?
13392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the servant that was set over the reapers answered and said, It is the Moabitish damsel that came back with Naomi out of the country of Moab:
13393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she said, I pray you, let me glean and gather after the reapers among the sheaves: so she came, and hath continued even from the morning until now, that she tarried a little in the house.
13394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said Boaz unto Ruth, Hearest thou not, my daughter? Go not to glean in another field, neither go from hence, but abide here fast by my maidens:
13395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let thine eyes be on the field that they do reap, and go thou after them: have I not charged the young men that they shall not touch thee? and when thou art athirst, go unto the vessels, and drink of that which the young men have drawn.
13396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then she fell on her face, and bowed herself to the ground, and said unto him, Why have I found grace in thine eyes, that thou shouldest take knowledge of me, seeing I am a stranger?
13397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Boaz answered and said unto her, It hath fully been showed me, all that thou hast done unto thy mother in law since the death of thine husband: and how thou hast left thy father and thy mother, and the land of thy nativity, and art come unto a people which thou knewest not heretofore.
13398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD recompense thy work, and a full reward be given thee of the LORD God of Israel, under whose wings thou art come to trust.
13399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then she said, Let me find favor in thy sight, my lord; for that thou hast comforted me, and for that thou hast spoken friendly unto thine handmaid, though I be not like unto one of thine handmaidens.
13400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Boaz said unto her, At mealtime come thou hither, and eat of the bread, and dip thy morsel in the vinegar. And she sat beside the reapers: and he reached her parched corn, and she did eat, and was sufficed, and left.
13401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when she was risen up to glean, Boaz commanded his young men, saying, Let her glean even among the sheaves, and reproach her not:
13402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And let fall also some of the handfuls of purpose for her, and leave them, that she may glean them, and rebuke her not.
13403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So she gleaned in the field until even, and beat out that she had gleaned: and it was about an ephah of barley.
13404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And she took it up, and went into the city: and her mother in law saw what she had gleaned: and she brought forth, and gave to her that she had reserved after she was sufficed.
13405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And her mother in law said unto her, Where hast thou gleaned to day? and where wroughtest thou? blessed be he that did take knowledge of thee. And she showed her mother in law with whom she had wrought, and said, The man's name with whom I wrought to day is Boaz.
13406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Naomi said unto her daughter in law, Blessed be he of the LORD, who hath not left off his kindness to the living and to the dead. And Naomi said unto her, The man is near of kin unto us, one of our next kinsmen.
13407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ruth the Moabitess said, He said unto me also, Thou shalt keep fast by my young men, until they have ended all my harvest.
13408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Naomi said unto Ruth her daughter in law, It is good, my daughter, that thou go out with his maidens, that they meet thee not in any other field.
13409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So she kept fast by the maidens of Boaz to glean unto the end of barley harvest and of wheat harvest; and dwelt with her mother in law.
13410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Naomi her mother in law said unto her, My daughter, shall I not seek rest for thee, that it may be well with thee?
13411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And now is not Boaz of our kindred, with whose maidens thou wast? Behold, he winnoweth barley to night in the threshingfloor.
13412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wash thyself therefore, and anoint thee, and put thy raiment upon thee, and get thee down to the floor: but make not thyself known unto the man, until he shall have done eating and drinking.
13413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it shall be, when he lieth down, that thou shalt mark the place where he shall lie, and thou shalt go in, and uncover his feet, and lay thee down; and he will tell thee what thou shalt do.
13414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she said unto her, All that thou sayest unto me I will do.
13415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she went down unto the floor, and did according to all that her mother in law bade her.
13416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of corn: and she came softly, and uncovered his feet, and laid her down.
13417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass at midnight, that the man was afraid, and turned himself: and, behold, a woman lay at his feet.
13418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Who art thou? And she answered, I am Ruth thine handmaid: spread therefore thy skirt over thine handmaid; for thou art a near kinsman.
13419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Blessed be thou of the LORD, my daughter: for thou hast showed more kindness in the latter end than at the beginning, inasmuch as thou followedst not young men, whether poor or rich.
13420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And now, my daughter, fear not; I will do to thee all that thou requirest: for all the city of my people doth know that thou art a virtuous woman.
13421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And now it is true that I am thy near kinsman: howbeit there is a kinsman nearer than I.
13422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tarry this night, and it shall be in the morning, that if he will perform unto thee the part of a kinsman, well; let him do the kinsman's part: but if he will not do the part of a kinsman to thee, then will I do the part of a kinsman to thee, as the LORD liveth: lie down until the morning.
13423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she lay at his feet until the morning: and she rose up before one could know another. And he said, Let it not be known that a woman came into the floor.
13424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Also he said, Bring the vail that thou hast upon thee, and hold it. And when she held it, he measured six measures of barley, and laid it on her: and she went into the city.
13425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when she came to her mother in law, she said, Who art thou, my daughter? And she told her all that the man had done to her.
13426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she said, These six measures of barley gave he me; for he said to me, Go not empty unto thy mother in law.
13427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then said she, Sit still, my daughter, until thou know how the matter will fall: for the man will not be in rest, until he have finished the thing this day.
13428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then went Boaz up to the gate, and sat him down there: and, behold, the kinsman of whom Boaz spake came by; unto whom he said, Ho, such a one! turn aside, sit down here. And he turned aside, and sat down.
13429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he took ten men of the elders of the city, and said, Sit ye down here. And they sat down.
13430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto the kinsman, Naomi, that is come again out of the country of Moab, selleth a parcel of land, which was our brother Elimelech's:
13431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I thought to advertise thee, saying, Buy it before the inhabitants, and before the elders of my people. If thou wilt redeem it, redeem it: but if thou wilt not redeem it, then tell me, that I may know: for there is none to redeem it beside thee; and I am after thee. And he said, I will redeem it.
13432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then said Boaz, What day thou buyest the field of the hand of Naomi, thou must buy it also of Ruth the Moabitess, the wife of the dead, to raise up the name of the dead upon his inheritance.
13433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the kinsman said, I cannot redeem it for myself, lest I mar mine own inheritance: redeem thou my right to thyself; for I cannot redeem it.
13434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now this was the manner in former time in Israel concerning redeeming and concerning changing, for to confirm all things; a man plucked off his shoe, and gave it to his neighbor: and this was a testimony in Israel.
13435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore the kinsman said unto Boaz, Buy it for thee. So he drew off his shoe.
13436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Boaz said unto the elders, and unto all the people, Ye are witnesses this day, that I have bought all that was Elimelech's, and all that was Chilion's and Mahlon's, of the hand of Naomi.
13437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Moreover Ruth the Moabitess, the wife of Mahlon, have I purchased to be my wife, to raise up the name of the dead upon his inheritance, that the name of the dead be not cut off from among his brethren, and from the gate of his place: ye are witnesses this day.
13438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the people that were in the gate, and the elders, said, We are witnesses. The LORD make the woman that is come into thine house like Rachel and like Leah, which two did build the house of Israel: and do thou worthily in Ephratah, and be famous in Bethlehem:
13439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And let thy house be like the house of Pharez, whom Tamar bare unto Judah, of the seed which the LORD shall give thee of this young woman.
13440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Boaz took Ruth, and she was his wife: and when he went in unto her, the LORD gave her conception, and she bare a son.
13441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the women said unto Naomi, Blessed be the LORD, which hath not left thee this day without a kinsman, that his name may be famous in Israel.
13442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he shall be unto thee a restorer of thy life, and a nourisher of thine old age: for thy daughter in law, which loveth thee, which is better to thee than seven sons, hath born him.
13443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Naomi took the child, and laid it in her bosom, and became nurse unto it.
13444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the women her neighbors gave it a name, saying, There is a son born to Naomi; and they called his name Obed: he is the father of Jesse, the father of David.
13445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now these are the generations of Pharez: Pharez begat Hezron,
13446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Hezron begat Ram, and Ram begat Amminadab,
13447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Amminadab begat Nahshon, and Nahshon begat Salmon,
13448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Salmon begat Boaz, and Boaz begat Obed,
13449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Obed begat Jesse, and Jesse begat David.
13450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now there was a certain man of Ramathaimzophim, of mount Ephraim, and his name was Elkanah, the son of Jeroham, the son of Elihu, the son of Tohu, the son of Zuph, an Ephrathite:
13451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he had two wives; the name of the one was Hannah, and the name of the other Peninnah: and Peninnah had children, but Hannah had no children.
13452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And this man went up out of his city yearly to worship and to sacrifice unto the LORD of hosts in Shiloh. And the two sons of Eli, Hophni and Phinehas, the priests of the LORD, were there.
13453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the time was that Elkanah offered, he gave to Peninnah his wife, and to all her sons and her daughters, portions:
13454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But unto Hannah he gave a worthy portion; for he loved Hannah: but the LORD had shut up her womb.
13455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And her adversary also provoked her sore, for to make her fret, because the LORD had shut up her womb.
13456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And as he did so year by year, when she went up to the house of the LORD, so she provoked her; therefore she wept, and did not eat.
13457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said Elkanah her husband to her, Hannah, why weepest thou? and why eatest thou not? and why is thy heart grieved? am not I better to thee than ten sons?
13458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Hannah rose up after they had eaten in Shiloh, and after they had drunk. Now Eli the priest sat upon a seat by a post of the temple of the LORD.
13459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she was in bitterness of soul, and prayed unto the LORD, and wept sore.
13460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And she vowed a vow, and said, O LORD of hosts, if thou wilt indeed look on the affliction of thine handmaid, and remember me, and not forget thine handmaid, but wilt give unto thine handmaid a man child, then I will give him unto the LORD all the days of his life, and there shall no razor come upon his head.
13461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, as she continued praying before the LORD, that Eli marked her mouth.
13462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now Hannah, she spake in her heart; only her lips moved, but her voice was not heard: therefore Eli thought she had been drunken.
13463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Eli said unto her, How long wilt thou be drunken? put away thy wine from thee.
13464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Hannah answered and said, No, my lord, I am a woman of a sorrowful spirit: I have drunk neither wine nor strong drink, but have poured out my soul before the LORD.
13465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Count not thine handmaid for a daughter of Belial: for out of the abundance of my complaint and grief have I spoken hitherto.
13466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Eli answered and said, Go in peace: and the God of Israel grant thee thy petition that thou hast asked of him.
13467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And she said, Let thine handmaid find grace in thy sight. So the woman went her way, and did eat, and her countenance was no more sad.
13468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they rose up in the morning early, and worshipped before the LORD, and returned, and came to their house to Ramah: and Elkanah knew Hannah his wife; and the LORD remembered her.
13469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wherefore it came to pass, when the time was come about after Hannah had conceived, that she bare a son, and called his name Samuel, saying, Because I have asked him of the LORD.
13470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the man Elkanah, and all his house, went up to offer unto the LORD the yearly sacrifice, and his vow.
13471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Hannah went not up; for she said unto her husband, I will not go up until the child be weaned, and then I will bring him, that he may appear before the LORD, and there abide for ever.
13472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Elkanah her husband said unto her, Do what seemeth thee good; tarry until thou have weaned him; only the LORD establish his word. So the woman abode, and gave her son suck until she weaned him.
13473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when she had weaned him, she took him up with her, with three bullocks, and one ephah of flour, and a bottle of wine, and brought him unto the house of the LORD in Shiloh: and the child was young.
13474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they slew a bullock, and brought the child to Eli.
13475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she said, Oh my lord, as thy soul liveth, my lord, I am the woman that stood by thee here, praying unto the LORD.
13476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For this child I prayed; and the LORD hath given me my petition which I asked of him:
13477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore also I have lent him to the LORD; as long as he liveth he shall be lent to the LORD. And he worshipped the LORD there.
13478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hannah prayed, and said, My heart rejoiceth in the LORD, mine horn is exalted in the LORD: my mouth is enlarged over mine enemies; because I rejoice in thy salvation.
13479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        There is none holy as the LORD: for there is none beside thee: neither is there any rock like our God.
13480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Talk no more so exceeding proudly; let not arrogancy come out of your mouth: for the LORD is a God of knowledge, and by him actions are weighed.
13481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The bows of the mighty men are broken, and they that stumbled are girded with strength.
13482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               They that were full have hired out themselves for bread; and they that were hungry ceased: so that the barren hath born seven; and she that hath many children is waxed feeble.
13483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The LORD killeth, and maketh alive: he bringeth down to the grave, and bringeth up.
13484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The LORD maketh poor, and maketh rich: he bringeth low, and lifteth up.
13485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               He raiseth up the poor out of the dust, and lifteth up the beggar from the dunghill, to set them among princes, and to make them inherit the throne of glory: for the pillars of the earth are the LORD's, and he hath set the world upon them.
13486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He will keep the feet of his saints, and the wicked shall be silent in darkness; for by strength shall no man prevail.
13487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The adversaries of the LORD shall be broken to pieces; out of heaven shall he thunder upon them: the LORD shall judge the ends of the earth; and he shall give strength unto his king, and exalt the horn of his anointed.
13488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Elkanah went to Ramah to his house. And the child did minister unto the LORD before Eli the priest.
13489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now the sons of Eli were sons of Belial; they knew not the LORD.
13490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the priest's custom with the people was, that, when any man offered sacrifice, the priest's servant came, while the flesh was in seething, with a fleshhook of three teeth in his hand;
13491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he struck it into the pan, or kettle, or caldron, or pot; all that the fleshhook brought up the priest took for himself. So they did in Shiloh unto all the Israelites that came thither.
13492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Also before they burnt the fat, the priest's servant came, and said to the man that sacrificed, Give flesh to roast for the priest; for he will not have sodden flesh of thee, but raw.
13493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And if any man said unto him, Let them not fail to burn the fat presently, and then take as much as thy soul desireth; then he would answer him, Nay; but thou shalt give it me now: and if not, I will take it by force.
13494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wherefore the sin of the young men was very great before the LORD: for men abhorred the offering of the LORD.
13495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Samuel ministered before the LORD, being a child, girded with a linen ephod.
13496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moreover his mother made him a little coat, and brought it to him from year to year, when she came up with her husband to offer the yearly sacrifice.
13497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Eli blessed Elkanah and his wife, and said, The LORD give thee seed of this woman for the loan which is lent to the LORD. And they went unto their own home.
13498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD visited Hannah, so that she conceived, and bare three sons and two daughters. And the child Samuel grew before the LORD.
13499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now Eli was very old, and heard all that his sons did unto all Israel; and how they lay with the women that assembled at the door of the tabernacle of the congregation.
13500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto them, Why do ye such things? for I hear of your evil dealings by all this people.
13501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Nay, my sons; for it is no good report that I hear: ye make the LORD's people to transgress.
13502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If one man sin against another, the judge shall judge him: but if a man sin against the LORD, who shall entreat for him? Notwithstanding they hearkened not unto the voice of their father, because the LORD would slay them.
13503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the child Samuel grew on, and was in favor both with the LORD, and also with men.
13504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And there came a man of God unto Eli, and said unto him, Thus saith the LORD, Did I plainly appear unto the house of thy father, when they were in Egypt in Pharaoh's house?
13505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And did I choose him out of all the tribes of Israel to be my priest, to offer upon mine altar, to burn incense, to wear an ephod before me? and did I give unto the house of thy father all the offerings made by fire of the children of Israel?
13506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore kick ye at my sacrifice and at mine offering, which I have commanded in my habitation; and honorest thy sons above me, to make yourselves fat with the chiefest of all the offerings of Israel my people?
13507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Wherefore the LORD God of Israel saith, I said indeed that thy house, and the house of thy father, should walk before me for ever: but now the LORD saith, Be it far from me; for them that honor me I will honor, and they that despise me shall be lightly esteemed.
13508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Behold, the days come, that I will cut off thine arm, and the arm of thy father's house, that there shall not be an old man in thine house.
13509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou shalt see an enemy in my habitation, in all the wealth which God shall give Israel: and there shall not be an old man in thine house for ever.
13510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the man of thine, whom I shall not cut off from mine altar, shall be to consume thine eyes, and to grieve thine heart: and all the increase of thine house shall die in the flower of their age.
13511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And this shall be a sign unto thee, that shall come upon thy two sons, on Hophni and Phinehas; in one day they shall die both of them.
13512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And I will raise me up a faithful priest, that shall do according to that which is in mine heart and in my mind: and I will build him a sure house; and he shall walk before mine anointed for ever.
13513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it shall come to pass, that every one that is left in thine house shall come and crouch to him for a piece of silver and a morsel of bread, and shall say, Put me, I pray thee, into one of the priests' offices, that I may eat a piece of bread.
13514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the child Samuel ministered unto the LORD before Eli. And the word of the LORD was precious in those days; there was no open vision.
13515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass at that time, when Eli was laid down in his place, and his eyes began to wax dim, that he could not see;
13516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And ere the lamp of God went out in the temple of the LORD, where the ark of God was, and Samuel was laid down to sleep;
13517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      That the LORD called Samuel: and he answered, Here am I.
13518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he ran unto Eli, and said, Here am I; for thou calledst me. And he said, I called not; lie down again. And he went and lay down.
13519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD called yet again, Samuel. And Samuel arose and went to Eli, and said, Here am I; for thou didst call me. And he answered, I called not, my son; lie down again.
13520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now Samuel did not yet know the LORD, neither was the word of the LORD yet revealed unto him.
13521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD called Samuel again the third time. And he arose and went to Eli, and said, Here am I; for thou didst call me. And Eli perceived that the LORD had called the child.
13522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Therefore Eli said unto Samuel, Go, lie down: and it shall be, if he call thee, that thou shalt say, Speak, LORD; for thy servant heareth. So Samuel went and lay down in his place.
13523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD came, and stood, and called as at other times, Samuel, Samuel. Then Samuel answered, Speak; for thy servant heareth.
13524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said to Samuel, Behold, I will do a thing in Israel, at which both the ears of every one that heareth it shall tingle.
13525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In that day I will perform against Eli all things which I have spoken concerning his house: when I begin, I will also make an end.
13526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For I have told him that I will judge his house for ever for the iniquity which he knoweth; because his sons made themselves vile, and he restrained them not.
13527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And therefore I have sworn unto the house of Eli, that the iniquity of Eli's house shall not be purged with sacrifice nor offering for ever.
13528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Samuel lay until the morning, and opened the doors of the house of the LORD. And Samuel feared to show Eli the vision.
13529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Eli called Samuel, and said, Samuel, my son. And he answered, Here am I.
13530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, What is the thing that the LORD hath said unto thee? I pray thee hide it not from me: God do so to thee, and more also, if thou hide any thing from me of all the things that he said unto thee.
13531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Samuel told him every whit, and hid nothing from him. And he said, It is the LORD: let him do what seemeth him good.
13532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Samuel grew, and the LORD was with him, and did let none of his words fall to the ground.
13533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all Israel from Dan even to Beersheba knew that Samuel was established to be a prophet of the LORD.
13534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD appeared again in Shiloh: for the LORD revealed himself to Samuel in Shiloh by the word of the LORD.
13535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the word of Samuel came to all Israel. Now Israel went out against the Philistines to battle, and pitched beside Ebenezer: and the Philistines pitched in Aphek.
13536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Philistines put themselves in array against Israel: and when they joined battle, Israel was smitten before the Philistines: and they slew of the army in the field about four thousand men.
13537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when the people were come into the camp, the elders of Israel said, Wherefore hath the LORD smitten us to day before the Philistines? Let us fetch the ark of the covenant of the LORD out of Shiloh unto us, that, when it cometh among us, it may save us out of the hand of our enemies.
13538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So the people sent to Shiloh, that they might bring from thence the ark of the covenant of the LORD of hosts, which dwelleth between the cherubim: and the two sons of Eli, Hophni and Phinehas, were there with the ark of the covenant of God.
13539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when the ark of the covenant of the LORD came into the camp, all Israel shouted with a great shout, so that the earth rang again.
13540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the Philistines heard the noise of the shout, they said, What meaneth the noise of this great shout in the camp of the Hebrews? And they understood that the ark of the LORD was come into the camp.
13541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the Philistines were afraid, for they said, God is come into the camp. And they said, Woe unto us! for there hath not been such a thing heretofore.
13542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Woe unto us! who shall deliver us out of the hand of these mighty Gods? these are the Gods that smote the Egyptians with all the plagues in the wilderness.
13543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Be strong and quit yourselves like men, O ye Philistines, that ye be not servants unto the Hebrews, as they have been to you: quit yourselves like men, and fight.
13544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Philistines fought, and Israel was smitten, and they fled every man into his tent: and there was a very great slaughter; for there fell of Israel thirty thousand footmen.
13545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the ark of God was taken; and the two sons of Eli, Hophni and Phinehas, were slain.
13546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And there ran a man of Benjamin out of the army, and came to Shiloh the same day with his clothes rent, and with earth upon his head.
13547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when he came, lo, Eli sat upon a seat by the wayside watching: for his heart trembled for the ark of God. And when the man came into the city, and told it, all the city cried out.
13548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when Eli heard the noise of the crying, he said, What meaneth the noise of this tumult? And the man came in hastily, and told Eli.
13549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now Eli was ninety and eight years old; and his eyes were dim, that he could not see.
13550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the man said unto Eli, I am he that came out of the army, and I fled to day out of the army. And he said, What is there done, my son?
13551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the messenger answered and said, Israel is fled before the Philistines, and there hath been also a great slaughter among the people, and thy two sons also, Hophni and Phinehas, are dead, and the ark of God is taken.
13552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when he made mention of the ark of God, that he fell from off the seat backward by the side of the gate, and his neck brake, and he died: for he was an old man, and heavy. And he had judged Israel forty years.
13553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And his daughter in law, Phinehas' wife, was with child, near to be delivered: and when she heard the tidings that the ark of God was taken, and that her father in law and her husband were dead, she bowed herself and travailed; for her pains came upon her.
13554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And about the time of her death the women that stood by her said unto her, Fear not; for thou hast born a son. But she answered not, neither did she regard it.
13555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she named the child Ichabod, saying, The glory is departed from Israel: because the ark of God was taken, and because of her father in law and her husband.
13556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she said, The glory is departed from Israel: for the ark of God is taken.
13557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Philistines took the ark of God, and brought it from Ebenezer unto Ashdod.
13558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       When the Philistines took the ark of God, they brought it into the house of Dagon, and set it by Dagon.
13559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when they of Ashdod arose early on the morrow, behold, Dagon was fallen upon his face to the earth before the ark of the LORD. And they took Dagon, and set him in his place again.
13560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when they arose early on the morrow morning, behold, Dagon was fallen upon his face to the ground before the ark of the LORD; and the head of Dagon and both the palms of his hands were cut off upon the threshold; only the stump of Dagon was left to him.
13561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Therefore neither the priests of Dagon, nor any that come into Dagon's house, tread on the threshold of Dagon in Ashdod unto this day.
13562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But the hand of the LORD was heavy upon them of Ashdod, and he destroyed them, and smote them with emerods, even Ashdod and the coasts thereof.
13563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when the men of Ashdod saw that it was so, they said, The ark of the God of Israel shall not abide with us: for his hand is sore upon us, and upon Dagon our god.
13564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       They sent therefore and gathered all the lords of the Philistines unto them, and said, What shall we do with the ark of the God of Israel? And they answered, Let the ark of the God of Israel be carried about unto Gath. And they carried the ark of the God of Israel about thither.
13565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it was so, that, after they had carried it about, the hand of the LORD was against the city with a very great destruction: and he smote the men of the city, both small and great, and they had emerods in their secret parts.
13566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Therefore they sent the ark of God to Ekron. And it came to pass, as the ark of God came to Ekron, that the Ekronites cried out, saying, They have brought about the ark of the God of Israel to us, to slay us and our people.
13567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So they sent and gathered together all the lords of the Philistines, and said, Send away the ark of the God of Israel, and let it go again to his own place, that it slay us not, and our people: for there was a deadly destruction throughout all the city; the hand of God was very heavy there.
13568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the men that died not were smitten with the emerods: and the cry of the city went up to heaven.
13569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the ark of the LORD was in the country of the Philistines seven months.
13570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Philistines called for the priests and the diviners, saying, What shall we do to the ark of the LORD? tell us wherewith we shall send it to his place.
13571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they said, If ye send away the ark of the God of Israel, send it not empty; but in any wise return him a trespass offering: then ye shall be healed, and it shall be known to you why his hand is not removed from you.
13572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said they, What shall be the trespass offering which we shall return to him? They answered, Five golden emerods, and five golden mice, according to the number of the lords of the Philistines: for one plague was on you all, and on your lords.
13573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wherefore ye shall make images of your emerods, and images of your mice that mar the land; and ye shall give glory unto the God of Israel: peradventure he will lighten his hand from off you, and from off your gods, and from off your land.
13574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wherefore then do ye harden your hearts, as the Egyptians and Pharaoh hardened their hearts? when he had wrought wonderfully among them, did they not let the people go, and they departed?
13575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore make a new cart, and take two milch kine, on which there hath come no yoke, and tie the kine to the cart, and bring their calves home from them:
13576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And take the ark of the LORD, and lay it upon the cart; and put the jewels of gold, which ye return him for a trespass offering, in a coffer by the side thereof; and send it away, that it may go.
13577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And see, if it goeth up by the way of his own coast to Bethshemesh, then he hath done us this great evil: but if not, then we shall know that it is not his hand that smote us: it was a chance that happened to us.
13578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the men did so; and took two milch kine, and tied them to the cart, and shut up their calves at home:
13579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they laid the ark of the LORD upon the cart, and the coffer with the mice of gold and the images of their emerods.
13580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the kine took the straight way to the way of Bethshemesh, and went along the highway, lowing as they went, and turned not aside to the right hand or to the left; and the lords of the Philistines went after them unto the border of Bethshemesh.
13581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they of Bethshemesh were reaping their wheat harvest in the valley: and they lifted up their eyes, and saw the ark, and rejoiced to see it.
13582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the cart came into the field of Joshua, a Bethshemite, and stood there, where there was a great stone: and they clave the wood of the cart, and offered the kine a burnt offering unto the LORD.
13583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the Levites took down the ark of the LORD, and the coffer that was with it, wherein the jewels of gold were, and put them on the great stone: and the men of Bethshemesh offered burnt offerings and sacrificed sacrifices the same day unto the LORD.
13584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the five lords of the Philistines had seen it, they returned to Ekron the same day.
13585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And these are the golden emerods which the Philistines returned for a trespass offering unto the LORD; for Ashdod one, for Gaza one, for Askelon one, for Gath one, for Ekron one;
13586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the golden mice, according to the number of all the cities of the Philistines belonging to the five lords, both of fenced cities, and of country villages, even unto the great stone of Abel, whereon they set down the ark of the LORD: which stone remaineth unto this day in the field of Joshua, the Bethshemite.
13587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he smote the men of Bethshemesh, because they had looked into the ark of the LORD, even he smote of the people fifty thousand and threescore and ten men: and the people lamented, because the LORD had smitten many of the people with a great slaughter.
13588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the men of Bethshemesh said, Who is able to stand before this holy LORD God? and to whom shall he go up from us?
13589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they sent messengers to the inhabitants of Kirjathjearim, saying, The Philistines have brought again the ark of the LORD; come ye down, and fetch it up to you.
13590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the men of Kirjathjearim came, and fetched up the ark of the LORD, and brought it into the house of Abinadab in the hill, and sanctified Eleazar his son to keep the ark of the LORD.
13591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, while the ark abode in Kirjathjearim, that the time was long; for it was twenty years: and all the house of Israel lamented after the LORD.
13592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Samuel spake unto all the house of Israel, saying, If ye do return unto the LORD with all your hearts, then put away the strange gods and Ashtaroth from among you, and prepare your hearts unto the LORD, and serve him only: and he will deliver you out of the hand of the Philistines.
13593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then the children of Israel did put away Baalim and Ashtaroth, and served the LORD only.
13594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Samuel said, Gather all Israel to Mizpeh, and I will pray for you unto the LORD.
13595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they gathered together to Mizpeh, and drew water, and poured it out before the LORD, and fasted on that day, and said there, We have sinned against the LORD. And Samuel judged the children of Israel in Mizpeh.
13596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when the Philistines heard that the children of Israel were gathered together to Mizpeh, the lords of the Philistines went up against Israel. And when the children of Israel heard it, they were afraid of the Philistines.
13597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the children of Israel said to Samuel, Cease not to cry unto the LORD our God for us, that he will save us out of the hand of the Philistines.
13598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Samuel took a sucking lamb, and offered it for a burnt offering wholly unto the LORD: and Samuel cried unto the LORD for Israel; and the LORD heard him.
13599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And as Samuel was offering up the burnt offering, the Philistines drew near to battle against Israel: but the LORD thundered with a great thunder on that day upon the Philistines, and discomfited them; and they were smitten before Israel.
13600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the men of Israel went out of Mizpeh, and pursued the Philistines, and smote them, until they came under Bethcar.
13601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Samuel took a stone, and set it between Mizpeh and Shen, and called the name of it Ebenezer, saying, Hitherto hath the LORD helped us.
13602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So the Philistines were subdued, and they came no more into the coast of Israel: and the hand of the LORD was against the Philistines all the days of Samuel.
13603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the cities which the Philistines had taken from Israel were restored to Israel, from Ekron even unto Gath; and the coasts thereof did Israel deliver out of the hands of the Philistines. And there was peace between Israel and the Amorites.
13604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Samuel judged Israel all the days of his life.
13605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he went from year to year in circuit to Bethel, and Gilgal, and Mizpeh, and judged Israel in all those places.
13606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his return was to Ramah; for there was his house; and there he judged Israel; and there he built an altar unto the LORD.
13607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when Samuel was old, that he made his sons judges over Israel.
13608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now the name of his firstborn was Joel; and the name of his second, Abiah: they were judges in Beersheba.
13609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And his sons walked not in his ways, but turned aside after lucre, and took bribes, and perverted judgment.
13610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then all the elders of Israel gathered themselves together, and came to Samuel unto Ramah,
13611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And said unto him, Behold, thou art old, and thy sons walk not in thy ways: now make us a king to judge us like all the nations.
13612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the thing displeased Samuel, when they said, Give us a king to judge us. And Samuel prayed unto the LORD.
13613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the LORD said unto Samuel, Hearken unto the voice of the people in all that they say unto thee: for they have not rejected thee, but they have rejected me, that I should not reign over them.
13614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      According to all the works which they have done since the day that I brought them up out of Egypt even unto this day, wherewith they have forsaken me, and served other gods, so do they also unto thee.
13615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now therefore hearken unto their voice: howbeit yet protest solemnly unto them, and show them the manner of the king that shall reign over them.
13616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Samuel told all the words of the LORD unto the people that asked of him a king.
13617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, This will be the manner of the king that shall reign over you: He will take your sons, and appoint them for himself, for his chariots, and to be his horsemen; and some shall run before his chariots.
13618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he will appoint him captains over thousands, and captains over fifties; and will set them to ear his ground, and to reap his harvest, and to make his instruments of war, and instruments of his chariots.
13619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he will take your daughters to be confectionaries, and to be cooks, and to be bakers.
13620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he will take your fields, and your vineyards, and your oliveyards, even the best of them, and give them to his servants.
13621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he will take the tenth of your seed, and of your vineyards, and give to his officers, and to his servants.
13622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he will take your menservants, and your maidservants, and your goodliest young men, and your asses, and put them to his work.
13623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He will take the tenth of your sheep: and ye shall be his servants.
13624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And ye shall cry out in that day because of your king which ye shall have chosen you; and the LORD will not hear you in that day.
13625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Nevertheless the people refused to obey the voice of Samuel; and they said, Nay; but we will have a king over us;
13626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        That we also may be like all the nations; and that our king may judge us, and go out before us, and fight our battles.
13627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Samuel heard all the words of the people, and he rehearsed them in the ears of the LORD.
13628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said to Samuel, Hearken unto their voice, and make them a king. And Samuel said unto the men of Israel, Go ye every man unto his city.
13629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now there was a man of Benjamin, whose name was Kish, the son of Abiel, the son of Zeror, the son of Bechorath, the son of Aphiah, a Benjamite, a mighty man of power.
13630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he had a son, whose name was Saul, a choice young man, and a goodly: and there was not among the children of Israel a goodlier person than he: from his shoulders and upward he was higher than any of the people.
13631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the asses of Kish Saul's father were lost. And Kish said to Saul his son, Take now one of the servants with thee, and arise, go seek the asses.
13632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he passed through mount Ephraim, and passed through the land of Shalisha, but they found them not: then they passed through the land of Shalim, and there they were not: and he passed through the land of the Benjamites, but they found them not.
13633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when they were come to the land of Zuph, Saul said to his servant that was with him, Come, and let us return; lest my father leave caring for the asses, and take thought for us.
13634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto him, Behold now, there is in this city a man of God, and he is an honorable man; all that he saith cometh surely to pass: now let us go thither; peradventure he can show us our way that we should go.
13635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then said Saul to his servant, But, behold, if we go, what shall we bring the man? for the bread is spent in our vessels, and there is not a present to bring to the man of God: what have we?
13636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the servant answered Saul again, and said, Behold, I have here at hand the fourth part of a shekel of silver: that will I give to the man of God, to tell us our way.
13637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (Beforetime in Israel, when a man went to inquire of God, thus he spake, Come, and let us go to the seer: for he that is now called a Prophet was beforetime called a Seer.)
13638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then said Saul to his servant, Well said; come, let us go. So they went unto the city where the man of God was.
13639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And as they went up the hill to the city, they found young maidens going out to draw water, and said unto them, Is the seer here?
13640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they answered them, and said, He is; behold, he is before you: make haste now, for he came to day to the city; for there is a sacrifice of the people to day in the high place:
13641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        As soon as ye be come into the city, ye shall straightway find him, before he go up to the high place to eat: for the people will not eat until he come, because he doth bless the sacrifice; and afterwards they eat that be bidden. Now therefore get you up; for about this time ye shall find him.
13642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they went up into the city: and when they were come into the city, behold, Samuel came out against them, for to go up to the high place.
13643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the LORD had told Samuel in his ear a day before Saul came, saying,
13644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              To morrow about this time I will send thee a man out of the land of Benjamin, and thou shalt anoint him to be captain over my people Israel, that he may save my people out of the hand of the Philistines: for I have looked upon my people, because their cry is come unto me.
13645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Samuel saw Saul, the LORD said unto him, Behold the man whom I spake to thee of! this same shall reign over my people.
13646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Saul drew near to Samuel in the gate, and said, Tell me, I pray thee, where the seer's house is.
13647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Samuel answered Saul, and said, I am the seer: go up before me unto the high place; for ye shall eat with me to day, and to morrow I will let thee go, and will tell thee all that is in thine heart.
13648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And as for thine asses that were lost three days ago, set not thy mind on them; for they are found. And on whom is all the desire of Israel? Is it not on thee, and on all thy father's house?
13649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul answered and said, Am not I a Benjamite, of the smallest of the tribes of Israel? and my family the least of all the families of the tribe of Benjamin? wherefore then speakest thou so to me?
13650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Samuel took Saul and his servant, and brought them into the parlor, and made them sit in the chiefest place among them that were bidden, which were about thirty persons.
13651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Samuel said unto the cook, Bring the portion which I gave thee, of which I said unto thee, Set it by thee.
13652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the cook took up the shoulder, and that which was upon it, and set it before Saul. And Samuel said, Behold that which is left! set it before thee, and eat: for unto this time hath it been kept for thee since I said, I have invited the people. So Saul did eat with Samuel that day.
13653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when they were come down from the high place into the city, Samuel communed with Saul upon the top of the house.
13654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they arose early: and it came to pass about the spring of the day, that Samuel called Saul to the top of the house, saying, Up, that I may send thee away. And Saul arose, and they went out both of them, he and Samuel, abroad.
13655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And as they were going down to the end of the city, Samuel said to Saul, Bid the servant pass on before us, (and he passed on), but stand thou still a while, that I may show thee the word of God.
13656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Samuel took a vial of oil, and poured it upon his head, and kissed him, and said, Is it not because the LORD hath anointed thee to be captain over his inheritance?
13657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When thou art departed from me to day, then thou shalt find two men by Rachel's sepulchre in the border of Benjamin at Zelzah; and they will say unto thee, The asses which thou wentest to seek are found: and, lo, thy father hath left the care of the asses, and sorroweth for you, saying, What shall I do for my son?
13658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then shalt thou go on forward from thence, and thou shalt come to the plain of Tabor, and there shall meet thee three men going up to God to Bethel, one carrying three kids, and another carrying three loaves of bread, and another carrying a bottle of wine:
13659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they will salute thee, and give thee two loaves of bread; which thou shalt receive of their hands.
13660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           After that thou shalt come to the hill of God, where is the garrison of the Philistines: and it shall come to pass, when thou art come thither to the city, that thou shalt meet a company of prophets coming down from the high place with a psaltery, and a tabret, and a pipe, and a harp, before them; and they shall prophesy:
13661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the Spirit of the LORD will come upon thee, and thou shalt prophesy with them, and shalt be turned into another man.
13662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And let it be, when these signs are come unto thee, that thou do as occasion serve thee; for God is with thee.
13663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt go down before me to Gilgal; and, behold, I will come down unto thee, to offer burnt offerings, and to sacrifice sacrifices of peace offerings: seven days shalt thou tarry, till I come to thee, and show thee what thou shalt do.
13664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it was so, that when he had turned his back to go from Samuel, God gave him another heart: and all those signs came to pass that day.
13665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when they came thither to the hill, behold, a company of prophets met him; and the Spirit of God came upon him, and he prophesied among them.
13666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when all that knew him beforetime saw that, behold, he prophesied among the prophets, then the people said one to another, What is this that is come unto the son of Kish? Is Saul also among the prophets?
13667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And one of the same place answered and said, But who is their father? Therefore it became a proverb, Is Saul also among the prophets?
13668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when he had made an end of prophesying, he came to the high place.
13669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Saul's uncle said unto him and to his servant, Whither went ye? And he said, To seek the asses: and when we saw that they were no where, we came to Samuel.
13670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul's uncle said, Tell me, I pray thee, what Samuel said unto you.
13671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul said unto his uncle, He told us plainly that the asses were found. But of the matter of the kingdom, whereof Samuel spake, he told him not.
13672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Samuel called the people together unto the LORD to Mizpeh;
13673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And said unto the children of Israel, Thus saith the LORD God of Israel, I brought up Israel out of Egypt, and delivered you out of the hand of the Egyptians, and out of the hand of all kingdoms, and of them that oppressed you:
13674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And ye have this day rejected your God, who himself saved you out of all your adversities and your tribulations; and ye have said unto him, Nay, but set a king over us. Now therefore present yourselves before the LORD by your tribes, and by your thousands.
13675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Samuel had caused all the tribes of Israel to come near, the tribe of Benjamin was taken.
13676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When he had caused the tribe of Benjamin to come near by their families, the family of Matri was taken, and Saul the son of Kish was taken: and when they sought him, he could not be found.
13677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore they inquired of the LORD further, if the man should yet come thither. And the LORD answered, Behold he hath hid himself among the stuff.
13678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they ran and fetched him thence: and when he stood among the people, he was higher than any of the people from his shoulders and upward.
13679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Samuel said to all the people, See ye him whom the LORD hath chosen, that there is none like him among all the people? And all the people shouted, and said, God save the king.
13680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Samuel told the people the manner of the kingdom, and wrote it in a book, and laid it up before the LORD. And Samuel sent all the people away, every man to his house.
13681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul also went home to Gibeah; and there went with him a band of men, whose hearts God had touched.
13682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But the children of Belial said, How shall this man save us? And they despised him, and brought no presents. But he held his peace.
13683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Nahash the Ammonite came up, and encamped against Jabeshgilead: and all the men of Jabesh said unto Nahash, Make a covenant with us, and we will serve thee.
13684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Nahash the Ammonite answered them, On this condition will I make a covenant with you, that I may thrust out all your right eyes, and lay it for a reproach upon all Israel.
13685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the elders of Jabesh said unto him, Give us seven days' respite, that we may send messengers unto all the coasts of Israel: and then, if there be no man to save us, we will come out to thee.
13686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then came the messengers to Gibeah of Saul, and told the tidings in the ears of the people: and all the people lifted up their voices, and wept.
13687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And, behold, Saul came after the herd out of the field; and Saul said, What aileth the people that they weep? And they told him the tidings of the men of Jabesh.
13688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Spirit of God came upon Saul when he heard those tidings, and his anger was kindled greatly.
13689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took a yoke of oxen, and hewed them in pieces, and sent them throughout all the coasts of Israel by the hands of messengers, saying, Whosoever cometh not forth after Saul and after Samuel, so shall it be done unto his oxen. And the fear of the LORD fell on the people, and they came out with one consent.
13690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when he numbered them in Bezek, the children of Israel were three hundred thousand, and the men of Judah thirty thousand.
13691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they said unto the messengers that came, Thus shall ye say unto the men of Jabeshgilead, To morrow, by that time the sun be hot, ye shall have help. And the messengers came and showed it to the men of Jabesh; and they were glad.
13692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Therefore the men of Jabesh said, To morrow we will come out unto you, and ye shall do with us all that seemeth good unto you.
13693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was so on the morrow, that Saul put the people in three companies; and they came into the midst of the host in the morning watch, and slew the Ammonites until the heat of the day: and it came to pass, that they which remained were scattered, so that two of them were not left together.
13694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the people said unto Samuel, Who is he that said, Shall Saul reign over us? bring the men, that we may put them to death.
13695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul said, There shall not a man be put to death this day: for to day the LORD hath wrought salvation in Israel.
13696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then said Samuel to the people, Come, and let us go to Gilgal, and renew the kingdom there.
13697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And all the people went to Gilgal; and there they made Saul king before the LORD in Gilgal; and there they sacrificed sacrifices of peace offerings before the LORD; and there Saul and all the men of Israel rejoiced greatly.
13698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Samuel said unto all Israel, Behold, I have hearkened unto your voice in all that ye said unto me, and have made a king over you.
13699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And now, behold, the king walketh before you: and I am old and grayheaded; and, behold, my sons are with you: and I have walked before you from my childhood unto this day.
13700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold, here I am: witness against me before the LORD, and before his anointed: whose ox have I taken? or whose ass have I taken? or whom have I defrauded? whom have I oppressed? or of whose hand have I received any bribe to blind mine eyes therewith? and I will restore it you.
13701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they said, Thou hast not defrauded us, nor oppressed us, neither hast thou taken ought of any man's hand.
13702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto them, The LORD is witness against you, and his anointed is witness this day, that ye have not found ought in my hand. And they answered, He is witness.
13703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Samuel said unto the people, It is the LORD that advanced Moses and Aaron, and that brought your fathers up out of the land of Egypt.
13704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now therefore stand still, that I may reason with you before the LORD of all the righteous acts of the LORD, which he did to you and to your fathers.
13705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When Jacob was come into Egypt, and your fathers cried unto the LORD, then the LORD sent Moses and Aaron, which brought forth your fathers out of Egypt, and made them dwell in this place.
13706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when they forgat the LORD their God, he sold them into the hand of Sisera, captain of the host of Hazor, and into the hand of the Philistines, and into the hand of the king of Moab, and they fought against them.
13707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they cried unto the LORD, and said, We have sinned, because we have forsaken the LORD, and have served Baalim and Ashtaroth: but now deliver us out of the hand of our enemies, and we will serve thee.
13708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the LORD sent Jerubbaal, and Bedan, and Jephthah, and Samuel, and delivered you out of the hand of your enemies on every side, and ye dwelled safe.
13709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when ye saw that Nahash the king of the children of Ammon came against you, ye said unto me, Nay; but a king shall reign over us: when the LORD your God was your king.
13710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore behold the king whom ye have chosen, and whom ye have desired! and, behold, the LORD hath set a king over you.
13711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If ye will fear the LORD, and serve him, and obey his voice, and not rebel against the commandment of the LORD, then shall both ye and also the king that reigneth over you continue following the LORD your God:
13712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But if ye will not obey the voice of the LORD, but rebel against the commandment of the LORD, then shall the hand of the LORD be against you, as it was against your fathers.
13713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now therefore stand and see this great thing, which the LORD will do before your eyes.
13714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Is it not wheat harvest to day? I will call unto the LORD, and he shall send thunder and rain; that ye may perceive and see that your wickedness is great, which ye have done in the sight of the LORD, in asking you a king.
13715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Samuel called unto the LORD; and the LORD sent thunder and rain that day: and all the people greatly feared the LORD and Samuel.
13716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the people said unto Samuel, Pray for thy servants unto the LORD thy God, that we die not: for we have added unto all our sins this evil, to ask us a king.
13717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Samuel said unto the people, Fear not: ye have done all this wickedness: yet turn not aside from following the LORD, but serve the LORD with all your heart;
13718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And turn ye not aside: for then should ye go after vain things, which cannot profit nor deliver; for they are vain.
13719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For the LORD will not forsake his people for his great name's sake: because it hath pleased the LORD to make you his people.
13720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover as for me, God forbid that I should sin against the LORD in ceasing to pray for you: but I will teach you the good and the right way:
13721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Only fear the LORD, and serve him in truth with all your heart: for consider how great things he hath done for you.
13722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if ye shall still do wickedly, ye shall be consumed, both ye and your king.
13723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Saul reigned one year; and when he had reigned two years over Israel,
13724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Saul chose him three thousand men of Israel; whereof two thousand were with Saul in Michmash and in mount Bethel, and a thousand were with Jonathan in Gibeah of Benjamin: and the rest of the people he sent every man to his tent.
13725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jonathan smote the garrison of the Philistines that was in Geba, and the Philistines heard of it. And Saul blew the trumpet throughout all the land, saying, Let the Hebrews hear.
13726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all Israel heard say that Saul had smitten a garrison of the Philistines, and that Israel also was had in abomination with the Philistines. And the people were called together after Saul to Gilgal.
13727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the Philistines gathered themselves together to fight with Israel, thirty thousand chariots, and six thousand horsemen, and people as the sand which is on the sea shore in multitude: and they came up, and pitched in Michmash, eastward from Bethaven.
13728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        When the men of Israel saw that they were in a strait, (for the people were distressed,) then the people did hide themselves in caves, and in thickets, and in rocks, and in high places, and in pits.
13729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And some of the Hebrews went over Jordan to the land of Gad and Gilead. As for Saul, he was yet in Gilgal, and all the people followed him trembling.
13730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he tarried seven days, according to the set time that Samuel had appointed: but Samuel came not to Gilgal; and the people were scattered from him.
13731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Saul said, Bring hither a burnt offering to me, and peace offerings. And he offered the burnt offering.
13732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, that as soon as he had made an end of offering the burnt offering, behold, Samuel came; and Saul went out to meet him, that he might salute him.
13733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Samuel said, What hast thou done? And Saul said, Because I saw that the people were scattered from me, and that thou camest not within the days appointed, and that the Philistines gathered themselves together at Michmash;
13734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore said I, The Philistines will come down now upon me to Gilgal, and I have not made supplication unto the LORD: I forced myself therefore, and offered a burnt offering.
13735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Samuel said to Saul, Thou hast done foolishly: thou hast not kept the commandment of the LORD thy God, which he commanded thee: for now would the LORD have established thy kingdom upon Israel for ever.
13736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But now thy kingdom shall not continue: the LORD hath sought him a man after his own heart, and the LORD hath commanded him to be captain over his people, because thou hast not kept that which the LORD commanded thee.
13737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Samuel arose, and gat him up from Gilgal unto Gibeah of Benjamin. And Saul numbered the people that were present with him, about six hundred men.
13738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Saul, and Jonathan his son, and the people that were present with them, abode in Gibeah of Benjamin: but the Philistines encamped in Michmash.
13739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the spoilers came out of the camp of the Philistines in three companies: one company turned unto the way that leadeth to Ophrah, unto the land of Shual:
13740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And another company turned the way to Bethhoron: and another company turned to the way of the border that looketh to the valley of Zeboim toward the wilderness.
13741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now there was no smith found throughout all the land of Israel: for the Philistines said, Lest the Hebrews make them swords or spears:
13742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But all the Israelites went down to the Philistines, to sharpen every man his share, and his coulter, and his axe, and his mattock.
13743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yet they had a file for the mattocks, and for the coulters, and for the forks, and for the axes, and to sharpen the goads.
13744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So it came to pass in the day of battle, that there was neither sword nor spear found in the hand of any of the people that were with Saul and Jonathan: but with Saul and with Jonathan his son was there found.
13745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the garrison of the Philistines went out to the passage of Michmash.
13746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now it came to pass upon a day, that Jonathan the son of Saul said unto the young man that bare his armor, Come, and let us go over to the Philistines' garrison, that is on the other side. But he told not his father.
13747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Saul tarried in the uttermost part of Gibeah under a pomegranate tree which is in Migron: and the people that were with him were about six hundred men;
13748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Ahiah, the son of Ahitub, Ichabod's brother, the son of Phinehas, the son of Eli, the LORD's priest in Shiloh, wearing an ephod. And the people knew not that Jonathan was gone.
13749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And between the passages, by which Jonathan sought to go over unto the Philistines' garrison, there was a sharp rock on the one side, and a sharp rock on the other side: and the name of the one was Bozez, and the name of the other Seneh.
13750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The forefront of the one was situate northward over against Michmash, and the other southward over against Gibeah.
13751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jonathan said to the young man that bare his armor, Come, and let us go over unto the garrison of these uncircumcised: it may be that the LORD will work for us: for there is no restraint to the LORD to save by many or by few.
13752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his armourbearer said unto him, Do all that is in thine heart: turn thee; behold, I am with thee according to thy heart.
13753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then said Jonathan, Behold, we will pass over unto these men, and we will discover ourselves unto them.
13754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    If they say thus unto us, Tarry until we come to you; then we will stand still in our place, and will not go up unto them.
13755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if they say thus, Come up unto us; then we will go up: for the LORD hath delivered them into our hand: and this shall be a sign unto us.
13756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And both of them discovered themselves unto the garrison of the Philistines: and the Philistines said, Behold, the Hebrews come forth out of the holes where they had hid themselves.
13757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the men of the garrison answered Jonathan and his armourbearer, and said, Come up to us, and we will show you a thing. And Jonathan said unto his armourbearer, Come up after me: for the LORD hath delivered them into the hand of Israel.
13758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jonathan climbed up upon his hands and upon his feet, and his armourbearer after him: and they fell before Jonathan; and his armourbearer slew after him.
13759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And that first slaughter, which Jonathan and his armourbearer made, was about twenty men, within as it were an half acre of land, which a yoke of oxen might plow.
13760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there was trembling in the host, in the field, and among all the people: the garrison, and the spoilers, they also trembled, and the earth quaked: so it was a very great trembling.
13761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the watchmen of Saul in Gibeah of Benjamin looked; and, behold, the multitude melted away, and they went on beating down one another.
13762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said Saul unto the people that were with him, Number now, and see who is gone from us. And when they had numbered, behold, Jonathan and his armourbearer were not there.
13763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul said unto Ahiah, Bring hither the ark of God. For the ark of God was at that time with the children of Israel.
13764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, while Saul talked unto the priest, that the noise that was in the host of the Philistines went on and increased: and Saul said unto the priest, Withdraw thine hand.
13765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul and all the people that were with him assembled themselves, and they came to the battle: and, behold, every man's sword was against his fellow, and there was a very great discomfiture.
13766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Moreover the Hebrews that were with the Philistines before that time, which went up with them into the camp from the country round about, even they also turned to be with the Israelites that were with Saul and Jonathan.
13767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Likewise all the men of Israel which had hid themselves in mount Ephraim, when they heard that the Philistines fled, even they also followed hard after them in the battle.
13768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the LORD saved Israel that day: and the battle passed over unto Bethaven.
13769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the men of Israel were distressed that day: for Saul had adjured the people, saying, Cursed be the man that eateth any food until evening, that I may be avenged on mine enemies. So none of the people tasted any food.
13770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And all they of the land came to a wood; and there was honey upon the ground.
13771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when the people were come into the wood, behold, the honey dropped; but no man put his hand to his mouth: for the people feared the oath.
13772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But Jonathan heard not when his father charged the people with the oath: wherefore he put forth the end of the rod that was in his hand, and dipped it in an honeycomb, and put his hand to his mouth; and his eyes were enlightened.
13773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then answered one of the people, and said, Thy father straitly charged the people with an oath, saying, Cursed be the man that eateth any food this day. And the people were faint.
13774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said Jonathan, My father hath troubled the land: see, I pray you, how mine eyes have been enlightened, because I tasted a little of this honey.
13775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         How much more, if haply the people had eaten freely to day of the spoil of their enemies which they found? for had there not been now a much greater slaughter among the Philistines?
13776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they smote the Philistines that day from Michmash to Aijalon: and the people were very faint.
13777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the people flew upon the spoil, and took sheep, and oxen, and calves, and slew them on the ground: and the people did eat them with the blood.
13778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then they told Saul, saying, Behold, the people sin against the LORD, in that they eat with the blood. And he said, Ye have transgressed: roll a great stone unto me this day.
13779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul said, Disperse yourselves among the people, and say unto them, Bring me hither every man his ox, and every man his sheep, and slay them here, and eat; and sin not against the LORD in eating with the blood. And all the people brought every man his ox with him that night, and slew them there.
13780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul built an altar unto the LORD: the same was the first altar that he built unto the LORD.
13781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Saul said, Let us go down after the Philistines by night, and spoil them until the morning light, and let us not leave a man of them. And they said, Do whatsoever seemeth good unto thee. Then said the priest, Let us draw near hither unto God.
13782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul asked counsel of God, Shall I go down after the Philistines? wilt thou deliver them into the hand of Israel? But he answered him not that day.
13783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Saul said, Draw ye near hither, all the chief of the people: and know and see wherein this sin hath been this day.
13784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For, as the LORD liveth, which saveth Israel, though it be in Jonathan my son, he shall surely die. But there was not a man among all the people that answered him.
13785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said he unto all Israel, Be ye on one side, and I and Jonathan my son will be on the other side. And the people said unto Saul, Do what seemeth good unto thee.
13786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Therefore Saul said unto the LORD God of Israel, Give a perfect lot. And Saul and Jonathan were taken: but the people escaped.
13787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul said, Cast lots between me and Jonathan my son. And Jonathan was taken.
13788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Saul said to Jonathan, Tell me what thou hast done. And Jonathan told him, and said, I did but taste a little honey with the end of the rod that was in mine hand, and, lo, I must die.
13789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul answered, God do so and more also: for thou shalt surely die, Jonathan.
13790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the people said unto Saul, Shall Jonathan die, who hath wrought this great salvation in Israel? God forbid: as the LORD liveth, there shall not one hair of his head fall to the ground; for he hath wrought with God this day. So the people rescued Jonathan, that he died not.
13791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Saul went up from following the Philistines: and the Philistines went to their own place.
13792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So Saul took the kingdom over Israel, and fought against all his enemies on every side, against Moab, and against the children of Ammon, and against Edom, and against the kings of Zobah, and against the Philistines: and whithersoever he turned himself, he vexed them.
13793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he gathered an host, and smote the Amalekites, and delivered Israel out of the hands of them that spoiled them.
13794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now the sons of Saul were Jonathan, and Ishui, and Melchishua: and the names of his two daughters were these; the name of the firstborn Merab, and the name of the younger Michal:
13795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the name of Saul's wife was Ahinoam, the daughter of Ahimaaz: and the name of the captain of his host was Abner, the son of Ner, Saul's uncle.
13796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Kish was the father of Saul; and Ner the father of Abner was the son of Abiel.
13797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And there was sore war against the Philistines all the days of Saul: and when Saul saw any strong man, or any valiant man, he took him unto him.
13798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Samuel also said unto Saul, The LORD sent me to anoint thee to be king over his people, over Israel: now therefore hearken thou unto the voice of the words of the LORD.
13799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thus saith the LORD of hosts, I remember that which Amalek did to Israel, how he laid wait for him in the way, when he came up from Egypt.
13800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now go and smite Amalek, and utterly destroy all that they have, and spare them not; but slay both man and woman, infant and suckling, ox and sheep, camel and ass.
13801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul gathered the people together, and numbered them in Telaim, two hundred thousand footmen, and ten thousand men of Judah.
13802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Saul came to a city of Amalek, and laid wait in the valley.
13803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Saul said unto the Kenites, Go, depart, get you down from among the Amalekites, lest I destroy you with them: for ye showed kindness to all the children of Israel, when they came up out of Egypt. So the Kenites departed from among the Amalekites.
13804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul smote the Amalekites from Havilah until thou comest to Shur, that is over against Egypt.
13805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he took Agag the king of the Amalekites alive, and utterly destroyed all the people with the edge of the sword.
13806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But Saul and the people spared Agag, and the best of the sheep, and of the oxen, and of the fatlings, and the lambs, and all that was good, and would not utterly destroy them: but every thing that was vile and refuse, that they destroyed utterly.
13807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then came the word of the LORD unto Samuel, saying,
13808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It repenteth me that I have set up Saul to be king: for he is turned back from following me, and hath not performed my commandments. And it grieved Samuel; and he cried unto the LORD all night.
13809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Samuel rose early to meet Saul in the morning, it was told Samuel, saying, Saul came to Carmel, and, behold, he set him up a place, and is gone about, and passed on, and gone down to Gilgal.
13810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Samuel came to Saul: and Saul said unto him, Blessed be thou of the LORD: I have performed the commandment of the LORD.
13811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Samuel said, What meaneth then this bleating of the sheep in mine ears, and the lowing of the oxen which I hear?
13812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul said, They have brought them from the Amalekites: for the people spared the best of the sheep and of the oxen, to sacrifice unto the LORD thy God; and the rest we have utterly destroyed.
13813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Samuel said unto Saul, Stay, and I will tell thee what the LORD hath said to me this night. And he said unto him, Say on.
13814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Samuel said, When thou wast little in thine own sight, wast thou not made the head of the tribes of Israel, and the LORD anointed thee king over Israel?
13815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD sent thee on a journey, and said, Go and utterly destroy the sinners the Amalekites, and fight against them until they be consumed.
13816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Wherefore then didst thou not obey the voice of the LORD, but didst fly upon the spoil, and didst evil in the sight of the LORD?
13817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul said unto Samuel, Yea, I have obeyed the voice of the LORD, and have gone the way which the LORD sent me, and have brought Agag the king of Amalek, and have utterly destroyed the Amalekites.
13818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the people took of the spoil, sheep and oxen, the chief of the things which should have been utterly destroyed, to sacrifice unto the LORD thy God in Gilgal.
13819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Samuel said, Hath the LORD as great delight in burnt offerings and sacrifices, as in obeying the voice of the LORD? Behold, to obey is better than sacrifice, and to hearken than the fat of rams.
13820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For rebellion is as the sin of witchcraft, and stubbornness is as iniquity and idolatry. Because thou hast rejected the word of the LORD, he hath also rejected thee from being king.
13821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Saul said unto Samuel, I have sinned: for I have transgressed the commandment of the LORD, and thy words: because I feared the people, and obeyed their voice.
13822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore, I pray thee, pardon my sin, and turn again with me, that I may worship the LORD.
13823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Samuel said unto Saul, I will not return with thee: for thou hast rejected the word of the LORD, and the LORD hath rejected thee from being king over Israel.
13824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And as Samuel turned about to go away, he laid hold upon the skirt of his mantle, and it rent.
13825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Samuel said unto him, The LORD hath rent the kingdom of Israel from thee this day, and hath given it to a neighbor of thine, that is better than thou.
13826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And also the Strength of Israel will not lie nor repent: for he is not a man, that he should repent.
13827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then he said, I have sinned: yet honor me now, I pray thee, before the elders of my people, and before Israel, and turn again with me, that I may worship the LORD thy God.
13828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Samuel turned again after Saul; and Saul worshipped the LORD.
13829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said Samuel, Bring ye hither to me Agag the king of the Amalekites. And Agag came unto him delicately. And Agag said, Surely the bitterness of death is past.
13830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Samuel said, As the sword hath made women childless, so shall thy mother be childless among women. And Samuel hewed Agag in pieces before the LORD in Gilgal.
13831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Samuel went to Ramah; and Saul went up to his house to Gibeah of Saul.
13832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Samuel came no more to see Saul until the day of his death: nevertheless Samuel mourned for Saul: and the LORD repented that he had made Saul king over Israel.
13833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto Samuel, How long wilt thou mourn for Saul, seeing I have rejected him from reigning over Israel? fill thine horn with oil, and go, I will send thee to Jesse the Bethlehemite: for I have provided me a king among his sons.
13834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Samuel said, How can I go? if Saul hear it, he will kill me. And the LORD said, Take an heifer with thee, and say, I am come to sacrifice to the LORD.
13835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And call Jesse to the sacrifice, and I will show thee what thou shalt do: and thou shalt anoint unto me him whom I name unto thee.
13836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Samuel did that which the LORD spake, and came to Bethlehem. And the elders of the town trembled at his coming, and said, Comest thou peaceably?
13837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Peaceably: I am come to sacrifice unto the LORD: sanctify yourselves, and come with me to the sacrifice. And he sanctified Jesse and his sons, and called them to the sacrifice.
13838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when they were come, that he looked on Eliab, and said, Surely the LORD's anointed is before him.
13839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the LORD said unto Samuel, Look not on his countenance, or on the height of his stature; because I have refused him: for the LORD seeth not as man seeth; for man looketh on the outward appearance, but the LORD looketh on the heart.
13840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Jesse called Abinadab, and made him pass before Samuel. And he said, Neither hath the LORD chosen this.
13841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Jesse made Shammah to pass by. And he said, Neither hath the LORD chosen this.
13842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Again, Jesse made seven of his sons to pass before Samuel. And Samuel said unto Jesse, The LORD hath not chosen these.
13843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Samuel said unto Jesse, Are here all thy children? And he said, There remaineth yet the youngest, and, behold, he keepeth the sheep. And Samuel said unto Jesse, Send and fetch him: for we will not sit down till he come hither.
13844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he sent, and brought him in. Now he was ruddy, and withal of a beautiful countenance, and goodly to look to. And the LORD said, Arise, anoint him: for this is he.
13845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Samuel took the horn of oil, and anointed him in the midst of his brethren: and the Spirit of the LORD came upon David from that day forward. So Samuel rose up, and went to Ramah.
13846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But the Spirit of the LORD departed from Saul, and an evil spirit from the LORD troubled him.
13847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Saul's servants said unto him, Behold now, an evil spirit from God troubleth thee.
13848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let our lord now command thy servants, which are before thee, to seek out a man, who is a cunning player on an harp: and it shall come to pass, when the evil spirit from God is upon thee, that he shall play with his hand, and thou shalt be well.
13849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Saul said unto his servants, Provide me now a man that can play well, and bring him to me.
13850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then answered one of the servants, and said, Behold, I have seen a son of Jesse the Bethlehemite, that is cunning in playing, and a mighty valiant man, and a man of war, and prudent in matters, and a comely person, and the LORD is with him.
13851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wherefore Saul sent messengers unto Jesse, and said, Send me David thy son, which is with the sheep.
13852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jesse took an ass laden with bread, and a bottle of wine, and a kid, and sent them by David his son unto Saul.
13853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David came to Saul, and stood before him: and he loved him greatly; and he became his armourbearer.
13854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul sent to Jesse, saying, Let David, I pray thee, stand before me; for he hath found favor in my sight.
13855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when the evil spirit from God was upon Saul, that David took an harp, and played with his hand: so Saul was refreshed, and was well, and the evil spirit departed from him.
13856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now the Philistines gathered together their armies to battle, and were gathered together at Shochoh, which belongeth to Judah, and pitched between Shochoh and Azekah, in Ephesdammim.
13857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Saul and the men of Israel were gathered together, and pitched by the valley of Elah, and set the battle in array against the Philistines.
13858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Philistines stood on a mountain on the one side, and Israel stood on a mountain on the other side: and there was a valley between them.
13859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there went out a champion out of the camp of the Philistines, named Goliath, of Gath, whose height was six cubits and a span.
13860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he had an helmet of brass upon his head, and he was armed with a coat of mail; and the weight of the coat was five thousand shekels of brass.
13861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he had greaves of brass upon his legs, and a target of brass between his shoulders.
13862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the staff of his spear was like a weaver's beam; and his spear's head weighed six hundred shekels of iron: and one bearing a shield went before him.
13863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he stood and cried unto the armies of Israel, and said unto them, Why are ye come out to set your battle in array? am not I a Philistine, and ye servants to Saul? choose you a man for you, and let him come down to me.
13864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If he be able to fight with me, and to kill me, then will we be your servants: but if I prevail against him, and kill him, then shall ye be our servants, and serve us.
13865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the Philistine said, I defy the armies of Israel this day; give me a man, that we may fight together.
13866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         When Saul and all Israel heard those words of the Philistine, they were dismayed, and greatly afraid.
13867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now David was the son of that Ephrathite of Bethlehemjudah, whose name was Jesse; and he had eight sons: and the man went among men for an old man in the days of Saul.
13868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the three eldest sons of Jesse went and followed Saul to the battle: and the names of his three sons that went to the battle were Eliab the firstborn, and next unto him Abinadab, and the third Shammah.
13869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David was the youngest: and the three eldest followed Saul.
13870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But David went and returned from Saul to feed his father's sheep at Bethlehem.
13871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the Philistine drew near morning and evening, and presented himself forty days.
13872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jesse said unto David his son, Take now for thy brethren an ephah of this parched corn, and these ten loaves, and run to the camp of thy brethren;
13873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And carry these ten cheeses unto the captain of their thousand, and look how thy brethren fare, and take their pledge.
13874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now Saul, and they, and all the men of Israel, were in the valley of Elah, fighting with the Philistines.
13875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David rose up early in the morning, and left the sheep with a keeper, and took, and went, as Jesse had commanded him; and he came to the trench, as the host was going forth to the fight, and shouted for the battle.
13876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For Israel and the Philistines had put the battle in array, army against army.
13877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David left his carriage in the hand of the keeper of the carriage, and ran into the army, and came and saluted his brethren.
13878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And as he talked with them, behold, there came up the champion, the Philistine of Gath, Goliath by name, out of the armies of the Philistines, and spake according to the same words: and David heard them.
13879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the men of Israel, when they saw the man, fled from him, and were sore afraid.
13880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the men of Israel said, Have ye seen this man that is come up? surely to defy Israel is he come up: and it shall be, that the man who killeth him, the king will enrich him with great riches, and will give him his daughter, and make his father's house free in Israel.
13881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David spake to the men that stood by him, saying, What shall be done to the man that killeth this Philistine, and taketh away the reproach from Israel? for who is this uncircumcised Philistine, that he should defy the armies of the living God?
13882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people answered him after this manner, saying, So shall it be done to the man that killeth him.
13883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Eliab his eldest brother heard when he spake unto the men; and Eliab's anger was kindled against David, and he said, Why camest thou down hither? and with whom hast thou left those few sheep in the wilderness? I know thy pride, and the naughtiness of thine heart; for thou art come down that thou mightest see the battle.
13884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David said, What have I now done? Is there not a cause?
13885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he turned from him toward another, and spake after the same manner: and the people answered him again after the former manner.
13886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the words were heard which David spake, they rehearsed them before Saul: and he sent for him.
13887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said to Saul, Let no man's heart fail because of him; thy servant will go and fight with this Philistine.
13888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul said to David, Thou art not able to go against this Philistine to fight with him: for thou art but a youth, and he a man of war from his youth.
13889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said unto Saul, Thy servant kept his father's sheep, and there came a lion, and a bear, and took a lamb out of the flock:
13890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And I went out after him, and smote him, and delivered it out of his mouth: and when he arose against me, I caught him by his beard, and smote him, and slew him.
13891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thy servant slew both the lion and the bear: and this uncircumcised Philistine shall be as one of them, seeing he hath defied the armies of the living God.
13892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   David said moreover, The LORD that delivered me out of the paw of the lion, and out of the paw of the bear, he will deliver me out of the hand of this Philistine. And Saul said unto David, Go, and the LORD be with thee.
13893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul armed David with his armor, and he put an helmet of brass upon his head; also he armed him with a coat of mail.
13894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David girded his sword upon his armor, and he assayed to go; for he had not proved it. And David said unto Saul, I cannot go with these; for I have not proved them. And David put them off him.
13895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he took his staff in his hand, and chose him five smooth stones out of the brook, and put them in a shepherd's bag which he had, even in a scrip; and his sling was in his hand: and he drew near to the Philistine.
13896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the Philistine came on and drew near unto David; and the man that bare the shield went before him.
13897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when the Philistine looked about, and saw David, he disdained him: for he was but a youth, and ruddy, and of a fair countenance.
13898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the Philistine said unto David, Am I a dog, that thou comest to me with staves? And the Philistine cursed David by his gods.
13899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the Philistine said to David, Come to me, and I will give thy flesh unto the fowls of the air, and to the beasts of the field.
13900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said David to the Philistine, Thou comest to me with a sword, and with a spear, and with a shield: but I come to thee in the name of the LORD of hosts, the God of the armies of Israel, whom thou hast defied.
13901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This day will the LORD deliver thee into mine hand; and I will smite thee, and take thine head from thee; and I will give the carcasses of the host of the Philistines this day unto the fowls of the air, and to the wild beasts of the earth; that all the earth may know that there is a God in Israel.
13902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all this assembly shall know that the LORD saveth not with sword and spear: for the battle is the LORD's, and he will give you into our hands.
13903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when the Philistine arose, and came, and drew nigh to meet David, that David hastened, and ran toward the army to meet the Philistine.
13904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David put his hand in his bag, and took thence a stone, and slang it, and smote the Philistine in his forehead, that the stone sunk into his forehead; and he fell upon his face to the earth.
13905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So David prevailed over the Philistine with a sling and with a stone, and smote the Philistine, and slew him; but there was no sword in the hand of David.
13906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Therefore David ran, and stood upon the Philistine, and took his sword, and drew it out of the sheath thereof, and slew him, and cut off his head therewith. And when the Philistines saw their champion was dead, they fled.
13907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the men of Israel and of Judah arose, and shouted, and pursued the Philistines, until thou come to the valley, and to the gates of Ekron. And the wounded of the Philistines fell down by the way to Shaaraim, even unto Gath, and unto Ekron.
13908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the children of Israel returned from chasing after the Philistines, and they spoiled their tents.
13909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David took the head of the Philistine, and brought it to Jerusalem; but he put his armor in his tent.
13910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when Saul saw David go forth against the Philistine, he said unto Abner, the captain of the host, Abner, whose son is this youth? And Abner said, As thy soul liveth, O king, I cannot tell.
13911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king said, Inquire thou whose son the stripling is.
13912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And as David returned from the slaughter of the Philistine, Abner took him, and brought him before Saul with the head of the Philistine in his hand.
13913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul said to him, Whose son art thou, thou young man? And David answered, I am the son of thy servant Jesse the Bethlehemite.
13914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when he had made an end of speaking unto Saul, that the soul of Jonathan was knit with the soul of David, and Jonathan loved him as his own soul.
13915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul took him that day, and would let him go no more home to his father's house.
13916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Jonathan and David made a covenant, because he loved him as his own soul.
13917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jonathan stripped himself of the robe that was upon him, and gave it to David, and his garments, even to his sword, and to his bow, and to his girdle.
13918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David went out whithersoever Saul sent him, and behaved himself wisely: and Saul set him over the men of war, and he was accepted in the sight of all the people, and also in the sight of Saul's servants.
13919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass as they came, when David was returned from the slaughter of the Philistine, that the women came out of all cities of Israel, singing and dancing, to meet king Saul, with tabrets, with joy, and with instruments of music.
13920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the women answered one another as they played, and said, Saul hath slain his thousands, and David his ten thousands.
13921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul was very wroth, and the saying displeased him; and he said, They have ascribed unto David ten thousands, and to me they have ascribed but thousands: and what can he have more but the kingdom?
13922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Saul eyed David from that day and forward.
13923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass on the morrow, that the evil spirit from God came upon Saul, and he prophesied in the midst of the house: and David played with his hand, as at other times: and there was a javelin in Saul's hand.
13924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul cast the javelin; for he said, I will smite David even to the wall with it. And David avoided out of his presence twice.
13925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul was afraid of David, because the LORD was with him, and was departed from Saul.
13926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Therefore Saul removed him from him, and made him his captain over a thousand; and he went out and came in before the people.
13927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David behaved himself wisely in all his ways; and the LORD was with him.
13928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Wherefore when Saul saw that he behaved himself very wisely, he was afraid of him.
13929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But all Israel and Judah loved David, because he went out and came in before them.
13930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Saul said to David, Behold my elder daughter Merab, her will I give thee to wife: only be thou valiant for me, and fight the LORD's battles. For Saul said, Let not mine hand be upon him, but let the hand of the Philistines be upon him.
13931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David said unto Saul, Who am I? and what is my life, or my father's family in Israel, that I should be son in law to the king?
13932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But it came to pass at the time when Merab Saul's daughter should have been given to David, that she was given unto Adriel the Meholathite to wife.
13933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Michal Saul's daughter loved David: and they told Saul, and the thing pleased him.
13934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul said, I will give him her, that she may be a snare to him, and that the hand of the Philistines may be against him. Wherefore Saul said to David, Thou shalt this day be my son in law in the one of the twain.
13935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul commanded his servants, saying, Commune with David secretly, and say, Behold, the king hath delight in thee, and all his servants love thee: now therefore be the king's son in law.
13936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Saul's servants spake those words in the ears of David. And David said, Seemeth it to you a light thing to be a king's son in law, seeing that I am a poor man, and lightly esteemed?
13937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the servants of Saul told him, saying, On this manner spake David.
13938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul said, Thus shall ye say to David, The king desireth not any dowry, but an hundred foreskins of the Philistines, to be avenged of the king's enemies. But Saul thought to make David fall by the hand of the Philistines.
13939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when his servants told David these words, it pleased David well to be the king's son in law: and the days were not expired.
13940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore David arose and went, he and his men, and slew of the Philistines two hundred men; and David brought their foreskins, and they gave them in full tale to the king, that he might be the king's son in law. And Saul gave him Michal his daughter to wife.
13941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Saul saw and knew that the LORD was with David, and that Michal Saul's daughter loved him.
13942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Saul was yet the more afraid of David; and Saul became David's enemy continually.
13943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the princes of the Philistines went forth: and it came to pass, after they went forth, that David behaved himself more wisely than all the servants of Saul; so that his name was much set by.
13944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Saul spake to Jonathan his son, and to all his servants, that they should kill David.
13945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Jonathan Saul's son delighted much in David: and Jonathan told David, saying, Saul my father seeketh to kill thee: now therefore, I pray thee, take heed to thyself until the morning, and abide in a secret place, and hide thyself:
13946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And I will go out and stand beside my father in the field where thou art, and I will commune with my father of thee; and what I see, that I will tell thee.
13947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jonathan spake good of David unto Saul his father, and said unto him, Let not the king sin against his servant, against David; because he hath not sinned against thee, and because his works have been to thee-ward very good:
13948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For he did put his life in his hand, and slew the Philistine, and the LORD wrought a great salvation for all Israel: thou sawest it, and didst rejoice: wherefore then wilt thou sin against innocent blood, to slay David without a cause?
13949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Saul hearkened unto the voice of Jonathan: and Saul sware, As the LORD liveth, he shall not be slain.
13950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jonathan called David, and Jonathan showed him all those things. And Jonathan brought David to Saul, and he was in his presence, as in times past.
13951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there was war again: and David went out, and fought with the Philistines, and slew them with a great slaughter; and they fled from him.
13952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the evil spirit from the LORD was upon Saul, as he sat in his house with his javelin in his hand: and David played with his hand.
13953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul sought to smite David even to the wall with the javelin: but he slipped away out of Saul's presence, and he smote the javelin into the wall: and David fled, and escaped that night.
13954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Saul also sent messengers unto David's house, to watch him, and to slay him in the morning: and Michal David's wife told him, saying, If thou save not thy life to night, to morrow thou shalt be slain.
13955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Michal let David down through a window: and he went, and fled, and escaped.
13956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Michal took an image, and laid it in the bed, and put a pillow of goats' hair for his bolster, and covered it with a cloth.
13957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Saul sent messengers to take David, she said, He is sick.
13958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul sent the messengers again to see David, saying, Bring him up to me in the bed, that I may slay him.
13959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the messengers were come in, behold, there was an image in the bed, with a pillow of goats' hair for his bolster.
13960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Saul said unto Michal, Why hast thou deceived me so, and sent away mine enemy, that he is escaped? And Michal answered Saul, He said unto me, Let me go; why should I kill thee?
13961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So David fled, and escaped, and came to Samuel to Ramah, and told him all that Saul had done to him. And he and Samuel went and dwelt in Naioth.
13962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it was told Saul, saying, Behold, David is at Naioth in Ramah.
13963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Saul sent messengers to take David: and when they saw the company of the prophets prophesying, and Samuel standing as appointed over them, the Spirit of God was upon the messengers of Saul, and they also prophesied.
13964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when it was told Saul, he sent other messengers, and they prophesied likewise. And Saul sent messengers again the third time, and they prophesied also.
13965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then went he also to Ramah, and came to a great well that is in Sechu: and he asked and said, Where are Samuel and David? And one said, Behold, they be at Naioth in Ramah.
13966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he went thither to Naioth in Ramah: and the Spirit of God was upon him also, and he went on, and prophesied, until he came to Naioth in Ramah.
13967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he stripped off his clothes also, and prophesied before Samuel in like manner, and lay down naked all that day and all that night. Wherefore they say, Is Saul also among the prophets?
13968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David fled from Naioth in Ramah, and came and said before Jonathan, What have I done? what is mine iniquity? and what is my sin before thy father, that he seeketh my life?
13969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said unto him, God forbid; thou shalt not die: behold, my father will do nothing either great or small, but that he will show it me: and why should my father hide this thing from me? it is not so.
13970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And David sware moreover, and said, Thy father certainly knoweth that I have found grace in thine eyes; and he saith, Let not Jonathan know this, lest he be grieved: but truly as the LORD liveth, and as thy soul liveth, there is but a step between me and death.
13971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then said Jonathan unto David, Whatsoever thy soul desireth, I will even do it for thee.
13972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said unto Jonathan, Behold, to morrow is the new moon, and I should not fail to sit with the king at meat: but let me go, that I may hide myself in the field unto the third day at even.
13973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If thy father at all miss me, then say, David earnestly asked leave of me that he might run to Bethlehem his city: for there is a yearly sacrifice there for all the family.
13974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               If he say thus, It is well; thy servant shall have peace: but if he be very wroth, then be sure that evil is determined by him.
13975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Therefore thou shalt deal kindly with thy servant; for thou hast brought thy servant into a covenant of the LORD with thee: notwithstanding, if there be in me iniquity, slay me thyself; for why shouldest thou bring me to thy father?
13976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jonathan said, Far be it from thee: for if I knew certainly that evil were determined by my father to come upon thee, then would not I tell it thee?
13977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then said David to Jonathan, Who shall tell me? or what if thy father answer thee roughly?
13978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jonathan said unto David, Come, and let us go out into the field. And they went out both of them into the field.
13979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jonathan said unto David, O LORD God of Israel, when I have sounded my father about to morrow any time, or the third day, and, behold, if there be good toward David, and I then send not unto thee, and show it thee;
13980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD do so and much more to Jonathan: but if it please my father to do thee evil, then I will show it thee, and send thee away, that thou mayest go in peace: and the LORD be with thee, as he hath been with my father.
13981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And thou shalt not only while yet I live show me the kindness of the LORD, that I die not:
13982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But also thou shalt not cut off thy kindness from my house for ever: no, not when the LORD hath cut off the enemies of David every one from the face of the earth.
13983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Jonathan made a covenant with the house of David, saying, Let the LORD even require it at the hand of David's enemies.
13984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jonathan caused David to swear again, because he loved him: for he loved him as he loved his own soul.
13985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Jonathan said to David, To morrow is the new moon: and thou shalt be missed, because thy seat will be empty.
13986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when thou hast stayed three days, then thou shalt go down quickly, and come to the place where thou didst hide thyself when the business was in hand, and shalt remain by the stone Ezel.
13987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I will shoot three arrows on the side thereof, as though I shot at a mark.
13988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And, behold, I will send a lad, saying, Go, find out the arrows. If I expressly say unto the lad, Behold, the arrows are on this side of thee, take them; then come thou: for there is peace to thee, and no hurt; as the LORD liveth.
13989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But if I say thus unto the young man, Behold, the arrows are beyond thee; go thy way: for the LORD hath sent thee away.
13990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And as touching the matter which thou and I have spoken of, behold, the LORD be between thee and me for ever.
13991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So David hid himself in the field: and when the new moon was come, the king sat him down to eat meat.
13992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king sat upon his seat, as at other times, even upon a seat by the wall: and Jonathan arose, and Abner sat by Saul's side, and David's place was empty.
13993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Nevertheless Saul spake not any thing that day: for he thought, Something hath befallen him, he is not clean; surely he is not clean.
13994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass on the morrow, which was the second day of the month, that David's place was empty: and Saul said unto Jonathan his son, Wherefore cometh not the son of Jesse to meat, neither yesterday, nor to day?
13995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jonathan answered Saul, David earnestly asked leave of me to go to Bethlehem:
13996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Let me go, I pray thee; for our family hath a sacrifice in the city; and my brother, he hath commanded me to be there: and now, if I have found favor in thine eyes, let me get away, I pray thee, and see my brethren. Therefore he cometh not unto the king's table.
13997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Saul's anger was kindled against Jonathan, and he said unto him, Thou son of the perverse rebellious woman, do not I know that thou hast chosen the son of Jesse to thine own confusion, and unto the confusion of thy mother's nakedness?
13998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For as long as the son of Jesse liveth upon the ground, thou shalt not be established, nor thy kingdom. Wherefore now send and fetch him unto me, for he shall surely die.
13999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Jonathan answered Saul his father, and said unto him, Wherefore shall he be slain? what hath he done?
14000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Saul cast a javelin at him to smite him: whereby Jonathan knew that it was determined of his father to slay David.
14001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Jonathan arose from the table in fierce anger, and did eat no meat the second day of the month: for he was grieved for David, because his father had done him shame.
14002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass in the morning, that Jonathan went out into the field at the time appointed with David, and a little lad with him.
14003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said unto his lad, Run, find out now the arrows which I shoot. And as the lad ran, he shot an arrow beyond him.
14004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when the lad was come to the place of the arrow which Jonathan had shot, Jonathan cried after the lad, and said, Is not the arrow beyond thee?
14005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jonathan cried after the lad, Make speed, haste, stay not. And Jonathan's lad gathered up the arrows, and came to his master.
14006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the lad knew not any thing: only Jonathan and David knew the matter.
14007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jonathan gave his artillery unto his lad, and said unto him, Go, carry them to the city.
14008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And as soon as the lad was gone, David arose out of a place toward the south, and fell on his face to the ground, and bowed himself three times: and they kissed one another, and wept one with another, until David exceeded.
14009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jonathan said to David, Go in peace, forasmuch as we have sworn both of us in the name of the LORD, saying, The LORD be between me and thee, and between my seed and thy seed for ever. And he arose and departed: and Jonathan went into the city.
14010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then came David to Nob to Ahimelech the priest: and Ahimelech was afraid at the meeting of David, and said unto him, Why art thou alone, and no man with thee?
14011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David said unto Ahimelech the priest, The king hath commanded me a business, and hath said unto me, Let no man know any thing of the business whereabout I send thee, and what I have commanded thee: and I have appointed my servants to such and such a place.
14012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore what is under thine hand? give me five loaves of bread in mine hand, or what there is present.
14013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priest answered David, and said, There is no common bread under mine hand, but there is hallowed bread; if the young men have kept themselves at least from women.
14014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David answered the priest, and said unto him, Of a truth women have been kept from us about these three days, since I came out, and the vessels of the young men are holy, and the bread is in a manner common, yea, though it were sanctified this day in the vessel.
14015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So the priest gave him hallowed bread: for there was no bread there but the showbread, that was taken from before the LORD, to put hot bread in the day when it was taken away.
14016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now a certain man of the servants of Saul was there that day, detained before the LORD; and his name was Doeg, an Edomite, the chiefest of the herdmen that belonged to Saul.
14017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David said unto Ahimelech, And is there not here under thine hand spear or sword? for I have neither brought my sword nor my weapons with me, because the king's business required haste.
14018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the priest said, The sword of Goliath the Philistine, whom thou slewest in the valley of Elah, behold, it is here wrapped in a cloth behind the ephod: if thou wilt take that, take it: for there is no other save that here. And David said, There is none like that; give it me.
14019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David arose and fled that day for fear of Saul, and went to Achish the king of Gath.
14020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the servants of Achish said unto him, Is not this David the king of the land? did they not sing one to another of him in dances, saying, Saul hath slain his thousands, and David his ten thousands?
14021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David laid up these words in his heart, and was sore afraid of Achish the king of Gath.
14022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he changed his behavior before them, and feigned himself mad in their hands, and scrabbled on the doors of the gate, and let his spittle fall down upon his beard.
14023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then said Achish unto his servants, Lo, ye see the man is mad: wherefore then have ye brought him to me?
14024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Have I need of mad men, that ye have brought this fellow to play the mad man in my presence? shall this fellow come into my house?
14025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   David therefore departed thence, and escaped to the cave Adullam: and when his brethren and all his father's house heard it, they went down thither to him.
14026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And every one that was in distress, and every one that was in debt, and every one that was discontented, gathered themselves unto him; and he became a captain over them: and there were with him about four hundred men.
14027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David went thence to Mizpeh of Moab: and he said unto the king of Moab, Let my father and my mother, I pray thee, come forth, and be with you, till I know what God will do for me.
14028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he brought them before the king of Moab: and they dwelt with him all the while that David was in the hold.
14029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the prophet Gad said unto David, Abide not in the hold; depart, and get thee into the land of Judah. Then David departed, and came into the forest of Hareth.
14030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When Saul heard that David was discovered, and the men that were with him, (now Saul abode in Gibeah under a tree in Ramah, having his spear in his hand, and all his servants were standing about him;)
14031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Saul said unto his servants that stood about him, Hear now, ye Benjamites; will the son of Jesse give every one of you fields and vineyards, and make you all captains of thousands, and captains of hundreds;
14032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       That all of you have conspired against me, and there is none that showeth me that my son hath made a league with the son of Jesse, and there is none of you that is sorry for me, or showeth unto me that my son hath stirred up my servant against me, to lie in wait, as at this day?
14033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then answered Doeg the Edomite, which was set over the servants of Saul, and said, I saw the son of Jesse coming to Nob, to Ahimelech the son of Ahitub.
14034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he inquired of the LORD for him, and gave him victuals, and gave him the sword of Goliath the Philistine.
14035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the king sent to call Ahimelech the priest, the son of Ahitub, and all his father's house, the priests that were in Nob: and they came all of them to the king.
14036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Saul said, Hear now, thou son of Ahitub. And he answered, Here I am, my lord.
14037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Saul said unto him, Why have ye conspired against me, thou and the son of Jesse, in that thou hast given him bread, and a sword, and hast inquired of God for him, that he should rise against me, to lie in wait, as at this day?
14038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Ahimelech answered the king, and said, And who is so faithful among all thy servants as David, which is the king's son in law, and goeth at thy bidding, and is honorable in thine house?
14039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Did I then begin to inquire of God for him? be it far from me: let not the king impute any thing unto his servant, nor to all the house of my father: for thy servant knew nothing of all this, less or more.
14040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the king said, Thou shalt surely die, Ahimelech, thou, and all thy father's house.
14041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the king said unto the footmen that stood about him, Turn, and slay the priests of the LORD: because their hand also is with David, and because they knew when he fled, and did not show it to me. But the servants of the king would not put forth their hand to fall upon the priests of the LORD.
14042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the king said to Doeg, Turn thou, and fall upon the priests. And Doeg the Edomite turned, and he fell upon the priests, and slew on that day fourscore and five persons that did wear a linen ephod.
14043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Nob, the city of the priests, smote he with the edge of the sword, both men and women, children and sucklings, and oxen, and asses, and sheep, with the edge of the sword.
14044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And one of the sons of Ahimelech the son of Ahitub, named Abiathar, escaped, and fled after David.
14045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Abiathar showed David that Saul had slain the LORD's priests.
14046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David said unto Abiathar, I knew it that day, when Doeg the Edomite was there, that he would surely tell Saul: I have occasioned the death of all the persons of thy father's house.
14047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Abide thou with me, fear not: for he that seeketh my life seeketh thy life: but with me thou shalt be in safeguard.
14048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then they told David, saying, Behold, the Philistines fight against Keilah, and they rob the threshingfloors.
14049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore David inquired of the LORD, saying, Shall I go and smite these Philistines? And the LORD said unto David, Go, and smite the Philistines, and save Keilah.
14050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And David's men said unto him, Behold, we be afraid here in Judah: how much more then if we come to Keilah against the armies of the Philistines?
14051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then David inquired of the LORD yet again. And the LORD answered him and said, Arise, go down to Keilah; for I will deliver the Philistines into thine hand.
14052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So David and his men went to Keilah, and fought with the Philistines, and brought away their cattle, and smote them with a great slaughter. So David saved the inhabitants of Keilah.
14053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass, when Abiathar the son of Ahimelech fled to David to Keilah, that he came down with an ephod in his hand.
14054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it was told Saul that David was come to Keilah. And Saul said, God hath delivered him into mine hand; for he is shut in, by entering into a town that hath gates and bars.
14055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul called all the people together to war, to go down to Keilah, to besiege David and his men.
14056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David knew that Saul secretly practiced mischief against him; and he said to Abiathar the priest, Bring hither the ephod.
14057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said David, O LORD God of Israel, thy servant hath certainly heard that Saul seeketh to come to Keilah, to destroy the city for my sake.
14058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Will the men of Keilah deliver me up into his hand? will Saul come down, as thy servant hath heard? O LORD God of Israel, I beseech thee, tell thy servant. And the LORD said, He will come down.
14059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said David, Will the men of Keilah deliver me and my men into the hand of Saul? And the LORD said, They will deliver thee up.
14060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then David and his men, which were about six hundred, arose and departed out of Keilah, and went whithersoever they could go. And it was told Saul that David was escaped from Keilah; and he forbare to go forth.
14061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David abode in the wilderness in strong holds, and remained in a mountain in the wilderness of Ziph. And Saul sought him every day, but God delivered him not into his hand.
14062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David saw that Saul was come out to seek his life: and David was in the wilderness of Ziph in a wood.
14063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jonathan Saul's son arose, and went to David into the wood, and strengthened his hand in God.
14064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto him, Fear not: for the hand of Saul my father shall not find thee; and thou shalt be king over Israel, and I shall be next unto thee; and that also Saul my father knoweth.
14065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they two made a covenant before the LORD: and David abode in the wood, and Jonathan went to his house.
14066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then came up the Ziphites to Saul to Gibeah, saying, Doth not David hide himself with us in strong holds in the wood, in the hill of Hachilah, which is on the south of Jeshimon?
14067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now therefore, O king, come down according to all the desire of thy soul to come down; and our part shall be to deliver him into the king's hand.
14068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul said, Blessed be ye of the LORD; for ye have compassion on me.
14069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Go, I pray you, prepare yet, and know and see his place where his haunt is, and who hath seen him there: for it is told me that he dealeth very subtilly.
14070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   See therefore, and take knowledge of all the lurking places where he hideth himself, and come ye again to me with the certainty, and I will go with you: and it shall come to pass, if he be in the land, that I will search him out throughout all the thousands of Judah.
14071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they arose, and went to Ziph before Saul: but David and his men were in the wilderness of Maon, in the plain on the south of Jeshimon.
14072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Saul also and his men went to seek him. And they told David; wherefore he came down into a rock, and abode in the wilderness of Maon. And when Saul heard that, he pursued after David in the wilderness of Maon.
14073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Saul went on this side of the mountain, and David and his men on that side of the mountain: and David made haste to get away for fear of Saul; for Saul and his men compassed David and his men round about to take them.
14074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But there came a messenger unto Saul, saying, Haste thee, and come; for the Philistines have invaded the land.
14075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Wherefore Saul returned from pursuing after David, and went against the Philistines: therefore they called that place Selahammahlekoth.
14076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David went up from thence, and dwelt in strong holds at Engedi.
14077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when Saul was returned from following the Philistines, that it was told him, saying, Behold, David is in the wilderness of Engedi.
14078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Saul took three thousand chosen men out of all Israel, and went to seek David and his men upon the rocks of the wild goats.
14079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he came to the sheepcotes by the way, where was a cave; and Saul went in to cover his feet: and David and his men remained in the sides of the cave.
14080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the men of David said unto him, Behold the day of which the LORD said unto thee, Behold, I will deliver thine enemy into thine hand, that thou mayest do to him as it shall seem good unto thee. Then David arose, and cut off the skirt of Saul's robe privily.
14081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass afterward, that David's heart smote him, because he had cut off Saul's skirt.
14082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto his men, The LORD forbid that I should do this thing unto my master, the LORD's anointed, to stretch forth mine hand against him, seeing he is the anointed of the LORD.
14083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So David stayed his servants with these words, and suffered them not to rise against Saul. But Saul rose up out of the cave, and went on his way.
14084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           David also arose afterward, and went out of the cave, and cried after Saul, saying, My lord the king. And when Saul looked behind him, David stooped with his face to the earth, and bowed himself.
14085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said to Saul, Wherefore hearest thou men's words, saying, Behold, David seeketh thy hurt?
14086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold, this day thine eyes have seen how that the LORD had delivered thee to day into mine hand in the cave: and some bade me kill thee: but mine eye spared thee; and I said, I will not put forth mine hand against my lord; for he is the LORD's anointed.
14087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moreover, my father, see, yea, see the skirt of thy robe in my hand: for in that I cut off the skirt of thy robe, and killed thee not, know thou and see that there is neither evil nor transgression in mine hand, and I have not sinned against thee; yet thou huntest my soul to take it.
14088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The LORD judge between me and thee, and the LORD avenge me of thee: but mine hand shall not be upon thee.
14089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            As saith the proverb of the ancients, Wickedness proceedeth from the wicked: but mine hand shall not be upon thee.
14090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       After whom is the king of Israel come out? after whom dost thou pursue? after a dead dog, after a flea.
14091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD therefore be judge, and judge between me and thee, and see, and plead my cause, and deliver me out of thine hand.
14092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when David had made an end of speaking these words unto Saul, that Saul said, Is this thy voice, my son David? And Saul lifted up his voice, and wept.
14093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said to David, Thou art more righteous than I: for thou hast rewarded me good, whereas I have rewarded thee evil.
14094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And thou hast showed this day how that thou hast dealt well with me: forasmuch as when the LORD had delivered me into thine hand, thou killedst me not.
14095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For if a man find his enemy, will he let him go well away? wherefore the LORD reward thee good for that thou hast done unto me this day.
14096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And now, behold, I know well that thou shalt surely be king, and that the kingdom of Israel shall be established in thine hand.
14097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Swear now therefore unto me by the LORD, that thou wilt not cut off my seed after me, and that thou wilt not destroy my name out of my father's house.
14098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David sware unto Saul. And Saul went home; but David and his men gat them up unto the hold.
14099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Samuel died; and all the Israelites were gathered together, and lamented him, and buried him in his house at Ramah. And David arose, and went down to the wilderness of Paran.
14100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there was a man in Maon, whose possessions were in Carmel; and the man was very great, and he had three thousand sheep, and a thousand goats: and he was shearing his sheep in Carmel.
14101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now the name of the man was Nabal; and the name of his wife Abigail: and she was a woman of good understanding, and of a beautiful countenance: but the man was churlish and evil in his doings; and he was of the house of Caleb.
14102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And David heard in the wilderness that Nabal did shear his sheep.
14103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And David sent out ten young men, and David said unto the young men, Get you up to Carmel, and go to Nabal, and greet him in my name:
14104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thus shall ye say to him that liveth in prosperity, Peace be both to thee, and peace be to thine house, and peace be unto all that thou hast.
14105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And now I have heard that thou hast shearers: now thy shepherds which were with us, we hurt them not, neither was there ought missing unto them, all the while they were in Carmel.
14106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ask thy young men, and they will show thee. Wherefore let the young men find favor in thine eyes: for we come in a good day: give, I pray thee, whatsoever cometh to thine hand unto thy servants, and to thy son David.
14107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when David's young men came, they spake to Nabal according to all those words in the name of David, and ceased.
14108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Nabal answered David's servants, and said, Who is David? and who is the son of Jesse? there be many servants now a days that break away every man from his master.
14109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shall I then take my bread, and my water, and my flesh that I have killed for my shearers, and give it unto men, whom I know not whence they be?
14110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So David's young men turned their way, and went again, and came and told him all those sayings.
14111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David said unto his men, Gird ye on every man his sword. And they girded on every man his sword; and David also girded on his sword: and there went up after David about four hundred men; and two hundred abode by the stuff.
14112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But one of the young men told Abigail, Nabal's wife, saying, Behold, David sent messengers out of the wilderness to salute our master; and he railed on them.
14113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the men were very good unto us, and we were not hurt, neither missed we any thing, as long as we were conversant with them, when we were in the fields:
14114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            They were a wall unto us both by night and day, all the while we were with them keeping the sheep.
14115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore know and consider what thou wilt do; for evil is determined against our master, and against all his household: for he is such a son of Belial, that a man cannot speak to him.
14116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Abigail made haste, and took two hundred loaves, and two bottles of wine, and five sheep ready dressed, and five measures of parched corn, and an hundred clusters of raisins, and two hundred cakes of figs, and laid them on asses.
14117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she said unto her servants, Go on before me; behold, I come after you. But she told not her husband Nabal.
14118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it was so, as she rode on the ass, that she came down by the covert on the hill, and, behold, David and his men came down against her; and she met them.
14119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now David had said, Surely in vain have I kept all that this fellow hath in the wilderness, so that nothing was missed of all that pertained unto him: and he hath requited me evil for good.
14120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So and more also do God unto the enemies of David, if I leave of all that pertain to him by the morning light any that pisseth against the wall.
14121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when Abigail saw David, she hasted, and lighted off the ass, and fell before David on her face, and bowed herself to the ground,
14122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And fell at his feet, and said, Upon me, my lord, upon me let this iniquity be: and let thine handmaid, I pray thee, speak in thine audience, and hear the words of thine handmaid.
14123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Let not my lord, I pray thee, regard this man of Belial, even Nabal: for as his name is, so is he; Nabal is his name, and folly is with him: but I thine handmaid saw not the young men of my lord, whom thou didst send.
14124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore, my lord, as the LORD liveth, and as thy soul liveth, seeing the LORD hath withholden thee from coming to shed blood, and from avenging thyself with thine own hand, now let thine enemies, and they that seek evil to my lord, be as Nabal.
14125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And now this blessing which thine handmaid hath brought unto my lord, let it even be given unto the young men that follow my lord.
14126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I pray thee, forgive the trespass of thine handmaid: for the LORD will certainly make my lord a sure house; because my lord fighteth the battles of the LORD, and evil hath not been found in thee all thy days.
14127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Yet a man is risen to pursue thee, and to seek thy soul: but the soul of my lord shall be bound in the bundle of life with the LORD thy God; and the souls of thine enemies, them shall he sling out, as out of the middle of a sling.
14128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it shall come to pass, when the LORD shall have done to my lord according to all the good that he hath spoken concerning thee, and shall have appointed thee ruler over Israel;
14129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That this shall be no grief unto thee, nor offense of heart unto my lord, either that thou hast shed blood causeless, or that my lord hath avenged himself: but when the LORD shall have dealt well with my lord, then remember thine handmaid.
14130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David said to Abigail, Blessed be the LORD God of Israel, which sent thee this day to meet me:
14131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And blessed be thy advice, and blessed be thou, which hast kept me this day from coming to shed blood, and from avenging myself with mine own hand.
14132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For in very deed, as the LORD God of Israel liveth, which hath kept me back from hurting thee, except thou hadst hasted and come to meet me, surely there had not been left unto Nabal by the morning light any that pisseth against the wall.
14133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So David received of her hand that which she had brought him, and said unto her, Go up in peace to thine house; see, I have hearkened to thy voice, and have accepted thy person.
14134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abigail came to Nabal; and, behold, he held a feast in his house, like the feast of a king; and Nabal's heart was merry within him, for he was very drunken: wherefore she told him nothing, less or more, until the morning light.
14135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But it came to pass in the morning, when the wine was gone out of Nabal, and his wife had told him these things, that his heart died within him, and he became as a stone.
14136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass about ten days after, that the LORD smote Nabal, that he died.
14137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when David heard that Nabal was dead, he said, Blessed be the LORD, that hath pleaded the cause of my reproach from the hand of Nabal, and hath kept his servant from evil: for the LORD hath returned the wickedness of Nabal upon his own head. And David sent and communed with Abigail, to take her to him to wife.
14138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the servants of David were come to Abigail to Carmel, they spake unto her, saying, David sent us unto thee, to take thee to him to wife.
14139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And she arose, and bowed herself on her face to the earth, and said, Behold, let thine handmaid be a servant to wash the feet of the servants of my lord.
14140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abigail hasted, and arose and rode upon an ass, with five damsels of hers that went after her; and she went after the messengers of David, and became his wife.
14141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                David also took Ahinoam of Jezreel; and they were also both of them his wives.
14142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But Saul had given Michal his daughter, David's wife, to Phalti the son of Laish, which was of Gallim.
14143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the Ziphites came unto Saul to Gibeah, saying, Doth not David hide himself in the hill of Hachilah, which is before Jeshimon?
14144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Saul arose, and went down to the wilderness of Ziph, having three thousand chosen men of Israel with him, to seek David in the wilderness of Ziph.
14145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Saul pitched in the hill of Hachilah, which is before Jeshimon, by the way. But David abode in the wilderness, and he saw that Saul came after him into the wilderness.
14146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               David therefore sent out spies, and understood that Saul was come in very deed.
14147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David arose, and came to the place where Saul had pitched: and David beheld the place where Saul lay, and Abner the son of Ner, the captain of his host: and Saul lay in the trench, and the people pitched round about him.
14148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then answered David and said to Ahimelech the Hittite, and to Abishai the son of Zeruiah, brother to Joab, saying, Who will go down with me to Saul to the camp? And Abishai said, I will go down with thee.
14149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So David and Abishai came to the people by night: and, behold, Saul lay sleeping within the trench, and his spear stuck in the ground at his bolster: but Abner and the people lay round about him.
14150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then said Abishai to David, God hath delivered thine enemy into thine hand this day: now therefore let me smite him, I pray thee, with the spear even to the earth at once, and I will not smite him the second time.
14151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David said to Abishai, Destroy him not: for who can stretch forth his hand against the LORD's anointed, and be guiltless?
14152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              David said furthermore, As the LORD liveth, the LORD shall smite him; or his day shall come to die; or he shall descend into battle, and perish.
14153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The LORD forbid that I should stretch forth mine hand against the LORD's anointed: but, I pray thee, take thou now the spear that is at his bolster, and the cruse of water, and let us go.
14154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So David took the spear and the cruse of water from Saul's bolster; and they gat them away, and no man saw it, nor knew it, neither awaked: for they were all asleep; because a deep sleep from the LORD was fallen upon them.
14155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then David went over to the other side, and stood on the top of an hill afar off; a great space being between them:
14156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David cried to the people, and to Abner the son of Ner, saying, Answerest thou not, Abner? Then Abner answered and said, Who art thou that criest to the king?
14157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And David said to Abner, Art not thou a valiant man? and who is like to thee in Israel? wherefore then hast thou not kept thy lord the king? for there came one of the people in to destroy the king thy lord.
14158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       This thing is not good that thou hast done. As the LORD liveth, ye are worthy to die, because ye have not kept your master, the LORD's anointed. And now see where the king's spear is, and the cruse of water that was at his bolster.
14159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Saul knew David's voice, and said, Is this thy voice, my son David? And David said, It is my voice, my lord, O king.
14160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he said, Wherefore doth my lord thus pursue after his servant? for what have I done? or what evil is in mine hand?
14161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now therefore, I pray thee, let my lord the king hear the words of his servant. If the LORD have stirred thee up against me, let him accept an offering: but if they be the children of men, cursed be they before the LORD; for they have driven me out this day from abiding in the inheritance of the LORD, saying, Go, serve other gods.
14162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now therefore, let not my blood fall to the earth before the face of the LORD: for the king of Israel is come out to seek a flea, as when one doth hunt a partridge in the mountains.
14163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said Saul, I have sinned: return, my son David: for I will no more do thee harm, because my soul was precious in thine eyes this day: behold, I have played the fool, and have erred exceedingly.
14164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David answered and said, Behold the king's spear! and let one of the young men come over and fetch it.
14165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The LORD render to every man his righteousness and his faithfulness; for the LORD delivered thee into my hand to day, but I would not stretch forth mine hand against the LORD's anointed.
14166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And, behold, as thy life was much set by this day in mine eyes, so let my life be much set by in the eyes of the LORD, and let him deliver me out of all tribulation.
14167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Saul said to David, Blessed be thou, my son David: thou shalt both do great things, and also shalt still prevail. So David went on his way, and Saul returned to his place.
14168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David said in his heart, I shall now perish one day by the hand of Saul: there is nothing better for me than that I should speedily escape into the land of the Philistines; and Saul shall despair of me, to seek me any more in any coast of Israel: so shall I escape out of his hand.
14169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David arose, and he passed over with the six hundred men that were with him unto Achish, the son of Maoch, king of Gath.
14170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And David dwelt with Achish at Gath, he and his men, every man with his household, even David with his two wives, Ahinoam the Jezreelitess, and Abigail the Carmelitess, Nabal's wife.
14171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it was told Saul that David was fled to Gath: and he sought no more again for him.
14172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David said unto Achish, If I have now found grace in thine eyes, let them give me a place in some town in the country, that I may dwell there: for why should thy servant dwell in the royal city with thee?
14173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then Achish gave him Ziklag that day: wherefore Ziklag pertaineth unto the kings of Judah unto this day.
14174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the time that David dwelt in the country of the Philistines was a full year and four months.
14175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David and his men went up, and invaded the Geshurites, and the Gezrites, and the Amalekites: for those nations were of old the inhabitants of the land, as thou goest to Shur, even unto the land of Egypt.
14176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David smote the land, and left neither man nor woman alive, and took away the sheep, and the oxen, and the asses, and the camels, and the apparel, and returned, and came to Achish.
14177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Achish said, Whither have ye made a road to day? And David said, Against the south of Judah, and against the south of the Jerahmeelites, and against the south of the Kenites.
14178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David saved neither man nor woman alive, to bring tidings to Gath, saying, Lest they should tell on us, saying, So did David, and so will be his manner all the while he dwelleth in the country of the Philistines.
14179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Achish believed David, saying, He hath made his people Israel utterly to abhor him; therefore he shall be my servant for ever.
14180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass in those days, that the Philistines gathered their armies together for warfare, to fight with Israel. And Achish said unto David, Know thou assuredly, that thou shalt go out with me to battle, thou and thy men.
14181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David said to Achish, Surely thou shalt know what thy servant can do. And Achish said to David, Therefore will I make thee keeper of mine head for ever.
14182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now Samuel was dead, and all Israel had lamented him, and buried him in Ramah, even in his own city. And Saul had put away those that had familiar spirits, and the wizards, out of the land.
14183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the Philistines gathered themselves together, and came and pitched in Shunem: and Saul gathered all Israel together, and they pitched in Gilboa.
14184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Saul saw the host of the Philistines, he was afraid, and his heart greatly trembled.
14185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when Saul inquired of the LORD, the LORD answered him not, neither by dreams, nor by Urim, nor by prophets.
14186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then said Saul unto his servants, Seek me a woman that hath a familiar spirit, that I may go to her, and inquire of her. And his servants said to him, Behold, there is a woman that hath a familiar spirit at Endor.
14187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Saul disguised himself, and put on other raiment, and he went, and two men with him, and they came to the woman by night: and he said, I pray thee, divine unto me by the familiar spirit, and bring me him up, whom I shall name unto thee.
14188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the woman said unto him, Behold, thou knowest what Saul hath done, how he hath cut off those that have familiar spirits, and the wizards, out of the land: wherefore then layest thou a snare for my life, to cause me to die?
14189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Saul sware to her by the LORD, saying, As the LORD liveth, there shall no punishment happen to thee for this thing.
14190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said the woman, Whom shall I bring up unto thee? And he said, Bring me up Samuel.
14191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the woman saw Samuel, she cried with a loud voice: and the woman spake to Saul, saying, Why hast thou deceived me? for thou art Saul.
14192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king said unto her, Be not afraid: for what sawest thou? And the woman said unto Saul, I saw gods ascending out of the earth.
14193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said unto her, What form is he of? And she said, An old man cometh up; and he is covered with a mantle. And Saul perceived that it was Samuel, and he stooped with his face to the ground, and bowed himself.
14194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Samuel said to Saul, Why hast thou disquieted me, to bring me up? And Saul answered, I am sore distressed; for the Philistines make war against me, and God is departed from me, and answereth me no more, neither by prophets, nor by dreams: therefore I have called thee, that thou mayest make known unto me what I shall do.
14195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then said Samuel, Wherefore then dost thou ask of me, seeing the LORD is departed from thee, and is become thine enemy?
14196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD hath done to him, as he spake by me: for the LORD hath rent the kingdom out of thine hand, and given it to thy neighbor, even to David:
14197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Because thou obeyedst not the voice of the LORD, nor executedst his fierce wrath upon Amalek, therefore hath the LORD done this thing unto thee this day.
14198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Moreover the LORD will also deliver Israel with thee into the hand of the Philistines: and to morrow shalt thou and thy sons be with me: the LORD also shall deliver the host of Israel into the hand of the Philistines.
14199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Saul fell straightway all along on the earth, and was sore afraid, because of the words of Samuel: and there was no strength in him; for he had eaten no bread all the day, nor all the night.
14200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the woman came unto Saul, and saw that he was sore troubled, and said unto him, Behold, thine handmaid hath obeyed thy voice, and I have put my life in my hand, and have hearkened unto thy words which thou spakest unto me.
14201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore, I pray thee, hearken thou also unto the voice of thine handmaid, and let me set a morsel of bread before thee; and eat, that thou mayest have strength, when thou goest on thy way.
14202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But he refused, and said, I will not eat. But his servants, together with the woman, compelled him; and he hearkened unto their voice. So he arose from the earth, and sat upon the bed.
14203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the woman had a fat calf in the house; and she hasted, and killed it, and took flour, and kneaded it, and did bake unleavened bread thereof:
14204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And she brought it before Saul, and before his servants; and they did eat. Then they rose up, and went away that night.
14205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now the Philistines gathered together all their armies to Aphek: and the Israelites pitched by a fountain which is in Jezreel.
14206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the lords of the Philistines passed on by hundreds, and by thousands: but David and his men passed on in the rearward with Achish.
14207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then said the princes of the Philistines, What do these Hebrews here? And Achish said unto the princes of the Philistines, Is not this David, the servant of Saul the king of Israel, which hath been with me these days, or these years, and I have found no fault in him since he fell unto me unto this day?
14208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the princes of the Philistines were wroth with him; and the princes of the Philistines said unto him, Make this fellow return, that he may go again to his place which thou hast appointed him, and let him not go down with us to battle, lest in the battle he be an adversary to us: for wherewith should he reconcile himself unto his master? should it not be with the heads of these men?
14209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Is not this David, of whom they sang one to another in dances, saying, Saul slew his thousands, and David his ten thousands?
14210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Achish called David, and said unto him, Surely, as the LORD liveth, thou hast been upright, and thy going out and thy coming in with me in the host is good in my sight: for I have not found evil in thee since the day of thy coming unto me unto this day: nevertheless the lords favor thee not.
14211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore now return, and go in peace, that thou displease not the lords of the Philistines.
14212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David said unto Achish, But what have I done? and what hast thou found in thy servant so long as I have been with thee unto this day, that I may not go fight against the enemies of my lord the king?
14213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Achish answered and said to David, I know that thou art good in my sight, as an angel of God: notwithstanding the princes of the Philistines have said, He shall not go up with us to the battle.
14214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wherefore now rise up early in the morning with thy master's servants that are come with thee: and as soon as ye be up early in the morning, and have light, depart.
14215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So David and his men rose up early to depart in the morning, to return into the land of the Philistines. And the Philistines went up to Jezreel.
14216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when David and his men were come to Ziklag on the third day, that the Amalekites had invaded the south, and Ziklag, and smitten Ziklag, and burned it with fire;
14217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And had taken the women captives, that were therein: they slew not any, either great or small, but carried them away, and went on their way.
14218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So David and his men came to the city, and, behold, it was burned with fire; and their wives, and their sons, and their daughters, were taken captives.
14219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then David and the people that were with him lifted up their voice and wept, until they had no more power to weep.
14220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And David's two wives were taken captives, Ahinoam the Jezreelitess, and Abigail the wife of Nabal the Carmelite.
14221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And David was greatly distressed; for the people spake of stoning him, because the soul of all the people was grieved, every man for his sons and for his daughters: but David encouraged himself in the LORD his God.
14222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David said to Abiathar the priest, Ahimelech's son, I pray thee, bring me hither the ephod. And Abiathar brought thither the ephod to David.
14223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David inquired at the LORD, saying, Shall I pursue after this troop? shall I overtake them? And he answered him, Pursue: for thou shalt surely overtake them, and without fail recover all.
14224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So David went, he and the six hundred men that were with him, and came to the brook Besor, where those that were left behind stayed.
14225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But David pursued, he and four hundred men: for two hundred abode behind, which were so faint that they could not go over the brook Besor.
14226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they found an Egyptian in the field, and brought him to David, and gave him bread, and he did eat; and they made him drink water;
14227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they gave him a piece of a cake of figs, and two clusters of raisins: and when he had eaten, his spirit came again to him: for he had eaten no bread, nor drunk any water, three days and three nights.
14228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said unto him, To whom belongest thou? and whence art thou? And he said, I am a young man of Egypt, servant to an Amalekite; and my master left me, because three days agone I fell sick.
14229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We made an invasion upon the south of the Cherethites, and upon the coast which belongeth to Judah, and upon the south of Caleb; and we burned Ziklag with fire.
14230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David said to him, Canst thou bring me down to this company? And he said, Swear unto me by God, that thou wilt neither kill me, nor deliver me into the hands of my master, and I will bring thee down to this company.
14231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when he had brought him down, behold, they were spread abroad upon all the earth, eating and drinking, and dancing, because of all the great spoil that they had taken out of the land of the Philistines, and out of the land of Judah.
14232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And David smote them from the twilight even unto the evening of the next day: and there escaped not a man of them, save four hundred young men, which rode upon camels, and fled.
14233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And David recovered all that the Amalekites had carried away: and David rescued his two wives.
14234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And there was nothing lacking to them, neither small nor great, neither sons nor daughters, neither spoil, nor any thing that they had taken to them: David recovered all.
14235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David took all the flocks and the herds, which they drave before those other cattle, and said, This is David's spoil.
14236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David came to the two hundred men, which were so faint that they could not follow David, whom they had made also to abide at the brook Besor: and they went forth to meet David, and to meet the people that were with him: and when David came near to the people, he saluted them.
14237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then answered all the wicked men and men of Belial, of those that went with David, and said, Because they went not with us, we will not give them ought of the spoil that we have recovered, save to every man his wife and his children, that they may lead them away, and depart.
14238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then said David, Ye shall not do so, my brethren, with that which the LORD hath given us, who hath preserved us, and delivered the company that came against us into our hand.
14239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For who will hearken unto you in this matter? but as his part is that goeth down to the battle, so shall his part be that tarrieth by the stuff: they shall part alike.
14240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it was so from that day forward, that he made it a statute and an ordinance for Israel unto this day.
14241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when David came to Ziklag, he sent of the spoil unto the elders of Judah, even to his friends, saying, Behold a present for you of the spoil of the enemies of the LORD;
14242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       To them which were in Bethel, and to them which were in south Ramoth, and to them which were in Jattir,
14243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And to them which were in Aroer, and to them which were in Siphmoth, and to them which were in Eshtemoa,
14244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And to them which were in Rachal, and to them which were in the cities of the Jerahmeelites, and to them which were in the cities of the Kenites,
14245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And to them which were in Hormah, and to them which were in Chorashan, and to them which were in Athach,
14246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And to them which were in Hebron, and to all the places where David himself and his men were wont to haunt.
14247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the Philistines fought against Israel: and the men of Israel fled from before the Philistines, and fell down slain in mount Gilboa.
14248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the Philistines followed hard upon Saul and upon his sons; and the Philistines slew Jonathan, and Abinadab, and Melchishua, Saul's sons.
14249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the battle went sore against Saul, and the archers hit him; and he was sore wounded of the archers.
14250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then said Saul unto his armourbearer, Draw thy sword, and thrust me through therewith; lest these uncircumcised come and thrust me through, and abuse me. But his armourbearer would not; for he was sore afraid. Therefore Saul took a sword, and fell upon it.
14251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when his armourbearer saw that Saul was dead, he fell likewise upon his sword, and died with him.
14252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Saul died, and his three sons, and his armourbearer, and all his men, that same day together.
14253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when the men of Israel that were on the other side of the valley, and they that were on the other side Jordan, saw that the men of Israel fled, and that Saul and his sons were dead, they forsook the cities, and fled; and the Philistines came and dwelt in them.
14254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass on the morrow, when the Philistines came to strip the slain, that they found Saul and his three sons fallen in mount Gilboa.
14255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they cut off his head, and stripped off his armor, and sent into the land of the Philistines round about, to publish it in the house of their idols, and among the people.
14256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they put his armor in the house of Ashtaroth: and they fastened his body to the wall of Bethshan.
14257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the inhabitants of Jabeshgilead heard of that which the Philistines had done to Saul;
14258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All the valiant men arose, and went all night, and took the body of Saul and the bodies of his sons from the wall of Bethshan, and came to Jabesh, and burnt them there.
14259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they took their bones, and buried them under a tree at Jabesh, and fasted seven days.
14260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now it came to pass after the death of Saul, when David was returned from the slaughter of the Amalekites, and David had abode two days in Ziklag;
14261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 It came even to pass on the third day, that, behold, a man came out of the camp from Saul with his clothes rent, and earth upon his head: and so it was, when he came to David, that he fell to the earth, and did obeisance.
14262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David said unto him, From whence comest thou? And he said unto him, Out of the camp of Israel am I escaped.
14263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David said unto him, How went the matter? I pray thee, tell me. And he answered, That the people are fled from the battle, and many of the people also are fallen and dead; and Saul and Jonathan his son are dead also.
14264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David said unto the young man that told him, How knowest thou that Saul and Jonathan his son be dead?
14265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the young man that told him said, As I happened by chance upon mount Gilboa, behold, Saul leaned upon his spear; and, lo, the chariots and horsemen followed hard after him.
14266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when he looked behind him, he saw me, and called unto me. And I answered, Here am I.
14267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto me, Who art thou? And I answered him, I am an Amalekite.
14268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             He said unto me again, Stand, I pray thee, upon me, and slay me: for anguish is come upon me, because my life is yet whole in me.
14269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So I stood upon him, and slew him, because I was sure that he could not live after that he was fallen: and I took the crown that was upon his head, and the bracelet that was on his arm, and have brought them hither unto my lord.
14270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then David took hold on his clothes, and rent them; and likewise all the men that were with him:
14271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they mourned, and wept, and fasted until even, for Saul, and for Jonathan his son, and for the people of the LORD, and for the house of Israel; because they were fallen by the sword.
14272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David said unto the young man that told him, Whence art thou? And he answered, I am the son of a stranger, an Amalekite.
14273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David said unto him, How wast thou not afraid to stretch forth thine hand to destroy the LORD's anointed?
14274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David called one of the young men, and said, Go near, and fall upon him. And he smote him that he died.
14275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David said unto him, Thy blood be upon thy head; for thy mouth hath testified against thee, saying, I have slain the LORD's anointed.
14276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David lamented with this lamentation over Saul and over Jonathan his son:
14277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              (Also he bade them teach the children of Judah the use of the bow: behold, it is written in the book of Jasher.)
14278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The beauty of Israel is slain upon thy high places: how are the mighty fallen!
14279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tell it not in Gath, publish it not in the streets of Askelon; lest the daughters of the Philistines rejoice, lest the daughters of the uncircumcised triumph.
14280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ye mountains of Gilboa, let there be no dew, neither let there be rain, upon you, nor fields of offerings: for there the shield of the mighty is vilely cast away, the shield of Saul, as though he had not been anointed with oil.
14281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       From the blood of the slain, from the fat of the mighty, the bow of Jonathan turned not back, and the sword of Saul returned not empty.
14282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Saul and Jonathan were lovely and pleasant in their lives, and in their death they were not divided: they were swifter than eagles, they were stronger than lions.
14283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ye daughters of Israel, weep over Saul, who clothed you in scarlet, with other delights, who put on ornaments of gold upon your apparel.
14284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How are the mighty fallen in the midst of the battle! O Jonathan, thou wast slain in thine high places.
14285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I am distressed for thee, my brother Jonathan: very pleasant hast thou been unto me: thy love to me was wonderful, passing the love of women.
14286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   How are the mighty fallen, and the weapons of war perished!
14287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass after this, that David inquired of the LORD, saying, Shall I go up into any of the cities of Judah? And the LORD said unto him, Go up. And David said, Whither shall I go up? And he said, Unto Hebron.
14288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So David went up thither, and his two wives also, Ahinoam the Jezreelitess, and Abigail Nabal's wife the Carmelite.
14289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his men that were with him did David bring up, every man with his household: and they dwelt in the cities of Hebron.
14290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the men of Judah came, and there they anointed David king over the house of Judah. And they told David, saying, That the men of Jabeshgilead were they that buried Saul.
14291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David sent messengers unto the men of Jabeshgilead, and said unto them, Blessed be ye of the LORD, that ye have showed this kindness unto your lord, even unto Saul, and have buried him.
14292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And now the LORD show kindness and truth unto you: and I also will requite you this kindness, because ye have done this thing.
14293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore now let your hands be strengthened, and be ye valiant: for your master Saul is dead, and also the house of Judah have anointed me king over them.
14294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But Abner the son of Ner, captain of Saul's host, took Ishbosheth the son of Saul, and brought him over to Mahanaim;
14295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And made him king over Gilead, and over the Ashurites, and over Jezreel, and over Ephraim, and over Benjamin, and over all Israel.
14296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Ishbosheth Saul's son was forty years old when he began to reign over Israel, and reigned two years. But the house of Judah followed David.
14297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the time that David was king in Hebron over the house of Judah was seven years and six months.
14298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abner the son of Ner, and the servants of Ishbosheth the son of Saul, went out from Mahanaim to Gibeon.
14299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joab the son of Zeruiah, and the servants of David, went out, and met together by the pool of Gibeon: and they sat down, the one on the one side of the pool, and the other on the other side of the pool.
14300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Abner said to Joab, Let the young men now arise, and play before us. And Joab said, Let them arise.
14301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then there arose and went over by number twelve of Benjamin, which pertained to Ishbosheth the son of Saul, and twelve of the servants of David.
14302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they caught every one his fellow by the head, and thrust his sword in his fellow's side; so they fell down together: wherefore that place was called Helkathhazzurim, which is in Gibeon.
14303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And there was a very sore battle that day; and Abner was beaten, and the men of Israel, before the servants of David.
14304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there were three sons of Zeruiah there, Joab, and Abishai, and Asahel: and Asahel was as light of foot as a wild roe.
14305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Asahel pursued after Abner; and in going he turned not to the right hand nor to the left from following Abner.
14306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Abner looked behind him, and said, Art thou Asahel? And he answered, I am.
14307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Abner said to him, Turn thee aside to thy right hand or to thy left, and lay thee hold on one of the young men, and take thee his armor. But Asahel would not turn aside from following of him.
14308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Abner said again to Asahel, Turn thee aside from following me: wherefore should I smite thee to the ground? how then should I hold up my face to Joab thy brother?
14309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Howbeit he refused to turn aside: wherefore Abner with the hinder end of the spear smote him under the fifth rib, that the spear came out behind him; and he fell down there, and died in the same place: and it came to pass, that as many as came to the place where Asahel fell down and died stood still.
14310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Joab also and Abishai pursued after Abner: and the sun went down when they were come to the hill of Ammah, that lieth before Giah by the way of the wilderness of Gibeon.
14311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the children of Benjamin gathered themselves together after Abner, and became one troop, and stood on the top of an hill.
14312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then Abner called to Joab, and said, Shall the sword devour for ever? knowest thou not that it will be bitterness in the latter end? how long shall it be then, ere thou bid the people return from following their brethren?
14313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joab said, As God liveth, unless thou hadst spoken, surely then in the morning the people had gone up every one from following his brother.
14314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Joab blew a trumpet, and all the people stood still, and pursued after Israel no more, neither fought they any more.
14315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Abner and his men walked all that night through the plain, and passed over Jordan, and went through all Bithron, and they came to Mahanaim.
14316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Joab returned from following Abner: and when he had gathered all the people together, there lacked of David's servants nineteen men and Asahel.
14317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But the servants of David had smitten of Benjamin, and of Abner's men, so that three hundred and threescore men died.
14318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they took up Asahel, and buried him in the sepulchre of his father, which was in Bethlehem. And Joab and his men went all night, and they came to Hebron at break of day.
14319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now there was long war between the house of Saul and the house of David: but David waxed stronger and stronger, and the house of Saul waxed weaker and weaker.
14320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And unto David were sons born in Hebron: and his firstborn was Amnon, of Ahinoam the Jezreelitess;
14321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And his second, Chileab, of Abigail the wife of Nabal the Carmelite; and the third, Absalom the son of Maacah the daughter of Talmai king of Geshur;
14322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son of Abital;
14323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sixth, Ithream, by Eglah David's wife. These were born to David in Hebron.
14324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, while there was war between the house of Saul and the house of David, that Abner made himself strong for the house of Saul.
14325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Saul had a concubine, whose name was Rizpah, the daughter of Aiah: and Ishbosheth said to Abner, Wherefore hast thou gone in unto my father's concubine?
14326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then was Abner very wroth for the words of Ishbosheth, and said, Am I a dog's head, which against Judah do show kindness this day unto the house of Saul thy father, to his brethren, and to his friends, and have not delivered thee into the hand of David, that thou chargest me to day with a fault concerning this woman?
14327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So do God to Abner, and more also, except, as the LORD hath sworn to David, even so I do to him;
14328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    To translate the kingdom from the house of Saul, and to set up the throne of David over Israel and over Judah, from Dan even to Beersheba.
14329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he could not answer Abner a word again, because he feared him.
14330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Abner sent messengers to David on his behalf, saying, Whose is the land? saying also, Make thy league with me, and, behold, my hand shall be with thee, to bring about all Israel unto thee.
14331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Well; I will make a league with thee: but one thing I require of thee, that is, Thou shalt not see my face, except thou first bring Michal Saul's daughter, when thou comest to see my face.
14332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David sent messengers to Ishbosheth Saul's son, saying, Deliver me my wife Michal, which I espoused to me for an hundred foreskins of the Philistines.
14333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Ishbosheth sent, and took her from her husband, even from Phaltiel the son of Laish.
14334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And her husband went with her along weeping behind her to Bahurim. Then said Abner unto him, Go, return. And he returned.
14335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Abner had communication with the elders of Israel, saying, Ye sought for David in times past to be king over you:
14336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now then do it: for the LORD hath spoken of David, saying, By the hand of my servant David I will save my people Israel out of the hand of the Philistines, and out of the hand of all their enemies.
14337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Abner also spake in the ears of Benjamin: and Abner went also to speak in the ears of David in Hebron all that seemed good to Israel, and that seemed good to the whole house of Benjamin.
14338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So Abner came to David to Hebron, and twenty men with him. And David made Abner and the men that were with him a feast.
14339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Abner said unto David, I will arise and go, and will gather all Israel unto my lord the king, that they may make a league with thee, and that thou mayest reign over all that thine heart desireth. And David sent Abner away; and he went in peace.
14340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And, behold, the servants of David and Joab came from pursuing a troop, and brought in a great spoil with them: but Abner was not with David in Hebron; for he had sent him away, and he was gone in peace.
14341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When Joab and all the host that was with him were come, they told Joab, saying, Abner the son of Ner came to the king, and he hath sent him away, and he is gone in peace.
14342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then Joab came to the king, and said, What hast thou done? behold, Abner came unto thee; why is it that thou hast sent him away, and he is quite gone?
14343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thou knowest Abner the son of Ner, that he came to deceive thee, and to know thy going out and thy coming in, and to know all that thou doest.
14344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Joab was come out from David, he sent messengers after Abner, which brought him again from the well of Sirah: but David knew it not.
14345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Abner was returned to Hebron, Joab took him aside in the gate to speak with him quietly, and smote him there under the fifth rib, that he died, for the blood of Asahel his brother.
14346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And afterward when David heard it, he said, I and my kingdom are guiltless before the LORD for ever from the blood of Abner the son of Ner:
14347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Let it rest on the head of Joab, and on all his father's house; and let there not fail from the house of Joab one that hath an issue, or that is a leper, or that leaneth on a staff, or that falleth on the sword, or that lacketh bread.
14348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Joab, and Abishai his brother slew Abner, because he had slain their brother Asahel at Gibeon in the battle.
14349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said to Joab, and to all the people that were with him, Rend your clothes, and gird you with sackcloth, and mourn before Abner. And king David himself followed the bier.
14350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they buried Abner in Hebron: and the king lifted up his voice, and wept at the grave of Abner; and all the people wept.
14351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king lamented over Abner, and said, Died Abner as a fool dieth?
14352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thy hands were not bound, nor thy feet put into fetters: as a man falleth before wicked men, so fellest thou. And all the people wept again over him.
14353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when all the people came to cause David to eat meat while it was yet day, David sware, saying, So do God to me, and more also, if I taste bread, or ought else, till the sun be down.
14354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And all the people took notice of it, and it pleased them: as whatsoever the king did pleased all the people.
14355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For all the people and all Israel understood that day that it was not of the king to slay Abner the son of Ner.
14356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king said unto his servants, Know ye not that there is a prince and a great man fallen this day in Israel?
14357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I am this day weak, though anointed king; and these men the sons of Zeruiah be too hard for me: the LORD shall reward the doer of evil according to his wickedness.
14358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when Saul's son heard that Abner was dead in Hebron, his hands were feeble, and all the Israelites were troubled.
14359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Saul's son had two men that were captains of bands: the name of the one was Baanah, and the name of the other Rechab, the sons of Rimmon a Beerothite, of the children of Benjamin: (for Beeroth also was reckoned to Benjamin.
14360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Beerothites fled to Gittaim, and were sojourners there until this day.)
14361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jonathan, Saul's son, had a son that was lame of his feet. He was five years old when the tidings came of Saul and Jonathan out of Jezreel, and his nurse took him up, and fled: and it came to pass, as she made haste to flee, that he fell, and became lame. And his name was Mephibosheth.
14362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Rimmon the Beerothite, Rechab and Baanah, went, and came about the heat of the day to the house of Ishbosheth, who lay on a bed at noon.
14363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they came thither into the midst of the house, as though they would have fetched wheat; and they smote him under the fifth rib: and Rechab and Baanah his brother escaped.
14364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For when they came into the house, he lay on his bed in his bedchamber, and they smote him, and slew him, and beheaded him, and took his head, and gat them away through the plain all night.
14365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they brought the head of Ishbosheth unto David to Hebron, and said to the king, Behold the head of Ishbosheth the son of Saul thine enemy, which sought thy life; and the LORD hath avenged my lord the king this day of Saul, and of his seed.
14366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David answered Rechab and Baanah his brother, the sons of Rimmon the Beerothite, and said unto them, As the LORD liveth, who hath redeemed my soul out of all adversity,
14367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When one told me, saying, Behold, Saul is dead, thinking to have brought good tidings, I took hold of him, and slew him in Ziklag, who thought that I would have given him a reward for his tidings:
14368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       How much more, when wicked men have slain a righteous person in his own house upon his bed? shall I not therefore now require his blood of your hand, and take you away from the earth?
14369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David commanded his young men, and they slew them, and cut off their hands and their feet, and hanged them up over the pool in Hebron. But they took the head of Ishbosheth, and buried it in the sepulchre of Abner in Hebron.
14370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then came all the tribes of Israel to David unto Hebron, and spake, saying, Behold, we are thy bone and thy flesh.
14371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Also in time past, when Saul was king over us, thou wast he that leddest out and broughtest in Israel: and the LORD said to thee, Thou shalt feed my people Israel, and thou shalt be a captain over Israel.
14372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So all the elders of Israel came to the king to Hebron; and king David made a league with them in Hebron before the LORD: and they anointed David king over Israel.
14373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                David was thirty years old when he began to reign, and he reigned forty years.
14374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In Hebron he reigned over Judah seven years and six months: and in Jerusalem he reigned thirty and three years over all Israel and Judah.
14375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king and his men went to Jerusalem unto the Jebusites, the inhabitants of the land: which spake unto David, saying, Except thou take away the blind and the lame, thou shalt not come in hither: thinking, David cannot come in hither.
14376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Nevertheless David took the strong hold of Zion: the same is the city of David.
14377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David said on that day, Whosoever getteth up to the gutter, and smiteth the Jebusites, and the lame and the blind that are hated of David's soul, he shall be chief and captain. Wherefore they said, The blind and the lame shall not come into the house.
14378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So David dwelt in the fort, and called it the city of David. And David built round about from Millo and inward.
14379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David went on, and grew great, and the LORD God of hosts was with him.
14380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Hiram king of Tyre sent messengers to David, and cedar trees, and carpenters, and masons: and they built David an house.
14381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David perceived that the LORD had established him king over Israel, and that he had exalted his kingdom for his people Israel's sake.
14382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David took him more concubines and wives out of Jerusalem, after he was come from Hebron: and there were yet sons and daughters born to David.
14383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And these be the names of those that were born unto him in Jerusalem; Shammuah, and Shobab, and Nathan, and Solomon,
14384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ibhar also, and Elishua, and Nepheg, and Japhia,
14385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Elishama, and Eliada, and Eliphalet.
14386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But when the Philistines heard that they had anointed David king over Israel, all the Philistines came up to seek David; and David heard of it, and went down to the hold.
14387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The Philistines also came and spread themselves in the valley of Rephaim.
14388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David inquired of the LORD, saying, Shall I go up to the Philistines? wilt thou deliver them into mine hand? And the LORD said unto David, Go up: for I will doubtless deliver the Philistines into thine hand.
14389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David came to Baalperazim, and David smote them there, and said, The LORD hath broken forth upon mine enemies before me, as the breach of waters. Therefore he called the name of that place Baalperazim.
14390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there they left their images, and David and his men burned them.
14391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the Philistines came up yet again, and spread themselves in the valley of Rephaim.
14392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when David inquired of the LORD, he said, Thou shalt not go up; but fetch a compass behind them, and come upon them over against the mulberry trees.
14393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And let it be, when thou hearest the sound of a going in the tops of the mulberry trees, that then thou shalt bestir thyself: for then shall the LORD go out before thee, to smite the host of the Philistines.
14394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And David did so, as the LORD had commanded him; and smote the Philistines from Geba until thou come to Gazer.
14395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Again, David gathered together all the chosen men of Israel, thirty thousand.
14396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David arose, and went with all the people that were with him from Baale of Judah, to bring up from thence the ark of God, whose name is called by the name of the LORD of hosts that dwelleth between the cherubim.
14397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they set the ark of God upon a new cart, and brought it out of the house of Abinadab that was in Gibeah: and Uzzah and Ahio, the sons of Abinadab, drave the new cart.
14398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they brought it out of the house of Abinadab which was at Gibeah, accompanying the ark of God: and Ahio went before the ark.
14399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And David and all the house of Israel played before the LORD on all manner of instruments made of fir wood, even on harps, and on psalteries, and on timbrels, and on cornets, and on cymbals.
14400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when they came to Nachon's threshingfloor, Uzzah put forth his hand to the ark of God, and took hold of it; for the oxen shook it.
14401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the anger of the LORD was kindled against Uzzah; and God smote him there for his error; and there he died by the ark of God.
14402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David was displeased, because the LORD had made a breach upon Uzzah: and he called the name of the place Perezuzzah to this day.
14403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And David was afraid of the LORD that day, and said, How shall the ark of the LORD come to me?
14404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So David would not remove the ark of the LORD unto him into the city of David: but David carried it aside into the house of Obededom the Gittite.
14405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the ark of the LORD continued in the house of Obededom the Gittite three months: and the LORD blessed Obededom, and all his household.
14406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it was told king David, saying, The LORD hath blessed the house of Obededom, and all that pertaineth unto him, because of the ark of God. So David went and brought up the ark of God from the house of Obededom into the city of David with gladness.
14407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it was so, that when they that bare the ark of the LORD had gone six paces, he sacrificed oxen and fatlings.
14408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David danced before the LORD with all his might; and David was girded with a linen ephod.
14409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So David and all the house of Israel brought up the ark of the LORD with shouting, and with the sound of the trumpet.
14410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And as the ark of the LORD came into the city of David, Michal Saul's daughter looked through a window, and saw king David leaping and dancing before the LORD; and she despised him in her heart.
14411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they brought in the ark of the LORD, and set it in his place, in the midst of the tabernacle that David had pitched for it: and David offered burnt offerings and peace offerings before the LORD.
14412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And as soon as David had made an end of offering burnt offerings and peace offerings, he blessed the people in the name of the LORD of hosts.
14413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he dealt among all the people, even among the whole multitude of Israel, as well to the women as men, to every one a cake of bread, and a good piece of flesh, and a flagon of wine. So all the people departed every one to his house.
14414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then David returned to bless his household. And Michal the daughter of Saul came out to meet David, and said, How glorious was the king of Israel to day, who uncovered himself to day in the eyes of the handmaids of his servants, as one of the vain fellows shamelessly uncovereth himself!
14415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David said unto Michal, It was before the LORD, which chose me before thy father, and before all his house, to appoint me ruler over the people of the LORD, over Israel: therefore will I play before the LORD.
14416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I will yet be more vile than thus, and will be base in mine own sight: and of the maidservants which thou hast spoken of, of them shall I be had in honor.
14417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Therefore Michal the daughter of Saul had no child unto the day of her death.
14418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when the king sat in his house, and the LORD had given him rest round about from all his enemies;
14419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               That the king said unto Nathan the prophet, See now, I dwell in an house of cedar, but the ark of God dwelleth within curtains.
14420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Nathan said to the king, Go, do all that is in thine heart; for the LORD is with thee.
14421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass that night, that the word of the LORD came unto Nathan, saying,
14422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Go and tell my servant David, Thus saith the LORD, Shalt thou build me an house for me to dwell in?
14423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whereas I have not dwelt in any house since the time that I brought up the children of Israel out of Egypt, even to this day, but have walked in a tent and in a tabernacle.
14424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In all the places wherein I have walked with all the children of Israel spake I a word with any of the tribes of Israel, whom I commanded to feed my people Israel, saying, Why build ye not me an house of cedar?
14425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore so shalt thou say unto my servant David, Thus saith the LORD of hosts, I took thee from the sheepcote, from following the sheep, to be ruler over my people, over Israel:
14426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I was with thee whithersoever thou wentest, and have cut off all thine enemies out of thy sight, and have made thee a great name, like unto the name of the great men that are in the earth.
14427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moreover I will appoint a place for my people Israel, and will plant them, that they may dwell in a place of their own, and move no more; neither shall the children of wickedness afflict them any more, as beforetime,
14428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And as since the time that I commanded judges to be over my people Israel, and have caused thee to rest from all thine enemies. Also the LORD telleth thee that he will make thee an house.
14429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when thy days be fulfilled, and thou shalt sleep with thy fathers, I will set up thy seed after thee, which shall proceed out of thy bowels, and I will establish his kingdom.
14430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He shall build an house for my name, and I will stablish the throne of his kingdom for ever.
14431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     I will be his father, and he shall be my son. If he commit iniquity, I will chasten him with the rod of men, and with the stripes of the children of men:
14432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But my mercy shall not depart away from him, as I took it from Saul, whom I put away before thee.
14433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And thine house and thy kingdom shall be established for ever before thee: thy throne shall be established for ever.
14434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               According to all these words, and according to all this vision, so did Nathan speak unto David.
14435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then went king David in, and sat before the LORD, and he said, Who am I, O Lord GOD? and what is my house, that thou hast brought me hitherto?
14436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this was yet a small thing in thy sight, O Lord GOD; but thou hast spoken also of thy servant's house for a great while to come. And is this the manner of man, O Lord GOD?
14437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And what can David say more unto thee? for thou, Lord GOD, knowest thy servant.
14438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For thy word's sake, and according to thine own heart, hast thou done all these great things, to make thy servant know them.
14439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wherefore thou art great, O LORD God: for there is none like thee, neither is there any God beside thee, according to all that we have heard with our ears.
14440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And what one nation in the earth is like thy people, even like Israel, whom God went to redeem for a people to himself, and to make him a name, and to do for you great things and terrible, for thy land, before thy people, which thou redeemedst to thee from Egypt, from the nations and their gods?
14441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For thou hast confirmed to thyself thy people Israel to be a people unto thee for ever: and thou, LORD, art become their God.
14442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And now, O LORD God, the word that thou hast spoken concerning thy servant, and concerning his house, establish it for ever, and do as thou hast said.
14443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And let thy name be magnified for ever, saying, The LORD of hosts is the God over Israel: and let the house of thy servant David be established before thee.
14444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For thou, O LORD of hosts, God of Israel, hast revealed to thy servant, saying, I will build thee an house: therefore hath thy servant found in his heart to pray this prayer unto thee.
14445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And now, O Lord GOD, thou art that God, and thy words be true, and thou hast promised this goodness unto thy servant:
14446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore now let it please thee to bless the house of thy servant, that it may continue for ever before thee: for thou, O Lord GOD, hast spoken it: and with thy blessing let the house of thy servant be blessed for ever.
14447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And after this it came to pass that David smote the Philistines, and subdued them: and David took Methegammah out of the hand of the Philistines.
14448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he smote Moab, and measured them with a line, casting them down to the ground; even with two lines measured he to put to death, and with one full line to keep alive. And so the Moabites became David's servants, and brought gifts.
14449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         David smote also Hadadezer, the son of Rehob, king of Zobah, as he went to recover his border at the river Euphrates.
14450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David took from him a thousand chariots, and seven hundred horsemen, and twenty thousand footmen: and David houghed all the chariot horses, but reserved of them for an hundred chariots.
14451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when the Syrians of Damascus came to succor Hadadezer king of Zobah, David slew of the Syrians two and twenty thousand men.
14452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then David put garrisons in Syria of Damascus: and the Syrians became servants to David, and brought gifts. And the LORD preserved David whithersoever he went.
14453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David took the shields of gold that were on the servants of Hadadezer, and brought them to Jerusalem.
14454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And from Betah, and from Berothai, cities of Hadadezer, king David took exceeding much brass.
14455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When Toi king of Hamath heard that David had smitten all the host of Hadadezer,
14456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then Toi sent Joram his son unto king David, to salute him, and to bless him, because he had fought against Hadadezer, and smitten him: for Hadadezer had wars with Toi. And Joram brought with him vessels of silver, and vessels of gold, and vessels of brass:
14457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Which also king David did dedicate unto the LORD, with the silver and gold that he had dedicated of all nations which he subdued;
14458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Of Syria, and of Moab, and of the children of Ammon, and of the Philistines, and of Amalek, and of the spoil of Hadadezer, son of Rehob, king of Zobah.
14459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David gat him a name when he returned from smiting of the Syrians in the valley of salt, being eighteen thousand men.
14460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he put garrisons in Edom; throughout all Edom put he garrisons, and all they of Edom became David's servants. And the LORD preserved David whithersoever he went.
14461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David reigned over all Israel; and David executed judgment and justice unto all his people.
14462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joab the son of Zeruiah was over the host; and Jehoshaphat the son of Ahilud was recorder;
14463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Zadok the son of Ahitub, and Ahimelech the son of Abiathar, were the priests; and Seraiah was the scribe;
14464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Benaiah the son of Jehoiada was over both the Cherethites and the Pelethites; and David's sons were chief rulers.
14465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And David said, Is there yet any that is left of the house of Saul, that I may show him kindness for Jonathan's sake?
14466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there was of the house of Saul a servant whose name was Ziba. And when they had called him unto David, the king said unto him, Art thou Ziba? And he said, Thy servant is he.
14467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king said, Is there not yet any of the house of Saul, that I may show the kindness of God unto him? And Ziba said unto the king, Jonathan hath yet a son, which is lame on his feet.
14468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king said unto him, Where is he? And Ziba said unto the king, Behold, he is in the house of Machir, the son of Ammiel, in Lodebar.
14469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then king David sent, and fetched him out of the house of Machir, the son of Ammiel, from Lodebar.
14470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now when Mephibosheth, the son of Jonathan, the son of Saul, was come unto David, he fell on his face, and did reverence. And David said, Mephibosheth. And he answered, Behold thy servant!
14471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David said unto him, Fear not: for I will surely show thee kindness for Jonathan thy father's sake, and will restore thee all the land of Saul thy father; and thou shalt eat bread at my table continually.
14472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he bowed himself, and said, What is thy servant, that thou shouldest look upon such a dead dog as I am?
14473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the king called to Ziba, Saul's servant, and said unto him, I have given unto thy master's son all that pertained to Saul and to all his house.
14474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thou therefore, and thy sons, and thy servants, shall till the land for him, and thou shalt bring in the fruits, that thy master's son may have food to eat: but Mephibosheth thy master's son shall eat bread alway at my table. Now Ziba had fifteen sons and twenty servants.
14475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said Ziba unto the king, According to all that my lord the king hath commanded his servant, so shall thy servant do. As for Mephibosheth, said the king, he shall eat at my table, as one of the king's sons.
14476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Mephibosheth had a young son, whose name was Micha. And all that dwelt in the house of Ziba were servants unto Mephibosheth.
14477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Mephibosheth dwelt in Jerusalem: for he did eat continually at the king's table; and was lame on both his feet.
14478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass after this, that the king of the children of Ammon died, and Hanun his son reigned in his stead.
14479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said David, I will show kindness unto Hanun the son of Nahash, as his father showed kindness unto me. And David sent to comfort him by the hand of his servants for his father. And David's servants came into the land of the children of Ammon.
14480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the princes of the children of Ammon said unto Hanun their lord, Thinkest thou that David doth honor thy father, that he hath sent comforters unto thee? hath not David rather sent his servants unto thee, to search the city, and to spy it out, and to overthrow it?
14481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wherefore Hanun took David's servants, and shaved off the one half of their beards, and cut off their garments in the middle, even to their buttocks, and sent them away.
14482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    When they told it unto David, he sent to meet them, because the men were greatly ashamed: and the king said, Tarry at Jericho until your beards be grown, and then return.
14483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when the children of Ammon saw that they stank before David, the children of Ammon sent and hired the Syrians of Bethrehob and the Syrians of Zoba, twenty thousand footmen, and of king Maacah a thousand men, and of Ishtob twelve thousand men.
14484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when David heard of it, he sent Joab, and all the host of the mighty men.
14485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the children of Ammon came out, and put the battle in array at the entering in of the gate: and the Syrians of Zoba, and of Rehob, and Ishtob, and Maacah, were by themselves in the field.
14486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            When Joab saw that the front of the battle was against him before and behind, he chose of all the choice men of Israel, and put them in array against the Syrians:
14487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the rest of the people he delivered into the hand of Abishai his brother, that he might put them in array against the children of Ammon.
14488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, If the Syrians be too strong for me, then thou shalt help me: but if the children of Ammon be too strong for thee, then I will come and help thee.
14489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Be of good courage, and let us play the men for our people, and for the cities of our God: and the LORD do that which seemeth him good.
14490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Joab drew nigh, and the people that were with him, unto the battle against the Syrians: and they fled before him.
14491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the children of Ammon saw that the Syrians were fled, then fled they also before Abishai, and entered into the city. So Joab returned from the children of Ammon, and came to Jerusalem.
14492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when the Syrians saw that they were smitten before Israel, they gathered themselves together.
14493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Hadarezer sent, and brought out the Syrians that were beyond the river: and they came to Helam; and Shobach the captain of the host of Hadarezer went before them.
14494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when it was told David, he gathered all Israel together, and passed over Jordan, and came to Helam. And the Syrians set themselves in array against David, and fought with him.
14495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Syrians fled before Israel; and David slew the men of seven hundred chariots of the Syrians, and forty thousand horsemen, and smote Shobach the captain of their host, who died there.
14496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when all the kings that were servants to Hadarezer saw that they were smitten before Israel, they made peace with Israel, and served them. So the Syrians feared to help the children of Ammon any more.
14497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, after the year was expired, at the time when kings go forth to battle, that David sent Joab, and his servants with him, and all Israel; and they destroyed the children of Ammon, and besieged Rabbah. But David tarried still at Jerusalem.
14498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass in an eveningtide, that David arose from off his bed, and walked upon the roof of the king's house: and from the roof he saw a woman washing herself; and the woman was very beautiful to look upon.
14499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And David sent and inquired after the woman. And one said, Is not this Bathsheba, the daughter of Eliam, the wife of Uriah the Hittite?
14500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David sent messengers, and took her; and she came in unto him, and he lay with her; for she was purified from her uncleanness: and she returned unto her house.
14501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the woman conceived, and sent and told David, and said, I am with child.
14502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David sent to Joab, saying, Send me Uriah the Hittite. And Joab sent Uriah to David.
14503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when Uriah was come unto him, David demanded of him how Joab did, and how the people did, and how the war prospered.
14504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David said to Uriah, Go down to thy house, and wash thy feet. And Uriah departed out of the king's house, and there followed him a mess of meat from the king.
14505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But Uriah slept at the door of the king's house with all the servants of his lord, and went not down to his house.
14506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when they had told David, saying, Uriah went not down unto his house, David said unto Uriah, Camest thou not from thy journey? why then didst thou not go down unto thine house?
14507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Uriah said unto David, The ark, and Israel, and Judah, abide in tents; and my lord Joab, and the servants of my lord, are encamped in the open fields; shall I then go into mine house, to eat and to drink, and to lie with my wife? as thou livest, and as thy soul liveth, I will not do this thing.
14508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David said to Uriah, Tarry here to day also, and to morrow I will let thee depart. So Uriah abode in Jerusalem that day, and the morrow.
14509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And when David had called him, he did eat and drink before him; and he made him drunk: and at even he went out to lie on his bed with the servants of his lord, but went not down to his house.
14510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass in the morning, that David wrote a letter to Joab, and sent it by the hand of Uriah.
14511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he wrote in the letter, saying, Set ye Uriah in the forefront of the hottest battle, and retire ye from him, that he may be smitten, and die.
14512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when Joab observed the city, that he assigned Uriah unto a place where he knew that valiant men were.
14513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the men of the city went out, and fought with Joab: and there fell some of the people of the servants of David; and Uriah the Hittite died also.
14514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Joab sent and told David all the things concerning the war;
14515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And charged the messenger, saying, When thou hast made an end of telling the matters of the war unto the king,
14516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And if so be that the king's wrath arise, and he say unto thee, Wherefore approached ye so nigh unto the city when ye did fight? knew ye not that they would shoot from the wall?
14517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who smote Abimelech the son of Jerubbesheth? did not a woman cast a piece of a millstone upon him from the wall, that he died in Thebez? why went ye nigh the wall? then say thou, Thy servant Uriah the Hittite is dead also.
14518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So the messenger went, and came and showed David all that Joab had sent him for.
14519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the messenger said unto David, Surely the men prevailed against us, and came out unto us into the field, and we were upon them even unto the entering of the gate.
14520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the shooters shot from off the wall upon thy servants; and some of the king's servants be dead, and thy servant Uriah the Hittite is dead also.
14521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then David said unto the messenger, Thus shalt thou say unto Joab, Let not this thing displease thee, for the sword devoureth one as well as another: make thy battle more strong against the city, and overthrow it: and encourage thou him.
14522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the wife of Uriah heard that Uriah her husband was dead, she mourned for her husband.
14523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the mourning was past, David sent and fetched her to his house, and she became his wife, and bare him a son. But the thing that David had done displeased the LORD.
14524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the LORD sent Nathan unto David. And he came unto him, and said unto him, There were two men in one city; the one rich, and the other poor.
14525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The rich man had exceeding many flocks and herds:
14526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the poor man had nothing, save one little ewe lamb, which he had bought and nourished up: and it grew up together with him, and with his children; it did eat of his own meat, and drank of his own cup, and lay in his bosom, and was unto him as a daughter.
14527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And there came a traveler unto the rich man, and he spared to take of his own flock and of his own herd, to dress for the wayfaring man that was come unto him; but took the poor man's lamb, and dressed it for the man that was come to him.
14528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And David's anger was greatly kindled against the man; and he said to Nathan, As the LORD liveth, the man that hath done this thing shall surely die:
14529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he shall restore the lamb fourfold, because he did this thing, and because he had no pity.
14530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Nathan said to David, Thou art the man. Thus saith the LORD God of Israel, I anointed thee king over Israel, and I delivered thee out of the hand of Saul;
14531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And I gave thee thy master's house, and thy master's wives into thy bosom, and gave thee the house of Israel and of Judah; and if that had been too little, I would moreover have given unto thee such and such things.
14532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wherefore hast thou despised the commandment of the LORD, to do evil in his sight? thou hast killed Uriah the Hittite with the sword, and hast taken his wife to be thy wife, and hast slain him with the sword of the children of Ammon.
14533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now therefore the sword shall never depart from thine house; because thou hast despised me, and hast taken the wife of Uriah the Hittite to be thy wife.
14534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thus saith the LORD, Behold, I will raise up evil against thee out of thine own house, and I will take thy wives before thine eyes, and give them unto thy neighbor, and he shall lie with thy wives in the sight of this sun.
14535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For thou didst it secretly: but I will do this thing before all Israel, and before the sun.
14536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David said unto Nathan, I have sinned against the LORD. And Nathan said unto David, The LORD also hath put away thy sin; thou shalt not die.
14537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Howbeit, because by this deed thou hast given great occasion to the enemies of the LORD to blaspheme, the child also that is born unto thee shall surely die.
14538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Nathan departed unto his house. And the LORD struck the child that Uriah's wife bare unto David, and it was very sick.
14539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  David therefore besought God for the child; and David fasted, and went in, and lay all night upon the earth.
14540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the elders of his house arose, and went to him, to raise him up from the earth: but he would not, neither did he eat bread with them.
14541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass on the seventh day, that the child died. And the servants of David feared to tell him that the child was dead: for they said, Behold, while the child was yet alive, we spake unto him, and he would not hearken unto our voice: how will he then vex himself, if we tell him that the child is dead?
14542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But when David saw that his servants whispered, David perceived that the child was dead: therefore David said unto his servants, Is the child dead? And they said, He is dead.
14543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then David arose from the earth, and washed, and anointed himself, and changed his apparel, and came into the house of the LORD, and worshipped: then he came to his own house; and when he required, they set bread before him, and he did eat.
14544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then said his servants unto him, What thing is this that thou hast done? thou didst fast and weep for the child, while it was alive; but when the child was dead, thou didst rise and eat bread.
14545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said, While the child was yet alive, I fasted and wept: for I said, Who can tell whether GOD will be gracious to me, that the child may live?
14546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But now he is dead, wherefore should I fast? can I bring him back again? I shall go to him, but he shall not return to me.
14547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And David comforted Bathsheba his wife, and went in unto her, and lay with her: and she bare a son, and he called his name Solomon: and the LORD loved him.
14548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he sent by the hand of Nathan the prophet; and he called his name Jedidiah, because of the LORD.
14549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joab fought against Rabbah of the children of Ammon, and took the royal city.
14550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joab sent messengers to David, and said, I have fought against Rabbah, and have taken the city of waters.
14551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now therefore gather the rest of the people together, and encamp against the city, and take it: lest I take the city, and it be called after my name.
14552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David gathered all the people together, and went to Rabbah, and fought against it, and took it.
14553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he took their king's crown from off his head, the weight whereof was a talent of gold with the precious stones: and it was set on David's head. And he brought forth the spoil of the city in great abundance.
14554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he brought forth the people that were therein, and put them under saws, and under harrows of iron, and under axes of iron, and made them pass through the brick-kiln: and thus did he unto all the cities of the children of Ammon. So David and all the people returned unto Jerusalem.
14555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass after this, that Absalom the son of David had a fair sister, whose name was Tamar; and Amnon the son of David loved her.
14556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Amnon was so vexed, that he fell sick for his sister Tamar; for she was a virgin; and Amnon thought it hard for him to do anything to her.
14557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But Amnon had a friend, whose name was Jonadab, the son of Shimeah David's brother: and Jonadab was a very subtil man.
14558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said unto him, Why art thou, being the king's son, lean from day to day? wilt thou not tell me? And Amnon said unto him, I love Tamar, my brother Absalom's sister.
14559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jonadab said unto him, Lay thee down on thy bed, and make thyself sick: and when thy father cometh to see thee, say unto him, I pray thee, let my sister Tamar come, and give me meat, and dress the meat in my sight, that I may see it, and eat it at her hand.
14560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Amnon lay down, and made himself sick: and when the king was come to see him, Amnon said unto the king, I pray thee, let Tamar my sister come, and make me a couple of cakes in my sight, that I may eat at her hand.
14561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then David sent home to Tamar, saying, Go now to thy brother Amnon's house, and dress him meat.
14562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Tamar went to her brother Amnon's house; and he was laid down. And she took flour, and kneaded it, and made cakes in his sight, and did bake the cakes.
14563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And she took a pan, and poured them out before him; but he refused to eat. And Amnon said, Have out all men from me. And they went out every man from him.
14564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Amnon said unto Tamar, Bring the meat into the chamber, that I may eat of thine hand. And Tamar took the cakes which she had made, and brought them into the chamber to Amnon her brother.
14565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when she had brought them unto him to eat, he took hold of her, and said unto her, Come lie with me, my sister.
14566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she answered him, Nay, my brother, do not force me; for no such thing ought to be done in Israel: do not thou this folly.
14567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I, whither shall I cause my shame to go? and as for thee, thou shalt be as one of the fools in Israel. Now therefore, I pray thee, speak unto the king; for he will not withhold me from thee.
14568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Howbeit he would not hearken unto her voice: but, being stronger than she, forced her, and lay with her.
14569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Amnon hated her exceedingly; so that the hatred wherewith he hated her was greater than the love wherewith he had loved her. And Amnon said unto her, Arise, be gone.
14570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she said unto him, There is no cause: this evil in sending me away is greater than the other that thou didst unto me. But he would not hearken unto her.
14571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then he called his servant that ministered unto him, and said, Put now this woman out from me, and bolt the door after her.
14572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And she had a garment of divers colors upon her: for with such robes were the king's daughters that were virgins apparelled. Then his servant brought her out, and bolted the door after her.
14573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Tamar put ashes on her head, and rent her garment of divers colors that was on her, and laid her hand on her head, and went on crying.
14574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Absalom her brother said unto her, Hath Amnon thy brother been with thee? but hold now thy peace, my sister: he is thy brother; regard not this thing. So Tamar remained desolate in her brother Absalom's house.
14575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But when king David heard of all these things, he was very wroth.
14576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Absalom spake unto his brother Amnon neither good nor bad: for Absalom hated Amnon, because he had forced his sister Tamar.
14577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass after two full years, that Absalom had sheepshearers in Baalhazor, which is beside Ephraim: and Absalom invited all the king's sons.
14578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Absalom came to the king, and said, Behold now, thy servant hath sheepshearers; let the king, I beseech thee, and his servants go with thy servant.
14579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king said to Absalom, Nay, my son, let us not all now go, lest we be chargeable unto thee. And he pressed him: howbeit he would not go, but blessed him.
14580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then said Absalom, If not, I pray thee, let my brother Amnon go with us. And the king said unto him, Why should he go with thee?
14581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But Absalom pressed him, that he let Amnon and all the king's sons go with him.
14582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now Absalom had commanded his servants, saying, Mark ye now when Amnon's heart is merry with wine, and when I say unto you, Smite Amnon; then kill him, fear not: have not I commanded you? be courageous, and be valiant.
14583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the servants of Absalom did unto Amnon as Absalom had commanded. Then all the king's sons arose, and every man gat him up upon his mule, and fled.
14584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, while they were in the way, that tidings came to David, saying, Absalom hath slain all the king's sons, and there is not one of them left.
14585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then the king arose, and tare his garments, and lay on the earth; and all his servants stood by with their clothes rent.
14586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jonadab, the son of Shimeah David's brother, answered and said, Let not my lord suppose that they have slain all the young men the king's sons; for Amnon only is dead: for by the appointment of Absalom this hath been determined from the day that he forced his sister Tamar.
14587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now therefore let not my lord the king take the thing to his heart, to think that all the king's sons are dead: for Amnon only is dead.
14588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But Absalom fled. And the young man that kept the watch lifted up his eyes, and looked, and, behold, there came much people by the way of the hill side behind him.
14589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jonadab said unto the king, Behold, the king's sons come: as thy servant said, so it is.
14590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, as soon as he had made an end of speaking, that, behold, the king's sons came, and lifted up their voice and wept: and the king also and all his servants wept very sore.
14591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But Absalom fled, and went to Talmai, the son of Ammihud, king of Geshur. And David mourned for his son every day.
14592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Absalom fled, and went to Geshur, and was there three years.
14593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the soul of king David longed to go forth unto Absalom: for he was comforted concerning Amnon, seeing he was dead.
14594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now Joab the son of Zeruiah perceived that the king's heart was toward Absalom.
14595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Joab sent to Tekoah, and fetched thence a wise woman, and said unto her, I pray thee, feign thyself to be a mourner, and put on now mourning apparel, and anoint not thyself with oil, but be as a woman that had a long time mourned for the dead:
14596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And come to the king, and speak on this manner unto him. So Joab put the words in her mouth.
14597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the woman of Tekoah spake to the king, she fell on her face to the ground, and did obeisance, and said, Help, O king.
14598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king said unto her, What aileth thee? And she answered, I am indeed a widow woman, and mine husband is dead.
14599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And thy handmaid had two sons, and they two strove together in the field, and there was none to part them, but the one smote the other, and slew him.
14600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And, behold, the whole family is risen against thine handmaid, and they said, Deliver him that smote his brother, that we may kill him, for the life of his brother whom he slew; and we will destroy the heir also: and so they shall quench my coal which is left, and shall not leave to my husband neither name nor remainder upon the earth.
14601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king said unto the woman, Go to thine house, and I will give charge concerning thee.
14602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the woman of Tekoah said unto the king, My lord, O king, the iniquity be on me, and on my father's house: and the king and his throne be guiltless.
14603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the king said, Whoever saith ought unto thee, bring him to me, and he shall not touch thee any more.
14604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then said she, I pray thee, let the king remember the LORD thy God, that thou wouldest not suffer the revengers of blood to destroy any more, lest they destroy my son. And he said, As the LORD liveth, there shall not one hair of thy son fall to the earth.
14605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then the woman said, Let thine handmaid, I pray thee, speak one word unto my lord the king. And he said, Say on.
14606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the woman said, Wherefore then hast thou thought such a thing against the people of God? for the king doth speak this thing as one which is faulty, in that the king doth not fetch home again his banished.
14607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For we must needs die, and are as water spilt on the ground, which cannot be gathered up again; neither doth God respect any person: yet doth he devise means, that his banished be not expelled from him.
14608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now therefore that I am come to speak of this thing unto my lord the king, it is because the people have made me afraid: and thy handmaid said, I will now speak unto the king; it may be that the king will perform the request of his handmaid.
14609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For the king will hear, to deliver his handmaid out of the hand of the man that would destroy me and my son together out of the inheritance of God.
14610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then thine handmaid said, The word of my lord the king shall now be comfortable: for as an angel of God, so is my lord the king to discern good and bad: therefore the LORD thy God will be with thee.
14611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the king answered and said unto the woman, Hide not from me, I pray thee, the thing that I shall ask thee. And the woman said, Let my lord the king now speak.
14612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king said, Is not the hand of Joab with thee in all this? And the woman answered and said, As thy soul liveth, my lord the king, none can turn to the right hand or to the left from ought that my lord the king hath spoken: for thy servant Joab, he bade me, and he put all these words in the mouth of thine handmaid:
14613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          To fetch about this form of speech hath thy servant Joab done this thing: and my lord is wise, according to the wisdom of an angel of God, to know all things that are in the earth.
14614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the king said unto Joab, Behold now, I have done this thing: go therefore, bring the young man Absalom again.
14615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joab fell to the ground on his face, and bowed himself, and thanked the king: and Joab said, To day thy servant knoweth that I have found grace in thy sight, my lord, O king, in that the king hath fulfilled the request of his servant.
14616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Joab arose and went to Geshur, and brought Absalom to Jerusalem.
14617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the king said, Let him turn to his own house, and let him not see my face. So Absalom returned to his own house, and saw not the king's face.
14618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But in all Israel there was none to be so much praised as Absalom for his beauty: from the sole of his foot even to the crown of his head there was no blemish in him.
14619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when he polled his head, (for it was at every year's end that he polled it: because the hair was heavy on him, therefore he polled it:) he weighed the hair of his head at two hundred shekels after the king's weight.
14620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And unto Absalom there were born three sons, and one daughter, whose name was Tamar: she was a woman of a fair countenance.
14621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Absalom dwelt two full years in Jerusalem, and saw not the king's face.
14622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Therefore Absalom sent for Joab, to have sent him to the king; but he would not come to him: and when he sent again the second time, he would not come.
14623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Therefore he said unto his servants, See, Joab's field is near mine, and he hath barley there; go and set it on fire. And Absalom's servants set the field on fire.
14624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then Joab arose, and came to Absalom unto his house, and said unto him, Wherefore have thy servants set my field on fire?
14625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Absalom answered Joab, Behold, I sent unto thee, saying, Come hither, that I may send thee to the king, to say, Wherefore am I come from Geshur? it had been good for me to have been there still: now therefore let me see the king's face; and if there be any iniquity in me, let him kill me.
14626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Joab came to the king, and told him: and when he had called for Absalom, he came to the king, and bowed himself on his face to the ground before the king: and the king kissed Absalom.
14627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass after this, that Absalom prepared him chariots and horses, and fifty men to run before him.
14628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Absalom rose up early, and stood beside the way of the gate: and it was so, that when any man that had a controversy came to the king for judgment, then Absalom called unto him, and said, Of what city art thou? And he said, Thy servant is of one of the tribes of Israel.
14629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Absalom said unto him, See, thy matters are good and right; but there is no man deputed of the king to hear thee.
14630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Absalom said moreover, Oh that I were made judge in the land, that every man which hath any suit or cause might come unto me, and I would do him justice!
14631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it was so, that when any man came nigh to him to do him obeisance, he put forth his hand, and took him, and kissed him.
14632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And on this manner did Absalom to all Israel that came to the king for judgment: so Absalom stole the hearts of the men of Israel.
14633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass after forty years, that Absalom said unto the king, I pray thee, let me go and pay my vow, which I have vowed unto the LORD, in Hebron.
14634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For thy servant vowed a vow while I abode at Geshur in Syria, saying, If the LORD shall bring me again indeed to Jerusalem, then I will serve the LORD.
14635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king said unto him, Go in peace. So he arose, and went to Hebron.
14636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But Absalom sent spies throughout all the tribes of Israel, saying, As soon as ye hear the sound of the trumpet, then ye shall say, Absalom reigneth in Hebron.
14637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And with Absalom went two hundred men out of Jerusalem, that were called; and they went in their simplicity, and they knew not any thing.
14638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Absalom sent for Ahithophel the Gilonite, David's counselor, from his city, even from Giloh, while he offered sacrifices. And the conspiracy was strong; for the people increased continually with Absalom.
14639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there came a messenger to David, saying, The hearts of the men of Israel are after Absalom.
14640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David said unto all his servants that were with him at Jerusalem, Arise, and let us flee; for we shall not else escape from Absalom: make speed to depart, lest he overtake us suddenly, and bring evil upon us, and smite the city with the edge of the sword.
14641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king's servants said unto the king, Behold, thy servants are ready to do whatsoever my lord the king shall appoint.
14642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king went forth, and all his household after him. And the king left ten women, which were concubines, to keep the house.
14643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king went forth, and all the people after him, and tarried in a place that was far off.
14644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And all his servants passed on beside him; and all the Cherethites, and all the Pelethites, and all the Gittites, six hundred men which came after him from Gath, passed on before the king.
14645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then said the king to Ittai the Gittite, Wherefore goest thou also with us? return to thy place, and abide with the king: for thou art a stranger, and also an exile.
14646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whereas thou camest but yesterday, should I this day make thee go up and down with us? seeing I go whither I may, return thou, and take back thy brethren: mercy and truth be with thee.
14647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Ittai answered the king, and said, As the LORD liveth, and as my lord the king liveth, surely in what place my lord the king shall be, whether in death or life, even there also will thy servant be.
14648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David said to Ittai, Go and pass over. And Ittai the Gittite passed over, and all his men, and all the little ones that were with him.
14649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And all the country wept with a loud voice, and all the people passed over: the king also himself passed over the brook Kidron, and all the people passed over, toward the way of the wilderness.
14650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And lo Zadok also, and all the Levites were with him, bearing the ark of the covenant of God: and they set down the ark of God; and Abiathar went up, until all the people had done passing out of the city.
14651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the king said unto Zadok, Carry back the ark of God into the city: if I shall find favor in the eyes of the LORD, he will bring me again, and show me both it, and his habitation:
14652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But if he thus say, I have no delight in thee; behold, here am I, let him do to me as seemeth good unto him.
14653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The king said also unto Zadok the priest, Art not thou a seer? return into the city in peace, and your two sons with you, Ahimaaz thy son, and Jonathan the son of Abiathar.
14654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               See, I will tarry in the plain of the wilderness, until there come word from you to certify me.
14655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Zadok therefore and Abiathar carried the ark of God again to Jerusalem: and they tarried there.
14656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David went up by the ascent of mount Olivet, and wept as he went up, and had his head covered, and he went barefoot: and all the people that was with him covered every man his head, and they went up, weeping as they went up.
14657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And one told David, saying, Ahithophel is among the conspirators with Absalom. And David said, O LORD, I pray thee, turn the counsel of Ahithophel into foolishness.
14658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, that when David was come to the top of the mount, where he worshipped God, behold, Hushai the Archite came to meet him with his coat rent, and earth upon his head:
14659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Unto whom David said, If thou passest on with me, then thou shalt be a burden unto me:
14660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But if thou return to the city, and say unto Absalom, I will be thy servant, O king; as I have been thy father's servant hitherto, so will I now also be thy servant: then mayest thou for me defeat the counsel of Ahithophel.
14661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And hast thou not there with thee Zadok and Abiathar the priests? therefore it shall be, that what thing soever thou shalt hear out of the king's house, thou shalt tell it to Zadok and Abiathar the priests.
14662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Behold, they have there with them their two sons, Ahimaaz Zadok's son, and Jonathan Abiathar's son; and by them ye shall send unto me every thing that ye can hear.
14663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So Hushai David's friend came into the city, and Absalom came into Jerusalem.
14664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when David was a little past the top of the hill, behold, Ziba the servant of Mephibosheth met him, with a couple of asses saddled, and upon them two hundred loaves of bread, and an hundred bunches of raisins, and an hundred of summer fruits, and a bottle of wine.
14665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king said unto Ziba, What meanest thou by these? And Ziba said, The asses be for the king's household to ride on; and the bread and summer fruit for the young men to eat; and the wine, that such as be faint in the wilderness may drink.
14666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king said, And where is thy master's son? And Ziba said unto the king, Behold, he abideth at Jerusalem: for he said, To day shall the house of Israel restore me the kingdom of my father.
14667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then said the king to Ziba, Behold, thine are all that pertained unto Mephibosheth. And Ziba said, I humbly beseech thee that I may find grace in thy sight, my lord, O king.
14668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when king David came to Bahurim, behold, thence came out a man of the family of the house of Saul, whose name was Shimei, the son of Gera: he came forth, and cursed still as he came.
14669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he cast stones at David, and at all the servants of king David: and all the people and all the mighty men were on his right hand and on his left.
14670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And thus said Shimei when he cursed, Come out, come out, thou bloody man, and thou man of Belial:
14671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD hath returned upon thee all the blood of the house of Saul, in whose stead thou hast reigned; and the LORD hath delivered the kingdom into the hand of Absalom thy son: and, behold, thou art taken in thy mischief, because thou art a bloody man.
14672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then said Abishai the son of Zeruiah unto the king, Why should this dead dog curse my lord the king? let me go over, I pray thee, and take off his head.
14673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king said, What have I to do with you, ye sons of Zeruiah? so let him curse, because the LORD hath said unto him, Curse David. Who shall then say, Wherefore hast thou done so?
14674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And David said to Abishai, and to all his servants, Behold, my son, which came forth of my bowels, seeketh my life: how much more now may this Benjamite do it? let him alone, and let him curse; for the LORD hath bidden him.
14675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It may be that the LORD will look on mine affliction, and that the LORD will requite me good for his cursing this day.
14676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And as David and his men went by the way, Shimei went along on the hill's side over against him, and cursed as he went, and threw stones at him, and cast dust.
14677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king, and all the people that were with him, came weary, and refreshed themselves there.
14678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Absalom, and all the people the men of Israel, came to Jerusalem, and Ahithophel with him.
14679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when Hushai the Archite, David's friend, was come unto Absalom, that Hushai said unto Absalom, God save the king, God save the king.
14680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Absalom said to Hushai, Is this thy kindness to thy friend? why wentest thou not with thy friend?
14681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Hushai said unto Absalom, Nay; but whom the LORD, and this people, and all the men of Israel, choose, his will I be, and with him will I abide.
14682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And again, whom should I serve? should I not serve in the presence of his son? as I have served in thy father's presence, so will I be in thy presence.
14683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then said Absalom to Ahithophel, Give counsel among you what we shall do.
14684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Ahithophel said unto Absalom, Go in unto thy father's concubines, which he hath left to keep the house; and all Israel shall hear that thou art abhorred of thy father: then shall the hands of all that are with thee be strong.
14685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So they spread Absalom a tent upon the top of the house; and Absalom went in unto his father's concubines in the sight of all Israel.
14686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the counsel of Ahithophel, which he counseled in those days, was as if a man had inquired at the oracle of God: so was all the counsel of Ahithophel both with David and with Absalom.
14687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Moreover Ahithophel said unto Absalom, Let me now choose out twelve thousand men, and I will arise and pursue after David this night:
14688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And I will come upon him while he is weary and weak handed, and will make him afraid: and all the people that are with him shall flee; and I will smite the king only:
14689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will bring back all the people unto thee: the man whom thou seekest is as if all returned: so all the people shall be in peace.
14690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the saying pleased Absalom well, and all the elders of Israel.
14691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then said Absalom, Call now Hushai the Archite also, and let us hear likewise what he saith.
14692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when Hushai was come to Absalom, Absalom spake unto him, saying, Ahithophel hath spoken after this manner: shall we do after his saying? if not; speak thou.
14693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Hushai said unto Absalom, The counsel that Ahithophel hath given is not good at this time.
14694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For, said Hushai, thou knowest thy father and his men, that they be mighty men, and they be chafed in their minds, as a bear robbed of her whelps in the field: and thy father is a man of war, and will not lodge with the people.
14695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Behold, he is hid now in some pit, or in some other place: and it will come to pass, when some of them be overthrown at the first, that whosoever heareth it will say, There is a slaughter among the people that follow Absalom.
14696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he also that is valiant, whose heart is as the heart of a lion, shall utterly melt: for all Israel knoweth that thy father is a mighty man, and they which be with him are valiant men.
14697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Therefore I counsel that all Israel be generally gathered unto thee, from Dan even to Beersheba, as the sand that is by the sea for multitude; and that thou go to battle in thine own person.
14698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So shall we come upon him in some place where he shall be found, and we will light upon him as the dew falleth on the ground: and of him and of all the men that are with him there shall not be left so much as one.
14699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Moreover, if he be gotten into a city, then shall all Israel bring ropes to that city, and we will draw it into the river, until there be not one small stone found there.
14700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Absalom and all the men of Israel said, The counsel of Hushai the Archite is better than the counsel of Ahithophel. For the LORD had appointed to defeat the good counsel of Ahithophel, to the intent that the LORD might bring evil upon Absalom.
14701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then said Hushai unto Zadok and to Abiathar the priests, Thus and thus did Ahithophel counsel Absalom and the elders of Israel; and thus and thus have I counseled.
14702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now therefore send quickly, and tell David, saying, Lodge not this night in the plains of the wilderness, but speedily pass over; lest the king be swallowed up, and all the people that are with him.
14703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now Jonathan and Ahimaaz stayed by Enrogel; for they might not be seen to come into the city: and a wench went and told them; and they went and told king David.
14704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nevertheless a lad saw them, and told Absalom: but they went both of them away quickly, and came to a man's house in Bahurim, which had a well in his court; whither they went down.
14705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the woman took and spread a covering over the well's mouth, and spread ground corn thereon; and the thing was not known.
14706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when Absalom's servants came to the woman to the house, they said, Where is Ahimaaz and Jonathan? And the woman said unto them, They be gone over the brook of water. And when they had sought and could not find them, they returned to Jerusalem.
14707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, after they were departed, that they came up out of the well, and went and told king David, and said unto David, Arise, and pass quickly over the water: for thus hath Ahithophel counseled against you.
14708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then David arose, and all the people that were with him, and they passed over Jordan: by the morning light there lacked not one of them that was not gone over Jordan.
14709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Ahithophel saw that his counsel was not followed, he saddled his ass, and arose, and gat him home to his house, to his city, and put his household in order, and hanged himself, and died, and was buried in the sepulchre of his father.
14710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then David came to Mahanaim. And Absalom passed over Jordan, he and all the men of Israel with him.
14711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Absalom made Amasa captain of the host instead of Joab: which Amasa was a man's son, whose name was Ithra an Israelite, that went in to Abigail the daughter of Nahash, sister to Zeruiah Joab's mother.
14712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Israel and Absalom pitched in the land of Gilead.
14713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when David was come to Mahanaim, that Shobi the son of Nahash of Rabbah of the children of Ammon, and Machir the son of Ammiel of Lodebar, and Barzillai the Gileadite of Rogelim,
14714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Brought beds, and basins, and earthen vessels, and wheat, and barley, and flour, and parched corn, and beans, and lentils, and parched pulse,
14715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And honey, and butter, and sheep, and cheese of kine, for David, and for the people that were with him, to eat: for they said, The people is hungry, and weary, and thirsty, in the wilderness.
14716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And David numbered the people that were with him, and set captains of thousands, and captains of hundreds over them.
14717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And David sent forth a third part of the people under the hand of Joab, and a third part under the hand of Abishai the son of Zeruiah, Joab's brother, and a third part under the hand of Ittai the Gittite. And the king said unto the people, I will surely go forth with you myself also.
14718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But the people answered, Thou shalt not go forth: for if we flee away, they will not care for us; neither if half of us die, will they care for us: but now thou art worth ten thousand of us: therefore now it is better that thou succor us out of the city.
14719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king said unto them, What seemeth you best I will do. And the king stood by the gate side, and all the people came out by hundreds and by thousands.
14720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the king commanded Joab and Abishai and Ittai, saying, Deal gently for my sake with the young man, even with Absalom. And all the people heard when the king gave all the captains charge concerning Absalom.
14721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So the people went out into the field against Israel: and the battle was in the wood of Ephraim;
14722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Where the people of Israel were slain before the servants of David, and there was there a great slaughter that day of twenty thousand men.
14723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the battle was there scattered over the face of all the country: and the wood devoured more people that day than the sword devoured.
14724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Absalom met the servants of David. And Absalom rode upon a mule, and the mule went under the thick boughs of a great oak, and his head caught hold of the oak, and he was taken up between the heaven and the earth; and the mule that was under him went away.
14725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And a certain man saw it, and told Joab, and said, Behold, I saw Absalom hanged in an oak.
14726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joab said unto the man that told him, And, behold, thou sawest him, and why didst thou not smite him there to the ground? and I would have given thee ten shekels of silver, and a girdle.
14727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the man said unto Joab, Though I should receive a thousand shekels of silver in mine hand, yet would I not put forth mine hand against the king's son: for in our hearing the king charged thee and Abishai and Ittai, saying, Beware that none touch the young man Absalom.
14728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Otherwise I should have wrought falsehood against mine own life: for there is no matter hid from the king, and thou thyself wouldest have set thyself against me.
14729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then said Joab, I may not tarry thus with thee. And he took three darts in his hand, and thrust them through the heart of Absalom, while he was yet alive in the midst of the oak.
14730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And ten young men that bare Joab's armor compassed about and smote Absalom, and slew him.
14731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joab blew the trumpet, and the people returned from pursuing after Israel: for Joab held back the people.
14732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they took Absalom, and cast him into a great pit in the wood, and laid a very great heap of stones upon him: and all Israel fled every one to his tent.
14733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now Absalom in his lifetime had taken and reared up for himself a pillar, which is in the king's dale: for he said, I have no son to keep my name in remembrance: and he called the pillar after his own name: and it is called unto this day, Absalom's place.
14734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then said Ahimaaz the son of Zadok, Let me now run, and bear the king tidings, how that the LORD hath avenged him of his enemies.
14735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Joab said unto him, Thou shalt not bear tidings this day, but thou shalt bear tidings another day: but this day thou shalt bear no tidings, because the king's son is dead.
14736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then said Joab to Cushy, Go tell the king what thou hast seen. And Cushy bowed himself unto Joab, and ran.
14737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then said Ahimaaz the son of Zadok yet again to Joab, But howsoever, let me, I pray thee, also run after Cushy. And Joab said, Wherefore wilt thou run, my son, seeing that thou hast no tidings ready?
14738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But howsoever, said he, let me run. And he said unto him, Run. Then Ahimaaz ran by the way of the plain, and overran Cushy.
14739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And David sat between the two gates: and the watchman went up to the roof over the gate unto the wall, and lifted up his eyes, and looked, and behold a man running alone.
14740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the watchman cried, and told the king. And the king said, If he be alone, there is tidings in his mouth. And he came apace, and drew near.
14741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the watchman saw another man running: and the watchman called unto the porter, and said, Behold another man running alone. And the king said, He also bringeth tidings.
14742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the watchman said, Me thinketh the running of the foremost is like the running of Ahimaaz the son of Zadok. And the king said, He is a good man, and cometh with good tidings.
14743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ahimaaz called, and said unto the king, All is well. And he fell down to the earth upon his face before the king, and said, Blessed be the LORD thy God, which hath delivered up the men that lifted up their hand against my lord the king.
14744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king said, Is the young man Absalom safe? And Ahimaaz answered, When Joab sent the king's servant, and me thy servant, I saw a great tumult, but I knew not what it was.
14745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king said unto him, Turn aside, and stand here. And he turned aside, and stood still.
14746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And, behold, Cushy came; and Cushy said, Tidings, my lord the king: for the LORD hath avenged thee this day of all them that rose up against thee.
14747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king said unto Cushy, Is the young man Absalom safe? And Cushy answered, The enemies of my lord the king, and all that rise against thee to do thee hurt, be as that young man is.
14748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king was much moved, and went up to the chamber over the gate, and wept: and as he went, thus he said, O my son Absalom, my son, my son Absalom! would God I had died for thee, O Absalom, my son, my son!
14749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it was told Joab, Behold, the king weepeth and mourneth for Absalom.
14750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the victory that day was turned into mourning unto all the people: for the people heard say that day how the king was grieved for his son.
14751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the people gat them by stealth that day into the city, as people being ashamed steal away when they flee in battle.
14752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But the king covered his face, and the king cried with a loud voice, O my son Absalom, O Absalom, my son, my son!
14753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joab came into the house to the king, and said, Thou hast shamed this day the faces of all thy servants, which this day have saved thy life, and the lives of thy sons and of thy daughters, and the lives of thy wives, and the lives of thy concubines;
14754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In that thou lovest thine enemies, and hatest thy friends. For thou hast declared this day, that thou regardest neither princes nor servants: for this day I perceive, that if Absalom had lived, and all we had died this day, then it had pleased thee well.
14755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore arise, go forth, and speak comfortably unto thy servants: for I swear by the LORD, if thou go not forth, there will not tarry one with thee this night: and that will be worse unto thee than all the evil that befell thee from thy youth until now.
14756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then the king arose, and sat in the gate. And they told unto all the people, saying, Behold, the king doth sit in the gate. And all the people came before the king: for Israel had fled every man to his tent.
14757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the people were at strife throughout all the tribes of Israel, saying, The king saved us out of the hand of our enemies, and he delivered us out of the hand of the Philistines; and now he is fled out of the land for Absalom.
14758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Absalom, whom we anointed over us, is dead in battle. Now therefore why speak ye not a word of bringing the king back?
14759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And king David sent to Zadok and to Abiathar the priests, saying, Speak unto the elders of Judah, saying, Why are ye the last to bring the king back to his house? seeing the speech of all Israel is come to the king, even to his house.
14760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ye are my brethren, ye are my bones and my flesh: wherefore then are ye the last to bring back the king?
14761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And say ye to Amasa, Art thou not of my bone, and of my flesh? God do so to me, and more also, if thou be not captain of the host before me continually in the room of Joab.
14762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he bowed the heart of all the men of Judah, even as the heart of one man; so that they sent this word unto the king, Return thou, and all thy servants.
14763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the king returned, and came to Jordan. And Judah came to Gilgal, to go to meet the king, to conduct the king over Jordan.
14764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Shimei the son of Gera, a Benjamite, which was of Bahurim, hasted and came down with the men of Judah to meet king David.
14765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And there were a thousand men of Benjamin with him, and Ziba the servant of the house of Saul, and his fifteen sons and his twenty servants with him; and they went over Jordan before the king.
14766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there went over a ferry boat to carry over the king's household, and to do what he thought good. And Shimei the son of Gera fell down before the king, as he was come over Jordan;
14767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And said unto the king, Let not my lord impute iniquity unto me, neither do thou remember that which thy servant did perversely the day that my lord the king went out of Jerusalem, that the king should take it to his heart.
14768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For thy servant doth know that I have sinned: therefore, behold, I am come the first this day of all the house of Joseph to go down to meet my lord the king.
14769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But Abishai the son of Zeruiah answered and said, Shall not Shimei be put to death for this, because he cursed the LORD's anointed?
14770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And David said, What have I to do with you, ye sons of Zeruiah, that ye should this day be adversaries unto me? shall there any man be put to death this day in Israel? for do not I know that I am this day king over Israel?
14771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore the king said unto Shimei, Thou shalt not die. And the king sware unto him.
14772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Mephibosheth the son of Saul came down to meet the king, and had neither dressed his feet, nor trimmed his beard, nor washed his clothes, from the day the king departed until the day he came again in peace.
14773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when he was come to Jerusalem to meet the king, that the king said unto him, Wherefore wentest not thou with me, Mephibosheth?
14774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he answered, My lord, O king, my servant deceived me: for thy servant said, I will saddle me an ass, that I may ride thereon, and go to the king; because thy servant is lame.
14775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he hath slandered thy servant unto my lord the king; but my lord the king is as an angel of God: do therefore what is good in thine eyes.
14776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For all of my father's house were but dead men before my lord the king: yet didst thou set thy servant among them that did eat at thine own table. What right therefore have I yet to cry any more unto the king?
14777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king said unto him, Why speakest thou any more of thy matters? I have said, Thou and Ziba divide the land.
14778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Mephibosheth said unto the king, Yea, let him take all, forasmuch as my lord the king is come again in peace unto his own house.
14779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Barzillai the Gileadite came down from Rogelim, and went over Jordan with the king, to conduct him over Jordan.
14780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now Barzillai was a very aged man, even fourscore years old: and he had provided the king of sustenance while he lay at Mahanaim; for he was a very great man.
14781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king said unto Barzillai, Come thou over with me, and I will feed thee with me in Jerusalem.
14782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Barzillai said unto the king, How long have I to live, that I should go up with the king unto Jerusalem?
14783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I am this day fourscore years old: and can I discern between good and evil? can thy servant taste what I eat or what I drink? can I hear any more the voice of singing men and singing women? wherefore then should thy servant be yet a burden unto my lord the king?
14784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thy servant will go a little way over Jordan with the king: and why should the king recompense it me with such a reward?
14785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let thy servant, I pray thee, turn back again, that I may die in mine own city, and be buried by the grave of my father and of my mother. But behold thy servant Chimham; let him go over with my lord the king; and do to him what shall seem good unto thee.
14786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king answered, Chimham shall go over with me, and I will do to him that which shall seem good unto thee: and whatsoever thou shalt require of me, that will I do for thee.
14787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And all the people went over Jordan. And when the king was come over, the king kissed Barzillai, and blessed him; and he returned unto his own place.
14788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then the king went on to Gilgal, and Chimham went on with him: and all the people of Judah conducted the king, and also half the people of Israel.
14789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And, behold, all the men of Israel came to the king, and said unto the king, Why have our brethren the men of Judah stolen thee away, and have brought the king, and his household, and all David's men with him, over Jordan?
14790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And all the men of Judah answered the men of Israel, Because the king is near of kin to us: wherefore then be ye angry for this matter? have we eaten at all of the king's cost? or hath he given us any gift?
14791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the men of Israel answered the men of Judah, and said, We have ten parts in the king, and we have also more right in David than ye: why then did ye despise us, that our advice should not be first had in bringing back our king? And the words of the men of Judah were fiercer than the words of the men of Israel.
14792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there happened to be there a man of Belial, whose name was Sheba, the son of Bichri, a Benjamite: and he blew a trumpet, and said, We have no part in David, neither have we inheritance in the son of Jesse: every man to his tents, O Israel.
14793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So every man of Israel went up from after David, and followed Sheba the son of Bichri: but the men of Judah clave unto their king, from Jordan even to Jerusalem.
14794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David came to his house at Jerusalem; and the king took the ten women his concubines, whom he had left to keep the house, and put them in ward, and fed them, but went not in unto them. So they were shut up unto the day of their death, living in widowhood.
14795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then said the king to Amasa, Assemble me the men of Judah within three days, and be thou here present.
14796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Amasa went to assemble the men of Judah: but he tarried longer than the set time which he had appointed him.
14797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And David said to Abishai, Now shall Sheba the son of Bichri do us more harm than did Absalom: take thou thy lord's servants, and pursue after him, lest he get him fenced cities, and escape us.
14798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And there went out after him Joab's men, and the Cherethites, and the Pelethites, and all the mighty men: and they went out of Jerusalem, to pursue after Sheba the son of Bichri.
14799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   When they were at the great stone which is in Gibeon, Amasa went before them. And Joab's garment that he had put on was girded unto him, and upon it a girdle with a sword fastened upon his loins in the sheath thereof; and as he went forth it fell out.
14800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joab said to Amasa, Art thou in health, my brother? And Joab took Amasa by the beard with the right hand to kiss him.
14801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But Amasa took no heed to the sword that was in Joab's hand: so he smote him therewith in the fifth rib, and shed out his bowels to the ground, and struck him not again; and he died. So Joab and Abishai his brother pursued after Sheba the son of Bichri.
14802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And one of Joab's men stood by him, and said, He that favoreth Joab, and he that is for David, let him go after Joab.
14803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Amasa wallowed in blood in the midst of the highway. And when the man saw that all the people stood still, he removed Amasa out of the highway into the field, and cast a cloth upon him, when he saw that every one that came by him stood still.
14804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           When he was removed out of the highway, all the people went on after Joab, to pursue after Sheba the son of Bichri.
14805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he went through all the tribes of Israel unto Abel, and to Bethmaachah, and all the Berites: and they were gathered together, and went also after him.
14806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they came and besieged him in Abel of Bethmaachah, and they cast up a bank against the city, and it stood in the trench: and all the people that were with Joab battered the wall, to throw it down.
14807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then cried a wise woman out of the city, Hear, hear; say, I pray you, unto Joab, Come near hither, that I may speak with thee.
14808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when he was come near unto her, the woman said, Art thou Joab? And he answered, I am he. Then she said unto him, Hear the words of thine handmaid. And he answered, I do hear.
14809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then she spake, saying, They were wont to speak in old time, saying, They shall surely ask counsel at Abel: and so they ended the matter.
14810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I am one of them that are peaceable and faithful in Israel: thou seekest to destroy a city and a mother in Israel: why wilt thou swallow up the inheritance of the LORD?
14811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Joab answered and said, Far be it, far be it from me, that I should swallow up or destroy.
14812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The matter is not so: but a man of mount Ephraim, Sheba the son of Bichri by name, hath lifted up his hand against the king, even against David: deliver him only, and I will depart from the city. And the woman said unto Joab, Behold, his head shall be thrown to thee over the wall.
14813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the woman went unto all the people in her wisdom. And they cut off the head of Sheba the son of Bichri, and cast it out to Joab. And he blew a trumpet, and they retired from the city, every man to his tent. And Joab returned to Jerusalem unto the king.
14814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now Joab was over all the host of Israel: and Benaiah the son of Jehoiada was over the Cherethites and over the Pelethites:
14815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Adoram was over the tribute: and Jehoshaphat the son of Ahilud was recorder:
14816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Sheva was scribe: and Zadok and Abiathar were the priests:
14817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Ira also the Jairite was a chief ruler about David.
14818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then there was a famine in the days of David three years, year after year; and David inquired of the LORD. And the LORD answered, It is for Saul, and for his bloody house, because he slew the Gibeonites.
14819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king called the Gibeonites, and said unto them; (now the Gibeonites were not of the children of Israel, but of the remnant of the Amorites; and the children of Israel had sworn unto them: and Saul sought to slay them in his zeal to the children of Israel and Judah.)
14820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wherefore David said unto the Gibeonites, What shall I do for you? and wherewith shall I make the atonement, that ye may bless the inheritance of the LORD?
14821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the Gibeonites said unto him, We will have no silver nor gold of Saul, nor of his house; neither for us shalt thou kill any man in Israel. And he said, What ye shall say, that will I do for you.
14822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they answered the king, The man that consumed us, and that devised against us that we should be destroyed from remaining in any of the coasts of Israel,
14823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let seven men of his sons be delivered unto us, and we will hang them up unto the LORD in Gibeah of Saul, whom the LORD did choose. And the king said, I will give them.
14824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But the king spared Mephibosheth, the son of Jonathan the son of Saul, because of the LORD's oath that was between them, between David and Jonathan the son of Saul.
14825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the king took the two sons of Rizpah the daughter of Aiah, whom she bare unto Saul, Armoni and Mephibosheth; and the five sons of Michal the daughter of Saul, whom she brought up for Adriel the son of Barzillai the Meholathite:
14826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he delivered them into the hands of the Gibeonites, and they hanged them in the hill before the LORD: and they fell all seven together, and were put to death in the days of harvest, in the first days, in the beginning of barley harvest.
14827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Rizpah the daughter of Aiah took sackcloth, and spread it for her upon the rock, from the beginning of harvest until water dropped upon them out of heaven, and suffered neither the birds of the air to rest on them by day, nor the beasts of the field by night.
14828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it was told David what Rizpah the daughter of Aiah, the concubine of Saul, had done.
14829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David went and took the bones of Saul and the bones of Jonathan his son from the men of Jabeshgilead, which had stolen them from the street of Bethshan, where the Philistines had hanged them, when the Philistines had slain Saul in Gilboa:
14830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he brought up from thence the bones of Saul and the bones of Jonathan his son; and they gathered the bones of them that were hanged.
14831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the bones of Saul and Jonathan his son buried they in the country of Benjamin in Zelah, in the sepulchre of Kish his father: and they performed all that the king commanded. And after that God was intreated for the land.
14832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moreover the Philistines had yet war again with Israel; and David went down, and his servants with him, and fought against the Philistines: and David waxed faint.
14833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ishbibenob, which was of the sons of the giant, the weight of whose spear weighed three hundred shekels of brass in weight, he being girded with a new sword, thought to have slain David.
14834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Abishai the son of Zeruiah succored him, and smote the Philistine, and killed him. Then the men of David sware unto him, saying, Thou shalt go no more out with us to battle, that thou quench not the light of Israel.
14835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass after this, that there was again a battle with the Philistines at Gob: then Sibbechai the Hushathite slew Saph, which was of the sons of the giant.
14836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there was again a battle in Gob with the Philistines, where Elhanan the son of Jaareoregim, a Bethlehemite, slew the brother of Goliath the Gittite, the staff of whose spear was like a weaver's beam.
14837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there was yet a battle in Gath, where was a man of great stature, that had on every hand six fingers, and on every foot six toes, four and twenty in number; and he also was born to the giant.
14838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when he defied Israel, Jonathan the son of Shimeah the brother of David slew him.
14839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    These four were born to the giant in Gath, and fell by the hand of David, and by the hand of his servants.
14840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David spake unto the LORD the words of this song in the day that the LORD had delivered him out of the hand of all his enemies, and out of the hand of Saul:
14841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said, The LORD is my rock, and my fortress, and my deliverer;
14842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The God of my rock; in him will I trust: he is my shield, and the horn of my salvation, my high tower, and my refuge, my saviour; thou savest me from violence.
14843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I will call on the LORD, who is worthy to be praised: so shall I be saved from mine enemies.
14844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               When the waves of death compassed me, the floods of ungodly men made me afraid;
14845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The sorrows of hell compassed me about; the snares of death prevented me;
14846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In my distress I called upon the LORD, and cried to my God: and he did hear my voice out of his temple, and my cry did enter into his ears.
14847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then the earth shook and trembled; the foundations of heaven moved and shook, because he was wroth.
14848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      There went up a smoke out of his nostrils, and fire out of his mouth devoured: coals were kindled by it.
14849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He bowed the heavens also, and came down; and darkness was under his feet.
14850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he rode upon a cherub, and did fly: and he was seen upon the wings of the wind.
14851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he made darkness pavilions round about him, dark waters, and thick clouds of the skies.
14852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Through the brightness before him were coals of fire kindled.
14853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The LORD thundered from heaven, and the most High uttered his voice.
14854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he sent out arrows, and scattered them; lightning, and discomfited them.
14855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the channels of the sea appeared, the foundations of the world were discovered, at the rebuking of the LORD, at the blast of the breath of his nostrils.
14856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                He sent from above, he took me; he drew me out of many waters;
14857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           He delivered me from my strong enemy, and from them that hated me: for they were too strong for me.
14858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They prevented me in the day of my calamity: but the LORD was my stay.
14859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He brought me forth also into a large place: he delivered me, because he delighted in me.
14860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The LORD rewarded me according to my righteousness: according to the cleanness of my hands hath he recompensed me.
14861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For I have kept the ways of the LORD, and have not wickedly departed from my God.
14862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For all his judgments were before me: and as for his statutes, I did not depart from them.
14863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I was also upright before him, and have kept myself from mine iniquity.
14864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Therefore the LORD hath recompensed me according to my righteousness; according to my cleanness in his eye sight.
14865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   With the merciful thou wilt show thyself merciful, and with the upright man thou wilt show thyself upright.
14866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              With the pure thou wilt show thyself pure; and with the froward thou wilt show thyself unsavory.
14867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the afflicted people thou wilt save: but thine eyes are upon the haughty, that thou mayest bring them down.
14868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For thou art my lamp, O LORD: and the LORD will lighten my darkness.
14869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For by thee I have run through a troop: by my God have I leaped over a wall.
14870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 As for God, his way is perfect; the word of the LORD is tried: he is a buckler to all them that trust in him.
14871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For who is God, save the LORD? and who is a rock, save our God?
14872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   God is my strength and power: and he maketh my way perfect.
14873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He maketh my feet like hinds' feet: and setteth me upon my high places.
14874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He teacheth my hands to war; so that a bow of steel is broken by mine arms.
14875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thou hast also given me the shield of thy salvation: and thy gentleness hath made me great.
14876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou hast enlarged my steps under me; so that my feet did not slip.
14877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have pursued mine enemies, and destroyed them; and turned not again until I had consumed them.
14878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And I have consumed them, and wounded them, that they could not arise: yea, they are fallen under my feet.
14879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For thou hast girded me with strength to battle: them that rose up against me hast thou subdued under me.
14880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou hast also given me the necks of mine enemies, that I might destroy them that hate me.
14881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        They looked, but there was none to save; even unto the LORD, but he answered them not.
14882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then did I beat them as small as the dust of the earth, I did stamp them as the mire of the street, and did spread them abroad.
14883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thou also hast delivered me from the strivings of my people, thou hast kept me to be head of the heathen: a people which I knew not shall serve me.
14884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Strangers shall submit themselves unto me: as soon as they hear, they shall be obedient unto me.
14885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Strangers shall fade away, and they shall be afraid out of their close places.
14886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The LORD liveth; and blessed be my rock; and exalted be the God of the rock of my salvation.
14887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       It is God that avengeth me, and that bringeth down the people under me.
14888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And that bringeth me forth from mine enemies: thou also hast lifted me up on high above them that rose up against me: thou hast delivered me from the violent man.
14889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Therefore I will give thanks unto thee, O LORD, among the heathen, and I will sing praises unto thy name.
14890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       He is the tower of salvation for his king: and sheweth mercy to his anointed, unto David, and to his seed for evermore.
14891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now these be the last words of David. David the son of Jesse said, and the man who was raised up on high, the anointed of the God of Jacob, and the sweet psalmist of Israel, said,
14892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Spirit of the LORD spake by me, and his word was in my tongue.
14893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The God of Israel said, the Rock of Israel spake to me, He that ruleth over men must be just, ruling in the fear of God.
14894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he shall be as the light of the morning, when the sun riseth, even a morning without clouds; as the tender grass springing out of the earth by clear shining after rain.
14895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Although my house be not so with God; yet he hath made with me an everlasting covenant, ordered in all things, and sure: for this is all my salvation, and all my desire, although he make it not to grow.
14896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the sons of Belial shall be all of them as thorns thrust away, because they cannot be taken with hands:
14897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the man that shall touch them must be fenced with iron and the staff of a spear; and they shall be utterly burned with fire in the same place.
14898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      These be the names of the mighty men whom David had: The Tachmonite that sat in the seat, chief among the captains; the same was Adino the Eznite: he lift up his spear against eight hundred, whom he slew at one time.
14899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And after him was Eleazar the son of Dodo the Ahohite, one of the three mighty men with David, when they defied the Philistines that were there gathered together to battle, and the men of Israel were gone away:
14900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He arose, and smote the Philistines until his hand was weary, and his hand clave unto the sword: and the LORD wrought a great victory that day; and the people returned after him only to spoil.
14901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And after him was Shammah the son of Agee the Hararite. And the Philistines were gathered together into a troop, where was a piece of ground full of lentils: and the people fled from the Philistines.
14902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But he stood in the midst of the ground, and defended it, and slew the Philistines: and the LORD wrought a great victory.
14903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And three of the thirty chief went down, and came to David in the harvest time unto the cave of Adullam: and the troop of the Philistines pitched in the valley of Rephaim.
14904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David was then in an hold, and the garrison of the Philistines was then in Bethlehem.
14905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And David longed, and said, Oh that one would give me drink of the water of the well of Bethlehem, which is by the gate!
14906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the three mighty men brake through the host of the Philistines, and drew water out of the well of Bethlehem, that was by the gate, and took it, and brought it to David: nevertheless he would not drink thereof, but poured it out unto the LORD.
14907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Be it far from me, O LORD, that I should do this: is not this the blood of the men that went in jeopardy of their lives? therefore he would not drink it. These things did these three mighty men.
14908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Abishai, the brother of Joab, the son of Zeruiah, was chief among three. And he lifted up his spear against three hundred, and slew them, and had the name among three.
14909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Was he not most honorable of three? therefore he was their captain: howbeit he attained not unto the first three.
14910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Benaiah the son of Jehoiada, the son of a valiant man, of Kabzeel, who had done many acts, he slew two lionlike men of Moab: he went down also and slew a lion in the midst of a pit in time of snow:
14911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he slew an Egyptian, a goodly man: and the Egyptian had a spear in his hand; but he went down to him with a staff, and plucked the spear out of the Egyptian's hand, and slew him with his own spear.
14912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        These things did Benaiah the son of Jehoiada, and had the name among three mighty men.
14913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              He was more honorable than the thirty, but he attained not to the first three. And David set him over his guard.
14914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Asahel the brother of Joab was one of the thirty; Elhanan the son of Dodo of Bethlehem,
14915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Shammah the Harodite, Elika the Harodite,
14916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Helez the Paltite, Ira the son of Ikkesh the Tekoite,
14917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Abiezer the Anethothite, Mebunnai the Hushathite,
14918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Zalmon the Ahohite, Maharai the Netophathite,
14919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Heleb the son of Baanah, a Netophathite, Ittai the son of Ribai out of Gibeah of the children of Benjamin,
14920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Benaiah the Pirathonite, Hiddai of the brooks of Gaash,
14921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Abialbon the Arbathite, Azmaveth the Barhumite,
14922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Eliahba the Shaalbonite, of the sons of Jashen, Jonathan,
14923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Shammah the Hararite, Ahiam the son of Sharar the Hararite,
14924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Eliphelet the son of Ahasbai, the son of the Maachathite, Eliam the son of Ahithophel the Gilonite,
14925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hezrai the Carmelite, Paarai the Arbite,
14926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Igal the son of Nathan of Zobah, Bani the Gadite,
14927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Zelek the Ammonite, Nahari the Beerothite, armourbearer to Joab the son of Zeruiah,
14928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ira an Ithrite, Gareb an Ithrite,
14929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Uriah the Hittite: thirty and seven in all.
14930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And again the anger of the LORD was kindled against Israel, and he moved David against them to say, Go, number Israel and Judah.
14931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the king said to Joab the captain of the host, which was with him, Go now through all the tribes of Israel, from Dan even to Beersheba, and number ye the people, that I may know the number of the people.
14932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Joab said unto the king, Now the LORD thy God add unto the people, how many soever they be, an hundredfold, and that the eyes of my lord the king may see it: but why doth my lord the king delight in this thing?
14933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Notwithstanding the king's word prevailed against Joab, and against the captains of the host. And Joab and the captains of the host went out from the presence of the king, to number the people of Israel.
14934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they passed over Jordan, and pitched in Aroer, on the right side of the city that lieth in the midst of the river of Gad, and toward Jazer:
14935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then they came to Gilead, and to the land of Tahtimhodshi; and they came to Danjaan, and about to Zidon,
14936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And came to the strong hold of Tyre, and to all the cities of the Hivites, and of the Canaanites: and they went out to the south of Judah, even to Beersheba.
14937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So when they had gone through all the land, they came to Jerusalem at the end of nine months and twenty days.
14938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joab gave up the sum of the number of the people unto the king: and there were in Israel eight hundred thousand valiant men that drew the sword; and the men of Judah were five hundred thousand men.
14939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And David's heart smote him after that he had numbered the people. And David said unto the LORD, I have sinned greatly in that I have done: and now, I beseech thee, O LORD, take away the iniquity of thy servant; for I have done very foolishly.
14940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For when David was up in the morning, the word of the LORD came unto the prophet Gad, David's seer, saying,
14941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Go and say unto David, Thus saith the LORD, I offer thee three things; choose thee one of them, that I may do it unto thee.
14942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Gad came to David, and told him, and said unto him, Shall seven years of famine come unto thee in thy land? or wilt thou flee three months before thine enemies, while they pursue thee? or that there be three days' pestilence in thy land? now advise, and see what answer I shall return to him that sent me.
14943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And David said unto Gad, I am in a great strait: let us fall now into the hand of the LORD; for his mercies are great: and let me not fall into the hand of man.
14944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So the LORD sent a pestilence upon Israel from the morning even to the time appointed: and there died of the people from Dan even to Beersheba seventy thousand men.
14945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when the angel stretched out his hand upon Jerusalem to destroy it, the LORD repented him of the evil, and said to the angel that destroyed the people, It is enough: stay now thine hand. And the angel of the LORD was by the threshingplace of Araunah the Jebusite.
14946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And David spake unto the LORD when he saw the angel that smote the people, and said, Lo, I have sinned, and I have done wickedly: but these sheep, what have they done? let thine hand, I pray thee, be against me, and against my father's house.
14947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Gad came that day to David, and said unto him, Go up, rear an altar unto the LORD in the threshingfloor of Araunah the Jebusite.
14948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And David, according to the saying of Gad, went up as the LORD commanded.
14949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Araunah looked, and saw the king and his servants coming on toward him: and Araunah went out, and bowed himself before the king on his face upon the ground.
14950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Araunah said, Wherefore is my lord the king come to his servant? And David said, To buy the threshingfloor of thee, to build an altar unto the LORD, that the plague may be stayed from the people.
14951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Araunah said unto David, Let my lord the king take and offer up what seemeth good unto him: behold, here be oxen for burnt sacrifice, and threshing instruments and other instruments of the oxen for wood.
14952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    All these things did Araunah, as a king, give unto the king. And Araunah said unto the king, The LORD thy God accept thee.
14953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king said unto Araunah, Nay; but I will surely buy it of thee at a price: neither will I offer burnt offerings unto the LORD my God of that which doth cost me nothing. So David bought the threshingfloor and the oxen for fifty shekels of silver.
14954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And David built there an altar unto the LORD, and offered burnt offerings and peace offerings. So the LORD was intreated for the land, and the plague was stayed from Israel.
14955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now king David was old and stricken in years; and they covered him with clothes, but he gat no heat.
14956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Wherefore his servants said unto him, Let there be sought for my lord the king a young virgin: and let her stand before the king, and let her cherish him, and let her lie in thy bosom, that my lord the king may get heat.
14957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So they sought for a fair damsel throughout all the coasts of Israel, and found Abishag a Shunammite, and brought her to the king.
14958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the damsel was very fair, and cherished the king, and ministered to him: but the king knew her not.
14959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then Adonijah the son of Haggith exalted himself, saying, I will be king: and he prepared him chariots and horsemen, and fifty men to run before him.
14960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And his father had not displeased him at any time in saying, Why hast thou done so? and he also was a very goodly man; and his mother bare him after Absalom.
14961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he conferred with Joab the son of Zeruiah, and with Abiathar the priest: and they following Adonijah helped him.
14962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Zadok the priest, and Benaiah the son of Jehoiada, and Nathan the prophet, and Shimei, and Rei, and the mighty men which belonged to David, were not with Adonijah.
14963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Adonijah slew sheep and oxen and fat cattle by the stone of Zoheleth, which is by Enrogel, and called all his brethren the king's sons, and all the men of Judah the king's servants:
14964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Nathan the prophet, and Benaiah, and the mighty men, and Solomon his brother, he called not.
14965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Wherefore Nathan spake unto Bathsheba the mother of Solomon, saying, Hast thou not heard that Adonijah the son of Haggith doth reign, and David our lord knoweth it not?
14966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore come, let me, I pray thee, give thee counsel, that thou mayest save thine own life, and the life of thy son Solomon.
14967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Go and get thee in unto king David, and say unto him, Didst not thou, my lord, O king, swear unto thine handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne? why then doth Adonijah reign?
14968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Behold, while thou yet talkest there with the king, I also will come in after thee, and confirm thy words.
14969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Bathsheba went in unto the king into the chamber: and the king was very old; and Abishag the Shunammite ministered unto the king.
14970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Bathsheba bowed, and did obeisance unto the king. And the king said, What wouldest thou?
14971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she said unto him, My lord, thou swarest by the LORD thy God unto thine handmaid, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne.
14972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And now, behold, Adonijah reigneth; and now, my lord the king, thou knowest it not:
14973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he hath slain oxen and fat cattle and sheep in abundance, and hath called all the sons of the king, and Abiathar the priest, and Joab the captain of the host: but Solomon thy servant hath he not called.
14974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And thou, my lord, O king, the eyes of all Israel are upon thee, that thou shouldest tell them who shall sit on the throne of my lord the king after him.
14975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Otherwise it shall come to pass, when my lord the king shall sleep with his fathers, that I and my son Solomon shall be counted offenders.
14976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And, lo, while she yet talked with the king, Nathan the prophet also came in.
14977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they told the king, saying, Behold Nathan the prophet. And when he was come in before the king, he bowed himself before the king with his face to the ground.
14978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Nathan said, My lord, O king, hast thou said, Adonijah shall reign after me, and he shall sit upon my throne?
14979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For he is gone down this day, and hath slain oxen and fat cattle and sheep in abundance, and hath called all the king's sons, and the captains of the host, and Abiathar the priest; and, behold, they eat and drink before him, and say, God save king Adonijah.
14980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But me, even me thy servant, and Zadok the priest, and Benaiah the son of Jehoiada, and thy servant Solomon, hath he not called.
14981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Is this thing done by my lord the king, and thou hast not showed it unto thy servant, who should sit on the throne of my lord the king after him?
14982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then king David answered and said, Call me Bathsheba. And she came into the king's presence, and stood before the king.
14983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the king sware, and said, As the LORD liveth, that hath redeemed my soul out of all distress,
14984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Even as I sware unto thee by the LORD God of Israel, saying, Assuredly Solomon thy son shall reign after me, and he shall sit upon my throne in my stead; even so will I certainly do this day.
14985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then Bathsheba bowed with her face to the earth, and did reverence to the king, and said, Let my lord king David live for ever.
14986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And king David said, Call me Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada. And they came before the king.
14987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The king also said unto them, Take with you the servants of your lord, and cause Solomon my son to ride upon mine own mule, and bring him down to Gihon:
14988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And let Zadok the priest and Nathan the prophet anoint him there king over Israel: and blow ye with the trumpet, and say, God save king Solomon.
14989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then ye shall come up after him, that he may come and sit upon my throne; for he shall be king in my stead: and I have appointed him to be ruler over Israel and over Judah.
14990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Benaiah the son of Jehoiada answered the king, and said, Amen: the LORD God of my lord the king say so too.
14991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   As the LORD hath been with my lord the king, even so be he with Solomon, and make his throne greater than the throne of my lord king David.
14992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the Pelethites, went down, and caused Solomon to ride upon king David's mule, and brought him to Gihon.
14993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Zadok the priest took an horn of oil out of the tabernacle, and anointed Solomon. And they blew the trumpet; and all the people said, God save king Solomon.
14994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the people came up after him, and the people piped with pipes, and rejoiced with great joy, so that the earth rent with the sound of them.
14995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Adonijah and all the guests that were with him heard it as they had made an end of eating. And when Joab heard the sound of the trumpet, he said, Wherefore is this noise of the city being in an uproar?
14996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And while he yet spake, behold, Jonathan the son of Abiathar the priest came; and Adonijah said unto him, Come in; for thou art a valiant man, and bringest good tidings.
14997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jonathan answered and said to Adonijah, Verily our lord king David hath made Solomon king.
14998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king hath sent with him Zadok the priest, and Nathan the prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the Pelethites, and they have caused him to ride upon the king's mule:
14999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Zadok the priest and Nathan the prophet have anointed him king in Gihon: and they are come up from thence rejoicing, so that the city rang again. This is the noise that ye have heard.
15000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And also Solomon sitteth on the throne of the kingdom.
15001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And moreover the king's servants came to bless our lord king David, saying, God make the name of Solomon better than thy name, and make his throne greater than thy throne. And the king bowed himself upon the bed.
15002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And also thus said the king, Blessed be the LORD God of Israel, which hath given one to sit on my throne this day, mine eyes even seeing it.
15003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And all the guests that were with Adonijah were afraid, and rose up, and went every man his way.
15004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Adonijah feared because of Solomon, and arose, and went, and caught hold on the horns of the altar.
15005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it was told Solomon, saying, Behold, Adonijah feareth king Solomon: for, lo, he hath caught hold on the horns of the altar, saying, Let king Solomon swear unto me today that he will not slay his servant with the sword.
15006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Solomon said, If he will show himself a worthy man, there shall not an hair of him fall to the earth: but if wickedness shall be found in him, he shall die.
15007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So king Solomon sent, and they brought him down from the altar. And he came and bowed himself to king Solomon: and Solomon said unto him, Go to thine house.
15008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now the days of David drew nigh that he should die; and he charged Solomon his son, saying,
15009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I go the way of all the earth: be thou strong therefore, and show thyself a man;
15010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And keep the charge of the LORD thy God, to walk in his ways, to keep his statutes, and his commandments, and his judgments, and his testimonies, as it is written in the law of Moses, that thou mayest prosper in all that thou doest, and whithersoever thou turnest thyself:
15011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That the LORD may continue his word which he spake concerning me, saying, If thy children take heed to their way, to walk before me in truth with all their heart and with all their soul, there shall not fail thee (said he) a man on the throne of Israel.
15012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Moreover thou knowest also what Joab the son of Zeruiah did to me, and what he did to the two captains of the hosts of Israel, unto Abner the son of Ner, and unto Amasa the son of Jether, whom he slew, and shed the blood of war in peace, and put the blood of war upon his girdle that was about his loins, and in his shoes that were on his feet.
15013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Do therefore according to thy wisdom, and let not his hoar head go down to the grave in peace.
15014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But show kindness unto the sons of Barzillai the Gileadite, and let them be of those that eat at thy table: for so they came to me when I fled because of Absalom thy brother.
15015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And, behold, thou hast with thee Shimei the son of Gera, a Benjamite of Bahurim, which cursed me with a grievous curse in the day when I went to Mahanaim: but he came down to meet me at Jordan, and I sware to him by the LORD, saying, I will not put thee to death with the sword.
15016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now therefore hold him not guiltless: for thou art a wise man, and knowest what thou oughtest to do unto him; but his hoar head bring thou down to the grave with blood.
15017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So David slept with his fathers, and was buried in the city of David.
15018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the days that David reigned over Israel were forty years: seven years reigned he in Hebron, and thirty and three years reigned he in Jerusalem.
15019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then sat Solomon upon the throne of David his father; and his kingdom was established greatly.
15020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Adonijah the son of Haggith came to Bathsheba the mother of Solomon. And she said, Comest thou peaceably? And he said, Peaceably.
15021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     He said moreover, I have somewhat to say unto thee. And she said, Say on.
15022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Thou knowest that the kingdom was mine, and that all Israel set their faces on me, that I should reign: howbeit the kingdom is turned about, and is become my brother's: for it was his from the LORD.
15023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And now I ask one petition of thee, deny me not. And she said unto him, Say on.
15024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Speak, I pray thee, unto Solomon the king, (for he will not say thee nay,) that he give me Abishag the Shunammite to wife.
15025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Bathsheba said, Well; I will speak for thee unto the king.
15026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Bathsheba therefore went unto king Solomon, to speak unto him for Adonijah. And the king rose up to meet her, and bowed himself unto her, and sat down on his throne, and caused a seat to be set for the king's mother; and she sat on his right hand.
15027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then she said, I desire one small petition of thee; I pray thee, say me not nay. And the king said unto her, Ask on, my mother: for I will not say thee nay.
15028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And she said, Let Abishag the Shunammite be given to Adonijah thy brother to wife.
15029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And king Solomon answered and said unto his mother, And why dost thou ask Abishag the Shunammite for Adonijah? ask for him the kingdom also; for he is mine elder brother; even for him, and for Abiathar the priest, and for Joab the son of Zeruiah.
15030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then king Solomon sware by the LORD, saying, God do so to me, and more also, if Adonijah have not spoken this word against his own life.
15031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now therefore, as the LORD liveth, which hath established me, and set me on the throne of David my father, and who hath made me an house, as he promised, Adonijah shall be put to death this day.
15032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And king Solomon sent by the hand of Benaiah the son of Jehoiada; and he fell upon him that he died.
15033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And unto Abiathar the priest said the king, Get thee to Anathoth, unto thine own fields; for thou art worthy of death: but I will not at this time put thee to death, because thou barest the ark of the LORD God before David my father, and because thou hast been afflicted in all wherein my father was afflicted.
15034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Solomon thrust out Abiathar from being priest unto the LORD; that he might fulfil the word of the LORD, which he spake concerning the house of Eli in Shiloh.
15035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then tidings came to Joab: for Joab had turned after Adonijah, though he turned not after Absalom. And Joab fled unto the tabernacle of the LORD, and caught hold on the horns of the altar.
15036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it was told king Solomon that Joab was fled unto the tabernacle of the LORD; and, behold, he is by the altar. Then Solomon sent Benaiah the son of Jehoiada, saying, Go, fall upon him.
15037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Benaiah came to the tabernacle of the LORD, and said unto him, Thus saith the king, Come forth. And he said, Nay; but I will die here. And Benaiah brought the king word again, saying, Thus said Joab, and thus he answered me.
15038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king said unto him, Do as he hath said, and fall upon him, and bury him; that thou mayest take away the innocent blood, which Joab shed, from me, and from the house of my father.
15039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD shall return his blood upon his own head, who fell upon two men more righteous and better than he, and slew them with the sword, my father David not knowing thereof, to wit, Abner the son of Ner, captain of the host of Israel, and Amasa the son of Jether, captain of the host of Judah.
15040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Their blood shall therefore return upon the head of Joab, and upon the head of his seed for ever: but upon David, and upon his seed, and upon his house, and upon his throne, shall there be peace for ever from the LORD.
15041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So Benaiah the son of Jehoiada went up, and fell upon him, and slew him: and he was buried in his own house in the wilderness.
15042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the king put Benaiah the son of Jehoiada in his room over the host: and Zadok the priest did the king put in the room of Abiathar.
15043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king sent and called for Shimei, and said unto him, Build thee an house in Jerusalem, and dwell there, and go not forth thence any whither.
15044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For it shall be, that on the day thou goest out, and passest over the brook Kidron, thou shalt know for certain that thou shalt surely die: thy blood shall be upon thine own head.
15045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Shimei said unto the king, The saying is good: as my lord the king hath said, so will thy servant do. And Shimei dwelt in Jerusalem many days.
15046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass at the end of three years, that two of the servants of Shimei ran away unto Achish son of Maachah king of Gath. And they told Shimei, saying, Behold, thy servants be in Gath.
15047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Shimei arose, and saddled his ass, and went to Gath to Achish to seek his servants: and Shimei went, and brought his servants from Gath.
15048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it was told Solomon that Shimei had gone from Jerusalem to Gath, and was come again.
15049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the king sent and called for Shimei, and said unto him, Did I not make thee to swear by the LORD, and protested unto thee, saying, Know for a certain, on the day thou goest out, and walkest abroad any whither, that thou shalt surely die? and thou saidst unto me, The word that I have heard is good.
15050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why then hast thou not kept the oath of the LORD, and the commandment that I have charged thee with?
15051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The king said moreover to Shimei, Thou knowest all the wickedness which thine heart is privy to, that thou didst to David my father: therefore the LORD shall return thy wickedness upon thine own head;
15052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And king Solomon shall be blessed, and the throne of David shall be established before the LORD for ever.
15053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So the king commanded Benaiah the son of Jehoiada; which went out, and fell upon him, that he died. And the kingdom was established in the hand of Solomon.
15054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Solomon made affinity with Pharaoh king of Egypt, and took Pharaoh's daughter, and brought her into the city of David, until he had made an end of building his own house, and the house of the LORD, and the wall of Jerusalem round about.
15055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Only the people sacrificed in high places, because there was no house built unto the name of the LORD, until those days.
15056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Solomon loved the LORD, walking in the statutes of David his father: only he sacrificed and burnt incense in high places.
15057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king went to Gibeon to sacrifice there; for that was the great high place: a thousand burnt offerings did Solomon offer upon that altar.
15058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In Gibeon the LORD appeared to Solomon in a dream by night: and God said, Ask what I shall give thee.
15059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon said, Thou hast showed unto thy servant David my father great mercy, according as he walked before thee in truth, and in righteousness, and in uprightness of heart with thee; and thou hast kept for him this great kindness, that thou hast given him a son to sit on his throne, as it is this day.
15060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And now, O LORD my God, thou hast made thy servant king instead of David my father: and I am but a little child: I know not how to go out or come in.
15061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And thy servant is in the midst of thy people which thou hast chosen, a great people, that cannot be numbered nor counted for multitude.
15062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Give therefore thy servant an understanding heart to judge thy people, that I may discern between good and bad: for who is able to judge this thy so great a people?
15063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the speech pleased the LORD, that Solomon had asked this thing.
15064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And God said unto him, Because thou hast asked this thing, and hast not asked for thyself long life; neither hast asked riches for thyself, nor hast asked the life of thine enemies; but hast asked for thyself understanding to discern judgment;
15065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, I have done according to thy words: lo, I have given thee a wise and an understanding heart; so that there was none like thee before thee, neither after thee shall any arise like unto thee.
15066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I have also given thee that which thou hast not asked, both riches, and honor: so that there shall not be any among the kings like unto thee all thy days.
15067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And if thou wilt walk in my ways, to keep my statutes and my commandments, as thy father David did walk, then I will lengthen thy days.
15068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon awoke; and, behold, it was a dream. And he came to Jerusalem, and stood before the ark of the covenant of the LORD, and offered up burnt offerings, and offered peace offerings, and made a feast to all his servants.
15069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then came there two women, that were harlots, unto the king, and stood before him.
15070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the one woman said, O my lord, I and this woman dwell in one house; and I was delivered of a child with her in the house.
15071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass the third day after that I was delivered, that this woman was delivered also: and we were together; there was no stranger with us in the house, save we two in the house.
15072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And this woman's child died in the night; because she overlaid it.
15073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she arose at midnight, and took my son from beside me, while thine handmaid slept, and laid it in her bosom, and laid her dead child in my bosom.
15074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when I rose in the morning to give my child suck, behold, it was dead: but when I had considered it in the morning, behold, it was not my son, which I did bear.
15075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the other woman said, Nay; but the living is my son, and the dead is thy son. And this said, No; but the dead is thy son, and the living is my son. Thus they spake before the king.
15076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then said the king, The one saith, This is my son that liveth, and thy son is the dead: and the other saith, Nay; but thy son is the dead, and my son is the living.
15077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the king said, Bring me a sword. And they brought a sword before the king.
15078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king said, Divide the living child in two, and give half to the one, and half to the other.
15079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then spake the woman whose the living child was unto the king, for her bowels yearned upon her son, and she said, O my lord, give her the living child, and in no wise slay it. But the other said, Let it be neither mine nor thine, but divide it.
15080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the king answered and said, Give her the living child, and in no wise slay it: she is the mother thereof.
15081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all Israel heard of the judgment which the king had judged; and they feared the king: for they saw that the wisdom of God was in him, to do judgment.
15082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So king Solomon was king over all Israel.
15083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And these were the princes which he had; Azariah the son of Zadok the priest,
15084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Elihoreph and Ahiah, the sons of Shisha, scribes; Jehoshaphat the son of Ahilud, the recorder.
15085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Benaiah the son of Jehoiada was over the host: and Zadok and Abiathar were the priests:
15086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Azariah the son of Nathan was over the officers: and Zabud the son of Nathan was principal officer, and the king's friend:
15087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ahishar was over the household: and Adoniram the son of Abda was over the tribute.
15088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Solomon had twelve officers over all Israel, which provided victuals for the king and his household: each man his month in a year made provision.
15089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And these are their names: The son of Hur, in mount Ephraim:
15090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The son of Dekar, in Makaz, and in Shaalbim, and Bethshemesh, and Elonbethhanan:
15091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The son of Hesed, in Aruboth; to him pertained Sochoh, and all the land of Hepher:
15092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The son of Abinadab, in all the region of Dor; which had Taphath the daughter of Solomon to wife:
15093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Baana the son of Ahilud; to him pertained Taanach and Megiddo, and all Bethshean, which is by Zartanah beneath Jezreel, from Bethshean to Abelmeholah, even unto the place that is beyond Jokneam:
15094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The son of Geber, in Ramothgilead; to him pertained the towns of Jair the son of Manasseh, which are in Gilead; to him also pertained the region of Argob, which is in Bashan, threescore great cities with walls and brazen bars:
15095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ahinadab the son of Iddo had Mahanaim:
15096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ahimaaz was in Naphtali; he also took Basmath the daughter of Solomon to wife:
15097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Baanah the son of Hushai was in Asher and in Aloth:
15098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Jehoshaphat the son of Paruah, in Issachar:
15099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Shimei the son of Elah, in Benjamin:
15100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Geber the son of Uri was in the country of Gilead, in the country of Sihon king of the Amorites, and of Og king of Bashan; and he was the only officer which was in the land.
15101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Judah and Israel were many, as the sand which is by the sea in multitude, eating and drinking, and making merry.
15102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Solomon reigned over all kingdoms from the river unto the land of the Philistines, and unto the border of Egypt: they brought presents, and served Solomon all the days of his life.
15103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Solomon's provision for one day was thirty measures of fine flour, and threescore measures of meal,
15104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Ten fat oxen, and twenty oxen out of the pastures, and an hundred sheep, beside harts, and roebucks, and fallowdeer, and fatted fowl.
15105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For he had dominion over all the region on this side the river, from Tiphsah even to Azzah, over all the kings on this side the river: and he had peace on all sides round about him.
15106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Judah and Israel dwelt safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon.
15107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen.
15108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And those officers provided victual for king Solomon, and for all that came unto king Solomon's table, every man in his month: they lacked nothing.
15109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Barley also and straw for the horses and dromedaries brought they unto the place where the officers were, every man according to his charge.
15110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And God gave Solomon wisdom and understanding exceeding much, and largeness of heart, even as the sand that is on the sea shore.
15111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Solomon's wisdom excelled the wisdom of all the children of the east country, and all the wisdom of Egypt.
15112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For he was wiser than all men; than Ethan the Ezrahite, and Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in all nations round about.
15113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he spake three thousand proverbs: and his songs were a thousand and five.
15114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he spake of trees, from the cedar tree that is in Lebanon even unto the hyssop that springeth out of the wall: he spake also of beasts, and of fowl, and of creeping things, and of fishes.
15115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there came of all people to hear the wisdom of Solomon, from all kings of the earth, which had heard of his wisdom.
15116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Hiram king of Tyre sent his servants unto Solomon; for he had heard that they had anointed him king in the room of his father: for Hiram was ever a lover of David.
15117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon sent to Hiram, saying,
15118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thou knowest how that David my father could not build an house unto the name of the LORD his God for the wars which were about him on every side, until the LORD put them under the soles of his feet.
15119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But now the LORD my God hath given me rest on every side, so that there is neither adversary nor evil occurrent.
15120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And, behold, I purpose to build an house unto the name of the LORD my God, as the LORD spake unto David my father, saying, Thy son, whom I will set upon thy throne in thy room, he shall build an house unto my name.
15121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now therefore command thou that they hew me cedar trees out of Lebanon; and my servants shall be with thy servants: and unto thee will I give hire for thy servants according to all that thou shalt appoint: for thou knowest that there is not among us any that can skill to hew timber like unto the Sidonians.
15122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass, when Hiram heard the words of Solomon, that he rejoiced greatly, and said, Blessed be the LORD this day, which hath given unto David a wise son over this great people.
15123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hiram sent to Solomon, saying, I have considered the things which thou sentest to me for: and I will do all thy desire concerning timber of cedar, and concerning timber of fir.
15124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My servants shall bring them down from Lebanon unto the sea: and I will convey them by sea in floats unto the place that thou shalt appoint me, and will cause them to be discharged there, and thou shalt receive them: and thou shalt accomplish my desire, in giving food for my household.
15125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Hiram gave Solomon cedar trees and fir trees according to all his desire.
15126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Solomon gave Hiram twenty thousand measures of wheat for food to his household, and twenty measures of pure oil: thus gave Solomon to Hiram year by year.
15127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD gave Solomon wisdom, as he promised him: and there was peace between Hiram and Solomon; and they two made a league together.
15128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And king Solomon raised a levy out of all Israel; and the levy was thirty thousand men.
15129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he sent them to Lebanon, ten thousand a month by courses: a month they were in Lebanon, and two months at home: and Adoniram was over the levy.
15130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Solomon had threescore and ten thousand that bare burdens, and fourscore thousand hewers in the mountains;
15131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Beside the chief of Solomon's officers which were over the work, three thousand and three hundred, which ruled over the people that wrought in the work.
15132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king commanded, and they brought great stones, costly stones, and hewed stones, to lay the foundation of the house.
15133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Solomon's builders and Hiram's builders did hew them, and the stonesquarers: so they prepared timber and stones to build the house.
15134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass in the four hundred and eightieth year after the children of Israel were come out of the land of Egypt, in the fourth year of Solomon's reign over Israel, in the month Zif, which is the second month, that he began to build the house of the LORD.
15135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the house which king Solomon built for the LORD, the length thereof was threescore cubits, and the breadth thereof twenty cubits, and the height thereof thirty cubits.
15136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the porch before the temple of the house, twenty cubits was the length thereof, according to the breadth of the house; and ten cubits was the breadth thereof before the house.
15137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And for the house he made windows of narrow lights.
15138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And against the wall of the house he built chambers round about, against the walls of the house round about, both of the temple and of the oracle: and he made chambers round about:
15139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The nethermost chamber was five cubits broad, and the middle was six cubits broad, and the third was seven cubits broad: for without in the wall of the house he made narrowed rests round about, that the beams should not be fastened in the walls of the house.
15140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the house, when it was in building, was built of stone made ready before it was brought thither: so that there was neither hammer nor axe nor any tool of iron heard in the house, while it was in building.
15141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The door for the middle chamber was in the right side of the house: and they went up with winding stairs into the middle chamber, and out of the middle into the third.
15142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 So he built the house, and finished it; and covered the house with beams and boards of cedar.
15143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And then he built chambers against all the house, five cubits high: and they rested on the house with timber of cedar.
15144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the word of the LORD came to Solomon, saying,
15145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Concerning this house which thou art in building, if thou wilt walk in my statutes, and execute my judgments, and keep all my commandments to walk in them; then will I perform my word with thee, which I spake unto David thy father:
15146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will dwell among the children of Israel, and will not forsake my people Israel.
15147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Solomon built the house, and finished it.
15148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he built the walls of the house within with boards of cedar, both the floor of the house, and the walls of the ceiling: and he covered them on the inside with wood, and covered the floor of the house with planks of fir.
15149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he built twenty cubits on the sides of the house, both the floor and the walls with boards of cedar: he even built them for it within, even for the oracle, even for the most holy place.
15150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the house, that is, the temple before it, was forty cubits long.
15151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the cedar of the house within was carved with knops and open flowers: all was cedar; there was no stone seen.
15152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the oracle he prepared in the house within, to set there the ark of the covenant of the LORD.
15153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the oracle in the forepart was twenty cubits in length, and twenty cubits in breadth, and twenty cubits in the height thereof: and he overlaid it with pure gold; and so covered the altar which was of cedar.
15154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Solomon overlaid the house within with pure gold: and he made a partition by the chains of gold before the oracle; and he overlaid it with gold.
15155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the whole house he overlaid with gold, until he had finished all the house: also the whole altar that was by the oracle he overlaid with gold.
15156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And within the oracle he made two cherubim of olive tree, each ten cubits high.
15157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And five cubits was the one wing of the cherub, and five cubits the other wing of the cherub: from the uttermost part of the one wing unto the uttermost part of the other were ten cubits.
15158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the other cherub was ten cubits: both the cherubim were of one measure and one size.
15159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The height of the one cherub was ten cubits, and so was it of the other cherub.
15160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he set the cherubim within the inner house: and they stretched forth the wings of the cherubim, so that the wing of the one touched the one wall, and the wing of the other cherub touched the other wall; and their wings touched one another in the midst of the house.
15161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he overlaid the cherubim with gold.
15162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he carved all the walls of the house round about with carved figures of cherubim and palm trees and open flowers, within and without.
15163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the floors of the house he overlaid with gold, within and without.
15164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And for the entering of the oracle he made doors of olive tree: the lintel and side posts were a fifth part of the wall.
15165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 The two doors also were of olive tree; and he carved upon them carvings of cherubim and palm trees and open flowers, and overlaid them with gold, and spread gold upon the cherubim, and upon the palm trees.
15166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So also made he for the door of the temple posts of olive tree, a fourth part of the wall.
15167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the two doors were of fir tree: the two leaves of the one door were folding, and the two leaves of the other door were folding.
15168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he carved thereon cherubim and palm trees and open flowers: and covered them with gold fitted upon the carved work.
15169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he built the inner court with three rows of hewed stone, and a row of cedar beams.
15170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In the fourth year was the foundation of the house of the LORD laid, in the month Zif:
15171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And in the eleventh year, in the month Bul, which is the eighth month, was the house finished throughout all the parts thereof, and according to all the fashion of it. So was he seven years in building it.
15172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But Solomon was building his own house thirteen years, and he finished all his house.
15173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   He built also the house of the forest of Lebanon; the length thereof was an hundred cubits, and the breadth thereof fifty cubits, and the height thereof thirty cubits, upon four rows of cedar pillars, with cedar beams upon the pillars.
15174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it was covered with cedar above upon the beams, that lay on forty five pillars, fifteen in a row.
15175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And there were windows in three rows, and light was against light in three ranks.
15176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And all the doors and posts were square, with the windows: and light was against light in three ranks.
15177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he made a porch of pillars; the length thereof was fifty cubits, and the breadth thereof thirty cubits: and the porch was before them: and the other pillars and the thick beam were before them.
15178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then he made a porch for the throne where he might judge, even the porch of judgment: and it was covered with cedar from one side of the floor to the other.
15179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And his house where he dwelt had another court within the porch, which was of the like work. Solomon made also an house for Pharaoh's daughter, whom he had taken to wife, like unto this porch.
15180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      All these were of costly stones, according to the measures of hewed stones, sawed with saws, within and without, even from the foundation unto the coping, and so on the outside toward the great court.
15181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the foundation was of costly stones, even great stones, stones of ten cubits, and stones of eight cubits.
15182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And above were costly stones, after the measures of hewed stones, and cedars.
15183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the great court round about was with three rows of hewed stones, and a row of cedar beams, both for the inner court of the house of the LORD, and for the porch of the house.
15184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And king Solomon sent and fetched Hiram out of Tyre.
15185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          He was a widow's son of the tribe of Naphtali, and his father was a man of Tyre, a worker in brass: and he was filled with wisdom, and understanding, and cunning to work all works in brass. And he came to king Solomon, and wrought all his work.
15186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For he cast two pillars of brass, of eighteen cubits high apiece: and a line of twelve cubits did compass either of them about.
15187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he made two chapiters of molten brass, to set upon the tops of the pillars: the height of the one chapiter was five cubits, and the height of the other chapiter was five cubits:
15188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And nets of checker work, and wreaths of chain work, for the chapiters which were upon the top of the pillars; seven for the one chapiter, and seven for the other chapiter.
15189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he made the pillars, and two rows round about upon the one network, to cover the chapiters that were upon the top, with pomegranates: and so did he for the other chapiter.
15190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the chapiters that were upon the top of the pillars were of lily work in the porch, four cubits.
15191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the chapiters upon the two pillars had pomegranates also above, over against the belly which was by the network: and the pomegranates were two hundred in rows round about upon the other chapiter.
15192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he set up the pillars in the porch of the temple: and he set up the right pillar, and called the name thereof Jachin: and he set up the left pillar, and called the name thereof Boaz.
15193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And upon the top of the pillars was lily work: so was the work of the pillars finished.
15194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he made a molten sea, ten cubits from the one brim to the other: it was round all about, and his height was five cubits: and a line of thirty cubits did compass it round about.
15195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And under the brim of it round about there were knops compassing it, ten in a cubit, compassing the sea round about: the knops were cast in two rows, when it was cast.
15196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             It stood upon twelve oxen, three looking toward the north, and three looking toward the west, and three looking toward the south, and three looking toward the east: and the sea was set above upon them, and all their hinder parts were inward.
15197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it was an hand breadth thick, and the brim thereof was wrought like the brim of a cup, with flowers of lilies: it contained two thousand baths.
15198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he made ten bases of brass; four cubits was the length of one base, and four cubits the breadth thereof, and three cubits the height of it.
15199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the work of the bases was on this manner: they had borders, and the borders were between the ledges:
15200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And on the borders that were between the ledges were lions, oxen, and cherubim: and upon the ledges there was a base above: and beneath the lions and oxen were certain additions made of thin work.
15201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And every base had four brazen wheels, and plates of brass: and the four corners thereof had undersetters: under the laver were undersetters molten, at the side of every addition.
15202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the mouth of it within the chapiter and above was a cubit: but the mouth thereof was round after the work of the base, a cubit and an half: and also upon the mouth of it were gravings with their borders, foursquare, not round.
15203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And under the borders were four wheels; and the axletrees of the wheels were joined to the base: and the height of a wheel was a cubit and half a cubit.
15204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the work of the wheels was like the work of a chariot wheel: their axletrees, and their naves, and their felloes, and their spokes, were all molten.
15205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And there were four undersetters to the four corners of one base: and the undersetters were of the very base itself.
15206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And in the top of the base was there a round compass of half a cubit high: and on the top of the base the ledges thereof and the borders thereof were of the same.
15207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For on the plates of the ledges thereof, and on the borders thereof, he graved cherubim, lions, and palm trees, according to the proportion of every one, and additions round about.
15208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              After this manner he made the ten bases: all of them had one casting, one measure, and one size.
15209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then made he ten lavers of brass: one laver contained forty baths: and every laver was four cubits: and upon every one of the ten bases one laver.
15210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he put five bases on the right side of the house, and five on the left side of the house: and he set the sea on the right side of the house eastward over against the south.
15211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Hiram made the lavers, and the shovels, and the basins. So Hiram made an end of doing all the work that he made king Solomon for the house of the LORD:
15212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The two pillars, and the two bowls of the chapiters that were on the top of the two pillars; and the two networks, to cover the two bowls of the chapiters which were upon the top of the pillars;
15213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And four hundred pomegranates for the two networks, even two rows of pomegranates for one network, to cover the two bowls of the chapiters that were upon the pillars;
15214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the ten bases, and ten lavers on the bases;
15215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And one sea, and twelve oxen under the sea;
15216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the pots, and the shovels, and the basins: and all these vessels, which Hiram made to king Solomon for the house of the LORD, were of bright brass.
15217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In the plain of Jordan did the king cast them, in the clay ground between Succoth and Zarthan.
15218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Solomon left all the vessels unweighed, because they were exceeding many: neither was the weight of the brass found out.
15219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon made all the vessels that pertained unto the house of the LORD: the altar of gold, and the table of gold, whereupon the shewbread was,
15220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the candlesticks of pure gold, five on the right side, and five on the left, before the oracle, with the flowers, and the lamps, and the tongs of gold,
15221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the bowls, and the snuffers, and the basins, and the spoons, and the censers of pure gold; and the hinges of gold, both for the doors of the inner house, the most holy place, and for the doors of the house, to wit, of the temple.
15222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So was ended all the work that king Solomon made for the house of the LORD. And Solomon brought in the things which David his father had dedicated; even the silver, and the gold, and the vessels, did he put among the treasures of the house of the LORD.
15223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Solomon assembled the elders of Israel, and all the heads of the tribes, the chief of the fathers of the children of Israel, unto king Solomon in Jerusalem, that they might bring up the ark of the covenant of the LORD out of the city of David, which is Zion.
15224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And all the men of Israel assembled themselves unto king Solomon at the feast in the month Ethanim, which is the seventh month.
15225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the elders of Israel came, and the priests took up the ark.
15226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they brought up the ark of the LORD, and the tabernacle of the congregation, and all the holy vessels that were in the tabernacle, even those did the priests and the Levites bring up.
15227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And king Solomon, and all the congregation of Israel, that were assembled unto him, were with him before the ark, sacrificing sheep and oxen, that could not be told nor numbered for multitude.
15228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the priests brought in the ark of the covenant of the LORD unto his place, into the oracle of the house, to the most holy place, even under the wings of the cherubim.
15229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For the cherubim spread forth their two wings over the place of the ark, and the cherubim covered the ark and the staves thereof above.
15230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And they drew out the staves, that the ends of the staves were seen out in the holy place before the oracle, and they were not seen without: and there they are unto this day.
15231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                There was nothing in the ark save the two tables of stone, which Moses put there at Horeb, when the LORD made a covenant with the children of Israel, when they came out of the land of Egypt.
15232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass, when the priests were come out of the holy place, that the cloud filled the house of the LORD,
15233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So that the priests could not stand to minister because of the cloud: for the glory of the LORD had filled the house of the LORD.
15234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then spake Solomon, The LORD said that he would dwell in the thick darkness.
15235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 I have surely built thee an house to dwell in, a settled place for thee to abide in for ever.
15236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the king turned his face about, and blessed all the congregation of Israel: (and all the congregation of Israel stood;)
15237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, Blessed be the LORD God of Israel, which spake with his mouth unto David my father, and hath with his hand fulfilled it, saying,
15238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Since the day that I brought forth my people Israel out of Egypt, I chose no city out of all the tribes of Israel to build an house, that my name might be therein; but I chose David to be over my people Israel.
15239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was in the heart of David my father to build an house for the name of the LORD God of Israel.
15240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD said unto David my father, Whereas it was in thine heart to build an house unto my name, thou didst well that it was in thine heart.
15241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nevertheless thou shalt not build the house; but thy son that shall come forth out of thy loins, he shall build the house unto my name.
15242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the LORD hath performed his word that he spake, and I am risen up in the room of David my father, and sit on the throne of Israel, as the LORD promised, and have built an house for the name of the LORD God of Israel.
15243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And I have set there a place for the ark, wherein is the covenant of the LORD, which he made with our fathers, when he brought them out of the land of Egypt.
15244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Solomon stood before the altar of the LORD in the presence of all the congregation of Israel, and spread forth his hands toward heaven:
15245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, LORD God of Israel, there is no God like thee, in heaven above, or on earth beneath, who keepest covenant and mercy with thy servants that walk before thee with all their heart:
15246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Who hast kept with thy servant David my father that thou promisedst him: thou spakest also with thy mouth, and hast fulfilled it with thine hand, as it is this day.
15247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Therefore now, LORD God of Israel, keep with thy servant David my father that thou promisedst him, saying, There shall not fail thee a man in my sight to sit on the throne of Israel; so that thy children take heed to their way, that they walk before me as thou hast walked before me.
15248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And now, O God of Israel, let thy word, I pray thee, be verified, which thou spakest unto thy servant David my father.
15249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But will God indeed dwell on the earth? behold, the heaven and heaven of heavens cannot contain thee; how much less this house that I have builded?
15250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Yet have thou respect unto the prayer of thy servant, and to his supplication, O LORD my God, to hearken unto the cry and to the prayer, which thy servant prayeth before thee to day:
15251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That thine eyes may be open toward this house night and day, even toward the place of which thou hast said, My name shall be there: that thou mayest hearken unto the prayer which thy servant shall make toward this place.
15252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And hearken thou to the supplication of thy servant, and of thy people Israel, when they shall pray toward this place: and hear thou in heaven thy dwelling place: and when thou hearest, forgive.
15253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If any man trespass against his neighbor, and an oath be laid upon him to cause him to swear, and the oath come before thine altar in this house:
15254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then hear thou in heaven, and do, and judge thy servants, condemning the wicked, to bring his way upon his head; and justifying the righteous, to give him according to his righteousness.
15255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  When thy people Israel be smitten down before the enemy, because they have sinned against thee, and shall turn again to thee, and confess thy name, and pray, and make supplication unto thee in this house:
15256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then hear thou in heaven, and forgive the sin of thy people Israel, and bring them again unto the land which thou gavest unto their fathers.
15257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When heaven is shut up, and there is no rain, because they have sinned against thee; if they pray toward this place, and confess thy name, and turn from their sin, when thou afflictest them:
15258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then hear thou in heaven, and forgive the sin of thy servants, and of thy people Israel, that thou teach them the good way wherein they should walk, and give rain upon thy land, which thou hast given to thy people for an inheritance.
15259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       If there be in the land famine, if there be pestilence, blasting, mildew, locust, or if there be caterpillar; if their enemy besiege them in the land of their cities; whatsoever plague, whatsoever sickness there be;
15260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What prayer and supplication soever be made by any man, or by all thy people Israel, which shall know every man the plague of his own heart, and spread forth his hands toward this house:
15261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then hear thou in heaven thy dwelling place, and forgive, and do, and give to every man according to his ways, whose heart thou knowest; (for thou, even thou only, knowest the hearts of all the children of men;)
15262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           That they may fear thee all the days that they live in the land which thou gavest unto our fathers.
15263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Moreover concerning a stranger, that is not of thy people Israel, but cometh out of a far country for thy name's sake;
15264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 (For they shall hear of thy great name, and of thy strong hand, and of thy stretched out arm;) when he shall come and pray toward this house;
15265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hear thou in heaven thy dwelling place, and do according to all that the stranger calleth to thee for: that all people of the earth may know thy name, to fear thee, as do thy people Israel; and that they may know that this house, which I have builded, is called by thy name.
15266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             If thy people go out to battle against their enemy, whithersoever thou shalt send them, and shall pray unto the LORD toward the city which thou hast chosen, and toward the house that I have built for thy name:
15267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then hear thou in heaven their prayer and their supplication, and maintain their cause.
15268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If they sin against thee, (for there is no man that sinneth not,) and thou be angry with them, and deliver them to the enemy, so that they carry them away captives unto the land of the enemy, far or near;
15269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Yet if they shall bethink themselves in the land whither they were carried captives, and repent, and make supplication unto thee in the land of them that carried them captives, saying, We have sinned, and have done perversely, we have committed wickedness;
15270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And so return unto thee with all their heart, and with all their soul, in the land of their enemies, which led them away captive, and pray unto thee toward their land, which thou gavest unto their fathers, the city which thou hast chosen, and the house which I have built for thy name:
15271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then hear thou their prayer and their supplication in heaven thy dwelling place, and maintain their cause,
15272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And forgive thy people that have sinned against thee, and all their transgressions wherein they have transgressed against thee, and give them compassion before them who carried them captive, that they may have compassion on them:
15273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For they be thy people, and thine inheritance, which thou broughtest forth out of Egypt, from the midst of the furnace of iron:
15274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   That thine eyes may be open unto the supplication of thy servant, and unto the supplication of thy people Israel, to hearken unto them in all that they call for unto thee.
15275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For thou didst separate them from among all the people of the earth, to be thine inheritance, as thou spakest by the hand of Moses thy servant, when thou broughtest our fathers out of Egypt, O LORD God.
15276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it was so, that when Solomon had made an end of praying all this prayer and supplication unto the LORD, he arose from before the altar of the LORD, from kneeling on his knees with his hands spread up to heaven.
15277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he stood, and blessed all the congregation of Israel with a loud voice, saying,
15278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blessed be the LORD, that hath given rest unto his people Israel, according to all that he promised: there hath not failed one word of all his good promise, which he promised by the hand of Moses his servant.
15279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The LORD our God be with us, as he was with our fathers: let him not leave us, nor forsake us:
15280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          That he may incline our hearts unto him, to walk in all his ways, and to keep his commandments, and his statutes, and his judgments, which he commanded our fathers.
15281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And let these my words, wherewith I have made supplication before the LORD, be nigh unto the LORD our God day and night, that he maintain the cause of his servant, and the cause of his people Israel at all times, as the matter shall require:
15282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That all the people of the earth may know that the LORD is God, and that there is none else.
15283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Let your heart therefore be perfect with the LORD our God, to walk in his statutes, and to keep his commandments, as at this day.
15284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king, and all Israel with him, offered sacrifice before the LORD.
15285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Solomon offered a sacrifice of peace offerings, which he offered unto the LORD, two and twenty thousand oxen, and an hundred and twenty thousand sheep. So the king and all the children of Israel dedicated the house of the LORD.
15286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The same day did the king hallow the middle of the court that was before the house of the LORD: for there he offered burnt offerings, and meat offerings, and the fat of the peace offerings: because the brazen altar that was before the LORD was too little to receive the burnt offerings, and meat offerings, and the fat of the peace offerings.
15287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And at that time Solomon held a feast, and all Israel with him, a great congregation, from the entering in of Hamath unto the river of Egypt, before the LORD our God, seven days and seven days, even fourteen days.
15288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        On the eighth day he sent the people away: and they blessed the king, and went unto their tents joyful and glad of heart for all the goodness that the LORD had done for David his servant, and for Israel his people.
15289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when Solomon had finished the building of the house of the LORD, and the king's house, and all Solomon's desire which he was pleased to do,
15290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     That the LORD appeared to Solomon the second time, as he had appeared unto him at Gibeon.
15291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the LORD said unto him, I have heard thy prayer and thy supplication, that thou hast made before me: I have hallowed this house, which thou hast built, to put my name there for ever; and mine eyes and mine heart shall be there perpetually.
15292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And if thou wilt walk before me, as David thy father walked, in integrity of heart, and in uprightness, to do according to all that I have commanded thee, and wilt keep my statutes and my judgments:
15293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then I will establish the throne of thy kingdom upon Israel for ever, as I promised to David thy father, saying, There shall not fail thee a man upon the throne of Israel.
15294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But if ye shall at all turn from following me, ye or your children, and will not keep my commandments and my statutes which I have set before you, but go and serve other gods, and worship them:
15295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then will I cut off Israel out of the land which I have given them; and this house, which I have hallowed for my name, will I cast out of my sight; and Israel shall be a proverb and a byword among all people:
15296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And at this house, which is high, every one that passeth by it shall be astonished, and shall hiss; and they shall say, Why hath the LORD done thus unto this land, and to this house?
15297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they shall answer, Because they forsook the LORD their God, who brought forth their fathers out of the land of Egypt, and have taken hold upon other gods, and have worshipped them, and served them: therefore hath the LORD brought upon them all this evil.
15298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass at the end of twenty years, when Solomon had built the two houses, the house of the LORD, and the king's house,
15299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        (Now Hiram the king of Tyre had furnished Solomon with cedar trees and fir trees, and with gold, according to all his desire,) that then king Solomon gave Hiram twenty cities in the land of Galilee.
15300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Hiram came out from Tyre to see the cities which Solomon had given him; and they pleased him not.
15301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, What cities are these which thou hast given me, my brother? And he called them the land of Cabul unto this day.
15302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Hiram sent to the king sixscore talents of gold.
15303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And this is the reason of the levy which king Solomon raised; for to build the house of the LORD, and his own house, and Millo, and the wall of Jerusalem, and Hazor, and Megiddo, and Gezer.
15304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For Pharaoh king of Egypt had gone up, and taken Gezer, and burnt it with fire, and slain the Canaanites that dwelt in the city, and given it for a present unto his daughter, Solomon's wife.
15305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Solomon built Gezer, and Bethhoron the nether,
15306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Baalath, and Tadmor in the wilderness, in the land,
15307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the cities of store that Solomon had, and cities for his chariots, and cities for his horsemen, and that which Solomon desired to build in Jerusalem, and in Lebanon, and in all the land of his dominion.
15308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And all the people that were left of the Amorites, Hittites, Perizzites, Hivites, and Jebusites, which were not of the children of Israel,
15309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Their children that were left after them in the land, whom the children of Israel also were not able utterly to destroy, upon those did Solomon levy a tribute of bondservice unto this day.
15310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But of the children of Israel did Solomon make no bondmen: but they were men of war, and his servants, and his princes, and his captains, and rulers of his chariots, and his horsemen.
15311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These were the chief of the officers that were over Solomon's work, five hundred and fifty, which bare rule over the people that wrought in the work.
15312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Pharaoh's daughter came up out of the city of David unto her house which Solomon had built for her: then did he build Millo.
15313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And three times in a year did Solomon offer burnt offerings and peace offerings upon the altar which he built unto the LORD, and he burnt incense upon the altar that was before the LORD. So he finished the house.
15314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And king Solomon made a navy of ships in Eziongeber, which is beside Eloth, on the shore of the Red sea, in the land of Edom.
15315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Hiram sent in the navy his servants, shipmen that had knowledge of the sea, with the servants of Solomon.
15316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they came to Ophir, and fetched from thence gold, four hundred and twenty talents, and brought it to king Solomon.
15317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when the queen of Sheba heard of the fame of Solomon concerning the name of the LORD, she came to prove him with hard questions.
15318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she came to Jerusalem with a very great train, with camels that bare spices, and very much gold, and precious stones: and when she was come to Solomon, she communed with him of all that was in her heart.
15319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Solomon told her all her questions: there was not any thing hid from the king, which he told her not.
15320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when the queen of Sheba had seen all Solomon's wisdom, and the house that he had built,
15321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the meat of his table, and the sitting of his servants, and the attendance of his ministers, and their apparel, and his cupbearers, and his ascent by which he went up unto the house of the LORD; there was no more spirit in her.
15322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And she said to the king, It was a true report that I heard in mine own land of thy acts and of thy wisdom.
15323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Howbeit I believed not the words, until I came, and mine eyes had seen it: and, behold, the half was not told me: thy wisdom and prosperity exceedeth the fame which I heard.
15324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Happy are thy men, happy are these thy servants, which stand continually before thee, and that hear thy wisdom.
15325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Blessed be the LORD thy God, which delighted in thee, to set thee on the throne of Israel: because the LORD loved Israel for ever, therefore made he thee king, to do judgment and justice.
15326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she gave the king an hundred and twenty talents of gold, and of spices very great store, and precious stones: there came no more such abundance of spices as these which the queen of Sheba gave to king Solomon.
15327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the navy also of Hiram, that brought gold from Ophir, brought in from Ophir great plenty of almug trees, and precious stones.
15328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king made of the almug trees pillars for the house of the LORD, and for the king's house, harps also and psalteries for singers: there came no such almug trees, nor were seen unto this day.
15329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And king Solomon gave unto the queen of Sheba all her desire, whatsoever she asked, beside that which Solomon gave her of his royal bounty. So she turned and went to her own country, she and her servants.
15330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Now the weight of gold that came to Solomon in one year was six hundred threescore and six talents of gold,
15331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Beside that he had of the merchantmen, and of the traffic of the spice merchants, and of all the kings of Arabia, and of the governors of the country.
15332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And king Solomon made two hundred targets of beaten gold: six hundred shekels of gold went to one target.
15333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made three hundred shields of beaten gold; three pound of gold went to one shield: and the king put them in the house of the forest of Lebanon.
15334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Moreover the king made a great throne of ivory, and overlaid it with the best gold.
15335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     The throne had six steps, and the top of the throne was round behind: and there were stays on either side on the place of the seat, and two lions stood beside the stays.
15336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And twelve lions stood there on the one side and on the other upon the six steps: there was not the like made in any kingdom.
15337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And all king Solomon's drinking vessels were of gold, and all the vessels of the house of the forest of Lebanon were of pure gold; none were of silver: it was nothing accounted of in the days of Solomon.
15338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For the king had at sea a navy of Tharshish with the navy of Hiram: once in three years came the navy of Tharshish, bringing gold, and silver, ivory, and apes, and peacocks.
15339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So king Solomon exceeded all the kings of the earth for riches and for wisdom.
15340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all the earth sought to Solomon, to hear his wisdom, which God had put in his heart.
15341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they brought every man his present, vessels of silver, and vessels of gold, and garments, and armor, and spices, horses, and mules, a rate year by year.
15342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Solomon gathered together chariots and horsemen: and he had a thousand and four hundred chariots, and twelve thousand horsemen, whom he bestowed in the cities for chariots, and with the king at Jerusalem.
15343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king made silver to be in Jerusalem as stones, and cedars made he to be as the sycamore trees that are in the vale, for abundance.
15344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Solomon had horses brought out of Egypt, and linen yarn: the king's merchants received the linen yarn at a price.
15345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And a chariot came up and went out of Egypt for six hundred shekels of silver, and an horse for an hundred and fifty: and so for all the kings of the Hittites, and for the kings of Syria, did they bring them out by their means.
15346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But king Solomon loved many strange women, together with the daughter of Pharaoh, women of the Moabites, Ammonites, Edomites, Zidonians, and Hittites:
15347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Of the nations concerning which the LORD said unto the children of Israel, Ye shall not go in to them, neither shall they come in unto you: for surely they will turn away your heart after their gods: Solomon clave unto these in love.
15348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he had seven hundred wives, princesses, and three hundred concubines: and his wives turned away his heart.
15349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For it came to pass, when Solomon was old, that his wives turned away his heart after other gods: and his heart was not perfect with the LORD his God, as was the heart of David his father.
15350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             For Solomon went after Ashtoreth the goddess of the Zidonians, and after Milcom the abomination of the Ammonites.
15351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Solomon did evil in the sight of the LORD, and went not fully after the LORD, as did David his father.
15352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then did Solomon build an high place for Chemosh, the abomination of Moab, in the hill that is before Jerusalem, and for Molech, the abomination of the children of Ammon.
15353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And likewise did he for all his strange wives, which burnt incense and sacrificed unto their gods.
15354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the LORD was angry with Solomon, because his heart was turned from the LORD God of Israel, which had appeared unto him twice,
15355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And had commanded him concerning this thing, that he should not go after other gods: but he kept not that which the LORD commanded.
15356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wherefore the LORD said unto Solomon, Forasmuch as this is done of thee, and thou hast not kept my covenant and my statutes, which I have commanded thee, I will surely rend the kingdom from thee, and will give it to thy servant.
15357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Notwithstanding in thy days I will not do it for David thy father's sake: but I will rend it out of the hand of thy son.
15358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Howbeit I will not rend away all the kingdom; but will give one tribe to thy son for David my servant's sake, and for Jerusalem's sake which I have chosen.
15359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD stirred up an adversary unto Solomon, Hadad the Edomite: he was of the king's seed in Edom.
15360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For it came to pass, when David was in Edom, and Joab the captain of the host was gone up to bury the slain, after he had smitten every male in Edom;
15361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              (For six months did Joab remain there with all Israel, until he had cut off every male in Edom:)
15362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 That Hadad fled, he and certain Edomites of his father's servants with him, to go into Egypt; Hadad being yet a little child.
15363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they arose out of Midian, and came to Paran: and they took men with them out of Paran, and they came to Egypt, unto Pharaoh king of Egypt; which gave him an house, and appointed him victuals, and gave him land.
15364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Hadad found great favor in the sight of Pharaoh, so that he gave him to wife the sister of his own wife, the sister of Tahpenes the queen.
15365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sister of Tahpenes bare him Genubath his son, whom Tahpenes weaned in Pharaoh's house: and Genubath was in Pharaoh's household among the sons of Pharaoh.
15366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when Hadad heard in Egypt that David slept with his fathers, and that Joab the captain of the host was dead, Hadad said to Pharaoh, Let me depart, that I may go to mine own country.
15367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Pharaoh said unto him, But what hast thou lacked with me, that, behold, thou seekest to go to thine own country? And he answered, Nothing: howbeit let me go in any wise.
15368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And God stirred him up another adversary, Rezon the son of Eliadah, which fled from his lord Hadadezer king of Zobah:
15369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he gathered men unto him, and became captain over a band, when David slew them of Zobah: and they went to Damascus, and dwelt therein, and reigned in Damascus.
15370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he was an adversary to Israel all the days of Solomon, beside the mischief that Hadad did: and he abhorred Israel, and reigned over Syria.
15371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jeroboam the son of Nebat, an Ephrathite of Zereda, Solomon's servant, whose mother's name was Zeruah, a widow woman, even he lifted up his hand against the king.
15372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And this was the cause that he lifted up his hand against the king: Solomon built Millo, and repaired the breaches of the city of David his father.
15373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the man Jeroboam was a mighty man of valor: and Solomon seeing the young man that he was industrious, he made him ruler over all the charge of the house of Joseph.
15374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass at that time when Jeroboam went out of Jerusalem, that the prophet Ahijah the Shilonite found him in the way; and he had clad himself with a new garment; and they two were alone in the field:
15375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Ahijah caught the new garment that was on him, and rent it in twelve pieces:
15376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said to Jeroboam, Take thee ten pieces: for thus saith the LORD, the God of Israel, Behold, I will rend the kingdom out of the hand of Solomon, and will give ten tribes to thee:
15377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            (But he shall have one tribe for my servant David's sake, and for Jerusalem's sake, the city which I have chosen out of all the tribes of Israel:)
15378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Because that they have forsaken me, and have worshipped Ashtoreth the goddess of the Zidonians, Chemosh the god of the Moabites, and Milcom the god of the children of Ammon, and have not walked in my ways, to do that which is right in mine eyes, and to keep my statutes and my judgments, as did David his father.
15379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Howbeit I will not take the whole kingdom out of his hand: but I will make him prince all the days of his life for David my servant's sake, whom I chose, because he kept my commandments and my statutes:
15380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But I will take the kingdom out of his son's hand, and will give it unto thee, even ten tribes.
15381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And unto his son will I give one tribe, that David my servant may have a light alway before me in Jerusalem, the city which I have chosen me to put my name there.
15382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And I will take thee, and thou shalt reign according to all that thy soul desireth, and shalt be king over Israel.
15383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it shall be, if thou wilt hearken unto all that I command thee, and wilt walk in my ways, and do that is right in my sight, to keep my statutes and my commandments, as David my servant did; that I will be with thee, and build thee a sure house, as I built for David, and will give Israel unto thee.
15384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And I will for this afflict the seed of David, but not for ever.
15385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Solomon sought therefore to kill Jeroboam. And Jeroboam arose, and fled into Egypt, unto Shishak king of Egypt, and was in Egypt until the death of Solomon.
15386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the rest of the acts of Solomon, and all that he did, and his wisdom, are they not written in the book of the acts of Solomon?
15387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the time that Solomon reigned in Jerusalem over all Israel was forty years.
15388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Solomon slept with his fathers, and was buried in the city of David his father: and Rehoboam his son reigned in his stead.
15389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Rehoboam went to Shechem: for all Israel were come to Shechem to make him king.
15390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when Jeroboam the son of Nebat, who was yet in Egypt, heard of it, (for he was fled from the presence of king Solomon, and Jeroboam dwelt in Egypt;)
15391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         That they sent and called him. And Jeroboam and all the congregation of Israel came, and spake unto Rehoboam, saying,
15392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Thy father made our yoke grievous: now therefore make thou the grievous service of thy father, and his heavy yoke which he put upon us, lighter, and we will serve thee.
15393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said unto them, Depart yet for three days, then come again to me. And the people departed.
15394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And king Rehoboam consulted with the old men, that stood before Solomon his father while he yet lived, and said, How do ye advise that I may answer this people?
15395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they spake unto him, saying, If thou wilt be a servant unto this people this day, and wilt serve them, and answer them, and speak good words to them, then they will be thy servants for ever.
15396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But he forsook the counsel of the old men, which they had given him, and consulted with the young men that were grown up with him, and which stood before him:
15397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said unto them, What counsel give ye that we may answer this people, who have spoken to me, saying, Make the yoke which thy father did put upon us lighter?
15398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the young men that were grown up with him spake unto him, saying, Thus shalt thou speak unto this people that spake unto thee, saying, Thy father made our yoke heavy, but make thou it lighter unto us; thus shalt thou say unto them, My little finger shall be thicker than my father's loins.
15399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And now whereas my father did lade you with a heavy yoke, I will add to your yoke: my father hath chastised you with whips, but I will chastise you with scorpions.
15400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Jeroboam and all the people came to Rehoboam the third day, as the king had appointed, saying, Come to me again the third day.
15401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king answered the people roughly, and forsook the old men's counsel that they gave him;
15402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And spake to them after the counsel of the young men, saying, My father made your yoke heavy, and I will add to your yoke: my father also chastised you with whips, but I will chastise you with scorpions.
15403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Wherefore the king hearkened not unto the people; for the cause was from the LORD, that he might perform his saying, which the LORD spake by Ahijah the Shilonite unto Jeroboam the son of Nebat.
15404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So when all Israel saw that the king hearkened not unto them, the people answered the king, saying, What portion have we in David? neither have we inheritance in the son of Jesse: to your tents, O Israel: now see to thine own house, David. So Israel departed unto their tents.
15405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But as for the children of Israel which dwelt in the cities of Judah, Rehoboam reigned over them.
15406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then king Rehoboam sent Adoram, who was over the tribute; and all Israel stoned him with stones, that he died. Therefore king Rehoboam made speed to get him up to his chariot, to flee to Jerusalem.
15407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So Israel rebelled against the house of David unto this day.
15408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, when all Israel heard that Jeroboam was come again, that they sent and called him unto the congregation, and made him king over all Israel: there was none that followed the house of David, but the tribe of Judah only.
15409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And when Rehoboam was come to Jerusalem, he assembled all the house of Judah, with the tribe of Benjamin, an hundred and fourscore thousand chosen men, which were warriors, to fight against the house of Israel, to bring the kingdom again to Rehoboam the son of Solomon.
15410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But the word of God came unto Shemaiah the man of God, saying,
15411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Speak unto Rehoboam, the son of Solomon, king of Judah, and unto all the house of Judah and Benjamin, and to the remnant of the people, saying,
15412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thus saith the LORD, Ye shall not go up, nor fight against your brethren the children of Israel: return every man to his house; for this thing is from me. They hearkened therefore to the word of the LORD, and returned to depart, according to the word of the LORD.
15413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Jeroboam built Shechem in mount Ephraim, and dwelt therein; and went out from thence, and built Penuel.
15414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jeroboam said in his heart, Now shall the kingdom return to the house of David:
15415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 If this people go up to do sacrifice in the house of the LORD at Jerusalem, then shall the heart of this people turn again unto their lord, even unto Rehoboam king of Judah, and they shall kill me, and go again to Rehoboam king of Judah.
15416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whereupon the king took counsel, and made two calves of gold, and said unto them, It is too much for you to go up to Jerusalem: behold thy gods, O Israel, which brought thee up out of the land of Egypt.
15417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he set the one in Bethel, and the other put he in Dan.
15418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And this thing became a sin: for the people went to worship before the one, even unto Dan.
15419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he made an house of high places, and made priests of the lowest of the people, which were not of the sons of Levi.
15420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jeroboam ordained a feast in the eighth month, on the fifteenth day of the month, like unto the feast that is in Judah, and he offered upon the altar. So did he in Bethel, sacrificing unto the calves that he had made: and he placed in Bethel the priests of the high places which he had made.
15421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So he offered upon the altar which he had made in Bethel the fifteenth day of the eighth month, even in the month which he had devised of his own heart; and ordained a feast unto the children of Israel: and he offered upon the altar, and burnt incense.
15422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And, behold, there came a man of God out of Judah by the word of the LORD unto Bethel: and Jeroboam stood by the altar to burn incense.
15423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he cried against the altar in the word of the LORD, and said, O altar, altar, thus saith the LORD; Behold, a child shall be born unto the house of David, Josiah by name; and upon thee shall he offer the priests of the high places that burn incense upon thee, and men's bones shall be burnt upon thee.
15424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he gave a sign the same day, saying, This is the sign which the LORD hath spoken; Behold, the altar shall be rent, and the ashes that are upon it shall be poured out.
15425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, when king Jeroboam heard the saying of the man of God, which had cried against the altar in Bethel, that he put forth his hand from the altar, saying, Lay hold on him. And his hand, which he put forth against him, dried up, so that he could not pull it in again to him.
15426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The altar also was rent, and the ashes poured out from the altar, according to the sign which the man of God had given by the word of the LORD.
15427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king answered and said unto the man of God, Entreat now the face of the LORD thy God, and pray for me, that my hand may be restored me again. And the man of God besought the LORD, and the king's hand was restored him again, and became as it was before.
15428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king said unto the man of God, Come home with me, and refresh thyself, and I will give thee a reward.
15429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the man of God said unto the king, If thou wilt give me half thine house, I will not go in with thee, neither will I eat bread nor drink water in this place:
15430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For so was it charged me by the word of the LORD, saying, Eat no bread, nor drink water, nor turn again by the same way that thou camest.
15431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So he went another way, and returned not by the way that he came to Bethel.
15432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now there dwelt an old prophet in Bethel; and his sons came and told him all the works that the man of God had done that day in Bethel: the words which he had spoken unto the king, them they told also to their father.
15433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And their father said unto them, What way went he? For his sons had seen what way the man of God went, which came from Judah.
15434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said unto his sons, Saddle me the ass. So they saddled him the ass: and he rode thereon,
15435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And went after the man of God, and found him sitting under an oak: and he said unto him, Art thou the man of God that camest from Judah? And he said, I am.
15436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then he said unto him, Come home with me, and eat bread.
15437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, I may not return with thee, nor go in with thee: neither will I eat bread nor drink water with thee in this place:
15438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For it was said to me by the word of the LORD, Thou shalt eat no bread nor drink water there, nor turn again to go by the way that thou camest.
15439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        He said unto him, I am a prophet also as thou art; and an angel spake unto me by the word of the LORD, saying, Bring him back with thee into thine house, that he may eat bread and drink water. But he lied unto him.
15440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So he went back with him, and did eat bread in his house, and drank water.
15441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as they sat at the table, that the word of the LORD came unto the prophet that brought him back:
15442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he cried unto the man of God that came from Judah, saying, Thus saith the LORD, Forasmuch as thou hast disobeyed the mouth of the LORD, and hast not kept the commandment which the LORD thy God commanded thee,
15443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But camest back, and hast eaten bread and drunk water in the place, of the which the Lord did say to thee, Eat no bread, and drink no water; thy carcass shall not come unto the sepulchre of thy fathers.
15444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, after he had eaten bread, and after he had drunk, that he saddled for him the ass, to wit, for the prophet whom he had brought back.
15445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when he was gone, a lion met him by the way, and slew him: and his carcass was cast in the way, and the ass stood by it, the lion also stood by the carcass.
15446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And, behold, men passed by, and saw the carcass cast in the way, and the lion standing by the carcass: and they came and told it in the city where the old prophet dwelt.
15447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when the prophet that brought him back from the way heard thereof, he said, It is the man of God, who was disobedient unto the word of the LORD: therefore the LORD hath delivered him unto the lion, which hath torn him, and slain him, according to the word of the LORD, which he spake unto him.
15448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he spake to his sons, saying, Saddle me the ass. And they saddled him.
15449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he went and found his carcass cast in the way, and the ass and the lion standing by the carcass: the lion had not eaten the carcass, nor torn the ass.
15450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the prophet took up the carcass of the man of God, and laid it upon the ass, and brought it back: and the old prophet came to the city, to mourn and to bury him.
15451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he laid his carcass in his own grave; and they mourned over him, saying, Alas, my brother!
15452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, after he had buried him, that he spake to his sons, saying, When I am dead, then bury me in the sepulchre wherein the man of God is buried; lay my bones beside his bones:
15453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               For the saying which he cried by the word of the LORD against the altar in Bethel, and against all the houses of the high places which are in the cities of Samaria, shall surely come to pass.
15454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    After this thing Jeroboam returned not from his evil way, but made again of the lowest of the people priests of the high places: whosoever would, he consecrated him, and he became one of the priests of the high places.
15455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And this thing became sin unto the house of Jeroboam, even to cut it off, and to destroy it from off the face of the earth.
15456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            At that time Abijah the son of Jeroboam fell sick.
15457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jeroboam said to his wife, Arise, I pray thee, and disguise thyself, that thou be not known to be the wife of Jeroboam; and get thee to Shiloh: behold, there is Ahijah the prophet, which told me that I should be king over this people.
15458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And take with thee ten loaves, and cracknels, and a cruse of honey, and go to him: he shall tell thee what shall become of the child.
15459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Jeroboam's wife did so, and arose, and went to Shiloh, and came to the house of Ahijah. But Ahijah could not see; for his eyes were set by reason of his age.
15460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the LORD said unto Ahijah, Behold, the wife of Jeroboam cometh to ask a thing of thee for her son; for he is sick: thus and thus shalt thou say unto her: for it shall be, when she cometh in, that she shall feign herself to be another woman.
15461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it was so, when Ahijah heard the sound of her feet, as she came in at the door, that he said, Come in, thou wife of Jeroboam; why feignest thou thyself to be another? for I am sent to thee with heavy tidings.
15462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Go, tell Jeroboam, Thus saith the LORD God of Israel, Forasmuch as I exalted thee from among the people, and made thee prince over my people Israel,
15463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And rent the kingdom away from the house of David, and gave it thee: and yet thou hast not been as my servant David, who kept my commandments, and who followed me with all his heart, to do that only which was right in mine eyes;
15464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But hast done evil above all that were before thee: for thou hast gone and made thee other gods, and molten images, to provoke me to anger, and hast cast me behind thy back:
15465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Therefore, behold, I will bring evil upon the house of Jeroboam, and will cut off from Jeroboam him that pisseth against the wall, and him that is shut up and left in Israel, and will take away the remnant of the house of Jeroboam, as a man taketh away dung, till it be all gone.
15466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Him that dieth of Jeroboam in the city shall the dogs eat; and him that dieth in the field shall the fowls of the air eat: for the LORD hath spoken it.
15467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Arise thou therefore, get thee to thine own house: and when thy feet enter into the city, the child shall die.
15468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And all Israel shall mourn for him, and bury him: for he only of Jeroboam shall come to the grave, because in him there is found some good thing toward the LORD God of Israel in the house of Jeroboam.
15469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Moreover the LORD shall raise him up a king over Israel, who shall cut off the house of Jeroboam that day: but what? even now.
15470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the LORD shall smite Israel, as a reed is shaken in the water, and he shall root up Israel out of this good land, which he gave to their fathers, and shall scatter them beyond the river, because they have made their groves, provoking the LORD to anger.
15471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he shall give Israel up because of the sins of Jeroboam, who did sin, and who made Israel to sin.
15472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jeroboam's wife arose, and departed, and came to Tirzah: and when she came to the threshold of the door, the child died;
15473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they buried him; and all Israel mourned for him, according to the word of the LORD, which he spake by the hand of his servant Ahijah the prophet.
15474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the rest of the acts of Jeroboam, how he warred, and how he reigned, behold, they are written in the book of the chronicles of the kings of Israel.
15475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the days which Jeroboam reigned were two and twenty years: and he slept with his fathers, and Nadab his son reigned in his stead.
15476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Rehoboam the son of Solomon reigned in Judah. Rehoboam was forty and one years old when he began to reign, and he reigned seventeen years in Jerusalem, the city which the LORD did choose out of all the tribes of Israel, to put his name there. And his mother's name was Naamah an Ammonitess.
15477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Judah did evil in the sight of the LORD, and they provoked him to jealousy with their sins which they had committed, above all that their fathers had done.
15478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For they also built them high places, and images, and groves, on every high hill, and under every green tree.
15479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there were also sodomites in the land: and they did according to all the abominations of the nations which the LORD cast out before the children of Israel.
15480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass in the fifth year of king Rehoboam, that Shishak king of Egypt came up against Jerusalem:
15481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he took away the treasures of the house of the LORD, and the treasures of the king's house; he even took away all: and he took away all the shields of gold which Solomon had made.
15482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And king Rehoboam made in their stead brazen shields, and committed them unto the hands of the chief of the guard, which kept the door of the king's house.
15483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it was so, when the king went into the house of the LORD, that the guard bare them, and brought them back into the guard chamber.
15484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now the rest of the acts of Rehoboam, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
15485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And there was war between Rehoboam and Jeroboam all their days.
15486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Rehoboam slept with his fathers, and was buried with his fathers in the city of David. And his mother's name was Naamah an Ammonitess. And Abijam his son reigned in his stead.
15487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now in the eighteenth year of king Jeroboam the son of Nebat reigned Abijam over Judah.
15488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Three years reigned he in Jerusalem. and his mother's name was Maachah, the daughter of Abishalom.
15489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he walked in all the sins of his father, which he had done before him: and his heart was not perfect with the LORD his God, as the heart of David his father.
15490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Nevertheless for David's sake did the LORD his God give him a lamp in Jerusalem, to set up his son after him, and to establish Jerusalem:
15491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Because David did that which was right in the eyes of the LORD, and turned not aside from any thing that he commanded him all the days of his life, save only in the matter of Uriah the Hittite.
15492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there was war between Rehoboam and Jeroboam all the days of his life.
15493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now the rest of the acts of Abijam, and all that he did, are they not written in the book of the chronicles of the kings of Judah? And there was war between Abijam and Jeroboam.
15494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Abijam slept with his fathers; and they buried him in the city of David: and Asa his son reigned in his stead.
15495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And in the twentieth year of Jeroboam king of Israel reigned Asa over Judah.
15496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And forty and one years reigned he in Jerusalem. And his mother's name was Maachah, the daughter of Abishalom.
15497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Asa did that which was right in the eyes of the LORD, as did David his father.
15498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he took away the sodomites out of the land, and removed all the idols that his fathers had made.
15499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And also Maachah his mother, even her he removed from being queen, because she had made an idol in a grove; and Asa destroyed her idol, and burnt it by the brook Kidron.
15500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But the high places were not removed: nevertheless Asa's heart was perfect with the LORD all his days.
15501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he brought in the things which his father had dedicated, and the things which himself had dedicated, into the house of the LORD, silver, and gold, and vessels.
15502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there was war between Asa and Baasha king of Israel all their days.
15503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Baasha king of Israel went up against Judah, and built Ramah, that he might not suffer any to go out or come in to Asa king of Judah.
15504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Asa took all the silver and the gold that were left in the treasures of the house of the LORD, and the treasures of the king's house, and delivered them into the hand of his servants: and king Asa sent them to Benhadad, the son of Tabrimon, the son of Hezion, king of Syria, that dwelt at Damascus, saying,
15505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    There is a league between me and thee, and between my father and thy father: behold, I have sent unto thee a present of silver and gold; come and break thy league with Baasha king of Israel, that he may depart from me.
15506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Benhadad hearkened unto king Asa, and sent the captains of the hosts which he had against the cities of Israel, and smote Ijon, and Dan, and Abelbethmaachah, and all Cinneroth, with all the land of Naphtali.
15507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when Baasha heard thereof, that he left off building of Ramah, and dwelt in Tirzah.
15508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then king Asa made a proclamation throughout all Judah; none was exempted: and they took away the stones of Ramah, and the timber thereof, wherewith Baasha had builded; and king Asa built with them Geba of Benjamin, and Mizpah.
15509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The rest of all the acts of Asa, and all his might, and all that he did, and the cities which he built, are they not written in the book of the chronicles of the kings of Judah? Nevertheless in the time of his old age he was diseased in his feet.
15510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Asa slept with his fathers, and was buried with his fathers in the city of David his father: and Jehoshaphat his son reigned in his stead.
15511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Nadab the son of Jeroboam began to reign over Israel in the second year of Asa king of Judah, and reigned over Israel two years.
15512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he did evil in the sight of the LORD, and walked in the way of his father, and in his sin wherewith he made Israel to sin.
15513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Baasha the son of Ahijah, of the house of Issachar, conspired against him; and Baasha smote him at Gibbethon, which belonged to the Philistines; for Nadab and all Israel laid siege to Gibbethon.
15514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Even in the third year of Asa king of Judah did Baasha slay him, and reigned in his stead.
15515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when he reigned, that he smote all the house of Jeroboam; he left not to Jeroboam any that breathed, until he had destroyed him, according unto the saying of the LORD, which he spake by his servant Ahijah the Shilonite:
15516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Because of the sins of Jeroboam which he sinned, and which he made Israel sin, by his provocation wherewith he provoked the LORD God of Israel to anger.
15517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now the rest of the acts of Nadab, and all that he did, are they not written in the book of the chronicles of the kings of Israel?
15518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there was war between Asa and Baasha king of Israel all their days.
15519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the third year of Asa king of Judah began Baasha the son of Ahijah to reign over all Israel in Tirzah, twenty and four years.
15520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he did evil in the sight of the LORD, and walked in the way of Jeroboam, and in his sin wherewith he made Israel to sin.
15521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then the word of the LORD came to Jehu the son of Hanani against Baasha, saying,
15522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Forasmuch as I exalted thee out of the dust, and made thee prince over my people Israel; and thou hast walked in the way of Jeroboam, and hast made my people Israel to sin, to provoke me to anger with their sins;
15523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Behold, I will take away the posterity of Baasha, and the posterity of his house; and will make thy house like the house of Jeroboam the son of Nebat.
15524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Him that dieth of Baasha in the city shall the dogs eat; and him that dieth of his in the fields shall the fowls of the air eat.
15525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now the rest of the acts of Baasha, and what he did, and his might, are they not written in the book of the chronicles of the kings of Israel?
15526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Baasha slept with his fathers, and was buried in Tirzah: and Elah his son reigned in his stead.
15527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And also by the hand of the prophet Jehu the son of Hanani came the word of the LORD against Baasha, and against his house, even for all the evil that he did in the sight of the LORD, in provoking him to anger with the work of his hands, in being like the house of Jeroboam; and because he killed him.
15528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the twenty and sixth year of Asa king of Judah began Elah the son of Baasha to reign over Israel in Tirzah, two years.
15529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And his servant Zimri, captain of half his chariots, conspired against him, as he was in Tirzah, drinking himself drunk in the house of Arza steward of his house in Tirzah.
15530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Zimri went in and smote him, and killed him, in the twenty and seventh year of Asa king of Judah, and reigned in his stead.
15531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass, when he began to reign, as soon as he sat on his throne, that he slew all the house of Baasha: he left him not one that pisseth against a wall, neither of his kinsfolk, nor of his friends.
15532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Thus did Zimri destroy all the house of Baasha, according to the word of the LORD, which he spake against Baasha by Jehu the prophet.
15533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For all the sins of Baasha, and the sins of Elah his son, by which they sinned, and by which they made Israel to sin, in provoking the LORD God of Israel to anger with their vanities.
15534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Now the rest of the acts of Elah, and all that he did, are they not written in the book of the chronicles of the kings of Israel?
15535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  In the twenty and seventh year of Asa king of Judah did Zimri reign seven days in Tirzah. And the people were encamped against Gibbethon, which belonged to the Philistines.
15536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the people that were encamped heard say, Zimri hath conspired, and hath also slain the king: wherefore all Israel made Omri, the captain of the host, king over Israel that day in the camp.
15537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Omri went up from Gibbethon, and all Israel with him, and they besieged Tirzah.
15538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when Zimri saw that the city was taken, that he went into the palace of the king's house, and burnt the king's house over him with fire, and died.
15539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For his sins which he sinned in doing evil in the sight of the LORD, in walking in the way of Jeroboam, and in his sin which he did, to make Israel to sin.
15540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now the rest of the acts of Zimri, and his treason that he wrought, are they not written in the book of the chronicles of the kings of Israel?
15541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then were the people of Israel divided into two parts: half of the people followed Tibni the son of Ginath, to make him king; and half followed Omri.
15542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But the people that followed Omri prevailed against the people that followed Tibni the son of Ginath: so Tibni died, and Omri reigned.
15543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the thirty and first year of Asa king of Judah began Omri to reign over Israel, twelve years: six years reigned he in Tirzah.
15544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he bought the hill Samaria of Shemer for two talents of silver, and built on the hill, and called the name of the city which he built, after the name of Shemer, owner of the hill, Samaria.
15545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Omri wrought evil in the eyes of the LORD, and did worse than all that were before him.
15546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For he walked in all the way of Jeroboam the son of Nebat, and in his sin wherewith he made Israel to sin, to provoke the LORD God of Israel to anger with their vanities.
15547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the rest of the acts of Omri which he did, and his might that he showed, are they not written in the book of the chronicles of the kings of Israel?
15548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Omri slept with his fathers, and was buried in Samaria: and Ahab his son reigned in his stead.
15549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And in the thirty and eighth year of Asa king of Judah began Ahab the son of Omri to reign over Israel: and Ahab the son of Omri reigned over Israel in Samaria twenty and two years.
15550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Ahab the son of Omri did evil in the sight of the LORD above all that were before him.
15551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as if it had been a light thing for him to walk in the sins of Jeroboam the son of Nebat, that he took to wife Jezebel the daughter of Ethbaal king of the Zidonians, and went and served Baal, and worshipped him.
15552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he reared up an altar for Baal in the house of Baal, which he had built in Samaria.
15553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ahab made a grove; and Ahab did more to provoke the LORD God of Israel to anger than all the kings of Israel that were before him.
15554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In his days did Hiel the Bethelite build Jericho: he laid the foundation thereof in Abiram his firstborn, and set up the gates thereof in his youngest son Segub, according to the word of the LORD, which he spake by Joshua the son of Nun.
15555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Elijah the Tishbite, who was of the inhabitants of Gilead, said unto Ahab, As the LORD God of Israel liveth, before whom I stand, there shall not be dew nor rain these years, but according to my word.
15556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the word of the LORD came unto him, saying,
15557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Get thee hence, and turn thee eastward, and hide thyself by the brook Cherith, that is before Jordan.
15558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it shall be, that thou shalt drink of the brook; and I have commanded the ravens to feed thee there.
15559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So he went and did according unto the word of the LORD: for he went and dwelt by the brook Cherith, that is before Jordan.
15560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the ravens brought him bread and flesh in the morning, and bread and flesh in the evening; and he drank of the brook.
15561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass after a while, that the brook dried up, because there had been no rain in the land.
15562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the word of the LORD came unto him, saying,
15563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arise, get thee to Zarephath, which belongeth to Zidon, and dwell there: behold, I have commanded a widow woman there to sustain thee.
15564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So he arose and went to Zarephath. And when he came to the gate of the city, behold, the widow woman was there gathering of sticks: and he called to her, and said, Fetch me, I pray thee, a little water in a vessel, that I may drink.
15565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as she was going to fetch it, he called to her, and said, Bring me, I pray thee, a morsel of bread in thine hand.
15566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And she said, As the LORD thy God liveth, I have not a cake, but an handful of meal in a barrel, and a little oil in a cruse: and, behold, I am gathering two sticks, that I may go in and dress it for me and my son, that we may eat it, and die.
15567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Elijah said unto her, Fear not; go and do as thou hast said: but make me thereof a little cake first, and bring it unto me, and after make for thee and for thy son.
15568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For thus saith the LORD God of Israel, The barrel of meal shall not waste, neither shall the cruse of oil fail, until the day that the LORD sendeth rain upon the earth.
15569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And she went and did according to the saying of Elijah: and she, and he, and her house, did eat many days.
15570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the barrel of meal wasted not, neither did the cruse of oil fail, according to the word of the LORD, which he spake by Elijah.
15571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass after these things, that the son of the woman, the mistress of the house, fell sick; and his sickness was so sore, that there was no breath left in him.
15572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And she said unto Elijah, What have I to do with thee, O thou man of God? art thou come unto me to call my sin to remembrance, and to slay my son?
15573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto her, Give me thy son. And he took him out of her bosom, and carried him up into a loft, where he abode, and laid him upon his own bed.
15574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he cried unto the LORD, and said, O LORD my God, hast thou also brought evil upon the widow with whom I sojourn, by slaying her son?
15575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he stretched himself upon the child three times, and cried unto the LORD, and said, O LORD my God, I pray thee, let this child's soul come into him again.
15576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the LORD heard the voice of Elijah; and the soul of the child came into him again, and he revived.
15577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Elijah took the child, and brought him down out of the chamber into the house, and delivered him unto his mother: and Elijah said, See, thy son liveth.
15578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the woman said to Elijah, Now by this I know that thou art a man of God, and that the word of the LORD in thy mouth is truth.
15579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass after many days, that the word of the LORD came to Elijah in the third year, saying, Go, show thyself unto Ahab; and I will send rain upon the earth.
15580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Elijah went to show himself unto Ahab. And there was a sore famine in Samaria.
15581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Ahab called Obadiah, which was the governor of his house. (Now Obadiah feared the LORD greatly:
15582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For it was so, when Jezebel cut off the prophets of the LORD, that Obadiah took an hundred prophets, and hid them by fifty in a cave, and fed them with bread and water.)
15583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Ahab said unto Obadiah, Go into the land, unto all fountains of water, and unto all brooks: peradventure we may find grass to save the horses and mules alive, that we lose not all the beasts.
15584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So they divided the land between them to pass throughout it: Ahab went one way by himself, and Obadiah went another way by himself.
15585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as Obadiah was in the way, behold, Elijah met him: and he knew him, and fell on his face, and said, Art thou that my lord Elijah?
15586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he answered him, I am: go, tell thy lord, Behold, Elijah is here.
15587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, What have I sinned, that thou wouldest deliver thy servant into the hand of Ahab, to slay me?
15588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As the LORD thy God liveth, there is no nation or kingdom, whither my lord hath not sent to seek thee: and when they said, He is not there; he took an oath of the kingdom and nation, that they found thee not.
15589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And now thou sayest, Go, tell thy lord, Behold, Elijah is here.
15590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it shall come to pass, as soon as I am gone from thee, that the Spirit of the LORD shall carry thee whither I know not; and so when I come and tell Ahab, and he cannot find thee, he shall slay me: but I thy servant fear the LORD from my youth.
15591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Was it not told my lord what I did when Jezebel slew the prophets of the LORD, how I hid an hundred men of the LORD's prophets by fifty in a cave, and fed them with bread and water?
15592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And now thou sayest, Go, tell thy lord, Behold, Elijah is here: and he shall slay me.
15593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Elijah said, As the LORD of hosts liveth, before whom I stand, I will surely show myself unto him to day.
15594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Obadiah went to meet Ahab, and told him: and Ahab went to meet Elijah.
15595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when Ahab saw Elijah, that Ahab said unto him, Art thou he that troubleth Israel?
15596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he answered, I have not troubled Israel; but thou, and thy father's house, in that ye have forsaken the commandments of the LORD, and thou hast followed Baalim.
15597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore send, and gather to me all Israel unto mount Carmel, and the prophets of Baal four hundred and fifty, and the prophets of the groves four hundred, which eat at Jezebel's table.
15598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           So Ahab sent unto all the children of Israel, and gathered the prophets together unto mount Carmel.
15599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Elijah came unto all the people, and said, How long halt ye between two opinions? if the LORD be God, follow him: but if Baal, then follow him. And the people answered him not a word.
15600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then said Elijah unto the people, I, even I only, remain a prophet of the LORD; but Baal's prophets are four hundred and fifty men.
15601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Let them therefore give us two bullocks; and let them choose one bullock for themselves, and cut it in pieces, and lay it on wood, and put no fire under: and I will dress the other bullock, and lay it on wood, and put no fire under:
15602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And call ye on the name of your gods, and I will call on the name of the LORD: and the God that answereth by fire, let him be God. And all the people answered and said, It is well spoken.
15603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Elijah said unto the prophets of Baal, Choose you one bullock for yourselves, and dress it first; for ye are many; and call on the name of your gods, but put no fire under.
15604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And they took the bullock which was given them, and they dressed it, and called on the name of Baal from morning even until noon, saying, O Baal, hear us. But there was no voice, nor any that answered. And they leaped upon the altar which was made.
15605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And it came to pass at noon, that Elijah mocked them, and said, Cry aloud: for he is a god; either he is talking, or he is pursuing, or he is in a journey, or peradventure he sleepeth, and must be awaked.
15606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they cried aloud, and cut themselves after their manner with knives and lancets, till the blood gushed out upon them.
15607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when midday was past, and they prophesied until the time of the offering of the evening sacrifice, that there was neither voice, nor any to answer, nor any that regarded.
15608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Elijah said unto all the people, Come near unto me. And all the people came near unto him. And he repaired the altar of the LORD that was broken down.
15609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Elijah took twelve stones, according to the number of the tribes of the sons of Jacob, unto whom the word of the LORD came, saying, Israel shall be thy name:
15610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And with the stones he built an altar in the name of the LORD: and he made a trench about the altar, as great as would contain two measures of seed.
15611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he put the wood in order, and cut the bullock in pieces, and laid him on the wood, and said, Fill four barrels with water, and pour it on the burnt sacrifice, and on the wood.
15612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Do it the second time. And they did it the second time. And he said, Do it the third time. And they did it the third time.
15613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the water ran round about the altar; and he filled the trench also with water.
15614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass at the time of the offering of the evening sacrifice, that Elijah the prophet came near, and said, LORD God of Abraham, Isaac, and of Israel, let it be known this day that thou art God in Israel, and that I am thy servant, and that I have done all these things at thy word.
15615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hear me, O LORD, hear me, that this people may know that thou art the LORD God, and that thou hast turned their heart back again.
15616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Then the fire of the LORD fell, and consumed the burnt sacrifice, and the wood, and the stones, and the dust, and licked up the water that was in the trench.
15617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when all the people saw it, they fell on their faces: and they said, The LORD, he is the God; the LORD, he is the God.
15618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Elijah said unto them, Take the prophets of Baal; let not one of them escape. And they took them: and Elijah brought them down to the brook Kishon, and slew them there.
15619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Elijah said unto Ahab, Get thee up, eat and drink; for there is a sound of abundance of rain.
15620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Ahab went up to eat and to drink. And Elijah went up to the top of Carmel; and he cast himself down upon the earth, and put his face between his knees,
15621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And said to his servant, Go up now, look toward the sea. And he went up, and looked, and said, There is nothing. And he said, Go again seven times.
15622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass at the seventh time, that he said, Behold, there ariseth a little cloud out of the sea, like a man's hand. And he said, Go up, say unto Ahab, Prepare thy chariot, and get thee down that the rain stop thee not.
15623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass in the mean while, that the heaven was black with clouds and wind, and there was a great rain. And Ahab rode, and went to Jezreel.
15624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the hand of the LORD was on Elijah; and he girded up his loins, and ran before Ahab to the entrance of Jezreel.
15625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Ahab told Jezebel all that Elijah had done, and withal how he had slain all the prophets with the sword.
15626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then Jezebel sent a messenger unto Elijah, saying, So let the gods do to me, and more also, if I make not thy life as the life of one of them by to morrow about this time.
15627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when he saw that, he arose, and went for his life, and came to Beersheba, which belongeth to Judah, and left his servant there.
15628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But he himself went a day's journey into the wilderness, and came and sat down under a juniper tree: and he requested for himself that he might die; and said, It is enough; now, O LORD, take away my life; for I am not better than my fathers.
15629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And as he lay and slept under a juniper tree, behold, then an angel touched him, and said unto him, Arise and eat.
15630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he looked, and, behold, there was a cake baken on the coals, and a cruse of water at his head. And he did eat and drink, and laid him down again.
15631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the angel of the LORD came again the second time, and touched him, and said, Arise and eat; because the journey is too great for thee.
15632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he arose, and did eat and drink, and went in the strength of that meat forty days and forty nights unto Horeb the mount of God.
15633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he came thither unto a cave, and lodged there; and, behold, the word of the LORD came to him, and he said unto him, What doest thou here, Elijah?
15634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said, I have been very jealous for the LORD God of hosts: for the children of Israel have forsaken thy covenant, thrown down thine altars, and slain thy prophets with the sword; and I, even I only, am left; and they seek my life, to take it away.
15635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Go forth, and stand upon the mount before the LORD. And, behold, the LORD passed by, and a great and strong wind rent the mountains, and brake in pieces the rocks before the LORD; but the LORD was not in the wind: and after the wind an earthquake; but the LORD was not in the earthquake:
15636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And after the earthquake a fire; but the LORD was not in the fire: and after the fire a still small voice.
15637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it was so, when Elijah heard it, that he wrapped his face in his mantle, and went out, and stood in the entering in of the cave. And, behold, there came a voice unto him, and said, What doest thou here, Elijah?
15638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he said, I have been very jealous for the LORD God of hosts: because the children of Israel have forsaken thy covenant, thrown down thine altars, and slain thy prophets with the sword; and I, even I only, am left; and they seek my life, to take it away.
15639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the LORD said unto him, Go, return on thy way to the wilderness of Damascus: and when thou comest, anoint Hazael to be king over Syria:
15640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Jehu the son of Nimshi shalt thou anoint to be king over Israel: and Elisha the son of Shaphat of Abelmeholah shalt thou anoint to be prophet in thy room.
15641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it shall come to pass, that him that escapeth the sword of Hazael shall Jehu slay: and him that escapeth from the sword of Jehu shall Elisha slay.
15642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet I have left me seven thousand in Israel, all the knees which have not bowed unto Baal, and every mouth which hath not kissed him.
15643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So he departed thence, and found Elisha the son of Shaphat, who was plowing with twelve yoke of oxen before him, and he with the twelfth: and Elijah passed by him, and cast his mantle upon him.
15644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he left the oxen, and ran after Elijah, and said, Let me, I pray thee, kiss my father and my mother, and then I will follow thee. And he said unto him, Go back again: for what have I done to thee?
15645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he returned back from him, and took a yoke of oxen, and slew them, and boiled their flesh with the instruments of the oxen, and gave unto the people, and they did eat. Then he arose, and went after Elijah, and ministered unto him.
15646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Benhadad the king of Syria gathered all his host together: and there were thirty and two kings with him, and horses, and chariots; and he went up and besieged Samaria, and warred against it.
15647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he sent messengers to Ahab king of Israel into the city, and said unto him, Thus saith Benhadad,
15648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Thy silver and thy gold is mine; thy wives also and thy children, even the goodliest, are mine.
15649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king of Israel answered and said, My lord, O king, according to thy saying, I am thine, and all that I have.
15650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the messengers came again, and said, Thus speaketh Benhadad, saying, Although I have sent unto thee, saying, Thou shalt deliver me thy silver, and thy gold, and thy wives, and thy children;
15651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Yet I will send my servants unto thee to morrow about this time, and they shall search thine house, and the houses of thy servants; and it shall be, that whatsoever is pleasant in thine eyes, they shall put it in their hand, and take it away.
15652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the king of Israel called all the elders of the land, and said, Mark, I pray you, and see how this man seeketh mischief: for he sent unto me for my wives, and for my children, and for my silver, and for my gold; and I denied him not.
15653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the elders and all the people said unto him, Hearken not unto him, nor consent.
15654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Wherefore he said unto the messengers of Benhadad, Tell my lord the king, All that thou didst send for to thy servant at the first I will do: but this thing I may not do. And the messengers departed, and brought him word again.
15655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Benhadad sent unto him, and said, The gods do so unto me, and more also, if the dust of Samaria shall suffice for handfuls for all the people that follow me.
15656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king of Israel answered and said, Tell him, Let not him that girdeth on his harness boast himself as he that putteth it off.
15657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when Ben-hadad heard this message, as he was drinking, he and the kings in the pavilions, that he said unto his servants, Set yourselves in array. And they set themselves in array against the city.
15658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And, behold, there came a prophet unto Ahab king of Israel, saying, Thus saith the LORD, Hast thou seen all this great multitude? behold, I will deliver it into thine hand this day; and thou shalt know that I am the LORD.
15659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Ahab said, By whom? And he said, Thus saith the LORD, Even by the young men of the princes of the provinces. Then he said, Who shall order the battle? And he answered, Thou.
15660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then he numbered the young men of the princes of the provinces, and they were two hundred and thirty two: and after them he numbered all the people, even all the children of Israel, being seven thousand.
15661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they went out at noon. But Benhadad was drinking himself drunk in the pavilions, he and the kings, the thirty and two kings that helped him.
15662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the young men of the princes of the provinces went out first; and Benhadad sent out, and they told him, saying, There are men come out of Samaria.
15663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Whether they be come out for peace, take them alive; or whether they be come out for war, take them alive.
15664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So these young men of the princes of the provinces came out of the city, and the army which followed them.
15665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they slew every one his man: and the Syrians fled; and Israel pursued them: and Benhadad the king of Syria escaped on an horse with the horsemen.
15666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king of Israel went out, and smote the horses and chariots, and slew the Syrians with a great slaughter.
15667                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the prophet came to the king of Israel, and said unto him, Go, strengthen thyself, and mark, and see what thou doest: for at the return of the year the king of Syria will come up against thee.
15668                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the servants of the king of Syria said unto him, Their gods are gods of the hills; therefore they were stronger than we; but let us fight against them in the plain, and surely we shall be stronger than they.
15669                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And do this thing, Take the kings away, every man out of his place, and put captains in their rooms:
15670                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And number thee an army, like the army that thou hast lost, horse for horse, and chariot for chariot: and we will fight against them in the plain, and surely we shall be stronger than they. And he hearkened unto their voice, and did so.
15671                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass at the return of the year, that Benhadad numbered the Syrians, and went up to Aphek, to fight against Israel.
15672                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the children of Israel were numbered, and were all present, and went against them: and the children of Israel pitched before them like two little flocks of kids; but the Syrians filled the country.
15673                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there came a man of God, and spake unto the king of Israel, and said, Thus saith the LORD, Because the Syrians have said, The LORD is God of the hills, but he is not God of the valleys, therefore will I deliver all this great multitude into thine hand, and ye shall know that I am the LORD.
15674                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they pitched one over against the other seven days. And so it was, that in the seventh day the battle was joined: and the children of Israel slew of the Syrians an hundred thousand footmen in one day.
15675                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But the rest fled to Aphek, into the city; and there a wall fell upon twenty and seven thousand of the men that were left. And Benhadad fled, and came into the city, into an inner chamber.
15676                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And his servants said unto him, Behold now, we have heard that the kings of the house of Israel are merciful kings: let us, I pray thee, put sackcloth on our loins, and ropes upon our heads, and go out to the king of Israel: peradventure he will save thy life.
15677                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So they girded sackcloth on their loins, and put ropes on their heads, and came to the king of Israel, and said, Thy servant Benhadad saith, I pray thee, let me live. And he said, Is he yet alive? he is my brother.
15678                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now the men did diligently observe whether any thing would come from him, and did hastily catch it: and they said, Thy brother Benhadad. Then he said, Go ye, bring him. Then Benhadad came forth to him; and he caused him to come up into the chariot.
15679                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Ben-hadad said unto him, The cities, which my father took from thy father, I will restore; and thou shalt make streets for thee in Damascus, as my father made in Samaria. Then said Ahab, I will send thee away with this covenant. So he made a covenant with him, and sent him away.
15680                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And a certain man of the sons of the prophets said unto his neighbor in the word of the LORD, Smite me, I pray thee. And the man refused to smite him.
15681                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then said he unto him, Because thou hast not obeyed the voice of the LORD, behold, as soon as thou art departed from me, a lion shall slay thee. And as soon as he was departed from him, a lion found him, and slew him.
15682                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then he found another man, and said, Smite me, I pray thee. And the man smote him, so that in smiting he wounded him.
15683                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So the prophet departed, and waited for the king by the way, and disguised himself with ashes upon his face.
15684                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And as the king passed by, he cried unto the king: and he said, Thy servant went out into the midst of the battle; and, behold, a man turned aside, and brought a man unto me, and said, Keep this man: if by any means he be missing, then shall thy life be for his life, or else thou shalt pay a talent of silver.
15685                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And as thy servant was busy here and there, he was gone. And the king of Israel said unto him, So shall thy judgment be; thyself hast decided it.
15686                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he hasted, and took the ashes away from his face; and the king of Israel discerned him that he was of the prophets.
15687                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said unto him, Thus saith the LORD, Because thou hast let go out of thy hand a man whom I appointed to utter destruction, therefore thy life shall go for his life, and thy people for his people.
15688                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king of Israel went to his house heavy and displeased, and came to Samaria.
15689                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass after these things, that Naboth the Jezreelite had a vineyard, which was in Jezreel, hard by the palace of Ahab king of Samaria.
15690                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Ahab spake unto Naboth, saying, Give me thy vineyard, that I may have it for a garden of herbs, because it is near unto my house: and I will give thee for it a better vineyard than it; or, if it seem good to thee, I will give thee the worth of it in money.
15691                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Naboth said to Ahab, The LORD forbid it me, that I should give the inheritance of my fathers unto thee.
15692                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ahab came into his house heavy and displeased because of the word which Naboth the Jezreelite had spoken to him: for he had said, I will not give thee the inheritance of my fathers. And he laid him down upon his bed, and turned away his face, and would eat no bread.
15693                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But Jezebel his wife came to him, and said unto him, Why is thy spirit so sad, that thou eatest no bread?
15694                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto her, Because I spake unto Naboth the Jezreelite, and said unto him, Give me thy vineyard for money; or else, if it please thee, I will give thee another vineyard for it: and he answered, I will not give thee my vineyard.
15695                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jezebel his wife said unto him, Dost thou now govern the kingdom of Israel? arise, and eat bread, and let thine heart be merry: I will give thee the vineyard of Naboth the Jezreelite.
15696                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So she wrote letters in Ahab's name, and sealed them with his seal, and sent the letters unto the elders and to the nobles that were in his city, dwelling with Naboth.
15697                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And she wrote in the letters, saying, Proclaim a fast, and set Naboth on high among the people:
15698                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And set two men, sons of Belial, before him, to bear witness against him, saying, Thou didst blaspheme God and the king. And then carry him out, and stone him, that he may die.
15699                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the men of his city, even the elders and the nobles who were the inhabitants in his city, did as Jezebel had sent unto them, and as it was written in the letters which she had sent unto them.
15700                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              They proclaimed a fast, and set Naboth on high among the people.
15701                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there came in two men, children of Belial, and sat before him: and the men of Belial witnessed against him, even against Naboth, in the presence of the people, saying, Naboth did blaspheme God and the king. Then they carried him forth out of the city, and stoned him with stones, that he died.
15702                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then they sent to Jezebel, saying, Naboth is stoned, and is dead.
15703                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, when Jezebel heard that Naboth was stoned, and was dead, that Jezebel said to Ahab, Arise, take possession of the vineyard of Naboth the Jezreelite, which he refused to give thee for money: for Naboth is not alive, but dead.
15704                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when Ahab heard that Naboth was dead, that Ahab rose up to go down to the vineyard of Naboth the Jezreelite, to take possession of it.
15705                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the word of the LORD came to Elijah the Tishbite, saying,
15706                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arise, go down to meet Ahab king of Israel, which is in Samaria: behold, he is in the vineyard of Naboth, whither he is gone down to possess it.
15707                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And thou shalt speak unto him, saying, Thus saith the LORD, Hast thou killed, and also taken possession? And thou shalt speak unto him, saying, Thus saith the LORD, In the place where dogs licked the blood of Naboth shall dogs lick thy blood, even thine.
15708                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Ahab said to Elijah, Hast thou found me, O mine enemy? And he answered, I have found thee: because thou hast sold thyself to work evil in the sight of the LORD.
15709                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Behold, I will bring evil upon thee, and will take away thy posterity, and will cut off from Ahab him that pisseth against the wall, and him that is shut up and left in Israel,
15710                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And will make thine house like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah, for the provocation wherewith thou hast provoked me to anger, and made Israel to sin.
15711                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And of Jezebel also spake the LORD, saying, The dogs shall eat Jezebel by the wall of Jezreel.
15712                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Him that dieth of Ahab in the city the dogs shall eat; and him that dieth in the field shall the fowls of the air eat.
15713                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But there was none like unto Ahab, which did sell himself to work wickedness in the sight of the LORD, whom Jezebel his wife stirred up.
15714                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did very abominably in following idols, according to all things as did the Amorites, whom the LORD cast out before the children of Israel.
15715                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass, when Ahab heard those words, that he rent his clothes, and put sackcloth upon his flesh, and fasted, and lay in sackcloth, and went softly.
15716                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the word of the LORD came to Elijah the Tishbite, saying,
15717                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Seest thou how Ahab humbleth himself before me? because he humbleth himself before me, I will not bring the evil in his days: but in his son's days will I bring the evil upon his house.
15718                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And they continued three years without war between Syria and Israel.
15719                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass in the third year, that Jehoshaphat the king of Judah came down to the king of Israel.
15720                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the king of Israel said unto his servants, Know ye that Ramoth in Gilead is ours, and we be still, and take it not out of the hand of the king of Syria?
15721                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto Jehoshaphat, Wilt thou go with me to battle to Ramothgilead? And Jehoshaphat said to the king of Israel, I am as thou art, my people as thy people, my horses as thy horses.
15722                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jehoshaphat said unto the king of Israel, Enquire, I pray thee, at the word of the LORD to day.
15723                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then the king of Israel gathered the prophets together, about four hundred men, and said unto them, Shall I go against Ramothgilead to battle, or shall I forbear? And they said, Go up; for the LORD shall deliver it into the hand of the king.
15724                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jehoshaphat said, Is there not here a prophet of the LORD besides, that we might enquire of him?
15725                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king of Israel said unto Jehoshaphat, There is yet one man, Micaiah the son of Imlah, by whom we may enquire of the LORD: but I hate him; for he doth not prophesy good concerning me, but evil. And Jehoshaphat said, Let not the king say so.
15726                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then the king of Israel called an officer, and said, Hasten hither Micaiah the son of Imlah.
15727                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king of Israel and Jehoshaphat the king of Judah sat each on his throne, having put on their robes, in a void place in the entrance of the gate of Samaria; and all the prophets prophesied before them.
15728                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Zedekiah the son of Chenaanah made him horns of iron: and he said, Thus saith the LORD, With these shalt thou push the Syrians, until thou have consumed them.
15729                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the prophets prophesied so, saying, Go up to Ramothgilead, and prosper: for the LORD shall deliver it into the king's hand.
15730                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the messenger that was gone to call Micaiah spake unto him, saying, Behold now, the words of the prophets declare good unto the king with one mouth: let thy word, I pray thee, be like the word of one of them, and speak that which is good.
15731                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Micaiah said, As the LORD liveth, what the LORD saith unto me, that will I speak.
15732                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So he came to the king. And the king said unto him, Micaiah, shall we go against Ramothgilead to battle, or shall we forbear? And he answered him, Go, and prosper: for the LORD shall deliver it into the hand of the king.
15733                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the king said unto him, How many times shall I adjure thee that thou tell me nothing but that which is true in the name of the LORD?
15734                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said, I saw all Israel scattered upon the hills, as sheep that have not a shepherd: and the LORD said, These have no master: let them return every man to his house in peace.
15735                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the king of Israel said unto Jehoshaphat, Did I not tell thee that he would prophesy no good concerning me, but evil?
15736                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said, Hear thou therefore the word of the LORD: I saw the LORD sitting on his throne, and all the host of heaven standing by him on his right hand and on his left.
15737                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the LORD said, Who shall persuade Ahab, that he may go up and fall at Ramothgilead? And one said on this manner, and another said on that manner.
15738                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And there came forth a spirit, and stood before the LORD, and said, I will persuade him.
15739                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the LORD said unto him, Wherewith? And he said, I will go forth, and I will be a lying spirit in the mouth of all his prophets. And he said, Thou shalt persuade him, and prevail also: go forth, and do so.
15740                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Now therefore, behold, the LORD hath put a lying spirit in the mouth of all these thy prophets, and the LORD hath spoken evil concerning thee.
15741                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But Zedekiah the son of Chenaanah went near, and smote Micaiah on the cheek, and said, Which way went the Spirit of the LORD from me to speak unto thee?
15742                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Micaiah said, Behold, thou shalt see in that day, when thou shalt go into an inner chamber to hide thyself.
15743                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the king of Israel said, Take Micaiah, and carry him back unto Amon the governor of the city, and to Joash the king's son;
15744                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And say, Thus saith the king, Put this fellow in the prison, and feed him with bread of affliction and with water of affliction, until I come in peace.
15745                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Micaiah said, If thou return at all in peace, the LORD hath not spoken by me. And he said, Hearken, O people, every one of you.
15746                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So the king of Israel and Jehoshaphat the king of Judah went up to Ramothgilead.
15747                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Israel said unto Jehoshaphat, I will disguise myself, and enter into the battle; but put thou on thy robes. And the king of Israel disguised himself, and went into the battle.
15748                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But the king of Syria commanded his thirty and two captains that had rule over his chariots, saying, Fight neither with small nor great, save only with the king of Israel.
15749                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass, when the captains of the chariots saw Jehoshaphat, that they said, Surely it is the king of Israel. And they turned aside to fight against him: and Jehoshaphat cried out.
15750                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass, when the captains of the chariots perceived that it was not the king of Israel, that they turned back from pursuing him.
15751                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And a certain man drew a bow at a venture, and smote the king of Israel between the joints of the harness: wherefore he said unto the driver of his chariot, Turn thine hand, and carry me out of the host; for I am wounded.
15752                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the battle increased that day: and the king was stayed up in his chariot against the Syrians, and died at even: and the blood ran out of the wound into the midst of the chariot.
15753                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And there went a proclamation throughout the host about the going down of the sun, saying, Every man to his city, and every man to his own country.
15754                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So the king died, and was brought to Samaria; and they buried the king in Samaria.
15755                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And one washed the chariot in the pool of Samaria; and the dogs licked up his blood; and they washed his armor; according unto the word of the LORD which he spake.
15756                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now the rest of the acts of Ahab, and all that he did, and the ivory house which he made, and all the cities that he built, are they not written in the book of the chronicles of the kings of Israel?
15757                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     So Ahab slept with his fathers; and Ahaziah his son reigned in his stead.
15758                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jehoshaphat the son of Asa began to reign over Judah in the fourth year of Ahab king of Israel.
15759                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Jehoshaphat was thirty and five years old when he began to reign; and he reigned twenty and five years in Jerusalem. And his mother's name was Azubah the daughter of Shilhi.
15760                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he walked in all the ways of Asa his father; he turned not aside from it, doing that which was right in the eyes of the LORD: nevertheless the high places were not taken away; for the people offered and burnt incense yet in the high places.
15761                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jehoshaphat made peace with the king of Israel.
15762                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now the rest of the acts of Jehoshaphat, and his might that he showed, and how he warred, are they not written in the book of the chronicles of the kings of Judah?
15763                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the remnant of the sodomites, which remained in the days of his father Asa, he took out of the land.
15764                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            There was then no king in Edom: a deputy was king.
15765                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Jehoshaphat made ships of Tharshish to go to Ophir for gold: but they went not; for the ships were broken at Eziongeber.
15766                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then said Ahaziah the son of Ahab unto Jehoshaphat, Let my servants go with thy servants in the ships. But Jehoshaphat would not.
15767                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David his father: and Jehoram his son reigned in his stead.
15768                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Ahaziah the son of Ahab began to reign over Israel in Samaria the seventeenth year of Jehoshaphat king of Judah, and reigned two years over Israel.
15769                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did evil in the sight of the LORD, and walked in the way of his father, and in the way of his mother, and in the way of Jeroboam the son of Nebat, who made Israel to sin:
15770                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For he served Baal, and worshipped him, and provoked to anger the LORD God of Israel, according to all that his father had done.
15771                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Then Moab rebelled against Israel after the death of Ahab.
15772                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ahaziah fell down through a lattice in his upper chamber that was in Samaria, and was sick: and he sent messengers, and said unto them, Go, enquire of Baalzebub the god of Ekron whether I shall recover of this disease.
15773                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the angel of the LORD said to Elijah the Tishbite, Arise, go up to meet the messengers of the king of Samaria, and say unto them, Is it not because there is not a God in Israel, that ye go to enquire of Baalzebub the god of Ekron?
15774                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Now therefore thus saith the LORD, Thou shalt not come down from that bed on which thou art gone up, but shalt surely die. And Elijah departed.
15775                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the messengers turned back unto him, he said unto them, Why are ye now turned back?
15776                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they said unto him, There came a man up to meet us, and said unto us, Go, turn again unto the king that sent you, and say unto him, Thus saith the LORD, Is it not because there is not a God in Israel, that thou sendest to enquire of Baalzebub the god of Ekron? therefore thou shalt not come down from that bed on which thou art gone up, but shalt surely die.
15777                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said unto them, What manner of man was he which came up to meet you, and told you these words?
15778                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they answered him, He was an hairy man, and girt with a girdle of leather about his loins. And he said, It is Elijah the Tishbite.
15779                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then the king sent unto him a captain of fifty with his fifty. And he went up to him: and, behold, he sat on the top of an hill. And he spake unto him, Thou man of God, the king hath said, Come down.
15780                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Elijah answered and said to the captain of fifty, If I be a man of God, then let fire come down from heaven, and consume thee and thy fifty. And there came down fire from heaven, and consumed him and his fifty.
15781                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Again also he sent unto him another captain of fifty with his fifty. And he answered and said unto him, O man of God, thus hath the king said, Come down quickly.
15782                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Elijah answered and said unto them, If I be a man of God, let fire come down from heaven, and consume thee and thy fifty. And the fire of God came down from heaven, and consumed him and his fifty.
15783                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he sent again a captain of the third fifty with his fifty. And the third captain of fifty went up, and came and fell on his knees before Elijah, and besought him, and said unto him, O man of God, I pray thee, let my life, and the life of these fifty thy servants, be precious in thy sight.
15784                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Behold, there came fire down from heaven, and burnt up the two captains of the former fifties with their fifties: therefore let my life now be precious in thy sight.
15785                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the angel of the LORD said unto Elijah, Go down with him: be not afraid of him. And he arose, and went down with him unto the king.
15786                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he said unto him, Thus saith the LORD, Forasmuch as thou hast sent messengers to enquire of Baalzebub the god of Ekron, is it not because there is no God in Israel to enquire of his word? therefore thou shalt not come down off that bed on which thou art gone up, but shalt surely die.
15787                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So he died according to the word of the LORD which Elijah had spoken. And Jehoram reigned in his stead in the second year of Jehoram the son of Jehoshaphat king of Judah; because he had no son.
15788                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now the rest of the acts of Ahaziah which he did, are they not written in the book of the chronicles of the kings of Israel?
15789                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass, when the LORD would take up Elijah into heaven by a whirlwind, that Elijah went with Elisha from Gilgal.
15790                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Elijah said unto Elisha, Tarry here, I pray thee; for the LORD hath sent me to Bethel. And Elisha said unto him, As the LORD liveth, and as thy soul liveth, I will not leave thee. So they went down to Bethel.
15791                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of the prophets that were at Bethel came forth to Elisha, and said unto him, Knowest thou that the LORD will take away thy master from thy head to day? And he said, Yea, I know it; hold ye your peace.
15792                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Elijah said unto him, Elisha, tarry here, I pray thee; for the LORD hath sent me to Jericho. And he said, As the LORD liveth, and as thy soul liveth, I will not leave thee. So they came to Jericho.
15793                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of the prophets that were at Jericho came to Elisha, and said unto him, Knowest thou that the LORD will take away thy master from thy head to day? And he answered, Yea, I know it; hold ye your peace.
15794                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Elijah said unto him, Tarry, I pray thee, here; for the LORD hath sent me to Jordan. And he said, As the LORD liveth, and as thy soul liveth, I will not leave thee. And they two went on.
15795                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And fifty men of the sons of the prophets went, and stood to view afar off: and they two stood by Jordan.
15796                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Elijah took his mantle, and wrapped it together, and smote the waters, and they were divided hither and thither, so that they two went over on dry ground.
15797                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when they were gone over, that Elijah said unto Elisha, Ask what I shall do for thee, before I be taken away from thee. And Elisha said, I pray thee, let a double portion of thy spirit be upon me.
15798                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Thou hast asked a hard thing: nevertheless, if thou see me when I am taken from thee, it shall be so unto thee; but if not, it shall not be so.
15799                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, as they still went on, and talked, that, behold, there appeared a chariot of fire, and horses of fire, and parted them both asunder; and Elijah went up by a whirlwind into heaven.
15800                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Elisha saw it, and he cried, My father, my father, the chariot of Israel, and the horsemen thereof. And he saw him no more: and he took hold of his own clothes, and rent them in two pieces.
15801                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      He took up also the mantle of Elijah that fell from him, and went back, and stood by the bank of Jordan;
15802                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he took the mantle of Elijah that fell from him, and smote the waters, and said, Where is the LORD God of Elijah? and when he also had smitten the waters, they parted hither and thither: and Elisha went over.
15803                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when the sons of the prophets which were to view at Jericho saw him, they said, The spirit of Elijah doth rest on Elisha. And they came to meet him, and bowed themselves to the ground before him.
15804                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they said unto him, Behold now, there be with thy servants fifty strong men; let them go, we pray thee, and seek thy master: lest peradventure the Spirit of the LORD hath taken him up, and cast him upon some mountain, or into some valley. And he said, Ye shall not send.
15805                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when they urged him till he was ashamed, he said, Send. They sent therefore fifty men; and they sought three days, but found him not.
15806                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And when they came again to him, (for he tarried at Jericho,) he said unto them, Did I not say unto you, Go not?
15807                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the men of the city said unto Elisha, Behold, I pray thee, the situation of this city is pleasant, as my lord seeth: but the water is naught, and the ground barren.
15808                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said, Bring me a new cruse, and put salt therein. And they brought it to him.
15809                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he went forth unto the spring of the waters, and cast the salt in there, and said, Thus saith the LORD, I have healed these waters; there shall not be from thence any more death or barren land.
15810                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So the waters were healed unto this day, according to the saying of Elisha which he spake.
15811                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he went up from thence unto Bethel: and as he was going up by the way, there came forth little children out of the city, and mocked him, and said unto him, Go up, thou bald head; go up, thou bald head.
15812                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he turned back, and looked on them, and cursed them in the name of the LORD. And there came forth two she bears out of the wood, and tare forty and two children of them.
15813                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he went from thence to mount Carmel, and from thence he returned to Samaria.
15814                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Now Jehoram the son of Ahab began to reign over Israel in Samaria the eighteenth year of Jehoshaphat king of Judah, and reigned twelve years.
15815                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he wrought evil in the sight of the LORD; but not like his father, and like his mother: for he put away the image of Baal that his father had made.
15816                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Nevertheless he cleaved unto the sins of Jeroboam the son of Nebat, which made Israel to sin; he departed not therefrom.
15817                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Mesha king of Moab was a sheepmaster, and rendered unto the king of Israel an hundred thousand lambs, and an hundred thousand rams, with the wool.
15818                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But it came to pass, when Ahab was dead, that the king of Moab rebelled against the king of Israel.
15819                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And king Jehoram went out of Samaria the same time, and numbered all Israel.
15820                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he went and sent to Jehoshaphat the king of Judah, saying, The king of Moab hath rebelled against me: wilt thou go with me against Moab to battle? And he said, I will go up: I am as thou art, my people as thy people, and my horses as thy horses.
15821                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he said, Which way shall we go up? And he answered, The way through the wilderness of Edom.
15822                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the king of Israel went, and the king of Judah, and the king of Edom: and they fetched a compass of seven days' journey: and there was no water for the host, and for the cattle that followed them.
15823                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Israel said, Alas! that the LORD hath called these three kings together, to deliver them into the hand of Moab!
15824                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Jehoshaphat said, Is there not here a prophet of the LORD, that we may enquire of the LORD by him? And one of the king of Israel's servants answered and said, Here is Elisha the son of Shaphat, which poured water on the hands of Elijah.
15825                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jehoshaphat said, The word of the LORD is with him. So the king of Israel and Jehoshaphat and the king of Edom went down to him.
15826                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Elisha said unto the king of Israel, What have I to do with thee? get thee to the prophets of thy father, and to the prophets of thy mother. And the king of Israel said unto him, Nay: for the LORD hath called these three kings together, to deliver them into the hand of Moab.
15827                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Elisha said, As the LORD of hosts liveth, before whom I stand, surely, were it not that I regard the presence of Jehoshaphat the king of Judah, I would not look toward thee, nor see thee.
15828                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But now bring me a minstrel. And it came to pass, when the minstrel played, that the hand of the LORD came upon him.
15829                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, Thus saith the LORD, Make this valley full of ditches.
15830                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For thus saith the LORD, Ye shall not see wind, neither shall ye see rain; yet that valley shall be filled with water, that ye may drink, both ye, and your cattle, and your beasts.
15831                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And this is but a light thing in the sight of the LORD: he will deliver the Moabites also into your hand.
15832                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ye shall smite every fenced city, and every choice city, and shall fell every good tree, and stop all wells of water, and mar every good piece of land with stones.
15833                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass in the morning, when the meat offering was offered, that, behold, there came water by the way of Edom, and the country was filled with water.
15834                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when all the Moabites heard that the kings were come up to fight against them, they gathered all that were able to put on armor, and upward, and stood in the border.
15835                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they rose up early in the morning, and the sun shone upon the water, and the Moabites saw the water on the other side as red as blood:
15836                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And they said, This is blood: the kings are surely slain, and they have smitten one another: now therefore, Moab, to the spoil.
15837                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when they came to the camp of Israel, the Israelites rose up and smote the Moabites, so that they fled before them: but they went forward smiting the Moabites, even in their country.
15838                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they beat down the cities, and on every good piece of land cast every man his stone, and filled it; and they stopped all the wells of water, and felled all the good trees: only in Kirharaseth left they the stones thereof; howbeit the slingers went about it, and smote it.
15839                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And when the king of Moab saw that the battle was too sore for him, he took with him seven hundred men that drew swords, to break through even unto the king of Edom: but they could not.
15840                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then he took his eldest son that should have reigned in his stead, and offered him for a burnt offering upon the wall. And there was great indignation against Israel: and they departed from him, and returned to their own land.
15841                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now there cried a certain woman of the wives of the sons of the prophets unto Elisha, saying, Thy servant my husband is dead; and thou knowest that thy servant did fear the LORD: and the creditor is come to take unto him my two sons to be bondmen.
15842                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Elisha said unto her, What shall I do for thee? tell me, what hast thou in the house? And she said, Thine handmaid hath not any thing in the house, save a pot of oil.
15843                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then he said, Go, borrow thee vessels abroad of all thy neighbors, even empty vessels; borrow not a few.
15844                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when thou art come in, thou shalt shut the door upon thee and upon thy sons, and shalt pour out into all those vessels, and thou shalt set aside that which is full.
15845                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So she went from him, and shut the door upon her and upon her sons, who brought the vessels to her; and she poured out.
15846                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass, when the vessels were full, that she said unto her son, Bring me yet a vessel. And he said unto her, There is not a vessel more. And the oil stayed.
15847                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then she came and told the man of God. And he said, Go, sell the oil, and pay thy debt, and live thou and thy children of the rest.
15848                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it fell on a day, that Elisha passed to Shunem, where was a great woman; and she constrained him to eat bread. And so it was, that as oft as he passed by, he turned in thither to eat bread.
15849                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And she said unto her husband, Behold now, I perceive that this is an holy man of God, which passeth by us continually.
15850                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Let us make a little chamber, I pray thee, on the wall; and let us set for him there a bed, and a table, and a stool, and a candlestick: and it shall be, when he cometh to us, that he shall turn in thither.
15851                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it fell on a day, that he came thither, and he turned into the chamber, and lay there.
15852                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said to Gehazi his servant, Call this Shunammite. And when he had called her, she stood before him.
15853                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said unto him, Say now unto her, Behold, thou hast been careful for us with all this care; what is to be done for thee? wouldest thou be spoken for to the king, or to the captain of the host? And she answered, I dwell among mine own people.
15854                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he said, What then is to be done for her? And Gehazi answered, Verily she hath no child, and her husband is old.
15855                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Call her. And when he had called her, she stood in the door.
15856                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, About this season, according to the time of life, thou shalt embrace a son. And she said, Nay, my lord, thou man of God, do not lie unto thine handmaid.
15857                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the woman conceived, and bare a son at that season that Elisha had said unto her, according to the time of life.
15858                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when the child was grown, it fell on a day, that he went out to his father to the reapers.
15859                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he said unto his father, My head, my head. And he said to a lad, Carry him to his mother.
15860                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when he had taken him, and brought him to his mother, he sat on her knees till noon, and then died.
15861                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And she went up, and laid him on the bed of the man of God, and shut the door upon him, and went out.
15862                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And she called unto her husband, and said, Send me, I pray thee, one of the young men, and one of the asses, that I may run to the man of God, and come again.
15863                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he said, Wherefore wilt thou go to him to day? it is neither new moon, nor sabbath. And she said, It shall be well.
15864                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then she saddled an ass, and said to her servant, Drive, and go forward; slack not thy riding for me, except I bid thee.
15865                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So she went and came unto the man of God to mount Carmel. And it came to pass, when the man of God saw her afar off, that he said to Gehazi his servant, Behold, yonder is that Shunammite:
15866                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run now, I pray thee, to meet her, and say unto her, Is it well with thee? is it well with thy husband? is it well with the child? And she answered, It is well:
15867                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And when she came to the man of God to the hill, she caught him by the feet: but Gehazi came near to thrust her away. And the man of God said, Let her alone; for her soul is vexed within her: and the LORD hath hid it from me, and hath not told me.
15868                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then she said, Did I desire a son of my lord? did I not say, Do not deceive me?
15869                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then he said to Gehazi, Gird up thy loins, and take my staff in thine hand, and go thy way: if thou meet any man, salute him not; and if any salute thee, answer him not again: and lay my staff upon the face of the child.
15870                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the mother of the child said, As the LORD liveth, and as thy soul liveth, I will not leave thee. And he arose, and followed her.
15871                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Gehazi passed on before them, and laid the staff upon the face of the child; but there was neither voice, nor hearing. Wherefore he went again to meet him, and told him, saying, The child is not awaked.
15872                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when Elisha was come into the house, behold, the child was dead, and laid upon his bed.
15873                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He went in therefore, and shut the door upon them twain, and prayed unto the LORD.
15874                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he went up, and lay upon the child, and put his mouth upon his mouth, and his eyes upon his eyes, and his hands upon his hands: and stretched himself upon the child; and the flesh of the child waxed warm.
15875                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then he returned, and walked in the house to and fro; and went up, and stretched himself upon him: and the child sneezed seven times, and the child opened his eyes.
15876                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he called Gehazi, and said, Call this Shunammite. So he called her. And when she was come in unto him, he said, Take up thy son.
15877                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Then she went in, and fell at his feet, and bowed herself to the ground, and took up her son, and went out.
15878                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Elisha came again to Gilgal: and there was a dearth in the land; and the sons of the prophets were sitting before him: and he said unto his servant, Set on the great pot, and seethe pottage for the sons of the prophets.
15879                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And one went out into the field to gather herbs, and found a wild vine, and gathered thereof wild gourds his lap full, and came and shred them into the pot of pottage: for they knew them not.
15880                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they poured out for the men to eat. And it came to pass, as they were eating of the pottage, that they cried out, and said, O thou man of God, there is death in the pot. And they could not eat thereof.
15881                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But he said, Then bring meal. And he cast it into the pot; and he said, Pour out for the people, that they may eat. And there was no harm in the pot.
15882                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And there came a man from Baalshalisha, and brought the man of God bread of the firstfruits, twenty loaves of barley, and full ears of corn in the husk thereof. And he said, Give unto the people, that they may eat.
15883                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And his servitor said, What, should I set this before an hundred men? He said again, Give the people, that they may eat: for thus saith the LORD, They shall eat, and shall leave thereof.
15884                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So he set it before them, and they did eat, and left thereof, according to the word of the LORD.
15885                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now Naaman, captain of the host of the king of Syria, was a great man with his master, and honorable, because by him the LORD had given deliverance unto Syria: he was also a mighty man in valor, but he was a leper.
15886                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the Syrians had gone out by companies, and had brought away captive out of the land of Israel a little maid; and she waited on Naaman's wife.
15887                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And she said unto her mistress, Would God my lord were with the prophet that is in Samaria! for he would recover him of his leprosy.
15888                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And one went in, and told his lord, saying, Thus and thus said the maid that is of the land of Israel.
15889                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Syria said, Go to, go, and I will send a letter unto the king of Israel. And he departed, and took with him ten talents of silver, and six thousand pieces of gold, and ten changes of raiment.
15890                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he brought the letter to the king of Israel, saying, Now when this letter is come unto thee, behold, I have therewith sent Naaman my servant to thee, that thou mayest recover him of his leprosy.
15891                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when the king of Israel had read the letter, that he rent his clothes, and said, Am I God, to kill and to make alive, that this man doth send unto me to recover a man of his leprosy? wherefore consider, I pray you, and see how he seeketh a quarrel against me.
15892                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it was so, when Elisha the man of God had heard that the king of Israel had rent his clothes, that he sent to the king, saying, Wherefore hast thou rent thy clothes? let him come now to me, and he shall know that there is a prophet in Israel.
15893                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So Naaman came with his horses and with his chariot, and stood at the door of the house of Elisha.
15894                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Elisha sent a messenger unto him, saying, Go and wash in Jordan seven times, and thy flesh shall come again to thee, and thou shalt be clean.
15895                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Naaman was wroth, and went away, and said, Behold, I thought, He will surely come out to me, and stand, and call on the name of the LORD his God, and strike his hand over the place, and recover the leper.
15896                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Are not Abana and Pharpar, rivers of Damascus, better than all the waters of Israel? may I not wash in them, and be clean? So he turned and went away in a rage.
15897                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And his servants came near, and spake unto him, and said, My father, if the prophet had bid thee do some great thing, wouldest thou not have done it? how much rather then, when he saith to thee, Wash, and be clean?
15898                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then went he down, and dipped himself seven times in Jordan, according to the saying of the man of God: and his flesh came again like unto the flesh of a little child, and he was clean.
15899                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he returned to the man of God, he and all his company, and came, and stood before him: and he said, Behold, now I know that there is no God in all the earth, but in Israel: now therefore, I pray thee, take a blessing of thy servant.
15900                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But he said, As the LORD liveth, before whom I stand, I will receive none. And he urged him to take it; but he refused.
15901                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Naaman said, Shall there not then, I pray thee, be given to thy servant two mules' burden of earth? for thy servant will henceforth offer neither burnt offering nor sacrifice unto other gods, but unto the LORD.
15902                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In this thing the LORD pardon thy servant, that when my master goeth into the house of Rimmon to worship there, and he leaneth on my hand, and I bow myself in the house of Rimmon: when I bow down myself in the house of Rimmon, the LORD pardon thy servant in this thing.
15903                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he said unto him, Go in peace. So he departed from him a little way.
15904                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But Gehazi, the servant of Elisha the man of God, said, Behold, my master hath spared Naaman this Syrian, in not receiving at his hands that which he brought: but, as the LORD liveth, I will run after him, and take somewhat of him.
15905                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Gehazi followed after Naaman. And when Naaman saw him running after him, he lighted down from the chariot to meet him, and said, Is all well?
15906                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, All is well. My master hath sent me, saying, Behold, even now there be come to me from mount Ephraim two young men of the sons of the prophets: give them, I pray thee, a talent of silver, and two changes of garments.
15907                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Naaman said, Be content, take two talents. And he urged him, and bound two talents of silver in two bags, with two changes of garments, and laid them upon two of his servants; and they bare them before him.
15908                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when he came to the tower, he took them from their hand, and bestowed them in the house: and he let the men go, and they departed.
15909                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But he went in, and stood before his master. And Elisha said unto him, Whence comest thou, Gehazi? And he said, Thy servant went no whither.
15910                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said unto him, Went not mine heart with thee, when the man turned again from his chariot to meet thee? Is it a time to receive money, and to receive garments, and oliveyards, and vineyards, and sheep, and oxen, and menservants, and maidservants?
15911                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The leprosy therefore of Naaman shall cleave unto thee, and unto thy seed for ever. And he went out from his presence a leper as white as snow.
15912                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of the prophets said unto Elisha, Behold now, the place where we dwell with thee is too strait for us.
15913                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let us go, we pray thee, unto Jordan, and take thence every man a beam, and let us make us a place there, where we may dwell. And he answered, Go ye.
15914                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And one said, Be content, I pray thee, and go with thy servants. And he answered, I will go.
15915                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So he went with them. And when they came to Jordan, they cut down wood.
15916                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But as one was felling a beam, the axe head fell into the water: and he cried, and said, Alas, master! for it was borrowed.
15917                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the man of God said, Where fell it? And he showed him the place. And he cut down a stick, and cast it in thither; and the iron did swim.
15918                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Therefore said he, Take it up to thee. And he put out his hand, and took it.
15919                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the king of Syria warred against Israel, and took counsel with his servants, saying, In such and such a place shall be my camp.
15920                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the man of God sent unto the king of Israel, saying, Beware that thou pass not such a place; for thither the Syrians are come down.
15921                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the king of Israel sent to the place which the man of God told him and warned him of, and saved himself there, not once nor twice.
15922                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore the heart of the king of Syria was sore troubled for this thing; and he called his servants, and said unto them, Will ye not show me which of us is for the king of Israel?
15923                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And one of his servants said, None, my lord, O king: but Elisha, the prophet that is in Israel, telleth the king of Israel the words that thou speakest in thy bedchamber.
15924                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he said, Go and spy where he is, that I may send and fetch him. And it was told him, saying, Behold, he is in Dothan.
15925                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Therefore sent he thither horses, and chariots, and a great host: and they came by night, and compassed the city about.
15926                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when the servant of the man of God was risen early, and gone forth, behold, an host compassed the city both with horses and chariots. And his servant said unto him, Alas, my master! how shall we do?
15927                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he answered, Fear not: for they that be with us are more than they that be with them.
15928                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Elisha prayed, and said, LORD, I pray thee, open his eyes, that he may see. And the LORD opened the eyes of the young man; and he saw: and, behold, the mountain was full of horses and chariots of fire round about Elisha.
15929                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when they came down to him, Elisha prayed unto the LORD, and said, Smite this people, I pray thee, with blindness. And he smote them with blindness according to the word of Elisha.
15930                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Elisha said unto them, This is not the way, neither is this the city: follow me, and I will bring you to the man whom ye seek. But he led them to Samaria.
15931                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And it came to pass, when they were come into Samaria, that Elisha said, LORD, open the eyes of these men, that they may see. And the LORD opened their eyes, and they saw; and, behold, they were in the midst of Samaria.
15932                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the king of Israel said unto Elisha, when he saw them, My father, shall I smite them? shall I smite them?
15933                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he answered, Thou shalt not smite them: wouldest thou smite those whom thou hast taken captive with thy sword and with thy bow? set bread and water before them, that they may eat and drink, and go to their master.
15934                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he prepared great provision for them: and when they had eaten and drunk, he sent them away, and they went to their master. So the bands of Syria came no more into the land of Israel.
15935                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass after this, that Benhadad king of Syria gathered all his host, and went up, and besieged Samaria.
15936                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there was a great famine in Samaria: and, behold, they besieged it, until an ass's head was sold for fourscore pieces of silver, and the fourth part of a cab of dove's dung for five pieces of silver.
15937                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And as the king of Israel was passing by upon the wall, there cried a woman unto him, saying, Help, my lord, O king.
15938                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he said, If the LORD do not help thee, whence shall I help thee? out of the barnfloor, or out of the winepress?
15939                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the king said unto her, What aileth thee? And she answered, This woman said unto me, Give thy son, that we may eat him to day, and we will eat my son to morrow.
15940                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So we boiled my son, and did eat him: and I said unto her on the next day, Give thy son, that we may eat him: and she hath hid her son.
15941                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And it came to pass, when the king heard the words of the woman, that he rent his clothes; and he passed by upon the wall, and the people looked, and, behold, he had sackcloth within upon his flesh.
15942                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then he said, God do so and more also to me, if the head of Elisha the son of Shaphat shall stand on him this day.
15943                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But Elisha sat in his house, and the elders sat with him; and the king sent a man from before him: but ere the messenger came to him, he said to the elders, See ye how this son of a murderer hath sent to take away mine head? look, when the messenger cometh, shut the door, and hold him fast at the door: is not the sound of his master's feet behind him?
15944                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And while he yet talked with them, behold, the messenger came down unto him: and he said, Behold, this evil is of the LORD; what should I wait for the LORD any longer?
15945                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then Elisha said, Hear ye the word of the LORD; Thus saith the LORD, To morrow about this time shall a measure of fine flour be sold for a shekel, and two measures of barley for a shekel, in the gate of Samaria.
15946                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then a lord on whose hand the king leaned answered the man of God, and said, Behold, if the LORD would make windows in heaven, might this thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.
15947                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And there were four leprous men at the entering in of the gate: and they said one to another, Why sit we here until we die?
15948                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         If we say, We will enter into the city, then the famine is in the city, and we shall die there: and if we sit still here, we die also. Now therefore come, and let us fall unto the host of the Syrians: if they save us alive, we shall live; and if they kill us, we shall but die.
15949                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they rose up in the twilight, to go unto the camp of the Syrians: and when they were come to the uttermost part of the camp of Syria, behold, there was no man there.
15950                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the LORD had made the host of the Syrians to hear a noise of chariots, and a noise of horses, even the noise of a great host: and they said one to another, Lo, the king of Israel hath hired against us the kings of the Hittites, and the kings of the Egyptians, to come upon us.
15951                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wherefore they arose and fled in the twilight, and left their tents, and their horses, and their asses, even the camp as it was, and fled for their life.
15952                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when these lepers came to the uttermost part of the camp, they went into one tent, and did eat and drink, and carried thence silver, and gold, and raiment, and went and hid it; and came again, and entered into another tent, and carried thence also, and went and hid it.
15953                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Then they said one to another, We do not well: this day is a day of good tidings, and we hold our peace: if we tarry till the morning light, some mischief will come upon us: now therefore come, that we may go and tell the king's household.
15954                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they came and called unto the porter of the city: and they told them, saying, We came to the camp of the Syrians, and, behold, there was no man there, neither voice of man, but horses tied, and asses tied, and the tents as they were.
15955                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he called the porters; and they told it to the king's house within.
15956                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king arose in the night, and said unto his servants, I will now show you what the Syrians have done to us. They know that we be hungry; therefore are they gone out of the camp to hide themselves in the field, saying, When they come out of the city, we shall catch them alive, and get into the city.
15957                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And one of his servants answered and said, Let some take, I pray thee, five of the horses that remain, which are left in the city, (behold, they are as all the multitude of Israel that are left in it: behold, I say, they are even as all the multitude of the Israelites that are consumed:) and let us send and see.
15958                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  They took therefore two chariot horses; and the king sent after the host of the Syrians, saying, Go and see.
15959                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they went after them unto Jordan: and, lo, all the way was full of garments and vessels, which the Syrians had cast away in their haste. And the messengers returned, and told the king.
15960                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the people went out, and spoiled the tents of the Syrians. So a measure of fine flour was sold for a shekel, and two measures of barley for a shekel, according to the word of the LORD.
15961                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king appointed the lord on whose hand he leaned to have the charge of the gate: and the people trode upon him in the gate, and he died, as the man of God had said, who spake when the king came down to him.
15962                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And it came to pass as the man of God had spoken to the king, saying, Two measures of barley for a shekel, and a measure of fine flour for a shekel, shall be to morrow about this time in the gate of Samaria:
15963                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And that lord answered the man of God, and said, Now, behold, if the LORD should make windows in heaven, might such a thing be? And he said, Behold, thou shalt see it with thine eyes, but shalt not eat thereof.
15964                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And so it fell out unto him: for the people trode upon him in the gate, and he died.
15965                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then spake Elisha unto the woman, whose son he had restored to life, saying, Arise, and go thou and thine household, and sojourn wheresoever thou canst sojourn: for the LORD hath called for a famine; and it shall also come upon the land seven years.
15966                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the woman arose, and did after the saying of the man of God: and she went with her household, and sojourned in the land of the Philistines seven years.
15967                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And it came to pass at the seven years' end, that the woman returned out of the land of the Philistines: and she went forth to cry unto the king for her house and for her land.
15968                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the king talked with Gehazi the servant of the man of God, saying, Tell me, I pray thee, all the great things that Elisha hath done.
15969                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass, as he was telling the king how he had restored a dead body to life, that, behold, the woman, whose son he had restored to life, cried to the king for her house and for her land. And Gehazi said, My lord, O king, this is the woman, and this is her son, whom Elisha restored to life.
15970                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when the king asked the woman, she told him. So the king appointed unto her a certain officer, saying, Restore all that was hers, and all the fruits of the field since the day that she left the land, even until now.
15971                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Elisha came to Damascus; and Benhadad the king of Syria was sick; and it was told him, saying, The man of God is come hither.
15972                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the king said unto Hazael, Take a present in thine hand, and go, meet the man of God, and enquire of the LORD by him, saying, Shall I recover of this disease?
15973                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So Hazael went to meet him, and took a present with him, even of every good thing of Damascus, forty camels' burden, and came and stood before him, and said, Thy son Benhadad king of Syria hath sent me to thee, saying, Shall I recover of this disease?
15974                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Elisha said unto him, Go, say unto him, Thou mayest certainly recover: howbeit the LORD hath showed me that he shall surely die.
15975                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he settled his countenance stedfastly, until he was ashamed: and the man of God wept.
15976                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Hazael said, Why weepeth my lord? And he answered, Because I know the evil that thou wilt do unto the children of Israel: their strong holds wilt thou set on fire, and their young men wilt thou slay with the sword, and wilt dash their children, and rip up their women with child.
15977                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Hazael said, But what, is thy servant a dog, that he should do this great thing? And Elisha answered, The LORD hath showed me that thou shalt be king over Syria.
15978                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                So he departed from Elisha, and came to his master; who said to him, What said Elisha to thee? And he answered, He told me that thou shouldest surely recover.
15979                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And it came to pass on the morrow, that he took a thick cloth, and dipped it in water, and spread it on his face, so that he died: and Hazael reigned in his stead.
15980                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And in the fifth year of Joram the son of Ahab king of Israel, Jehoshaphat being then king of Judah, Jehoram the son of Jehoshaphat king of Judah began to reign.
15981                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Thirty and two years old was he when he began to reign; and he reigned eight years in Jerusalem.
15982                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he walked in the way of the kings of Israel, as did the house of Ahab: for the daughter of Ahab was his wife: and he did evil in the sight of the LORD.
15983                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Yet the LORD would not destroy Judah for David his servant's sake, as he promised him to give him alway a light, and to his children.
15984                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In his days Edom revolted from under the hand of Judah, and made a king over themselves.
15985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Joram went over to Zair, and all the chariots with him: and he rose by night, and smote the Edomites which compassed him about, and the captains of the chariots: and the people fled into their tents.
15986                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yet Edom revolted from under the hand of Judah unto this day. Then Libnah revolted at the same time.
15987                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the rest of the acts of Joram, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
15988                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Joram slept with his fathers, and was buried with his fathers in the city of David: and Ahaziah his son reigned in his stead.
15989                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In the twelfth year of Joram the son of Ahab king of Israel did Ahaziah the son of Jehoram king of Judah begin to reign.
15990                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Two and twenty years old was Ahaziah when he began to reign; and he reigned one year in Jerusalem. And his mother's name was Athaliah, the daughter of Omri king of Israel.
15991                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he walked in the way of the house of Ahab, and did evil in the sight of the LORD, as did the house of Ahab: for he was the son in law of the house of Ahab.
15992                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he went with Joram the son of Ahab to the war against Hazael king of Syria in Ramothgilead; and the Syrians wounded Joram.
15993                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And king Joram went back to be healed in Jezreel of the wounds which the Syrians had given him at Ramah, when he fought against Hazael king of Syria. And Ahaziah the son of Jehoram king of Judah went down to see Joram the son of Ahab in Jezreel, because he was sick.
15994                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Elisha the prophet called one of the children of the prophets, and said unto him, Gird up thy loins, and take this box of oil in thine hand, and go to Ramothgilead:
15995                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when thou comest thither, look out there Jehu the son of Jehoshaphat the son of Nimshi, and go in, and make him arise up from among his brethren, and carry him to an inner chamber;
15996                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then take the box of oil, and pour it on his head, and say, Thus saith the LORD, I have anointed thee king over Israel. Then open the door, and flee, and tarry not.
15997                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       So the young man, even the young man the prophet, went to Ramothgilead.
15998                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when he came, behold, the captains of the host were sitting; and he said, I have an errand to thee, O captain. And Jehu said, Unto which of all us? And he said, To thee, O captain.
15999                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And he arose, and went into the house; and he poured the oil on his head, and said unto him, Thus saith the LORD God of Israel, I have anointed thee king over the people of the LORD, even over Israel.
16000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And thou shalt smite the house of Ahab thy master, that I may avenge the blood of my servants the prophets, and the blood of all the servants of the LORD, at the hand of Jezebel.
16001                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         For the whole house of Ahab shall perish: and I will cut off from Ahab him that pisseth against the wall, and him that is shut up and left in Israel:
16002                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And I will make the house of Ahab like the house of Jeroboam the son of Nebat, and like the house of Baasha the son of Ahijah:
16003                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the dogs shall eat Jezebel in the portion of Jezreel, and there shall be none to bury her. And he opened the door, and fled.
16004                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Jehu came forth to the servants of his lord: and one said unto him, Is all well? wherefore came this mad fellow to thee? And he said unto them, Ye know the man, and his communication.
16005                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And they said, It is false; tell us now. And he said, Thus and thus spake he to me, saying, Thus saith the LORD, I have anointed thee king over Israel.
16006                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then they hasted, and took every man his garment, and put it under him on the top of the stairs, and blew with trumpets, saying, Jehu is king.
16007                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So Jehu the son of Jehoshaphat the son of Nimshi conspired against Joram. (Now Joram had kept Ramothgilead, he and all Israel, because of Hazael king of Syria.
16008                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But king Joram was returned to be healed in Jezreel of the wounds which the Syrians had given him, when he fought with Hazael king of Syria.) And Jehu said, If it be your minds, then let none go forth nor escape out of the city to go to tell it in Jezreel.
16009                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    So Jehu rode in a chariot, and went to Jezreel; for Joram lay there. And Ahaziah king of Judah was come down to see Joram.
16010                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And there stood a watchman on the tower in Jezreel, and he spied the company of Jehu as he came, and said, I see a company. And Joram said, Take an horseman, and send to meet them, and let him say, Is it peace?
16011                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So there went one on horseback to meet him, and said, Thus saith the king, Is it peace? And Jehu said, What hast thou to do with peace? turn thee behind me. And the watchman told, saying, The messenger came to them, but he cometh not again.
16012                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then he sent out a second on horseback, which came to them, and said, Thus saith the king, Is it peace? And Jehu answered, What hast thou to do with peace? turn thee behind me.
16013                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the watchman told, saying, He came even unto them, and cometh not again: and the driving is like the driving of Jehu the son of Nimshi; for he driveth furiously.
16014                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joram said, Make ready. And his chariot was made ready. And Joram king of Israel and Ahaziah king of Judah went out, each in his chariot, and they went out against Jehu, and met him in the portion of Naboth the Jezreelite.
16015                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, when Joram saw Jehu, that he said, Is it peace, Jehu? And he answered, What peace, so long as the whoredoms of thy mother Jezebel and her witchcrafts are so many?
16016                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Joram turned his hands, and fled, and said to Ahaziah, There is treachery, O Ahaziah.
16017                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jehu drew a bow with his full strength, and smote Jehoram between his arms, and the arrow went out at his heart, and he sunk down in his chariot.
16018                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then said Jehu to Bidkar his captain, Take up, and cast him in the portion of the field of Naboth the Jezreelite: for remember how that, when I and thou rode together after Ahab his father, the LORD laid this burden upon him;
16019                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surely I have seen yesterday the blood of Naboth, and the blood of his sons, saith the LORD; and I will requite thee in this plat, saith the LORD. Now therefore take and cast him into the plat of ground, according to the word of the LORD.
16020                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But when Ahaziah the king of Judah saw this, he fled by the way of the garden house. And Jehu followed after him, and said, Smite him also in the chariot. And they did so at the going up to Gur, which is by Ibleam. And he fled to Megiddo, and died there.
16021                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And his servants carried him in a chariot to Jerusalem, and buried him in his sepulchre with his fathers in the city of David.
16022                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And in the eleventh year of Joram the son of Ahab began Ahaziah to reign over Judah.
16023                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when Jehu was come to Jezreel, Jezebel heard of it; and she painted her face, and tired her head, and looked out at a window.
16024                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And as Jehu entered in at the gate, she said, Had Zimri peace, who slew his master?
16025                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he lifted up his face to the window, and said, Who is on my side? who? And there looked out to him two or three eunuchs.
16026                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he said, Throw her down. So they threw her down: and some of her blood was sprinkled on the wall, and on the horses: and he trode her under foot.
16027                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And when he was come in, he did eat and drink, and said, Go, see now this cursed woman, and bury her: for she is a king's daughter.
16028                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And they went to bury her: but they found no more of her than the skull, and the feet, and the palms of her hands.
16029                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wherefore they came again, and told him. And he said, This is the word of the LORD, which he spake by his servant Elijah the Tishbite, saying, In the portion of Jezreel shall dogs eat the flesh of Jezebel:
16030                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the carcass of Jezebel shall be as dung upon the face of the field in the portion of Jezreel; so that they shall not say, This is Jezebel.
16031                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Ahab had seventy sons in Samaria. And Jehu wrote letters, and sent to Samaria, unto the rulers of Jezreel, to the elders, and to them that brought up Ahab's children, saying,
16032                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now as soon as this letter cometh to you, seeing your master's sons are with you, and there are with you chariots and horses, a fenced city also, and armor;
16033                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Look even out the best and meetest of your master's sons, and set him on his father's throne, and fight for your master's house.
16034                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But they were exceedingly afraid, and said, Behold, two kings stood not before him: how then shall we stand?
16035                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he that was over the house, and he that was over the city, the elders also, and the bringers up of the children, sent to Jehu, saying, We are thy servants, and will do all that thou shalt bid us; we will not make any king: do thou that which is good in thine eyes.
16036                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then he wrote a letter the second time to them, saying, If ye be mine, and if ye will hearken unto my voice, take ye the heads of the men your master's sons, and come to me to Jezreel by to morrow this time. Now the king's sons, being seventy persons, were with the great men of the city, which brought them up.
16037                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass, when the letter came to them, that they took the king's sons, and slew seventy persons, and put their heads in baskets, and sent him them to Jezreel.
16038                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And there came a messenger, and told him, saying, They have brought the heads of the king's sons. And he said, Lay ye them in two heaps at the entering in of the gate until the morning.
16039                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And it came to pass in the morning, that he went out, and stood, and said to all the people, Ye be righteous: behold, I conspired against my master, and slew him: but who slew all these?
16040                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Know now that there shall fall unto the earth nothing of the word of the LORD, which the LORD spake concerning the house of Ahab: for the LORD hath done that which he spake by his servant Elijah.
16041                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   So Jehu slew all that remained of the house of Ahab in Jezreel, and all his great men, and his kinsfolk, and his priests, until he left him none remaining.
16042                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he arose and departed, and came to Samaria. And as he was at the shearing house in the way,
16043                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Jehu met with the brethren of Ahaziah king of Judah, and said, Who are ye? And they answered, We are the brethren of Ahaziah; and we go down to salute the children of the king and the children of the queen.
16044                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Take them alive. And they took them alive, and slew them at the pit of the shearing house, even two and forty men; neither left he any of them.
16045                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when he was departed thence, he lighted on Jehonadab the son of Rechab coming to meet him: and he saluted him, and said to him, Is thine heart right, as my heart is with thy heart? And Jehonadab answered, It is. If it be, give me thine hand. And he gave him his hand; and he took him up to him into the chariot.
16046                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, Come with me, and see my zeal for the LORD. So they made him ride in his chariot.
16047                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And when he came to Samaria, he slew all that remained unto Ahab in Samaria, till he had destroyed him, according to the saying of the LORD, which he spake to Elijah.
16048                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Jehu gathered all the people together, and said unto them, Ahab served Baal a little; but Jehu shall serve him much.
16049                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now therefore call unto me all the prophets of Baal, all his servants, and all his priests; let none be wanting: for I have a great sacrifice to do to Baal; whosoever shall be wanting, he shall not live. But Jehu did it in subtilty, to the intent that he might destroy the worshippers of Baal.
16050                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jehu said, Proclaim a solemn assembly for Baal. And they proclaimed it.
16051                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jehu sent through all Israel: and all the worshippers of Baal came, so that there was not a man left that came not. And they came into the house of Baal; and the house of Baal was full from one end to another.
16052                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he said unto him that was over the vestry, Bring forth vestments for all the worshippers of Baal. And he brought them forth vestments.
16053                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jehu went, and Jehonadab the son of Rechab, into the house of Baal, and said unto the worshippers of Baal, Search, and look that there be here with you none of the servants of the LORD, but the worshippers of Baal only.
16054                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And when they went in to offer sacrifices and burnt offerings, Jehu appointed fourscore men without, and said, If any of the men whom I have brought into your hands escape, he that letteth him go, his life shall be for the life of him.
16055                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And it came to pass, as soon as he had made an end of offering the burnt offering, that Jehu said to the guard and to the captains, Go in, and slay them; let none come forth. And they smote them with the edge of the sword; and the guard and the captains cast them out, and went to the city of the house of Baal.
16056                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And they brought forth the images out of the house of Baal, and burned them.
16057                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And they brake down the image of Baal, and brake down the house of Baal, and made it a draught house unto this day.
16058                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Thus Jehu destroyed Baal out of Israel.
16059                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Howbeit from the sins of Jeroboam the son of Nebat, who made Israel to sin, Jehu departed not from after them, to wit, the golden calves that were in Bethel, and that were in Dan.
16060                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said unto Jehu, Because thou hast done well in executing that which is right in mine eyes, and hast done unto the house of Ahab according to all that was in mine heart, thy children of the fourth generation shall sit on the throne of Israel.
16061                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But Jehu took no heed to walk in the law of the LORD God of Israel with all his heart: for he departed not from the sins of Jeroboam, which made Israel to sin.
16062                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In those days the LORD began to cut Israel short: and Hazael smote them in all the coasts of Israel;
16063                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           From Jordan eastward, all the land of Gilead, the Gadites, and the Reubenites, and the Manassites, from Aroer, which is by the river Arnon, even Gilead and Bashan.
16064                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now the rest of the acts of Jehu, and all that he did, and all his might, are they not written in the book of the chronicles of the kings of Israel?
16065                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jehu slept with his fathers: and they buried him in Samaria. And Jehoahaz his son reigned in his stead.
16066                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the time that Jehu reigned over Israel in Samaria was twenty and eight years.
16067                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the seed royal.
16068                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  But Jehosheba, the daughter of king Joram, sister of Ahaziah, took Joash the son of Ahaziah, and stole him from among the king's sons which were slain; and they hid him, even him and his nurse, in the bedchamber from Athaliah, so that he was not slain.
16069                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he was with her hid in the house of the LORD six years. And Athaliah did reign over the land.
16070                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the seventh year Jehoiada sent and fetched the rulers over hundreds, with the captains and the guard, and brought them to him into the house of the LORD, and made a covenant with them, and took an oath of them in the house of the LORD, and showed them the king's son.
16071                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he commanded them, saying, This is the thing that ye shall do; A third part of you that enter in on the sabbath shall even be keepers of the watch of the king's house;
16072                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And a third part shall be at the gate of Sur; and a third part at the gate behind the guard: so shall ye keep the watch of the house, that it be not broken down.
16073                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And two parts of all you that go forth on the sabbath, even they shall keep the watch of the house of the LORD about the king.
16074                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And ye shall compass the king round about, every man with his weapons in his hand: and he that cometh within the ranges, let him be slain: and be ye with the king as he goeth out and as he cometh in.
16075                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the captains over the hundreds did according to all things that Jehoiada the priest commanded: and they took every man his men that were to come in on the sabbath, with them that should go out on the sabbath, and came to Jehoiada the priest.
16076                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And to the captains over hundreds did the priest give king David's spears and shields, that were in the temple of the LORD.
16077                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the guard stood, every man with his weapons in his hand, round about the king, from the right corner of the temple to the left corner of the temple, along by the altar and the temple.
16078                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he brought forth the king's son, and put the crown upon him, and gave him the testimony; and they made him king, and anointed him; and they clapped their hands, and said, God save the king.
16079                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when Athaliah heard the noise of the guard and of the people, she came to the people into the temple of the LORD.
16080                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And when she looked, behold, the king stood by a pillar, as the manner was, and the princes and the trumpeters by the king, and all the people of the land rejoiced, and blew with trumpets: and Athaliah rent her clothes, and cried, Treason, Treason.
16081                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But Jehoiada the priest commanded the captains of the hundreds, the officers of the host, and said unto them, Have her forth without the ranges: and him that followeth her kill with the sword. For the priest had said, Let her not be slain in the house of the LORD.
16082                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they laid hands on her; and she went by the way by the which the horses came into the king's house: and there was she slain.
16083                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jehoiada made a covenant between the LORD and the king and the people, that they should be the LORD's people; between the king also and the people.
16084                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And all the people of the land went into the house of Baal, and brake it down; his altars and his images brake they in pieces thoroughly, and slew Mattan the priest of Baal before the altars. And the priest appointed officers over the house of the LORD.
16085                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he took the rulers over hundreds, and the captains, and the guard, and all the people of the land; and they brought down the king from the house of the LORD, and came by the way of the gate of the guard to the king's house. And he sat on the throne of the kings.
16086                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And all the people of the land rejoiced, and the city was in quiet: and they slew Athaliah with the sword beside the king's house.
16087                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Seven years old was Jehoash when he began to reign.
16088                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   In the seventh year of Jehu Jehoash began to reign; and forty years reigned he in Jerusalem. And his mother's name was Zibiah of Beersheba.
16089                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Jehoash did that which was right in the sight of the LORD all his days wherein Jehoiada the priest instructed him.
16090                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    But the high places were not taken away: the people still sacrificed and burnt incense in the high places.
16091                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And Jehoash said to the priests, All the money of the dedicated things that is brought into the house of the LORD, even the money of every one that passeth the account, the money that every man is set at, and all the money that cometh into any man's heart to bring into the house of the LORD,
16092                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Let the priests take it to them, every man of his acquaintance: and let them repair the breaches of the house, wheresoever any breach shall be found.
16093                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But it was so, that in the three and twentieth year of king Jehoash the priests had not repaired the breaches of the house.
16094                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Then king Jehoash called for Jehoiada the priest, and the other priests, and said unto them, Why repair ye not the breaches of the house? now therefore receive no more money of your acquaintance, but deliver it for the breaches of the house.
16095                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the priests consented to receive no more money of the people, neither to repair the breaches of the house.
16096                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   But Jehoiada the priest took a chest, and bored a hole in the lid of it, and set it beside the altar, on the right side as one cometh into the house of the LORD: and the priests that kept the door put therein all the money that was brought into the house of the LORD.
16097                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it was so, when they saw that there was much money in the chest, that the king's scribe and the high priest came up, and they put up in bags, and told the money that was found in the house of the LORD.
16098                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they gave the money, being told, into the hands of them that did the work, that had the oversight of the house of the LORD: and they laid it out to the carpenters and builders, that wrought upon the house of the LORD,
16099                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And to masons, and hewers of stone, and to buy timber and hewed stone to repair the breaches of the house of the LORD, and for all that was laid out for the house to repair it.
16100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Howbeit there were not made for the house of the LORD bowls of silver, snuffers, basins, trumpets, any vessels of gold, or vessels of silver, of the money that was brought into the house of the LORD:
16101                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But they gave that to the workmen, and repaired therewith the house of the LORD.
16102                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Moreover they reckoned not with the men, into whose hand they delivered the money to be bestowed on workmen: for they dealt faithfully.
16103                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The trespass money and sin money was not brought into the house of the LORD: it was the priests'.
16104                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Then Hazael king of Syria went up, and fought against Gath, and took it: and Hazael set his face to go up to Jerusalem.
16105                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Jehoash king of Judah took all the hallowed things that Jehoshaphat, and Jehoram, and Ahaziah, his fathers, kings of Judah, had dedicated, and his own hallowed things, and all the gold that was found in the treasures of the house of the LORD, and in the king's house, and sent it to Hazael king of Syria: and he went away from Jerusalem.
16106                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the rest of the acts of Joash, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
16107                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And his servants arose, and made a conspiracy, and slew Joash in the house of Millo, which goeth down to Silla.
16108                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For Jozachar the son of Shimeath, and Jehozabad the son of Shomer, his servants, smote him, and he died; and they buried him with his fathers in the city of David: and Amaziah his son reigned in his stead.
16109                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        In the three and twentieth year of Joash the son of Ahaziah king of Judah Jehoahaz the son of Jehu began to reign over Israel in Samaria, and reigned seventeen years.
16110                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And he did that which was evil in the sight of the LORD, and followed the sins of Jeroboam the son of Nebat, which made Israel to sin; he departed not therefrom.
16111                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the anger of the LORD was kindled against Israel, and he delivered them into the hand of Hazael king of Syria, and into the hand of Benhadad the son of Hazael, all their days.
16112                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jehoahaz besought the LORD, and the LORD hearkened unto him: for he saw the oppression of Israel, because the king of Syria oppressed them.
16113                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                (And the LORD gave Israel a saviour, so that they went out from under the hand of the Syrians: and the children of Israel dwelt in their tents, as beforetime.
16114                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Nevertheless they departed not from the sins of the house of Jeroboam, who made Israel sin, but walked therein: and there remained the grove also in Samaria.)
16115                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Neither did he leave of the people to Jehoahaz but fifty horsemen, and ten chariots, and ten thousand footmen; for the king of Syria had destroyed them, and had made them like the dust by threshing.
16116                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now the rest of the acts of Jehoahaz, and all that he did, and his might, are they not written in the book of the chronicles of the kings of Israel?
16117                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jehoahaz slept with his fathers; and they buried him in Samaria: and Joash his son reigned in his stead.
16118                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In the thirty and seventh year of Joash king of Judah began Jehoash the son of Jehoahaz to reign over Israel in Samaria, and reigned sixteen years.
16119                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he did that which was evil in the sight of the LORD; he departed not from all the sins of Jeroboam the son of Nebat, who made Israel sin: but he walked therein.
16120                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the rest of the acts of Joash, and all that he did, and his might wherewith he fought against Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?
16121                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joash slept with his fathers; and Jeroboam sat upon his throne: and Joash was buried in Samaria with the kings of Israel.
16122                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now Elisha was fallen sick of his sickness whereof he died. And Joash the king of Israel came down unto him, and wept over his face, and said, O my father, my father, the chariot of Israel, and the horsemen thereof.
16123                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Elisha said unto him, Take bow and arrows. And he took unto him bow and arrows.
16124                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said to the king of Israel, Put thine hand upon the bow. And he put his hand upon it: and Elisha put his hands upon the king's hands.
16125                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he said, Open the window eastward. And he opened it. Then Elisha said, Shoot. And he shot. And he said, The arrow of the LORD's deliverance, and the arrow of deliverance from Syria: for thou shalt smite the Syrians in Aphek, till thou have consumed them.
16126                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he said, Take the arrows. And he took them. And he said unto the king of Israel, Smite upon the ground. And he smote thrice, and stayed.
16127                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the man of God was wroth with him, and said, Thou shouldest have smitten five or six times; then hadst thou smitten Syria till thou hadst consumed it: whereas now thou shalt smite Syria but thrice.
16128                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Elisha died, and they buried him. And the bands of the Moabites invaded the land at the coming in of the year.
16129                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And it came to pass, as they were burying a man, that, behold, they spied a band of men; and they cast the man into the sepulchre of Elisha: and when the man was let down, and touched the bones of Elisha, he revived, and stood up on his feet.
16130                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           But Hazael king of Syria oppressed Israel all the days of Jehoahaz.
16131                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD was gracious unto them, and had compassion on them, and had respect unto them, because of his covenant with Abraham, Isaac, and Jacob, and would not destroy them, neither cast he them from his presence as yet.
16132                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      So Hazael king of Syria died; and Benhadad his son reigned in his stead.
16133                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jehoash the son of Jehoahaz took again out of the hand of Benhadad the son of Hazael the cities, which he had taken out of the hand of Jehoahaz his father by war. Three times did Joash beat him, and recovered the cities of Israel.
16134                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In the second year of Joash son of Jehoahaz king of Israel reigned Amaziah the son of Joash king of Judah.
16135                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    He was twenty and five years old when he began to reign, and reigned twenty and nine years in Jerusalem. And his mother's name was Jehoaddan of Jerusalem.
16136                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he did that which was right in the sight of the LORD, yet not like David his father: he did according to all things as Joash his father did.
16137                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Howbeit the high places were not taken away: as yet the people did sacrifice and burnt incense on the high places.
16138                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And it came to pass, as soon as the kingdom was confirmed in his hand, that he slew his servants which had slain the king his father.
16139                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       But the children of the murderers he slew not: according unto that which is written in the book of the law of Moses, wherein the LORD commanded, saying, The fathers shall not be put to death for the children, nor the children be put to death for the fathers; but every man shall be put to death for his own sin.
16140                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  He slew of Edom in the valley of salt ten thousand, and took Selah by war, and called the name of it Joktheel unto this day.
16141                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Amaziah sent messengers to Jehoash, the son of Jehoahaz son of Jehu, king of Israel, saying, Come, let us look one another in the face.
16142                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And Jehoash the king of Israel sent to Amaziah king of Judah, saying, The thistle that was in Lebanon sent to the cedar that was in Lebanon, saying, Give thy daughter to my son to wife: and there passed by a wild beast that was in Lebanon, and trode down the thistle.
16143                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Thou hast indeed smitten Edom, and thine heart hath lifted thee up: glory of this, and tarry at home: for why shouldest thou meddle to thy hurt, that thou shouldest fall, even thou, and Judah with thee?
16144                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               But Amaziah would not hear. Therefore Jehoash king of Israel went up; and he and Amaziah king of Judah looked one another in the face at Bethshemesh, which belongeth to Judah.
16145                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Judah was put to the worse before Israel; and they fled every man to their tents.
16146                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jehoash king of Israel took Amaziah king of Judah, the son of Jehoash the son of Ahaziah, at Bethshemesh, and came to Jerusalem, and brake down the wall of Jerusalem from the gate of Ephraim unto the corner gate, four hundred cubits.
16147                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he took all the gold and silver, and all the vessels that were found in the house of the LORD, and in the treasures of the king's house, and hostages, and returned to Samaria.
16148                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now the rest of the acts of Jehoash which he did, and his might, and how he fought with Amaziah king of Judah, are they not written in the book of the chronicles of the kings of Israel?
16149                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Jehoash slept with his fathers, and was buried in Samaria with the kings of Israel; and Jeroboam his son reigned in his stead.
16150                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Amaziah the son of Joash king of Judah lived after the death of Jehoash son of Jehoahaz king of Israel fifteen years.
16151                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the rest of the acts of Amaziah, are they not written in the book of the chronicles of the kings of Judah?
16152                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now they made a conspiracy against him in Jerusalem: and he fled to Lachish; but they sent after him to Lachish, and slew him there.
16153                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And they brought him on horses: and he was buried at Jerusalem with his fathers in the city of David.
16154                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the people of Judah took Azariah, which was sixteen years old, and made him king instead of his father Amaziah.
16155                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He built Elath, and restored it to Judah, after that the king slept with his fathers.
16156                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In the fifteenth year of Amaziah the son of Joash king of Judah Jeroboam the son of Joash king of Israel began to reign in Samaria, and reigned forty and one years.
16157                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he did that which was evil in the sight of the LORD: he departed not from all the sins of Jeroboam the son of Nebat, who made Israel to sin.
16158                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            He restored the coast of Israel from the entering of Hamath unto the sea of the plain, according to the word of the LORD God of Israel, which he spake by the hand of his servant Jonah, the son of Amittai, the prophet, which was of Gathhepher.
16159                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For the LORD saw the affliction of Israel, that it was very bitter: for there was not any shut up, nor any left, nor any helper for Israel.
16160                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the LORD said not that he would blot out the name of Israel from under heaven: but he saved them by the hand of Jeroboam the son of Joash.
16161                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Now the rest of the acts of Jeroboam, and all that he did, and his might, how he warred, and how he recovered Damascus, and Hamath, which belonged to Judah, for Israel, are they not written in the book of the chronicles of the kings of Israel?
16162                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Jeroboam slept with his fathers, even with the kings of Israel; and Zachariah his son reigned in his stead.
16163                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                In the twenty and seventh year of Jeroboam king of Israel began Azariah son of Amaziah king of Judah to reign.
16164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Sixteen years old was he when he began to reign, and he reigned two and fifty years in Jerusalem. And his mother's name was Jecholiah of Jerusalem.
16165                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he did that which was right in the sight of the LORD, according to all that his father Amaziah had done;
16166                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Save that the high places were not removed: the people sacrificed and burnt incense still on the high places.
16167                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the LORD smote the king, so that he was a leper unto the day of his death, and dwelt in a several house. And Jotham the king's son was over the house, judging the people of the land.
16168                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the rest of the acts of Azariah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
16169                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        So Azariah slept with his fathers; and they buried him with his fathers in the city of David: and Jotham his son reigned in his stead.
16170                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             In the thirty and eighth year of Azariah king of Judah did Zachariah the son of Jeroboam reign over Israel in Samaria six months.
16171                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he did that which was evil in the sight of the LORD, as his fathers had done: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.
16172                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Shallum the son of Jabesh conspired against him, and smote him before the people, and slew him, and reigned in his stead.
16173                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the rest of the acts of Zachariah, behold, they are written in the book of the chronicles of the kings of Israel.
16174                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This was the word of the LORD which he spake unto Jehu, saying, Thy sons shall sit on the throne of Israel unto the fourth generation. And so it came to pass.
16175                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Shallum the son of Jabesh began to reign in the nine and thirtieth year of Uzziah king of Judah; and he reigned a full month in Samaria.
16176                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 For Menahem the son of Gadi went up from Tirzah, and came to Samaria, and smote Shallum the son of Jabesh in Samaria, and slew him, and reigned in his stead.
16177                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the rest of the acts of Shallum, and his conspiracy which he made, behold, they are written in the book of the chronicles of the kings of Israel.
16178                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then Menahem smote Tiphsah, and all that were therein, and the coasts thereof from Tirzah: because they opened not to him, therefore he smote it; and all the women therein that were with child he ripped up.
16179                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 In the nine and thirtieth year of Azariah king of Judah began Menahem the son of Gadi to reign over Israel, and reigned ten years in Samaria.
16180                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he did that which was evil in the sight of the LORD: he departed not all his days from the sins of Jeroboam the son of Nebat, who made Israel to sin.
16181                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Pul the king of Assyria came against the land: and Menahem gave Pul a thousand talents of silver, that his hand might be with him to confirm the kingdom in his hand.
16182                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Menahem exacted the money of Israel, even of all the mighty men of wealth, of each man fifty shekels of silver, to give to the king of Assyria. So the king of Assyria turned back, and stayed not there in the land.
16183                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the rest of the acts of Menahem, and all that he did, are they not written in the book of the chronicles of the kings of Israel?
16184                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Menahem slept with his fathers; and Pekahiah his son reigned in his stead.
16185                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the fiftieth year of Azariah king of Judah Pekahiah the son of Menahem began to reign over Israel in Samaria, and reigned two years.
16186                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he did that which was evil in the sight of the LORD: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.
16187                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              But Pekah the son of Remaliah, a captain of his, conspired against him, and smote him in Samaria, in the palace of the king's house, with Argob and Arieh, and with him fifty men of the Gileadites: and he killed him, and reigned in his room.
16188                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the rest of the acts of Pekahiah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.
16189                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the two and fiftieth year of Azariah king of Judah Pekah the son of Remaliah began to reign over Israel in Samaria, and reigned twenty years.
16190                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he did that which was evil in the sight of the LORD: he departed not from the sins of Jeroboam the son of Nebat, who made Israel to sin.
16191                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In the days of Pekah king of Israel came Tiglathpileser king of Assyria, and took Ijon, and Abelbethmaachah, and Janoah, and Kedesh, and Hazor, and Gilead, and Galilee, all the land of Naphtali, and carried them captive to Assyria.
16192                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Hoshea the son of Elah made a conspiracy against Pekah the son of Remaliah, and smote him, and slew him, and reigned in his stead, in the twentieth year of Jotham the son of Uzziah.
16193                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the rest of the acts of Pekah, and all that he did, behold, they are written in the book of the chronicles of the kings of Israel.
16194                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         In the second year of Pekah the son of Remaliah king of Israel began Jotham the son of Uzziah king of Judah to reign.
16195                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Five and twenty years old was he when he began to reign, and he reigned sixteen years in Jerusalem. And his mother's name was Jerusha, the daughter of Zadok.
16196                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he did that which was right in the sight of the LORD: he did according to all that his father Uzziah had done.
16197                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Howbeit the high places were not removed: the people sacrificed and burned incense still in the high places. He built the higher gate of the house of the LORD.
16198                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now the rest of the acts of Jotham, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
16199                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In those days the LORD began to send against Judah Rezin the king of Syria, and Pekah the son of Remaliah.
16200                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Jotham slept with his fathers, and was buried with his fathers in the city of David his father: and Ahaz his son reigned in his stead.
16201                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     In the seventeenth year of Pekah the son of Remaliah Ahaz the son of Jotham king of Judah began to reign.
16202                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Twenty years old was Ahaz when he began to reign, and reigned sixteen years in Jerusalem, and did not that which was right in the sight of the LORD his God, like David his father.
16203                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But he walked in the way of the kings of Israel, yea, and made his son to pass through the fire, according to the abominations of the heathen, whom the LORD cast out from before the children of Israel.
16204                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he sacrificed and burnt incense in the high places, and on the hills, and under every green tree.
16205                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Then Rezin king of Syria and Pekah son of Remaliah king of Israel came up to Jerusalem to war: and they besieged Ahaz, but could not overcome him.
16206                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       At that time Rezin king of Syria recovered Elath to Syria, and drave the Jews from Elath: and the Syrians came to Elath, and dwelt there unto this day.
16207                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Ahaz sent messengers to Tiglathpileser king of Assyria, saying, I am thy servant and thy son: come up, and save me out of the hand of the king of Syria, and out of the hand of the king of Israel, which rise up against me.
16208                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ahaz took the silver and gold that was found in the house of the LORD, and in the treasures of the king's house, and sent it for a present to the king of Assyria.
16209                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king of Assyria hearkened unto him: for the king of Assyria went up against Damascus, and took it, and carried the people of it captive to Kir, and slew Rezin.
16210                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And king Ahaz went to Damascus to meet Tiglathpileser king of Assyria, and saw an altar that was at Damascus: and king Ahaz sent to Urijah the priest the fashion of the altar, and the pattern of it, according to all the workmanship thereof.
16211                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Urijah the priest built an altar according to all that king Ahaz had sent from Damascus: so Urijah the priest made it against king Ahaz came from Damascus.
16212                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And when the king was come from Damascus, the king saw the altar: and the king approached to the altar, and offered thereon.
16213                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he burnt his burnt offering and his meat offering, and poured his drink offering, and sprinkled the blood of his peace offerings, upon the altar.
16214                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he brought also the brazen altar, which was before the LORD, from the forefront of the house, from between the altar and the house of the LORD, and put it on the north side of the altar.
16215                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And king Ahaz commanded Urijah the priest, saying, Upon the great altar burn the morning burnt offering, and the evening meat offering, and the king's burnt sacrifice, and his meat offering, with the burnt offering of all the people of the land, and their meat offering, and their drink offerings; and sprinkle upon it all the blood of the burnt offering, and all the blood of the sacrifice: and the brazen altar shall be for me to enquire by.
16216                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thus did Urijah the priest, according to all that king Ahaz commanded.
16217                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And king Ahaz cut off the borders of the bases, and removed the laver from off them; and took down the sea from off the brazen oxen that were under it, and put it upon the pavement of stones.
16218                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the covert for the sabbath that they had built in the house, and the king's entry without, turned he from the house of the LORD for the king of Assyria.
16219                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now the rest of the acts of Ahaz which he did, are they not written in the book of the chronicles of the kings of Judah?
16220                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Ahaz slept with his fathers, and was buried with his fathers in the city of David: and Hezekiah his son reigned in his stead.
16221                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            In the twelfth year of Ahaz king of Judah began Hoshea the son of Elah to reign in Samaria over Israel nine years.
16222                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he did that which was evil in the sight of the LORD, but not as the kings of Israel that were before him.
16223                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Against him came up Shalmaneser king of Assyria; and Hoshea became his servant, and gave him presents.
16224                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king of Assyria found conspiracy in Hoshea: for he had sent messengers to So king of Egypt, and brought no present to the king of Assyria, as he had done year by year: therefore the king of Assyria shut him up, and bound him in prison.
16225                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Then the king of Assyria came up throughout all the land, and went up to Samaria, and besieged it three years.
16226                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In the ninth year of Hoshea the king of Assyria took Samaria, and carried Israel away into Assyria, and placed them in Halah and in Habor by the river of Gozan, and in the cities of the Medes.
16227                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                For so it was, that the children of Israel had sinned against the LORD their God, which had brought them up out of the land of Egypt, from under the hand of Pharaoh king of Egypt, and had feared other gods,
16228                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And walked in the statutes of the heathen, whom the LORD cast out from before the children of Israel, and of the kings of Israel, which they had made.
16229                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the children of Israel did secretly those things that were not right against the LORD their God, and they built them high places in all their cities, from the tower of the watchmen to the fenced city.
16230                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they set them up images and groves in every high hill, and under every green tree:
16231                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And there they burnt incense in all the high places, as did the heathen whom the LORD carried away before them; and wrought wicked things to provoke the LORD to anger:
16232                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       For they served idols, whereof the LORD had said unto them, Ye shall not do this thing.
16233                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Yet the LORD testified against Israel, and against Judah, by all the prophets, and by all the seers, saying, Turn ye from your evil ways, and keep my commandments and my statutes, according to all the law which I commanded your fathers, and which I sent to you by my servants the prophets.
16234                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Notwithstanding they would not hear, but hardened their necks, like to the neck of their fathers, that did not believe in the LORD their God.
16235                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they rejected his statutes, and his covenant that he made with their fathers, and his testimonies which he testified against them; and they followed vanity, and became vain, and went after the heathen that were round about them, concerning whom the LORD had charged them, that they should not do like them.
16236                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And they left all the commandments of the LORD their God, and made them molten images, even two calves, and made a grove, and worshipped all the host of heaven, and served Baal.
16237                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they caused their sons and their daughters to pass through the fire, and used divination and enchantments, and sold themselves to do evil in the sight of the LORD, to provoke him to anger.
16238                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Therefore the LORD was very angry with Israel, and removed them out of his sight: there was none left but the tribe of Judah only.
16239                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Also Judah kept not the commandments of the LORD their God, but walked in the statutes of Israel which they made.
16240                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD rejected all the seed of Israel, and afflicted them, and delivered them into the hand of spoilers, until he had cast them out of his sight.
16241                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For he rent Israel from the house of David; and they made Jeroboam the son of Nebat king: and Jeroboam drave Israel from following the LORD, and made them sin a great sin.
16242                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For the children of Israel walked in all the sins of Jeroboam which he did; they departed not from them;
16243                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Until the LORD removed Israel out of his sight, as he had said by all his servants the prophets. So was Israel carried away out of their own land to Assyria unto this day.
16244                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Assyria brought men from Babylon, and from Cuthah, and from Ava, and from Hamath, and from Sepharvaim, and placed them in the cities of Samaria instead of the children of Israel: and they possessed Samaria, and dwelt in the cities thereof.
16245                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And so it was at the beginning of their dwelling there, that they feared not the LORD: therefore the LORD sent lions among them, which slew some of them.
16246                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Wherefore they spake to the king of Assyria, saying, The nations which thou hast removed, and placed in the cities of Samaria, know not the manner of the God of the land: therefore he hath sent lions among them, and, behold, they slay them, because they know not the manner of the God of the land.
16247                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Then the king of Assyria commanded, saying, Carry thither one of the priests whom ye brought from thence; and let them go and dwell there, and let him teach them the manner of the God of the land.
16248                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then one of the priests whom they had carried away from Samaria came and dwelt in Bethel, and taught them how they should fear the LORD.
16249                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Howbeit every nation made gods of their own, and put them in the houses of the high places which the Samaritans had made, every nation in their cities wherein they dwelt.
16250                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the men of Babylon made Succothbenoth, and the men of Cuth made Nergal, and the men of Hamath made Ashima,
16251                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the Avites made Nibhaz and Tartak, and the Sepharvites burnt their children in fire to Adrammelech and Anammelech, the gods of Sepharvaim.
16252                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               So they feared the LORD, and made unto themselves of the lowest of them priests of the high places, which sacrificed for them in the houses of the high places.
16253                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          They feared the LORD, and served their own gods, after the manner of the nations whom they carried away from thence.
16254                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Unto this day they do after the former manners: they fear not the LORD, neither do they after their statutes, or after their ordinances, or after the law and commandment which the LORD commanded the children of Jacob, whom he named Israel;
16255                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            With whom the LORD had made a covenant, and charged them, saying, Ye shall not fear other gods, nor bow yourselves to them, nor serve them, nor sacrifice to them:
16256                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the LORD, who brought you up out of the land of Egypt with great power and a stretched out arm, him shall ye fear, and him shall ye worship, and to him shall ye do sacrifice.
16257                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the statutes, and the ordinances, and the law, and the commandment, which he wrote for you, ye shall observe to do for evermore; and ye shall not fear other gods.
16258                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the covenant that I have made with you ye shall not forget; neither shall ye fear other gods.
16259                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            But the LORD your God ye shall fear; and he shall deliver you out of the hand of all your enemies.
16260                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Howbeit they did not hearken, but they did after their former manner.
16261                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So these nations feared the LORD, and served their graven images, both their children, and their children's children: as did their fathers, so do they unto this day.
16262                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now it came to pass in the third year of Hoshea son of Elah king of Israel, that Hezekiah the son of Ahaz king of Judah began to reign.
16263                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Twenty and five years old was he when he began to reign; and he reigned twenty and nine years in Jerusalem. His mother's name also was Abi, the daughter of Zachariah.
16264                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he did that which was right in the sight of the LORD, according to all that David his father did.
16265                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He removed the high places, and brake the images, and cut down the groves, and brake in pieces the brazen serpent that Moses had made: for unto those days the children of Israel did burn incense to it: and he called it Nehushtan.
16266                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He trusted in the LORD God of Israel; so that after him was none like him among all the kings of Judah, nor any that were before him.
16267                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     For he clave to the LORD, and departed not from following him, but kept his commandments, which the LORD commanded Moses.
16268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the LORD was with him; and he prospered whithersoever he went forth: and he rebelled against the king of Assyria, and served him not.
16269                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         He smote the Philistines, even unto Gaza, and the borders thereof, from the tower of the watchmen to the fenced city.
16270                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass in the fourth year of king Hezekiah, which was the seventh year of Hoshea son of Elah king of Israel, that Shalmaneser king of Assyria came up against Samaria, and besieged it.
16271                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And at the end of three years they took it: even in the sixth year of Hezekiah, that is in the ninth year of Hoshea king of Israel, Samaria was taken.
16272                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the king of Assyria did carry away Israel unto Assyria, and put them in Halah and in Habor by the river of Gozan, and in the cities of the Medes:
16273                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Because they obeyed not the voice of the LORD their God, but transgressed his covenant, and all that Moses the servant of the LORD commanded, and would not hear them, nor do them.
16274                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now in the fourteenth year of king Hezekiah did Sennacherib king of Assyria come up against all the fenced cities of Judah, and took them.
16275                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Hezekiah king of Judah sent to the king of Assyria to Lachish, saying, I have offended; return from me: that which thou puttest on me will I bear. And the king of Assyria appointed unto Hezekiah king of Judah three hundred talents of silver and thirty talents of gold.
16276                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Hezekiah gave him all the silver that was found in the house of the LORD, and in the treasures of the king's house.
16277                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      At that time did Hezekiah cut off the gold from the doors of the temple of the LORD, and from the pillars which Hezekiah king of Judah had overlaid, and gave it to the king of Assyria.
16278                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king of Assyria sent Tartan and Rabsaris and Rabshakeh from Lachish to king Hezekiah with a great host against Jerusalem. And they went up and came to Jerusalem. And when they were come up, they came and stood by the conduit of the upper pool, which is in the highway of the fuller's field.
16279                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And when they had called to the king, there came out to them Eliakim the son of Hilkiah, which was over the household, and Shebna the scribe, and Joah the son of Asaph the recorder.
16280                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Rabshakeh said unto them, Speak ye now to Hezekiah, Thus saith the great king, the king of Assyria, What confidence is this wherein thou trustest?
16281                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Thou sayest, (but they are but vain words,) I have counsel and strength for the war. Now on whom dost thou trust, that thou rebellest against me?
16282                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Now, behold, thou trustest upon the staff of this bruised reed, even upon Egypt, on which if a man lean, it will go into his hand, and pierce it: so is Pharaoh king of Egypt unto all that trust on him.
16283                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But if ye say unto me, We trust in the LORD our God: is not that he, whose high places and whose altars Hezekiah hath taken away, and hath said to Judah and Jerusalem, Ye shall worship before this altar in Jerusalem?
16284                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now therefore, I pray thee, give pledges to my lord the king of Assyria, and I will deliver thee two thousand horses, if thou be able on thy part to set riders upon them.
16285                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How then wilt thou turn away the face of one captain of the least of my master's servants, and put thy trust on Egypt for chariots and for horsemen?
16286                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Am I now come up without the LORD against this place to destroy it? The LORD said to me, Go up against this land, and destroy it.
16287                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Then said Eliakim the son of Hilkiah, and Shebna, and Joah, unto Rabshakeh, Speak, I pray thee, to thy servants in the Syrian language; for we understand it: and talk not with us in the Jews' language in the ears of the people that are on the wall.
16288                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             But Rabshakeh said unto them, Hath my master sent me to thy master, and to thee, to speak these words? hath he not sent me to the men which sit on the wall, that they may eat their own dung, and drink their own piss with you?
16289                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Then Rabshakeh stood and cried with a loud voice in the Jews' language, and spake, saying, Hear the word of the great king, the king of Assyria:
16290                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Thus saith the king, Let not Hezekiah deceive you: for he shall not be able to deliver you out of his hand:
16291                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Neither let Hezekiah make you trust in the LORD, saying, The LORD will surely deliver us, and this city shall not be delivered into the hand of the king of Assyria.
16292                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hearken not to Hezekiah: for thus saith the king of Assyria, Make an agreement with me by a present, and come out to me, and then eat ye every man of his own vine, and every one of his fig tree, and drink ye every one the waters of his cistern:
16293                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Until I come and take you away to a land like your own land, a land of corn and wine, a land of bread and vineyards, a land of oil olive and of honey, that ye may live, and not die: and hearken not unto Hezekiah, when he persuadeth you, saying, The LORD will deliver us.
16294                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Hath any of the gods of the nations delivered at all his land out of the hand of the king of Assyria?
16295                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Where are the gods of Hamath, and of Arpad? where are the gods of Sepharvaim, Hena, and Ivah? have they delivered Samaria out of mine hand?
16296                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Who are they among all the gods of the countries, that have delivered their country out of mine hand, that the LORD should deliver Jerusalem out of mine hand?
16297                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But the people held their peace, and answered him not a word: for the king's commandment was, saying, Answer him not.
16298                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then came Eliakim the son of Hilkiah, which was over the household, and Shebna the scribe, and Joah the son of Asaph the recorder, to Hezekiah with their clothes rent, and told him the words of Rabshakeh.
16299                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, when king Hezekiah heard it, that he rent his clothes, and covered himself with sackcloth, and went into the house of the LORD.
16300                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And he sent Eliakim, which was over the household, and Shebna the scribe, and the elders of the priests, covered with sackcloth, to Isaiah the prophet the son of Amoz.
16301                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And they said unto him, Thus saith Hezekiah, This day is a day of trouble, and of rebuke, and blasphemy; for the children are come to the birth, and there is not strength to bring forth.
16302                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It may be the LORD thy God will hear all the words of Rabshakeh, whom the king of Assyria his master hath sent to reproach the living God; and will reprove the words which the LORD thy God hath heard: wherefore lift up thy prayer for the remnant that are left.
16303                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So the servants of king Hezekiah came to Isaiah.
16304                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Isaiah said unto them, Thus shall ye say to your master, Thus saith the LORD, Be not afraid of the words which thou hast heard, with which the servants of the king of Assyria have blasphemed me.
16305                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, I will send a blast upon him, and he shall hear a rumor, and shall return to his own land; and I will cause him to fall by the sword in his own land.
16306                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              So Rabshakeh returned, and found the king of Assyria warring against Libnah: for he had heard that he was departed from Lachish.
16307                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when he heard say of Tirhakah king of Ethiopia, Behold, he is come out to fight against thee: he sent messengers again unto Hezekiah, saying,
16308                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Thus shall ye speak to Hezekiah king of Judah, saying, Let not thy God in whom thou trustest deceive thee, saying, Jerusalem shall not be delivered into the hand of the king of Assyria.
16309                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Behold, thou hast heard what the kings of Assyria have done to all lands, by destroying them utterly: and shalt thou be delivered?
16310                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Have the gods of the nations delivered them which my fathers have destroyed; as Gozan, and Haran, and Rezeph, and the children of Eden which were in Thelasar?
16311                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Where is the king of Hamath, and the king of Arpad, and the king of the city of Sepharvaim, of Hena, and Ivah?
16312                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Hezekiah received the letter of the hand of the messengers, and read it: and Hezekiah went up into the house of the LORD, and spread it before the LORD.
16313                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Hezekiah prayed before the LORD, and said, O LORD God of Israel, which dwellest between the cherubim, thou art the God, even thou alone, of all the kingdoms of the earth; thou hast made heaven and earth.
16314                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       LORD, bow down thine ear, and hear: open, LORD, thine eyes, and see: and hear the words of Sennacherib, which hath sent him to reproach the living God.
16315                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Of a truth, LORD, the kings of Assyria have destroyed the nations and their lands,
16316                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And have cast their gods into the fire: for they were no gods, but the work of men's hands, wood and stone: therefore they have destroyed them.
16317                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now therefore, O LORD our God, I beseech thee, save thou us out of his hand, that all the kingdoms of the earth may know that thou art the LORD God, even thou only.
16318                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then Isaiah the son of Amoz sent to Hezekiah, saying, Thus saith the LORD God of Israel, That which thou hast prayed to me against Sennacherib king of Assyria I have heard.
16319                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             This is the word that the LORD hath spoken concerning him; The virgin the daughter of Zion hath despised thee, and laughed thee to scorn; the daughter of Jerusalem hath shaken her head at thee.
16320                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whom hast thou reproached and blasphemed? and against whom hast thou exalted thy voice, and lifted up thine eyes on high? even against the Holy One of Israel.
16321                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               By thy messengers thou hast reproached the LORD, and hast said, With the multitude of my chariots I am come up to the height of the mountains, to the sides of Lebanon, and will cut down the tall cedar trees thereof, and the choice fir trees thereof: and I will enter into the lodgings of his borders, and into the forest of his Carmel.
16322                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       I have digged and drunk strange waters, and with the sole of my feet have I dried up all the rivers of besieged places.
16323                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Hast thou not heard long ago how I have done it, and of ancient times that I have formed it? now have I brought it to pass, that thou shouldest be to lay waste fenced cities into ruinous heaps.
16324                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Therefore their inhabitants were of small power, they were dismayed and confounded; they were as the grass of the field, and as the green herb, as the grass on the house tops, and as corn blasted before it be grown up.
16325                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          But I know thy abode, and thy going out, and thy coming in, and thy rage against me.
16326                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Because thy rage against me and thy tumult is come up into mine ears, therefore I will put my hook in thy nose, and my bridle in thy lips, and I will turn thee back by the way by which thou camest.
16327                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And this shall be a sign unto thee, Ye shall eat this year such things as grow of themselves, and in the second year that which springeth of the same; and in the third year sow ye, and reap, and plant vineyards, and eat the fruits thereof.
16328                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the remnant that is escaped of the house of Judah shall yet again take root downward, and bear fruit upward.
16329                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           For out of Jerusalem shall go forth a remnant, and they that escape out of mount Zion: the zeal of the LORD of hosts shall do this.
16330                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Therefore thus saith the LORD concerning the king of Assyria, He shall not come into this city, nor shoot an arrow there, nor come before it with shield, nor cast a bank against it.
16331                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      By the way that he came, by the same shall he return, and shall not come into this city, saith the LORD.
16332                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For I will defend this city, to save it, for mine own sake, and for my servant David's sake.
16333                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And it came to pass that night, that the angel of the LORD went out, and smote in the camp of the Assyrians an hundred fourscore and five thousand: and when they arose early in the morning, behold, they were all dead corpses.
16334                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         So Sennacherib king of Assyria departed, and went and returned, and dwelt at Nineveh.
16335                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, as he was worshipping in the house of Nisroch his god, that Adrammelech and Sharezer his sons smote him with the sword: and they escaped into the land of Armenia. And Esarhaddon his son reigned in his stead.
16336                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           In those days was Hezekiah sick unto death. And the prophet Isaiah the son of Amoz came to him, and said unto him, Thus saith the LORD, Set thine house in order; for thou shalt die, and not live.
16337                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Then he turned his face to the wall, and prayed unto the LORD, saying,
16338                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I beseech thee, O LORD, remember now how I have walked before thee in truth and with a perfect heart, and have done that which is good in thy sight. And Hezekiah wept sore.
16339                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And it came to pass, afore Isaiah was gone out into the middle court, that the word of the LORD came to him, saying,
16340                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Turn again, and tell Hezekiah the captain of my people, Thus saith the LORD, the God of David thy father, I have heard thy prayer, I have seen thy tears: behold, I will heal thee: on the third day thou shalt go up unto the house of the LORD.
16341                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And I will add unto thy days fifteen years; and I will deliver thee and this city out of the hand of the king of Assyria; and I will defend this city for mine own sake, and for my servant David's sake.
16342                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Isaiah said, Take a lump of figs. And they took and laid it on the boil, and he recovered.
16343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Hezekiah said unto Isaiah, What shall be the sign that the LORD will heal me, and that I shall go up into the house of the LORD the third day?
16344                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Isaiah said, This sign shalt thou have of the LORD, that the LORD will do the thing that he hath spoken: shall the shadow go forward ten degrees, or go back ten degrees?
16345                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Hezekiah answered, It is a light thing for the shadow to go down ten degrees: nay, but let the shadow return backward ten degrees.
16346                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Isaiah the prophet cried unto the LORD: and he brought the shadow ten degrees backward, by which it had gone down in the dial of Ahaz.
16347                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    At that time Berodachbaladan, the son of Baladan, king of Babylon, sent letters and a present unto Hezekiah: for he had heard that Hezekiah had been sick.
16348                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Hezekiah hearkened unto them, and showed them all the house of his precious things, the silver, and the gold, and the spices, and the precious ointment, and all the house of his armor, and all that was found in his treasures: there was nothing in his house, nor in all his dominion, that Hezekiah showed them not.
16349                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Then came Isaiah the prophet unto king Hezekiah, and said unto him, What said these men? and from whence came they unto thee? And Hezekiah said, They are come from a far country, even from Babylon.
16350                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he said, What have they seen in thine house? And Hezekiah answered, All the things that are in mine house have they seen: there is nothing among my treasures that I have not showed them.
16351                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Isaiah said unto Hezekiah, Hear the word of the LORD.
16352                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Behold, the days come, that all that is in thine house, and that which thy fathers have laid up in store unto this day, shall be carried into Babylon: nothing shall be left, saith the LORD.
16353                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And of thy sons that shall issue from thee, which thou shalt beget, shall they take away; and they shall be eunuchs in the palace of the king of Babylon.
16354                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Then said Hezekiah unto Isaiah, Good is the word of the LORD which thou hast spoken. And he said, Is it not good, if peace and truth be in my days?
16355                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the rest of the acts of Hezekiah, and all his might, and how he made a pool, and a conduit, and brought water into the city, are they not written in the book of the chronicles of the kings of Judah?
16356                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Hezekiah slept with his fathers: and Manasseh his son reigned in his stead.
16357                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Manasseh was twelve years old when he began to reign, and reigned fifty and five years in Jerusalem. And his mother's name was Hephzibah.
16358                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And he did that which was evil in the sight of the LORD, after the abominations of the heathen, whom the LORD cast out before the children of Israel.
16359                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        For he built up again the high places which Hezekiah his father had destroyed; and he reared up altars for Baal, and made a grove, as did Ahab king of Israel; and worshipped all the host of heaven, and served them.
16360                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he built altars in the house of the LORD, of which the LORD said, In Jerusalem will I put my name.
16361                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he built altars for all the host of heaven in the two courts of the house of the LORD.
16362                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he made his son pass through the fire, and observed times, and used enchantments, and dealt with familiar spirits and wizards: he wrought much wickedness in the sight of the LORD, to provoke him to anger.
16363                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he set a graven image of the grove that he had made in the house, of which the LORD said to David, and to Solomon his son, In this house, and in Jerusalem, which I have chosen out of all tribes of Israel, will I put my name for ever:
16364                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Neither will I make the feet of Israel move any more out of the land which I gave their fathers; only if they will observe to do according to all that I have commanded them, and according to all the law that my servant Moses commanded them.
16365                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 But they hearkened not: and Manasseh seduced them to do more evil than did the nations whom the LORD destroyed before the children of Israel.
16366                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD spake by his servants the prophets, saying,
16367                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Because Manasseh king of Judah hath done these abominations, and hath done wickedly above all that the Amorites did, which were before him, and hath made Judah also to sin with his idols:
16368                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Therefore thus saith the LORD God of Israel, Behold, I am bringing such evil upon Jerusalem and Judah, that whosoever heareth of it, both his ears shall tingle.
16369                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And I will stretch over Jerusalem the line of Samaria, and the plummet of the house of Ahab: and I will wipe Jerusalem as a man wipeth a dish, wiping it, and turning it upside down.
16370                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And I will forsake the remnant of mine inheritance, and deliver them into the hand of their enemies; and they shall become a prey and a spoil to all their enemies;
16371                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Because they have done that which was evil in my sight, and have provoked me to anger, since the day their fathers came forth out of Egypt, even unto this day.
16372                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moreover Manasseh shed innocent blood very much, till he had filled Jerusalem from one end to another; beside his sin wherewith he made Judah to sin, in doing that which was evil in the sight of the LORD.
16373                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Now the rest of the acts of Manasseh, and all that he did, and his sin that he sinned, are they not written in the book of the chronicles of the kings of Judah?
16374                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Manasseh slept with his fathers, and was buried in the garden of his own house, in the garden of Uzza: and Amon his son reigned in his stead.
16375                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Amon was twenty and two years old when he began to reign, and he reigned two years in Jerusalem. And his mother's name was Meshullemeth, the daughter of Haruz of Jotbah.
16376                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he did that which was evil in the sight of the LORD, as his father Manasseh did.
16377                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he walked in all the way that his father walked in, and served the idols that his father served, and worshipped them:
16378                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he forsook the LORD God of his fathers, and walked not in the way of the LORD.
16379                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the servants of Amon conspired against him, and slew the king in his own house.
16380                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the people of the land slew all them that had conspired against king Amon; and the people of the land made Josiah his son king in his stead.
16381                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Now the rest of the acts of Amon which he did, are they not written in the book of the chronicles of the kings of Judah?
16382                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he was buried in his sepulchre in the garden of Uzza: and Josiah his son reigned in his stead.
16383                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Josiah was eight years old when he began to reign, and he reigned thirty and one years in Jerusalem. And his mother's name was Jedidah, the daughter of Adaiah of Boscath.
16384                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he did that which was right in the sight of the LORD, and walked in all the way of David his father, and turned not aside to the right hand or to the left.
16385                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And it came to pass in the eighteenth year of king Josiah, that the king sent Shaphan the son of Azaliah, the son of Meshullam, the scribe, to the house of the LORD, saying,
16386                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Go up to Hilkiah the high priest, that he may sum the silver which is brought into the house of the LORD, which the keepers of the door have gathered of the people:
16387                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And let them deliver it into the hand of the doers of the work, that have the oversight of the house of the LORD: and let them give it to the doers of the work which is in the house of the LORD, to repair the breaches of the house,
16388                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unto carpenters, and builders, and masons, and to buy timber and hewn stone to repair the house.
16389                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Howbeit there was no reckoning made with them of the money that was delivered into their hand, because they dealt faithfully.
16390                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hilkiah the high priest said unto Shaphan the scribe, I have found the book of the law in the house of the LORD. And Hilkiah gave the book to Shaphan, and he read it.
16391                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Shaphan the scribe came to the king, and brought the king word again, and said, Thy servants have gathered the money that was found in the house, and have delivered it into the hand of them that do the work, that have the oversight of the house of the LORD.
16392                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Shaphan the scribe showed the king, saying, Hilkiah the priest hath delivered me a book. And Shaphan read it before the king.
16393                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And it came to pass, when the king had heard the words of the book of the law, that he rent his clothes.
16394                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the king commanded Hilkiah the priest, and Ahikam the son of Shaphan, and Achbor the son of Michaiah, and Shaphan the scribe, and Asahiah a servant of the king's, saying,
16395                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Go ye, enquire of the LORD for me, and for the people, and for all Judah, concerning the words of this book that is found: for great is the wrath of the LORD that is kindled against us, because our fathers have not hearkened unto the words of this book, to do according unto all that which is written concerning us.
16396                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          So Hilkiah the priest, and Ahikam, and Achbor, and Shaphan, and Asahiah, went unto Huldah the prophetess, the wife of Shallum the son of Tikvah, the son of Harhas, keeper of the wardrobe; (now she dwelt in Jerusalem in the college;) and they communed with her.
16397                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And she said unto them, Thus saith the LORD God of Israel, Tell the man that sent you to me,
16398                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Thus saith the LORD, Behold, I will bring evil upon this place, and upon the inhabitants thereof, even all the words of the book which the king of Judah hath read:
16399                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Because they have forsaken me, and have burned incense unto other gods, that they might provoke me to anger with all the works of their hands; therefore my wrath shall be kindled against this place, and shall not be quenched.
16400                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     But to the king of Judah which sent you to enquire of the LORD, thus shall ye say to him, Thus saith the LORD God of Israel, As touching the words which thou hast heard;
16401                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Because thine heart was tender, and thou hast humbled thyself before the LORD, when thou heardest what I spake against this place, and against the inhabitants thereof, that they should become a desolation and a curse, and hast rent thy clothes, and wept before me; I also have heard thee, saith the LORD.
16402                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Behold therefore, I will gather thee unto thy fathers, and thou shalt be gathered into thy grave in peace; and thine eyes shall not see all the evil which I will bring upon this place. And they brought the king word again.
16403                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king sent, and they gathered unto him all the elders of Judah and of Jerusalem.
16404                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king went up into the house of the LORD, and all the men of Judah and all the inhabitants of Jerusalem with him, and the priests, and the prophets, and all the people, both small and great: and he read in their ears all the words of the book of the covenant which was found in the house of the LORD.
16405                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king stood by a pillar, and made a covenant before the LORD, to walk after the LORD, and to keep his commandments and his testimonies and his statutes with all their heart and all their soul, to perform the words of this covenant that were written in this book. And all the people stood to the covenant.
16406                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the king commanded Hilkiah the high priest, and the priests of the second order, and the keepers of the door, to bring forth out of the temple of the LORD all the vessels that were made for Baal, and for the grove, and for all the host of heaven: and he burned them without Jerusalem in the fields of Kidron, and carried the ashes of them unto Bethel.
16407                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And he put down the idolatrous priests, whom the kings of Judah had ordained to burn incense in the high places in the cities of Judah, and in the places round about Jerusalem; them also that burned incense unto Baal, to the sun, and to the moon, and to the planets, and to all the host of heaven.
16408                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he brought out the grove from the house of the LORD, without Jerusalem, unto the brook Kidron, and burned it at the brook Kidron, and stamped it small to powder, and cast the powder thereof upon the graves of the children of the people.
16409                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And he brake down the houses of the sodomites, that were by the house of the LORD, where the women wove hangings for the grove.
16410                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he brought all the priests out of the cities of Judah, and defiled the high places where the priests had burned incense, from Geba to Beersheba, and brake down the high places of the gates that were in the entering in of the gate of Joshua the governor of the city, which were on a man's left hand at the gate of the city.
16411                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Nevertheless the priests of the high places came not up to the altar of the LORD in Jerusalem, but they did eat of the unleavened bread among their brethren.
16412                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he defiled Topheth, which is in the valley of the children of Hinnom, that no man might make his son or his daughter to pass through the fire to Molech.
16413                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And he took away the horses that the kings of Judah had given to the sun, at the entering in of the house of the LORD, by the chamber of Nathanmelech the chamberlain, which was in the suburbs, and burned the chariots of the sun with fire.
16414                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the altars that were on the top of the upper chamber of Ahaz, which the kings of Judah had made, and the altars which Manasseh had made in the two courts of the house of the LORD, did the king beat down, and brake them down from thence, and cast the dust of them into the brook Kidron.
16415                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the high places that were before Jerusalem, which were on the right hand of the mount of corruption, which Solomon the king of Israel had builded for Ashtoreth the abomination of the Zidonians, and for Chemosh the abomination of the Moabites, and for Milcom the abomination of the children of Ammon, did the king defile.
16416                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he brake in pieces the images, and cut down the groves, and filled their places with the bones of men.
16417                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Moreover the altar that was at Bethel, and the high place which Jeroboam the son of Nebat, who made Israel to sin, had made, both that altar and the high place he brake down, and burned the high place, and stamped it small to powder, and burned the grove.
16418                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And as Josiah turned himself, he spied the sepulchres that were there in the mount, and sent, and took the bones out of the sepulchres, and burned them upon the altar, and polluted it, according to the word of the LORD which the man of God proclaimed, who proclaimed these words.
16419                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Then he said, What title is that that I see? And the men of the city told him, It is the sepulchre of the man of God, which came from Judah, and proclaimed these things that thou hast done against the altar of Bethel.
16420                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he said, Let him alone; let no man move his bones. So they let his bones alone, with the bones of the prophet that came out of Samaria.
16421                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And all the houses also of the high places that were in the cities of Samaria, which the kings of Israel had made to provoke the Lord to anger, Josiah took away, and did to them according to all the acts that he had done in Bethel.
16422                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And he slew all the priests of the high places that were there upon the altars, and burned men's bones upon them, and returned to Jerusalem.
16423                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the king commanded all the people, saying, Keep the passover unto the LORD your God, as it is written in the book of this covenant.
16424                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Surely there was not holden such a passover from the days of the judges that judged Israel, nor in all the days of the kings of Israel, nor of the kings of Judah;
16425                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         But in the eighteenth year of king Josiah, wherein this passover was holden to the LORD in Jerusalem.
16426                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Moreover the workers with familiar spirits, and the wizards, and the images, and the idols, and all the abominations that were spied in the land of Judah and in Jerusalem, did Josiah put away, that he might perform the words of the law which were written in the book that Hilkiah the priest found in the house of the LORD.
16427                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And like unto him was there no king before him, that turned to the LORD with all his heart, and with all his soul, and with all his might, according to all the law of Moses; neither after him arose there any like him.
16428                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Notwithstanding the LORD turned not from the fierceness of his great wrath, wherewith his anger was kindled against Judah, because of all the provocations that Manasseh had provoked him withal.
16429                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD said, I will remove Judah also out of my sight, as I have removed Israel, and will cast off this city Jerusalem which I have chosen, and the house of which I said, My name shall be there.
16430                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Now the rest of the acts of Josiah, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
16431                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       In his days Pharaohnechoh king of Egypt went up against the king of Assyria to the river Euphrates: and king Josiah went against him; and he slew him at Megiddo, when he had seen him.
16432                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And his servants carried him in a chariot dead from Megiddo, and brought him to Jerusalem, and buried him in his own sepulchre. And the people of the land took Jehoahaz the son of Josiah, and anointed him, and made him king in his father's stead.
16433                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Jehoahaz was twenty and three years old when he began to reign; and he reigned three months in Jerusalem. And his mother's name was Hamutal, the daughter of Jeremiah of Libnah.
16434                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he did that which was evil in the sight of the LORD, according to all that his fathers had done.
16435                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Pharaohnechoh put him in bands at Riblah in the land of Hamath, that he might not reign in Jerusalem; and put the land to a tribute of an hundred talents of silver, and a talent of gold.
16436                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Pharaohnechoh made Eliakim the son of Josiah king in the room of Josiah his father, and turned his name to Jehoiakim, and took Jehoahaz away: and he came to Egypt, and died there.
16437                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jehoiakim gave the silver and the gold to Pharaoh; but he taxed the land to give the money according to the commandment of Pharaoh: he exacted the silver and the gold of the people of the land, of every one according to his taxation, to give it unto Pharaohnechoh.
16438                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Jehoiakim was twenty and five years old when he began to reign; and he reigned eleven years in Jerusalem. And his mother's name was Zebudah, the daughter of Pedaiah of Rumah.
16439                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And he did that which was evil in the sight of the LORD, according to all that his fathers had done.
16440                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim became his servant three years: then he turned and rebelled against him.
16441                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the LORD sent against him bands of the Chaldees, and bands of the Syrians, and bands of the Moabites, and bands of the children of Ammon, and sent them against Judah to destroy it, according to the word of the LORD, which he spake by his servants the prophets.
16442                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Surely at the commandment of the LORD came this upon Judah, to remove them out of his sight, for the sins of Manasseh, according to all that he did;
16443                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And also for the innocent blood that he shed: for he filled Jerusalem with innocent blood; which the LORD would not pardon.
16444                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now the rest of the acts of Jehoiakim, and all that he did, are they not written in the book of the chronicles of the kings of Judah?
16445                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             So Jehoiakim slept with his fathers: and Jehoiachin his son reigned in his stead.
16446                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the king of Egypt came not again any more out of his land: for the king of Babylon had taken from the river of Egypt unto the river Euphrates all that pertained to the king of Egypt.
16447                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Jehoiachin was eighteen years old when he began to reign, and he reigned in Jerusalem three months. And his mother's name was Nehushta, the daughter of Elnathan of Jerusalem.
16448                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And he did that which was evil in the sight of the LORD, according to all that his father had done.
16449                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             At that time the servants of Nebuchadnezzar king of Babylon came up against Jerusalem, and the city was besieged.
16450                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Nebuchadnezzar king of Babylon came against the city, and his servants did besiege it.
16451                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Jehoiachin the king of Judah went out to the king of Babylon, he, and his mother, and his servants, and his princes, and his officers: and the king of Babylon took him in the eighth year of his reign.
16452                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And he carried out thence all the treasures of the house of the LORD, and the treasures of the king's house, and cut in pieces all the vessels of gold which Solomon king of Israel had made in the temple of the LORD, as the LORD had said.
16453                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And he carried away all Jerusalem, and all the princes, and all the mighty men of valor, even ten thousand captives, and all the craftsmen and smiths: none remained, save the poorest sort of the people of the land.
16454                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And he carried away Jehoiachin to Babylon, and the king's mother, and the king's wives, and his officers, and the mighty of the land, those carried he into captivity from Jerusalem to Babylon.
16455                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And all the men of might, even seven thousand, and craftsmen and smiths a thousand, all that were strong and apt for war, even them the king of Babylon brought captive to Babylon.
16456                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the king of Babylon made Mattaniah his father's brother king in his stead, and changed his name to Zedekiah.
16457                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Zedekiah was twenty and one years old when he began to reign, and he reigned eleven years in Jerusalem. And his mother's name was Hamutal, the daughter of Jeremiah of Libnah.
16458                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And he did that which was evil in the sight of the LORD, according to all that Jehoiakim had done.
16459                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   For through the anger of the LORD it came to pass in Jerusalem and Judah, until he had cast them out from his presence, that Zedekiah rebelled against the king of Babylon.
16460                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And it came to pass in the ninth year of his reign, in the tenth month, in the tenth day of the month, that Nebuchadnezzar king of Babylon came, he, and all his host, against Jerusalem, and pitched against it; and they built forts against it round about.
16461                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the city was besieged unto the eleventh year of king Zedekiah.
16462                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And on the ninth day of the fourth month the famine prevailed in the city, and there was no bread for the people of the land.
16463                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the city was broken up, and all the men of war fled by night by the way of the gate between two walls, which is by the king's garden: (now the Chaldees were against the city round about:) and the king went the way toward the plain.
16464                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the army of the Chaldees pursued after the king, and overtook him in the plains of Jericho: and all his army were scattered from him.
16465                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  So they took the king, and brought him up to the king of Babylon to Riblah; and they gave judgment upon him.
16466                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And they slew the sons of Zedekiah before his eyes, and put out the eyes of Zedekiah, and bound him with fetters of brass, and carried him to Babylon.
16467                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And in the fifth month, on the seventh day of the month, which is the nineteenth year of king Nebuchadnezzar king of Babylon, came Nebuzaradan, captain of the guard, a servant of the king of Babylon, unto Jerusalem:
16468                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And he burnt the house of the LORD, and the king's house, and all the houses of Jerusalem, and every great man's house burnt he with fire.
16469                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the army of the Chaldees, that were with the captain of the guard, brake down the walls of Jerusalem round about.
16470                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Now the rest of the people that were left in the city, and the fugitives that fell away to the king of Babylon, with the remnant of the multitude, did Nebuzaradan the captain of the guard carry away.
16471                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But the captain of the guard left of the door of the poor of the land to be vinedressers and husbandmen.
16472                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the pillars of brass that were in the house of the LORD, and the bases, and the brazen sea that was in the house of the LORD, did the Chaldees break in pieces, and carried the brass of them to Babylon.
16473                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the pots, and the shovels, and the snuffers, and the spoons, and all the vessels of brass wherewith they ministered, took they away.
16474                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the firepans, and the bowls, and such things as were of gold, in gold, and of silver, in silver, the captain of the guard took away.
16475                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The two pillars, one sea, and the bases which Solomon had made for the house of the LORD; the brass of all these vessels was without weight.
16476                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The height of the one pillar was eighteen cubits, and the chapiter upon it was brass: and the height of the chapiter three cubits; and the wreathed work, and pomegranates upon the chapiter round about, all of brass: and like unto these had the second pillar with wreathed work.
16477                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the captain of the guard took Seraiah the chief priest, and Zephaniah the second priest, and the three keepers of the door:
16478                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And out of the city he took an officer that was set over the men of war, and five men of them that were in the king's presence, which were found in the city, and the principal scribe of the host, which mustered the people of the land, and threescore men of the people of the land that were found in the city:
16479                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Nebuzaradan captain of the guard took these, and brought them to the king of Babylon to Riblah:
16480                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the king of Babylon smote them, and slew them at Riblah in the land of Hamath. So Judah was carried away out of their land.
16481                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And as for the people that remained in the land of Judah, whom Nebuchadnezzar king of Babylon had left, even over them he made Gedaliah the son of Ahikam, the son of Shaphan, ruler.
16482                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when all the captains of the armies, they and their men, heard that the king of Babylon had made Gedaliah governor, there came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and Johanan the son of Careah, and Seraiah the son of Tanhumeth the Netophathite, and Jaazaniah the son of a Maachathite, they and their men.
16483                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Gedaliah sware to them, and to their men, and said unto them, Fear not to be the servants of the Chaldees: dwell in the land, and serve the king of Babylon; and it shall be well with you.
16484                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                But it came to pass in the seventh month, that Ishmael the son of Nethaniah, the son of Elishama, of the seed royal, came, and ten men with him, and smote Gedaliah, that he died, and the Jews and the Chaldees that were with him at Mizpah.
16485                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And all the people, both small and great, and the captains of the armies, arose, and came to Egypt: for they were afraid of the Chaldees.
16486                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And it came to pass in the seven and thirtieth year of the captivity of Jehoiachin king of Judah, in the twelfth month, on the seven and twentieth day of the month, that Evilmerodach king of Babylon in the year that he began to reign did lift up the head of Jehoiachin king of Judah out of prison;
16487                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he spake kindly to him, and set his throne above the throne of the kings that were with him in Babylon;
16488                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And changed his prison garments: and he did eat bread continually before him all the days of his life.
16489                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And his allowance was a continual allowance given him of the king, a daily rate for every day, all the days of his life.
16490                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Adam, Sheth, Enosh,
16491                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Kenan, Mahalaleel, Jered,
16492                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Henoch, Methuselah, Lamech,
16493                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Noah, Shem, Ham, and Japheth.
16494                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and Tubal, and Meshech, and Tiras.
16495                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And the sons of Gomer; Ashchenaz, and Riphath, and Togarmah.
16496                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.
16497                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sons of Ham; Cush, and Mizraim, Put, and Canaan.
16498                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And the sons of Cush; Seba, and Havilah, and Sabta, and Raamah, and Sabtecha. And the sons of Raamah; Sheba, and Dedan.
16499                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Cush begat Nimrod: he began to be mighty upon the earth.
16500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,
16501                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Pathrusim, and Casluhim, (of whom came the Philistines,) and Caphthorim.
16502                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Canaan begat Zidon his firstborn, and Heth,
16503                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       The Jebusite also, and the Amorite, and the Girgashite,
16504                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the Hivite, and the Arkite, and the Sinite,
16505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the Arvadite, and the Zemarite, and the Hamathite.
16506                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The sons of Shem; Elam, and Asshur, and Arphaxad, and Lud, and Aram, and Uz, and Hul, and Gether, and Meshech.
16507                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Arphaxad begat Shelah, and Shelah begat Eber.
16508                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And unto Eber were born two sons: the name of the one was Peleg; because in his days the earth was divided: and his brother's name was Joktan.
16509                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and Jerah,
16510                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hadoram also, and Uzal, and Diklah,
16511                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Ebal, and Abimael, and Sheba,
16512                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Ophir, and Havilah, and Jobab. All these were the sons of Joktan.
16513                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Shem, Arphaxad, Shelah,
16514                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Eber, Peleg, Reu,
16515                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Serug, Nahor, Terah,
16516                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Abram; the same is Abraham.
16517                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Abraham; Isaac, and Ishmael.
16518                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          These are their generations: The firstborn of Ishmael, Nebaioth; then Kedar, and Adbeel, and Mibsam,
16519                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Mishma, and Dumah, Massa, Hadad, and Tema,
16520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Jetur, Naphish, and Kedemah. These are the sons of Ishmael.
16521                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Now the sons of Keturah, Abraham's concubine: she bare Zimran, and Jokshan, and Medan, and Midian, and Ishbak, and Shuah. And the sons of Jokshan; Sheba, and Dedan.
16522                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Midian; Ephah, and Epher, and Henoch, and Abida, and Eldaah. All these are the sons of Keturah.
16523                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Abraham begat Isaac. The sons of Isaac; Esau and Israel.
16524                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sons of Esau; Eliphaz, Reuel, and Jeush, and Jaalam, and Korah.
16525                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The sons of Eliphaz; Teman, and Omar, Zephi, and Gatam, Kenaz, and Timna, and Amalek.
16526                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The sons of Reuel; Nahath, Zerah, Shammah, and Mizzah.
16527                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Seir; Lotan, and Shobal, and Zibeon, and Anah, and Dishon, and Ezar, and Dishan.
16528                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Lotan; Hori, and Homam: and Timna was Lotan's sister.
16529                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The sons of Shobal; Alian, and Manahath, and Ebal, Shephi, and Onam. and the sons of Zibeon; Aiah, and Anah.
16530                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The sons of Anah; Dishon. And the sons of Dishon; Amram, and Eshban, and Ithran, and Cheran.
16531                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             The sons of Ezer; Bilhan, and Zavan, and Jakan. The sons of Dishan; Uz, and Aran.
16532                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now these are the kings that reigned in the land of Edom before any king reigned over the children of Israel; Bela the son of Beor: and the name of his city was Dinhabah.
16533                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Bela was dead, Jobab the son of Zerah of Bozrah reigned in his stead.
16534                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And when Jobab was dead, Husham of the land of the Temanites reigned in his stead.
16535                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And when Husham was dead, Hadad the son of Bedad, which smote Midian in the field of Moab, reigned in his stead: and the name of his city was Avith.
16536                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And when Hadad was dead, Samlah of Masrekah reigned in his stead.
16537                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Samlah was dead, Shaul of Rehoboth by the river reigned in his stead.
16538                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when Shaul was dead, Baalhanan the son of Achbor reigned in his stead.
16539                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And when Baalhanan was dead, Hadad reigned in his stead: and the name of his city was Pai; and his wife's name was Mehetabel, the daughter of Matred, the daughter of Mezahab.
16540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Hadad died also. And the dukes of Edom were; duke Timnah, duke Aliah, duke Jetheth,
16541                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Duke Aholibamah, duke Elah, duke Pinon,
16542                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Duke Kenaz, duke Teman, duke Mibzar,
16543                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Duke Magdiel, duke Iram. These are the dukes of Edom.
16544                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         These are the sons of Israel; Reuben, Simeon, Levi, and Judah, Issachar, and Zebulun,
16545                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dan, Joseph, and Benjamin, Naphtali, Gad, and Asher.
16546                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The sons of Judah; Er, and Onan, and Shelah: which three were born unto him of the daughter of Shua the Canaanitess. And Er, the firstborn of Judah, was evil in the sight of the LORD; and he slew him.
16547                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Tamar his daughter in law bore him Pharez and Zerah. All the sons of Judah were five.
16548                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The sons of Pharez; Hezron, and Hamul.
16549                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Zerah; Zimri, and Ethan, and Heman, and Calcol, and Dara: five of them in all.
16550                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Carmi; Achar, the troubler of Israel, who transgressed in the thing accursed.
16551                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Ethan; Azariah.
16552                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           The sons also of Hezron, that were born unto him; Jerahmeel, and Ram, and Chelubai.
16553                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Ram begat Amminadab; and Amminadab begat Nahshon, prince of the children of Judah;
16554                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Nahshon begat Salma, and Salma begat Boaz,
16555                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Boaz begat Obed, and Obed begat Jesse,
16556                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jesse begat his firstborn Eliab, and Abinadab the second, and Shimma the third,
16557                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Nethaneel the fourth, Raddai the fifth,
16558                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ozem the sixth, David the seventh:
16559                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Whose sisters were Zeruiah, and Abigail. And the sons of Zeruiah; Abishai, and Joab, and Asahel, three.
16560                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Abigail bare Amasa: and the father of Amasa was Jether the Ishmeelite.
16561                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Caleb the son of Hezron begat children of Azubah his wife, and of Jerioth: her sons are these; Jesher, and Shobab, and Ardon.
16562                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And when Azubah was dead, Caleb took unto him Ephrath, which bare him Hur.
16563                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Hur begat Uri, and Uri begat Bezaleel.
16564                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And afterward Hezron went in to the daughter of Machir the father of Gilead, whom he married when he was threescore years old; and she bare him Segub.
16565                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Segub begat Jair, who had three and twenty cities in the land of Gilead.
16566                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And he took Geshur, and Aram, with the towns of Jair, from them, with Kenath, and the towns thereof, even threescore cities. All these belonged to the sons of Machir the father of Gilead.
16567                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And after that Hezron was dead in Calebephratah, then Abiah Hezron's wife bare him Ashur the father of Tekoa.
16568                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And the sons of Jerahmeel the firstborn of Hezron were, Ram the firstborn, and Bunah, and Oren, and Ozem, and Ahijah.
16569                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Jerahmeel had also another wife, whose name was Atarah; she was the mother of Onam.
16570                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And the sons of Ram the firstborn of Jerahmeel were, Maaz, and Jamin, and Eker.
16571                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Onam were, Shammai, and Jada. And the sons of Shammai; Nadab and Abishur.
16572                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the name of the wife of Abishur was Abihail, and she bare him Ahban, and Molid.
16573                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And the sons of Nadab; Seled, and Appaim: but Seled died without children.
16574                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And the sons of Appaim; Ishi. And the sons of Ishi; Sheshan. And the children of Sheshan; Ahlai.
16575                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Jada the brother of Shammai; Jether, and Jonathan: and Jether died without children.
16576                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the sons of Jonathan; Peleth, and Zaza. These were the sons of Jerahmeel.
16577                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Now Sheshan had no sons, but daughters. And Sheshan had a servant, an Egyptian, whose name was Jarha.
16578                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Sheshan gave his daughter to Jarha his servant to wife; and she bare him Attai.
16579                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Attai begat Nathan, and Nathan begat Zabad,
16580                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Zabad begat Ephlal, and Ephlal begat Obed,
16581                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Obed begat Jehu, and Jehu begat Azariah,
16582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And Azariah begat Helez, and Helez begat Eleasah,
16583                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Eleasah begat Sisamai, and Sisamai begat Shallum,
16584                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Shallum begat Jekamiah, and Jekamiah begat Elishama.
16585                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now the sons of Caleb the brother of Jerahmeel were, Mesha his firstborn, which was the father of Ziph; and the sons of Mareshah the father of Hebron.
16586                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Hebron; Korah, and Tappuah, and Rekem, and Shema.
16587                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Shema begat Raham, the father of Jorkoam: and Rekem begat Shammai.
16588                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the son of Shammai was Maon: and Maon was the father of Bethzur.
16589                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         And Ephah, Caleb's concubine, bare Haran, and Moza, and Gazez: and Haran begat Gazez.
16590                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Jahdai; Regem, and Jotham, and Gesham, and Pelet, and Ephah, and Shaaph.
16591                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Maachah, Caleb's concubine, bare Sheber, and Tirhanah.
16592                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    She bare also Shaaph the father of Madmannah, Sheva the father of Machbenah, and the father of Gibea: and the daughter of Caleb was Achsa.
16593                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   These were the sons of Caleb the son of Hur, the firstborn of Ephratah; Shobal the father of Kirjathjearim.
16594                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Salma the father of Bethlehem, Hareph the father of Bethgader.
16595                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And Shobal the father of Kirjathjearim had sons; Haroeh, and half of the Manahethites.
16596                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And the families of Kirjathjearim; the Ithrites, and the Puhites, and the Shumathites, and the Mishraites; of them came the Zareathites, and the Eshtaulites,
16597                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons of Salma; Bethlehem, and the Netophathites, Ataroth, the house of Joab, and half of the Manahethites, the Zorites.
16598                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the families of the scribes which dwelt at Jabez; the Tirathites, the Shimeathites, and Suchathites. These are the Kenites that came of Hemath, the father of the house of Rechab.
16599                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Now these were the sons of David, which were born unto him in Hebron; the firstborn Amnon, of Ahinoam the Jezreelitess; the second Daniel, of Abigail the Carmelitess:
16600                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The third, Absalom the son of Maachah the daughter of Talmai king of Geshur: the fourth, Adonijah the son of Haggith:
16601                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The fifth, Shephatiah of Abital: the sixth, Ithream by Eglah his wife.
16602                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These six were born unto him in Hebron; and there he reigned seven years and six months: and in Jerusalem he reigned thirty and three years.
16603                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And these were born unto him in Jerusalem; Shimea, and Shobab, and Nathan, and Solomon, four, of Bathshua the daughter of Ammiel:
16604                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ibhar also, and Elishama, and Eliphelet,
16605                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And Nogah, and Nepheg, and Japhia,
16606                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Elishama, and Eliada, and Eliphelet, nine.
16607                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  These were all the sons of David, beside the sons of the concubines, and Tamar their sister.
16608                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               And Solomon's son was Rehoboam, Abia his son, Asa his son, Jehoshaphat his son,
16609                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Joram his son, Ahaziah his son, Joash his son,
16610                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Amaziah his son, Azariah his son, Jotham his son,
16611                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Ahaz his son, Hezekiah his son, Manasseh his son,
16612                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Amon his son, Josiah his son.
16613                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Josiah were, the firstborn Johanan, the second Jehoiakim, the third Zedekiah, the fourth Shallum.
16614                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Jehoiakim: Jeconiah his son, Zedekiah his son.
16615                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And the sons of Jeconiah; Assir, Salathiel his son,
16616                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Malchiram also, and Pedaiah, and Shenazar, Jecamiah, Hoshama, and Nedabiah.
16617                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Pedaiah were, Zerubbabel, and Shimei: and the sons of Zerubbabel; Meshullam, and Hananiah, and Shelomith their sister:
16618                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Hashubah, and Ohel, and Berechiah, and Hasadiah, Jushabhesed, five.
16619                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Hananiah; Pelatiah, and Jesaiah: the sons of Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of Shechaniah.
16620                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Shechaniah; Shemaiah: and the sons of Shemaiah; Hattush, and Igeal, and Bariah, and Neariah, and Shaphat, six.
16621                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of Neariah; Elioenai, and Hezekiah, and Azrikam, three.
16622                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And the sons of Elioenai were, Hodaiah, and Eliashib, and Pelaiah, and Akkub, and Johanan, and Dalaiah, and Anani, seven.
16623                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The sons of Judah; Pharez, Hezron, and Carmi, and Hur, and Shobal.
16624                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And Reaiah the son of Shobal begat Jahath; and Jahath begat Ahumai, and Lahad. These are the families of the Zorathites.
16625                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And these were of the father of Etam; Jezreel, and Ishma, and Idbash: and the name of their sister was Hazelelponi:
16626                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Penuel the father of Gedor, and Ezer the father of Hushah. These are the sons of Hur, the firstborn of Ephratah, the father of Bethlehem.
16627                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Ashur the father of Tekoa had two wives, Helah and Naarah.
16628                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Naarah bare him Ahuzam, and Hepher, and Temeni, and Haahashtari. These were the sons of Naarah.
16629                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And the sons of Helah were, Zereth, and Jezoar, and Ethnan.
16630                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And Coz begat Anub, and Zobebah, and the families of Aharhel the son of Harum.
16631                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Jabez was more honorable than his brethren: and his mother called his name Jabez, saying, Because I bare him with sorrow.
16632                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Jabez called on the God of Israel, saying, Oh that thou wouldest bless me indeed, and enlarge my coast, and that thine hand might be with me, and that thou wouldest keep me from evil, that it may not grieve me! And God granted him that which he requested.
16633                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Chelub the brother of Shuah begat Mehir, which was the father of Eshton.
16634                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Eshton begat Bethrapha, and Paseah, and Tehinnah the father of Irnahash. These are the men of Rechah.
16635                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And the sons of Kenaz; Othniel, and Seraiah: and the sons of Othniel; Hathath.
16636                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And Meonothai begat Ophrah: and Seraiah begat Joab, the father of the valley of Charashim; for they were craftsmen.
16637                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            And the sons of Caleb the son of Jephunneh; Iru, Elah, and Naam: and the sons of Elah, even Kenaz.
16638                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             And the sons of Jehaleleel; Ziph, and Ziphah, Tiria, and Asareel.
16639                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Ezra were, Jether, and Mered, and Epher, and Jalon: and she bare Miriam, and Shammai, and Ishbah the father of Eshtemoa.
16640                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And his wife Jehudijah bare Jered the father of Gedor, and Heber the father of Socho, and Jekuthiel the father of Zanoah. And these are the sons of Bithiah the daughter of Pharaoh, which Mered took.
16641                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And the sons of his wife Hodiah the sister of Naham, the father of Keilah the Garmite, and Eshtemoa the Maachathite.
16642                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        And the sons of Shimon were, Amnon, and Rinnah, Benhanan, and Tilon. And the sons of Ishi were, Zoheth, and Benzoheth.
16643                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   The sons of Shelah the son of Judah were, Er the father of Lecah, and Laadah the father of Mareshah, and the families of the house of them that wrought fine linen, of the house of Ashbea,
16644                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       And Jokim, and the men of Chozeba, and Joash, and Saraph, who had the dominion in Moab, and Jashubilehem. And these are ancient things.
16645                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            These were the potters, and those that dwelt among plants and hedges: there they dwelt with the king for his work.
16646                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The sons of Simeon were, Nemuel, and Jamin, Jarib, Zerah, and Shaul:
16647                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shallum his son, Mibsam his son, Mishma his son.
16648                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      And the sons of Mishma; Hamuel his son, Zacchur his son, Shimei his son.
16649                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And Shimei had sixteen sons and six daughters: but his brethren had not many children, neither did all their family multiply, like to the children of Judah.
16650                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And they dwelt at Beersheba, and Moladah, and Hazarshual,
16651                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And at Bilhah, and at Ezem, and at Tolad,
16652                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And at Bethuel, and at Hormah, and at Ziklag,
16653                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And at Bethmarcaboth, and Hazarsusim, and at Bethbirei, and at Shaaraim. These were their cities unto the reign of David.
16654                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           And their villages were, Etam, and Ain, Rimmon, and Tochen, and Ashan, five cities:
16655                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And all their villages that were round about the same cities, unto Baal. These were their habitations, and their genealogy.
16656                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And Meshobab, and Jamlech, and Joshah, the son of Amaziah,
16657                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Joel, and Jehu the son of Josibiah, the son of Seraiah, the son of Asiel,
16658                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And Elioenai, and Jaakobah, and Jeshohaiah, and Asaiah, and Adiel, and Jesimiel, and Benaiah,
16659                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     And Ziza the son of Shiphi, the son of Allon, the son of Jedaiah, the son of Shimri, the son of Shemaiah;
16660                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              These mentioned by their names were princes in their families: and the house of their fathers increased greatly.
16661                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And they went to the entrance of Gedor, even unto the east side of the valley, to seek pasture for their flocks.
16662                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And they found fat pasture and good, and the land was wide, and quiet, and peaceable; for they of Ham had dwelt there of old.
16663                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 And these written by name came in the days of Hezekiah king of Judah, and smote their tents, and the habitations that were found there, and destroyed them utterly unto this day, and dwelt in their rooms: because there was pasture there for their flocks.
16664                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              And some of them, even of the sons of Simeon, five hundred men, went to mount Seir, having for their captains Pelatiah, and Neariah, and Rephaiah, and Uzziel, the sons of Ishi.
16665                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   And they smote the rest of the Amalekites that were escaped, and dwelt there unto this day.
16666                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Now the sons of Reuben the firstborn of Israel, (for he was the firstborn; but forasmuch as he defiled his father's bed, his birthright was given unto the sons of Joseph the son of Israel: and the genealogy is not to be reckoned after the birthright.
      overall_n                    title
1             1           The Holy Quran
2             2           The Holy Quran
3             3           The Holy Quran
4             4           The Holy Quran
5             5           The Holy Quran
6             6           The Holy Quran
7             7           The Holy Quran
8             8           The Holy Quran
9             9           The Holy Quran
10           10           The Holy Quran
11           11           The Holy Quran
12           12           The Holy Quran
13           13           The Holy Quran
14           14           The Holy Quran
15           15           The Holy Quran
16           16           The Holy Quran
17           17           The Holy Quran
18           18           The Holy Quran
19           19           The Holy Quran
20           20           The Holy Quran
21           21           The Holy Quran
22           22           The Holy Quran
23           23           The Holy Quran
24           24           The Holy Quran
25           25           The Holy Quran
26           26           The Holy Quran
27           27           The Holy Quran
28           28           The Holy Quran
29           29           The Holy Quran
30           30           The Holy Quran
31           31           The Holy Quran
32           32           The Holy Quran
33           33           The Holy Quran
34           34           The Holy Quran
35           35           The Holy Quran
36           36           The Holy Quran
37           37           The Holy Quran
38           38           The Holy Quran
39           39           The Holy Quran
40           40           The Holy Quran
41           41           The Holy Quran
42           42           The Holy Quran
43           43           The Holy Quran
44           44           The Holy Quran
45           45           The Holy Quran
46           46           The Holy Quran
47           47           The Holy Quran
48           48           The Holy Quran
49           49           The Holy Quran
50           50           The Holy Quran
51           51           The Holy Quran
52           52           The Holy Quran
53           53           The Holy Quran
54           54           The Holy Quran
55           55           The Holy Quran
56           56           The Holy Quran
57           57           The Holy Quran
58           58           The Holy Quran
59           59           The Holy Quran
60           60           The Holy Quran
61           61           The Holy Quran
62           62           The Holy Quran
63           63           The Holy Quran
64           64           The Holy Quran
65           65           The Holy Quran
66           66           The Holy Quran
67           67           The Holy Quran
68           68           The Holy Quran
69           69           The Holy Quran
70           70           The Holy Quran
71           71           The Holy Quran
72           72           The Holy Quran
73           73           The Holy Quran
74           74           The Holy Quran
75           75           The Holy Quran
76           76           The Holy Quran
77           77           The Holy Quran
78           78           The Holy Quran
79           79           The Holy Quran
80           80           The Holy Quran
81           81           The Holy Quran
82           82           The Holy Quran
83           83           The Holy Quran
84           84           The Holy Quran
85           85           The Holy Quran
86           86           The Holy Quran
87           87           The Holy Quran
88           88           The Holy Quran
89           89           The Holy Quran
90           90           The Holy Quran
91           91           The Holy Quran
92           92           The Holy Quran
93           93           The Holy Quran
94           94           The Holy Quran
95           95           The Holy Quran
96           96           The Holy Quran
97           97           The Holy Quran
98           98           The Holy Quran
99           99           The Holy Quran
100         100           The Holy Quran
101         101           The Holy Quran
102         102           The Holy Quran
103         103           The Holy Quran
104         104           The Holy Quran
105         105           The Holy Quran
106         106           The Holy Quran
107         107           The Holy Quran
108         108           The Holy Quran
109         109           The Holy Quran
110         110           The Holy Quran
111         111           The Holy Quran
112         112           The Holy Quran
113         113           The Holy Quran
114         114           The Holy Quran
115         115           The Holy Quran
116         116           The Holy Quran
117         117           The Holy Quran
118         118           The Holy Quran
119         119           The Holy Quran
120         120           The Holy Quran
121         121           The Holy Quran
122         122           The Holy Quran
123         123           The Holy Quran
124         124           The Holy Quran
125         125           The Holy Quran
126         126           The Holy Quran
127         127           The Holy Quran
128         128           The Holy Quran
129         129           The Holy Quran
130         130           The Holy Quran
131         131           The Holy Quran
132         132           The Holy Quran
133         133           The Holy Quran
134         134           The Holy Quran
135         135           The Holy Quran
136         136           The Holy Quran
137         137           The Holy Quran
138         138           The Holy Quran
139         139           The Holy Quran
140         140           The Holy Quran
141         141           The Holy Quran
142         142           The Holy Quran
143         143           The Holy Quran
144         144           The Holy Quran
145         145           The Holy Quran
146         146           The Holy Quran
147         147           The Holy Quran
148         148           The Holy Quran
149         149           The Holy Quran
150         150           The Holy Quran
151         151           The Holy Quran
152         152           The Holy Quran
153         153           The Holy Quran
154         154           The Holy Quran
155         155           The Holy Quran
156         156           The Holy Quran
157         157           The Holy Quran
158         158           The Holy Quran
159         159           The Holy Quran
160         160           The Holy Quran
161         161           The Holy Quran
162         162           The Holy Quran
163         163           The Holy Quran
164         164           The Holy Quran
165         165           The Holy Quran
166         166           The Holy Quran
167         167           The Holy Quran
168         168           The Holy Quran
169         169           The Holy Quran
170         170           The Holy Quran
171         171           The Holy Quran
172         172           The Holy Quran
173         173           The Holy Quran
174         174           The Holy Quran
175         175           The Holy Quran
176         176           The Holy Quran
177         177           The Holy Quran
178         178           The Holy Quran
179         179           The Holy Quran
180         180           The Holy Quran
181         181           The Holy Quran
182         182           The Holy Quran
183         183           The Holy Quran
184         184           The Holy Quran
185         185           The Holy Quran
186         186           The Holy Quran
187         187           The Holy Quran
188         188           The Holy Quran
189         189           The Holy Quran
190         190           The Holy Quran
191         191           The Holy Quran
192         192           The Holy Quran
193         193           The Holy Quran
194         194           The Holy Quran
195         195           The Holy Quran
196         196           The Holy Quran
197         197           The Holy Quran
198         198           The Holy Quran
199         199           The Holy Quran
200         200           The Holy Quran
201         201           The Holy Quran
202         202           The Holy Quran
203         203           The Holy Quran
204         204           The Holy Quran
205         205           The Holy Quran
206         206           The Holy Quran
207         207           The Holy Quran
208         208           The Holy Quran
209         209           The Holy Quran
210         210           The Holy Quran
211         211           The Holy Quran
212         212           The Holy Quran
213         213           The Holy Quran
214         214           The Holy Quran
215         215           The Holy Quran
216         216           The Holy Quran
217         217           The Holy Quran
218         218           The Holy Quran
219         219           The Holy Quran
220         220           The Holy Quran
221         221           The Holy Quran
222         222           The Holy Quran
223         223           The Holy Quran
224         224           The Holy Quran
225         225           The Holy Quran
226         226           The Holy Quran
227         227           The Holy Quran
228         228           The Holy Quran
229         229           The Holy Quran
230         230           The Holy Quran
231         231           The Holy Quran
232         232           The Holy Quran
233         233           The Holy Quran
234         234           The Holy Quran
235         235           The Holy Quran
236         236           The Holy Quran
237         237           The Holy Quran
238         238           The Holy Quran
239         239           The Holy Quran
240         240           The Holy Quran
241         241           The Holy Quran
242         242           The Holy Quran
243         243           The Holy Quran
244         244           The Holy Quran
245         245           The Holy Quran
246         246           The Holy Quran
247         247           The Holy Quran
248         248           The Holy Quran
249         249           The Holy Quran
250         250           The Holy Quran
251         251           The Holy Quran
252         252           The Holy Quran
253         253           The Holy Quran
254         254           The Holy Quran
255         255           The Holy Quran
256         256           The Holy Quran
257         257           The Holy Quran
258         258           The Holy Quran
259         259           The Holy Quran
260         260           The Holy Quran
261         261           The Holy Quran
262         262           The Holy Quran
263         263           The Holy Quran
264         264           The Holy Quran
265         265           The Holy Quran
266         266           The Holy Quran
267         267           The Holy Quran
268         268           The Holy Quran
269         269           The Holy Quran
270         270           The Holy Quran
271         271           The Holy Quran
272         272           The Holy Quran
273         273           The Holy Quran
274         274           The Holy Quran
275         275           The Holy Quran
276         276           The Holy Quran
277         277           The Holy Quran
278         278           The Holy Quran
279         279           The Holy Quran
280         280           The Holy Quran
281         281           The Holy Quran
282         282           The Holy Quran
283         283           The Holy Quran
284         284           The Holy Quran
285         285           The Holy Quran
286         286           The Holy Quran
287         287           The Holy Quran
288         288           The Holy Quran
289         289           The Holy Quran
290         290           The Holy Quran
291         291           The Holy Quran
292         292           The Holy Quran
293         293           The Holy Quran
294         294           The Holy Quran
295         295           The Holy Quran
296         296           The Holy Quran
297         297           The Holy Quran
298         298           The Holy Quran
299         299           The Holy Quran
300         300           The Holy Quran
301         301           The Holy Quran
302         302           The Holy Quran
303         303           The Holy Quran
304         304           The Holy Quran
305         305           The Holy Quran
306         306           The Holy Quran
307         307           The Holy Quran
308         308           The Holy Quran
309         309           The Holy Quran
310         310           The Holy Quran
311         311           The Holy Quran
312         312           The Holy Quran
313         313           The Holy Quran
314         314           The Holy Quran
315         315           The Holy Quran
316         316           The Holy Quran
317         317           The Holy Quran
318         318           The Holy Quran
319         319           The Holy Quran
320         320           The Holy Quran
321         321           The Holy Quran
322         322           The Holy Quran
323         323           The Holy Quran
324         324           The Holy Quran
325         325           The Holy Quran
326         326           The Holy Quran
327         327           The Holy Quran
328         328           The Holy Quran
329         329           The Holy Quran
330         330           The Holy Quran
331         331           The Holy Quran
332         332           The Holy Quran
333         333           The Holy Quran
334         334           The Holy Quran
335         335           The Holy Quran
336         336           The Holy Quran
337         337           The Holy Quran
338         338           The Holy Quran
339         339           The Holy Quran
340         340           The Holy Quran
341         341           The Holy Quran
342         342           The Holy Quran
343         343           The Holy Quran
344         344           The Holy Quran
345         345           The Holy Quran
346         346           The Holy Quran
347         347           The Holy Quran
348         348           The Holy Quran
349         349           The Holy Quran
350         350           The Holy Quran
351         351           The Holy Quran
352         352           The Holy Quran
353         353           The Holy Quran
354         354           The Holy Quran
355         355           The Holy Quran
356         356           The Holy Quran
357         357           The Holy Quran
358         358           The Holy Quran
359         359           The Holy Quran
360         360           The Holy Quran
361         361           The Holy Quran
362         362           The Holy Quran
363         363           The Holy Quran
364         364           The Holy Quran
365         365           The Holy Quran
366         366           The Holy Quran
367         367           The Holy Quran
368         368           The Holy Quran
369         369           The Holy Quran
370         370           The Holy Quran
371         371           The Holy Quran
372         372           The Holy Quran
373         373           The Holy Quran
374         374           The Holy Quran
375         375           The Holy Quran
376         376           The Holy Quran
377         377           The Holy Quran
378         378           The Holy Quran
379         379           The Holy Quran
380         380           The Holy Quran
381         381           The Holy Quran
382         382           The Holy Quran
383         383           The Holy Quran
384         384           The Holy Quran
385         385           The Holy Quran
386         386           The Holy Quran
387         387           The Holy Quran
388         388           The Holy Quran
389         389           The Holy Quran
390         390           The Holy Quran
391         391           The Holy Quran
392         392           The Holy Quran
393         393           The Holy Quran
394         394           The Holy Quran
395         395           The Holy Quran
396         396           The Holy Quran
397         397           The Holy Quran
398         398           The Holy Quran
399         399           The Holy Quran
400         400           The Holy Quran
401         401           The Holy Quran
402         402           The Holy Quran
403         403           The Holy Quran
404         404           The Holy Quran
405         405           The Holy Quran
406         406           The Holy Quran
407         407           The Holy Quran
408         408           The Holy Quran
409         409           The Holy Quran
410         410           The Holy Quran
411         411           The Holy Quran
412         412           The Holy Quran
413         413           The Holy Quran
414         414           The Holy Quran
415         415           The Holy Quran
416         416           The Holy Quran
417         417           The Holy Quran
418         418           The Holy Quran
419         419           The Holy Quran
420         420           The Holy Quran
421         421           The Holy Quran
422         422           The Holy Quran
423         423           The Holy Quran
424         424           The Holy Quran
425         425           The Holy Quran
426         426           The Holy Quran
427         427           The Holy Quran
428         428           The Holy Quran
429         429           The Holy Quran
430         430           The Holy Quran
431         431           The Holy Quran
432         432           The Holy Quran
433         433           The Holy Quran
434         434           The Holy Quran
435         435           The Holy Quran
436         436           The Holy Quran
437         437           The Holy Quran
438         438           The Holy Quran
439         439           The Holy Quran
440         440           The Holy Quran
441         441           The Holy Quran
442         442           The Holy Quran
443         443           The Holy Quran
444         444           The Holy Quran
445         445           The Holy Quran
446         446           The Holy Quran
447         447           The Holy Quran
448         448           The Holy Quran
449         449           The Holy Quran
450         450           The Holy Quran
451         451           The Holy Quran
452         452           The Holy Quran
453         453           The Holy Quran
454         454           The Holy Quran
455         455           The Holy Quran
456         456           The Holy Quran
457         457           The Holy Quran
458         458           The Holy Quran
459         459           The Holy Quran
460         460           The Holy Quran
461         461           The Holy Quran
462         462           The Holy Quran
463         463           The Holy Quran
464         464           The Holy Quran
465         465           The Holy Quran
466         466           The Holy Quran
467         467           The Holy Quran
468         468           The Holy Quran
469         469           The Holy Quran
470         470           The Holy Quran
471         471           The Holy Quran
472         472           The Holy Quran
473         473           The Holy Quran
474         474           The Holy Quran
475         475           The Holy Quran
476         476           The Holy Quran
477         477           The Holy Quran
478         478           The Holy Quran
479         479           The Holy Quran
480         480           The Holy Quran
481         481           The Holy Quran
482         482           The Holy Quran
483         483           The Holy Quran
484         484           The Holy Quran
485         485           The Holy Quran
486         486           The Holy Quran
487         487           The Holy Quran
488         488           The Holy Quran
489         489           The Holy Quran
490         490           The Holy Quran
491         491           The Holy Quran
492         492           The Holy Quran
493         493           The Holy Quran
494         494           The Holy Quran
495         495           The Holy Quran
496         496           The Holy Quran
497         497           The Holy Quran
498         498           The Holy Quran
499         499           The Holy Quran
500         500           The Holy Quran
501         501           The Holy Quran
502         502           The Holy Quran
503         503           The Holy Quran
504         504           The Holy Quran
505         505           The Holy Quran
506         506           The Holy Quran
507         507           The Holy Quran
508         508           The Holy Quran
509         509           The Holy Quran
510         510           The Holy Quran
511         511           The Holy Quran
512         512           The Holy Quran
513         513           The Holy Quran
514         514           The Holy Quran
515         515           The Holy Quran
516         516           The Holy Quran
517         517           The Holy Quran
518         518           The Holy Quran
519         519           The Holy Quran
520         520           The Holy Quran
521         521           The Holy Quran
522         522           The Holy Quran
523         523           The Holy Quran
524         524           The Holy Quran
525         525           The Holy Quran
526         526           The Holy Quran
527         527           The Holy Quran
528         528           The Holy Quran
529         529           The Holy Quran
530         530           The Holy Quran
531         531           The Holy Quran
532         532           The Holy Quran
533         533           The Holy Quran
534         534           The Holy Quran
535         535           The Holy Quran
536         536           The Holy Quran
537         537           The Holy Quran
538         538           The Holy Quran
539         539           The Holy Quran
540         540           The Holy Quran
541         541           The Holy Quran
542         542           The Holy Quran
543         543           The Holy Quran
544         544           The Holy Quran
545         545           The Holy Quran
546         546           The Holy Quran
547         547           The Holy Quran
548         548           The Holy Quran
549         549           The Holy Quran
550         550           The Holy Quran
551         551           The Holy Quran
552         552           The Holy Quran
553         553           The Holy Quran
554         554           The Holy Quran
555         555           The Holy Quran
556         556           The Holy Quran
557         557           The Holy Quran
558         558           The Holy Quran
559         559           The Holy Quran
560         560           The Holy Quran
561         561           The Holy Quran
562         562           The Holy Quran
563         563           The Holy Quran
564         564           The Holy Quran
565         565           The Holy Quran
566         566           The Holy Quran
567         567           The Holy Quran
568         568           The Holy Quran
569         569           The Holy Quran
570         570           The Holy Quran
571         571           The Holy Quran
572         572           The Holy Quran
573         573           The Holy Quran
574         574           The Holy Quran
575         575           The Holy Quran
576         576           The Holy Quran
577         577           The Holy Quran
578         578           The Holy Quran
579         579           The Holy Quran
580         580           The Holy Quran
581         581           The Holy Quran
582         582           The Holy Quran
583         583           The Holy Quran
584         584           The Holy Quran
585         585           The Holy Quran
586         586           The Holy Quran
587         587           The Holy Quran
588         588           The Holy Quran
589         589           The Holy Quran
590         590           The Holy Quran
591         591           The Holy Quran
592         592           The Holy Quran
593         593           The Holy Quran
594         594           The Holy Quran
595         595           The Holy Quran
596         596           The Holy Quran
597         597           The Holy Quran
598         598           The Holy Quran
599         599           The Holy Quran
600         600           The Holy Quran
601         601           The Holy Quran
602         602           The Holy Quran
603         603           The Holy Quran
604         604           The Holy Quran
605         605           The Holy Quran
606         606           The Holy Quran
607         607           The Holy Quran
608         608           The Holy Quran
609         609           The Holy Quran
610         610           The Holy Quran
611         611           The Holy Quran
612         612           The Holy Quran
613         613           The Holy Quran
614         614           The Holy Quran
615         615           The Holy Quran
616         616           The Holy Quran
617         617           The Holy Quran
618         618           The Holy Quran
619         619           The Holy Quran
620         620           The Holy Quran
621         621           The Holy Quran
622         622           The Holy Quran
623         623           The Holy Quran
624         624           The Holy Quran
625         625           The Holy Quran
626         626           The Holy Quran
627         627           The Holy Quran
628         628           The Holy Quran
629         629           The Holy Quran
630         630           The Holy Quran
631         631           The Holy Quran
632         632           The Holy Quran
633         633           The Holy Quran
634         634           The Holy Quran
635         635           The Holy Quran
636         636           The Holy Quran
637         637           The Holy Quran
638         638           The Holy Quran
639         639           The Holy Quran
640         640           The Holy Quran
641         641           The Holy Quran
642         642           The Holy Quran
643         643           The Holy Quran
644         644           The Holy Quran
645         645           The Holy Quran
646         646           The Holy Quran
647         647           The Holy Quran
648         648           The Holy Quran
649         649           The Holy Quran
650         650           The Holy Quran
651         651           The Holy Quran
652         652           The Holy Quran
653         653           The Holy Quran
654         654           The Holy Quran
655         655           The Holy Quran
656         656           The Holy Quran
657         657           The Holy Quran
658         658           The Holy Quran
659         659           The Holy Quran
660         660           The Holy Quran
661         661           The Holy Quran
662         662           The Holy Quran
663         663           The Holy Quran
664         664           The Holy Quran
665         665           The Holy Quran
666         666           The Holy Quran
667         667           The Holy Quran
668         668           The Holy Quran
669         669           The Holy Quran
670         670           The Holy Quran
671         671           The Holy Quran
672         672           The Holy Quran
673         673           The Holy Quran
674         674           The Holy Quran
675         675           The Holy Quran
676         676           The Holy Quran
677         677           The Holy Quran
678         678           The Holy Quran
679         679           The Holy Quran
680         680           The Holy Quran
681         681           The Holy Quran
682         682           The Holy Quran
683         683           The Holy Quran
684         684           The Holy Quran
685         685           The Holy Quran
686         686           The Holy Quran
687         687           The Holy Quran
688         688           The Holy Quran
689         689           The Holy Quran
690         690           The Holy Quran
691         691           The Holy Quran
692         692           The Holy Quran
693         693           The Holy Quran
694         694           The Holy Quran
695         695           The Holy Quran
696         696           The Holy Quran
697         697           The Holy Quran
698         698           The Holy Quran
699         699           The Holy Quran
700         700           The Holy Quran
701         701           The Holy Quran
702         702           The Holy Quran
703         703           The Holy Quran
704         704           The Holy Quran
705         705           The Holy Quran
706         706           The Holy Quran
707         707           The Holy Quran
708         708           The Holy Quran
709         709           The Holy Quran
710         710           The Holy Quran
711         711           The Holy Quran
712         712           The Holy Quran
713         713           The Holy Quran
714         714           The Holy Quran
715         715           The Holy Quran
716         716           The Holy Quran
717         717           The Holy Quran
718         718           The Holy Quran
719         719           The Holy Quran
720         720           The Holy Quran
721         721           The Holy Quran
722         722           The Holy Quran
723         723           The Holy Quran
724         724           The Holy Quran
725         725           The Holy Quran
726         726           The Holy Quran
727         727           The Holy Quran
728         728           The Holy Quran
729         729           The Holy Quran
730         730           The Holy Quran
731         731           The Holy Quran
732         732           The Holy Quran
733         733           The Holy Quran
734         734           The Holy Quran
735         735           The Holy Quran
736         736           The Holy Quran
737         737           The Holy Quran
738         738           The Holy Quran
739         739           The Holy Quran
740         740           The Holy Quran
741         741           The Holy Quran
742         742           The Holy Quran
743         743           The Holy Quran
744         744           The Holy Quran
745         745           The Holy Quran
746         746           The Holy Quran
747         747           The Holy Quran
748         748           The Holy Quran
749         749           The Holy Quran
750         750           The Holy Quran
751         751           The Holy Quran
752         752           The Holy Quran
753         753           The Holy Quran
754         754           The Holy Quran
755         755           The Holy Quran
756         756           The Holy Quran
757         757           The Holy Quran
758         758           The Holy Quran
759         759           The Holy Quran
760         760           The Holy Quran
761         761           The Holy Quran
762         762           The Holy Quran
763         763           The Holy Quran
764         764           The Holy Quran
765         765           The Holy Quran
766         766           The Holy Quran
767         767           The Holy Quran
768         768           The Holy Quran
769         769           The Holy Quran
770         770           The Holy Quran
771         771           The Holy Quran
772         772           The Holy Quran
773         773           The Holy Quran
774         774           The Holy Quran
775         775           The Holy Quran
776         776           The Holy Quran
777         777           The Holy Quran
778         778           The Holy Quran
779         779           The Holy Quran
780         780           The Holy Quran
781         781           The Holy Quran
782         782           The Holy Quran
783         783           The Holy Quran
784         784           The Holy Quran
785         785           The Holy Quran
786         786           The Holy Quran
787         787           The Holy Quran
788         788           The Holy Quran
789         789           The Holy Quran
790         790           The Holy Quran
791         791           The Holy Quran
792         792           The Holy Quran
793         793           The Holy Quran
794         794           The Holy Quran
795         795           The Holy Quran
796         796           The Holy Quran
797         797           The Holy Quran
798         798           The Holy Quran
799         799           The Holy Quran
800         800           The Holy Quran
801         801           The Holy Quran
802         802           The Holy Quran
803         803           The Holy Quran
804         804           The Holy Quran
805         805           The Holy Quran
806         806           The Holy Quran
807         807           The Holy Quran
808         808           The Holy Quran
809         809           The Holy Quran
810         810           The Holy Quran
811         811           The Holy Quran
812         812           The Holy Quran
813         813           The Holy Quran
814         814           The Holy Quran
815         815           The Holy Quran
816         816           The Holy Quran
817         817           The Holy Quran
818         818           The Holy Quran
819         819           The Holy Quran
820         820           The Holy Quran
821         821           The Holy Quran
822         822           The Holy Quran
823         823           The Holy Quran
824         824           The Holy Quran
825         825           The Holy Quran
826         826           The Holy Quran
827         827           The Holy Quran
828         828           The Holy Quran
829         829           The Holy Quran
830         830           The Holy Quran
831         831           The Holy Quran
832         832           The Holy Quran
833         833           The Holy Quran
834         834           The Holy Quran
835         835           The Holy Quran
836         836           The Holy Quran
837         837           The Holy Quran
838         838           The Holy Quran
839         839           The Holy Quran
840         840           The Holy Quran
841         841           The Holy Quran
842         842           The Holy Quran
843         843           The Holy Quran
844         844           The Holy Quran
845         845           The Holy Quran
846         846           The Holy Quran
847         847           The Holy Quran
848         848           The Holy Quran
849         849           The Holy Quran
850         850           The Holy Quran
851         851           The Holy Quran
852         852           The Holy Quran
853         853           The Holy Quran
854         854           The Holy Quran
855         855           The Holy Quran
856         856           The Holy Quran
857         857           The Holy Quran
858         858           The Holy Quran
859         859           The Holy Quran
860         860           The Holy Quran
861         861           The Holy Quran
862         862           The Holy Quran
863         863           The Holy Quran
864         864           The Holy Quran
865         865           The Holy Quran
866         866           The Holy Quran
867         867           The Holy Quran
868         868           The Holy Quran
869         869           The Holy Quran
870         870           The Holy Quran
871         871           The Holy Quran
872         872           The Holy Quran
873         873           The Holy Quran
874         874           The Holy Quran
875         875           The Holy Quran
876         876           The Holy Quran
877         877           The Holy Quran
878         878           The Holy Quran
879         879           The Holy Quran
880         880           The Holy Quran
881         881           The Holy Quran
882         882           The Holy Quran
883         883           The Holy Quran
884         884           The Holy Quran
885         885           The Holy Quran
886         886           The Holy Quran
887         887           The Holy Quran
888         888           The Holy Quran
889         889           The Holy Quran
890         890           The Holy Quran
891         891           The Holy Quran
892         892           The Holy Quran
893         893           The Holy Quran
894         894           The Holy Quran
895         895           The Holy Quran
896         896           The Holy Quran
897         897           The Holy Quran
898         898           The Holy Quran
899         899           The Holy Quran
900         900           The Holy Quran
901         901           The Holy Quran
902         902           The Holy Quran
903         903           The Holy Quran
904         904           The Holy Quran
905         905           The Holy Quran
906         906           The Holy Quran
907         907           The Holy Quran
908         908           The Holy Quran
909         909           The Holy Quran
910         910           The Holy Quran
911         911           The Holy Quran
912         912           The Holy Quran
913         913           The Holy Quran
914         914           The Holy Quran
915         915           The Holy Quran
916         916           The Holy Quran
917         917           The Holy Quran
918         918           The Holy Quran
919         919           The Holy Quran
920         920           The Holy Quran
921         921           The Holy Quran
922         922           The Holy Quran
923         923           The Holy Quran
924         924           The Holy Quran
925         925           The Holy Quran
926         926           The Holy Quran
927         927           The Holy Quran
928         928           The Holy Quran
929         929           The Holy Quran
930         930           The Holy Quran
931         931           The Holy Quran
932         932           The Holy Quran
933         933           The Holy Quran
934         934           The Holy Quran
935         935           The Holy Quran
936         936           The Holy Quran
937         937           The Holy Quran
938         938           The Holy Quran
939         939           The Holy Quran
940         940           The Holy Quran
941         941           The Holy Quran
942         942           The Holy Quran
943         943           The Holy Quran
944         944           The Holy Quran
945         945           The Holy Quran
946         946           The Holy Quran
947         947           The Holy Quran
948         948           The Holy Quran
949         949           The Holy Quran
950         950           The Holy Quran
951         951           The Holy Quran
952         952           The Holy Quran
953         953           The Holy Quran
954         954           The Holy Quran
955         955           The Holy Quran
956         956           The Holy Quran
957         957           The Holy Quran
958         958           The Holy Quran
959         959           The Holy Quran
960         960           The Holy Quran
961         961           The Holy Quran
962         962           The Holy Quran
963         963           The Holy Quran
964         964           The Holy Quran
965         965           The Holy Quran
966         966           The Holy Quran
967         967           The Holy Quran
968         968           The Holy Quran
969         969           The Holy Quran
970         970           The Holy Quran
971         971           The Holy Quran
972         972           The Holy Quran
973         973           The Holy Quran
974         974           The Holy Quran
975         975           The Holy Quran
976         976           The Holy Quran
977         977           The Holy Quran
978         978           The Holy Quran
979         979           The Holy Quran
980         980           The Holy Quran
981         981           The Holy Quran
982         982           The Holy Quran
983         983           The Holy Quran
984         984           The Holy Quran
985         985           The Holy Quran
986         986           The Holy Quran
987         987           The Holy Quran
988         988           The Holy Quran
989         989           The Holy Quran
990         990           The Holy Quran
991         991           The Holy Quran
992         992           The Holy Quran
993         993           The Holy Quran
994         994           The Holy Quran
995         995           The Holy Quran
996         996           The Holy Quran
997         997           The Holy Quran
998         998           The Holy Quran
999         999           The Holy Quran
1000       1000           The Holy Quran
1001       1001           The Holy Quran
1002       1002           The Holy Quran
1003       1003           The Holy Quran
1004       1004           The Holy Quran
1005       1005           The Holy Quran
1006       1006           The Holy Quran
1007       1007           The Holy Quran
1008       1008           The Holy Quran
1009       1009           The Holy Quran
1010       1010           The Holy Quran
1011       1011           The Holy Quran
1012       1012           The Holy Quran
1013       1013           The Holy Quran
1014       1014           The Holy Quran
1015       1015           The Holy Quran
1016       1016           The Holy Quran
1017       1017           The Holy Quran
1018       1018           The Holy Quran
1019       1019           The Holy Quran
1020       1020           The Holy Quran
1021       1021           The Holy Quran
1022       1022           The Holy Quran
1023       1023           The Holy Quran
1024       1024           The Holy Quran
1025       1025           The Holy Quran
1026       1026           The Holy Quran
1027       1027           The Holy Quran
1028       1028           The Holy Quran
1029       1029           The Holy Quran
1030       1030           The Holy Quran
1031       1031           The Holy Quran
1032       1032           The Holy Quran
1033       1033           The Holy Quran
1034       1034           The Holy Quran
1035       1035           The Holy Quran
1036       1036           The Holy Quran
1037       1037           The Holy Quran
1038       1038           The Holy Quran
1039       1039           The Holy Quran
1040       1040           The Holy Quran
1041       1041           The Holy Quran
1042       1042           The Holy Quran
1043       1043           The Holy Quran
1044       1044           The Holy Quran
1045       1045           The Holy Quran
1046       1046           The Holy Quran
1047       1047           The Holy Quran
1048       1048           The Holy Quran
1049       1049           The Holy Quran
1050       1050           The Holy Quran
1051       1051           The Holy Quran
1052       1052           The Holy Quran
1053       1053           The Holy Quran
1054       1054           The Holy Quran
1055       1055           The Holy Quran
1056       1056           The Holy Quran
1057       1057           The Holy Quran
1058       1058           The Holy Quran
1059       1059           The Holy Quran
1060       1060           The Holy Quran
1061       1061           The Holy Quran
1062       1062           The Holy Quran
1063       1063           The Holy Quran
1064       1064           The Holy Quran
1065       1065           The Holy Quran
1066       1066           The Holy Quran
1067       1067           The Holy Quran
1068       1068           The Holy Quran
1069       1069           The Holy Quran
1070       1070           The Holy Quran
1071       1071           The Holy Quran
1072       1072           The Holy Quran
1073       1073           The Holy Quran
1074       1074           The Holy Quran
1075       1075           The Holy Quran
1076       1076           The Holy Quran
1077       1077           The Holy Quran
1078       1078           The Holy Quran
1079       1079           The Holy Quran
1080       1080           The Holy Quran
1081       1081           The Holy Quran
1082       1082           The Holy Quran
1083       1083           The Holy Quran
1084       1084           The Holy Quran
1085       1085           The Holy Quran
1086       1086           The Holy Quran
1087       1087           The Holy Quran
1088       1088           The Holy Quran
1089       1089           The Holy Quran
1090       1090           The Holy Quran
1091       1091           The Holy Quran
1092       1092           The Holy Quran
1093       1093           The Holy Quran
1094       1094           The Holy Quran
1095       1095           The Holy Quran
1096       1096           The Holy Quran
1097       1097           The Holy Quran
1098       1098           The Holy Quran
1099       1099           The Holy Quran
1100       1100           The Holy Quran
1101       1101           The Holy Quran
1102       1102           The Holy Quran
1103       1103           The Holy Quran
1104       1104           The Holy Quran
1105       1105           The Holy Quran
1106       1106           The Holy Quran
1107       1107           The Holy Quran
1108       1108           The Holy Quran
1109       1109           The Holy Quran
1110       1110           The Holy Quran
1111       1111           The Holy Quran
1112       1112           The Holy Quran
1113       1113           The Holy Quran
1114       1114           The Holy Quran
1115       1115           The Holy Quran
1116       1116           The Holy Quran
1117       1117           The Holy Quran
1118       1118           The Holy Quran
1119       1119           The Holy Quran
1120       1120           The Holy Quran
1121       1121           The Holy Quran
1122       1122           The Holy Quran
1123       1123           The Holy Quran
1124       1124           The Holy Quran
1125       1125           The Holy Quran
1126       1126           The Holy Quran
1127       1127           The Holy Quran
1128       1128           The Holy Quran
1129       1129           The Holy Quran
1130       1130           The Holy Quran
1131       1131           The Holy Quran
1132       1132           The Holy Quran
1133       1133           The Holy Quran
1134       1134           The Holy Quran
1135       1135           The Holy Quran
1136       1136           The Holy Quran
1137       1137           The Holy Quran
1138       1138           The Holy Quran
1139       1139           The Holy Quran
1140       1140           The Holy Quran
1141       1141           The Holy Quran
1142       1142           The Holy Quran
1143       1143           The Holy Quran
1144       1144           The Holy Quran
1145       1145           The Holy Quran
1146       1146           The Holy Quran
1147       1147           The Holy Quran
1148       1148           The Holy Quran
1149       1149           The Holy Quran
1150       1150           The Holy Quran
1151       1151           The Holy Quran
1152       1152           The Holy Quran
1153       1153           The Holy Quran
1154       1154           The Holy Quran
1155       1155           The Holy Quran
1156       1156           The Holy Quran
1157       1157           The Holy Quran
1158       1158           The Holy Quran
1159       1159           The Holy Quran
1160       1160           The Holy Quran
1161       1161           The Holy Quran
1162       1162           The Holy Quran
1163       1163           The Holy Quran
1164       1164           The Holy Quran
1165       1165           The Holy Quran
1166       1166           The Holy Quran
1167       1167           The Holy Quran
1168       1168           The Holy Quran
1169       1169           The Holy Quran
1170       1170           The Holy Quran
1171       1171           The Holy Quran
1172       1172           The Holy Quran
1173       1173           The Holy Quran
1174       1174           The Holy Quran
1175       1175           The Holy Quran
1176       1176           The Holy Quran
1177       1177           The Holy Quran
1178       1178           The Holy Quran
1179       1179           The Holy Quran
1180       1180           The Holy Quran
1181       1181           The Holy Quran
1182       1182           The Holy Quran
1183       1183           The Holy Quran
1184       1184           The Holy Quran
1185       1185           The Holy Quran
1186       1186           The Holy Quran
1187       1187           The Holy Quran
1188       1188           The Holy Quran
1189       1189           The Holy Quran
1190       1190           The Holy Quran
1191       1191           The Holy Quran
1192       1192           The Holy Quran
1193       1193           The Holy Quran
1194       1194           The Holy Quran
1195       1195           The Holy Quran
1196       1196           The Holy Quran
1197       1197           The Holy Quran
1198       1198           The Holy Quran
1199       1199           The Holy Quran
1200       1200           The Holy Quran
1201       1201           The Holy Quran
1202       1202           The Holy Quran
1203       1203           The Holy Quran
1204       1204           The Holy Quran
1205       1205           The Holy Quran
1206       1206           The Holy Quran
1207       1207           The Holy Quran
1208       1208           The Holy Quran
1209       1209           The Holy Quran
1210       1210           The Holy Quran
1211       1211           The Holy Quran
1212       1212           The Holy Quran
1213       1213           The Holy Quran
1214       1214           The Holy Quran
1215       1215           The Holy Quran
1216       1216           The Holy Quran
1217       1217           The Holy Quran
1218       1218           The Holy Quran
1219       1219           The Holy Quran
1220       1220           The Holy Quran
1221       1221           The Holy Quran
1222       1222           The Holy Quran
1223       1223           The Holy Quran
1224       1224           The Holy Quran
1225       1225           The Holy Quran
1226       1226           The Holy Quran
1227       1227           The Holy Quran
1228       1228           The Holy Quran
1229       1229           The Holy Quran
1230       1230           The Holy Quran
1231       1231           The Holy Quran
1232       1232           The Holy Quran
1233       1233           The Holy Quran
1234       1234           The Holy Quran
1235       1235           The Holy Quran
1236       1236           The Holy Quran
1237       1237           The Holy Quran
1238       1238           The Holy Quran
1239       1239           The Holy Quran
1240       1240           The Holy Quran
1241       1241           The Holy Quran
1242       1242           The Holy Quran
1243       1243           The Holy Quran
1244       1244           The Holy Quran
1245       1245           The Holy Quran
1246       1246           The Holy Quran
1247       1247           The Holy Quran
1248       1248           The Holy Quran
1249       1249           The Holy Quran
1250       1250           The Holy Quran
1251       1251           The Holy Quran
1252       1252           The Holy Quran
1253       1253           The Holy Quran
1254       1254           The Holy Quran
1255       1255           The Holy Quran
1256       1256           The Holy Quran
1257       1257           The Holy Quran
1258       1258           The Holy Quran
1259       1259           The Holy Quran
1260       1260           The Holy Quran
1261       1261           The Holy Quran
1262       1262           The Holy Quran
1263       1263           The Holy Quran
1264       1264           The Holy Quran
1265       1265           The Holy Quran
1266       1266           The Holy Quran
1267       1267           The Holy Quran
1268       1268           The Holy Quran
1269       1269           The Holy Quran
1270       1270           The Holy Quran
1271       1271           The Holy Quran
1272       1272           The Holy Quran
1273       1273           The Holy Quran
1274       1274           The Holy Quran
1275       1275           The Holy Quran
1276       1276           The Holy Quran
1277       1277           The Holy Quran
1278       1278           The Holy Quran
1279       1279           The Holy Quran
1280       1280           The Holy Quran
1281       1281           The Holy Quran
1282       1282           The Holy Quran
1283       1283           The Holy Quran
1284       1284           The Holy Quran
1285       1285           The Holy Quran
1286       1286           The Holy Quran
1287       1287           The Holy Quran
1288       1288           The Holy Quran
1289       1289           The Holy Quran
1290       1290           The Holy Quran
1291       1291           The Holy Quran
1292       1292           The Holy Quran
1293       1293           The Holy Quran
1294       1294           The Holy Quran
1295       1295           The Holy Quran
1296       1296           The Holy Quran
1297       1297           The Holy Quran
1298       1298           The Holy Quran
1299       1299           The Holy Quran
1300       1300           The Holy Quran
1301       1301           The Holy Quran
1302       1302           The Holy Quran
1303       1303           The Holy Quran
1304       1304           The Holy Quran
1305       1305           The Holy Quran
1306       1306           The Holy Quran
1307       1307           The Holy Quran
1308       1308           The Holy Quran
1309       1309           The Holy Quran
1310       1310           The Holy Quran
1311       1311           The Holy Quran
1312       1312           The Holy Quran
1313       1313           The Holy Quran
1314       1314           The Holy Quran
1315       1315           The Holy Quran
1316       1316           The Holy Quran
1317       1317           The Holy Quran
1318       1318           The Holy Quran
1319       1319           The Holy Quran
1320       1320           The Holy Quran
1321       1321           The Holy Quran
1322       1322           The Holy Quran
1323       1323           The Holy Quran
1324       1324           The Holy Quran
1325       1325           The Holy Quran
1326       1326           The Holy Quran
1327       1327           The Holy Quran
1328       1328           The Holy Quran
1329       1329           The Holy Quran
1330       1330           The Holy Quran
1331       1331           The Holy Quran
1332       1332           The Holy Quran
1333       1333           The Holy Quran
1334       1334           The Holy Quran
1335       1335           The Holy Quran
1336       1336           The Holy Quran
1337       1337           The Holy Quran
1338       1338           The Holy Quran
1339       1339           The Holy Quran
1340       1340           The Holy Quran
1341       1341           The Holy Quran
1342       1342           The Holy Quran
1343       1343           The Holy Quran
1344       1344           The Holy Quran
1345       1345           The Holy Quran
1346       1346           The Holy Quran
1347       1347           The Holy Quran
1348       1348           The Holy Quran
1349       1349           The Holy Quran
1350       1350           The Holy Quran
1351       1351           The Holy Quran
1352       1352           The Holy Quran
1353       1353           The Holy Quran
1354       1354           The Holy Quran
1355       1355           The Holy Quran
1356       1356           The Holy Quran
1357       1357           The Holy Quran
1358       1358           The Holy Quran
1359       1359           The Holy Quran
1360       1360           The Holy Quran
1361       1361           The Holy Quran
1362       1362           The Holy Quran
1363       1363           The Holy Quran
1364       1364           The Holy Quran
1365       1365           The Holy Quran
1366       1366           The Holy Quran
1367       1367           The Holy Quran
1368       1368           The Holy Quran
1369       1369           The Holy Quran
1370       1370           The Holy Quran
1371       1371           The Holy Quran
1372       1372           The Holy Quran
1373       1373           The Holy Quran
1374       1374           The Holy Quran
1375       1375           The Holy Quran
1376       1376           The Holy Quran
1377       1377           The Holy Quran
1378       1378           The Holy Quran
1379       1379           The Holy Quran
1380       1380           The Holy Quran
1381       1381           The Holy Quran
1382       1382           The Holy Quran
1383       1383           The Holy Quran
1384       1384           The Holy Quran
1385       1385           The Holy Quran
1386       1386           The Holy Quran
1387       1387           The Holy Quran
1388       1388           The Holy Quran
1389       1389           The Holy Quran
1390       1390           The Holy Quran
1391       1391           The Holy Quran
1392       1392           The Holy Quran
1393       1393           The Holy Quran
1394       1394           The Holy Quran
1395       1395           The Holy Quran
1396       1396           The Holy Quran
1397       1397           The Holy Quran
1398       1398           The Holy Quran
1399       1399           The Holy Quran
1400       1400           The Holy Quran
1401       1401           The Holy Quran
1402       1402           The Holy Quran
1403       1403           The Holy Quran
1404       1404           The Holy Quran
1405       1405           The Holy Quran
1406       1406           The Holy Quran
1407       1407           The Holy Quran
1408       1408           The Holy Quran
1409       1409           The Holy Quran
1410       1410           The Holy Quran
1411       1411           The Holy Quran
1412       1412           The Holy Quran
1413       1413           The Holy Quran
1414       1414           The Holy Quran
1415       1415           The Holy Quran
1416       1416           The Holy Quran
1417       1417           The Holy Quran
1418       1418           The Holy Quran
1419       1419           The Holy Quran
1420       1420           The Holy Quran
1421       1421           The Holy Quran
1422       1422           The Holy Quran
1423       1423           The Holy Quran
1424       1424           The Holy Quran
1425       1425           The Holy Quran
1426       1426           The Holy Quran
1427       1427           The Holy Quran
1428       1428           The Holy Quran
1429       1429           The Holy Quran
1430       1430           The Holy Quran
1431       1431           The Holy Quran
1432       1432           The Holy Quran
1433       1433           The Holy Quran
1434       1434           The Holy Quran
1435       1435           The Holy Quran
1436       1436           The Holy Quran
1437       1437           The Holy Quran
1438       1438           The Holy Quran
1439       1439           The Holy Quran
1440       1440           The Holy Quran
1441       1441           The Holy Quran
1442       1442           The Holy Quran
1443       1443           The Holy Quran
1444       1444           The Holy Quran
1445       1445           The Holy Quran
1446       1446           The Holy Quran
1447       1447           The Holy Quran
1448       1448           The Holy Quran
1449       1449           The Holy Quran
1450       1450           The Holy Quran
1451       1451           The Holy Quran
1452       1452           The Holy Quran
1453       1453           The Holy Quran
1454       1454           The Holy Quran
1455       1455           The Holy Quran
1456       1456           The Holy Quran
1457       1457           The Holy Quran
1458       1458           The Holy Quran
1459       1459           The Holy Quran
1460       1460           The Holy Quran
1461       1461           The Holy Quran
1462       1462           The Holy Quran
1463       1463           The Holy Quran
1464       1464           The Holy Quran
1465       1465           The Holy Quran
1466       1466           The Holy Quran
1467       1467           The Holy Quran
1468       1468           The Holy Quran
1469       1469           The Holy Quran
1470       1470           The Holy Quran
1471       1471           The Holy Quran
1472       1472           The Holy Quran
1473       1473           The Holy Quran
1474       1474           The Holy Quran
1475       1475           The Holy Quran
1476       1476           The Holy Quran
1477       1477           The Holy Quran
1478       1478           The Holy Quran
1479       1479           The Holy Quran
1480       1480           The Holy Quran
1481       1481           The Holy Quran
1482       1482           The Holy Quran
1483       1483           The Holy Quran
1484       1484           The Holy Quran
1485       1485           The Holy Quran
1486       1486           The Holy Quran
1487       1487           The Holy Quran
1488       1488           The Holy Quran
1489       1489           The Holy Quran
1490       1490           The Holy Quran
1491       1491           The Holy Quran
1492       1492           The Holy Quran
1493       1493           The Holy Quran
1494       1494           The Holy Quran
1495       1495           The Holy Quran
1496       1496           The Holy Quran
1497       1497           The Holy Quran
1498       1498           The Holy Quran
1499       1499           The Holy Quran
1500       1500           The Holy Quran
1501       1501           The Holy Quran
1502       1502           The Holy Quran
1503       1503           The Holy Quran
1504       1504           The Holy Quran
1505       1505           The Holy Quran
1506       1506           The Holy Quran
1507       1507           The Holy Quran
1508       1508           The Holy Quran
1509       1509           The Holy Quran
1510       1510           The Holy Quran
1511       1511           The Holy Quran
1512       1512           The Holy Quran
1513       1513           The Holy Quran
1514       1514           The Holy Quran
1515       1515           The Holy Quran
1516       1516           The Holy Quran
1517       1517           The Holy Quran
1518       1518           The Holy Quran
1519       1519           The Holy Quran
1520       1520           The Holy Quran
1521       1521           The Holy Quran
1522       1522           The Holy Quran
1523       1523           The Holy Quran
1524       1524           The Holy Quran
1525       1525           The Holy Quran
1526       1526           The Holy Quran
1527       1527           The Holy Quran
1528       1528           The Holy Quran
1529       1529           The Holy Quran
1530       1530           The Holy Quran
1531       1531           The Holy Quran
1532       1532           The Holy Quran
1533       1533           The Holy Quran
1534       1534           The Holy Quran
1535       1535           The Holy Quran
1536       1536           The Holy Quran
1537       1537           The Holy Quran
1538       1538           The Holy Quran
1539       1539           The Holy Quran
1540       1540           The Holy Quran
1541       1541           The Holy Quran
1542       1542           The Holy Quran
1543       1543           The Holy Quran
1544       1544           The Holy Quran
1545       1545           The Holy Quran
1546       1546           The Holy Quran
1547       1547           The Holy Quran
1548       1548           The Holy Quran
1549       1549           The Holy Quran
1550       1550           The Holy Quran
1551       1551           The Holy Quran
1552       1552           The Holy Quran
1553       1553           The Holy Quran
1554       1554           The Holy Quran
1555       1555           The Holy Quran
1556       1556           The Holy Quran
1557       1557           The Holy Quran
1558       1558           The Holy Quran
1559       1559           The Holy Quran
1560       1560           The Holy Quran
1561       1561           The Holy Quran
1562       1562           The Holy Quran
1563       1563           The Holy Quran
1564       1564           The Holy Quran
1565       1565           The Holy Quran
1566       1566           The Holy Quran
1567       1567           The Holy Quran
1568       1568           The Holy Quran
1569       1569           The Holy Quran
1570       1570           The Holy Quran
1571       1571           The Holy Quran
1572       1572           The Holy Quran
1573       1573           The Holy Quran
1574       1574           The Holy Quran
1575       1575           The Holy Quran
1576       1576           The Holy Quran
1577       1577           The Holy Quran
1578       1578           The Holy Quran
1579       1579           The Holy Quran
1580       1580           The Holy Quran
1581       1581           The Holy Quran
1582       1582           The Holy Quran
1583       1583           The Holy Quran
1584       1584           The Holy Quran
1585       1585           The Holy Quran
1586       1586           The Holy Quran
1587       1587           The Holy Quran
1588       1588           The Holy Quran
1589       1589           The Holy Quran
1590       1590           The Holy Quran
1591       1591           The Holy Quran
1592       1592           The Holy Quran
1593       1593           The Holy Quran
1594       1594           The Holy Quran
1595       1595           The Holy Quran
1596       1596           The Holy Quran
1597       1597           The Holy Quran
1598       1598           The Holy Quran
1599       1599           The Holy Quran
1600       1600           The Holy Quran
1601       1601           The Holy Quran
1602       1602           The Holy Quran
1603       1603           The Holy Quran
1604       1604           The Holy Quran
1605       1605           The Holy Quran
1606       1606           The Holy Quran
1607       1607           The Holy Quran
1608       1608           The Holy Quran
1609       1609           The Holy Quran
1610       1610           The Holy Quran
1611       1611           The Holy Quran
1612       1612           The Holy Quran
1613       1613           The Holy Quran
1614       1614           The Holy Quran
1615       1615           The Holy Quran
1616       1616           The Holy Quran
1617       1617           The Holy Quran
1618       1618           The Holy Quran
1619       1619           The Holy Quran
1620       1620           The Holy Quran
1621       1621           The Holy Quran
1622       1622           The Holy Quran
1623       1623           The Holy Quran
1624       1624           The Holy Quran
1625       1625           The Holy Quran
1626       1626           The Holy Quran
1627       1627           The Holy Quran
1628       1628           The Holy Quran
1629       1629           The Holy Quran
1630       1630           The Holy Quran
1631       1631           The Holy Quran
1632       1632           The Holy Quran
1633       1633           The Holy Quran
1634       1634           The Holy Quran
1635       1635           The Holy Quran
1636       1636           The Holy Quran
1637       1637           The Holy Quran
1638       1638           The Holy Quran
1639       1639           The Holy Quran
1640       1640           The Holy Quran
1641       1641           The Holy Quran
1642       1642           The Holy Quran
1643       1643           The Holy Quran
1644       1644           The Holy Quran
1645       1645           The Holy Quran
1646       1646           The Holy Quran
1647       1647           The Holy Quran
1648       1648           The Holy Quran
1649       1649           The Holy Quran
1650       1650           The Holy Quran
1651       1651           The Holy Quran
1652       1652           The Holy Quran
1653       1653           The Holy Quran
1654       1654           The Holy Quran
1655       1655           The Holy Quran
1656       1656           The Holy Quran
1657       1657           The Holy Quran
1658       1658           The Holy Quran
1659       1659           The Holy Quran
1660       1660           The Holy Quran
1661       1661           The Holy Quran
1662       1662           The Holy Quran
1663       1663           The Holy Quran
1664       1664           The Holy Quran
1665       1665           The Holy Quran
1666       1666           The Holy Quran
1667       1667           The Holy Quran
1668       1668           The Holy Quran
1669       1669           The Holy Quran
1670       1670           The Holy Quran
1671       1671           The Holy Quran
1672       1672           The Holy Quran
1673       1673           The Holy Quran
1674       1674           The Holy Quran
1675       1675           The Holy Quran
1676       1676           The Holy Quran
1677       1677           The Holy Quran
1678       1678           The Holy Quran
1679       1679           The Holy Quran
1680       1680           The Holy Quran
1681       1681           The Holy Quran
1682       1682           The Holy Quran
1683       1683           The Holy Quran
1684       1684           The Holy Quran
1685       1685           The Holy Quran
1686       1686           The Holy Quran
1687       1687           The Holy Quran
1688       1688           The Holy Quran
1689       1689           The Holy Quran
1690       1690           The Holy Quran
1691       1691           The Holy Quran
1692       1692           The Holy Quran
1693       1693           The Holy Quran
1694       1694           The Holy Quran
1695       1695           The Holy Quran
1696       1696           The Holy Quran
1697       1697           The Holy Quran
1698       1698           The Holy Quran
1699       1699           The Holy Quran
1700       1700           The Holy Quran
1701       1701           The Holy Quran
1702       1702           The Holy Quran
1703       1703           The Holy Quran
1704       1704           The Holy Quran
1705       1705           The Holy Quran
1706       1706           The Holy Quran
1707       1707           The Holy Quran
1708       1708           The Holy Quran
1709       1709           The Holy Quran
1710       1710           The Holy Quran
1711       1711           The Holy Quran
1712       1712           The Holy Quran
1713       1713           The Holy Quran
1714       1714           The Holy Quran
1715       1715           The Holy Quran
1716       1716           The Holy Quran
1717       1717           The Holy Quran
1718       1718           The Holy Quran
1719       1719           The Holy Quran
1720       1720           The Holy Quran
1721       1721           The Holy Quran
1722       1722           The Holy Quran
1723       1723           The Holy Quran
1724       1724           The Holy Quran
1725       1725           The Holy Quran
1726       1726           The Holy Quran
1727       1727           The Holy Quran
1728       1728           The Holy Quran
1729       1729           The Holy Quran
1730       1730           The Holy Quran
1731       1731           The Holy Quran
1732       1732           The Holy Quran
1733       1733           The Holy Quran
1734       1734           The Holy Quran
1735       1735           The Holy Quran
1736       1736           The Holy Quran
1737       1737           The Holy Quran
1738       1738           The Holy Quran
1739       1739           The Holy Quran
1740       1740           The Holy Quran
1741       1741           The Holy Quran
1742       1742           The Holy Quran
1743       1743           The Holy Quran
1744       1744           The Holy Quran
1745       1745           The Holy Quran
1746       1746           The Holy Quran
1747       1747           The Holy Quran
1748       1748           The Holy Quran
1749       1749           The Holy Quran
1750       1750           The Holy Quran
1751       1751           The Holy Quran
1752       1752           The Holy Quran
1753       1753           The Holy Quran
1754       1754           The Holy Quran
1755       1755           The Holy Quran
1756       1756           The Holy Quran
1757       1757           The Holy Quran
1758       1758           The Holy Quran
1759       1759           The Holy Quran
1760       1760           The Holy Quran
1761       1761           The Holy Quran
1762       1762           The Holy Quran
1763       1763           The Holy Quran
1764       1764           The Holy Quran
1765       1765           The Holy Quran
1766       1766           The Holy Quran
1767       1767           The Holy Quran
1768       1768           The Holy Quran
1769       1769           The Holy Quran
1770       1770           The Holy Quran
1771       1771           The Holy Quran
1772       1772           The Holy Quran
1773       1773           The Holy Quran
1774       1774           The Holy Quran
1775       1775           The Holy Quran
1776       1776           The Holy Quran
1777       1777           The Holy Quran
1778       1778           The Holy Quran
1779       1779           The Holy Quran
1780       1780           The Holy Quran
1781       1781           The Holy Quran
1782       1782           The Holy Quran
1783       1783           The Holy Quran
1784       1784           The Holy Quran
1785       1785           The Holy Quran
1786       1786           The Holy Quran
1787       1787           The Holy Quran
1788       1788           The Holy Quran
1789       1789           The Holy Quran
1790       1790           The Holy Quran
1791       1791           The Holy Quran
1792       1792           The Holy Quran
1793       1793           The Holy Quran
1794       1794           The Holy Quran
1795       1795           The Holy Quran
1796       1796           The Holy Quran
1797       1797           The Holy Quran
1798       1798           The Holy Quran
1799       1799           The Holy Quran
1800       1800           The Holy Quran
1801       1801           The Holy Quran
1802       1802           The Holy Quran
1803       1803           The Holy Quran
1804       1804           The Holy Quran
1805       1805           The Holy Quran
1806       1806           The Holy Quran
1807       1807           The Holy Quran
1808       1808           The Holy Quran
1809       1809           The Holy Quran
1810       1810           The Holy Quran
1811       1811           The Holy Quran
1812       1812           The Holy Quran
1813       1813           The Holy Quran
1814       1814           The Holy Quran
1815       1815           The Holy Quran
1816       1816           The Holy Quran
1817       1817           The Holy Quran
1818       1818           The Holy Quran
1819       1819           The Holy Quran
1820       1820           The Holy Quran
1821       1821           The Holy Quran
1822       1822           The Holy Quran
1823       1823           The Holy Quran
1824       1824           The Holy Quran
1825       1825           The Holy Quran
1826       1826           The Holy Quran
1827       1827           The Holy Quran
1828       1828           The Holy Quran
1829       1829           The Holy Quran
1830       1830           The Holy Quran
1831       1831           The Holy Quran
1832       1832           The Holy Quran
1833       1833           The Holy Quran
1834       1834           The Holy Quran
1835       1835           The Holy Quran
1836       1836           The Holy Quran
1837       1837           The Holy Quran
1838       1838           The Holy Quran
1839       1839           The Holy Quran
1840       1840           The Holy Quran
1841       1841           The Holy Quran
1842       1842           The Holy Quran
1843       1843           The Holy Quran
1844       1844           The Holy Quran
1845       1845           The Holy Quran
1846       1846           The Holy Quran
1847       1847           The Holy Quran
1848       1848           The Holy Quran
1849       1849           The Holy Quran
1850       1850           The Holy Quran
1851       1851           The Holy Quran
1852       1852           The Holy Quran
1853       1853           The Holy Quran
1854       1854           The Holy Quran
1855       1855           The Holy Quran
1856       1856           The Holy Quran
1857       1857           The Holy Quran
1858       1858           The Holy Quran
1859       1859           The Holy Quran
1860       1860           The Holy Quran
1861       1861           The Holy Quran
1862       1862           The Holy Quran
1863       1863           The Holy Quran
1864       1864           The Holy Quran
1865       1865           The Holy Quran
1866       1866           The Holy Quran
1867       1867           The Holy Quran
1868       1868           The Holy Quran
1869       1869           The Holy Quran
1870       1870           The Holy Quran
1871       1871           The Holy Quran
1872       1872           The Holy Quran
1873       1873           The Holy Quran
1874       1874           The Holy Quran
1875       1875           The Holy Quran
1876       1876           The Holy Quran
1877       1877           The Holy Quran
1878       1878           The Holy Quran
1879       1879           The Holy Quran
1880       1880           The Holy Quran
1881       1881           The Holy Quran
1882       1882           The Holy Quran
1883       1883           The Holy Quran
1884       1884           The Holy Quran
1885       1885           The Holy Quran
1886       1886           The Holy Quran
1887       1887           The Holy Quran
1888       1888           The Holy Quran
1889       1889           The Holy Quran
1890       1890           The Holy Quran
1891       1891           The Holy Quran
1892       1892           The Holy Quran
1893       1893           The Holy Quran
1894       1894           The Holy Quran
1895       1895           The Holy Quran
1896       1896           The Holy Quran
1897       1897           The Holy Quran
1898       1898           The Holy Quran
1899       1899           The Holy Quran
1900       1900           The Holy Quran
1901       1901           The Holy Quran
1902       1902           The Holy Quran
1903       1903           The Holy Quran
1904       1904           The Holy Quran
1905       1905           The Holy Quran
1906       1906           The Holy Quran
1907       1907           The Holy Quran
1908       1908           The Holy Quran
1909       1909           The Holy Quran
1910       1910           The Holy Quran
1911       1911           The Holy Quran
1912       1912           The Holy Quran
1913       1913           The Holy Quran
1914       1914           The Holy Quran
1915       1915           The Holy Quran
1916       1916           The Holy Quran
1917       1917           The Holy Quran
1918       1918           The Holy Quran
1919       1919           The Holy Quran
1920       1920           The Holy Quran
1921       1921           The Holy Quran
1922       1922           The Holy Quran
1923       1923           The Holy Quran
1924       1924           The Holy Quran
1925       1925           The Holy Quran
1926       1926           The Holy Quran
1927       1927           The Holy Quran
1928       1928           The Holy Quran
1929       1929           The Holy Quran
1930       1930           The Holy Quran
1931       1931           The Holy Quran
1932       1932           The Holy Quran
1933       1933           The Holy Quran
1934       1934           The Holy Quran
1935       1935           The Holy Quran
1936       1936           The Holy Quran
1937       1937           The Holy Quran
1938       1938           The Holy Quran
1939       1939           The Holy Quran
1940       1940           The Holy Quran
1941       1941           The Holy Quran
1942       1942           The Holy Quran
1943       1943           The Holy Quran
1944       1944           The Holy Quran
1945       1945           The Holy Quran
1946       1946           The Holy Quran
1947       1947           The Holy Quran
1948       1948           The Holy Quran
1949       1949           The Holy Quran
1950       1950           The Holy Quran
1951       1951           The Holy Quran
1952       1952           The Holy Quran
1953       1953           The Holy Quran
1954       1954           The Holy Quran
1955       1955           The Holy Quran
1956       1956           The Holy Quran
1957       1957           The Holy Quran
1958       1958           The Holy Quran
1959       1959           The Holy Quran
1960       1960           The Holy Quran
1961       1961           The Holy Quran
1962       1962           The Holy Quran
1963       1963           The Holy Quran
1964       1964           The Holy Quran
1965       1965           The Holy Quran
1966       1966           The Holy Quran
1967       1967           The Holy Quran
1968       1968           The Holy Quran
1969       1969           The Holy Quran
1970       1970           The Holy Quran
1971       1971           The Holy Quran
1972       1972           The Holy Quran
1973       1973           The Holy Quran
1974       1974           The Holy Quran
1975       1975           The Holy Quran
1976       1976           The Holy Quran
1977       1977           The Holy Quran
1978       1978           The Holy Quran
1979       1979           The Holy Quran
1980       1980           The Holy Quran
1981       1981           The Holy Quran
1982       1982           The Holy Quran
1983       1983           The Holy Quran
1984       1984           The Holy Quran
1985       1985           The Holy Quran
1986       1986           The Holy Quran
1987       1987           The Holy Quran
1988       1988           The Holy Quran
1989       1989           The Holy Quran
1990       1990           The Holy Quran
1991       1991           The Holy Quran
1992       1992           The Holy Quran
1993       1993           The Holy Quran
1994       1994           The Holy Quran
1995       1995           The Holy Quran
1996       1996           The Holy Quran
1997       1997           The Holy Quran
1998       1998           The Holy Quran
1999       1999           The Holy Quran
2000       2000           The Holy Quran
2001       2001           The Holy Quran
2002       2002           The Holy Quran
2003       2003           The Holy Quran
2004       2004           The Holy Quran
2005       2005           The Holy Quran
2006       2006           The Holy Quran
2007       2007           The Holy Quran
2008       2008           The Holy Quran
2009       2009           The Holy Quran
2010       2010           The Holy Quran
2011       2011           The Holy Quran
2012       2012           The Holy Quran
2013       2013           The Holy Quran
2014       2014           The Holy Quran
2015       2015           The Holy Quran
2016       2016           The Holy Quran
2017       2017           The Holy Quran
2018       2018           The Holy Quran
2019       2019           The Holy Quran
2020       2020           The Holy Quran
2021       2021           The Holy Quran
2022       2022           The Holy Quran
2023       2023           The Holy Quran
2024       2024           The Holy Quran
2025       2025           The Holy Quran
2026       2026           The Holy Quran
2027       2027           The Holy Quran
2028       2028           The Holy Quran
2029       2029           The Holy Quran
2030       2030           The Holy Quran
2031       2031           The Holy Quran
2032       2032           The Holy Quran
2033       2033           The Holy Quran
2034       2034           The Holy Quran
2035       2035           The Holy Quran
2036       2036           The Holy Quran
2037       2037           The Holy Quran
2038       2038           The Holy Quran
2039       2039           The Holy Quran
2040       2040           The Holy Quran
2041       2041           The Holy Quran
2042       2042           The Holy Quran
2043       2043           The Holy Quran
2044       2044           The Holy Quran
2045       2045           The Holy Quran
2046       2046           The Holy Quran
2047       2047           The Holy Quran
2048       2048           The Holy Quran
2049       2049           The Holy Quran
2050       2050           The Holy Quran
2051       2051           The Holy Quran
2052       2052           The Holy Quran
2053       2053           The Holy Quran
2054       2054           The Holy Quran
2055       2055           The Holy Quran
2056       2056           The Holy Quran
2057       2057           The Holy Quran
2058       2058           The Holy Quran
2059       2059           The Holy Quran
2060       2060           The Holy Quran
2061       2061           The Holy Quran
2062       2062           The Holy Quran
2063       2063           The Holy Quran
2064       2064           The Holy Quran
2065       2065           The Holy Quran
2066       2066           The Holy Quran
2067       2067           The Holy Quran
2068       2068           The Holy Quran
2069       2069           The Holy Quran
2070       2070           The Holy Quran
2071       2071           The Holy Quran
2072       2072           The Holy Quran
2073       2073           The Holy Quran
2074       2074           The Holy Quran
2075       2075           The Holy Quran
2076       2076           The Holy Quran
2077       2077           The Holy Quran
2078       2078           The Holy Quran
2079       2079           The Holy Quran
2080       2080           The Holy Quran
2081       2081           The Holy Quran
2082       2082           The Holy Quran
2083       2083           The Holy Quran
2084       2084           The Holy Quran
2085       2085           The Holy Quran
2086       2086           The Holy Quran
2087       2087           The Holy Quran
2088       2088           The Holy Quran
2089       2089           The Holy Quran
2090       2090           The Holy Quran
2091       2091           The Holy Quran
2092       2092           The Holy Quran
2093       2093           The Holy Quran
2094       2094           The Holy Quran
2095       2095           The Holy Quran
2096       2096           The Holy Quran
2097       2097           The Holy Quran
2098       2098           The Holy Quran
2099       2099           The Holy Quran
2100       2100           The Holy Quran
2101       2101           The Holy Quran
2102       2102           The Holy Quran
2103       2103           The Holy Quran
2104       2104           The Holy Quran
2105       2105           The Holy Quran
2106       2106           The Holy Quran
2107       2107           The Holy Quran
2108       2108           The Holy Quran
2109       2109           The Holy Quran
2110       2110           The Holy Quran
2111       2111           The Holy Quran
2112       2112           The Holy Quran
2113       2113           The Holy Quran
2114       2114           The Holy Quran
2115       2115           The Holy Quran
2116       2116           The Holy Quran
2117       2117           The Holy Quran
2118       2118           The Holy Quran
2119       2119           The Holy Quran
2120       2120           The Holy Quran
2121       2121           The Holy Quran
2122       2122           The Holy Quran
2123       2123           The Holy Quran
2124       2124           The Holy Quran
2125       2125           The Holy Quran
2126       2126           The Holy Quran
2127       2127           The Holy Quran
2128       2128           The Holy Quran
2129       2129           The Holy Quran
2130       2130           The Holy Quran
2131       2131           The Holy Quran
2132       2132           The Holy Quran
2133       2133           The Holy Quran
2134       2134           The Holy Quran
2135       2135           The Holy Quran
2136       2136           The Holy Quran
2137       2137           The Holy Quran
2138       2138           The Holy Quran
2139       2139           The Holy Quran
2140       2140           The Holy Quran
2141       2141           The Holy Quran
2142       2142           The Holy Quran
2143       2143           The Holy Quran
2144       2144           The Holy Quran
2145       2145           The Holy Quran
2146       2146           The Holy Quran
2147       2147           The Holy Quran
2148       2148           The Holy Quran
2149       2149           The Holy Quran
2150       2150           The Holy Quran
2151       2151           The Holy Quran
2152       2152           The Holy Quran
2153       2153           The Holy Quran
2154       2154           The Holy Quran
2155       2155           The Holy Quran
2156       2156           The Holy Quran
2157       2157           The Holy Quran
2158       2158           The Holy Quran
2159       2159           The Holy Quran
2160       2160           The Holy Quran
2161       2161           The Holy Quran
2162       2162           The Holy Quran
2163       2163           The Holy Quran
2164       2164           The Holy Quran
2165       2165           The Holy Quran
2166       2166           The Holy Quran
2167       2167           The Holy Quran
2168       2168           The Holy Quran
2169       2169           The Holy Quran
2170       2170           The Holy Quran
2171       2171           The Holy Quran
2172       2172           The Holy Quran
2173       2173           The Holy Quran
2174       2174           The Holy Quran
2175       2175           The Holy Quran
2176       2176           The Holy Quran
2177       2177           The Holy Quran
2178       2178           The Holy Quran
2179       2179           The Holy Quran
2180       2180           The Holy Quran
2181       2181           The Holy Quran
2182       2182           The Holy Quran
2183       2183           The Holy Quran
2184       2184           The Holy Quran
2185       2185           The Holy Quran
2186       2186           The Holy Quran
2187       2187           The Holy Quran
2188       2188           The Holy Quran
2189       2189           The Holy Quran
2190       2190           The Holy Quran
2191       2191           The Holy Quran
2192       2192           The Holy Quran
2193       2193           The Holy Quran
2194       2194           The Holy Quran
2195       2195           The Holy Quran
2196       2196           The Holy Quran
2197       2197           The Holy Quran
2198       2198           The Holy Quran
2199       2199           The Holy Quran
2200       2200           The Holy Quran
2201       2201           The Holy Quran
2202       2202           The Holy Quran
2203       2203           The Holy Quran
2204       2204           The Holy Quran
2205       2205           The Holy Quran
2206       2206           The Holy Quran
2207       2207           The Holy Quran
2208       2208           The Holy Quran
2209       2209           The Holy Quran
2210       2210           The Holy Quran
2211       2211           The Holy Quran
2212       2212           The Holy Quran
2213       2213           The Holy Quran
2214       2214           The Holy Quran
2215       2215           The Holy Quran
2216       2216           The Holy Quran
2217       2217           The Holy Quran
2218       2218           The Holy Quran
2219       2219           The Holy Quran
2220       2220           The Holy Quran
2221       2221           The Holy Quran
2222       2222           The Holy Quran
2223       2223           The Holy Quran
2224       2224           The Holy Quran
2225       2225           The Holy Quran
2226       2226           The Holy Quran
2227       2227           The Holy Quran
2228       2228           The Holy Quran
2229       2229           The Holy Quran
2230       2230           The Holy Quran
2231       2231           The Holy Quran
2232       2232           The Holy Quran
2233       2233           The Holy Quran
2234       2234           The Holy Quran
2235       2235           The Holy Quran
2236       2236           The Holy Quran
2237       2237           The Holy Quran
2238       2238           The Holy Quran
2239       2239           The Holy Quran
2240       2240           The Holy Quran
2241       2241           The Holy Quran
2242       2242           The Holy Quran
2243       2243           The Holy Quran
2244       2244           The Holy Quran
2245       2245           The Holy Quran
2246       2246           The Holy Quran
2247       2247           The Holy Quran
2248       2248           The Holy Quran
2249       2249           The Holy Quran
2250       2250           The Holy Quran
2251       2251           The Holy Quran
2252       2252           The Holy Quran
2253       2253           The Holy Quran
2254       2254           The Holy Quran
2255       2255           The Holy Quran
2256       2256           The Holy Quran
2257       2257           The Holy Quran
2258       2258           The Holy Quran
2259       2259           The Holy Quran
2260       2260           The Holy Quran
2261       2261           The Holy Quran
2262       2262           The Holy Quran
2263       2263           The Holy Quran
2264       2264           The Holy Quran
2265       2265           The Holy Quran
2266       2266           The Holy Quran
2267       2267           The Holy Quran
2268       2268           The Holy Quran
2269       2269           The Holy Quran
2270       2270           The Holy Quran
2271       2271           The Holy Quran
2272       2272           The Holy Quran
2273       2273           The Holy Quran
2274       2274           The Holy Quran
2275       2275           The Holy Quran
2276       2276           The Holy Quran
2277       2277           The Holy Quran
2278       2278           The Holy Quran
2279       2279           The Holy Quran
2280       2280           The Holy Quran
2281       2281           The Holy Quran
2282       2282           The Holy Quran
2283       2283           The Holy Quran
2284       2284           The Holy Quran
2285       2285           The Holy Quran
2286       2286           The Holy Quran
2287       2287           The Holy Quran
2288       2288           The Holy Quran
2289       2289           The Holy Quran
2290       2290           The Holy Quran
2291       2291           The Holy Quran
2292       2292           The Holy Quran
2293       2293           The Holy Quran
2294       2294           The Holy Quran
2295       2295           The Holy Quran
2296       2296           The Holy Quran
2297       2297           The Holy Quran
2298       2298           The Holy Quran
2299       2299           The Holy Quran
2300       2300           The Holy Quran
2301       2301           The Holy Quran
2302       2302           The Holy Quran
2303       2303           The Holy Quran
2304       2304           The Holy Quran
2305       2305           The Holy Quran
2306       2306           The Holy Quran
2307       2307           The Holy Quran
2308       2308           The Holy Quran
2309       2309           The Holy Quran
2310       2310           The Holy Quran
2311       2311           The Holy Quran
2312       2312           The Holy Quran
2313       2313           The Holy Quran
2314       2314           The Holy Quran
2315       2315           The Holy Quran
2316       2316           The Holy Quran
2317       2317           The Holy Quran
2318       2318           The Holy Quran
2319       2319           The Holy Quran
2320       2320           The Holy Quran
2321       2321           The Holy Quran
2322       2322           The Holy Quran
2323       2323           The Holy Quran
2324       2324           The Holy Quran
2325       2325           The Holy Quran
2326       2326           The Holy Quran
2327       2327           The Holy Quran
2328       2328           The Holy Quran
2329       2329           The Holy Quran
2330       2330           The Holy Quran
2331       2331           The Holy Quran
2332       2332           The Holy Quran
2333       2333           The Holy Quran
2334       2334           The Holy Quran
2335       2335           The Holy Quran
2336       2336           The Holy Quran
2337       2337           The Holy Quran
2338       2338           The Holy Quran
2339       2339           The Holy Quran
2340       2340           The Holy Quran
2341       2341           The Holy Quran
2342       2342           The Holy Quran
2343       2343           The Holy Quran
2344       2344           The Holy Quran
2345       2345           The Holy Quran
2346       2346           The Holy Quran
2347       2347           The Holy Quran
2348       2348           The Holy Quran
2349       2349           The Holy Quran
2350       2350           The Holy Quran
2351       2351           The Holy Quran
2352       2352           The Holy Quran
2353       2353           The Holy Quran
2354       2354           The Holy Quran
2355       2355           The Holy Quran
2356       2356           The Holy Quran
2357       2357           The Holy Quran
2358       2358           The Holy Quran
2359       2359           The Holy Quran
2360       2360           The Holy Quran
2361       2361           The Holy Quran
2362       2362           The Holy Quran
2363       2363           The Holy Quran
2364       2364           The Holy Quran
2365       2365           The Holy Quran
2366       2366           The Holy Quran
2367       2367           The Holy Quran
2368       2368           The Holy Quran
2369       2369           The Holy Quran
2370       2370           The Holy Quran
2371       2371           The Holy Quran
2372       2372           The Holy Quran
2373       2373           The Holy Quran
2374       2374           The Holy Quran
2375       2375           The Holy Quran
2376       2376           The Holy Quran
2377       2377           The Holy Quran
2378       2378           The Holy Quran
2379       2379           The Holy Quran
2380       2380           The Holy Quran
2381       2381           The Holy Quran
2382       2382           The Holy Quran
2383       2383           The Holy Quran
2384       2384           The Holy Quran
2385       2385           The Holy Quran
2386       2386           The Holy Quran
2387       2387           The Holy Quran
2388       2388           The Holy Quran
2389       2389           The Holy Quran
2390       2390           The Holy Quran
2391       2391           The Holy Quran
2392       2392           The Holy Quran
2393       2393           The Holy Quran
2394       2394           The Holy Quran
2395       2395           The Holy Quran
2396       2396           The Holy Quran
2397       2397           The Holy Quran
2398       2398           The Holy Quran
2399       2399           The Holy Quran
2400       2400           The Holy Quran
2401       2401           The Holy Quran
2402       2402           The Holy Quran
2403       2403           The Holy Quran
2404       2404           The Holy Quran
2405       2405           The Holy Quran
2406       2406           The Holy Quran
2407       2407           The Holy Quran
2408       2408           The Holy Quran
2409       2409           The Holy Quran
2410       2410           The Holy Quran
2411       2411           The Holy Quran
2412       2412           The Holy Quran
2413       2413           The Holy Quran
2414       2414           The Holy Quran
2415       2415           The Holy Quran
2416       2416           The Holy Quran
2417       2417           The Holy Quran
2418       2418           The Holy Quran
2419       2419           The Holy Quran
2420       2420           The Holy Quran
2421       2421           The Holy Quran
2422       2422           The Holy Quran
2423       2423           The Holy Quran
2424       2424           The Holy Quran
2425       2425           The Holy Quran
2426       2426           The Holy Quran
2427       2427           The Holy Quran
2428       2428           The Holy Quran
2429       2429           The Holy Quran
2430       2430           The Holy Quran
2431       2431           The Holy Quran
2432       2432           The Holy Quran
2433       2433           The Holy Quran
2434       2434           The Holy Quran
2435       2435           The Holy Quran
2436       2436           The Holy Quran
2437       2437           The Holy Quran
2438       2438           The Holy Quran
2439       2439           The Holy Quran
2440       2440           The Holy Quran
2441       2441           The Holy Quran
2442       2442           The Holy Quran
2443       2443           The Holy Quran
2444       2444           The Holy Quran
2445       2445           The Holy Quran
2446       2446           The Holy Quran
2447       2447           The Holy Quran
2448       2448           The Holy Quran
2449       2449           The Holy Quran
2450       2450           The Holy Quran
2451       2451           The Holy Quran
2452       2452           The Holy Quran
2453       2453           The Holy Quran
2454       2454           The Holy Quran
2455       2455           The Holy Quran
2456       2456           The Holy Quran
2457       2457           The Holy Quran
2458       2458           The Holy Quran
2459       2459           The Holy Quran
2460       2460           The Holy Quran
2461       2461           The Holy Quran
2462       2462           The Holy Quran
2463       2463           The Holy Quran
2464       2464           The Holy Quran
2465       2465           The Holy Quran
2466       2466           The Holy Quran
2467       2467           The Holy Quran
2468       2468           The Holy Quran
2469       2469           The Holy Quran
2470       2470           The Holy Quran
2471       2471           The Holy Quran
2472       2472           The Holy Quran
2473       2473           The Holy Quran
2474       2474           The Holy Quran
2475       2475           The Holy Quran
2476       2476           The Holy Quran
2477       2477           The Holy Quran
2478       2478           The Holy Quran
2479       2479           The Holy Quran
2480       2480           The Holy Quran
2481       2481           The Holy Quran
2482       2482           The Holy Quran
2483       2483           The Holy Quran
2484       2484           The Holy Quran
2485       2485           The Holy Quran
2486       2486           The Holy Quran
2487       2487           The Holy Quran
2488       2488           The Holy Quran
2489       2489           The Holy Quran
2490       2490           The Holy Quran
2491       2491           The Holy Quran
2492       2492           The Holy Quran
2493       2493           The Holy Quran
2494       2494           The Holy Quran
2495       2495           The Holy Quran
2496       2496           The Holy Quran
2497       2497           The Holy Quran
2498       2498           The Holy Quran
2499       2499           The Holy Quran
2500       2500           The Holy Quran
2501       2501           The Holy Quran
2502       2502           The Holy Quran
2503       2503           The Holy Quran
2504       2504           The Holy Quran
2505       2505           The Holy Quran
2506       2506           The Holy Quran
2507       2507           The Holy Quran
2508       2508           The Holy Quran
2509       2509           The Holy Quran
2510       2510           The Holy Quran
2511       2511           The Holy Quran
2512       2512           The Holy Quran
2513       2513           The Holy Quran
2514       2514           The Holy Quran
2515       2515           The Holy Quran
2516       2516           The Holy Quran
2517       2517           The Holy Quran
2518       2518           The Holy Quran
2519       2519           The Holy Quran
2520       2520           The Holy Quran
2521       2521           The Holy Quran
2522       2522           The Holy Quran
2523       2523           The Holy Quran
2524       2524           The Holy Quran
2525       2525           The Holy Quran
2526       2526           The Holy Quran
2527       2527           The Holy Quran
2528       2528           The Holy Quran
2529       2529           The Holy Quran
2530       2530           The Holy Quran
2531       2531           The Holy Quran
2532       2532           The Holy Quran
2533       2533           The Holy Quran
2534       2534           The Holy Quran
2535       2535           The Holy Quran
2536       2536           The Holy Quran
2537       2537           The Holy Quran
2538       2538           The Holy Quran
2539       2539           The Holy Quran
2540       2540           The Holy Quran
2541       2541           The Holy Quran
2542       2542           The Holy Quran
2543       2543           The Holy Quran
2544       2544           The Holy Quran
2545       2545           The Holy Quran
2546       2546           The Holy Quran
2547       2547           The Holy Quran
2548       2548           The Holy Quran
2549       2549           The Holy Quran
2550       2550           The Holy Quran
2551       2551           The Holy Quran
2552       2552           The Holy Quran
2553       2553           The Holy Quran
2554       2554           The Holy Quran
2555       2555           The Holy Quran
2556       2556           The Holy Quran
2557       2557           The Holy Quran
2558       2558           The Holy Quran
2559       2559           The Holy Quran
2560       2560           The Holy Quran
2561       2561           The Holy Quran
2562       2562           The Holy Quran
2563       2563           The Holy Quran
2564       2564           The Holy Quran
2565       2565           The Holy Quran
2566       2566           The Holy Quran
2567       2567           The Holy Quran
2568       2568           The Holy Quran
2569       2569           The Holy Quran
2570       2570           The Holy Quran
2571       2571           The Holy Quran
2572       2572           The Holy Quran
2573       2573           The Holy Quran
2574       2574           The Holy Quran
2575       2575           The Holy Quran
2576       2576           The Holy Quran
2577       2577           The Holy Quran
2578       2578           The Holy Quran
2579       2579           The Holy Quran
2580       2580           The Holy Quran
2581       2581           The Holy Quran
2582       2582           The Holy Quran
2583       2583           The Holy Quran
2584       2584           The Holy Quran
2585       2585           The Holy Quran
2586       2586           The Holy Quran
2587       2587           The Holy Quran
2588       2588           The Holy Quran
2589       2589           The Holy Quran
2590       2590           The Holy Quran
2591       2591           The Holy Quran
2592       2592           The Holy Quran
2593       2593           The Holy Quran
2594       2594           The Holy Quran
2595       2595           The Holy Quran
2596       2596           The Holy Quran
2597       2597           The Holy Quran
2598       2598           The Holy Quran
2599       2599           The Holy Quran
2600       2600           The Holy Quran
2601       2601           The Holy Quran
2602       2602           The Holy Quran
2603       2603           The Holy Quran
2604       2604           The Holy Quran
2605       2605           The Holy Quran
2606       2606           The Holy Quran
2607       2607           The Holy Quran
2608       2608           The Holy Quran
2609       2609           The Holy Quran
2610       2610           The Holy Quran
2611       2611           The Holy Quran
2612       2612           The Holy Quran
2613       2613           The Holy Quran
2614       2614           The Holy Quran
2615       2615           The Holy Quran
2616       2616           The Holy Quran
2617       2617           The Holy Quran
2618       2618           The Holy Quran
2619       2619           The Holy Quran
2620       2620           The Holy Quran
2621       2621           The Holy Quran
2622       2622           The Holy Quran
2623       2623           The Holy Quran
2624       2624           The Holy Quran
2625       2625           The Holy Quran
2626       2626           The Holy Quran
2627       2627           The Holy Quran
2628       2628           The Holy Quran
2629       2629           The Holy Quran
2630       2630           The Holy Quran
2631       2631           The Holy Quran
2632       2632           The Holy Quran
2633       2633           The Holy Quran
2634       2634           The Holy Quran
2635       2635           The Holy Quran
2636       2636           The Holy Quran
2637       2637           The Holy Quran
2638       2638           The Holy Quran
2639       2639           The Holy Quran
2640       2640           The Holy Quran
2641       2641           The Holy Quran
2642       2642           The Holy Quran
2643       2643           The Holy Quran
2644       2644           The Holy Quran
2645       2645           The Holy Quran
2646       2646           The Holy Quran
2647       2647           The Holy Quran
2648       2648           The Holy Quran
2649       2649           The Holy Quran
2650       2650           The Holy Quran
2651       2651           The Holy Quran
2652       2652           The Holy Quran
2653       2653           The Holy Quran
2654       2654           The Holy Quran
2655       2655           The Holy Quran
2656       2656           The Holy Quran
2657       2657           The Holy Quran
2658       2658           The Holy Quran
2659       2659           The Holy Quran
2660       2660           The Holy Quran
2661       2661           The Holy Quran
2662       2662           The Holy Quran
2663       2663           The Holy Quran
2664       2664           The Holy Quran
2665       2665           The Holy Quran
2666       2666           The Holy Quran
2667       2667           The Holy Quran
2668       2668           The Holy Quran
2669       2669           The Holy Quran
2670       2670           The Holy Quran
2671       2671           The Holy Quran
2672       2672           The Holy Quran
2673       2673           The Holy Quran
2674       2674           The Holy Quran
2675       2675           The Holy Quran
2676       2676           The Holy Quran
2677       2677           The Holy Quran
2678       2678           The Holy Quran
2679       2679           The Holy Quran
2680       2680           The Holy Quran
2681       2681           The Holy Quran
2682       2682           The Holy Quran
2683       2683           The Holy Quran
2684       2684           The Holy Quran
2685       2685           The Holy Quran
2686       2686           The Holy Quran
2687       2687           The Holy Quran
2688       2688           The Holy Quran
2689       2689           The Holy Quran
2690       2690           The Holy Quran
2691       2691           The Holy Quran
2692       2692           The Holy Quran
2693       2693           The Holy Quran
2694       2694           The Holy Quran
2695       2695           The Holy Quran
2696       2696           The Holy Quran
2697       2697           The Holy Quran
2698       2698           The Holy Quran
2699       2699           The Holy Quran
2700       2700           The Holy Quran
2701       2701           The Holy Quran
2702       2702           The Holy Quran
2703       2703           The Holy Quran
2704       2704           The Holy Quran
2705       2705           The Holy Quran
2706       2706           The Holy Quran
2707       2707           The Holy Quran
2708       2708           The Holy Quran
2709       2709           The Holy Quran
2710       2710           The Holy Quran
2711       2711           The Holy Quran
2712       2712           The Holy Quran
2713       2713           The Holy Quran
2714       2714           The Holy Quran
2715       2715           The Holy Quran
2716       2716           The Holy Quran
2717       2717           The Holy Quran
2718       2718           The Holy Quran
2719       2719           The Holy Quran
2720       2720           The Holy Quran
2721       2721           The Holy Quran
2722       2722           The Holy Quran
2723       2723           The Holy Quran
2724       2724           The Holy Quran
2725       2725           The Holy Quran
2726       2726           The Holy Quran
2727       2727           The Holy Quran
2728       2728           The Holy Quran
2729       2729           The Holy Quran
2730       2730           The Holy Quran
2731       2731           The Holy Quran
2732       2732           The Holy Quran
2733       2733           The Holy Quran
2734       2734           The Holy Quran
2735       2735           The Holy Quran
2736       2736           The Holy Quran
2737       2737           The Holy Quran
2738       2738           The Holy Quran
2739       2739           The Holy Quran
2740       2740           The Holy Quran
2741       2741           The Holy Quran
2742       2742           The Holy Quran
2743       2743           The Holy Quran
2744       2744           The Holy Quran
2745       2745           The Holy Quran
2746       2746           The Holy Quran
2747       2747           The Holy Quran
2748       2748           The Holy Quran
2749       2749           The Holy Quran
2750       2750           The Holy Quran
2751       2751           The Holy Quran
2752       2752           The Holy Quran
2753       2753           The Holy Quran
2754       2754           The Holy Quran
2755       2755           The Holy Quran
2756       2756           The Holy Quran
2757       2757           The Holy Quran
2758       2758           The Holy Quran
2759       2759           The Holy Quran
2760       2760           The Holy Quran
2761       2761           The Holy Quran
2762       2762           The Holy Quran
2763       2763           The Holy Quran
2764       2764           The Holy Quran
2765       2765           The Holy Quran
2766       2766           The Holy Quran
2767       2767           The Holy Quran
2768       2768           The Holy Quran
2769       2769           The Holy Quran
2770       2770           The Holy Quran
2771       2771           The Holy Quran
2772       2772           The Holy Quran
2773       2773           The Holy Quran
2774       2774           The Holy Quran
2775       2775           The Holy Quran
2776       2776           The Holy Quran
2777       2777           The Holy Quran
2778       2778           The Holy Quran
2779       2779           The Holy Quran
2780       2780           The Holy Quran
2781       2781           The Holy Quran
2782       2782           The Holy Quran
2783       2783           The Holy Quran
2784       2784           The Holy Quran
2785       2785           The Holy Quran
2786       2786           The Holy Quran
2787       2787           The Holy Quran
2788       2788           The Holy Quran
2789       2789           The Holy Quran
2790       2790           The Holy Quran
2791       2791           The Holy Quran
2792       2792           The Holy Quran
2793       2793           The Holy Quran
2794       2794           The Holy Quran
2795       2795           The Holy Quran
2796       2796           The Holy Quran
2797       2797           The Holy Quran
2798       2798           The Holy Quran
2799       2799           The Holy Quran
2800       2800           The Holy Quran
2801       2801           The Holy Quran
2802       2802           The Holy Quran
2803       2803           The Holy Quran
2804       2804           The Holy Quran
2805       2805           The Holy Quran
2806       2806           The Holy Quran
2807       2807           The Holy Quran
2808       2808           The Holy Quran
2809       2809           The Holy Quran
2810       2810           The Holy Quran
2811       2811           The Holy Quran
2812       2812           The Holy Quran
2813       2813           The Holy Quran
2814       2814           The Holy Quran
2815       2815           The Holy Quran
2816       2816           The Holy Quran
2817       2817           The Holy Quran
2818       2818           The Holy Quran
2819       2819           The Holy Quran
2820       2820           The Holy Quran
2821       2821           The Holy Quran
2822       2822           The Holy Quran
2823       2823           The Holy Quran
2824       2824           The Holy Quran
2825       2825           The Holy Quran
2826       2826           The Holy Quran
2827       2827           The Holy Quran
2828       2828           The Holy Quran
2829       2829           The Holy Quran
2830       2830           The Holy Quran
2831       2831           The Holy Quran
2832       2832           The Holy Quran
2833       2833           The Holy Quran
2834       2834           The Holy Quran
2835       2835           The Holy Quran
2836       2836           The Holy Quran
2837       2837           The Holy Quran
2838       2838           The Holy Quran
2839       2839           The Holy Quran
2840       2840           The Holy Quran
2841       2841           The Holy Quran
2842       2842           The Holy Quran
2843       2843           The Holy Quran
2844       2844           The Holy Quran
2845       2845           The Holy Quran
2846       2846           The Holy Quran
2847       2847           The Holy Quran
2848       2848           The Holy Quran
2849       2849           The Holy Quran
2850       2850           The Holy Quran
2851       2851           The Holy Quran
2852       2852           The Holy Quran
2853       2853           The Holy Quran
2854       2854           The Holy Quran
2855       2855           The Holy Quran
2856       2856           The Holy Quran
2857       2857           The Holy Quran
2858       2858           The Holy Quran
2859       2859           The Holy Quran
2860       2860           The Holy Quran
2861       2861           The Holy Quran
2862       2862           The Holy Quran
2863       2863           The Holy Quran
2864       2864           The Holy Quran
2865       2865           The Holy Quran
2866       2866           The Holy Quran
2867       2867           The Holy Quran
2868       2868           The Holy Quran
2869       2869           The Holy Quran
2870       2870           The Holy Quran
2871       2871           The Holy Quran
2872       2872           The Holy Quran
2873       2873           The Holy Quran
2874       2874           The Holy Quran
2875       2875           The Holy Quran
2876       2876           The Holy Quran
2877       2877           The Holy Quran
2878       2878           The Holy Quran
2879       2879           The Holy Quran
2880       2880           The Holy Quran
2881       2881           The Holy Quran
2882       2882           The Holy Quran
2883       2883           The Holy Quran
2884       2884           The Holy Quran
2885       2885           The Holy Quran
2886       2886           The Holy Quran
2887       2887           The Holy Quran
2888       2888           The Holy Quran
2889       2889           The Holy Quran
2890       2890           The Holy Quran
2891       2891           The Holy Quran
2892       2892           The Holy Quran
2893       2893           The Holy Quran
2894       2894           The Holy Quran
2895       2895           The Holy Quran
2896       2896           The Holy Quran
2897       2897           The Holy Quran
2898       2898           The Holy Quran
2899       2899           The Holy Quran
2900       2900           The Holy Quran
2901       2901           The Holy Quran
2902       2902           The Holy Quran
2903       2903           The Holy Quran
2904       2904           The Holy Quran
2905       2905           The Holy Quran
2906       2906           The Holy Quran
2907       2907           The Holy Quran
2908       2908           The Holy Quran
2909       2909           The Holy Quran
2910       2910           The Holy Quran
2911       2911           The Holy Quran
2912       2912           The Holy Quran
2913       2913           The Holy Quran
2914       2914           The Holy Quran
2915       2915           The Holy Quran
2916       2916           The Holy Quran
2917       2917           The Holy Quran
2918       2918           The Holy Quran
2919       2919           The Holy Quran
2920       2920           The Holy Quran
2921       2921           The Holy Quran
2922       2922           The Holy Quran
2923       2923           The Holy Quran
2924       2924           The Holy Quran
2925       2925           The Holy Quran
2926       2926           The Holy Quran
2927       2927           The Holy Quran
2928       2928           The Holy Quran
2929       2929           The Holy Quran
2930       2930           The Holy Quran
2931       2931           The Holy Quran
2932       2932           The Holy Quran
2933       2933           The Holy Quran
2934       2934           The Holy Quran
2935       2935           The Holy Quran
2936       2936           The Holy Quran
2937       2937           The Holy Quran
2938       2938           The Holy Quran
2939       2939           The Holy Quran
2940       2940           The Holy Quran
2941       2941           The Holy Quran
2942       2942           The Holy Quran
2943       2943           The Holy Quran
2944       2944           The Holy Quran
2945       2945           The Holy Quran
2946       2946           The Holy Quran
2947       2947           The Holy Quran
2948       2948           The Holy Quran
2949       2949           The Holy Quran
2950       2950           The Holy Quran
2951       2951           The Holy Quran
2952       2952           The Holy Quran
2953       2953           The Holy Quran
2954       2954           The Holy Quran
2955       2955           The Holy Quran
2956       2956           The Holy Quran
2957       2957           The Holy Quran
2958       2958           The Holy Quran
2959       2959           The Holy Quran
2960       2960           The Holy Quran
2961       2961           The Holy Quran
2962       2962           The Holy Quran
2963       2963           The Holy Quran
2964       2964           The Holy Quran
2965       2965           The Holy Quran
2966       2966           The Holy Quran
2967       2967           The Holy Quran
2968       2968           The Holy Quran
2969       2969           The Holy Quran
2970       2970           The Holy Quran
2971       2971           The Holy Quran
2972       2972           The Holy Quran
2973       2973           The Holy Quran
2974       2974           The Holy Quran
2975       2975           The Holy Quran
2976       2976           The Holy Quran
2977       2977           The Holy Quran
2978       2978           The Holy Quran
2979       2979           The Holy Quran
2980       2980           The Holy Quran
2981       2981           The Holy Quran
2982       2982           The Holy Quran
2983       2983           The Holy Quran
2984       2984           The Holy Quran
2985       2985           The Holy Quran
2986       2986           The Holy Quran
2987       2987           The Holy Quran
2988       2988           The Holy Quran
2989       2989           The Holy Quran
2990       2990           The Holy Quran
2991       2991           The Holy Quran
2992       2992           The Holy Quran
2993       2993           The Holy Quran
2994       2994           The Holy Quran
2995       2995           The Holy Quran
2996       2996           The Holy Quran
2997       2997           The Holy Quran
2998       2998           The Holy Quran
2999       2999           The Holy Quran
3000       3000           The Holy Quran
3001       3001           The Holy Quran
3002       3002           The Holy Quran
3003       3003           The Holy Quran
3004       3004           The Holy Quran
3005       3005           The Holy Quran
3006       3006           The Holy Quran
3007       3007           The Holy Quran
3008       3008           The Holy Quran
3009       3009           The Holy Quran
3010       3010           The Holy Quran
3011       3011           The Holy Quran
3012       3012           The Holy Quran
3013       3013           The Holy Quran
3014       3014           The Holy Quran
3015       3015           The Holy Quran
3016       3016           The Holy Quran
3017       3017           The Holy Quran
3018       3018           The Holy Quran
3019       3019           The Holy Quran
3020       3020           The Holy Quran
3021       3021           The Holy Quran
3022       3022           The Holy Quran
3023       3023           The Holy Quran
3024       3024           The Holy Quran
3025       3025           The Holy Quran
3026       3026           The Holy Quran
3027       3027           The Holy Quran
3028       3028           The Holy Quran
3029       3029           The Holy Quran
3030       3030           The Holy Quran
3031       3031           The Holy Quran
3032       3032           The Holy Quran
3033       3033           The Holy Quran
3034       3034           The Holy Quran
3035       3035           The Holy Quran
3036       3036           The Holy Quran
3037       3037           The Holy Quran
3038       3038           The Holy Quran
3039       3039           The Holy Quran
3040       3040           The Holy Quran
3041       3041           The Holy Quran
3042       3042           The Holy Quran
3043       3043           The Holy Quran
3044       3044           The Holy Quran
3045       3045           The Holy Quran
3046       3046           The Holy Quran
3047       3047           The Holy Quran
3048       3048           The Holy Quran
3049       3049           The Holy Quran
3050       3050           The Holy Quran
3051       3051           The Holy Quran
3052       3052           The Holy Quran
3053       3053           The Holy Quran
3054       3054           The Holy Quran
3055       3055           The Holy Quran
3056       3056           The Holy Quran
3057       3057           The Holy Quran
3058       3058           The Holy Quran
3059       3059           The Holy Quran
3060       3060           The Holy Quran
3061       3061           The Holy Quran
3062       3062           The Holy Quran
3063       3063           The Holy Quran
3064       3064           The Holy Quran
3065       3065           The Holy Quran
3066       3066           The Holy Quran
3067       3067           The Holy Quran
3068       3068           The Holy Quran
3069       3069           The Holy Quran
3070       3070           The Holy Quran
3071       3071           The Holy Quran
3072       3072           The Holy Quran
3073       3073           The Holy Quran
3074       3074           The Holy Quran
3075       3075           The Holy Quran
3076       3076           The Holy Quran
3077       3077           The Holy Quran
3078       3078           The Holy Quran
3079       3079           The Holy Quran
3080       3080           The Holy Quran
3081       3081           The Holy Quran
3082       3082           The Holy Quran
3083       3083           The Holy Quran
3084       3084           The Holy Quran
3085       3085           The Holy Quran
3086       3086           The Holy Quran
3087       3087           The Holy Quran
3088       3088           The Holy Quran
3089       3089           The Holy Quran
3090       3090           The Holy Quran
3091       3091           The Holy Quran
3092       3092           The Holy Quran
3093       3093           The Holy Quran
3094       3094           The Holy Quran
3095       3095           The Holy Quran
3096       3096           The Holy Quran
3097       3097           The Holy Quran
3098       3098           The Holy Quran
3099       3099           The Holy Quran
3100       3100           The Holy Quran
3101       3101           The Holy Quran
3102       3102           The Holy Quran
3103       3103           The Holy Quran
3104       3104           The Holy Quran
3105       3105           The Holy Quran
3106       3106           The Holy Quran
3107       3107           The Holy Quran
3108       3108           The Holy Quran
3109       3109           The Holy Quran
3110       3110           The Holy Quran
3111       3111           The Holy Quran
3112       3112           The Holy Quran
3113       3113           The Holy Quran
3114       3114           The Holy Quran
3115       3115           The Holy Quran
3116       3116           The Holy Quran
3117       3117           The Holy Quran
3118       3118           The Holy Quran
3119       3119           The Holy Quran
3120       3120           The Holy Quran
3121       3121           The Holy Quran
3122       3122           The Holy Quran
3123       3123           The Holy Quran
3124       3124           The Holy Quran
3125       3125           The Holy Quran
3126       3126           The Holy Quran
3127       3127           The Holy Quran
3128       3128           The Holy Quran
3129       3129           The Holy Quran
3130       3130           The Holy Quran
3131       3131           The Holy Quran
3132       3132           The Holy Quran
3133       3133           The Holy Quran
3134       3134           The Holy Quran
3135       3135           The Holy Quran
3136       3136           The Holy Quran
3137       3137           The Holy Quran
3138       3138           The Holy Quran
3139       3139           The Holy Quran
3140       3140           The Holy Quran
3141       3141           The Holy Quran
3142       3142           The Holy Quran
3143       3143           The Holy Quran
3144       3144           The Holy Quran
3145       3145           The Holy Quran
3146       3146           The Holy Quran
3147       3147           The Holy Quran
3148       3148           The Holy Quran
3149       3149           The Holy Quran
3150       3150           The Holy Quran
3151       3151           The Holy Quran
3152       3152           The Holy Quran
3153       3153           The Holy Quran
3154       3154           The Holy Quran
3155       3155           The Holy Quran
3156       3156           The Holy Quran
3157       3157           The Holy Quran
3158       3158           The Holy Quran
3159       3159           The Holy Quran
3160       3160           The Holy Quran
3161       3161           The Holy Quran
3162       3162           The Holy Quran
3163       3163           The Holy Quran
3164       3164           The Holy Quran
3165       3165           The Holy Quran
3166       3166           The Holy Quran
3167       3167           The Holy Quran
3168       3168           The Holy Quran
3169       3169           The Holy Quran
3170       3170           The Holy Quran
3171       3171           The Holy Quran
3172       3172           The Holy Quran
3173       3173           The Holy Quran
3174       3174           The Holy Quran
3175       3175           The Holy Quran
3176       3176           The Holy Quran
3177       3177           The Holy Quran
3178       3178           The Holy Quran
3179       3179           The Holy Quran
3180       3180           The Holy Quran
3181       3181           The Holy Quran
3182       3182           The Holy Quran
3183       3183           The Holy Quran
3184       3184           The Holy Quran
3185       3185           The Holy Quran
3186       3186           The Holy Quran
3187       3187           The Holy Quran
3188       3188           The Holy Quran
3189       3189           The Holy Quran
3190       3190           The Holy Quran
3191       3191           The Holy Quran
3192       3192           The Holy Quran
3193       3193           The Holy Quran
3194       3194           The Holy Quran
3195       3195           The Holy Quran
3196       3196           The Holy Quran
3197       3197           The Holy Quran
3198       3198           The Holy Quran
3199       3199           The Holy Quran
3200       3200           The Holy Quran
3201       3201           The Holy Quran
3202       3202           The Holy Quran
3203       3203           The Holy Quran
3204       3204           The Holy Quran
3205       3205           The Holy Quran
3206       3206           The Holy Quran
3207       3207           The Holy Quran
3208       3208           The Holy Quran
3209       3209           The Holy Quran
3210       3210           The Holy Quran
3211       3211           The Holy Quran
3212       3212           The Holy Quran
3213       3213           The Holy Quran
3214       3214           The Holy Quran
3215       3215           The Holy Quran
3216       3216           The Holy Quran
3217       3217           The Holy Quran
3218       3218           The Holy Quran
3219       3219           The Holy Quran
3220       3220           The Holy Quran
3221       3221           The Holy Quran
3222       3222           The Holy Quran
3223       3223           The Holy Quran
3224       3224           The Holy Quran
3225       3225           The Holy Quran
3226       3226           The Holy Quran
3227       3227           The Holy Quran
3228       3228           The Holy Quran
3229       3229           The Holy Quran
3230       3230           The Holy Quran
3231       3231           The Holy Quran
3232       3232           The Holy Quran
3233       3233           The Holy Quran
3234       3234           The Holy Quran
3235       3235           The Holy Quran
3236       3236           The Holy Quran
3237       3237           The Holy Quran
3238       3238           The Holy Quran
3239       3239           The Holy Quran
3240       3240           The Holy Quran
3241       3241           The Holy Quran
3242       3242           The Holy Quran
3243       3243           The Holy Quran
3244       3244           The Holy Quran
3245       3245           The Holy Quran
3246       3246           The Holy Quran
3247       3247           The Holy Quran
3248       3248           The Holy Quran
3249       3249           The Holy Quran
3250       3250           The Holy Quran
3251       3251           The Holy Quran
3252       3252           The Holy Quran
3253       3253           The Holy Quran
3254       3254           The Holy Quran
3255       3255           The Holy Quran
3256       3256           The Holy Quran
3257       3257           The Holy Quran
3258       3258           The Holy Quran
3259       3259           The Holy Quran
3260       3260           The Holy Quran
3261       3261           The Holy Quran
3262       3262           The Holy Quran
3263       3263           The Holy Quran
3264       3264           The Holy Quran
3265       3265           The Holy Quran
3266       3266           The Holy Quran
3267       3267           The Holy Quran
3268       3268           The Holy Quran
3269       3269           The Holy Quran
3270       3270           The Holy Quran
3271       3271           The Holy Quran
3272       3272           The Holy Quran
3273       3273           The Holy Quran
3274       3274           The Holy Quran
3275       3275           The Holy Quran
3276       3276           The Holy Quran
3277       3277           The Holy Quran
3278       3278           The Holy Quran
3279       3279           The Holy Quran
3280       3280           The Holy Quran
3281       3281           The Holy Quran
3282       3282           The Holy Quran
3283       3283           The Holy Quran
3284       3284           The Holy Quran
3285       3285           The Holy Quran
3286       3286           The Holy Quran
3287       3287           The Holy Quran
3288       3288           The Holy Quran
3289       3289           The Holy Quran
3290       3290           The Holy Quran
3291       3291           The Holy Quran
3292       3292           The Holy Quran
3293       3293           The Holy Quran
3294       3294           The Holy Quran
3295       3295           The Holy Quran
3296       3296           The Holy Quran
3297       3297           The Holy Quran
3298       3298           The Holy Quran
3299       3299           The Holy Quran
3300       3300           The Holy Quran
3301       3301           The Holy Quran
3302       3302           The Holy Quran
3303       3303           The Holy Quran
3304       3304           The Holy Quran
3305       3305           The Holy Quran
3306       3306           The Holy Quran
3307       3307           The Holy Quran
3308       3308           The Holy Quran
3309       3309           The Holy Quran
3310       3310           The Holy Quran
3311       3311           The Holy Quran
3312       3312           The Holy Quran
3313       3313           The Holy Quran
3314       3314           The Holy Quran
3315       3315           The Holy Quran
3316       3316           The Holy Quran
3317       3317           The Holy Quran
3318       3318           The Holy Quran
3319       3319           The Holy Quran
3320       3320           The Holy Quran
3321       3321           The Holy Quran
3322       3322           The Holy Quran
3323       3323           The Holy Quran
3324       3324           The Holy Quran
3325       3325           The Holy Quran
3326       3326           The Holy Quran
3327       3327           The Holy Quran
3328       3328           The Holy Quran
3329       3329           The Holy Quran
3330       3330           The Holy Quran
3331       3331           The Holy Quran
3332       3332           The Holy Quran
3333       3333           The Holy Quran
3334       3334           The Holy Quran
3335       3335           The Holy Quran
3336       3336           The Holy Quran
3337       3337           The Holy Quran
3338       3338           The Holy Quran
3339       3339           The Holy Quran
3340       3340           The Holy Quran
3341       3341           The Holy Quran
3342       3342           The Holy Quran
3343       3343           The Holy Quran
3344       3344           The Holy Quran
3345       3345           The Holy Quran
3346       3346           The Holy Quran
3347       3347           The Holy Quran
3348       3348           The Holy Quran
3349       3349           The Holy Quran
3350       3350           The Holy Quran
3351       3351           The Holy Quran
3352       3352           The Holy Quran
3353       3353           The Holy Quran
3354       3354           The Holy Quran
3355       3355           The Holy Quran
3356       3356           The Holy Quran
3357       3357           The Holy Quran
3358       3358           The Holy Quran
3359       3359           The Holy Quran
3360       3360           The Holy Quran
3361       3361           The Holy Quran
3362       3362           The Holy Quran
3363       3363           The Holy Quran
3364       3364           The Holy Quran
3365       3365           The Holy Quran
3366       3366           The Holy Quran
3367       3367           The Holy Quran
3368       3368           The Holy Quran
3369       3369           The Holy Quran
3370       3370           The Holy Quran
3371       3371           The Holy Quran
3372       3372           The Holy Quran
3373       3373           The Holy Quran
3374       3374           The Holy Quran
3375       3375           The Holy Quran
3376       3376           The Holy Quran
3377       3377           The Holy Quran
3378       3378           The Holy Quran
3379       3379           The Holy Quran
3380       3380           The Holy Quran
3381       3381           The Holy Quran
3382       3382           The Holy Quran
3383       3383           The Holy Quran
3384       3384           The Holy Quran
3385       3385           The Holy Quran
3386       3386           The Holy Quran
3387       3387           The Holy Quran
3388       3388           The Holy Quran
3389       3389           The Holy Quran
3390       3390           The Holy Quran
3391       3391           The Holy Quran
3392       3392           The Holy Quran
3393       3393           The Holy Quran
3394       3394           The Holy Quran
3395       3395           The Holy Quran
3396       3396           The Holy Quran
3397       3397           The Holy Quran
3398       3398           The Holy Quran
3399       3399           The Holy Quran
3400       3400           The Holy Quran
3401       3401           The Holy Quran
3402       3402           The Holy Quran
3403       3403           The Holy Quran
3404       3404           The Holy Quran
3405       3405           The Holy Quran
3406       3406           The Holy Quran
3407       3407           The Holy Quran
3408       3408           The Holy Quran
3409       3409           The Holy Quran
3410       3410           The Holy Quran
3411       3411           The Holy Quran
3412       3412           The Holy Quran
3413       3413           The Holy Quran
3414       3414           The Holy Quran
3415       3415           The Holy Quran
3416       3416           The Holy Quran
3417       3417           The Holy Quran
3418       3418           The Holy Quran
3419       3419           The Holy Quran
3420       3420           The Holy Quran
3421       3421           The Holy Quran
3422       3422           The Holy Quran
3423       3423           The Holy Quran
3424       3424           The Holy Quran
3425       3425           The Holy Quran
3426       3426           The Holy Quran
3427       3427           The Holy Quran
3428       3428           The Holy Quran
3429       3429           The Holy Quran
3430       3430           The Holy Quran
3431       3431           The Holy Quran
3432       3432           The Holy Quran
3433       3433           The Holy Quran
3434       3434           The Holy Quran
3435       3435           The Holy Quran
3436       3436           The Holy Quran
3437       3437           The Holy Quran
3438       3438           The Holy Quran
3439       3439           The Holy Quran
3440       3440           The Holy Quran
3441       3441           The Holy Quran
3442       3442           The Holy Quran
3443       3443           The Holy Quran
3444       3444           The Holy Quran
3445       3445           The Holy Quran
3446       3446           The Holy Quran
3447       3447           The Holy Quran
3448       3448           The Holy Quran
3449       3449           The Holy Quran
3450       3450           The Holy Quran
3451       3451           The Holy Quran
3452       3452           The Holy Quran
3453       3453           The Holy Quran
3454       3454           The Holy Quran
3455       3455           The Holy Quran
3456       3456           The Holy Quran
3457       3457           The Holy Quran
3458       3458           The Holy Quran
3459       3459           The Holy Quran
3460       3460           The Holy Quran
3461       3461           The Holy Quran
3462       3462           The Holy Quran
3463       3463           The Holy Quran
3464       3464           The Holy Quran
3465       3465           The Holy Quran
3466       3466           The Holy Quran
3467       3467           The Holy Quran
3468       3468           The Holy Quran
3469       3469           The Holy Quran
3470       3470           The Holy Quran
3471       3471           The Holy Quran
3472       3472           The Holy Quran
3473       3473           The Holy Quran
3474       3474           The Holy Quran
3475       3475           The Holy Quran
3476       3476           The Holy Quran
3477       3477           The Holy Quran
3478       3478           The Holy Quran
3479       3479           The Holy Quran
3480       3480           The Holy Quran
3481       3481           The Holy Quran
3482       3482           The Holy Quran
3483       3483           The Holy Quran
3484       3484           The Holy Quran
3485       3485           The Holy Quran
3486       3486           The Holy Quran
3487       3487           The Holy Quran
3488       3488           The Holy Quran
3489       3489           The Holy Quran
3490       3490           The Holy Quran
3491       3491           The Holy Quran
3492       3492           The Holy Quran
3493       3493           The Holy Quran
3494       3494           The Holy Quran
3495       3495           The Holy Quran
3496       3496           The Holy Quran
3497       3497           The Holy Quran
3498       3498           The Holy Quran
3499       3499           The Holy Quran
3500       3500           The Holy Quran
3501       3501           The Holy Quran
3502       3502           The Holy Quran
3503       3503           The Holy Quran
3504       3504           The Holy Quran
3505       3505           The Holy Quran
3506       3506           The Holy Quran
3507       3507           The Holy Quran
3508       3508           The Holy Quran
3509       3509           The Holy Quran
3510       3510           The Holy Quran
3511       3511           The Holy Quran
3512       3512           The Holy Quran
3513       3513           The Holy Quran
3514       3514           The Holy Quran
3515       3515           The Holy Quran
3516       3516           The Holy Quran
3517       3517           The Holy Quran
3518       3518           The Holy Quran
3519       3519           The Holy Quran
3520       3520           The Holy Quran
3521       3521           The Holy Quran
3522       3522           The Holy Quran
3523       3523           The Holy Quran
3524       3524           The Holy Quran
3525       3525           The Holy Quran
3526       3526           The Holy Quran
3527       3527           The Holy Quran
3528       3528           The Holy Quran
3529       3529           The Holy Quran
3530       3530           The Holy Quran
3531       3531           The Holy Quran
3532       3532           The Holy Quran
3533       3533           The Holy Quran
3534       3534           The Holy Quran
3535       3535           The Holy Quran
3536       3536           The Holy Quran
3537       3537           The Holy Quran
3538       3538           The Holy Quran
3539       3539           The Holy Quran
3540       3540           The Holy Quran
3541       3541           The Holy Quran
3542       3542           The Holy Quran
3543       3543           The Holy Quran
3544       3544           The Holy Quran
3545       3545           The Holy Quran
3546       3546           The Holy Quran
3547       3547           The Holy Quran
3548       3548           The Holy Quran
3549       3549           The Holy Quran
3550       3550           The Holy Quran
3551       3551           The Holy Quran
3552       3552           The Holy Quran
3553       3553           The Holy Quran
3554       3554           The Holy Quran
3555       3555           The Holy Quran
3556       3556           The Holy Quran
3557       3557           The Holy Quran
3558       3558           The Holy Quran
3559       3559           The Holy Quran
3560       3560           The Holy Quran
3561       3561           The Holy Quran
3562       3562           The Holy Quran
3563       3563           The Holy Quran
3564       3564           The Holy Quran
3565       3565           The Holy Quran
3566       3566           The Holy Quran
3567       3567           The Holy Quran
3568       3568           The Holy Quran
3569       3569           The Holy Quran
3570       3570           The Holy Quran
3571       3571           The Holy Quran
3572       3572           The Holy Quran
3573       3573           The Holy Quran
3574       3574           The Holy Quran
3575       3575           The Holy Quran
3576       3576           The Holy Quran
3577       3577           The Holy Quran
3578       3578           The Holy Quran
3579       3579           The Holy Quran
3580       3580           The Holy Quran
3581       3581           The Holy Quran
3582       3582           The Holy Quran
3583       3583           The Holy Quran
3584       3584           The Holy Quran
3585       3585           The Holy Quran
3586       3586           The Holy Quran
3587       3587           The Holy Quran
3588       3588           The Holy Quran
3589       3589           The Holy Quran
3590       3590           The Holy Quran
3591       3591           The Holy Quran
3592       3592           The Holy Quran
3593       3593           The Holy Quran
3594       3594           The Holy Quran
3595       3595           The Holy Quran
3596       3596           The Holy Quran
3597       3597           The Holy Quran
3598       3598           The Holy Quran
3599       3599           The Holy Quran
3600       3600           The Holy Quran
3601       3601           The Holy Quran
3602       3602           The Holy Quran
3603       3603           The Holy Quran
3604       3604           The Holy Quran
3605       3605           The Holy Quran
3606       3606           The Holy Quran
3607       3607           The Holy Quran
3608       3608           The Holy Quran
3609       3609           The Holy Quran
3610       3610           The Holy Quran
3611       3611           The Holy Quran
3612       3612           The Holy Quran
3613       3613           The Holy Quran
3614       3614           The Holy Quran
3615       3615           The Holy Quran
3616       3616           The Holy Quran
3617       3617           The Holy Quran
3618       3618           The Holy Quran
3619       3619           The Holy Quran
3620       3620           The Holy Quran
3621       3621           The Holy Quran
3622       3622           The Holy Quran
3623       3623           The Holy Quran
3624       3624           The Holy Quran
3625       3625           The Holy Quran
3626       3626           The Holy Quran
3627       3627           The Holy Quran
3628       3628           The Holy Quran
3629       3629           The Holy Quran
3630       3630           The Holy Quran
3631       3631           The Holy Quran
3632       3632           The Holy Quran
3633       3633           The Holy Quran
3634       3634           The Holy Quran
3635       3635           The Holy Quran
3636       3636           The Holy Quran
3637       3637           The Holy Quran
3638       3638           The Holy Quran
3639       3639           The Holy Quran
3640       3640           The Holy Quran
3641       3641           The Holy Quran
3642       3642           The Holy Quran
3643       3643           The Holy Quran
3644       3644           The Holy Quran
3645       3645           The Holy Quran
3646       3646           The Holy Quran
3647       3647           The Holy Quran
3648       3648           The Holy Quran
3649       3649           The Holy Quran
3650       3650           The Holy Quran
3651       3651           The Holy Quran
3652       3652           The Holy Quran
3653       3653           The Holy Quran
3654       3654           The Holy Quran
3655       3655           The Holy Quran
3656       3656           The Holy Quran
3657       3657           The Holy Quran
3658       3658           The Holy Quran
3659       3659           The Holy Quran
3660       3660           The Holy Quran
3661       3661           The Holy Quran
3662       3662           The Holy Quran
3663       3663           The Holy Quran
3664       3664           The Holy Quran
3665       3665           The Holy Quran
3666       3666           The Holy Quran
3667       3667           The Holy Quran
3668       3668           The Holy Quran
3669       3669           The Holy Quran
3670       3670           The Holy Quran
3671       3671           The Holy Quran
3672       3672           The Holy Quran
3673       3673           The Holy Quran
3674       3674           The Holy Quran
3675       3675           The Holy Quran
3676       3676           The Holy Quran
3677       3677           The Holy Quran
3678       3678           The Holy Quran
3679       3679           The Holy Quran
3680       3680           The Holy Quran
3681       3681           The Holy Quran
3682       3682           The Holy Quran
3683       3683           The Holy Quran
3684       3684           The Holy Quran
3685       3685           The Holy Quran
3686       3686           The Holy Quran
3687       3687           The Holy Quran
3688       3688           The Holy Quran
3689       3689           The Holy Quran
3690       3690           The Holy Quran
3691       3691           The Holy Quran
3692       3692           The Holy Quran
3693       3693           The Holy Quran
3694       3694           The Holy Quran
3695       3695           The Holy Quran
3696       3696           The Holy Quran
3697       3697           The Holy Quran
3698       3698           The Holy Quran
3699       3699           The Holy Quran
3700       3700           The Holy Quran
3701       3701           The Holy Quran
3702       3702           The Holy Quran
3703       3703           The Holy Quran
3704       3704           The Holy Quran
3705       3705           The Holy Quran
3706       3706           The Holy Quran
3707       3707           The Holy Quran
3708       3708           The Holy Quran
3709       3709           The Holy Quran
3710       3710           The Holy Quran
3711       3711           The Holy Quran
3712       3712           The Holy Quran
3713       3713           The Holy Quran
3714       3714           The Holy Quran
3715       3715           The Holy Quran
3716       3716           The Holy Quran
3717       3717           The Holy Quran
3718       3718           The Holy Quran
3719       3719           The Holy Quran
3720       3720           The Holy Quran
3721       3721           The Holy Quran
3722       3722           The Holy Quran
3723       3723           The Holy Quran
3724       3724           The Holy Quran
3725       3725           The Holy Quran
3726       3726           The Holy Quran
3727       3727           The Holy Quran
3728       3728           The Holy Quran
3729       3729           The Holy Quran
3730       3730           The Holy Quran
3731       3731           The Holy Quran
3732       3732           The Holy Quran
3733       3733           The Holy Quran
3734       3734           The Holy Quran
3735       3735           The Holy Quran
3736       3736           The Holy Quran
3737       3737           The Holy Quran
3738       3738           The Holy Quran
3739       3739           The Holy Quran
3740       3740           The Holy Quran
3741       3741           The Holy Quran
3742       3742           The Holy Quran
3743       3743           The Holy Quran
3744       3744           The Holy Quran
3745       3745           The Holy Quran
3746       3746           The Holy Quran
3747       3747           The Holy Quran
3748       3748           The Holy Quran
3749       3749           The Holy Quran
3750       3750           The Holy Quran
3751       3751           The Holy Quran
3752       3752           The Holy Quran
3753       3753           The Holy Quran
3754       3754           The Holy Quran
3755       3755           The Holy Quran
3756       3756           The Holy Quran
3757       3757           The Holy Quran
3758       3758           The Holy Quran
3759       3759           The Holy Quran
3760       3760           The Holy Quran
3761       3761           The Holy Quran
3762       3762           The Holy Quran
3763       3763           The Holy Quran
3764       3764           The Holy Quran
3765       3765           The Holy Quran
3766       3766           The Holy Quran
3767       3767           The Holy Quran
3768       3768           The Holy Quran
3769       3769           The Holy Quran
3770       3770           The Holy Quran
3771       3771           The Holy Quran
3772       3772           The Holy Quran
3773       3773           The Holy Quran
3774       3774           The Holy Quran
3775       3775           The Holy Quran
3776       3776           The Holy Quran
3777       3777           The Holy Quran
3778       3778           The Holy Quran
3779       3779           The Holy Quran
3780       3780           The Holy Quran
3781       3781           The Holy Quran
3782       3782           The Holy Quran
3783       3783           The Holy Quran
3784       3784           The Holy Quran
3785       3785           The Holy Quran
3786       3786           The Holy Quran
3787       3787           The Holy Quran
3788       3788           The Holy Quran
3789       3789           The Holy Quran
3790       3790           The Holy Quran
3791       3791           The Holy Quran
3792       3792           The Holy Quran
3793       3793           The Holy Quran
3794       3794           The Holy Quran
3795       3795           The Holy Quran
3796       3796           The Holy Quran
3797       3797           The Holy Quran
3798       3798           The Holy Quran
3799       3799           The Holy Quran
3800       3800           The Holy Quran
3801       3801           The Holy Quran
3802       3802           The Holy Quran
3803       3803           The Holy Quran
3804       3804           The Holy Quran
3805       3805           The Holy Quran
3806       3806           The Holy Quran
3807       3807           The Holy Quran
3808       3808           The Holy Quran
3809       3809           The Holy Quran
3810       3810           The Holy Quran
3811       3811           The Holy Quran
3812       3812           The Holy Quran
3813       3813           The Holy Quran
3814       3814           The Holy Quran
3815       3815           The Holy Quran
3816       3816           The Holy Quran
3817       3817           The Holy Quran
3818       3818           The Holy Quran
3819       3819           The Holy Quran
3820       3820           The Holy Quran
3821       3821           The Holy Quran
3822       3822           The Holy Quran
3823       3823           The Holy Quran
3824       3824           The Holy Quran
3825       3825           The Holy Quran
3826       3826           The Holy Quran
3827       3827           The Holy Quran
3828       3828           The Holy Quran
3829       3829           The Holy Quran
3830       3830           The Holy Quran
3831       3831           The Holy Quran
3832       3832           The Holy Quran
3833       3833           The Holy Quran
3834       3834           The Holy Quran
3835       3835           The Holy Quran
3836       3836           The Holy Quran
3837       3837           The Holy Quran
3838       3838           The Holy Quran
3839       3839           The Holy Quran
3840       3840           The Holy Quran
3841       3841           The Holy Quran
3842       3842           The Holy Quran
3843       3843           The Holy Quran
3844       3844           The Holy Quran
3845       3845           The Holy Quran
3846       3846           The Holy Quran
3847       3847           The Holy Quran
3848       3848           The Holy Quran
3849       3849           The Holy Quran
3850       3850           The Holy Quran
3851       3851           The Holy Quran
3852       3852           The Holy Quran
3853       3853           The Holy Quran
3854       3854           The Holy Quran
3855       3855           The Holy Quran
3856       3856           The Holy Quran
3857       3857           The Holy Quran
3858       3858           The Holy Quran
3859       3859           The Holy Quran
3860       3860           The Holy Quran
3861       3861           The Holy Quran
3862       3862           The Holy Quran
3863       3863           The Holy Quran
3864       3864           The Holy Quran
3865       3865           The Holy Quran
3866       3866           The Holy Quran
3867       3867           The Holy Quran
3868       3868           The Holy Quran
3869       3869           The Holy Quran
3870       3870           The Holy Quran
3871       3871           The Holy Quran
3872       3872           The Holy Quran
3873       3873           The Holy Quran
3874       3874           The Holy Quran
3875       3875           The Holy Quran
3876       3876           The Holy Quran
3877       3877           The Holy Quran
3878       3878           The Holy Quran
3879       3879           The Holy Quran
3880       3880           The Holy Quran
3881       3881           The Holy Quran
3882       3882           The Holy Quran
3883       3883           The Holy Quran
3884       3884           The Holy Quran
3885       3885           The Holy Quran
3886       3886           The Holy Quran
3887       3887           The Holy Quran
3888       3888           The Holy Quran
3889       3889           The Holy Quran
3890       3890           The Holy Quran
3891       3891           The Holy Quran
3892       3892           The Holy Quran
3893       3893           The Holy Quran
3894       3894           The Holy Quran
3895       3895           The Holy Quran
3896       3896           The Holy Quran
3897       3897           The Holy Quran
3898       3898           The Holy Quran
3899       3899           The Holy Quran
3900       3900           The Holy Quran
3901       3901           The Holy Quran
3902       3902           The Holy Quran
3903       3903           The Holy Quran
3904       3904           The Holy Quran
3905       3905           The Holy Quran
3906       3906           The Holy Quran
3907       3907           The Holy Quran
3908       3908           The Holy Quran
3909       3909           The Holy Quran
3910       3910           The Holy Quran
3911       3911           The Holy Quran
3912       3912           The Holy Quran
3913       3913           The Holy Quran
3914       3914           The Holy Quran
3915       3915           The Holy Quran
3916       3916           The Holy Quran
3917       3917           The Holy Quran
3918       3918           The Holy Quran
3919       3919           The Holy Quran
3920       3920           The Holy Quran
3921       3921           The Holy Quran
3922       3922           The Holy Quran
3923       3923           The Holy Quran
3924       3924           The Holy Quran
3925       3925           The Holy Quran
3926       3926           The Holy Quran
3927       3927           The Holy Quran
3928       3928           The Holy Quran
3929       3929           The Holy Quran
3930       3930           The Holy Quran
3931       3931           The Holy Quran
3932       3932           The Holy Quran
3933       3933           The Holy Quran
3934       3934           The Holy Quran
3935       3935           The Holy Quran
3936       3936           The Holy Quran
3937       3937           The Holy Quran
3938       3938           The Holy Quran
3939       3939           The Holy Quran
3940       3940           The Holy Quran
3941       3941           The Holy Quran
3942       3942           The Holy Quran
3943       3943           The Holy Quran
3944       3944           The Holy Quran
3945       3945           The Holy Quran
3946       3946           The Holy Quran
3947       3947           The Holy Quran
3948       3948           The Holy Quran
3949       3949           The Holy Quran
3950       3950           The Holy Quran
3951       3951           The Holy Quran
3952       3952           The Holy Quran
3953       3953           The Holy Quran
3954       3954           The Holy Quran
3955       3955           The Holy Quran
3956       3956           The Holy Quran
3957       3957           The Holy Quran
3958       3958           The Holy Quran
3959       3959           The Holy Quran
3960       3960           The Holy Quran
3961       3961           The Holy Quran
3962       3962           The Holy Quran
3963       3963           The Holy Quran
3964       3964           The Holy Quran
3965       3965           The Holy Quran
3966       3966           The Holy Quran
3967       3967           The Holy Quran
3968       3968           The Holy Quran
3969       3969           The Holy Quran
3970       3970           The Holy Quran
3971       3971           The Holy Quran
3972       3972           The Holy Quran
3973       3973           The Holy Quran
3974       3974           The Holy Quran
3975       3975           The Holy Quran
3976       3976           The Holy Quran
3977       3977           The Holy Quran
3978       3978           The Holy Quran
3979       3979           The Holy Quran
3980       3980           The Holy Quran
3981       3981           The Holy Quran
3982       3982           The Holy Quran
3983       3983           The Holy Quran
3984       3984           The Holy Quran
3985       3985           The Holy Quran
3986       3986           The Holy Quran
3987       3987           The Holy Quran
3988       3988           The Holy Quran
3989       3989           The Holy Quran
3990       3990           The Holy Quran
3991       3991           The Holy Quran
3992       3992           The Holy Quran
3993       3993           The Holy Quran
3994       3994           The Holy Quran
3995       3995           The Holy Quran
3996       3996           The Holy Quran
3997       3997           The Holy Quran
3998       3998           The Holy Quran
3999       3999           The Holy Quran
4000       4000           The Holy Quran
4001       4001           The Holy Quran
4002       4002           The Holy Quran
4003       4003           The Holy Quran
4004       4004           The Holy Quran
4005       4005           The Holy Quran
4006       4006           The Holy Quran
4007       4007           The Holy Quran
4008       4008           The Holy Quran
4009       4009           The Holy Quran
4010       4010           The Holy Quran
4011       4011           The Holy Quran
4012       4012           The Holy Quran
4013       4013           The Holy Quran
4014       4014           The Holy Quran
4015       4015           The Holy Quran
4016       4016           The Holy Quran
4017       4017           The Holy Quran
4018       4018           The Holy Quran
4019       4019           The Holy Quran
4020       4020           The Holy Quran
4021       4021           The Holy Quran
4022       4022           The Holy Quran
4023       4023           The Holy Quran
4024       4024           The Holy Quran
4025       4025           The Holy Quran
4026       4026           The Holy Quran
4027       4027           The Holy Quran
4028       4028           The Holy Quran
4029       4029           The Holy Quran
4030       4030           The Holy Quran
4031       4031           The Holy Quran
4032       4032           The Holy Quran
4033       4033           The Holy Quran
4034       4034           The Holy Quran
4035       4035           The Holy Quran
4036       4036           The Holy Quran
4037       4037           The Holy Quran
4038       4038           The Holy Quran
4039       4039           The Holy Quran
4040       4040           The Holy Quran
4041       4041           The Holy Quran
4042       4042           The Holy Quran
4043       4043           The Holy Quran
4044       4044           The Holy Quran
4045       4045           The Holy Quran
4046       4046           The Holy Quran
4047       4047           The Holy Quran
4048       4048           The Holy Quran
4049       4049           The Holy Quran
4050       4050           The Holy Quran
4051       4051           The Holy Quran
4052       4052           The Holy Quran
4053       4053           The Holy Quran
4054       4054           The Holy Quran
4055       4055           The Holy Quran
4056       4056           The Holy Quran
4057       4057           The Holy Quran
4058       4058           The Holy Quran
4059       4059           The Holy Quran
4060       4060           The Holy Quran
4061       4061           The Holy Quran
4062       4062           The Holy Quran
4063       4063           The Holy Quran
4064       4064           The Holy Quran
4065       4065           The Holy Quran
4066       4066           The Holy Quran
4067       4067           The Holy Quran
4068       4068           The Holy Quran
4069       4069           The Holy Quran
4070       4070           The Holy Quran
4071       4071           The Holy Quran
4072       4072           The Holy Quran
4073       4073           The Holy Quran
4074       4074           The Holy Quran
4075       4075           The Holy Quran
4076       4076           The Holy Quran
4077       4077           The Holy Quran
4078       4078           The Holy Quran
4079       4079           The Holy Quran
4080       4080           The Holy Quran
4081       4081           The Holy Quran
4082       4082           The Holy Quran
4083       4083           The Holy Quran
4084       4084           The Holy Quran
4085       4085           The Holy Quran
4086       4086           The Holy Quran
4087       4087           The Holy Quran
4088       4088           The Holy Quran
4089       4089           The Holy Quran
4090       4090           The Holy Quran
4091       4091           The Holy Quran
4092       4092           The Holy Quran
4093       4093           The Holy Quran
4094       4094           The Holy Quran
4095       4095           The Holy Quran
4096       4096           The Holy Quran
4097       4097           The Holy Quran
4098       4098           The Holy Quran
4099       4099           The Holy Quran
4100       4100           The Holy Quran
4101       4101           The Holy Quran
4102       4102           The Holy Quran
4103       4103           The Holy Quran
4104       4104           The Holy Quran
4105       4105           The Holy Quran
4106       4106           The Holy Quran
4107       4107           The Holy Quran
4108       4108           The Holy Quran
4109       4109           The Holy Quran
4110       4110           The Holy Quran
4111       4111           The Holy Quran
4112       4112           The Holy Quran
4113       4113           The Holy Quran
4114       4114           The Holy Quran
4115       4115           The Holy Quran
4116       4116           The Holy Quran
4117       4117           The Holy Quran
4118       4118           The Holy Quran
4119       4119           The Holy Quran
4120       4120           The Holy Quran
4121       4121           The Holy Quran
4122       4122           The Holy Quran
4123       4123           The Holy Quran
4124       4124           The Holy Quran
4125       4125           The Holy Quran
4126       4126           The Holy Quran
4127       4127           The Holy Quran
4128       4128           The Holy Quran
4129       4129           The Holy Quran
4130       4130           The Holy Quran
4131       4131           The Holy Quran
4132       4132           The Holy Quran
4133       4133           The Holy Quran
4134       4134           The Holy Quran
4135       4135           The Holy Quran
4136       4136           The Holy Quran
4137       4137           The Holy Quran
4138       4138           The Holy Quran
4139       4139           The Holy Quran
4140       4140           The Holy Quran
4141       4141           The Holy Quran
4142       4142           The Holy Quran
4143       4143           The Holy Quran
4144       4144           The Holy Quran
4145       4145           The Holy Quran
4146       4146           The Holy Quran
4147       4147           The Holy Quran
4148       4148           The Holy Quran
4149       4149           The Holy Quran
4150       4150           The Holy Quran
4151       4151           The Holy Quran
4152       4152           The Holy Quran
4153       4153           The Holy Quran
4154       4154           The Holy Quran
4155       4155           The Holy Quran
4156       4156           The Holy Quran
4157       4157           The Holy Quran
4158       4158           The Holy Quran
4159       4159           The Holy Quran
4160       4160           The Holy Quran
4161       4161           The Holy Quran
4162       4162           The Holy Quran
4163       4163           The Holy Quran
4164       4164           The Holy Quran
4165       4165           The Holy Quran
4166       4166           The Holy Quran
4167       4167           The Holy Quran
4168       4168           The Holy Quran
4169       4169           The Holy Quran
4170       4170           The Holy Quran
4171       4171           The Holy Quran
4172       4172           The Holy Quran
4173       4173           The Holy Quran
4174       4174           The Holy Quran
4175       4175           The Holy Quran
4176       4176           The Holy Quran
4177       4177           The Holy Quran
4178       4178           The Holy Quran
4179       4179           The Holy Quran
4180       4180           The Holy Quran
4181       4181           The Holy Quran
4182       4182           The Holy Quran
4183       4183           The Holy Quran
4184       4184           The Holy Quran
4185       4185           The Holy Quran
4186       4186           The Holy Quran
4187       4187           The Holy Quran
4188       4188           The Holy Quran
4189       4189           The Holy Quran
4190       4190           The Holy Quran
4191       4191           The Holy Quran
4192       4192           The Holy Quran
4193       4193           The Holy Quran
4194       4194           The Holy Quran
4195       4195           The Holy Quran
4196       4196           The Holy Quran
4197       4197           The Holy Quran
4198       4198           The Holy Quran
4199       4199           The Holy Quran
4200       4200           The Holy Quran
4201       4201           The Holy Quran
4202       4202           The Holy Quran
4203       4203           The Holy Quran
4204       4204           The Holy Quran
4205       4205           The Holy Quran
4206       4206           The Holy Quran
4207       4207           The Holy Quran
4208       4208           The Holy Quran
4209       4209           The Holy Quran
4210       4210           The Holy Quran
4211       4211           The Holy Quran
4212       4212           The Holy Quran
4213       4213           The Holy Quran
4214       4214           The Holy Quran
4215       4215           The Holy Quran
4216       4216           The Holy Quran
4217       4217           The Holy Quran
4218       4218           The Holy Quran
4219       4219           The Holy Quran
4220       4220           The Holy Quran
4221       4221           The Holy Quran
4222       4222           The Holy Quran
4223       4223           The Holy Quran
4224       4224           The Holy Quran
4225       4225           The Holy Quran
4226       4226           The Holy Quran
4227       4227           The Holy Quran
4228       4228           The Holy Quran
4229       4229           The Holy Quran
4230       4230           The Holy Quran
4231       4231           The Holy Quran
4232       4232           The Holy Quran
4233       4233           The Holy Quran
4234       4234           The Holy Quran
4235       4235           The Holy Quran
4236       4236           The Holy Quran
4237       4237           The Holy Quran
4238       4238           The Holy Quran
4239       4239           The Holy Quran
4240       4240           The Holy Quran
4241       4241           The Holy Quran
4242       4242           The Holy Quran
4243       4243           The Holy Quran
4244       4244           The Holy Quran
4245       4245           The Holy Quran
4246       4246           The Holy Quran
4247       4247           The Holy Quran
4248       4248           The Holy Quran
4249       4249           The Holy Quran
4250       4250           The Holy Quran
4251       4251           The Holy Quran
4252       4252           The Holy Quran
4253       4253           The Holy Quran
4254       4254           The Holy Quran
4255       4255           The Holy Quran
4256       4256           The Holy Quran
4257       4257           The Holy Quran
4258       4258           The Holy Quran
4259       4259           The Holy Quran
4260       4260           The Holy Quran
4261       4261           The Holy Quran
4262       4262           The Holy Quran
4263       4263           The Holy Quran
4264       4264           The Holy Quran
4265       4265           The Holy Quran
4266       4266           The Holy Quran
4267       4267           The Holy Quran
4268       4268           The Holy Quran
4269       4269           The Holy Quran
4270       4270           The Holy Quran
4271       4271           The Holy Quran
4272       4272           The Holy Quran
4273       4273           The Holy Quran
4274       4274           The Holy Quran
4275       4275           The Holy Quran
4276       4276           The Holy Quran
4277       4277           The Holy Quran
4278       4278           The Holy Quran
4279       4279           The Holy Quran
4280       4280           The Holy Quran
4281       4281           The Holy Quran
4282       4282           The Holy Quran
4283       4283           The Holy Quran
4284       4284           The Holy Quran
4285       4285           The Holy Quran
4286       4286           The Holy Quran
4287       4287           The Holy Quran
4288       4288           The Holy Quran
4289       4289           The Holy Quran
4290       4290           The Holy Quran
4291       4291           The Holy Quran
4292       4292           The Holy Quran
4293       4293           The Holy Quran
4294       4294           The Holy Quran
4295       4295           The Holy Quran
4296       4296           The Holy Quran
4297       4297           The Holy Quran
4298       4298           The Holy Quran
4299       4299           The Holy Quran
4300       4300           The Holy Quran
4301       4301           The Holy Quran
4302       4302           The Holy Quran
4303       4303           The Holy Quran
4304       4304           The Holy Quran
4305       4305           The Holy Quran
4306       4306           The Holy Quran
4307       4307           The Holy Quran
4308       4308           The Holy Quran
4309       4309           The Holy Quran
4310       4310           The Holy Quran
4311       4311           The Holy Quran
4312       4312           The Holy Quran
4313       4313           The Holy Quran
4314       4314           The Holy Quran
4315       4315           The Holy Quran
4316       4316           The Holy Quran
4317       4317           The Holy Quran
4318       4318           The Holy Quran
4319       4319           The Holy Quran
4320       4320           The Holy Quran
4321       4321           The Holy Quran
4322       4322           The Holy Quran
4323       4323           The Holy Quran
4324       4324           The Holy Quran
4325       4325           The Holy Quran
4326       4326           The Holy Quran
4327       4327           The Holy Quran
4328       4328           The Holy Quran
4329       4329           The Holy Quran
4330       4330           The Holy Quran
4331       4331           The Holy Quran
4332       4332           The Holy Quran
4333       4333           The Holy Quran
4334       4334           The Holy Quran
4335       4335           The Holy Quran
4336       4336           The Holy Quran
4337       4337           The Holy Quran
4338       4338           The Holy Quran
4339       4339           The Holy Quran
4340       4340           The Holy Quran
4341       4341           The Holy Quran
4342       4342           The Holy Quran
4343       4343           The Holy Quran
4344       4344           The Holy Quran
4345       4345           The Holy Quran
4346       4346           The Holy Quran
4347       4347           The Holy Quran
4348       4348           The Holy Quran
4349       4349           The Holy Quran
4350       4350           The Holy Quran
4351       4351           The Holy Quran
4352       4352           The Holy Quran
4353       4353           The Holy Quran
4354       4354           The Holy Quran
4355       4355           The Holy Quran
4356       4356           The Holy Quran
4357       4357           The Holy Quran
4358       4358           The Holy Quran
4359       4359           The Holy Quran
4360       4360           The Holy Quran
4361       4361           The Holy Quran
4362       4362           The Holy Quran
4363       4363           The Holy Quran
4364       4364           The Holy Quran
4365       4365           The Holy Quran
4366       4366           The Holy Quran
4367       4367           The Holy Quran
4368       4368           The Holy Quran
4369       4369           The Holy Quran
4370       4370           The Holy Quran
4371       4371           The Holy Quran
4372       4372           The Holy Quran
4373       4373           The Holy Quran
4374       4374           The Holy Quran
4375       4375           The Holy Quran
4376       4376           The Holy Quran
4377       4377           The Holy Quran
4378       4378           The Holy Quran
4379       4379           The Holy Quran
4380       4380           The Holy Quran
4381       4381           The Holy Quran
4382       4382           The Holy Quran
4383       4383           The Holy Quran
4384       4384           The Holy Quran
4385       4385           The Holy Quran
4386       4386           The Holy Quran
4387       4387           The Holy Quran
4388       4388           The Holy Quran
4389       4389           The Holy Quran
4390       4390           The Holy Quran
4391       4391           The Holy Quran
4392       4392           The Holy Quran
4393       4393           The Holy Quran
4394       4394           The Holy Quran
4395       4395           The Holy Quran
4396       4396           The Holy Quran
4397       4397           The Holy Quran
4398       4398           The Holy Quran
4399       4399           The Holy Quran
4400       4400           The Holy Quran
4401       4401           The Holy Quran
4402       4402           The Holy Quran
4403       4403           The Holy Quran
4404       4404           The Holy Quran
4405       4405           The Holy Quran
4406       4406           The Holy Quran
4407       4407           The Holy Quran
4408       4408           The Holy Quran
4409       4409           The Holy Quran
4410       4410           The Holy Quran
4411       4411           The Holy Quran
4412       4412           The Holy Quran
4413       4413           The Holy Quran
4414       4414           The Holy Quran
4415       4415           The Holy Quran
4416       4416           The Holy Quran
4417       4417           The Holy Quran
4418       4418           The Holy Quran
4419       4419           The Holy Quran
4420       4420           The Holy Quran
4421       4421           The Holy Quran
4422       4422           The Holy Quran
4423       4423           The Holy Quran
4424       4424           The Holy Quran
4425       4425           The Holy Quran
4426       4426           The Holy Quran
4427       4427           The Holy Quran
4428       4428           The Holy Quran
4429       4429           The Holy Quran
4430       4430           The Holy Quran
4431       4431           The Holy Quran
4432       4432           The Holy Quran
4433       4433           The Holy Quran
4434       4434           The Holy Quran
4435       4435           The Holy Quran
4436       4436           The Holy Quran
4437       4437           The Holy Quran
4438       4438           The Holy Quran
4439       4439           The Holy Quran
4440       4440           The Holy Quran
4441       4441           The Holy Quran
4442       4442           The Holy Quran
4443       4443           The Holy Quran
4444       4444           The Holy Quran
4445       4445           The Holy Quran
4446       4446           The Holy Quran
4447       4447           The Holy Quran
4448       4448           The Holy Quran
4449       4449           The Holy Quran
4450       4450           The Holy Quran
4451       4451           The Holy Quran
4452       4452           The Holy Quran
4453       4453           The Holy Quran
4454       4454           The Holy Quran
4455       4455           The Holy Quran
4456       4456           The Holy Quran
4457       4457           The Holy Quran
4458       4458           The Holy Quran
4459       4459           The Holy Quran
4460       4460           The Holy Quran
4461       4461           The Holy Quran
4462       4462           The Holy Quran
4463       4463           The Holy Quran
4464       4464           The Holy Quran
4465       4465           The Holy Quran
4466       4466           The Holy Quran
4467       4467           The Holy Quran
4468       4468           The Holy Quran
4469       4469           The Holy Quran
4470       4470           The Holy Quran
4471       4471           The Holy Quran
4472       4472           The Holy Quran
4473       4473           The Holy Quran
4474       4474           The Holy Quran
4475       4475           The Holy Quran
4476       4476           The Holy Quran
4477       4477           The Holy Quran
4478       4478           The Holy Quran
4479       4479           The Holy Quran
4480       4480           The Holy Quran
4481       4481           The Holy Quran
4482       4482           The Holy Quran
4483       4483           The Holy Quran
4484       4484           The Holy Quran
4485       4485           The Holy Quran
4486       4486           The Holy Quran
4487       4487           The Holy Quran
4488       4488           The Holy Quran
4489       4489           The Holy Quran
4490       4490           The Holy Quran
4491       4491           The Holy Quran
4492       4492           The Holy Quran
4493       4493           The Holy Quran
4494       4494           The Holy Quran
4495       4495           The Holy Quran
4496       4496           The Holy Quran
4497       4497           The Holy Quran
4498       4498           The Holy Quran
4499       4499           The Holy Quran
4500       4500           The Holy Quran
4501       4501           The Holy Quran
4502       4502           The Holy Quran
4503       4503           The Holy Quran
4504       4504           The Holy Quran
4505       4505           The Holy Quran
4506       4506           The Holy Quran
4507       4507           The Holy Quran
4508       4508           The Holy Quran
4509       4509           The Holy Quran
4510       4510           The Holy Quran
4511       4511           The Holy Quran
4512       4512           The Holy Quran
4513       4513           The Holy Quran
4514       4514           The Holy Quran
4515       4515           The Holy Quran
4516       4516           The Holy Quran
4517       4517           The Holy Quran
4518       4518           The Holy Quran
4519       4519           The Holy Quran
4520       4520           The Holy Quran
4521       4521           The Holy Quran
4522       4522           The Holy Quran
4523       4523           The Holy Quran
4524       4524           The Holy Quran
4525       4525           The Holy Quran
4526       4526           The Holy Quran
4527       4527           The Holy Quran
4528       4528           The Holy Quran
4529       4529           The Holy Quran
4530       4530           The Holy Quran
4531       4531           The Holy Quran
4532       4532           The Holy Quran
4533       4533           The Holy Quran
4534       4534           The Holy Quran
4535       4535           The Holy Quran
4536       4536           The Holy Quran
4537       4537           The Holy Quran
4538       4538           The Holy Quran
4539       4539           The Holy Quran
4540       4540           The Holy Quran
4541       4541           The Holy Quran
4542       4542           The Holy Quran
4543       4543           The Holy Quran
4544       4544           The Holy Quran
4545       4545           The Holy Quran
4546       4546           The Holy Quran
4547       4547           The Holy Quran
4548       4548           The Holy Quran
4549       4549           The Holy Quran
4550       4550           The Holy Quran
4551       4551           The Holy Quran
4552       4552           The Holy Quran
4553       4553           The Holy Quran
4554       4554           The Holy Quran
4555       4555           The Holy Quran
4556       4556           The Holy Quran
4557       4557           The Holy Quran
4558       4558           The Holy Quran
4559       4559           The Holy Quran
4560       4560           The Holy Quran
4561       4561           The Holy Quran
4562       4562           The Holy Quran
4563       4563           The Holy Quran
4564       4564           The Holy Quran
4565       4565           The Holy Quran
4566       4566           The Holy Quran
4567       4567           The Holy Quran
4568       4568           The Holy Quran
4569       4569           The Holy Quran
4570       4570           The Holy Quran
4571       4571           The Holy Quran
4572       4572           The Holy Quran
4573       4573           The Holy Quran
4574       4574           The Holy Quran
4575       4575           The Holy Quran
4576       4576           The Holy Quran
4577       4577           The Holy Quran
4578       4578           The Holy Quran
4579       4579           The Holy Quran
4580       4580           The Holy Quran
4581       4581           The Holy Quran
4582       4582           The Holy Quran
4583       4583           The Holy Quran
4584       4584           The Holy Quran
4585       4585           The Holy Quran
4586       4586           The Holy Quran
4587       4587           The Holy Quran
4588       4588           The Holy Quran
4589       4589           The Holy Quran
4590       4590           The Holy Quran
4591       4591           The Holy Quran
4592       4592           The Holy Quran
4593       4593           The Holy Quran
4594       4594           The Holy Quran
4595       4595           The Holy Quran
4596       4596           The Holy Quran
4597       4597           The Holy Quran
4598       4598           The Holy Quran
4599       4599           The Holy Quran
4600       4600           The Holy Quran
4601       4601           The Holy Quran
4602       4602           The Holy Quran
4603       4603           The Holy Quran
4604       4604           The Holy Quran
4605       4605           The Holy Quran
4606       4606           The Holy Quran
4607       4607           The Holy Quran
4608       4608           The Holy Quran
4609       4609           The Holy Quran
4610       4610           The Holy Quran
4611       4611           The Holy Quran
4612       4612           The Holy Quran
4613       4613           The Holy Quran
4614       4614           The Holy Quran
4615       4615           The Holy Quran
4616       4616           The Holy Quran
4617       4617           The Holy Quran
4618       4618           The Holy Quran
4619       4619           The Holy Quran
4620       4620           The Holy Quran
4621       4621           The Holy Quran
4622       4622           The Holy Quran
4623       4623           The Holy Quran
4624       4624           The Holy Quran
4625       4625           The Holy Quran
4626       4626           The Holy Quran
4627       4627           The Holy Quran
4628       4628           The Holy Quran
4629       4629           The Holy Quran
4630       4630           The Holy Quran
4631       4631           The Holy Quran
4632       4632           The Holy Quran
4633       4633           The Holy Quran
4634       4634           The Holy Quran
4635       4635           The Holy Quran
4636       4636           The Holy Quran
4637       4637           The Holy Quran
4638       4638           The Holy Quran
4639       4639           The Holy Quran
4640       4640           The Holy Quran
4641       4641           The Holy Quran
4642       4642           The Holy Quran
4643       4643           The Holy Quran
4644       4644           The Holy Quran
4645       4645           The Holy Quran
4646       4646           The Holy Quran
4647       4647           The Holy Quran
4648       4648           The Holy Quran
4649       4649           The Holy Quran
4650       4650           The Holy Quran
4651       4651           The Holy Quran
4652       4652           The Holy Quran
4653       4653           The Holy Quran
4654       4654           The Holy Quran
4655       4655           The Holy Quran
4656       4656           The Holy Quran
4657       4657           The Holy Quran
4658       4658           The Holy Quran
4659       4659           The Holy Quran
4660       4660           The Holy Quran
4661       4661           The Holy Quran
4662       4662           The Holy Quran
4663       4663           The Holy Quran
4664       4664           The Holy Quran
4665       4665           The Holy Quran
4666       4666           The Holy Quran
4667       4667           The Holy Quran
4668       4668           The Holy Quran
4669       4669           The Holy Quran
4670       4670           The Holy Quran
4671       4671           The Holy Quran
4672       4672           The Holy Quran
4673       4673           The Holy Quran
4674       4674           The Holy Quran
4675       4675           The Holy Quran
4676       4676           The Holy Quran
4677       4677           The Holy Quran
4678       4678           The Holy Quran
4679       4679           The Holy Quran
4680       4680           The Holy Quran
4681       4681           The Holy Quran
4682       4682           The Holy Quran
4683       4683           The Holy Quran
4684       4684           The Holy Quran
4685       4685           The Holy Quran
4686       4686           The Holy Quran
4687       4687           The Holy Quran
4688       4688           The Holy Quran
4689       4689           The Holy Quran
4690       4690           The Holy Quran
4691       4691           The Holy Quran
4692       4692           The Holy Quran
4693       4693           The Holy Quran
4694       4694           The Holy Quran
4695       4695           The Holy Quran
4696       4696           The Holy Quran
4697       4697           The Holy Quran
4698       4698           The Holy Quran
4699       4699           The Holy Quran
4700       4700           The Holy Quran
4701       4701           The Holy Quran
4702       4702           The Holy Quran
4703       4703           The Holy Quran
4704       4704           The Holy Quran
4705       4705           The Holy Quran
4706       4706           The Holy Quran
4707       4707           The Holy Quran
4708       4708           The Holy Quran
4709       4709           The Holy Quran
4710       4710           The Holy Quran
4711       4711           The Holy Quran
4712       4712           The Holy Quran
4713       4713           The Holy Quran
4714       4714           The Holy Quran
4715       4715           The Holy Quran
4716       4716           The Holy Quran
4717       4717           The Holy Quran
4718       4718           The Holy Quran
4719       4719           The Holy Quran
4720       4720           The Holy Quran
4721       4721           The Holy Quran
4722       4722           The Holy Quran
4723       4723           The Holy Quran
4724       4724           The Holy Quran
4725       4725           The Holy Quran
4726       4726           The Holy Quran
4727       4727           The Holy Quran
4728       4728           The Holy Quran
4729       4729           The Holy Quran
4730       4730           The Holy Quran
4731       4731           The Holy Quran
4732       4732           The Holy Quran
4733       4733           The Holy Quran
4734       4734           The Holy Quran
4735       4735           The Holy Quran
4736       4736           The Holy Quran
4737       4737           The Holy Quran
4738       4738           The Holy Quran
4739       4739           The Holy Quran
4740       4740           The Holy Quran
4741       4741           The Holy Quran
4742       4742           The Holy Quran
4743       4743           The Holy Quran
4744       4744           The Holy Quran
4745       4745           The Holy Quran
4746       4746           The Holy Quran
4747       4747           The Holy Quran
4748       4748           The Holy Quran
4749       4749           The Holy Quran
4750       4750           The Holy Quran
4751       4751           The Holy Quran
4752       4752           The Holy Quran
4753       4753           The Holy Quran
4754       4754           The Holy Quran
4755       4755           The Holy Quran
4756       4756           The Holy Quran
4757       4757           The Holy Quran
4758       4758           The Holy Quran
4759       4759           The Holy Quran
4760       4760           The Holy Quran
4761       4761           The Holy Quran
4762       4762           The Holy Quran
4763       4763           The Holy Quran
4764       4764           The Holy Quran
4765       4765           The Holy Quran
4766       4766           The Holy Quran
4767       4767           The Holy Quran
4768       4768           The Holy Quran
4769       4769           The Holy Quran
4770       4770           The Holy Quran
4771       4771           The Holy Quran
4772       4772           The Holy Quran
4773       4773           The Holy Quran
4774       4774           The Holy Quran
4775       4775           The Holy Quran
4776       4776           The Holy Quran
4777       4777           The Holy Quran
4778       4778           The Holy Quran
4779       4779           The Holy Quran
4780       4780           The Holy Quran
4781       4781           The Holy Quran
4782       4782           The Holy Quran
4783       4783           The Holy Quran
4784       4784           The Holy Quran
4785       4785           The Holy Quran
4786       4786           The Holy Quran
4787       4787           The Holy Quran
4788       4788           The Holy Quran
4789       4789           The Holy Quran
4790       4790           The Holy Quran
4791       4791           The Holy Quran
4792       4792           The Holy Quran
4793       4793           The Holy Quran
4794       4794           The Holy Quran
4795       4795           The Holy Quran
4796       4796           The Holy Quran
4797       4797           The Holy Quran
4798       4798           The Holy Quran
4799       4799           The Holy Quran
4800       4800           The Holy Quran
4801       4801           The Holy Quran
4802       4802           The Holy Quran
4803       4803           The Holy Quran
4804       4804           The Holy Quran
4805       4805           The Holy Quran
4806       4806           The Holy Quran
4807       4807           The Holy Quran
4808       4808           The Holy Quran
4809       4809           The Holy Quran
4810       4810           The Holy Quran
4811       4811           The Holy Quran
4812       4812           The Holy Quran
4813       4813           The Holy Quran
4814       4814           The Holy Quran
4815       4815           The Holy Quran
4816       4816           The Holy Quran
4817       4817           The Holy Quran
4818       4818           The Holy Quran
4819       4819           The Holy Quran
4820       4820           The Holy Quran
4821       4821           The Holy Quran
4822       4822           The Holy Quran
4823       4823           The Holy Quran
4824       4824           The Holy Quran
4825       4825           The Holy Quran
4826       4826           The Holy Quran
4827       4827           The Holy Quran
4828       4828           The Holy Quran
4829       4829           The Holy Quran
4830       4830           The Holy Quran
4831       4831           The Holy Quran
4832       4832           The Holy Quran
4833       4833           The Holy Quran
4834       4834           The Holy Quran
4835       4835           The Holy Quran
4836       4836           The Holy Quran
4837       4837           The Holy Quran
4838       4838           The Holy Quran
4839       4839           The Holy Quran
4840       4840           The Holy Quran
4841       4841           The Holy Quran
4842       4842           The Holy Quran
4843       4843           The Holy Quran
4844       4844           The Holy Quran
4845       4845           The Holy Quran
4846       4846           The Holy Quran
4847       4847           The Holy Quran
4848       4848           The Holy Quran
4849       4849           The Holy Quran
4850       4850           The Holy Quran
4851       4851           The Holy Quran
4852       4852           The Holy Quran
4853       4853           The Holy Quran
4854       4854           The Holy Quran
4855       4855           The Holy Quran
4856       4856           The Holy Quran
4857       4857           The Holy Quran
4858       4858           The Holy Quran
4859       4859           The Holy Quran
4860       4860           The Holy Quran
4861       4861           The Holy Quran
4862       4862           The Holy Quran
4863       4863           The Holy Quran
4864       4864           The Holy Quran
4865       4865           The Holy Quran
4866       4866           The Holy Quran
4867       4867           The Holy Quran
4868       4868           The Holy Quran
4869       4869           The Holy Quran
4870       4870           The Holy Quran
4871       4871           The Holy Quran
4872       4872           The Holy Quran
4873       4873           The Holy Quran
4874       4874           The Holy Quran
4875       4875           The Holy Quran
4876       4876           The Holy Quran
4877       4877           The Holy Quran
4878       4878           The Holy Quran
4879       4879           The Holy Quran
4880       4880           The Holy Quran
4881       4881           The Holy Quran
4882       4882           The Holy Quran
4883       4883           The Holy Quran
4884       4884           The Holy Quran
4885       4885           The Holy Quran
4886       4886           The Holy Quran
4887       4887           The Holy Quran
4888       4888           The Holy Quran
4889       4889           The Holy Quran
4890       4890           The Holy Quran
4891       4891           The Holy Quran
4892       4892           The Holy Quran
4893       4893           The Holy Quran
4894       4894           The Holy Quran
4895       4895           The Holy Quran
4896       4896           The Holy Quran
4897       4897           The Holy Quran
4898       4898           The Holy Quran
4899       4899           The Holy Quran
4900       4900           The Holy Quran
4901       4901           The Holy Quran
4902       4902           The Holy Quran
4903       4903           The Holy Quran
4904       4904           The Holy Quran
4905       4905           The Holy Quran
4906       4906           The Holy Quran
4907       4907           The Holy Quran
4908       4908           The Holy Quran
4909       4909           The Holy Quran
4910       4910           The Holy Quran
4911       4911           The Holy Quran
4912       4912           The Holy Quran
4913       4913           The Holy Quran
4914       4914           The Holy Quran
4915       4915           The Holy Quran
4916       4916           The Holy Quran
4917       4917           The Holy Quran
4918       4918           The Holy Quran
4919       4919           The Holy Quran
4920       4920           The Holy Quran
4921       4921           The Holy Quran
4922       4922           The Holy Quran
4923       4923           The Holy Quran
4924       4924           The Holy Quran
4925       4925           The Holy Quran
4926       4926           The Holy Quran
4927       4927           The Holy Quran
4928       4928           The Holy Quran
4929       4929           The Holy Quran
4930       4930           The Holy Quran
4931       4931           The Holy Quran
4932       4932           The Holy Quran
4933       4933           The Holy Quran
4934       4934           The Holy Quran
4935       4935           The Holy Quran
4936       4936           The Holy Quran
4937       4937           The Holy Quran
4938       4938           The Holy Quran
4939       4939           The Holy Quran
4940       4940           The Holy Quran
4941       4941           The Holy Quran
4942       4942           The Holy Quran
4943       4943           The Holy Quran
4944       4944           The Holy Quran
4945       4945           The Holy Quran
4946       4946           The Holy Quran
4947       4947           The Holy Quran
4948       4948           The Holy Quran
4949       4949           The Holy Quran
4950       4950           The Holy Quran
4951       4951           The Holy Quran
4952       4952           The Holy Quran
4953       4953           The Holy Quran
4954       4954           The Holy Quran
4955       4955           The Holy Quran
4956       4956           The Holy Quran
4957       4957           The Holy Quran
4958       4958           The Holy Quran
4959       4959           The Holy Quran
4960       4960           The Holy Quran
4961       4961           The Holy Quran
4962       4962           The Holy Quran
4963       4963           The Holy Quran
4964       4964           The Holy Quran
4965       4965           The Holy Quran
4966       4966           The Holy Quran
4967       4967           The Holy Quran
4968       4968           The Holy Quran
4969       4969           The Holy Quran
4970       4970           The Holy Quran
4971       4971           The Holy Quran
4972       4972           The Holy Quran
4973       4973           The Holy Quran
4974       4974           The Holy Quran
4975       4975           The Holy Quran
4976       4976           The Holy Quran
4977       4977           The Holy Quran
4978       4978           The Holy Quran
4979       4979           The Holy Quran
4980       4980           The Holy Quran
4981       4981           The Holy Quran
4982       4982           The Holy Quran
4983       4983           The Holy Quran
4984       4984           The Holy Quran
4985       4985           The Holy Quran
4986       4986           The Holy Quran
4987       4987           The Holy Quran
4988       4988           The Holy Quran
4989       4989           The Holy Quran
4990       4990           The Holy Quran
4991       4991           The Holy Quran
4992       4992           The Holy Quran
4993       4993           The Holy Quran
4994       4994           The Holy Quran
4995       4995           The Holy Quran
4996       4996           The Holy Quran
4997       4997           The Holy Quran
4998       4998           The Holy Quran
4999       4999           The Holy Quran
5000       5000           The Holy Quran
5001       5001           The Holy Quran
5002       5002           The Holy Quran
5003       5003           The Holy Quran
5004       5004           The Holy Quran
5005       5005           The Holy Quran
5006       5006           The Holy Quran
5007       5007           The Holy Quran
5008       5008           The Holy Quran
5009       5009           The Holy Quran
5010       5010           The Holy Quran
5011       5011           The Holy Quran
5012       5012           The Holy Quran
5013       5013           The Holy Quran
5014       5014           The Holy Quran
5015       5015           The Holy Quran
5016       5016           The Holy Quran
5017       5017           The Holy Quran
5018       5018           The Holy Quran
5019       5019           The Holy Quran
5020       5020           The Holy Quran
5021       5021           The Holy Quran
5022       5022           The Holy Quran
5023       5023           The Holy Quran
5024       5024           The Holy Quran
5025       5025           The Holy Quran
5026       5026           The Holy Quran
5027       5027           The Holy Quran
5028       5028           The Holy Quran
5029       5029           The Holy Quran
5030       5030           The Holy Quran
5031       5031           The Holy Quran
5032       5032           The Holy Quran
5033       5033           The Holy Quran
5034       5034           The Holy Quran
5035       5035           The Holy Quran
5036       5036           The Holy Quran
5037       5037           The Holy Quran
5038       5038           The Holy Quran
5039       5039           The Holy Quran
5040       5040           The Holy Quran
5041       5041           The Holy Quran
5042       5042           The Holy Quran
5043       5043           The Holy Quran
5044       5044           The Holy Quran
5045       5045           The Holy Quran
5046       5046           The Holy Quran
5047       5047           The Holy Quran
5048       5048           The Holy Quran
5049       5049           The Holy Quran
5050       5050           The Holy Quran
5051       5051           The Holy Quran
5052       5052           The Holy Quran
5053       5053           The Holy Quran
5054       5054           The Holy Quran
5055       5055           The Holy Quran
5056       5056           The Holy Quran
5057       5057           The Holy Quran
5058       5058           The Holy Quran
5059       5059           The Holy Quran
5060       5060           The Holy Quran
5061       5061           The Holy Quran
5062       5062           The Holy Quran
5063       5063           The Holy Quran
5064       5064           The Holy Quran
5065       5065           The Holy Quran
5066       5066           The Holy Quran
5067       5067           The Holy Quran
5068       5068           The Holy Quran
5069       5069           The Holy Quran
5070       5070           The Holy Quran
5071       5071           The Holy Quran
5072       5072           The Holy Quran
5073       5073           The Holy Quran
5074       5074           The Holy Quran
5075       5075           The Holy Quran
5076       5076           The Holy Quran
5077       5077           The Holy Quran
5078       5078           The Holy Quran
5079       5079           The Holy Quran
5080       5080           The Holy Quran
5081       5081           The Holy Quran
5082       5082           The Holy Quran
5083       5083           The Holy Quran
5084       5084           The Holy Quran
5085       5085           The Holy Quran
5086       5086           The Holy Quran
5087       5087           The Holy Quran
5088       5088           The Holy Quran
5089       5089           The Holy Quran
5090       5090           The Holy Quran
5091       5091           The Holy Quran
5092       5092           The Holy Quran
5093       5093           The Holy Quran
5094       5094           The Holy Quran
5095       5095           The Holy Quran
5096       5096           The Holy Quran
5097       5097           The Holy Quran
5098       5098           The Holy Quran
5099       5099           The Holy Quran
5100       5100           The Holy Quran
5101       5101           The Holy Quran
5102       5102           The Holy Quran
5103       5103           The Holy Quran
5104       5104           The Holy Quran
5105       5105           The Holy Quran
5106       5106           The Holy Quran
5107       5107           The Holy Quran
5108       5108           The Holy Quran
5109       5109           The Holy Quran
5110       5110           The Holy Quran
5111       5111           The Holy Quran
5112       5112           The Holy Quran
5113       5113           The Holy Quran
5114       5114           The Holy Quran
5115       5115           The Holy Quran
5116       5116           The Holy Quran
5117       5117           The Holy Quran
5118       5118           The Holy Quran
5119       5119           The Holy Quran
5120       5120           The Holy Quran
5121       5121           The Holy Quran
5122       5122           The Holy Quran
5123       5123           The Holy Quran
5124       5124           The Holy Quran
5125       5125           The Holy Quran
5126       5126           The Holy Quran
5127       5127           The Holy Quran
5128       5128           The Holy Quran
5129       5129           The Holy Quran
5130       5130           The Holy Quran
5131       5131           The Holy Quran
5132       5132           The Holy Quran
5133       5133           The Holy Quran
5134       5134           The Holy Quran
5135       5135           The Holy Quran
5136       5136           The Holy Quran
5137       5137           The Holy Quran
5138       5138           The Holy Quran
5139       5139           The Holy Quran
5140       5140           The Holy Quran
5141       5141           The Holy Quran
5142       5142           The Holy Quran
5143       5143           The Holy Quran
5144       5144           The Holy Quran
5145       5145           The Holy Quran
5146       5146           The Holy Quran
5147       5147           The Holy Quran
5148       5148           The Holy Quran
5149       5149           The Holy Quran
5150       5150           The Holy Quran
5151       5151           The Holy Quran
5152       5152           The Holy Quran
5153       5153           The Holy Quran
5154       5154           The Holy Quran
5155       5155           The Holy Quran
5156       5156           The Holy Quran
5157       5157           The Holy Quran
5158       5158           The Holy Quran
5159       5159           The Holy Quran
5160       5160           The Holy Quran
5161       5161           The Holy Quran
5162       5162           The Holy Quran
5163       5163           The Holy Quran
5164       5164           The Holy Quran
5165       5165           The Holy Quran
5166       5166           The Holy Quran
5167       5167           The Holy Quran
5168       5168           The Holy Quran
5169       5169           The Holy Quran
5170       5170           The Holy Quran
5171       5171           The Holy Quran
5172       5172           The Holy Quran
5173       5173           The Holy Quran
5174       5174           The Holy Quran
5175       5175           The Holy Quran
5176       5176           The Holy Quran
5177       5177           The Holy Quran
5178       5178           The Holy Quran
5179       5179           The Holy Quran
5180       5180           The Holy Quran
5181       5181           The Holy Quran
5182       5182           The Holy Quran
5183       5183           The Holy Quran
5184       5184           The Holy Quran
5185       5185           The Holy Quran
5186       5186           The Holy Quran
5187       5187           The Holy Quran
5188       5188           The Holy Quran
5189       5189           The Holy Quran
5190       5190           The Holy Quran
5191       5191           The Holy Quran
5192       5192           The Holy Quran
5193       5193           The Holy Quran
5194       5194           The Holy Quran
5195       5195           The Holy Quran
5196       5196           The Holy Quran
5197       5197           The Holy Quran
5198       5198           The Holy Quran
5199       5199           The Holy Quran
5200       5200           The Holy Quran
5201       5201           The Holy Quran
5202       5202           The Holy Quran
5203       5203           The Holy Quran
5204       5204           The Holy Quran
5205       5205           The Holy Quran
5206       5206           The Holy Quran
5207       5207           The Holy Quran
5208       5208           The Holy Quran
5209       5209           The Holy Quran
5210       5210           The Holy Quran
5211       5211           The Holy Quran
5212       5212           The Holy Quran
5213       5213           The Holy Quran
5214       5214           The Holy Quran
5215       5215           The Holy Quran
5216       5216           The Holy Quran
5217       5217           The Holy Quran
5218       5218           The Holy Quran
5219       5219           The Holy Quran
5220       5220           The Holy Quran
5221       5221           The Holy Quran
5222       5222           The Holy Quran
5223       5223           The Holy Quran
5224       5224           The Holy Quran
5225       5225           The Holy Quran
5226       5226           The Holy Quran
5227       5227           The Holy Quran
5228       5228           The Holy Quran
5229       5229           The Holy Quran
5230       5230           The Holy Quran
5231       5231           The Holy Quran
5232       5232           The Holy Quran
5233       5233           The Holy Quran
5234       5234           The Holy Quran
5235       5235           The Holy Quran
5236       5236           The Holy Quran
5237       5237           The Holy Quran
5238       5238           The Holy Quran
5239       5239           The Holy Quran
5240       5240           The Holy Quran
5241       5241           The Holy Quran
5242       5242           The Holy Quran
5243       5243           The Holy Quran
5244       5244           The Holy Quran
5245       5245           The Holy Quran
5246       5246           The Holy Quran
5247       5247           The Holy Quran
5248       5248           The Holy Quran
5249       5249           The Holy Quran
5250       5250           The Holy Quran
5251       5251           The Holy Quran
5252       5252           The Holy Quran
5253       5253           The Holy Quran
5254       5254           The Holy Quran
5255       5255           The Holy Quran
5256       5256           The Holy Quran
5257       5257           The Holy Quran
5258       5258           The Holy Quran
5259       5259           The Holy Quran
5260       5260           The Holy Quran
5261       5261           The Holy Quran
5262       5262           The Holy Quran
5263       5263           The Holy Quran
5264       5264           The Holy Quran
5265       5265           The Holy Quran
5266       5266           The Holy Quran
5267       5267           The Holy Quran
5268       5268           The Holy Quran
5269       5269           The Holy Quran
5270       5270           The Holy Quran
5271       5271           The Holy Quran
5272       5272           The Holy Quran
5273       5273           The Holy Quran
5274       5274           The Holy Quran
5275       5275           The Holy Quran
5276       5276           The Holy Quran
5277       5277           The Holy Quran
5278       5278           The Holy Quran
5279       5279           The Holy Quran
5280       5280           The Holy Quran
5281       5281           The Holy Quran
5282       5282           The Holy Quran
5283       5283           The Holy Quran
5284       5284           The Holy Quran
5285       5285           The Holy Quran
5286       5286           The Holy Quran
5287       5287           The Holy Quran
5288       5288           The Holy Quran
5289       5289           The Holy Quran
5290       5290           The Holy Quran
5291       5291           The Holy Quran
5292       5292           The Holy Quran
5293       5293           The Holy Quran
5294       5294           The Holy Quran
5295       5295           The Holy Quran
5296       5296           The Holy Quran
5297       5297           The Holy Quran
5298       5298           The Holy Quran
5299       5299           The Holy Quran
5300       5300           The Holy Quran
5301       5301           The Holy Quran
5302       5302           The Holy Quran
5303       5303           The Holy Quran
5304       5304           The Holy Quran
5305       5305           The Holy Quran
5306       5306           The Holy Quran
5307       5307           The Holy Quran
5308       5308           The Holy Quran
5309       5309           The Holy Quran
5310       5310           The Holy Quran
5311       5311           The Holy Quran
5312       5312           The Holy Quran
5313       5313           The Holy Quran
5314       5314           The Holy Quran
5315       5315           The Holy Quran
5316       5316           The Holy Quran
5317       5317           The Holy Quran
5318       5318           The Holy Quran
5319       5319           The Holy Quran
5320       5320           The Holy Quran
5321       5321           The Holy Quran
5322       5322           The Holy Quran
5323       5323           The Holy Quran
5324       5324           The Holy Quran
5325       5325           The Holy Quran
5326       5326           The Holy Quran
5327       5327           The Holy Quran
5328       5328           The Holy Quran
5329       5329           The Holy Quran
5330       5330           The Holy Quran
5331       5331           The Holy Quran
5332       5332           The Holy Quran
5333       5333           The Holy Quran
5334       5334           The Holy Quran
5335       5335           The Holy Quran
5336       5336           The Holy Quran
5337       5337           The Holy Quran
5338       5338           The Holy Quran
5339       5339           The Holy Quran
5340       5340           The Holy Quran
5341       5341           The Holy Quran
5342       5342           The Holy Quran
5343       5343           The Holy Quran
5344       5344           The Holy Quran
5345       5345           The Holy Quran
5346       5346           The Holy Quran
5347       5347           The Holy Quran
5348       5348           The Holy Quran
5349       5349           The Holy Quran
5350       5350           The Holy Quran
5351       5351           The Holy Quran
5352       5352           The Holy Quran
5353       5353           The Holy Quran
5354       5354           The Holy Quran
5355       5355           The Holy Quran
5356       5356           The Holy Quran
5357       5357           The Holy Quran
5358       5358           The Holy Quran
5359       5359           The Holy Quran
5360       5360           The Holy Quran
5361       5361           The Holy Quran
5362       5362           The Holy Quran
5363       5363           The Holy Quran
5364       5364           The Holy Quran
5365       5365           The Holy Quran
5366       5366           The Holy Quran
5367       5367           The Holy Quran
5368       5368           The Holy Quran
5369       5369           The Holy Quran
5370       5370           The Holy Quran
5371       5371           The Holy Quran
5372       5372           The Holy Quran
5373       5373           The Holy Quran
5374       5374           The Holy Quran
5375       5375           The Holy Quran
5376       5376           The Holy Quran
5377       5377           The Holy Quran
5378       5378           The Holy Quran
5379       5379           The Holy Quran
5380       5380           The Holy Quran
5381       5381           The Holy Quran
5382       5382           The Holy Quran
5383       5383           The Holy Quran
5384       5384           The Holy Quran
5385       5385           The Holy Quran
5386       5386           The Holy Quran
5387       5387           The Holy Quran
5388       5388           The Holy Quran
5389       5389           The Holy Quran
5390       5390           The Holy Quran
5391       5391           The Holy Quran
5392       5392           The Holy Quran
5393       5393           The Holy Quran
5394       5394           The Holy Quran
5395       5395           The Holy Quran
5396       5396           The Holy Quran
5397       5397           The Holy Quran
5398       5398           The Holy Quran
5399       5399           The Holy Quran
5400       5400           The Holy Quran
5401       5401           The Holy Quran
5402       5402           The Holy Quran
5403       5403           The Holy Quran
5404       5404           The Holy Quran
5405       5405           The Holy Quran
5406       5406           The Holy Quran
5407       5407           The Holy Quran
5408       5408           The Holy Quran
5409       5409           The Holy Quran
5410       5410           The Holy Quran
5411       5411           The Holy Quran
5412       5412           The Holy Quran
5413       5413           The Holy Quran
5414       5414           The Holy Quran
5415       5415           The Holy Quran
5416       5416           The Holy Quran
5417       5417           The Holy Quran
5418       5418           The Holy Quran
5419       5419           The Holy Quran
5420       5420           The Holy Quran
5421       5421           The Holy Quran
5422       5422           The Holy Quran
5423       5423           The Holy Quran
5424       5424           The Holy Quran
5425       5425           The Holy Quran
5426       5426           The Holy Quran
5427       5427           The Holy Quran
5428       5428           The Holy Quran
5429       5429           The Holy Quran
5430       5430           The Holy Quran
5431       5431           The Holy Quran
5432       5432           The Holy Quran
5433       5433           The Holy Quran
5434       5434           The Holy Quran
5435       5435           The Holy Quran
5436       5436           The Holy Quran
5437       5437           The Holy Quran
5438       5438           The Holy Quran
5439       5439           The Holy Quran
5440       5440           The Holy Quran
5441       5441           The Holy Quran
5442       5442           The Holy Quran
5443       5443           The Holy Quran
5444       5444           The Holy Quran
5445       5445           The Holy Quran
5446       5446           The Holy Quran
5447       5447           The Holy Quran
5448       5448           The Holy Quran
5449       5449           The Holy Quran
5450       5450           The Holy Quran
5451       5451           The Holy Quran
5452       5452           The Holy Quran
5453       5453           The Holy Quran
5454       5454           The Holy Quran
5455       5455           The Holy Quran
5456       5456           The Holy Quran
5457       5457           The Holy Quran
5458       5458           The Holy Quran
5459       5459           The Holy Quran
5460       5460           The Holy Quran
5461       5461           The Holy Quran
5462       5462           The Holy Quran
5463       5463           The Holy Quran
5464       5464           The Holy Quran
5465       5465           The Holy Quran
5466       5466           The Holy Quran
5467       5467           The Holy Quran
5468       5468           The Holy Quran
5469       5469           The Holy Quran
5470       5470           The Holy Quran
5471       5471           The Holy Quran
5472       5472           The Holy Quran
5473       5473           The Holy Quran
5474       5474           The Holy Quran
5475       5475           The Holy Quran
5476       5476           The Holy Quran
5477       5477           The Holy Quran
5478       5478           The Holy Quran
5479       5479           The Holy Quran
5480       5480           The Holy Quran
5481       5481           The Holy Quran
5482       5482           The Holy Quran
5483       5483           The Holy Quran
5484       5484           The Holy Quran
5485       5485           The Holy Quran
5486       5486           The Holy Quran
5487       5487           The Holy Quran
5488       5488           The Holy Quran
5489       5489           The Holy Quran
5490       5490           The Holy Quran
5491       5491           The Holy Quran
5492       5492           The Holy Quran
5493       5493           The Holy Quran
5494       5494           The Holy Quran
5495       5495           The Holy Quran
5496       5496           The Holy Quran
5497       5497           The Holy Quran
5498       5498           The Holy Quran
5499       5499           The Holy Quran
5500       5500           The Holy Quran
5501       5501           The Holy Quran
5502       5502           The Holy Quran
5503       5503           The Holy Quran
5504       5504           The Holy Quran
5505       5505           The Holy Quran
5506       5506           The Holy Quran
5507       5507           The Holy Quran
5508       5508           The Holy Quran
5509       5509           The Holy Quran
5510       5510           The Holy Quran
5511       5511           The Holy Quran
5512       5512           The Holy Quran
5513       5513           The Holy Quran
5514       5514           The Holy Quran
5515       5515           The Holy Quran
5516       5516           The Holy Quran
5517       5517           The Holy Quran
5518       5518           The Holy Quran
5519       5519           The Holy Quran
5520       5520           The Holy Quran
5521       5521           The Holy Quran
5522       5522           The Holy Quran
5523       5523           The Holy Quran
5524       5524           The Holy Quran
5525       5525           The Holy Quran
5526       5526           The Holy Quran
5527       5527           The Holy Quran
5528       5528           The Holy Quran
5529       5529           The Holy Quran
5530       5530           The Holy Quran
5531       5531           The Holy Quran
5532       5532           The Holy Quran
5533       5533           The Holy Quran
5534       5534           The Holy Quran
5535       5535           The Holy Quran
5536       5536           The Holy Quran
5537       5537           The Holy Quran
5538       5538           The Holy Quran
5539       5539           The Holy Quran
5540       5540           The Holy Quran
5541       5541           The Holy Quran
5542       5542           The Holy Quran
5543       5543           The Holy Quran
5544       5544           The Holy Quran
5545       5545           The Holy Quran
5546       5546           The Holy Quran
5547       5547           The Holy Quran
5548       5548           The Holy Quran
5549       5549           The Holy Quran
5550       5550           The Holy Quran
5551       5551           The Holy Quran
5552       5552           The Holy Quran
5553       5553           The Holy Quran
5554       5554           The Holy Quran
5555       5555           The Holy Quran
5556       5556           The Holy Quran
5557       5557           The Holy Quran
5558       5558           The Holy Quran
5559       5559           The Holy Quran
5560       5560           The Holy Quran
5561       5561           The Holy Quran
5562       5562           The Holy Quran
5563       5563           The Holy Quran
5564       5564           The Holy Quran
5565       5565           The Holy Quran
5566       5566           The Holy Quran
5567       5567           The Holy Quran
5568       5568           The Holy Quran
5569       5569           The Holy Quran
5570       5570           The Holy Quran
5571       5571           The Holy Quran
5572       5572           The Holy Quran
5573       5573           The Holy Quran
5574       5574           The Holy Quran
5575       5575           The Holy Quran
5576       5576           The Holy Quran
5577       5577           The Holy Quran
5578       5578           The Holy Quran
5579       5579           The Holy Quran
5580       5580           The Holy Quran
5581       5581           The Holy Quran
5582       5582           The Holy Quran
5583       5583           The Holy Quran
5584       5584           The Holy Quran
5585       5585           The Holy Quran
5586       5586           The Holy Quran
5587       5587           The Holy Quran
5588       5588           The Holy Quran
5589       5589           The Holy Quran
5590       5590           The Holy Quran
5591       5591           The Holy Quran
5592       5592           The Holy Quran
5593       5593           The Holy Quran
5594       5594           The Holy Quran
5595       5595           The Holy Quran
5596       5596           The Holy Quran
5597       5597           The Holy Quran
5598       5598           The Holy Quran
5599       5599           The Holy Quran
5600       5600           The Holy Quran
5601       5601           The Holy Quran
5602       5602           The Holy Quran
5603       5603           The Holy Quran
5604       5604           The Holy Quran
5605       5605           The Holy Quran
5606       5606           The Holy Quran
5607       5607           The Holy Quran
5608       5608           The Holy Quran
5609       5609           The Holy Quran
5610       5610           The Holy Quran
5611       5611           The Holy Quran
5612       5612           The Holy Quran
5613       5613           The Holy Quran
5614       5614           The Holy Quran
5615       5615           The Holy Quran
5616       5616           The Holy Quran
5617       5617           The Holy Quran
5618       5618           The Holy Quran
5619       5619           The Holy Quran
5620       5620           The Holy Quran
5621       5621           The Holy Quran
5622       5622           The Holy Quran
5623       5623           The Holy Quran
5624       5624           The Holy Quran
5625       5625           The Holy Quran
5626       5626           The Holy Quran
5627       5627           The Holy Quran
5628       5628           The Holy Quran
5629       5629           The Holy Quran
5630       5630           The Holy Quran
5631       5631           The Holy Quran
5632       5632           The Holy Quran
5633       5633           The Holy Quran
5634       5634           The Holy Quran
5635       5635           The Holy Quran
5636       5636           The Holy Quran
5637       5637           The Holy Quran
5638       5638           The Holy Quran
5639       5639           The Holy Quran
5640       5640           The Holy Quran
5641       5641           The Holy Quran
5642       5642           The Holy Quran
5643       5643           The Holy Quran
5644       5644           The Holy Quran
5645       5645           The Holy Quran
5646       5646           The Holy Quran
5647       5647           The Holy Quran
5648       5648           The Holy Quran
5649       5649           The Holy Quran
5650       5650           The Holy Quran
5651       5651           The Holy Quran
5652       5652           The Holy Quran
5653       5653           The Holy Quran
5654       5654           The Holy Quran
5655       5655           The Holy Quran
5656       5656           The Holy Quran
5657       5657           The Holy Quran
5658       5658           The Holy Quran
5659       5659           The Holy Quran
5660       5660           The Holy Quran
5661       5661           The Holy Quran
5662       5662           The Holy Quran
5663       5663           The Holy Quran
5664       5664           The Holy Quran
5665       5665           The Holy Quran
5666       5666           The Holy Quran
5667       5667           The Holy Quran
5668       5668           The Holy Quran
5669       5669           The Holy Quran
5670       5670           The Holy Quran
5671       5671           The Holy Quran
5672       5672           The Holy Quran
5673       5673           The Holy Quran
5674       5674           The Holy Quran
5675       5675           The Holy Quran
5676       5676           The Holy Quran
5677       5677           The Holy Quran
5678       5678           The Holy Quran
5679       5679           The Holy Quran
5680       5680           The Holy Quran
5681       5681           The Holy Quran
5682       5682           The Holy Quran
5683       5683           The Holy Quran
5684       5684           The Holy Quran
5685       5685           The Holy Quran
5686       5686           The Holy Quran
5687       5687           The Holy Quran
5688       5688           The Holy Quran
5689       5689           The Holy Quran
5690       5690           The Holy Quran
5691       5691           The Holy Quran
5692       5692           The Holy Quran
5693       5693           The Holy Quran
5694       5694           The Holy Quran
5695       5695           The Holy Quran
5696       5696           The Holy Quran
5697       5697           The Holy Quran
5698       5698           The Holy Quran
5699       5699           The Holy Quran
5700       5700           The Holy Quran
5701       5701           The Holy Quran
5702       5702           The Holy Quran
5703       5703           The Holy Quran
5704       5704           The Holy Quran
5705       5705           The Holy Quran
5706       5706           The Holy Quran
5707       5707           The Holy Quran
5708       5708           The Holy Quran
5709       5709           The Holy Quran
5710       5710           The Holy Quran
5711       5711           The Holy Quran
5712       5712           The Holy Quran
5713       5713           The Holy Quran
5714       5714           The Holy Quran
5715       5715           The Holy Quran
5716       5716           The Holy Quran
5717       5717           The Holy Quran
5718       5718           The Holy Quran
5719       5719           The Holy Quran
5720       5720           The Holy Quran
5721       5721           The Holy Quran
5722       5722           The Holy Quran
5723       5723           The Holy Quran
5724       5724           The Holy Quran
5725       5725           The Holy Quran
5726       5726           The Holy Quran
5727       5727           The Holy Quran
5728       5728           The Holy Quran
5729       5729           The Holy Quran
5730       5730           The Holy Quran
5731       5731           The Holy Quran
5732       5732           The Holy Quran
5733       5733           The Holy Quran
5734       5734           The Holy Quran
5735       5735           The Holy Quran
5736       5736           The Holy Quran
5737       5737           The Holy Quran
5738       5738           The Holy Quran
5739       5739           The Holy Quran
5740       5740           The Holy Quran
5741       5741           The Holy Quran
5742       5742           The Holy Quran
5743       5743           The Holy Quran
5744       5744           The Holy Quran
5745       5745           The Holy Quran
5746       5746           The Holy Quran
5747       5747           The Holy Quran
5748       5748           The Holy Quran
5749       5749           The Holy Quran
5750       5750           The Holy Quran
5751       5751           The Holy Quran
5752       5752           The Holy Quran
5753       5753           The Holy Quran
5754       5754           The Holy Quran
5755       5755           The Holy Quran
5756       5756           The Holy Quran
5757       5757           The Holy Quran
5758       5758           The Holy Quran
5759       5759           The Holy Quran
5760       5760           The Holy Quran
5761       5761           The Holy Quran
5762       5762           The Holy Quran
5763       5763           The Holy Quran
5764       5764           The Holy Quran
5765       5765           The Holy Quran
5766       5766           The Holy Quran
5767       5767           The Holy Quran
5768       5768           The Holy Quran
5769       5769           The Holy Quran
5770       5770           The Holy Quran
5771       5771           The Holy Quran
5772       5772           The Holy Quran
5773       5773           The Holy Quran
5774       5774           The Holy Quran
5775       5775           The Holy Quran
5776       5776           The Holy Quran
5777       5777           The Holy Quran
5778       5778           The Holy Quran
5779       5779           The Holy Quran
5780       5780           The Holy Quran
5781       5781           The Holy Quran
5782       5782           The Holy Quran
5783       5783           The Holy Quran
5784       5784           The Holy Quran
5785       5785           The Holy Quran
5786       5786           The Holy Quran
5787       5787           The Holy Quran
5788       5788           The Holy Quran
5789       5789           The Holy Quran
5790       5790           The Holy Quran
5791       5791           The Holy Quran
5792       5792           The Holy Quran
5793       5793           The Holy Quran
5794       5794           The Holy Quran
5795       5795           The Holy Quran
5796       5796           The Holy Quran
5797       5797           The Holy Quran
5798       5798           The Holy Quran
5799       5799           The Holy Quran
5800       5800           The Holy Quran
5801       5801           The Holy Quran
5802       5802           The Holy Quran
5803       5803           The Holy Quran
5804       5804           The Holy Quran
5805       5805           The Holy Quran
5806       5806           The Holy Quran
5807       5807           The Holy Quran
5808       5808           The Holy Quran
5809       5809           The Holy Quran
5810       5810           The Holy Quran
5811       5811           The Holy Quran
5812       5812           The Holy Quran
5813       5813           The Holy Quran
5814       5814           The Holy Quran
5815       5815           The Holy Quran
5816       5816           The Holy Quran
5817       5817           The Holy Quran
5818       5818           The Holy Quran
5819       5819           The Holy Quran
5820       5820           The Holy Quran
5821       5821           The Holy Quran
5822       5822           The Holy Quran
5823       5823           The Holy Quran
5824       5824           The Holy Quran
5825       5825           The Holy Quran
5826       5826           The Holy Quran
5827       5827           The Holy Quran
5828       5828           The Holy Quran
5829       5829           The Holy Quran
5830       5830           The Holy Quran
5831       5831           The Holy Quran
5832       5832           The Holy Quran
5833       5833           The Holy Quran
5834       5834           The Holy Quran
5835       5835           The Holy Quran
5836       5836           The Holy Quran
5837       5837           The Holy Quran
5838       5838           The Holy Quran
5839       5839           The Holy Quran
5840       5840           The Holy Quran
5841       5841           The Holy Quran
5842       5842           The Holy Quran
5843       5843           The Holy Quran
5844       5844           The Holy Quran
5845       5845           The Holy Quran
5846       5846           The Holy Quran
5847       5847           The Holy Quran
5848       5848           The Holy Quran
5849       5849           The Holy Quran
5850       5850           The Holy Quran
5851       5851           The Holy Quran
5852       5852           The Holy Quran
5853       5853           The Holy Quran
5854       5854           The Holy Quran
5855       5855           The Holy Quran
5856       5856           The Holy Quran
5857       5857           The Holy Quran
5858       5858           The Holy Quran
5859       5859           The Holy Quran
5860       5860           The Holy Quran
5861       5861           The Holy Quran
5862       5862           The Holy Quran
5863       5863           The Holy Quran
5864       5864           The Holy Quran
5865       5865           The Holy Quran
5866       5866           The Holy Quran
5867       5867           The Holy Quran
5868       5868           The Holy Quran
5869       5869           The Holy Quran
5870       5870           The Holy Quran
5871       5871           The Holy Quran
5872       5872           The Holy Quran
5873       5873           The Holy Quran
5874       5874           The Holy Quran
5875       5875           The Holy Quran
5876       5876           The Holy Quran
5877       5877           The Holy Quran
5878       5878           The Holy Quran
5879       5879           The Holy Quran
5880       5880           The Holy Quran
5881       5881           The Holy Quran
5882       5882           The Holy Quran
5883       5883           The Holy Quran
5884       5884           The Holy Quran
5885       5885           The Holy Quran
5886       5886           The Holy Quran
5887       5887           The Holy Quran
5888       5888           The Holy Quran
5889       5889           The Holy Quran
5890       5890           The Holy Quran
5891       5891           The Holy Quran
5892       5892           The Holy Quran
5893       5893           The Holy Quran
5894       5894           The Holy Quran
5895       5895           The Holy Quran
5896       5896           The Holy Quran
5897       5897           The Holy Quran
5898       5898           The Holy Quran
5899       5899           The Holy Quran
5900       5900           The Holy Quran
5901       5901           The Holy Quran
5902       5902           The Holy Quran
5903       5903           The Holy Quran
5904       5904           The Holy Quran
5905       5905           The Holy Quran
5906       5906           The Holy Quran
5907       5907           The Holy Quran
5908       5908           The Holy Quran
5909       5909           The Holy Quran
5910       5910           The Holy Quran
5911       5911           The Holy Quran
5912       5912           The Holy Quran
5913       5913           The Holy Quran
5914       5914           The Holy Quran
5915       5915           The Holy Quran
5916       5916           The Holy Quran
5917       5917           The Holy Quran
5918       5918           The Holy Quran
5919       5919           The Holy Quran
5920       5920           The Holy Quran
5921       5921           The Holy Quran
5922       5922           The Holy Quran
5923       5923           The Holy Quran
5924       5924           The Holy Quran
5925       5925           The Holy Quran
5926       5926           The Holy Quran
5927       5927           The Holy Quran
5928       5928           The Holy Quran
5929       5929           The Holy Quran
5930       5930           The Holy Quran
5931       5931           The Holy Quran
5932       5932           The Holy Quran
5933       5933           The Holy Quran
5934       5934           The Holy Quran
5935       5935           The Holy Quran
5936       5936           The Holy Quran
5937       5937           The Holy Quran
5938       5938           The Holy Quran
5939       5939           The Holy Quran
5940       5940           The Holy Quran
5941       5941           The Holy Quran
5942       5942           The Holy Quran
5943       5943           The Holy Quran
5944       5944           The Holy Quran
5945       5945           The Holy Quran
5946       5946           The Holy Quran
5947       5947           The Holy Quran
5948       5948           The Holy Quran
5949       5949           The Holy Quran
5950       5950           The Holy Quran
5951       5951           The Holy Quran
5952       5952           The Holy Quran
5953       5953           The Holy Quran
5954       5954           The Holy Quran
5955       5955           The Holy Quran
5956       5956           The Holy Quran
5957       5957           The Holy Quran
5958       5958           The Holy Quran
5959       5959           The Holy Quran
5960       5960           The Holy Quran
5961       5961           The Holy Quran
5962       5962           The Holy Quran
5963       5963           The Holy Quran
5964       5964           The Holy Quran
5965       5965           The Holy Quran
5966       5966           The Holy Quran
5967       5967           The Holy Quran
5968       5968           The Holy Quran
5969       5969           The Holy Quran
5970       5970           The Holy Quran
5971       5971           The Holy Quran
5972       5972           The Holy Quran
5973       5973           The Holy Quran
5974       5974           The Holy Quran
5975       5975           The Holy Quran
5976       5976           The Holy Quran
5977       5977           The Holy Quran
5978       5978           The Holy Quran
5979       5979           The Holy Quran
5980       5980           The Holy Quran
5981       5981           The Holy Quran
5982       5982           The Holy Quran
5983       5983           The Holy Quran
5984       5984           The Holy Quran
5985       5985           The Holy Quran
5986       5986           The Holy Quran
5987       5987           The Holy Quran
5988       5988           The Holy Quran
5989       5989           The Holy Quran
5990       5990           The Holy Quran
5991       5991           The Holy Quran
5992       5992           The Holy Quran
5993       5993           The Holy Quran
5994       5994           The Holy Quran
5995       5995           The Holy Quran
5996       5996           The Holy Quran
5997       5997           The Holy Quran
5998       5998           The Holy Quran
5999       5999           The Holy Quran
6000       6000           The Holy Quran
6001       6001           The Holy Quran
6002       6002           The Holy Quran
6003       6003           The Holy Quran
6004       6004           The Holy Quran
6005       6005           The Holy Quran
6006       6006           The Holy Quran
6007       6007           The Holy Quran
6008       6008           The Holy Quran
6009       6009           The Holy Quran
6010       6010           The Holy Quran
6011       6011           The Holy Quran
6012       6012           The Holy Quran
6013       6013           The Holy Quran
6014       6014           The Holy Quran
6015       6015           The Holy Quran
6016       6016           The Holy Quran
6017       6017           The Holy Quran
6018       6018           The Holy Quran
6019       6019           The Holy Quran
6020       6020           The Holy Quran
6021       6021           The Holy Quran
6022       6022           The Holy Quran
6023       6023           The Holy Quran
6024       6024           The Holy Quran
6025       6025           The Holy Quran
6026       6026           The Holy Quran
6027       6027           The Holy Quran
6028       6028           The Holy Quran
6029       6029           The Holy Quran
6030       6030           The Holy Quran
6031       6031           The Holy Quran
6032       6032           The Holy Quran
6033       6033           The Holy Quran
6034       6034           The Holy Quran
6035       6035           The Holy Quran
6036       6036           The Holy Quran
6037       6037           The Holy Quran
6038       6038           The Holy Quran
6039       6039           The Holy Quran
6040       6040           The Holy Quran
6041       6041           The Holy Quran
6042       6042           The Holy Quran
6043       6043           The Holy Quran
6044       6044           The Holy Quran
6045       6045           The Holy Quran
6046       6046           The Holy Quran
6047       6047           The Holy Quran
6048       6048           The Holy Quran
6049       6049           The Holy Quran
6050       6050           The Holy Quran
6051       6051           The Holy Quran
6052       6052           The Holy Quran
6053       6053           The Holy Quran
6054       6054           The Holy Quran
6055       6055           The Holy Quran
6056       6056           The Holy Quran
6057       6057           The Holy Quran
6058       6058           The Holy Quran
6059       6059           The Holy Quran
6060       6060           The Holy Quran
6061       6061           The Holy Quran
6062       6062           The Holy Quran
6063       6063           The Holy Quran
6064       6064           The Holy Quran
6065       6065           The Holy Quran
6066       6066           The Holy Quran
6067       6067           The Holy Quran
6068       6068           The Holy Quran
6069       6069           The Holy Quran
6070       6070           The Holy Quran
6071       6071           The Holy Quran
6072       6072           The Holy Quran
6073       6073           The Holy Quran
6074       6074           The Holy Quran
6075       6075           The Holy Quran
6076       6076           The Holy Quran
6077       6077           The Holy Quran
6078       6078           The Holy Quran
6079       6079           The Holy Quran
6080       6080           The Holy Quran
6081       6081           The Holy Quran
6082       6082           The Holy Quran
6083       6083           The Holy Quran
6084       6084           The Holy Quran
6085       6085           The Holy Quran
6086       6086           The Holy Quran
6087       6087           The Holy Quran
6088       6088           The Holy Quran
6089       6089           The Holy Quran
6090       6090           The Holy Quran
6091       6091           The Holy Quran
6092       6092           The Holy Quran
6093       6093           The Holy Quran
6094       6094           The Holy Quran
6095       6095           The Holy Quran
6096       6096           The Holy Quran
6097       6097           The Holy Quran
6098       6098           The Holy Quran
6099       6099           The Holy Quran
6100       6100           The Holy Quran
6101       6101           The Holy Quran
6102       6102           The Holy Quran
6103       6103           The Holy Quran
6104       6104           The Holy Quran
6105       6105           The Holy Quran
6106       6106           The Holy Quran
6107       6107           The Holy Quran
6108       6108           The Holy Quran
6109       6109           The Holy Quran
6110       6110           The Holy Quran
6111       6111           The Holy Quran
6112       6112           The Holy Quran
6113       6113           The Holy Quran
6114       6114           The Holy Quran
6115       6115           The Holy Quran
6116       6116           The Holy Quran
6117       6117           The Holy Quran
6118       6118           The Holy Quran
6119       6119           The Holy Quran
6120       6120           The Holy Quran
6121       6121           The Holy Quran
6122       6122           The Holy Quran
6123       6123           The Holy Quran
6124       6124           The Holy Quran
6125       6125           The Holy Quran
6126       6126           The Holy Quran
6127       6127           The Holy Quran
6128       6128           The Holy Quran
6129       6129           The Holy Quran
6130       6130           The Holy Quran
6131       6131           The Holy Quran
6132       6132           The Holy Quran
6133       6133           The Holy Quran
6134       6134           The Holy Quran
6135       6135           The Holy Quran
6136       6136           The Holy Quran
6137       6137           The Holy Quran
6138       6138           The Holy Quran
6139       6139           The Holy Quran
6140       6140           The Holy Quran
6141       6141           The Holy Quran
6142       6142           The Holy Quran
6143       6143           The Holy Quran
6144       6144           The Holy Quran
6145       6145           The Holy Quran
6146       6146           The Holy Quran
6147       6147           The Holy Quran
6148       6148           The Holy Quran
6149       6149           The Holy Quran
6150       6150           The Holy Quran
6151       6151           The Holy Quran
6152       6152           The Holy Quran
6153       6153           The Holy Quran
6154       6154           The Holy Quran
6155       6155           The Holy Quran
6156       6156           The Holy Quran
6157       6157           The Holy Quran
6158       6158           The Holy Quran
6159       6159           The Holy Quran
6160       6160           The Holy Quran
6161       6161           The Holy Quran
6162       6162           The Holy Quran
6163       6163           The Holy Quran
6164       6164           The Holy Quran
6165       6165           The Holy Quran
6166       6166           The Holy Quran
6167       6167           The Holy Quran
6168       6168           The Holy Quran
6169       6169           The Holy Quran
6170       6170           The Holy Quran
6171       6171           The Holy Quran
6172       6172           The Holy Quran
6173       6173           The Holy Quran
6174       6174           The Holy Quran
6175       6175           The Holy Quran
6176       6176           The Holy Quran
6177       6177           The Holy Quran
6178       6178           The Holy Quran
6179       6179           The Holy Quran
6180       6180           The Holy Quran
6181       6181           The Holy Quran
6182       6182           The Holy Quran
6183       6183           The Holy Quran
6184       6184           The Holy Quran
6185       6185           The Holy Quran
6186       6186           The Holy Quran
6187       6187           The Holy Quran
6188       6188           The Holy Quran
6189       6189           The Holy Quran
6190       6190           The Holy Quran
6191       6191           The Holy Quran
6192       6192           The Holy Quran
6193       6193           The Holy Quran
6194       6194           The Holy Quran
6195       6195           The Holy Quran
6196       6196           The Holy Quran
6197       6197           The Holy Quran
6198       6198           The Holy Quran
6199       6199           The Holy Quran
6200       6200           The Holy Quran
6201       6201           The Holy Quran
6202       6202           The Holy Quran
6203       6203           The Holy Quran
6204       6204           The Holy Quran
6205       6205           The Holy Quran
6206       6206           The Holy Quran
6207       6207           The Holy Quran
6208       6208           The Holy Quran
6209       6209           The Holy Quran
6210       6210           The Holy Quran
6211       6211           The Holy Quran
6212       6212           The Holy Quran
6213       6213           The Holy Quran
6214       6214           The Holy Quran
6215       6215           The Holy Quran
6216       6216           The Holy Quran
6217       6217           The Holy Quran
6218       6218           The Holy Quran
6219       6219           The Holy Quran
6220       6220           The Holy Quran
6221       6221           The Holy Quran
6222       6222           The Holy Quran
6223       6223           The Holy Quran
6224       6224           The Holy Quran
6225       6225           The Holy Quran
6226       6226           The Holy Quran
6227       6227           The Holy Quran
6228       6228           The Holy Quran
6229       6229           The Holy Quran
6230       6230           The Holy Quran
6231       6231           The Holy Quran
6232       6232           The Holy Quran
6233       6233           The Holy Quran
6234       6234           The Holy Quran
6235       6235           The Holy Quran
6236       6236           The Holy Quran
6237          1 King James Version Bible
6238          2 King James Version Bible
6239          3 King James Version Bible
6240          4 King James Version Bible
6241          5 King James Version Bible
6242          6 King James Version Bible
6243          7 King James Version Bible
6244          8 King James Version Bible
6245          9 King James Version Bible
6246         10 King James Version Bible
6247         11 King James Version Bible
6248         12 King James Version Bible
6249         13 King James Version Bible
6250         14 King James Version Bible
6251         15 King James Version Bible
6252         16 King James Version Bible
6253         17 King James Version Bible
6254         18 King James Version Bible
6255         19 King James Version Bible
6256         20 King James Version Bible
6257         21 King James Version Bible
6258         22 King James Version Bible
6259         23 King James Version Bible
6260         24 King James Version Bible
6261         25 King James Version Bible
6262         26 King James Version Bible
6263         27 King James Version Bible
6264         28 King James Version Bible
6265         29 King James Version Bible
6266         30 King James Version Bible
6267         31 King James Version Bible
6268         32 King James Version Bible
6269         33 King James Version Bible
6270         34 King James Version Bible
6271         35 King James Version Bible
6272         36 King James Version Bible
6273         37 King James Version Bible
6274         38 King James Version Bible
6275         39 King James Version Bible
6276         40 King James Version Bible
6277         41 King James Version Bible
6278         42 King James Version Bible
6279         43 King James Version Bible
6280         44 King James Version Bible
6281         45 King James Version Bible
6282         46 King James Version Bible
6283         47 King James Version Bible
6284         48 King James Version Bible
6285         49 King James Version Bible
6286         50 King James Version Bible
6287         51 King James Version Bible
6288         52 King James Version Bible
6289         53 King James Version Bible
6290         54 King James Version Bible
6291         55 King James Version Bible
6292         56 King James Version Bible
6293         57 King James Version Bible
6294         58 King James Version Bible
6295         59 King James Version Bible
6296         60 King James Version Bible
6297         61 King James Version Bible
6298         62 King James Version Bible
6299         63 King James Version Bible
6300         64 King James Version Bible
6301         65 King James Version Bible
6302         66 King James Version Bible
6303         67 King James Version Bible
6304         68 King James Version Bible
6305         69 King James Version Bible
6306         70 King James Version Bible
6307         71 King James Version Bible
6308         72 King James Version Bible
6309         73 King James Version Bible
6310         74 King James Version Bible
6311         75 King James Version Bible
6312         76 King James Version Bible
6313         77 King James Version Bible
6314         78 King James Version Bible
6315         79 King James Version Bible
6316         80 King James Version Bible
6317         81 King James Version Bible
6318         82 King James Version Bible
6319         83 King James Version Bible
6320         84 King James Version Bible
6321         85 King James Version Bible
6322         86 King James Version Bible
6323         87 King James Version Bible
6324         88 King James Version Bible
6325         89 King James Version Bible
6326         90 King James Version Bible
6327         91 King James Version Bible
6328         92 King James Version Bible
6329         93 King James Version Bible
6330         94 King James Version Bible
6331         95 King James Version Bible
6332         96 King James Version Bible
6333         97 King James Version Bible
6334         98 King James Version Bible
6335         99 King James Version Bible
6336        100 King James Version Bible
6337        101 King James Version Bible
6338        102 King James Version Bible
6339        103 King James Version Bible
6340        104 King James Version Bible
6341        105 King James Version Bible
6342        106 King James Version Bible
6343        107 King James Version Bible
6344        108 King James Version Bible
6345        109 King James Version Bible
6346        110 King James Version Bible
6347        111 King James Version Bible
6348        112 King James Version Bible
6349        113 King James Version Bible
6350        114 King James Version Bible
6351        115 King James Version Bible
6352        116 King James Version Bible
6353        117 King James Version Bible
6354        118 King James Version Bible
6355        119 King James Version Bible
6356        120 King James Version Bible
6357        121 King James Version Bible
6358        122 King James Version Bible
6359        123 King James Version Bible
6360        124 King James Version Bible
6361        125 King James Version Bible
6362        126 King James Version Bible
6363        127 King James Version Bible
6364        128 King James Version Bible
6365        129 King James Version Bible
6366        130 King James Version Bible
6367        131 King James Version Bible
6368        132 King James Version Bible
6369        133 King James Version Bible
6370        134 King James Version Bible
6371        135 King James Version Bible
6372        136 King James Version Bible
6373        137 King James Version Bible
6374        138 King James Version Bible
6375        139 King James Version Bible
6376        140 King James Version Bible
6377        141 King James Version Bible
6378        142 King James Version Bible
6379        143 King James Version Bible
6380        144 King James Version Bible
6381        145 King James Version Bible
6382        146 King James Version Bible
6383        147 King James Version Bible
6384        148 King James Version Bible
6385        149 King James Version Bible
6386        150 King James Version Bible
6387        151 King James Version Bible
6388        152 King James Version Bible
6389        153 King James Version Bible
6390        154 King James Version Bible
6391        155 King James Version Bible
6392        156 King James Version Bible
6393        157 King James Version Bible
6394        158 King James Version Bible
6395        159 King James Version Bible
6396        160 King James Version Bible
6397        161 King James Version Bible
6398        162 King James Version Bible
6399        163 King James Version Bible
6400        164 King James Version Bible
6401        165 King James Version Bible
6402        166 King James Version Bible
6403        167 King James Version Bible
6404        168 King James Version Bible
6405        169 King James Version Bible
6406        170 King James Version Bible
6407        171 King James Version Bible
6408        172 King James Version Bible
6409        173 King James Version Bible
6410        174 King James Version Bible
6411        175 King James Version Bible
6412        176 King James Version Bible
6413        177 King James Version Bible
6414        178 King James Version Bible
6415        179 King James Version Bible
6416        180 King James Version Bible
6417        181 King James Version Bible
6418        182 King James Version Bible
6419        183 King James Version Bible
6420        184 King James Version Bible
6421        185 King James Version Bible
6422        186 King James Version Bible
6423        187 King James Version Bible
6424        188 King James Version Bible
6425        189 King James Version Bible
6426        190 King James Version Bible
6427        191 King James Version Bible
6428        192 King James Version Bible
6429        193 King James Version Bible
6430        194 King James Version Bible
6431        195 King James Version Bible
6432        196 King James Version Bible
6433        197 King James Version Bible
6434        198 King James Version Bible
6435        199 King James Version Bible
6436        200 King James Version Bible
6437        201 King James Version Bible
6438        202 King James Version Bible
6439        203 King James Version Bible
6440        204 King James Version Bible
6441        205 King James Version Bible
6442        206 King James Version Bible
6443        207 King James Version Bible
6444        208 King James Version Bible
6445        209 King James Version Bible
6446        210 King James Version Bible
6447        211 King James Version Bible
6448        212 King James Version Bible
6449        213 King James Version Bible
6450        214 King James Version Bible
6451        215 King James Version Bible
6452        216 King James Version Bible
6453        217 King James Version Bible
6454        218 King James Version Bible
6455        219 King James Version Bible
6456        220 King James Version Bible
6457        221 King James Version Bible
6458        222 King James Version Bible
6459        223 King James Version Bible
6460        224 King James Version Bible
6461        225 King James Version Bible
6462        226 King James Version Bible
6463        227 King James Version Bible
6464        228 King James Version Bible
6465        229 King James Version Bible
6466        230 King James Version Bible
6467        231 King James Version Bible
6468        232 King James Version Bible
6469        233 King James Version Bible
6470        234 King James Version Bible
6471        235 King James Version Bible
6472        236 King James Version Bible
6473        237 King James Version Bible
6474        238 King James Version Bible
6475        239 King James Version Bible
6476        240 King James Version Bible
6477        241 King James Version Bible
6478        242 King James Version Bible
6479        243 King James Version Bible
6480        244 King James Version Bible
6481        245 King James Version Bible
6482        246 King James Version Bible
6483        247 King James Version Bible
6484        248 King James Version Bible
6485        249 King James Version Bible
6486        250 King James Version Bible
6487        251 King James Version Bible
6488        252 King James Version Bible
6489        253 King James Version Bible
6490        254 King James Version Bible
6491        255 King James Version Bible
6492        256 King James Version Bible
6493        257 King James Version Bible
6494        258 King James Version Bible
6495        259 King James Version Bible
6496        260 King James Version Bible
6497        261 King James Version Bible
6498        262 King James Version Bible
6499        263 King James Version Bible
6500        264 King James Version Bible
6501        265 King James Version Bible
6502        266 King James Version Bible
6503        267 King James Version Bible
6504        268 King James Version Bible
6505        269 King James Version Bible
6506        270 King James Version Bible
6507        271 King James Version Bible
6508        272 King James Version Bible
6509        273 King James Version Bible
6510        274 King James Version Bible
6511        275 King James Version Bible
6512        276 King James Version Bible
6513        277 King James Version Bible
6514        278 King James Version Bible
6515        279 King James Version Bible
6516        280 King James Version Bible
6517        281 King James Version Bible
6518        282 King James Version Bible
6519        283 King James Version Bible
6520        284 King James Version Bible
6521        285 King James Version Bible
6522        286 King James Version Bible
6523        287 King James Version Bible
6524        288 King James Version Bible
6525        289 King James Version Bible
6526        290 King James Version Bible
6527        291 King James Version Bible
6528        292 King James Version Bible
6529        293 King James Version Bible
6530        294 King James Version Bible
6531        295 King James Version Bible
6532        296 King James Version Bible
6533        297 King James Version Bible
6534        298 King James Version Bible
6535        299 King James Version Bible
6536        300 King James Version Bible
6537        301 King James Version Bible
6538        302 King James Version Bible
6539        303 King James Version Bible
6540        304 King James Version Bible
6541        305 King James Version Bible
6542        306 King James Version Bible
6543        307 King James Version Bible
6544        308 King James Version Bible
6545        309 King James Version Bible
6546        310 King James Version Bible
6547        311 King James Version Bible
6548        312 King James Version Bible
6549        313 King James Version Bible
6550        314 King James Version Bible
6551        315 King James Version Bible
6552        316 King James Version Bible
6553        317 King James Version Bible
6554        318 King James Version Bible
6555        319 King James Version Bible
6556        320 King James Version Bible
6557        321 King James Version Bible
6558        322 King James Version Bible
6559        323 King James Version Bible
6560        324 King James Version Bible
6561        325 King James Version Bible
6562        326 King James Version Bible
6563        327 King James Version Bible
6564        328 King James Version Bible
6565        329 King James Version Bible
6566        330 King James Version Bible
6567        331 King James Version Bible
6568        332 King James Version Bible
6569        333 King James Version Bible
6570        334 King James Version Bible
6571        335 King James Version Bible
6572        336 King James Version Bible
6573        337 King James Version Bible
6574        338 King James Version Bible
6575        339 King James Version Bible
6576        340 King James Version Bible
6577        341 King James Version Bible
6578        342 King James Version Bible
6579        343 King James Version Bible
6580        344 King James Version Bible
6581        345 King James Version Bible
6582        346 King James Version Bible
6583        347 King James Version Bible
6584        348 King James Version Bible
6585        349 King James Version Bible
6586        350 King James Version Bible
6587        351 King James Version Bible
6588        352 King James Version Bible
6589        353 King James Version Bible
6590        354 King James Version Bible
6591        355 King James Version Bible
6592        356 King James Version Bible
6593        357 King James Version Bible
6594        358 King James Version Bible
6595        359 King James Version Bible
6596        360 King James Version Bible
6597        361 King James Version Bible
6598        362 King James Version Bible
6599        363 King James Version Bible
6600        364 King James Version Bible
6601        365 King James Version Bible
6602        366 King James Version Bible
6603        367 King James Version Bible
6604        368 King James Version Bible
6605        369 King James Version Bible
6606        370 King James Version Bible
6607        371 King James Version Bible
6608        372 King James Version Bible
6609        373 King James Version Bible
6610        374 King James Version Bible
6611        375 King James Version Bible
6612        376 King James Version Bible
6613        377 King James Version Bible
6614        378 King James Version Bible
6615        379 King James Version Bible
6616        380 King James Version Bible
6617        381 King James Version Bible
6618        382 King James Version Bible
6619        383 King James Version Bible
6620        384 King James Version Bible
6621        385 King James Version Bible
6622        386 King James Version Bible
6623        387 King James Version Bible
6624        388 King James Version Bible
6625        389 King James Version Bible
6626        390 King James Version Bible
6627        391 King James Version Bible
6628        392 King James Version Bible
6629        393 King James Version Bible
6630        394 King James Version Bible
6631        395 King James Version Bible
6632        396 King James Version Bible
6633        397 King James Version Bible
6634        398 King James Version Bible
6635        399 King James Version Bible
6636        400 King James Version Bible
6637        401 King James Version Bible
6638        402 King James Version Bible
6639        403 King James Version Bible
6640        404 King James Version Bible
6641        405 King James Version Bible
6642        406 King James Version Bible
6643        407 King James Version Bible
6644        408 King James Version Bible
6645        409 King James Version Bible
6646        410 King James Version Bible
6647        411 King James Version Bible
6648        412 King James Version Bible
6649        413 King James Version Bible
6650        414 King James Version Bible
6651        415 King James Version Bible
6652        416 King James Version Bible
6653        417 King James Version Bible
6654        418 King James Version Bible
6655        419 King James Version Bible
6656        420 King James Version Bible
6657        421 King James Version Bible
6658        422 King James Version Bible
6659        423 King James Version Bible
6660        424 King James Version Bible
6661        425 King James Version Bible
6662        426 King James Version Bible
6663        427 King James Version Bible
6664        428 King James Version Bible
6665        429 King James Version Bible
6666        430 King James Version Bible
6667        431 King James Version Bible
6668        432 King James Version Bible
6669        433 King James Version Bible
6670        434 King James Version Bible
6671        435 King James Version Bible
6672        436 King James Version Bible
6673        437 King James Version Bible
6674        438 King James Version Bible
6675        439 King James Version Bible
6676        440 King James Version Bible
6677        441 King James Version Bible
6678        442 King James Version Bible
6679        443 King James Version Bible
6680        444 King James Version Bible
6681        445 King James Version Bible
6682        446 King James Version Bible
6683        447 King James Version Bible
6684        448 King James Version Bible
6685        449 King James Version Bible
6686        450 King James Version Bible
6687        451 King James Version Bible
6688        452 King James Version Bible
6689        453 King James Version Bible
6690        454 King James Version Bible
6691        455 King James Version Bible
6692        456 King James Version Bible
6693        457 King James Version Bible
6694        458 King James Version Bible
6695        459 King James Version Bible
6696        460 King James Version Bible
6697        461 King James Version Bible
6698        462 King James Version Bible
6699        463 King James Version Bible
6700        464 King James Version Bible
6701        465 King James Version Bible
6702        466 King James Version Bible
6703        467 King James Version Bible
6704        468 King James Version Bible
6705        469 King James Version Bible
6706        470 King James Version Bible
6707        471 King James Version Bible
6708        472 King James Version Bible
6709        473 King James Version Bible
6710        474 King James Version Bible
6711        475 King James Version Bible
6712        476 King James Version Bible
6713        477 King James Version Bible
6714        478 King James Version Bible
6715        479 King James Version Bible
6716        480 King James Version Bible
6717        481 King James Version Bible
6718        482 King James Version Bible
6719        483 King James Version Bible
6720        484 King James Version Bible
6721        485 King James Version Bible
6722        486 King James Version Bible
6723        487 King James Version Bible
6724        488 King James Version Bible
6725        489 King James Version Bible
6726        490 King James Version Bible
6727        491 King James Version Bible
6728        492 King James Version Bible
6729        493 King James Version Bible
6730        494 King James Version Bible
6731        495 King James Version Bible
6732        496 King James Version Bible
6733        497 King James Version Bible
6734        498 King James Version Bible
6735        499 King James Version Bible
6736        500 King James Version Bible
6737        501 King James Version Bible
6738        502 King James Version Bible
6739        503 King James Version Bible
6740        504 King James Version Bible
6741        505 King James Version Bible
6742        506 King James Version Bible
6743        507 King James Version Bible
6744        508 King James Version Bible
6745        509 King James Version Bible
6746        510 King James Version Bible
6747        511 King James Version Bible
6748        512 King James Version Bible
6749        513 King James Version Bible
6750        514 King James Version Bible
6751        515 King James Version Bible
6752        516 King James Version Bible
6753        517 King James Version Bible
6754        518 King James Version Bible
6755        519 King James Version Bible
6756        520 King James Version Bible
6757        521 King James Version Bible
6758        522 King James Version Bible
6759        523 King James Version Bible
6760        524 King James Version Bible
6761        525 King James Version Bible
6762        526 King James Version Bible
6763        527 King James Version Bible
6764        528 King James Version Bible
6765        529 King James Version Bible
6766        530 King James Version Bible
6767        531 King James Version Bible
6768        532 King James Version Bible
6769        533 King James Version Bible
6770        534 King James Version Bible
6771        535 King James Version Bible
6772        536 King James Version Bible
6773        537 King James Version Bible
6774        538 King James Version Bible
6775        539 King James Version Bible
6776        540 King James Version Bible
6777        541 King James Version Bible
6778        542 King James Version Bible
6779        543 King James Version Bible
6780        544 King James Version Bible
6781        545 King James Version Bible
6782        546 King James Version Bible
6783        547 King James Version Bible
6784        548 King James Version Bible
6785        549 King James Version Bible
6786        550 King James Version Bible
6787        551 King James Version Bible
6788        552 King James Version Bible
6789        553 King James Version Bible
6790        554 King James Version Bible
6791        555 King James Version Bible
6792        556 King James Version Bible
6793        557 King James Version Bible
6794        558 King James Version Bible
6795        559 King James Version Bible
6796        560 King James Version Bible
6797        561 King James Version Bible
6798        562 King James Version Bible
6799        563 King James Version Bible
6800        564 King James Version Bible
6801        565 King James Version Bible
6802        566 King James Version Bible
6803        567 King James Version Bible
6804        568 King James Version Bible
6805        569 King James Version Bible
6806        570 King James Version Bible
6807        571 King James Version Bible
6808        572 King James Version Bible
6809        573 King James Version Bible
6810        574 King James Version Bible
6811        575 King James Version Bible
6812        576 King James Version Bible
6813        577 King James Version Bible
6814        578 King James Version Bible
6815        579 King James Version Bible
6816        580 King James Version Bible
6817        581 King James Version Bible
6818        582 King James Version Bible
6819        583 King James Version Bible
6820        584 King James Version Bible
6821        585 King James Version Bible
6822        586 King James Version Bible
6823        587 King James Version Bible
6824        588 King James Version Bible
6825        589 King James Version Bible
6826        590 King James Version Bible
6827        591 King James Version Bible
6828        592 King James Version Bible
6829        593 King James Version Bible
6830        594 King James Version Bible
6831        595 King James Version Bible
6832        596 King James Version Bible
6833        597 King James Version Bible
6834        598 King James Version Bible
6835        599 King James Version Bible
6836        600 King James Version Bible
6837        601 King James Version Bible
6838        602 King James Version Bible
6839        603 King James Version Bible
6840        604 King James Version Bible
6841        605 King James Version Bible
6842        606 King James Version Bible
6843        607 King James Version Bible
6844        608 King James Version Bible
6845        609 King James Version Bible
6846        610 King James Version Bible
6847        611 King James Version Bible
6848        612 King James Version Bible
6849        613 King James Version Bible
6850        614 King James Version Bible
6851        615 King James Version Bible
6852        616 King James Version Bible
6853        617 King James Version Bible
6854        618 King James Version Bible
6855        619 King James Version Bible
6856        620 King James Version Bible
6857        621 King James Version Bible
6858        622 King James Version Bible
6859        623 King James Version Bible
6860        624 King James Version Bible
6861        625 King James Version Bible
6862        626 King James Version Bible
6863        627 King James Version Bible
6864        628 King James Version Bible
6865        629 King James Version Bible
6866        630 King James Version Bible
6867        631 King James Version Bible
6868        632 King James Version Bible
6869        633 King James Version Bible
6870        634 King James Version Bible
6871        635 King James Version Bible
6872        636 King James Version Bible
6873        637 King James Version Bible
6874        638 King James Version Bible
6875        639 King James Version Bible
6876        640 King James Version Bible
6877        641 King James Version Bible
6878        642 King James Version Bible
6879        643 King James Version Bible
6880        644 King James Version Bible
6881        645 King James Version Bible
6882        646 King James Version Bible
6883        647 King James Version Bible
6884        648 King James Version Bible
6885        649 King James Version Bible
6886        650 King James Version Bible
6887        651 King James Version Bible
6888        652 King James Version Bible
6889        653 King James Version Bible
6890        654 King James Version Bible
6891        655 King James Version Bible
6892        656 King James Version Bible
6893        657 King James Version Bible
6894        658 King James Version Bible
6895        659 King James Version Bible
6896        660 King James Version Bible
6897        661 King James Version Bible
6898        662 King James Version Bible
6899        663 King James Version Bible
6900        664 King James Version Bible
6901        665 King James Version Bible
6902        666 King James Version Bible
6903        667 King James Version Bible
6904        668 King James Version Bible
6905        669 King James Version Bible
6906        670 King James Version Bible
6907        671 King James Version Bible
6908        672 King James Version Bible
6909        673 King James Version Bible
6910        674 King James Version Bible
6911        675 King James Version Bible
6912        676 King James Version Bible
6913        677 King James Version Bible
6914        678 King James Version Bible
6915        679 King James Version Bible
6916        680 King James Version Bible
6917        681 King James Version Bible
6918        682 King James Version Bible
6919        683 King James Version Bible
6920        684 King James Version Bible
6921        685 King James Version Bible
6922        686 King James Version Bible
6923        687 King James Version Bible
6924        688 King James Version Bible
6925        689 King James Version Bible
6926        690 King James Version Bible
6927        691 King James Version Bible
6928        692 King James Version Bible
6929        693 King James Version Bible
6930        694 King James Version Bible
6931        695 King James Version Bible
6932        696 King James Version Bible
6933        697 King James Version Bible
6934        698 King James Version Bible
6935        699 King James Version Bible
6936        700 King James Version Bible
6937        701 King James Version Bible
6938        702 King James Version Bible
6939        703 King James Version Bible
6940        704 King James Version Bible
6941        705 King James Version Bible
6942        706 King James Version Bible
6943        707 King James Version Bible
6944        708 King James Version Bible
6945        709 King James Version Bible
6946        710 King James Version Bible
6947        711 King James Version Bible
6948        712 King James Version Bible
6949        713 King James Version Bible
6950        714 King James Version Bible
6951        715 King James Version Bible
6952        716 King James Version Bible
6953        717 King James Version Bible
6954        718 King James Version Bible
6955        719 King James Version Bible
6956        720 King James Version Bible
6957        721 King James Version Bible
6958        722 King James Version Bible
6959        723 King James Version Bible
6960        724 King James Version Bible
6961        725 King James Version Bible
6962        726 King James Version Bible
6963        727 King James Version Bible
6964        728 King James Version Bible
6965        729 King James Version Bible
6966        730 King James Version Bible
6967        731 King James Version Bible
6968        732 King James Version Bible
6969        733 King James Version Bible
6970        734 King James Version Bible
6971        735 King James Version Bible
6972        736 King James Version Bible
6973        737 King James Version Bible
6974        738 King James Version Bible
6975        739 King James Version Bible
6976        740 King James Version Bible
6977        741 King James Version Bible
6978        742 King James Version Bible
6979        743 King James Version Bible
6980        744 King James Version Bible
6981        745 King James Version Bible
6982        746 King James Version Bible
6983        747 King James Version Bible
6984        748 King James Version Bible
6985        749 King James Version Bible
6986        750 King James Version Bible
6987        751 King James Version Bible
6988        752 King James Version Bible
6989        753 King James Version Bible
6990        754 King James Version Bible
6991        755 King James Version Bible
6992        756 King James Version Bible
6993        757 King James Version Bible
6994        758 King James Version Bible
6995        759 King James Version Bible
6996        760 King James Version Bible
6997        761 King James Version Bible
6998        762 King James Version Bible
6999        763 King James Version Bible
7000        764 King James Version Bible
7001        765 King James Version Bible
7002        766 King James Version Bible
7003        767 King James Version Bible
7004        768 King James Version Bible
7005        769 King James Version Bible
7006        770 King James Version Bible
7007        771 King James Version Bible
7008        772 King James Version Bible
7009        773 King James Version Bible
7010        774 King James Version Bible
7011        775 King James Version Bible
7012        776 King James Version Bible
7013        777 King James Version Bible
7014        778 King James Version Bible
7015        779 King James Version Bible
7016        780 King James Version Bible
7017        781 King James Version Bible
7018        782 King James Version Bible
7019        783 King James Version Bible
7020        784 King James Version Bible
7021        785 King James Version Bible
7022        786 King James Version Bible
7023        787 King James Version Bible
7024        788 King James Version Bible
7025        789 King James Version Bible
7026        790 King James Version Bible
7027        791 King James Version Bible
7028        792 King James Version Bible
7029        793 King James Version Bible
7030        794 King James Version Bible
7031        795 King James Version Bible
7032        796 King James Version Bible
7033        797 King James Version Bible
7034        798 King James Version Bible
7035        799 King James Version Bible
7036        800 King James Version Bible
7037        801 King James Version Bible
7038        802 King James Version Bible
7039        803 King James Version Bible
7040        804 King James Version Bible
7041        805 King James Version Bible
7042        806 King James Version Bible
7043        807 King James Version Bible
7044        808 King James Version Bible
7045        809 King James Version Bible
7046        810 King James Version Bible
7047        811 King James Version Bible
7048        812 King James Version Bible
7049        813 King James Version Bible
7050        814 King James Version Bible
7051        815 King James Version Bible
7052        816 King James Version Bible
7053        817 King James Version Bible
7054        818 King James Version Bible
7055        819 King James Version Bible
7056        820 King James Version Bible
7057        821 King James Version Bible
7058        822 King James Version Bible
7059        823 King James Version Bible
7060        824 King James Version Bible
7061        825 King James Version Bible
7062        826 King James Version Bible
7063        827 King James Version Bible
7064        828 King James Version Bible
7065        829 King James Version Bible
7066        830 King James Version Bible
7067        831 King James Version Bible
7068        832 King James Version Bible
7069        833 King James Version Bible
7070        834 King James Version Bible
7071        835 King James Version Bible
7072        836 King James Version Bible
7073        837 King James Version Bible
7074        838 King James Version Bible
7075        839 King James Version Bible
7076        840 King James Version Bible
7077        841 King James Version Bible
7078        842 King James Version Bible
7079        843 King James Version Bible
7080        844 King James Version Bible
7081        845 King James Version Bible
7082        846 King James Version Bible
7083        847 King James Version Bible
7084        848 King James Version Bible
7085        849 King James Version Bible
7086        850 King James Version Bible
7087        851 King James Version Bible
7088        852 King James Version Bible
7089        853 King James Version Bible
7090        854 King James Version Bible
7091        855 King James Version Bible
7092        856 King James Version Bible
7093        857 King James Version Bible
7094        858 King James Version Bible
7095        859 King James Version Bible
7096        860 King James Version Bible
7097        861 King James Version Bible
7098        862 King James Version Bible
7099        863 King James Version Bible
7100        864 King James Version Bible
7101        865 King James Version Bible
7102        866 King James Version Bible
7103        867 King James Version Bible
7104        868 King James Version Bible
7105        869 King James Version Bible
7106        870 King James Version Bible
7107        871 King James Version Bible
7108        872 King James Version Bible
7109        873 King James Version Bible
7110        874 King James Version Bible
7111        875 King James Version Bible
7112        876 King James Version Bible
7113        877 King James Version Bible
7114        878 King James Version Bible
7115        879 King James Version Bible
7116        880 King James Version Bible
7117        881 King James Version Bible
7118        882 King James Version Bible
7119        883 King James Version Bible
7120        884 King James Version Bible
7121        885 King James Version Bible
7122        886 King James Version Bible
7123        887 King James Version Bible
7124        888 King James Version Bible
7125        889 King James Version Bible
7126        890 King James Version Bible
7127        891 King James Version Bible
7128        892 King James Version Bible
7129        893 King James Version Bible
7130        894 King James Version Bible
7131        895 King James Version Bible
7132        896 King James Version Bible
7133        897 King James Version Bible
7134        898 King James Version Bible
7135        899 King James Version Bible
7136        900 King James Version Bible
7137        901 King James Version Bible
7138        902 King James Version Bible
7139        903 King James Version Bible
7140        904 King James Version Bible
7141        905 King James Version Bible
7142        906 King James Version Bible
7143        907 King James Version Bible
7144        908 King James Version Bible
7145        909 King James Version Bible
7146        910 King James Version Bible
7147        911 King James Version Bible
7148        912 King James Version Bible
7149        913 King James Version Bible
7150        914 King James Version Bible
7151        915 King James Version Bible
7152        916 King James Version Bible
7153        917 King James Version Bible
7154        918 King James Version Bible
7155        919 King James Version Bible
7156        920 King James Version Bible
7157        921 King James Version Bible
7158        922 King James Version Bible
7159        923 King James Version Bible
7160        924 King James Version Bible
7161        925 King James Version Bible
7162        926 King James Version Bible
7163        927 King James Version Bible
7164        928 King James Version Bible
7165        929 King James Version Bible
7166        930 King James Version Bible
7167        931 King James Version Bible
7168        932 King James Version Bible
7169        933 King James Version Bible
7170        934 King James Version Bible
7171        935 King James Version Bible
7172        936 King James Version Bible
7173        937 King James Version Bible
7174        938 King James Version Bible
7175        939 King James Version Bible
7176        940 King James Version Bible
7177        941 King James Version Bible
7178        942 King James Version Bible
7179        943 King James Version Bible
7180        944 King James Version Bible
7181        945 King James Version Bible
7182        946 King James Version Bible
7183        947 King James Version Bible
7184        948 King James Version Bible
7185        949 King James Version Bible
7186        950 King James Version Bible
7187        951 King James Version Bible
7188        952 King James Version Bible
7189        953 King James Version Bible
7190        954 King James Version Bible
7191        955 King James Version Bible
7192        956 King James Version Bible
7193        957 King James Version Bible
7194        958 King James Version Bible
7195        959 King James Version Bible
7196        960 King James Version Bible
7197        961 King James Version Bible
7198        962 King James Version Bible
7199        963 King James Version Bible
7200        964 King James Version Bible
7201        965 King James Version Bible
7202        966 King James Version Bible
7203        967 King James Version Bible
7204        968 King James Version Bible
7205        969 King James Version Bible
7206        970 King James Version Bible
7207        971 King James Version Bible
7208        972 King James Version Bible
7209        973 King James Version Bible
7210        974 King James Version Bible
7211        975 King James Version Bible
7212        976 King James Version Bible
7213        977 King James Version Bible
7214        978 King James Version Bible
7215        979 King James Version Bible
7216        980 King James Version Bible
7217        981 King James Version Bible
7218        982 King James Version Bible
7219        983 King James Version Bible
7220        984 King James Version Bible
7221        985 King James Version Bible
7222        986 King James Version Bible
7223        987 King James Version Bible
7224        988 King James Version Bible
7225        989 King James Version Bible
7226        990 King James Version Bible
7227        991 King James Version Bible
7228        992 King James Version Bible
7229        993 King James Version Bible
7230        994 King James Version Bible
7231        995 King James Version Bible
7232        996 King James Version Bible
7233        997 King James Version Bible
7234        998 King James Version Bible
7235        999 King James Version Bible
7236       1000 King James Version Bible
7237       1001 King James Version Bible
7238       1002 King James Version Bible
7239       1003 King James Version Bible
7240       1004 King James Version Bible
7241       1005 King James Version Bible
7242       1006 King James Version Bible
7243       1007 King James Version Bible
7244       1008 King James Version Bible
7245       1009 King James Version Bible
7246       1010 King James Version Bible
7247       1011 King James Version Bible
7248       1012 King James Version Bible
7249       1013 King James Version Bible
7250       1014 King James Version Bible
7251       1015 King James Version Bible
7252       1016 King James Version Bible
7253       1017 King James Version Bible
7254       1018 King James Version Bible
7255       1019 King James Version Bible
7256       1020 King James Version Bible
7257       1021 King James Version Bible
7258       1022 King James Version Bible
7259       1023 King James Version Bible
7260       1024 King James Version Bible
7261       1025 King James Version Bible
7262       1026 King James Version Bible
7263       1027 King James Version Bible
7264       1028 King James Version Bible
7265       1029 King James Version Bible
7266       1030 King James Version Bible
7267       1031 King James Version Bible
7268       1032 King James Version Bible
7269       1033 King James Version Bible
7270       1034 King James Version Bible
7271       1035 King James Version Bible
7272       1036 King James Version Bible
7273       1037 King James Version Bible
7274       1038 King James Version Bible
7275       1039 King James Version Bible
7276       1040 King James Version Bible
7277       1041 King James Version Bible
7278       1042 King James Version Bible
7279       1043 King James Version Bible
7280       1044 King James Version Bible
7281       1045 King James Version Bible
7282       1046 King James Version Bible
7283       1047 King James Version Bible
7284       1048 King James Version Bible
7285       1049 King James Version Bible
7286       1050 King James Version Bible
7287       1051 King James Version Bible
7288       1052 King James Version Bible
7289       1053 King James Version Bible
7290       1054 King James Version Bible
7291       1055 King James Version Bible
7292       1056 King James Version Bible
7293       1057 King James Version Bible
7294       1058 King James Version Bible
7295       1059 King James Version Bible
7296       1060 King James Version Bible
7297       1061 King James Version Bible
7298       1062 King James Version Bible
7299       1063 King James Version Bible
7300       1064 King James Version Bible
7301       1065 King James Version Bible
7302       1066 King James Version Bible
7303       1067 King James Version Bible
7304       1068 King James Version Bible
7305       1069 King James Version Bible
7306       1070 King James Version Bible
7307       1071 King James Version Bible
7308       1072 King James Version Bible
7309       1073 King James Version Bible
7310       1074 King James Version Bible
7311       1075 King James Version Bible
7312       1076 King James Version Bible
7313       1077 King James Version Bible
7314       1078 King James Version Bible
7315       1079 King James Version Bible
7316       1080 King James Version Bible
7317       1081 King James Version Bible
7318       1082 King James Version Bible
7319       1083 King James Version Bible
7320       1084 King James Version Bible
7321       1085 King James Version Bible
7322       1086 King James Version Bible
7323       1087 King James Version Bible
7324       1088 King James Version Bible
7325       1089 King James Version Bible
7326       1090 King James Version Bible
7327       1091 King James Version Bible
7328       1092 King James Version Bible
7329       1093 King James Version Bible
7330       1094 King James Version Bible
7331       1095 King James Version Bible
7332       1096 King James Version Bible
7333       1097 King James Version Bible
7334       1098 King James Version Bible
7335       1099 King James Version Bible
7336       1100 King James Version Bible
7337       1101 King James Version Bible
7338       1102 King James Version Bible
7339       1103 King James Version Bible
7340       1104 King James Version Bible
7341       1105 King James Version Bible
7342       1106 King James Version Bible
7343       1107 King James Version Bible
7344       1108 King James Version Bible
7345       1109 King James Version Bible
7346       1110 King James Version Bible
7347       1111 King James Version Bible
7348       1112 King James Version Bible
7349       1113 King James Version Bible
7350       1114 King James Version Bible
7351       1115 King James Version Bible
7352       1116 King James Version Bible
7353       1117 King James Version Bible
7354       1118 King James Version Bible
7355       1119 King James Version Bible
7356       1120 King James Version Bible
7357       1121 King James Version Bible
7358       1122 King James Version Bible
7359       1123 King James Version Bible
7360       1124 King James Version Bible
7361       1125 King James Version Bible
7362       1126 King James Version Bible
7363       1127 King James Version Bible
7364       1128 King James Version Bible
7365       1129 King James Version Bible
7366       1130 King James Version Bible
7367       1131 King James Version Bible
7368       1132 King James Version Bible
7369       1133 King James Version Bible
7370       1134 King James Version Bible
7371       1135 King James Version Bible
7372       1136 King James Version Bible
7373       1137 King James Version Bible
7374       1138 King James Version Bible
7375       1139 King James Version Bible
7376       1140 King James Version Bible
7377       1141 King James Version Bible
7378       1142 King James Version Bible
7379       1143 King James Version Bible
7380       1144 King James Version Bible
7381       1145 King James Version Bible
7382       1146 King James Version Bible
7383       1147 King James Version Bible
7384       1148 King James Version Bible
7385       1149 King James Version Bible
7386       1150 King James Version Bible
7387       1151 King James Version Bible
7388       1152 King James Version Bible
7389       1153 King James Version Bible
7390       1154 King James Version Bible
7391       1155 King James Version Bible
7392       1156 King James Version Bible
7393       1157 King James Version Bible
7394       1158 King James Version Bible
7395       1159 King James Version Bible
7396       1160 King James Version Bible
7397       1161 King James Version Bible
7398       1162 King James Version Bible
7399       1163 King James Version Bible
7400       1164 King James Version Bible
7401       1165 King James Version Bible
7402       1166 King James Version Bible
7403       1167 King James Version Bible
7404       1168 King James Version Bible
7405       1169 King James Version Bible
7406       1170 King James Version Bible
7407       1171 King James Version Bible
7408       1172 King James Version Bible
7409       1173 King James Version Bible
7410       1174 King James Version Bible
7411       1175 King James Version Bible
7412       1176 King James Version Bible
7413       1177 King James Version Bible
7414       1178 King James Version Bible
7415       1179 King James Version Bible
7416       1180 King James Version Bible
7417       1181 King James Version Bible
7418       1182 King James Version Bible
7419       1183 King James Version Bible
7420       1184 King James Version Bible
7421       1185 King James Version Bible
7422       1186 King James Version Bible
7423       1187 King James Version Bible
7424       1188 King James Version Bible
7425       1189 King James Version Bible
7426       1190 King James Version Bible
7427       1191 King James Version Bible
7428       1192 King James Version Bible
7429       1193 King James Version Bible
7430       1194 King James Version Bible
7431       1195 King James Version Bible
7432       1196 King James Version Bible
7433       1197 King James Version Bible
7434       1198 King James Version Bible
7435       1199 King James Version Bible
7436       1200 King James Version Bible
7437       1201 King James Version Bible
7438       1202 King James Version Bible
7439       1203 King James Version Bible
7440       1204 King James Version Bible
7441       1205 King James Version Bible
7442       1206 King James Version Bible
7443       1207 King James Version Bible
7444       1208 King James Version Bible
7445       1209 King James Version Bible
7446       1210 King James Version Bible
7447       1211 King James Version Bible
7448       1212 King James Version Bible
7449       1213 King James Version Bible
7450       1214 King James Version Bible
7451       1215 King James Version Bible
7452       1216 King James Version Bible
7453       1217 King James Version Bible
7454       1218 King James Version Bible
7455       1219 King James Version Bible
7456       1220 King James Version Bible
7457       1221 King James Version Bible
7458       1222 King James Version Bible
7459       1223 King James Version Bible
7460       1224 King James Version Bible
7461       1225 King James Version Bible
7462       1226 King James Version Bible
7463       1227 King James Version Bible
7464       1228 King James Version Bible
7465       1229 King James Version Bible
7466       1230 King James Version Bible
7467       1231 King James Version Bible
7468       1232 King James Version Bible
7469       1233 King James Version Bible
7470       1234 King James Version Bible
7471       1235 King James Version Bible
7472       1236 King James Version Bible
7473       1237 King James Version Bible
7474       1238 King James Version Bible
7475       1239 King James Version Bible
7476       1240 King James Version Bible
7477       1241 King James Version Bible
7478       1242 King James Version Bible
7479       1243 King James Version Bible
7480       1244 King James Version Bible
7481       1245 King James Version Bible
7482       1246 King James Version Bible
7483       1247 King James Version Bible
7484       1248 King James Version Bible
7485       1249 King James Version Bible
7486       1250 King James Version Bible
7487       1251 King James Version Bible
7488       1252 King James Version Bible
7489       1253 King James Version Bible
7490       1254 King James Version Bible
7491       1255 King James Version Bible
7492       1256 King James Version Bible
7493       1257 King James Version Bible
7494       1258 King James Version Bible
7495       1259 King James Version Bible
7496       1260 King James Version Bible
7497       1261 King James Version Bible
7498       1262 King James Version Bible
7499       1263 King James Version Bible
7500       1264 King James Version Bible
7501       1265 King James Version Bible
7502       1266 King James Version Bible
7503       1267 King James Version Bible
7504       1268 King James Version Bible
7505       1269 King James Version Bible
7506       1270 King James Version Bible
7507       1271 King James Version Bible
7508       1272 King James Version Bible
7509       1273 King James Version Bible
7510       1274 King James Version Bible
7511       1275 King James Version Bible
7512       1276 King James Version Bible
7513       1277 King James Version Bible
7514       1278 King James Version Bible
7515       1279 King James Version Bible
7516       1280 King James Version Bible
7517       1281 King James Version Bible
7518       1282 King James Version Bible
7519       1283 King James Version Bible
7520       1284 King James Version Bible
7521       1285 King James Version Bible
7522       1286 King James Version Bible
7523       1287 King James Version Bible
7524       1288 King James Version Bible
7525       1289 King James Version Bible
7526       1290 King James Version Bible
7527       1291 King James Version Bible
7528       1292 King James Version Bible
7529       1293 King James Version Bible
7530       1294 King James Version Bible
7531       1295 King James Version Bible
7532       1296 King James Version Bible
7533       1297 King James Version Bible
7534       1298 King James Version Bible
7535       1299 King James Version Bible
7536       1300 King James Version Bible
7537       1301 King James Version Bible
7538       1302 King James Version Bible
7539       1303 King James Version Bible
7540       1304 King James Version Bible
7541       1305 King James Version Bible
7542       1306 King James Version Bible
7543       1307 King James Version Bible
7544       1308 King James Version Bible
7545       1309 King James Version Bible
7546       1310 King James Version Bible
7547       1311 King James Version Bible
7548       1312 King James Version Bible
7549       1313 King James Version Bible
7550       1314 King James Version Bible
7551       1315 King James Version Bible
7552       1316 King James Version Bible
7553       1317 King James Version Bible
7554       1318 King James Version Bible
7555       1319 King James Version Bible
7556       1320 King James Version Bible
7557       1321 King James Version Bible
7558       1322 King James Version Bible
7559       1323 King James Version Bible
7560       1324 King James Version Bible
7561       1325 King James Version Bible
7562       1326 King James Version Bible
7563       1327 King James Version Bible
7564       1328 King James Version Bible
7565       1329 King James Version Bible
7566       1330 King James Version Bible
7567       1331 King James Version Bible
7568       1332 King James Version Bible
7569       1333 King James Version Bible
7570       1334 King James Version Bible
7571       1335 King James Version Bible
7572       1336 King James Version Bible
7573       1337 King James Version Bible
7574       1338 King James Version Bible
7575       1339 King James Version Bible
7576       1340 King James Version Bible
7577       1341 King James Version Bible
7578       1342 King James Version Bible
7579       1343 King James Version Bible
7580       1344 King James Version Bible
7581       1345 King James Version Bible
7582       1346 King James Version Bible
7583       1347 King James Version Bible
7584       1348 King James Version Bible
7585       1349 King James Version Bible
7586       1350 King James Version Bible
7587       1351 King James Version Bible
7588       1352 King James Version Bible
7589       1353 King James Version Bible
7590       1354 King James Version Bible
7591       1355 King James Version Bible
7592       1356 King James Version Bible
7593       1357 King James Version Bible
7594       1358 King James Version Bible
7595       1359 King James Version Bible
7596       1360 King James Version Bible
7597       1361 King James Version Bible
7598       1362 King James Version Bible
7599       1363 King James Version Bible
7600       1364 King James Version Bible
7601       1365 King James Version Bible
7602       1366 King James Version Bible
7603       1367 King James Version Bible
7604       1368 King James Version Bible
7605       1369 King James Version Bible
7606       1370 King James Version Bible
7607       1371 King James Version Bible
7608       1372 King James Version Bible
7609       1373 King James Version Bible
7610       1374 King James Version Bible
7611       1375 King James Version Bible
7612       1376 King James Version Bible
7613       1377 King James Version Bible
7614       1378 King James Version Bible
7615       1379 King James Version Bible
7616       1380 King James Version Bible
7617       1381 King James Version Bible
7618       1382 King James Version Bible
7619       1383 King James Version Bible
7620       1384 King James Version Bible
7621       1385 King James Version Bible
7622       1386 King James Version Bible
7623       1387 King James Version Bible
7624       1388 King James Version Bible
7625       1389 King James Version Bible
7626       1390 King James Version Bible
7627       1391 King James Version Bible
7628       1392 King James Version Bible
7629       1393 King James Version Bible
7630       1394 King James Version Bible
7631       1395 King James Version Bible
7632       1396 King James Version Bible
7633       1397 King James Version Bible
7634       1398 King James Version Bible
7635       1399 King James Version Bible
7636       1400 King James Version Bible
7637       1401 King James Version Bible
7638       1402 King James Version Bible
7639       1403 King James Version Bible
7640       1404 King James Version Bible
7641       1405 King James Version Bible
7642       1406 King James Version Bible
7643       1407 King James Version Bible
7644       1408 King James Version Bible
7645       1409 King James Version Bible
7646       1410 King James Version Bible
7647       1411 King James Version Bible
7648       1412 King James Version Bible
7649       1413 King James Version Bible
7650       1414 King James Version Bible
7651       1415 King James Version Bible
7652       1416 King James Version Bible
7653       1417 King James Version Bible
7654       1418 King James Version Bible
7655       1419 King James Version Bible
7656       1420 King James Version Bible
7657       1421 King James Version Bible
7658       1422 King James Version Bible
7659       1423 King James Version Bible
7660       1424 King James Version Bible
7661       1425 King James Version Bible
7662       1426 King James Version Bible
7663       1427 King James Version Bible
7664       1428 King James Version Bible
7665       1429 King James Version Bible
7666       1430 King James Version Bible
7667       1431 King James Version Bible
7668       1432 King James Version Bible
7669       1433 King James Version Bible
7670       1434 King James Version Bible
7671       1435 King James Version Bible
7672       1436 King James Version Bible
7673       1437 King James Version Bible
7674       1438 King James Version Bible
7675       1439 King James Version Bible
7676       1440 King James Version Bible
7677       1441 King James Version Bible
7678       1442 King James Version Bible
7679       1443 King James Version Bible
7680       1444 King James Version Bible
7681       1445 King James Version Bible
7682       1446 King James Version Bible
7683       1447 King James Version Bible
7684       1448 King James Version Bible
7685       1449 King James Version Bible
7686       1450 King James Version Bible
7687       1451 King James Version Bible
7688       1452 King James Version Bible
7689       1453 King James Version Bible
7690       1454 King James Version Bible
7691       1455 King James Version Bible
7692       1456 King James Version Bible
7693       1457 King James Version Bible
7694       1458 King James Version Bible
7695       1459 King James Version Bible
7696       1460 King James Version Bible
7697       1461 King James Version Bible
7698       1462 King James Version Bible
7699       1463 King James Version Bible
7700       1464 King James Version Bible
7701       1465 King James Version Bible
7702       1466 King James Version Bible
7703       1467 King James Version Bible
7704       1468 King James Version Bible
7705       1469 King James Version Bible
7706       1470 King James Version Bible
7707       1471 King James Version Bible
7708       1472 King James Version Bible
7709       1473 King James Version Bible
7710       1474 King James Version Bible
7711       1475 King James Version Bible
7712       1476 King James Version Bible
7713       1477 King James Version Bible
7714       1478 King James Version Bible
7715       1479 King James Version Bible
7716       1480 King James Version Bible
7717       1481 King James Version Bible
7718       1482 King James Version Bible
7719       1483 King James Version Bible
7720       1484 King James Version Bible
7721       1485 King James Version Bible
7722       1486 King James Version Bible
7723       1487 King James Version Bible
7724       1488 King James Version Bible
7725       1489 King James Version Bible
7726       1490 King James Version Bible
7727       1491 King James Version Bible
7728       1492 King James Version Bible
7729       1493 King James Version Bible
7730       1494 King James Version Bible
7731       1495 King James Version Bible
7732       1496 King James Version Bible
7733       1497 King James Version Bible
7734       1498 King James Version Bible
7735       1499 King James Version Bible
7736       1500 King James Version Bible
7737       1501 King James Version Bible
7738       1502 King James Version Bible
7739       1503 King James Version Bible
7740       1504 King James Version Bible
7741       1505 King James Version Bible
7742       1506 King James Version Bible
7743       1507 King James Version Bible
7744       1508 King James Version Bible
7745       1509 King James Version Bible
7746       1510 King James Version Bible
7747       1511 King James Version Bible
7748       1512 King James Version Bible
7749       1513 King James Version Bible
7750       1514 King James Version Bible
7751       1515 King James Version Bible
7752       1516 King James Version Bible
7753       1517 King James Version Bible
7754       1518 King James Version Bible
7755       1519 King James Version Bible
7756       1520 King James Version Bible
7757       1521 King James Version Bible
7758       1522 King James Version Bible
7759       1523 King James Version Bible
7760       1524 King James Version Bible
7761       1525 King James Version Bible
7762       1526 King James Version Bible
7763       1527 King James Version Bible
7764       1528 King James Version Bible
7765       1529 King James Version Bible
7766       1530 King James Version Bible
7767       1531 King James Version Bible
7768       1532 King James Version Bible
7769       1533 King James Version Bible
7770       1534 King James Version Bible
7771       1535 King James Version Bible
7772       1536 King James Version Bible
7773       1537 King James Version Bible
7774       1538 King James Version Bible
7775       1539 King James Version Bible
7776       1540 King James Version Bible
7777       1541 King James Version Bible
7778       1542 King James Version Bible
7779       1543 King James Version Bible
7780       1544 King James Version Bible
7781       1545 King James Version Bible
7782       1546 King James Version Bible
7783       1547 King James Version Bible
7784       1548 King James Version Bible
7785       1549 King James Version Bible
7786       1550 King James Version Bible
7787       1551 King James Version Bible
7788       1552 King James Version Bible
7789       1553 King James Version Bible
7790       1554 King James Version Bible
7791       1555 King James Version Bible
7792       1556 King James Version Bible
7793       1557 King James Version Bible
7794       1558 King James Version Bible
7795       1559 King James Version Bible
7796       1560 King James Version Bible
7797       1561 King James Version Bible
7798       1562 King James Version Bible
7799       1563 King James Version Bible
7800       1564 King James Version Bible
7801       1565 King James Version Bible
7802       1566 King James Version Bible
7803       1567 King James Version Bible
7804       1568 King James Version Bible
7805       1569 King James Version Bible
7806       1570 King James Version Bible
7807       1571 King James Version Bible
7808       1572 King James Version Bible
7809       1573 King James Version Bible
7810       1574 King James Version Bible
7811       1575 King James Version Bible
7812       1576 King James Version Bible
7813       1577 King James Version Bible
7814       1578 King James Version Bible
7815       1579 King James Version Bible
7816       1580 King James Version Bible
7817       1581 King James Version Bible
7818       1582 King James Version Bible
7819       1583 King James Version Bible
7820       1584 King James Version Bible
7821       1585 King James Version Bible
7822       1586 King James Version Bible
7823       1587 King James Version Bible
7824       1588 King James Version Bible
7825       1589 King James Version Bible
7826       1590 King James Version Bible
7827       1591 King James Version Bible
7828       1592 King James Version Bible
7829       1593 King James Version Bible
7830       1594 King James Version Bible
7831       1595 King James Version Bible
7832       1596 King James Version Bible
7833       1597 King James Version Bible
7834       1598 King James Version Bible
7835       1599 King James Version Bible
7836       1600 King James Version Bible
7837       1601 King James Version Bible
7838       1602 King James Version Bible
7839       1603 King James Version Bible
7840       1604 King James Version Bible
7841       1605 King James Version Bible
7842       1606 King James Version Bible
7843       1607 King James Version Bible
7844       1608 King James Version Bible
7845       1609 King James Version Bible
7846       1610 King James Version Bible
7847       1611 King James Version Bible
7848       1612 King James Version Bible
7849       1613 King James Version Bible
7850       1614 King James Version Bible
7851       1615 King James Version Bible
7852       1616 King James Version Bible
7853       1617 King James Version Bible
7854       1618 King James Version Bible
7855       1619 King James Version Bible
7856       1620 King James Version Bible
7857       1621 King James Version Bible
7858       1622 King James Version Bible
7859       1623 King James Version Bible
7860       1624 King James Version Bible
7861       1625 King James Version Bible
7862       1626 King James Version Bible
7863       1627 King James Version Bible
7864       1628 King James Version Bible
7865       1629 King James Version Bible
7866       1630 King James Version Bible
7867       1631 King James Version Bible
7868       1632 King James Version Bible
7869       1633 King James Version Bible
7870       1634 King James Version Bible
7871       1635 King James Version Bible
7872       1636 King James Version Bible
7873       1637 King James Version Bible
7874       1638 King James Version Bible
7875       1639 King James Version Bible
7876       1640 King James Version Bible
7877       1641 King James Version Bible
7878       1642 King James Version Bible
7879       1643 King James Version Bible
7880       1644 King James Version Bible
7881       1645 King James Version Bible
7882       1646 King James Version Bible
7883       1647 King James Version Bible
7884       1648 King James Version Bible
7885       1649 King James Version Bible
7886       1650 King James Version Bible
7887       1651 King James Version Bible
7888       1652 King James Version Bible
7889       1653 King James Version Bible
7890       1654 King James Version Bible
7891       1655 King James Version Bible
7892       1656 King James Version Bible
7893       1657 King James Version Bible
7894       1658 King James Version Bible
7895       1659 King James Version Bible
7896       1660 King James Version Bible
7897       1661 King James Version Bible
7898       1662 King James Version Bible
7899       1663 King James Version Bible
7900       1664 King James Version Bible
7901       1665 King James Version Bible
7902       1666 King James Version Bible
7903       1667 King James Version Bible
7904       1668 King James Version Bible
7905       1669 King James Version Bible
7906       1670 King James Version Bible
7907       1671 King James Version Bible
7908       1672 King James Version Bible
7909       1673 King James Version Bible
7910       1674 King James Version Bible
7911       1675 King James Version Bible
7912       1676 King James Version Bible
7913       1677 King James Version Bible
7914       1678 King James Version Bible
7915       1679 King James Version Bible
7916       1680 King James Version Bible
7917       1681 King James Version Bible
7918       1682 King James Version Bible
7919       1683 King James Version Bible
7920       1684 King James Version Bible
7921       1685 King James Version Bible
7922       1686 King James Version Bible
7923       1687 King James Version Bible
7924       1688 King James Version Bible
7925       1689 King James Version Bible
7926       1690 King James Version Bible
7927       1691 King James Version Bible
7928       1692 King James Version Bible
7929       1693 King James Version Bible
7930       1694 King James Version Bible
7931       1695 King James Version Bible
7932       1696 King James Version Bible
7933       1697 King James Version Bible
7934       1698 King James Version Bible
7935       1699 King James Version Bible
7936       1700 King James Version Bible
7937       1701 King James Version Bible
7938       1702 King James Version Bible
7939       1703 King James Version Bible
7940       1704 King James Version Bible
7941       1705 King James Version Bible
7942       1706 King James Version Bible
7943       1707 King James Version Bible
7944       1708 King James Version Bible
7945       1709 King James Version Bible
7946       1710 King James Version Bible
7947       1711 King James Version Bible
7948       1712 King James Version Bible
7949       1713 King James Version Bible
7950       1714 King James Version Bible
7951       1715 King James Version Bible
7952       1716 King James Version Bible
7953       1717 King James Version Bible
7954       1718 King James Version Bible
7955       1719 King James Version Bible
7956       1720 King James Version Bible
7957       1721 King James Version Bible
7958       1722 King James Version Bible
7959       1723 King James Version Bible
7960       1724 King James Version Bible
7961       1725 King James Version Bible
7962       1726 King James Version Bible
7963       1727 King James Version Bible
7964       1728 King James Version Bible
7965       1729 King James Version Bible
7966       1730 King James Version Bible
7967       1731 King James Version Bible
7968       1732 King James Version Bible
7969       1733 King James Version Bible
7970       1734 King James Version Bible
7971       1735 King James Version Bible
7972       1736 King James Version Bible
7973       1737 King James Version Bible
7974       1738 King James Version Bible
7975       1739 King James Version Bible
7976       1740 King James Version Bible
7977       1741 King James Version Bible
7978       1742 King James Version Bible
7979       1743 King James Version Bible
7980       1744 King James Version Bible
7981       1745 King James Version Bible
7982       1746 King James Version Bible
7983       1747 King James Version Bible
7984       1748 King James Version Bible
7985       1749 King James Version Bible
7986       1750 King James Version Bible
7987       1751 King James Version Bible
7988       1752 King James Version Bible
7989       1753 King James Version Bible
7990       1754 King James Version Bible
7991       1755 King James Version Bible
7992       1756 King James Version Bible
7993       1757 King James Version Bible
7994       1758 King James Version Bible
7995       1759 King James Version Bible
7996       1760 King James Version Bible
7997       1761 King James Version Bible
7998       1762 King James Version Bible
7999       1763 King James Version Bible
8000       1764 King James Version Bible
8001       1765 King James Version Bible
8002       1766 King James Version Bible
8003       1767 King James Version Bible
8004       1768 King James Version Bible
8005       1769 King James Version Bible
8006       1770 King James Version Bible
8007       1771 King James Version Bible
8008       1772 King James Version Bible
8009       1773 King James Version Bible
8010       1774 King James Version Bible
8011       1775 King James Version Bible
8012       1776 King James Version Bible
8013       1777 King James Version Bible
8014       1778 King James Version Bible
8015       1779 King James Version Bible
8016       1780 King James Version Bible
8017       1781 King James Version Bible
8018       1782 King James Version Bible
8019       1783 King James Version Bible
8020       1784 King James Version Bible
8021       1785 King James Version Bible
8022       1786 King James Version Bible
8023       1787 King James Version Bible
8024       1788 King James Version Bible
8025       1789 King James Version Bible
8026       1790 King James Version Bible
8027       1791 King James Version Bible
8028       1792 King James Version Bible
8029       1793 King James Version Bible
8030       1794 King James Version Bible
8031       1795 King James Version Bible
8032       1796 King James Version Bible
8033       1797 King James Version Bible
8034       1798 King James Version Bible
8035       1799 King James Version Bible
8036       1800 King James Version Bible
8037       1801 King James Version Bible
8038       1802 King James Version Bible
8039       1803 King James Version Bible
8040       1804 King James Version Bible
8041       1805 King James Version Bible
8042       1806 King James Version Bible
8043       1807 King James Version Bible
8044       1808 King James Version Bible
8045       1809 King James Version Bible
8046       1810 King James Version Bible
8047       1811 King James Version Bible
8048       1812 King James Version Bible
8049       1813 King James Version Bible
8050       1814 King James Version Bible
8051       1815 King James Version Bible
8052       1816 King James Version Bible
8053       1817 King James Version Bible
8054       1818 King James Version Bible
8055       1819 King James Version Bible
8056       1820 King James Version Bible
8057       1821 King James Version Bible
8058       1822 King James Version Bible
8059       1823 King James Version Bible
8060       1824 King James Version Bible
8061       1825 King James Version Bible
8062       1826 King James Version Bible
8063       1827 King James Version Bible
8064       1828 King James Version Bible
8065       1829 King James Version Bible
8066       1830 King James Version Bible
8067       1831 King James Version Bible
8068       1832 King James Version Bible
8069       1833 King James Version Bible
8070       1834 King James Version Bible
8071       1835 King James Version Bible
8072       1836 King James Version Bible
8073       1837 King James Version Bible
8074       1838 King James Version Bible
8075       1839 King James Version Bible
8076       1840 King James Version Bible
8077       1841 King James Version Bible
8078       1842 King James Version Bible
8079       1843 King James Version Bible
8080       1844 King James Version Bible
8081       1845 King James Version Bible
8082       1846 King James Version Bible
8083       1847 King James Version Bible
8084       1848 King James Version Bible
8085       1849 King James Version Bible
8086       1850 King James Version Bible
8087       1851 King James Version Bible
8088       1852 King James Version Bible
8089       1853 King James Version Bible
8090       1854 King James Version Bible
8091       1855 King James Version Bible
8092       1856 King James Version Bible
8093       1857 King James Version Bible
8094       1858 King James Version Bible
8095       1859 King James Version Bible
8096       1860 King James Version Bible
8097       1861 King James Version Bible
8098       1862 King James Version Bible
8099       1863 King James Version Bible
8100       1864 King James Version Bible
8101       1865 King James Version Bible
8102       1866 King James Version Bible
8103       1867 King James Version Bible
8104       1868 King James Version Bible
8105       1869 King James Version Bible
8106       1870 King James Version Bible
8107       1871 King James Version Bible
8108       1872 King James Version Bible
8109       1873 King James Version Bible
8110       1874 King James Version Bible
8111       1875 King James Version Bible
8112       1876 King James Version Bible
8113       1877 King James Version Bible
8114       1878 King James Version Bible
8115       1879 King James Version Bible
8116       1880 King James Version Bible
8117       1881 King James Version Bible
8118       1882 King James Version Bible
8119       1883 King James Version Bible
8120       1884 King James Version Bible
8121       1885 King James Version Bible
8122       1886 King James Version Bible
8123       1887 King James Version Bible
8124       1888 King James Version Bible
8125       1889 King James Version Bible
8126       1890 King James Version Bible
8127       1891 King James Version Bible
8128       1892 King James Version Bible
8129       1893 King James Version Bible
8130       1894 King James Version Bible
8131       1895 King James Version Bible
8132       1896 King James Version Bible
8133       1897 King James Version Bible
8134       1898 King James Version Bible
8135       1899 King James Version Bible
8136       1900 King James Version Bible
8137       1901 King James Version Bible
8138       1902 King James Version Bible
8139       1903 King James Version Bible
8140       1904 King James Version Bible
8141       1905 King James Version Bible
8142       1906 King James Version Bible
8143       1907 King James Version Bible
8144       1908 King James Version Bible
8145       1909 King James Version Bible
8146       1910 King James Version Bible
8147       1911 King James Version Bible
8148       1912 King James Version Bible
8149       1913 King James Version Bible
8150       1914 King James Version Bible
8151       1915 King James Version Bible
8152       1916 King James Version Bible
8153       1917 King James Version Bible
8154       1918 King James Version Bible
8155       1919 King James Version Bible
8156       1920 King James Version Bible
8157       1921 King James Version Bible
8158       1922 King James Version Bible
8159       1923 King James Version Bible
8160       1924 King James Version Bible
8161       1925 King James Version Bible
8162       1926 King James Version Bible
8163       1927 King James Version Bible
8164       1928 King James Version Bible
8165       1929 King James Version Bible
8166       1930 King James Version Bible
8167       1931 King James Version Bible
8168       1932 King James Version Bible
8169       1933 King James Version Bible
8170       1934 King James Version Bible
8171       1935 King James Version Bible
8172       1936 King James Version Bible
8173       1937 King James Version Bible
8174       1938 King James Version Bible
8175       1939 King James Version Bible
8176       1940 King James Version Bible
8177       1941 King James Version Bible
8178       1942 King James Version Bible
8179       1943 King James Version Bible
8180       1944 King James Version Bible
8181       1945 King James Version Bible
8182       1946 King James Version Bible
8183       1947 King James Version Bible
8184       1948 King James Version Bible
8185       1949 King James Version Bible
8186       1950 King James Version Bible
8187       1951 King James Version Bible
8188       1952 King James Version Bible
8189       1953 King James Version Bible
8190       1954 King James Version Bible
8191       1955 King James Version Bible
8192       1956 King James Version Bible
8193       1957 King James Version Bible
8194       1958 King James Version Bible
8195       1959 King James Version Bible
8196       1960 King James Version Bible
8197       1961 King James Version Bible
8198       1962 King James Version Bible
8199       1963 King James Version Bible
8200       1964 King James Version Bible
8201       1965 King James Version Bible
8202       1966 King James Version Bible
8203       1967 King James Version Bible
8204       1968 King James Version Bible
8205       1969 King James Version Bible
8206       1970 King James Version Bible
8207       1971 King James Version Bible
8208       1972 King James Version Bible
8209       1973 King James Version Bible
8210       1974 King James Version Bible
8211       1975 King James Version Bible
8212       1976 King James Version Bible
8213       1977 King James Version Bible
8214       1978 King James Version Bible
8215       1979 King James Version Bible
8216       1980 King James Version Bible
8217       1981 King James Version Bible
8218       1982 King James Version Bible
8219       1983 King James Version Bible
8220       1984 King James Version Bible
8221       1985 King James Version Bible
8222       1986 King James Version Bible
8223       1987 King James Version Bible
8224       1988 King James Version Bible
8225       1989 King James Version Bible
8226       1990 King James Version Bible
8227       1991 King James Version Bible
8228       1992 King James Version Bible
8229       1993 King James Version Bible
8230       1994 King James Version Bible
8231       1995 King James Version Bible
8232       1996 King James Version Bible
8233       1997 King James Version Bible
8234       1998 King James Version Bible
8235       1999 King James Version Bible
8236       2000 King James Version Bible
8237       2001 King James Version Bible
8238       2002 King James Version Bible
8239       2003 King James Version Bible
8240       2004 King James Version Bible
8241       2005 King James Version Bible
8242       2006 King James Version Bible
8243       2007 King James Version Bible
8244       2008 King James Version Bible
8245       2009 King James Version Bible
8246       2010 King James Version Bible
8247       2011 King James Version Bible
8248       2012 King James Version Bible
8249       2013 King James Version Bible
8250       2014 King James Version Bible
8251       2015 King James Version Bible
8252       2016 King James Version Bible
8253       2017 King James Version Bible
8254       2018 King James Version Bible
8255       2019 King James Version Bible
8256       2020 King James Version Bible
8257       2021 King James Version Bible
8258       2022 King James Version Bible
8259       2023 King James Version Bible
8260       2024 King James Version Bible
8261       2025 King James Version Bible
8262       2026 King James Version Bible
8263       2027 King James Version Bible
8264       2028 King James Version Bible
8265       2029 King James Version Bible
8266       2030 King James Version Bible
8267       2031 King James Version Bible
8268       2032 King James Version Bible
8269       2033 King James Version Bible
8270       2034 King James Version Bible
8271       2035 King James Version Bible
8272       2036 King James Version Bible
8273       2037 King James Version Bible
8274       2038 King James Version Bible
8275       2039 King James Version Bible
8276       2040 King James Version Bible
8277       2041 King James Version Bible
8278       2042 King James Version Bible
8279       2043 King James Version Bible
8280       2044 King James Version Bible
8281       2045 King James Version Bible
8282       2046 King James Version Bible
8283       2047 King James Version Bible
8284       2048 King James Version Bible
8285       2049 King James Version Bible
8286       2050 King James Version Bible
8287       2051 King James Version Bible
8288       2052 King James Version Bible
8289       2053 King James Version Bible
8290       2054 King James Version Bible
8291       2055 King James Version Bible
8292       2056 King James Version Bible
8293       2057 King James Version Bible
8294       2058 King James Version Bible
8295       2059 King James Version Bible
8296       2060 King James Version Bible
8297       2061 King James Version Bible
8298       2062 King James Version Bible
8299       2063 King James Version Bible
8300       2064 King James Version Bible
8301       2065 King James Version Bible
8302       2066 King James Version Bible
8303       2067 King James Version Bible
8304       2068 King James Version Bible
8305       2069 King James Version Bible
8306       2070 King James Version Bible
8307       2071 King James Version Bible
8308       2072 King James Version Bible
8309       2073 King James Version Bible
8310       2074 King James Version Bible
8311       2075 King James Version Bible
8312       2076 King James Version Bible
8313       2077 King James Version Bible
8314       2078 King James Version Bible
8315       2079 King James Version Bible
8316       2080 King James Version Bible
8317       2081 King James Version Bible
8318       2082 King James Version Bible
8319       2083 King James Version Bible
8320       2084 King James Version Bible
8321       2085 King James Version Bible
8322       2086 King James Version Bible
8323       2087 King James Version Bible
8324       2088 King James Version Bible
8325       2089 King James Version Bible
8326       2090 King James Version Bible
8327       2091 King James Version Bible
8328       2092 King James Version Bible
8329       2093 King James Version Bible
8330       2094 King James Version Bible
8331       2095 King James Version Bible
8332       2096 King James Version Bible
8333       2097 King James Version Bible
8334       2098 King James Version Bible
8335       2099 King James Version Bible
8336       2100 King James Version Bible
8337       2101 King James Version Bible
8338       2102 King James Version Bible
8339       2103 King James Version Bible
8340       2104 King James Version Bible
8341       2105 King James Version Bible
8342       2106 King James Version Bible
8343       2107 King James Version Bible
8344       2108 King James Version Bible
8345       2109 King James Version Bible
8346       2110 King James Version Bible
8347       2111 King James Version Bible
8348       2112 King James Version Bible
8349       2113 King James Version Bible
8350       2114 King James Version Bible
8351       2115 King James Version Bible
8352       2116 King James Version Bible
8353       2117 King James Version Bible
8354       2118 King James Version Bible
8355       2119 King James Version Bible
8356       2120 King James Version Bible
8357       2121 King James Version Bible
8358       2122 King James Version Bible
8359       2123 King James Version Bible
8360       2124 King James Version Bible
8361       2125 King James Version Bible
8362       2126 King James Version Bible
8363       2127 King James Version Bible
8364       2128 King James Version Bible
8365       2129 King James Version Bible
8366       2130 King James Version Bible
8367       2131 King James Version Bible
8368       2132 King James Version Bible
8369       2133 King James Version Bible
8370       2134 King James Version Bible
8371       2135 King James Version Bible
8372       2136 King James Version Bible
8373       2137 King James Version Bible
8374       2138 King James Version Bible
8375       2139 King James Version Bible
8376       2140 King James Version Bible
8377       2141 King James Version Bible
8378       2142 King James Version Bible
8379       2143 King James Version Bible
8380       2144 King James Version Bible
8381       2145 King James Version Bible
8382       2146 King James Version Bible
8383       2147 King James Version Bible
8384       2148 King James Version Bible
8385       2149 King James Version Bible
8386       2150 King James Version Bible
8387       2151 King James Version Bible
8388       2152 King James Version Bible
8389       2153 King James Version Bible
8390       2154 King James Version Bible
8391       2155 King James Version Bible
8392       2156 King James Version Bible
8393       2157 King James Version Bible
8394       2158 King James Version Bible
8395       2159 King James Version Bible
8396       2160 King James Version Bible
8397       2161 King James Version Bible
8398       2162 King James Version Bible
8399       2163 King James Version Bible
8400       2164 King James Version Bible
8401       2165 King James Version Bible
8402       2166 King James Version Bible
8403       2167 King James Version Bible
8404       2168 King James Version Bible
8405       2169 King James Version Bible
8406       2170 King James Version Bible
8407       2171 King James Version Bible
8408       2172 King James Version Bible
8409       2173 King James Version Bible
8410       2174 King James Version Bible
8411       2175 King James Version Bible
8412       2176 King James Version Bible
8413       2177 King James Version Bible
8414       2178 King James Version Bible
8415       2179 King James Version Bible
8416       2180 King James Version Bible
8417       2181 King James Version Bible
8418       2182 King James Version Bible
8419       2183 King James Version Bible
8420       2184 King James Version Bible
8421       2185 King James Version Bible
8422       2186 King James Version Bible
8423       2187 King James Version Bible
8424       2188 King James Version Bible
8425       2189 King James Version Bible
8426       2190 King James Version Bible
8427       2191 King James Version Bible
8428       2192 King James Version Bible
8429       2193 King James Version Bible
8430       2194 King James Version Bible
8431       2195 King James Version Bible
8432       2196 King James Version Bible
8433       2197 King James Version Bible
8434       2198 King James Version Bible
8435       2199 King James Version Bible
8436       2200 King James Version Bible
8437       2201 King James Version Bible
8438       2202 King James Version Bible
8439       2203 King James Version Bible
8440       2204 King James Version Bible
8441       2205 King James Version Bible
8442       2206 King James Version Bible
8443       2207 King James Version Bible
8444       2208 King James Version Bible
8445       2209 King James Version Bible
8446       2210 King James Version Bible
8447       2211 King James Version Bible
8448       2212 King James Version Bible
8449       2213 King James Version Bible
8450       2214 King James Version Bible
8451       2215 King James Version Bible
8452       2216 King James Version Bible
8453       2217 King James Version Bible
8454       2218 King James Version Bible
8455       2219 King James Version Bible
8456       2220 King James Version Bible
8457       2221 King James Version Bible
8458       2222 King James Version Bible
8459       2223 King James Version Bible
8460       2224 King James Version Bible
8461       2225 King James Version Bible
8462       2226 King James Version Bible
8463       2227 King James Version Bible
8464       2228 King James Version Bible
8465       2229 King James Version Bible
8466       2230 King James Version Bible
8467       2231 King James Version Bible
8468       2232 King James Version Bible
8469       2233 King James Version Bible
8470       2234 King James Version Bible
8471       2235 King James Version Bible
8472       2236 King James Version Bible
8473       2237 King James Version Bible
8474       2238 King James Version Bible
8475       2239 King James Version Bible
8476       2240 King James Version Bible
8477       2241 King James Version Bible
8478       2242 King James Version Bible
8479       2243 King James Version Bible
8480       2244 King James Version Bible
8481       2245 King James Version Bible
8482       2246 King James Version Bible
8483       2247 King James Version Bible
8484       2248 King James Version Bible
8485       2249 King James Version Bible
8486       2250 King James Version Bible
8487       2251 King James Version Bible
8488       2252 King James Version Bible
8489       2253 King James Version Bible
8490       2254 King James Version Bible
8491       2255 King James Version Bible
8492       2256 King James Version Bible
8493       2257 King James Version Bible
8494       2258 King James Version Bible
8495       2259 King James Version Bible
8496       2260 King James Version Bible
8497       2261 King James Version Bible
8498       2262 King James Version Bible
8499       2263 King James Version Bible
8500       2264 King James Version Bible
8501       2265 King James Version Bible
8502       2266 King James Version Bible
8503       2267 King James Version Bible
8504       2268 King James Version Bible
8505       2269 King James Version Bible
8506       2270 King James Version Bible
8507       2271 King James Version Bible
8508       2272 King James Version Bible
8509       2273 King James Version Bible
8510       2274 King James Version Bible
8511       2275 King James Version Bible
8512       2276 King James Version Bible
8513       2277 King James Version Bible
8514       2278 King James Version Bible
8515       2279 King James Version Bible
8516       2280 King James Version Bible
8517       2281 King James Version Bible
8518       2282 King James Version Bible
8519       2283 King James Version Bible
8520       2284 King James Version Bible
8521       2285 King James Version Bible
8522       2286 King James Version Bible
8523       2287 King James Version Bible
8524       2288 King James Version Bible
8525       2289 King James Version Bible
8526       2290 King James Version Bible
8527       2291 King James Version Bible
8528       2292 King James Version Bible
8529       2293 King James Version Bible
8530       2294 King James Version Bible
8531       2295 King James Version Bible
8532       2296 King James Version Bible
8533       2297 King James Version Bible
8534       2298 King James Version Bible
8535       2299 King James Version Bible
8536       2300 King James Version Bible
8537       2301 King James Version Bible
8538       2302 King James Version Bible
8539       2303 King James Version Bible
8540       2304 King James Version Bible
8541       2305 King James Version Bible
8542       2306 King James Version Bible
8543       2307 King James Version Bible
8544       2308 King James Version Bible
8545       2309 King James Version Bible
8546       2310 King James Version Bible
8547       2311 King James Version Bible
8548       2312 King James Version Bible
8549       2313 King James Version Bible
8550       2314 King James Version Bible
8551       2315 King James Version Bible
8552       2316 King James Version Bible
8553       2317 King James Version Bible
8554       2318 King James Version Bible
8555       2319 King James Version Bible
8556       2320 King James Version Bible
8557       2321 King James Version Bible
8558       2322 King James Version Bible
8559       2323 King James Version Bible
8560       2324 King James Version Bible
8561       2325 King James Version Bible
8562       2326 King James Version Bible
8563       2327 King James Version Bible
8564       2328 King James Version Bible
8565       2329 King James Version Bible
8566       2330 King James Version Bible
8567       2331 King James Version Bible
8568       2332 King James Version Bible
8569       2333 King James Version Bible
8570       2334 King James Version Bible
8571       2335 King James Version Bible
8572       2336 King James Version Bible
8573       2337 King James Version Bible
8574       2338 King James Version Bible
8575       2339 King James Version Bible
8576       2340 King James Version Bible
8577       2341 King James Version Bible
8578       2342 King James Version Bible
8579       2343 King James Version Bible
8580       2344 King James Version Bible
8581       2345 King James Version Bible
8582       2346 King James Version Bible
8583       2347 King James Version Bible
8584       2348 King James Version Bible
8585       2349 King James Version Bible
8586       2350 King James Version Bible
8587       2351 King James Version Bible
8588       2352 King James Version Bible
8589       2353 King James Version Bible
8590       2354 King James Version Bible
8591       2355 King James Version Bible
8592       2356 King James Version Bible
8593       2357 King James Version Bible
8594       2358 King James Version Bible
8595       2359 King James Version Bible
8596       2360 King James Version Bible
8597       2361 King James Version Bible
8598       2362 King James Version Bible
8599       2363 King James Version Bible
8600       2364 King James Version Bible
8601       2365 King James Version Bible
8602       2366 King James Version Bible
8603       2367 King James Version Bible
8604       2368 King James Version Bible
8605       2369 King James Version Bible
8606       2370 King James Version Bible
8607       2371 King James Version Bible
8608       2372 King James Version Bible
8609       2373 King James Version Bible
8610       2374 King James Version Bible
8611       2375 King James Version Bible
8612       2376 King James Version Bible
8613       2377 King James Version Bible
8614       2378 King James Version Bible
8615       2379 King James Version Bible
8616       2380 King James Version Bible
8617       2381 King James Version Bible
8618       2382 King James Version Bible
8619       2383 King James Version Bible
8620       2384 King James Version Bible
8621       2385 King James Version Bible
8622       2386 King James Version Bible
8623       2387 King James Version Bible
8624       2388 King James Version Bible
8625       2389 King James Version Bible
8626       2390 King James Version Bible
8627       2391 King James Version Bible
8628       2392 King James Version Bible
8629       2393 King James Version Bible
8630       2394 King James Version Bible
8631       2395 King James Version Bible
8632       2396 King James Version Bible
8633       2397 King James Version Bible
8634       2398 King James Version Bible
8635       2399 King James Version Bible
8636       2400 King James Version Bible
8637       2401 King James Version Bible
8638       2402 King James Version Bible
8639       2403 King James Version Bible
8640       2404 King James Version Bible
8641       2405 King James Version Bible
8642       2406 King James Version Bible
8643       2407 King James Version Bible
8644       2408 King James Version Bible
8645       2409 King James Version Bible
8646       2410 King James Version Bible
8647       2411 King James Version Bible
8648       2412 King James Version Bible
8649       2413 King James Version Bible
8650       2414 King James Version Bible
8651       2415 King James Version Bible
8652       2416 King James Version Bible
8653       2417 King James Version Bible
8654       2418 King James Version Bible
8655       2419 King James Version Bible
8656       2420 King James Version Bible
8657       2421 King James Version Bible
8658       2422 King James Version Bible
8659       2423 King James Version Bible
8660       2424 King James Version Bible
8661       2425 King James Version Bible
8662       2426 King James Version Bible
8663       2427 King James Version Bible
8664       2428 King James Version Bible
8665       2429 King James Version Bible
8666       2430 King James Version Bible
8667       2431 King James Version Bible
8668       2432 King James Version Bible
8669       2433 King James Version Bible
8670       2434 King James Version Bible
8671       2435 King James Version Bible
8672       2436 King James Version Bible
8673       2437 King James Version Bible
8674       2438 King James Version Bible
8675       2439 King James Version Bible
8676       2440 King James Version Bible
8677       2441 King James Version Bible
8678       2442 King James Version Bible
8679       2443 King James Version Bible
8680       2444 King James Version Bible
8681       2445 King James Version Bible
8682       2446 King James Version Bible
8683       2447 King James Version Bible
8684       2448 King James Version Bible
8685       2449 King James Version Bible
8686       2450 King James Version Bible
8687       2451 King James Version Bible
8688       2452 King James Version Bible
8689       2453 King James Version Bible
8690       2454 King James Version Bible
8691       2455 King James Version Bible
8692       2456 King James Version Bible
8693       2457 King James Version Bible
8694       2458 King James Version Bible
8695       2459 King James Version Bible
8696       2460 King James Version Bible
8697       2461 King James Version Bible
8698       2462 King James Version Bible
8699       2463 King James Version Bible
8700       2464 King James Version Bible
8701       2465 King James Version Bible
8702       2466 King James Version Bible
8703       2467 King James Version Bible
8704       2468 King James Version Bible
8705       2469 King James Version Bible
8706       2470 King James Version Bible
8707       2471 King James Version Bible
8708       2472 King James Version Bible
8709       2473 King James Version Bible
8710       2474 King James Version Bible
8711       2475 King James Version Bible
8712       2476 King James Version Bible
8713       2477 King James Version Bible
8714       2478 King James Version Bible
8715       2479 King James Version Bible
8716       2480 King James Version Bible
8717       2481 King James Version Bible
8718       2482 King James Version Bible
8719       2483 King James Version Bible
8720       2484 King James Version Bible
8721       2485 King James Version Bible
8722       2486 King James Version Bible
8723       2487 King James Version Bible
8724       2488 King James Version Bible
8725       2489 King James Version Bible
8726       2490 King James Version Bible
8727       2491 King James Version Bible
8728       2492 King James Version Bible
8729       2493 King James Version Bible
8730       2494 King James Version Bible
8731       2495 King James Version Bible
8732       2496 King James Version Bible
8733       2497 King James Version Bible
8734       2498 King James Version Bible
8735       2499 King James Version Bible
8736       2500 King James Version Bible
8737       2501 King James Version Bible
8738       2502 King James Version Bible
8739       2503 King James Version Bible
8740       2504 King James Version Bible
8741       2505 King James Version Bible
8742       2506 King James Version Bible
8743       2507 King James Version Bible
8744       2508 King James Version Bible
8745       2509 King James Version Bible
8746       2510 King James Version Bible
8747       2511 King James Version Bible
8748       2512 King James Version Bible
8749       2513 King James Version Bible
8750       2514 King James Version Bible
8751       2515 King James Version Bible
8752       2516 King James Version Bible
8753       2517 King James Version Bible
8754       2518 King James Version Bible
8755       2519 King James Version Bible
8756       2520 King James Version Bible
8757       2521 King James Version Bible
8758       2522 King James Version Bible
8759       2523 King James Version Bible
8760       2524 King James Version Bible
8761       2525 King James Version Bible
8762       2526 King James Version Bible
8763       2527 King James Version Bible
8764       2528 King James Version Bible
8765       2529 King James Version Bible
8766       2530 King James Version Bible
8767       2531 King James Version Bible
8768       2532 King James Version Bible
8769       2533 King James Version Bible
8770       2534 King James Version Bible
8771       2535 King James Version Bible
8772       2536 King James Version Bible
8773       2537 King James Version Bible
8774       2538 King James Version Bible
8775       2539 King James Version Bible
8776       2540 King James Version Bible
8777       2541 King James Version Bible
8778       2542 King James Version Bible
8779       2543 King James Version Bible
8780       2544 King James Version Bible
8781       2545 King James Version Bible
8782       2546 King James Version Bible
8783       2547 King James Version Bible
8784       2548 King James Version Bible
8785       2549 King James Version Bible
8786       2550 King James Version Bible
8787       2551 King James Version Bible
8788       2552 King James Version Bible
8789       2553 King James Version Bible
8790       2554 King James Version Bible
8791       2555 King James Version Bible
8792       2556 King James Version Bible
8793       2557 King James Version Bible
8794       2558 King James Version Bible
8795       2559 King James Version Bible
8796       2560 King James Version Bible
8797       2561 King James Version Bible
8798       2562 King James Version Bible
8799       2563 King James Version Bible
8800       2564 King James Version Bible
8801       2565 King James Version Bible
8802       2566 King James Version Bible
8803       2567 King James Version Bible
8804       2568 King James Version Bible
8805       2569 King James Version Bible
8806       2570 King James Version Bible
8807       2571 King James Version Bible
8808       2572 King James Version Bible
8809       2573 King James Version Bible
8810       2574 King James Version Bible
8811       2575 King James Version Bible
8812       2576 King James Version Bible
8813       2577 King James Version Bible
8814       2578 King James Version Bible
8815       2579 King James Version Bible
8816       2580 King James Version Bible
8817       2581 King James Version Bible
8818       2582 King James Version Bible
8819       2583 King James Version Bible
8820       2584 King James Version Bible
8821       2585 King James Version Bible
8822       2586 King James Version Bible
8823       2587 King James Version Bible
8824       2588 King James Version Bible
8825       2589 King James Version Bible
8826       2590 King James Version Bible
8827       2591 King James Version Bible
8828       2592 King James Version Bible
8829       2593 King James Version Bible
8830       2594 King James Version Bible
8831       2595 King James Version Bible
8832       2596 King James Version Bible
8833       2597 King James Version Bible
8834       2598 King James Version Bible
8835       2599 King James Version Bible
8836       2600 King James Version Bible
8837       2601 King James Version Bible
8838       2602 King James Version Bible
8839       2603 King James Version Bible
8840       2604 King James Version Bible
8841       2605 King James Version Bible
8842       2606 King James Version Bible
8843       2607 King James Version Bible
8844       2608 King James Version Bible
8845       2609 King James Version Bible
8846       2610 King James Version Bible
8847       2611 King James Version Bible
8848       2612 King James Version Bible
8849       2613 King James Version Bible
8850       2614 King James Version Bible
8851       2615 King James Version Bible
8852       2616 King James Version Bible
8853       2617 King James Version Bible
8854       2618 King James Version Bible
8855       2619 King James Version Bible
8856       2620 King James Version Bible
8857       2621 King James Version Bible
8858       2622 King James Version Bible
8859       2623 King James Version Bible
8860       2624 King James Version Bible
8861       2625 King James Version Bible
8862       2626 King James Version Bible
8863       2627 King James Version Bible
8864       2628 King James Version Bible
8865       2629 King James Version Bible
8866       2630 King James Version Bible
8867       2631 King James Version Bible
8868       2632 King James Version Bible
8869       2633 King James Version Bible
8870       2634 King James Version Bible
8871       2635 King James Version Bible
8872       2636 King James Version Bible
8873       2637 King James Version Bible
8874       2638 King James Version Bible
8875       2639 King James Version Bible
8876       2640 King James Version Bible
8877       2641 King James Version Bible
8878       2642 King James Version Bible
8879       2643 King James Version Bible
8880       2644 King James Version Bible
8881       2645 King James Version Bible
8882       2646 King James Version Bible
8883       2647 King James Version Bible
8884       2648 King James Version Bible
8885       2649 King James Version Bible
8886       2650 King James Version Bible
8887       2651 King James Version Bible
8888       2652 King James Version Bible
8889       2653 King James Version Bible
8890       2654 King James Version Bible
8891       2655 King James Version Bible
8892       2656 King James Version Bible
8893       2657 King James Version Bible
8894       2658 King James Version Bible
8895       2659 King James Version Bible
8896       2660 King James Version Bible
8897       2661 King James Version Bible
8898       2662 King James Version Bible
8899       2663 King James Version Bible
8900       2664 King James Version Bible
8901       2665 King James Version Bible
8902       2666 King James Version Bible
8903       2667 King James Version Bible
8904       2668 King James Version Bible
8905       2669 King James Version Bible
8906       2670 King James Version Bible
8907       2671 King James Version Bible
8908       2672 King James Version Bible
8909       2673 King James Version Bible
8910       2674 King James Version Bible
8911       2675 King James Version Bible
8912       2676 King James Version Bible
8913       2677 King James Version Bible
8914       2678 King James Version Bible
8915       2679 King James Version Bible
8916       2680 King James Version Bible
8917       2681 King James Version Bible
8918       2682 King James Version Bible
8919       2683 King James Version Bible
8920       2684 King James Version Bible
8921       2685 King James Version Bible
8922       2686 King James Version Bible
8923       2687 King James Version Bible
8924       2688 King James Version Bible
8925       2689 King James Version Bible
8926       2690 King James Version Bible
8927       2691 King James Version Bible
8928       2692 King James Version Bible
8929       2693 King James Version Bible
8930       2694 King James Version Bible
8931       2695 King James Version Bible
8932       2696 King James Version Bible
8933       2697 King James Version Bible
8934       2698 King James Version Bible
8935       2699 King James Version Bible
8936       2700 King James Version Bible
8937       2701 King James Version Bible
8938       2702 King James Version Bible
8939       2703 King James Version Bible
8940       2704 King James Version Bible
8941       2705 King James Version Bible
8942       2706 King James Version Bible
8943       2707 King James Version Bible
8944       2708 King James Version Bible
8945       2709 King James Version Bible
8946       2710 King James Version Bible
8947       2711 King James Version Bible
8948       2712 King James Version Bible
8949       2713 King James Version Bible
8950       2714 King James Version Bible
8951       2715 King James Version Bible
8952       2716 King James Version Bible
8953       2717 King James Version Bible
8954       2718 King James Version Bible
8955       2719 King James Version Bible
8956       2720 King James Version Bible
8957       2721 King James Version Bible
8958       2722 King James Version Bible
8959       2723 King James Version Bible
8960       2724 King James Version Bible
8961       2725 King James Version Bible
8962       2726 King James Version Bible
8963       2727 King James Version Bible
8964       2728 King James Version Bible
8965       2729 King James Version Bible
8966       2730 King James Version Bible
8967       2731 King James Version Bible
8968       2732 King James Version Bible
8969       2733 King James Version Bible
8970       2734 King James Version Bible
8971       2735 King James Version Bible
8972       2736 King James Version Bible
8973       2737 King James Version Bible
8974       2738 King James Version Bible
8975       2739 King James Version Bible
8976       2740 King James Version Bible
8977       2741 King James Version Bible
8978       2742 King James Version Bible
8979       2743 King James Version Bible
8980       2744 King James Version Bible
8981       2745 King James Version Bible
8982       2746 King James Version Bible
8983       2747 King James Version Bible
8984       2748 King James Version Bible
8985       2749 King James Version Bible
8986       2750 King James Version Bible
8987       2751 King James Version Bible
8988       2752 King James Version Bible
8989       2753 King James Version Bible
8990       2754 King James Version Bible
8991       2755 King James Version Bible
8992       2756 King James Version Bible
8993       2757 King James Version Bible
8994       2758 King James Version Bible
8995       2759 King James Version Bible
8996       2760 King James Version Bible
8997       2761 King James Version Bible
8998       2762 King James Version Bible
8999       2763 King James Version Bible
9000       2764 King James Version Bible
9001       2765 King James Version Bible
9002       2766 King James Version Bible
9003       2767 King James Version Bible
9004       2768 King James Version Bible
9005       2769 King James Version Bible
9006       2770 King James Version Bible
9007       2771 King James Version Bible
9008       2772 King James Version Bible
9009       2773 King James Version Bible
9010       2774 King James Version Bible
9011       2775 King James Version Bible
9012       2776 King James Version Bible
9013       2777 King James Version Bible
9014       2778 King James Version Bible
9015       2779 King James Version Bible
9016       2780 King James Version Bible
9017       2781 King James Version Bible
9018       2782 King James Version Bible
9019       2783 King James Version Bible
9020       2784 King James Version Bible
9021       2785 King James Version Bible
9022       2786 King James Version Bible
9023       2787 King James Version Bible
9024       2788 King James Version Bible
9025       2789 King James Version Bible
9026       2790 King James Version Bible
9027       2791 King James Version Bible
9028       2792 King James Version Bible
9029       2793 King James Version Bible
9030       2794 King James Version Bible
9031       2795 King James Version Bible
9032       2796 King James Version Bible
9033       2797 King James Version Bible
9034       2798 King James Version Bible
9035       2799 King James Version Bible
9036       2800 King James Version Bible
9037       2801 King James Version Bible
9038       2802 King James Version Bible
9039       2803 King James Version Bible
9040       2804 King James Version Bible
9041       2805 King James Version Bible
9042       2806 King James Version Bible
9043       2807 King James Version Bible
9044       2808 King James Version Bible
9045       2809 King James Version Bible
9046       2810 King James Version Bible
9047       2811 King James Version Bible
9048       2812 King James Version Bible
9049       2813 King James Version Bible
9050       2814 King James Version Bible
9051       2815 King James Version Bible
9052       2816 King James Version Bible
9053       2817 King James Version Bible
9054       2818 King James Version Bible
9055       2819 King James Version Bible
9056       2820 King James Version Bible
9057       2821 King James Version Bible
9058       2822 King James Version Bible
9059       2823 King James Version Bible
9060       2824 King James Version Bible
9061       2825 King James Version Bible
9062       2826 King James Version Bible
9063       2827 King James Version Bible
9064       2828 King James Version Bible
9065       2829 King James Version Bible
9066       2830 King James Version Bible
9067       2831 King James Version Bible
9068       2832 King James Version Bible
9069       2833 King James Version Bible
9070       2834 King James Version Bible
9071       2835 King James Version Bible
9072       2836 King James Version Bible
9073       2837 King James Version Bible
9074       2838 King James Version Bible
9075       2839 King James Version Bible
9076       2840 King James Version Bible
9077       2841 King James Version Bible
9078       2842 King James Version Bible
9079       2843 King James Version Bible
9080       2844 King James Version Bible
9081       2845 King James Version Bible
9082       2846 King James Version Bible
9083       2847 King James Version Bible
9084       2848 King James Version Bible
9085       2849 King James Version Bible
9086       2850 King James Version Bible
9087       2851 King James Version Bible
9088       2852 King James Version Bible
9089       2853 King James Version Bible
9090       2854 King James Version Bible
9091       2855 King James Version Bible
9092       2856 King James Version Bible
9093       2857 King James Version Bible
9094       2858 King James Version Bible
9095       2859 King James Version Bible
9096       2860 King James Version Bible
9097       2861 King James Version Bible
9098       2862 King James Version Bible
9099       2863 King James Version Bible
9100       2864 King James Version Bible
9101       2865 King James Version Bible
9102       2866 King James Version Bible
9103       2867 King James Version Bible
9104       2868 King James Version Bible
9105       2869 King James Version Bible
9106       2870 King James Version Bible
9107       2871 King James Version Bible
9108       2872 King James Version Bible
9109       2873 King James Version Bible
9110       2874 King James Version Bible
9111       2875 King James Version Bible
9112       2876 King James Version Bible
9113       2877 King James Version Bible
9114       2878 King James Version Bible
9115       2879 King James Version Bible
9116       2880 King James Version Bible
9117       2881 King James Version Bible
9118       2882 King James Version Bible
9119       2883 King James Version Bible
9120       2884 King James Version Bible
9121       2885 King James Version Bible
9122       2886 King James Version Bible
9123       2887 King James Version Bible
9124       2888 King James Version Bible
9125       2889 King James Version Bible
9126       2890 King James Version Bible
9127       2891 King James Version Bible
9128       2892 King James Version Bible
9129       2893 King James Version Bible
9130       2894 King James Version Bible
9131       2895 King James Version Bible
9132       2896 King James Version Bible
9133       2897 King James Version Bible
9134       2898 King James Version Bible
9135       2899 King James Version Bible
9136       2900 King James Version Bible
9137       2901 King James Version Bible
9138       2902 King James Version Bible
9139       2903 King James Version Bible
9140       2904 King James Version Bible
9141       2905 King James Version Bible
9142       2906 King James Version Bible
9143       2907 King James Version Bible
9144       2908 King James Version Bible
9145       2909 King James Version Bible
9146       2910 King James Version Bible
9147       2911 King James Version Bible
9148       2912 King James Version Bible
9149       2913 King James Version Bible
9150       2914 King James Version Bible
9151       2915 King James Version Bible
9152       2916 King James Version Bible
9153       2917 King James Version Bible
9154       2918 King James Version Bible
9155       2919 King James Version Bible
9156       2920 King James Version Bible
9157       2921 King James Version Bible
9158       2922 King James Version Bible
9159       2923 King James Version Bible
9160       2924 King James Version Bible
9161       2925 King James Version Bible
9162       2926 King James Version Bible
9163       2927 King James Version Bible
9164       2928 King James Version Bible
9165       2929 King James Version Bible
9166       2930 King James Version Bible
9167       2931 King James Version Bible
9168       2932 King James Version Bible
9169       2933 King James Version Bible
9170       2934 King James Version Bible
9171       2935 King James Version Bible
9172       2936 King James Version Bible
9173       2937 King James Version Bible
9174       2938 King James Version Bible
9175       2939 King James Version Bible
9176       2940 King James Version Bible
9177       2941 King James Version Bible
9178       2942 King James Version Bible
9179       2943 King James Version Bible
9180       2944 King James Version Bible
9181       2945 King James Version Bible
9182       2946 King James Version Bible
9183       2947 King James Version Bible
9184       2948 King James Version Bible
9185       2949 King James Version Bible
9186       2950 King James Version Bible
9187       2951 King James Version Bible
9188       2952 King James Version Bible
9189       2953 King James Version Bible
9190       2954 King James Version Bible
9191       2955 King James Version Bible
9192       2956 King James Version Bible
9193       2957 King James Version Bible
9194       2958 King James Version Bible
9195       2959 King James Version Bible
9196       2960 King James Version Bible
9197       2961 King James Version Bible
9198       2962 King James Version Bible
9199       2963 King James Version Bible
9200       2964 King James Version Bible
9201       2965 King James Version Bible
9202       2966 King James Version Bible
9203       2967 King James Version Bible
9204       2968 King James Version Bible
9205       2969 King James Version Bible
9206       2970 King James Version Bible
9207       2971 King James Version Bible
9208       2972 King James Version Bible
9209       2973 King James Version Bible
9210       2974 King James Version Bible
9211       2975 King James Version Bible
9212       2976 King James Version Bible
9213       2977 King James Version Bible
9214       2978 King James Version Bible
9215       2979 King James Version Bible
9216       2980 King James Version Bible
9217       2981 King James Version Bible
9218       2982 King James Version Bible
9219       2983 King James Version Bible
9220       2984 King James Version Bible
9221       2985 King James Version Bible
9222       2986 King James Version Bible
9223       2987 King James Version Bible
9224       2988 King James Version Bible
9225       2989 King James Version Bible
9226       2990 King James Version Bible
9227       2991 King James Version Bible
9228       2992 King James Version Bible
9229       2993 King James Version Bible
9230       2994 King James Version Bible
9231       2995 King James Version Bible
9232       2996 King James Version Bible
9233       2997 King James Version Bible
9234       2998 King James Version Bible
9235       2999 King James Version Bible
9236       3000 King James Version Bible
9237       3001 King James Version Bible
9238       3002 King James Version Bible
9239       3003 King James Version Bible
9240       3004 King James Version Bible
9241       3005 King James Version Bible
9242       3006 King James Version Bible
9243       3007 King James Version Bible
9244       3008 King James Version Bible
9245       3009 King James Version Bible
9246       3010 King James Version Bible
9247       3011 King James Version Bible
9248       3012 King James Version Bible
9249       3013 King James Version Bible
9250       3014 King James Version Bible
9251       3015 King James Version Bible
9252       3016 King James Version Bible
9253       3017 King James Version Bible
9254       3018 King James Version Bible
9255       3019 King James Version Bible
9256       3020 King James Version Bible
9257       3021 King James Version Bible
9258       3022 King James Version Bible
9259       3023 King James Version Bible
9260       3024 King James Version Bible
9261       3025 King James Version Bible
9262       3026 King James Version Bible
9263       3027 King James Version Bible
9264       3028 King James Version Bible
9265       3029 King James Version Bible
9266       3030 King James Version Bible
9267       3031 King James Version Bible
9268       3032 King James Version Bible
9269       3033 King James Version Bible
9270       3034 King James Version Bible
9271       3035 King James Version Bible
9272       3036 King James Version Bible
9273       3037 King James Version Bible
9274       3038 King James Version Bible
9275       3039 King James Version Bible
9276       3040 King James Version Bible
9277       3041 King James Version Bible
9278       3042 King James Version Bible
9279       3043 King James Version Bible
9280       3044 King James Version Bible
9281       3045 King James Version Bible
9282       3046 King James Version Bible
9283       3047 King James Version Bible
9284       3048 King James Version Bible
9285       3049 King James Version Bible
9286       3050 King James Version Bible
9287       3051 King James Version Bible
9288       3052 King James Version Bible
9289       3053 King James Version Bible
9290       3054 King James Version Bible
9291       3055 King James Version Bible
9292       3056 King James Version Bible
9293       3057 King James Version Bible
9294       3058 King James Version Bible
9295       3059 King James Version Bible
9296       3060 King James Version Bible
9297       3061 King James Version Bible
9298       3062 King James Version Bible
9299       3063 King James Version Bible
9300       3064 King James Version Bible
9301       3065 King James Version Bible
9302       3066 King James Version Bible
9303       3067 King James Version Bible
9304       3068 King James Version Bible
9305       3069 King James Version Bible
9306       3070 King James Version Bible
9307       3071 King James Version Bible
9308       3072 King James Version Bible
9309       3073 King James Version Bible
9310       3074 King James Version Bible
9311       3075 King James Version Bible
9312       3076 King James Version Bible
9313       3077 King James Version Bible
9314       3078 King James Version Bible
9315       3079 King James Version Bible
9316       3080 King James Version Bible
9317       3081 King James Version Bible
9318       3082 King James Version Bible
9319       3083 King James Version Bible
9320       3084 King James Version Bible
9321       3085 King James Version Bible
9322       3086 King James Version Bible
9323       3087 King James Version Bible
9324       3088 King James Version Bible
9325       3089 King James Version Bible
9326       3090 King James Version Bible
9327       3091 King James Version Bible
9328       3092 King James Version Bible
9329       3093 King James Version Bible
9330       3094 King James Version Bible
9331       3095 King James Version Bible
9332       3096 King James Version Bible
9333       3097 King James Version Bible
9334       3098 King James Version Bible
9335       3099 King James Version Bible
9336       3100 King James Version Bible
9337       3101 King James Version Bible
9338       3102 King James Version Bible
9339       3103 King James Version Bible
9340       3104 King James Version Bible
9341       3105 King James Version Bible
9342       3106 King James Version Bible
9343       3107 King James Version Bible
9344       3108 King James Version Bible
9345       3109 King James Version Bible
9346       3110 King James Version Bible
9347       3111 King James Version Bible
9348       3112 King James Version Bible
9349       3113 King James Version Bible
9350       3114 King James Version Bible
9351       3115 King James Version Bible
9352       3116 King James Version Bible
9353       3117 King James Version Bible
9354       3118 King James Version Bible
9355       3119 King James Version Bible
9356       3120 King James Version Bible
9357       3121 King James Version Bible
9358       3122 King James Version Bible
9359       3123 King James Version Bible
9360       3124 King James Version Bible
9361       3125 King James Version Bible
9362       3126 King James Version Bible
9363       3127 King James Version Bible
9364       3128 King James Version Bible
9365       3129 King James Version Bible
9366       3130 King James Version Bible
9367       3131 King James Version Bible
9368       3132 King James Version Bible
9369       3133 King James Version Bible
9370       3134 King James Version Bible
9371       3135 King James Version Bible
9372       3136 King James Version Bible
9373       3137 King James Version Bible
9374       3138 King James Version Bible
9375       3139 King James Version Bible
9376       3140 King James Version Bible
9377       3141 King James Version Bible
9378       3142 King James Version Bible
9379       3143 King James Version Bible
9380       3144 King James Version Bible
9381       3145 King James Version Bible
9382       3146 King James Version Bible
9383       3147 King James Version Bible
9384       3148 King James Version Bible
9385       3149 King James Version Bible
9386       3150 King James Version Bible
9387       3151 King James Version Bible
9388       3152 King James Version Bible
9389       3153 King James Version Bible
9390       3154 King James Version Bible
9391       3155 King James Version Bible
9392       3156 King James Version Bible
9393       3157 King James Version Bible
9394       3158 King James Version Bible
9395       3159 King James Version Bible
9396       3160 King James Version Bible
9397       3161 King James Version Bible
9398       3162 King James Version Bible
9399       3163 King James Version Bible
9400       3164 King James Version Bible
9401       3165 King James Version Bible
9402       3166 King James Version Bible
9403       3167 King James Version Bible
9404       3168 King James Version Bible
9405       3169 King James Version Bible
9406       3170 King James Version Bible
9407       3171 King James Version Bible
9408       3172 King James Version Bible
9409       3173 King James Version Bible
9410       3174 King James Version Bible
9411       3175 King James Version Bible
9412       3176 King James Version Bible
9413       3177 King James Version Bible
9414       3178 King James Version Bible
9415       3179 King James Version Bible
9416       3180 King James Version Bible
9417       3181 King James Version Bible
9418       3182 King James Version Bible
9419       3183 King James Version Bible
9420       3184 King James Version Bible
9421       3185 King James Version Bible
9422       3186 King James Version Bible
9423       3187 King James Version Bible
9424       3188 King James Version Bible
9425       3189 King James Version Bible
9426       3190 King James Version Bible
9427       3191 King James Version Bible
9428       3192 King James Version Bible
9429       3193 King James Version Bible
9430       3194 King James Version Bible
9431       3195 King James Version Bible
9432       3196 King James Version Bible
9433       3197 King James Version Bible
9434       3198 King James Version Bible
9435       3199 King James Version Bible
9436       3200 King James Version Bible
9437       3201 King James Version Bible
9438       3202 King James Version Bible
9439       3203 King James Version Bible
9440       3204 King James Version Bible
9441       3205 King James Version Bible
9442       3206 King James Version Bible
9443       3207 King James Version Bible
9444       3208 King James Version Bible
9445       3209 King James Version Bible
9446       3210 King James Version Bible
9447       3211 King James Version Bible
9448       3212 King James Version Bible
9449       3213 King James Version Bible
9450       3214 King James Version Bible
9451       3215 King James Version Bible
9452       3216 King James Version Bible
9453       3217 King James Version Bible
9454       3218 King James Version Bible
9455       3219 King James Version Bible
9456       3220 King James Version Bible
9457       3221 King James Version Bible
9458       3222 King James Version Bible
9459       3223 King James Version Bible
9460       3224 King James Version Bible
9461       3225 King James Version Bible
9462       3226 King James Version Bible
9463       3227 King James Version Bible
9464       3228 King James Version Bible
9465       3229 King James Version Bible
9466       3230 King James Version Bible
9467       3231 King James Version Bible
9468       3232 King James Version Bible
9469       3233 King James Version Bible
9470       3234 King James Version Bible
9471       3235 King James Version Bible
9472       3236 King James Version Bible
9473       3237 King James Version Bible
9474       3238 King James Version Bible
9475       3239 King James Version Bible
9476       3240 King James Version Bible
9477       3241 King James Version Bible
9478       3242 King James Version Bible
9479       3243 King James Version Bible
9480       3244 King James Version Bible
9481       3245 King James Version Bible
9482       3246 King James Version Bible
9483       3247 King James Version Bible
9484       3248 King James Version Bible
9485       3249 King James Version Bible
9486       3250 King James Version Bible
9487       3251 King James Version Bible
9488       3252 King James Version Bible
9489       3253 King James Version Bible
9490       3254 King James Version Bible
9491       3255 King James Version Bible
9492       3256 King James Version Bible
9493       3257 King James Version Bible
9494       3258 King James Version Bible
9495       3259 King James Version Bible
9496       3260 King James Version Bible
9497       3261 King James Version Bible
9498       3262 King James Version Bible
9499       3263 King James Version Bible
9500       3264 King James Version Bible
9501       3265 King James Version Bible
9502       3266 King James Version Bible
9503       3267 King James Version Bible
9504       3268 King James Version Bible
9505       3269 King James Version Bible
9506       3270 King James Version Bible
9507       3271 King James Version Bible
9508       3272 King James Version Bible
9509       3273 King James Version Bible
9510       3274 King James Version Bible
9511       3275 King James Version Bible
9512       3276 King James Version Bible
9513       3277 King James Version Bible
9514       3278 King James Version Bible
9515       3279 King James Version Bible
9516       3280 King James Version Bible
9517       3281 King James Version Bible
9518       3282 King James Version Bible
9519       3283 King James Version Bible
9520       3284 King James Version Bible
9521       3285 King James Version Bible
9522       3286 King James Version Bible
9523       3287 King James Version Bible
9524       3288 King James Version Bible
9525       3289 King James Version Bible
9526       3290 King James Version Bible
9527       3291 King James Version Bible
9528       3292 King James Version Bible
9529       3293 King James Version Bible
9530       3294 King James Version Bible
9531       3295 King James Version Bible
9532       3296 King James Version Bible
9533       3297 King James Version Bible
9534       3298 King James Version Bible
9535       3299 King James Version Bible
9536       3300 King James Version Bible
9537       3301 King James Version Bible
9538       3302 King James Version Bible
9539       3303 King James Version Bible
9540       3304 King James Version Bible
9541       3305 King James Version Bible
9542       3306 King James Version Bible
9543       3307 King James Version Bible
9544       3308 King James Version Bible
9545       3309 King James Version Bible
9546       3310 King James Version Bible
9547       3311 King James Version Bible
9548       3312 King James Version Bible
9549       3313 King James Version Bible
9550       3314 King James Version Bible
9551       3315 King James Version Bible
9552       3316 King James Version Bible
9553       3317 King James Version Bible
9554       3318 King James Version Bible
9555       3319 King James Version Bible
9556       3320 King James Version Bible
9557       3321 King James Version Bible
9558       3322 King James Version Bible
9559       3323 King James Version Bible
9560       3324 King James Version Bible
9561       3325 King James Version Bible
9562       3326 King James Version Bible
9563       3327 King James Version Bible
9564       3328 King James Version Bible
9565       3329 King James Version Bible
9566       3330 King James Version Bible
9567       3331 King James Version Bible
9568       3332 King James Version Bible
9569       3333 King James Version Bible
9570       3334 King James Version Bible
9571       3335 King James Version Bible
9572       3336 King James Version Bible
9573       3337 King James Version Bible
9574       3338 King James Version Bible
9575       3339 King James Version Bible
9576       3340 King James Version Bible
9577       3341 King James Version Bible
9578       3342 King James Version Bible
9579       3343 King James Version Bible
9580       3344 King James Version Bible
9581       3345 King James Version Bible
9582       3346 King James Version Bible
9583       3347 King James Version Bible
9584       3348 King James Version Bible
9585       3349 King James Version Bible
9586       3350 King James Version Bible
9587       3351 King James Version Bible
9588       3352 King James Version Bible
9589       3353 King James Version Bible
9590       3354 King James Version Bible
9591       3355 King James Version Bible
9592       3356 King James Version Bible
9593       3357 King James Version Bible
9594       3358 King James Version Bible
9595       3359 King James Version Bible
9596       3360 King James Version Bible
9597       3361 King James Version Bible
9598       3362 King James Version Bible
9599       3363 King James Version Bible
9600       3364 King James Version Bible
9601       3365 King James Version Bible
9602       3366 King James Version Bible
9603       3367 King James Version Bible
9604       3368 King James Version Bible
9605       3369 King James Version Bible
9606       3370 King James Version Bible
9607       3371 King James Version Bible
9608       3372 King James Version Bible
9609       3373 King James Version Bible
9610       3374 King James Version Bible
9611       3375 King James Version Bible
9612       3376 King James Version Bible
9613       3377 King James Version Bible
9614       3378 King James Version Bible
9615       3379 King James Version Bible
9616       3380 King James Version Bible
9617       3381 King James Version Bible
9618       3382 King James Version Bible
9619       3383 King James Version Bible
9620       3384 King James Version Bible
9621       3385 King James Version Bible
9622       3386 King James Version Bible
9623       3387 King James Version Bible
9624       3388 King James Version Bible
9625       3389 King James Version Bible
9626       3390 King James Version Bible
9627       3391 King James Version Bible
9628       3392 King James Version Bible
9629       3393 King James Version Bible
9630       3394 King James Version Bible
9631       3395 King James Version Bible
9632       3396 King James Version Bible
9633       3397 King James Version Bible
9634       3398 King James Version Bible
9635       3399 King James Version Bible
9636       3400 King James Version Bible
9637       3401 King James Version Bible
9638       3402 King James Version Bible
9639       3403 King James Version Bible
9640       3404 King James Version Bible
9641       3405 King James Version Bible
9642       3406 King James Version Bible
9643       3407 King James Version Bible
9644       3408 King James Version Bible
9645       3409 King James Version Bible
9646       3410 King James Version Bible
9647       3411 King James Version Bible
9648       3412 King James Version Bible
9649       3413 King James Version Bible
9650       3414 King James Version Bible
9651       3415 King James Version Bible
9652       3416 King James Version Bible
9653       3417 King James Version Bible
9654       3418 King James Version Bible
9655       3419 King James Version Bible
9656       3420 King James Version Bible
9657       3421 King James Version Bible
9658       3422 King James Version Bible
9659       3423 King James Version Bible
9660       3424 King James Version Bible
9661       3425 King James Version Bible
9662       3426 King James Version Bible
9663       3427 King James Version Bible
9664       3428 King James Version Bible
9665       3429 King James Version Bible
9666       3430 King James Version Bible
9667       3431 King James Version Bible
9668       3432 King James Version Bible
9669       3433 King James Version Bible
9670       3434 King James Version Bible
9671       3435 King James Version Bible
9672       3436 King James Version Bible
9673       3437 King James Version Bible
9674       3438 King James Version Bible
9675       3439 King James Version Bible
9676       3440 King James Version Bible
9677       3441 King James Version Bible
9678       3442 King James Version Bible
9679       3443 King James Version Bible
9680       3444 King James Version Bible
9681       3445 King James Version Bible
9682       3446 King James Version Bible
9683       3447 King James Version Bible
9684       3448 King James Version Bible
9685       3449 King James Version Bible
9686       3450 King James Version Bible
9687       3451 King James Version Bible
9688       3452 King James Version Bible
9689       3453 King James Version Bible
9690       3454 King James Version Bible
9691       3455 King James Version Bible
9692       3456 King James Version Bible
9693       3457 King James Version Bible
9694       3458 King James Version Bible
9695       3459 King James Version Bible
9696       3460 King James Version Bible
9697       3461 King James Version Bible
9698       3462 King James Version Bible
9699       3463 King James Version Bible
9700       3464 King James Version Bible
9701       3465 King James Version Bible
9702       3466 King James Version Bible
9703       3467 King James Version Bible
9704       3468 King James Version Bible
9705       3469 King James Version Bible
9706       3470 King James Version Bible
9707       3471 King James Version Bible
9708       3472 King James Version Bible
9709       3473 King James Version Bible
9710       3474 King James Version Bible
9711       3475 King James Version Bible
9712       3476 King James Version Bible
9713       3477 King James Version Bible
9714       3478 King James Version Bible
9715       3479 King James Version Bible
9716       3480 King James Version Bible
9717       3481 King James Version Bible
9718       3482 King James Version Bible
9719       3483 King James Version Bible
9720       3484 King James Version Bible
9721       3485 King James Version Bible
9722       3486 King James Version Bible
9723       3487 King James Version Bible
9724       3488 King James Version Bible
9725       3489 King James Version Bible
9726       3490 King James Version Bible
9727       3491 King James Version Bible
9728       3492 King James Version Bible
9729       3493 King James Version Bible
9730       3494 King James Version Bible
9731       3495 King James Version Bible
9732       3496 King James Version Bible
9733       3497 King James Version Bible
9734       3498 King James Version Bible
9735       3499 King James Version Bible
9736       3500 King James Version Bible
9737       3501 King James Version Bible
9738       3502 King James Version Bible
9739       3503 King James Version Bible
9740       3504 King James Version Bible
9741       3505 King James Version Bible
9742       3506 King James Version Bible
9743       3507 King James Version Bible
9744       3508 King James Version Bible
9745       3509 King James Version Bible
9746       3510 King James Version Bible
9747       3511 King James Version Bible
9748       3512 King James Version Bible
9749       3513 King James Version Bible
9750       3514 King James Version Bible
9751       3515 King James Version Bible
9752       3516 King James Version Bible
9753       3517 King James Version Bible
9754       3518 King James Version Bible
9755       3519 King James Version Bible
9756       3520 King James Version Bible
9757       3521 King James Version Bible
9758       3522 King James Version Bible
9759       3523 King James Version Bible
9760       3524 King James Version Bible
9761       3525 King James Version Bible
9762       3526 King James Version Bible
9763       3527 King James Version Bible
9764       3528 King James Version Bible
9765       3529 King James Version Bible
9766       3530 King James Version Bible
9767       3531 King James Version Bible
9768       3532 King James Version Bible
9769       3533 King James Version Bible
9770       3534 King James Version Bible
9771       3535 King James Version Bible
9772       3536 King James Version Bible
9773       3537 King James Version Bible
9774       3538 King James Version Bible
9775       3539 King James Version Bible
9776       3540 King James Version Bible
9777       3541 King James Version Bible
9778       3542 King James Version Bible
9779       3543 King James Version Bible
9780       3544 King James Version Bible
9781       3545 King James Version Bible
9782       3546 King James Version Bible
9783       3547 King James Version Bible
9784       3548 King James Version Bible
9785       3549 King James Version Bible
9786       3550 King James Version Bible
9787       3551 King James Version Bible
9788       3552 King James Version Bible
9789       3553 King James Version Bible
9790       3554 King James Version Bible
9791       3555 King James Version Bible
9792       3556 King James Version Bible
9793       3557 King James Version Bible
9794       3558 King James Version Bible
9795       3559 King James Version Bible
9796       3560 King James Version Bible
9797       3561 King James Version Bible
9798       3562 King James Version Bible
9799       3563 King James Version Bible
9800       3564 King James Version Bible
9801       3565 King James Version Bible
9802       3566 King James Version Bible
9803       3567 King James Version Bible
9804       3568 King James Version Bible
9805       3569 King James Version Bible
9806       3570 King James Version Bible
9807       3571 King James Version Bible
9808       3572 King James Version Bible
9809       3573 King James Version Bible
9810       3574 King James Version Bible
9811       3575 King James Version Bible
9812       3576 King James Version Bible
9813       3577 King James Version Bible
9814       3578 King James Version Bible
9815       3579 King James Version Bible
9816       3580 King James Version Bible
9817       3581 King James Version Bible
9818       3582 King James Version Bible
9819       3583 King James Version Bible
9820       3584 King James Version Bible
9821       3585 King James Version Bible
9822       3586 King James Version Bible
9823       3587 King James Version Bible
9824       3588 King James Version Bible
9825       3589 King James Version Bible
9826       3590 King James Version Bible
9827       3591 King James Version Bible
9828       3592 King James Version Bible
9829       3593 King James Version Bible
9830       3594 King James Version Bible
9831       3595 King James Version Bible
9832       3596 King James Version Bible
9833       3597 King James Version Bible
9834       3598 King James Version Bible
9835       3599 King James Version Bible
9836       3600 King James Version Bible
9837       3601 King James Version Bible
9838       3602 King James Version Bible
9839       3603 King James Version Bible
9840       3604 King James Version Bible
9841       3605 King James Version Bible
9842       3606 King James Version Bible
9843       3607 King James Version Bible
9844       3608 King James Version Bible
9845       3609 King James Version Bible
9846       3610 King James Version Bible
9847       3611 King James Version Bible
9848       3612 King James Version Bible
9849       3613 King James Version Bible
9850       3614 King James Version Bible
9851       3615 King James Version Bible
9852       3616 King James Version Bible
9853       3617 King James Version Bible
9854       3618 King James Version Bible
9855       3619 King James Version Bible
9856       3620 King James Version Bible
9857       3621 King James Version Bible
9858       3622 King James Version Bible
9859       3623 King James Version Bible
9860       3624 King James Version Bible
9861       3625 King James Version Bible
9862       3626 King James Version Bible
9863       3627 King James Version Bible
9864       3628 King James Version Bible
9865       3629 King James Version Bible
9866       3630 King James Version Bible
9867       3631 King James Version Bible
9868       3632 King James Version Bible
9869       3633 King James Version Bible
9870       3634 King James Version Bible
9871       3635 King James Version Bible
9872       3636 King James Version Bible
9873       3637 King James Version Bible
9874       3638 King James Version Bible
9875       3639 King James Version Bible
9876       3640 King James Version Bible
9877       3641 King James Version Bible
9878       3642 King James Version Bible
9879       3643 King James Version Bible
9880       3644 King James Version Bible
9881       3645 King James Version Bible
9882       3646 King James Version Bible
9883       3647 King James Version Bible
9884       3648 King James Version Bible
9885       3649 King James Version Bible
9886       3650 King James Version Bible
9887       3651 King James Version Bible
9888       3652 King James Version Bible
9889       3653 King James Version Bible
9890       3654 King James Version Bible
9891       3655 King James Version Bible
9892       3656 King James Version Bible
9893       3657 King James Version Bible
9894       3658 King James Version Bible
9895       3659 King James Version Bible
9896       3660 King James Version Bible
9897       3661 King James Version Bible
9898       3662 King James Version Bible
9899       3663 King James Version Bible
9900       3664 King James Version Bible
9901       3665 King James Version Bible
9902       3666 King James Version Bible
9903       3667 King James Version Bible
9904       3668 King James Version Bible
9905       3669 King James Version Bible
9906       3670 King James Version Bible
9907       3671 King James Version Bible
9908       3672 King James Version Bible
9909       3673 King James Version Bible
9910       3674 King James Version Bible
9911       3675 King James Version Bible
9912       3676 King James Version Bible
9913       3677 King James Version Bible
9914       3678 King James Version Bible
9915       3679 King James Version Bible
9916       3680 King James Version Bible
9917       3681 King James Version Bible
9918       3682 King James Version Bible
9919       3683 King James Version Bible
9920       3684 King James Version Bible
9921       3685 King James Version Bible
9922       3686 King James Version Bible
9923       3687 King James Version Bible
9924       3688 King James Version Bible
9925       3689 King James Version Bible
9926       3690 King James Version Bible
9927       3691 King James Version Bible
9928       3692 King James Version Bible
9929       3693 King James Version Bible
9930       3694 King James Version Bible
9931       3695 King James Version Bible
9932       3696 King James Version Bible
9933       3697 King James Version Bible
9934       3698 King James Version Bible
9935       3699 King James Version Bible
9936       3700 King James Version Bible
9937       3701 King James Version Bible
9938       3702 King James Version Bible
9939       3703 King James Version Bible
9940       3704 King James Version Bible
9941       3705 King James Version Bible
9942       3706 King James Version Bible
9943       3707 King James Version Bible
9944       3708 King James Version Bible
9945       3709 King James Version Bible
9946       3710 King James Version Bible
9947       3711 King James Version Bible
9948       3712 King James Version Bible
9949       3713 King James Version Bible
9950       3714 King James Version Bible
9951       3715 King James Version Bible
9952       3716 King James Version Bible
9953       3717 King James Version Bible
9954       3718 King James Version Bible
9955       3719 King James Version Bible
9956       3720 King James Version Bible
9957       3721 King James Version Bible
9958       3722 King James Version Bible
9959       3723 King James Version Bible
9960       3724 King James Version Bible
9961       3725 King James Version Bible
9962       3726 King James Version Bible
9963       3727 King James Version Bible
9964       3728 King James Version Bible
9965       3729 King James Version Bible
9966       3730 King James Version Bible
9967       3731 King James Version Bible
9968       3732 King James Version Bible
9969       3733 King James Version Bible
9970       3734 King James Version Bible
9971       3735 King James Version Bible
9972       3736 King James Version Bible
9973       3737 King James Version Bible
9974       3738 King James Version Bible
9975       3739 King James Version Bible
9976       3740 King James Version Bible
9977       3741 King James Version Bible
9978       3742 King James Version Bible
9979       3743 King James Version Bible
9980       3744 King James Version Bible
9981       3745 King James Version Bible
9982       3746 King James Version Bible
9983       3747 King James Version Bible
9984       3748 King James Version Bible
9985       3749 King James Version Bible
9986       3750 King James Version Bible
9987       3751 King James Version Bible
9988       3752 King James Version Bible
9989       3753 King James Version Bible
9990       3754 King James Version Bible
9991       3755 King James Version Bible
9992       3756 King James Version Bible
9993       3757 King James Version Bible
9994       3758 King James Version Bible
9995       3759 King James Version Bible
9996       3760 King James Version Bible
9997       3761 King James Version Bible
9998       3762 King James Version Bible
9999       3763 King James Version Bible
10000      3764 King James Version Bible
10001      3765 King James Version Bible
10002      3766 King James Version Bible
10003      3767 King James Version Bible
10004      3768 King James Version Bible
10005      3769 King James Version Bible
10006      3770 King James Version Bible
10007      3771 King James Version Bible
10008      3772 King James Version Bible
10009      3773 King James Version Bible
10010      3774 King James Version Bible
10011      3775 King James Version Bible
10012      3776 King James Version Bible
10013      3777 King James Version Bible
10014      3778 King James Version Bible
10015      3779 King James Version Bible
10016      3780 King James Version Bible
10017      3781 King James Version Bible
10018      3782 King James Version Bible
10019      3783 King James Version Bible
10020      3784 King James Version Bible
10021      3785 King James Version Bible
10022      3786 King James Version Bible
10023      3787 King James Version Bible
10024      3788 King James Version Bible
10025      3789 King James Version Bible
10026      3790 King James Version Bible
10027      3791 King James Version Bible
10028      3792 King James Version Bible
10029      3793 King James Version Bible
10030      3794 King James Version Bible
10031      3795 King James Version Bible
10032      3796 King James Version Bible
10033      3797 King James Version Bible
10034      3798 King James Version Bible
10035      3799 King James Version Bible
10036      3800 King James Version Bible
10037      3801 King James Version Bible
10038      3802 King James Version Bible
10039      3803 King James Version Bible
10040      3804 King James Version Bible
10041      3805 King James Version Bible
10042      3806 King James Version Bible
10043      3807 King James Version Bible
10044      3808 King James Version Bible
10045      3809 King James Version Bible
10046      3810 King James Version Bible
10047      3811 King James Version Bible
10048      3812 King James Version Bible
10049      3813 King James Version Bible
10050      3814 King James Version Bible
10051      3815 King James Version Bible
10052      3816 King James Version Bible
10053      3817 King James Version Bible
10054      3818 King James Version Bible
10055      3819 King James Version Bible
10056      3820 King James Version Bible
10057      3821 King James Version Bible
10058      3822 King James Version Bible
10059      3823 King James Version Bible
10060      3824 King James Version Bible
10061      3825 King James Version Bible
10062      3826 King James Version Bible
10063      3827 King James Version Bible
10064      3828 King James Version Bible
10065      3829 King James Version Bible
10066      3830 King James Version Bible
10067      3831 King James Version Bible
10068      3832 King James Version Bible
10069      3833 King James Version Bible
10070      3834 King James Version Bible
10071      3835 King James Version Bible
10072      3836 King James Version Bible
10073      3837 King James Version Bible
10074      3838 King James Version Bible
10075      3839 King James Version Bible
10076      3840 King James Version Bible
10077      3841 King James Version Bible
10078      3842 King James Version Bible
10079      3843 King James Version Bible
10080      3844 King James Version Bible
10081      3845 King James Version Bible
10082      3846 King James Version Bible
10083      3847 King James Version Bible
10084      3848 King James Version Bible
10085      3849 King James Version Bible
10086      3850 King James Version Bible
10087      3851 King James Version Bible
10088      3852 King James Version Bible
10089      3853 King James Version Bible
10090      3854 King James Version Bible
10091      3855 King James Version Bible
10092      3856 King James Version Bible
10093      3857 King James Version Bible
10094      3858 King James Version Bible
10095      3859 King James Version Bible
10096      3860 King James Version Bible
10097      3861 King James Version Bible
10098      3862 King James Version Bible
10099      3863 King James Version Bible
10100      3864 King James Version Bible
10101      3865 King James Version Bible
10102      3866 King James Version Bible
10103      3867 King James Version Bible
10104      3868 King James Version Bible
10105      3869 King James Version Bible
10106      3870 King James Version Bible
10107      3871 King James Version Bible
10108      3872 King James Version Bible
10109      3873 King James Version Bible
10110      3874 King James Version Bible
10111      3875 King James Version Bible
10112      3876 King James Version Bible
10113      3877 King James Version Bible
10114      3878 King James Version Bible
10115      3879 King James Version Bible
10116      3880 King James Version Bible
10117      3881 King James Version Bible
10118      3882 King James Version Bible
10119      3883 King James Version Bible
10120      3884 King James Version Bible
10121      3885 King James Version Bible
10122      3886 King James Version Bible
10123      3887 King James Version Bible
10124      3888 King James Version Bible
10125      3889 King James Version Bible
10126      3890 King James Version Bible
10127      3891 King James Version Bible
10128      3892 King James Version Bible
10129      3893 King James Version Bible
10130      3894 King James Version Bible
10131      3895 King James Version Bible
10132      3896 King James Version Bible
10133      3897 King James Version Bible
10134      3898 King James Version Bible
10135      3899 King James Version Bible
10136      3900 King James Version Bible
10137      3901 King James Version Bible
10138      3902 King James Version Bible
10139      3903 King James Version Bible
10140      3904 King James Version Bible
10141      3905 King James Version Bible
10142      3906 King James Version Bible
10143      3907 King James Version Bible
10144      3908 King James Version Bible
10145      3909 King James Version Bible
10146      3910 King James Version Bible
10147      3911 King James Version Bible
10148      3912 King James Version Bible
10149      3913 King James Version Bible
10150      3914 King James Version Bible
10151      3915 King James Version Bible
10152      3916 King James Version Bible
10153      3917 King James Version Bible
10154      3918 King James Version Bible
10155      3919 King James Version Bible
10156      3920 King James Version Bible
10157      3921 King James Version Bible
10158      3922 King James Version Bible
10159      3923 King James Version Bible
10160      3924 King James Version Bible
10161      3925 King James Version Bible
10162      3926 King James Version Bible
10163      3927 King James Version Bible
10164      3928 King James Version Bible
10165      3929 King James Version Bible
10166      3930 King James Version Bible
10167      3931 King James Version Bible
10168      3932 King James Version Bible
10169      3933 King James Version Bible
10170      3934 King James Version Bible
10171      3935 King James Version Bible
10172      3936 King James Version Bible
10173      3937 King James Version Bible
10174      3938 King James Version Bible
10175      3939 King James Version Bible
10176      3940 King James Version Bible
10177      3941 King James Version Bible
10178      3942 King James Version Bible
10179      3943 King James Version Bible
10180      3944 King James Version Bible
10181      3945 King James Version Bible
10182      3946 King James Version Bible
10183      3947 King James Version Bible
10184      3948 King James Version Bible
10185      3949 King James Version Bible
10186      3950 King James Version Bible
10187      3951 King James Version Bible
10188      3952 King James Version Bible
10189      3953 King James Version Bible
10190      3954 King James Version Bible
10191      3955 King James Version Bible
10192      3956 King James Version Bible
10193      3957 King James Version Bible
10194      3958 King James Version Bible
10195      3959 King James Version Bible
10196      3960 King James Version Bible
10197      3961 King James Version Bible
10198      3962 King James Version Bible
10199      3963 King James Version Bible
10200      3964 King James Version Bible
10201      3965 King James Version Bible
10202      3966 King James Version Bible
10203      3967 King James Version Bible
10204      3968 King James Version Bible
10205      3969 King James Version Bible
10206      3970 King James Version Bible
10207      3971 King James Version Bible
10208      3972 King James Version Bible
10209      3973 King James Version Bible
10210      3974 King James Version Bible
10211      3975 King James Version Bible
10212      3976 King James Version Bible
10213      3977 King James Version Bible
10214      3978 King James Version Bible
10215      3979 King James Version Bible
10216      3980 King James Version Bible
10217      3981 King James Version Bible
10218      3982 King James Version Bible
10219      3983 King James Version Bible
10220      3984 King James Version Bible
10221      3985 King James Version Bible
10222      3986 King James Version Bible
10223      3987 King James Version Bible
10224      3988 King James Version Bible
10225      3989 King James Version Bible
10226      3990 King James Version Bible
10227      3991 King James Version Bible
10228      3992 King James Version Bible
10229      3993 King James Version Bible
10230      3994 King James Version Bible
10231      3995 King James Version Bible
10232      3996 King James Version Bible
10233      3997 King James Version Bible
10234      3998 King James Version Bible
10235      3999 King James Version Bible
10236      4000 King James Version Bible
10237      4001 King James Version Bible
10238      4002 King James Version Bible
10239      4003 King James Version Bible
10240      4004 King James Version Bible
10241      4005 King James Version Bible
10242      4006 King James Version Bible
10243      4007 King James Version Bible
10244      4008 King James Version Bible
10245      4009 King James Version Bible
10246      4010 King James Version Bible
10247      4011 King James Version Bible
10248      4012 King James Version Bible
10249      4013 King James Version Bible
10250      4014 King James Version Bible
10251      4015 King James Version Bible
10252      4016 King James Version Bible
10253      4017 King James Version Bible
10254      4018 King James Version Bible
10255      4019 King James Version Bible
10256      4020 King James Version Bible
10257      4021 King James Version Bible
10258      4022 King James Version Bible
10259      4023 King James Version Bible
10260      4024 King James Version Bible
10261      4025 King James Version Bible
10262      4026 King James Version Bible
10263      4027 King James Version Bible
10264      4028 King James Version Bible
10265      4029 King James Version Bible
10266      4030 King James Version Bible
10267      4031 King James Version Bible
10268      4032 King James Version Bible
10269      4033 King James Version Bible
10270      4034 King James Version Bible
10271      4035 King James Version Bible
10272      4036 King James Version Bible
10273      4037 King James Version Bible
10274      4038 King James Version Bible
10275      4039 King James Version Bible
10276      4040 King James Version Bible
10277      4041 King James Version Bible
10278      4042 King James Version Bible
10279      4043 King James Version Bible
10280      4044 King James Version Bible
10281      4045 King James Version Bible
10282      4046 King James Version Bible
10283      4047 King James Version Bible
10284      4048 King James Version Bible
10285      4049 King James Version Bible
10286      4050 King James Version Bible
10287      4051 King James Version Bible
10288      4052 King James Version Bible
10289      4053 King James Version Bible
10290      4054 King James Version Bible
10291      4055 King James Version Bible
10292      4056 King James Version Bible
10293      4057 King James Version Bible
10294      4058 King James Version Bible
10295      4059 King James Version Bible
10296      4060 King James Version Bible
10297      4061 King James Version Bible
10298      4062 King James Version Bible
10299      4063 King James Version Bible
10300      4064 King James Version Bible
10301      4065 King James Version Bible
10302      4066 King James Version Bible
10303      4067 King James Version Bible
10304      4068 King James Version Bible
10305      4069 King James Version Bible
10306      4070 King James Version Bible
10307      4071 King James Version Bible
10308      4072 King James Version Bible
10309      4073 King James Version Bible
10310      4074 King James Version Bible
10311      4075 King James Version Bible
10312      4076 King James Version Bible
10313      4077 King James Version Bible
10314      4078 King James Version Bible
10315      4079 King James Version Bible
10316      4080 King James Version Bible
10317      4081 King James Version Bible
10318      4082 King James Version Bible
10319      4083 King James Version Bible
10320      4084 King James Version Bible
10321      4085 King James Version Bible
10322      4086 King James Version Bible
10323      4087 King James Version Bible
10324      4088 King James Version Bible
10325      4089 King James Version Bible
10326      4090 King James Version Bible
10327      4091 King James Version Bible
10328      4092 King James Version Bible
10329      4093 King James Version Bible
10330      4094 King James Version Bible
10331      4095 King James Version Bible
10332      4096 King James Version Bible
10333      4097 King James Version Bible
10334      4098 King James Version Bible
10335      4099 King James Version Bible
10336      4100 King James Version Bible
10337      4101 King James Version Bible
10338      4102 King James Version Bible
10339      4103 King James Version Bible
10340      4104 King James Version Bible
10341      4105 King James Version Bible
10342      4106 King James Version Bible
10343      4107 King James Version Bible
10344      4108 King James Version Bible
10345      4109 King James Version Bible
10346      4110 King James Version Bible
10347      4111 King James Version Bible
10348      4112 King James Version Bible
10349      4113 King James Version Bible
10350      4114 King James Version Bible
10351      4115 King James Version Bible
10352      4116 King James Version Bible
10353      4117 King James Version Bible
10354      4118 King James Version Bible
10355      4119 King James Version Bible
10356      4120 King James Version Bible
10357      4121 King James Version Bible
10358      4122 King James Version Bible
10359      4123 King James Version Bible
10360      4124 King James Version Bible
10361      4125 King James Version Bible
10362      4126 King James Version Bible
10363      4127 King James Version Bible
10364      4128 King James Version Bible
10365      4129 King James Version Bible
10366      4130 King James Version Bible
10367      4131 King James Version Bible
10368      4132 King James Version Bible
10369      4133 King James Version Bible
10370      4134 King James Version Bible
10371      4135 King James Version Bible
10372      4136 King James Version Bible
10373      4137 King James Version Bible
10374      4138 King James Version Bible
10375      4139 King James Version Bible
10376      4140 King James Version Bible
10377      4141 King James Version Bible
10378      4142 King James Version Bible
10379      4143 King James Version Bible
10380      4144 King James Version Bible
10381      4145 King James Version Bible
10382      4146 King James Version Bible
10383      4147 King James Version Bible
10384      4148 King James Version Bible
10385      4149 King James Version Bible
10386      4150 King James Version Bible
10387      4151 King James Version Bible
10388      4152 King James Version Bible
10389      4153 King James Version Bible
10390      4154 King James Version Bible
10391      4155 King James Version Bible
10392      4156 King James Version Bible
10393      4157 King James Version Bible
10394      4158 King James Version Bible
10395      4159 King James Version Bible
10396      4160 King James Version Bible
10397      4161 King James Version Bible
10398      4162 King James Version Bible
10399      4163 King James Version Bible
10400      4164 King James Version Bible
10401      4165 King James Version Bible
10402      4166 King James Version Bible
10403      4167 King James Version Bible
10404      4168 King James Version Bible
10405      4169 King James Version Bible
10406      4170 King James Version Bible
10407      4171 King James Version Bible
10408      4172 King James Version Bible
10409      4173 King James Version Bible
10410      4174 King James Version Bible
10411      4175 King James Version Bible
10412      4176 King James Version Bible
10413      4177 King James Version Bible
10414      4178 King James Version Bible
10415      4179 King James Version Bible
10416      4180 King James Version Bible
10417      4181 King James Version Bible
10418      4182 King James Version Bible
10419      4183 King James Version Bible
10420      4184 King James Version Bible
10421      4185 King James Version Bible
10422      4186 King James Version Bible
10423      4187 King James Version Bible
10424      4188 King James Version Bible
10425      4189 King James Version Bible
10426      4190 King James Version Bible
10427      4191 King James Version Bible
10428      4192 King James Version Bible
10429      4193 King James Version Bible
10430      4194 King James Version Bible
10431      4195 King James Version Bible
10432      4196 King James Version Bible
10433      4197 King James Version Bible
10434      4198 King James Version Bible
10435      4199 King James Version Bible
10436      4200 King James Version Bible
10437      4201 King James Version Bible
10438      4202 King James Version Bible
10439      4203 King James Version Bible
10440      4204 King James Version Bible
10441      4205 King James Version Bible
10442      4206 King James Version Bible
10443      4207 King James Version Bible
10444      4208 King James Version Bible
10445      4209 King James Version Bible
10446      4210 King James Version Bible
10447      4211 King James Version Bible
10448      4212 King James Version Bible
10449      4213 King James Version Bible
10450      4214 King James Version Bible
10451      4215 King James Version Bible
10452      4216 King James Version Bible
10453      4217 King James Version Bible
10454      4218 King James Version Bible
10455      4219 King James Version Bible
10456      4220 King James Version Bible
10457      4221 King James Version Bible
10458      4222 King James Version Bible
10459      4223 King James Version Bible
10460      4224 King James Version Bible
10461      4225 King James Version Bible
10462      4226 King James Version Bible
10463      4227 King James Version Bible
10464      4228 King James Version Bible
10465      4229 King James Version Bible
10466      4230 King James Version Bible
10467      4231 King James Version Bible
10468      4232 King James Version Bible
10469      4233 King James Version Bible
10470      4234 King James Version Bible
10471      4235 King James Version Bible
10472      4236 King James Version Bible
10473      4237 King James Version Bible
10474      4238 King James Version Bible
10475      4239 King James Version Bible
10476      4240 King James Version Bible
10477      4241 King James Version Bible
10478      4242 King James Version Bible
10479      4243 King James Version Bible
10480      4244 King James Version Bible
10481      4245 King James Version Bible
10482      4246 King James Version Bible
10483      4247 King James Version Bible
10484      4248 King James Version Bible
10485      4249 King James Version Bible
10486      4250 King James Version Bible
10487      4251 King James Version Bible
10488      4252 King James Version Bible
10489      4253 King James Version Bible
10490      4254 King James Version Bible
10491      4255 King James Version Bible
10492      4256 King James Version Bible
10493      4257 King James Version Bible
10494      4258 King James Version Bible
10495      4259 King James Version Bible
10496      4260 King James Version Bible
10497      4261 King James Version Bible
10498      4262 King James Version Bible
10499      4263 King James Version Bible
10500      4264 King James Version Bible
10501      4265 King James Version Bible
10502      4266 King James Version Bible
10503      4267 King James Version Bible
10504      4268 King James Version Bible
10505      4269 King James Version Bible
10506      4270 King James Version Bible
10507      4271 King James Version Bible
10508      4272 King James Version Bible
10509      4273 King James Version Bible
10510      4274 King James Version Bible
10511      4275 King James Version Bible
10512      4276 King James Version Bible
10513      4277 King James Version Bible
10514      4278 King James Version Bible
10515      4279 King James Version Bible
10516      4280 King James Version Bible
10517      4281 King James Version Bible
10518      4282 King James Version Bible
10519      4283 King James Version Bible
10520      4284 King James Version Bible
10521      4285 King James Version Bible
10522      4286 King James Version Bible
10523      4287 King James Version Bible
10524      4288 King James Version Bible
10525      4289 King James Version Bible
10526      4290 King James Version Bible
10527      4291 King James Version Bible
10528      4292 King James Version Bible
10529      4293 King James Version Bible
10530      4294 King James Version Bible
10531      4295 King James Version Bible
10532      4296 King James Version Bible
10533      4297 King James Version Bible
10534      4298 King James Version Bible
10535      4299 King James Version Bible
10536      4300 King James Version Bible
10537      4301 King James Version Bible
10538      4302 King James Version Bible
10539      4303 King James Version Bible
10540      4304 King James Version Bible
10541      4305 King James Version Bible
10542      4306 King James Version Bible
10543      4307 King James Version Bible
10544      4308 King James Version Bible
10545      4309 King James Version Bible
10546      4310 King James Version Bible
10547      4311 King James Version Bible
10548      4312 King James Version Bible
10549      4313 King James Version Bible
10550      4314 King James Version Bible
10551      4315 King James Version Bible
10552      4316 King James Version Bible
10553      4317 King James Version Bible
10554      4318 King James Version Bible
10555      4319 King James Version Bible
10556      4320 King James Version Bible
10557      4321 King James Version Bible
10558      4322 King James Version Bible
10559      4323 King James Version Bible
10560      4324 King James Version Bible
10561      4325 King James Version Bible
10562      4326 King James Version Bible
10563      4327 King James Version Bible
10564      4328 King James Version Bible
10565      4329 King James Version Bible
10566      4330 King James Version Bible
10567      4331 King James Version Bible
10568      4332 King James Version Bible
10569      4333 King James Version Bible
10570      4334 King James Version Bible
10571      4335 King James Version Bible
10572      4336 King James Version Bible
10573      4337 King James Version Bible
10574      4338 King James Version Bible
10575      4339 King James Version Bible
10576      4340 King James Version Bible
10577      4341 King James Version Bible
10578      4342 King James Version Bible
10579      4343 King James Version Bible
10580      4344 King James Version Bible
10581      4345 King James Version Bible
10582      4346 King James Version Bible
10583      4347 King James Version Bible
10584      4348 King James Version Bible
10585      4349 King James Version Bible
10586      4350 King James Version Bible
10587      4351 King James Version Bible
10588      4352 King James Version Bible
10589      4353 King James Version Bible
10590      4354 King James Version Bible
10591      4355 King James Version Bible
10592      4356 King James Version Bible
10593      4357 King James Version Bible
10594      4358 King James Version Bible
10595      4359 King James Version Bible
10596      4360 King James Version Bible
10597      4361 King James Version Bible
10598      4362 King James Version Bible
10599      4363 King James Version Bible
10600      4364 King James Version Bible
10601      4365 King James Version Bible
10602      4366 King James Version Bible
10603      4367 King James Version Bible
10604      4368 King James Version Bible
10605      4369 King James Version Bible
10606      4370 King James Version Bible
10607      4371 King James Version Bible
10608      4372 King James Version Bible
10609      4373 King James Version Bible
10610      4374 King James Version Bible
10611      4375 King James Version Bible
10612      4376 King James Version Bible
10613      4377 King James Version Bible
10614      4378 King James Version Bible
10615      4379 King James Version Bible
10616      4380 King James Version Bible
10617      4381 King James Version Bible
10618      4382 King James Version Bible
10619      4383 King James Version Bible
10620      4384 King James Version Bible
10621      4385 King James Version Bible
10622      4386 King James Version Bible
10623      4387 King James Version Bible
10624      4388 King James Version Bible
10625      4389 King James Version Bible
10626      4390 King James Version Bible
10627      4391 King James Version Bible
10628      4392 King James Version Bible
10629      4393 King James Version Bible
10630      4394 King James Version Bible
10631      4395 King James Version Bible
10632      4396 King James Version Bible
10633      4397 King James Version Bible
10634      4398 King James Version Bible
10635      4399 King James Version Bible
10636      4400 King James Version Bible
10637      4401 King James Version Bible
10638      4402 King James Version Bible
10639      4403 King James Version Bible
10640      4404 King James Version Bible
10641      4405 King James Version Bible
10642      4406 King James Version Bible
10643      4407 King James Version Bible
10644      4408 King James Version Bible
10645      4409 King James Version Bible
10646      4410 King James Version Bible
10647      4411 King James Version Bible
10648      4412 King James Version Bible
10649      4413 King James Version Bible
10650      4414 King James Version Bible
10651      4415 King James Version Bible
10652      4416 King James Version Bible
10653      4417 King James Version Bible
10654      4418 King James Version Bible
10655      4419 King James Version Bible
10656      4420 King James Version Bible
10657      4421 King James Version Bible
10658      4422 King James Version Bible
10659      4423 King James Version Bible
10660      4424 King James Version Bible
10661      4425 King James Version Bible
10662      4426 King James Version Bible
10663      4427 King James Version Bible
10664      4428 King James Version Bible
10665      4429 King James Version Bible
10666      4430 King James Version Bible
10667      4431 King James Version Bible
10668      4432 King James Version Bible
10669      4433 King James Version Bible
10670      4434 King James Version Bible
10671      4435 King James Version Bible
10672      4436 King James Version Bible
10673      4437 King James Version Bible
10674      4438 King James Version Bible
10675      4439 King James Version Bible
10676      4440 King James Version Bible
10677      4441 King James Version Bible
10678      4442 King James Version Bible
10679      4443 King James Version Bible
10680      4444 King James Version Bible
10681      4445 King James Version Bible
10682      4446 King James Version Bible
10683      4447 King James Version Bible
10684      4448 King James Version Bible
10685      4449 King James Version Bible
10686      4450 King James Version Bible
10687      4451 King James Version Bible
10688      4452 King James Version Bible
10689      4453 King James Version Bible
10690      4454 King James Version Bible
10691      4455 King James Version Bible
10692      4456 King James Version Bible
10693      4457 King James Version Bible
10694      4458 King James Version Bible
10695      4459 King James Version Bible
10696      4460 King James Version Bible
10697      4461 King James Version Bible
10698      4462 King James Version Bible
10699      4463 King James Version Bible
10700      4464 King James Version Bible
10701      4465 King James Version Bible
10702      4466 King James Version Bible
10703      4467 King James Version Bible
10704      4468 King James Version Bible
10705      4469 King James Version Bible
10706      4470 King James Version Bible
10707      4471 King James Version Bible
10708      4472 King James Version Bible
10709      4473 King James Version Bible
10710      4474 King James Version Bible
10711      4475 King James Version Bible
10712      4476 King James Version Bible
10713      4477 King James Version Bible
10714      4478 King James Version Bible
10715      4479 King James Version Bible
10716      4480 King James Version Bible
10717      4481 King James Version Bible
10718      4482 King James Version Bible
10719      4483 King James Version Bible
10720      4484 King James Version Bible
10721      4485 King James Version Bible
10722      4486 King James Version Bible
10723      4487 King James Version Bible
10724      4488 King James Version Bible
10725      4489 King James Version Bible
10726      4490 King James Version Bible
10727      4491 King James Version Bible
10728      4492 King James Version Bible
10729      4493 King James Version Bible
10730      4494 King James Version Bible
10731      4495 King James Version Bible
10732      4496 King James Version Bible
10733      4497 King James Version Bible
10734      4498 King James Version Bible
10735      4499 King James Version Bible
10736      4500 King James Version Bible
10737      4501 King James Version Bible
10738      4502 King James Version Bible
10739      4503 King James Version Bible
10740      4504 King James Version Bible
10741      4505 King James Version Bible
10742      4506 King James Version Bible
10743      4507 King James Version Bible
10744      4508 King James Version Bible
10745      4509 King James Version Bible
10746      4510 King James Version Bible
10747      4511 King James Version Bible
10748      4512 King James Version Bible
10749      4513 King James Version Bible
10750      4514 King James Version Bible
10751      4515 King James Version Bible
10752      4516 King James Version Bible
10753      4517 King James Version Bible
10754      4518 King James Version Bible
10755      4519 King James Version Bible
10756      4520 King James Version Bible
10757      4521 King James Version Bible
10758      4522 King James Version Bible
10759      4523 King James Version Bible
10760      4524 King James Version Bible
10761      4525 King James Version Bible
10762      4526 King James Version Bible
10763      4527 King James Version Bible
10764      4528 King James Version Bible
10765      4529 King James Version Bible
10766      4530 King James Version Bible
10767      4531 King James Version Bible
10768      4532 King James Version Bible
10769      4533 King James Version Bible
10770      4534 King James Version Bible
10771      4535 King James Version Bible
10772      4536 King James Version Bible
10773      4537 King James Version Bible
10774      4538 King James Version Bible
10775      4539 King James Version Bible
10776      4540 King James Version Bible
10777      4541 King James Version Bible
10778      4542 King James Version Bible
10779      4543 King James Version Bible
10780      4544 King James Version Bible
10781      4545 King James Version Bible
10782      4546 King James Version Bible
10783      4547 King James Version Bible
10784      4548 King James Version Bible
10785      4549 King James Version Bible
10786      4550 King James Version Bible
10787      4551 King James Version Bible
10788      4552 King James Version Bible
10789      4553 King James Version Bible
10790      4554 King James Version Bible
10791      4555 King James Version Bible
10792      4556 King James Version Bible
10793      4557 King James Version Bible
10794      4558 King James Version Bible
10795      4559 King James Version Bible
10796      4560 King James Version Bible
10797      4561 King James Version Bible
10798      4562 King James Version Bible
10799      4563 King James Version Bible
10800      4564 King James Version Bible
10801      4565 King James Version Bible
10802      4566 King James Version Bible
10803      4567 King James Version Bible
10804      4568 King James Version Bible
10805      4569 King James Version Bible
10806      4570 King James Version Bible
10807      4571 King James Version Bible
10808      4572 King James Version Bible
10809      4573 King James Version Bible
10810      4574 King James Version Bible
10811      4575 King James Version Bible
10812      4576 King James Version Bible
10813      4577 King James Version Bible
10814      4578 King James Version Bible
10815      4579 King James Version Bible
10816      4580 King James Version Bible
10817      4581 King James Version Bible
10818      4582 King James Version Bible
10819      4583 King James Version Bible
10820      4584 King James Version Bible
10821      4585 King James Version Bible
10822      4586 King James Version Bible
10823      4587 King James Version Bible
10824      4588 King James Version Bible
10825      4589 King James Version Bible
10826      4590 King James Version Bible
10827      4591 King James Version Bible
10828      4592 King James Version Bible
10829      4593 King James Version Bible
10830      4594 King James Version Bible
10831      4595 King James Version Bible
10832      4596 King James Version Bible
10833      4597 King James Version Bible
10834      4598 King James Version Bible
10835      4599 King James Version Bible
10836      4600 King James Version Bible
10837      4601 King James Version Bible
10838      4602 King James Version Bible
10839      4603 King James Version Bible
10840      4604 King James Version Bible
10841      4605 King James Version Bible
10842      4606 King James Version Bible
10843      4607 King James Version Bible
10844      4608 King James Version Bible
10845      4609 King James Version Bible
10846      4610 King James Version Bible
10847      4611 King James Version Bible
10848      4612 King James Version Bible
10849      4613 King James Version Bible
10850      4614 King James Version Bible
10851      4615 King James Version Bible
10852      4616 King James Version Bible
10853      4617 King James Version Bible
10854      4618 King James Version Bible
10855      4619 King James Version Bible
10856      4620 King James Version Bible
10857      4621 King James Version Bible
10858      4622 King James Version Bible
10859      4623 King James Version Bible
10860      4624 King James Version Bible
10861      4625 King James Version Bible
10862      4626 King James Version Bible
10863      4627 King James Version Bible
10864      4628 King James Version Bible
10865      4629 King James Version Bible
10866      4630 King James Version Bible
10867      4631 King James Version Bible
10868      4632 King James Version Bible
10869      4633 King James Version Bible
10870      4634 King James Version Bible
10871      4635 King James Version Bible
10872      4636 King James Version Bible
10873      4637 King James Version Bible
10874      4638 King James Version Bible
10875      4639 King James Version Bible
10876      4640 King James Version Bible
10877      4641 King James Version Bible
10878      4642 King James Version Bible
10879      4643 King James Version Bible
10880      4644 King James Version Bible
10881      4645 King James Version Bible
10882      4646 King James Version Bible
10883      4647 King James Version Bible
10884      4648 King James Version Bible
10885      4649 King James Version Bible
10886      4650 King James Version Bible
10887      4651 King James Version Bible
10888      4652 King James Version Bible
10889      4653 King James Version Bible
10890      4654 King James Version Bible
10891      4655 King James Version Bible
10892      4656 King James Version Bible
10893      4657 King James Version Bible
10894      4658 King James Version Bible
10895      4659 King James Version Bible
10896      4660 King James Version Bible
10897      4661 King James Version Bible
10898      4662 King James Version Bible
10899      4663 King James Version Bible
10900      4664 King James Version Bible
10901      4665 King James Version Bible
10902      4666 King James Version Bible
10903      4667 King James Version Bible
10904      4668 King James Version Bible
10905      4669 King James Version Bible
10906      4670 King James Version Bible
10907      4671 King James Version Bible
10908      4672 King James Version Bible
10909      4673 King James Version Bible
10910      4674 King James Version Bible
10911      4675 King James Version Bible
10912      4676 King James Version Bible
10913      4677 King James Version Bible
10914      4678 King James Version Bible
10915      4679 King James Version Bible
10916      4680 King James Version Bible
10917      4681 King James Version Bible
10918      4682 King James Version Bible
10919      4683 King James Version Bible
10920      4684 King James Version Bible
10921      4685 King James Version Bible
10922      4686 King James Version Bible
10923      4687 King James Version Bible
10924      4688 King James Version Bible
10925      4689 King James Version Bible
10926      4690 King James Version Bible
10927      4691 King James Version Bible
10928      4692 King James Version Bible
10929      4693 King James Version Bible
10930      4694 King James Version Bible
10931      4695 King James Version Bible
10932      4696 King James Version Bible
10933      4697 King James Version Bible
10934      4698 King James Version Bible
10935      4699 King James Version Bible
10936      4700 King James Version Bible
10937      4701 King James Version Bible
10938      4702 King James Version Bible
10939      4703 King James Version Bible
10940      4704 King James Version Bible
10941      4705 King James Version Bible
10942      4706 King James Version Bible
10943      4707 King James Version Bible
10944      4708 King James Version Bible
10945      4709 King James Version Bible
10946      4710 King James Version Bible
10947      4711 King James Version Bible
10948      4712 King James Version Bible
10949      4713 King James Version Bible
10950      4714 King James Version Bible
10951      4715 King James Version Bible
10952      4716 King James Version Bible
10953      4717 King James Version Bible
10954      4718 King James Version Bible
10955      4719 King James Version Bible
10956      4720 King James Version Bible
10957      4721 King James Version Bible
10958      4722 King James Version Bible
10959      4723 King James Version Bible
10960      4724 King James Version Bible
10961      4725 King James Version Bible
10962      4726 King James Version Bible
10963      4727 King James Version Bible
10964      4728 King James Version Bible
10965      4729 King James Version Bible
10966      4730 King James Version Bible
10967      4731 King James Version Bible
10968      4732 King James Version Bible
10969      4733 King James Version Bible
10970      4734 King James Version Bible
10971      4735 King James Version Bible
10972      4736 King James Version Bible
10973      4737 King James Version Bible
10974      4738 King James Version Bible
10975      4739 King James Version Bible
10976      4740 King James Version Bible
10977      4741 King James Version Bible
10978      4742 King James Version Bible
10979      4743 King James Version Bible
10980      4744 King James Version Bible
10981      4745 King James Version Bible
10982      4746 King James Version Bible
10983      4747 King James Version Bible
10984      4748 King James Version Bible
10985      4749 King James Version Bible
10986      4750 King James Version Bible
10987      4751 King James Version Bible
10988      4752 King James Version Bible
10989      4753 King James Version Bible
10990      4754 King James Version Bible
10991      4755 King James Version Bible
10992      4756 King James Version Bible
10993      4757 King James Version Bible
10994      4758 King James Version Bible
10995      4759 King James Version Bible
10996      4760 King James Version Bible
10997      4761 King James Version Bible
10998      4762 King James Version Bible
10999      4763 King James Version Bible
11000      4764 King James Version Bible
11001      4765 King James Version Bible
11002      4766 King James Version Bible
11003      4767 King James Version Bible
11004      4768 King James Version Bible
11005      4769 King James Version Bible
11006      4770 King James Version Bible
11007      4771 King James Version Bible
11008      4772 King James Version Bible
11009      4773 King James Version Bible
11010      4774 King James Version Bible
11011      4775 King James Version Bible
11012      4776 King James Version Bible
11013      4777 King James Version Bible
11014      4778 King James Version Bible
11015      4779 King James Version Bible
11016      4780 King James Version Bible
11017      4781 King James Version Bible
11018      4782 King James Version Bible
11019      4783 King James Version Bible
11020      4784 King James Version Bible
11021      4785 King James Version Bible
11022      4786 King James Version Bible
11023      4787 King James Version Bible
11024      4788 King James Version Bible
11025      4789 King James Version Bible
11026      4790 King James Version Bible
11027      4791 King James Version Bible
11028      4792 King James Version Bible
11029      4793 King James Version Bible
11030      4794 King James Version Bible
11031      4795 King James Version Bible
11032      4796 King James Version Bible
11033      4797 King James Version Bible
11034      4798 King James Version Bible
11035      4799 King James Version Bible
11036      4800 King James Version Bible
11037      4801 King James Version Bible
11038      4802 King James Version Bible
11039      4803 King James Version Bible
11040      4804 King James Version Bible
11041      4805 King James Version Bible
11042      4806 King James Version Bible
11043      4807 King James Version Bible
11044      4808 King James Version Bible
11045      4809 King James Version Bible
11046      4810 King James Version Bible
11047      4811 King James Version Bible
11048      4812 King James Version Bible
11049      4813 King James Version Bible
11050      4814 King James Version Bible
11051      4815 King James Version Bible
11052      4816 King James Version Bible
11053      4817 King James Version Bible
11054      4818 King James Version Bible
11055      4819 King James Version Bible
11056      4820 King James Version Bible
11057      4821 King James Version Bible
11058      4822 King James Version Bible
11059      4823 King James Version Bible
11060      4824 King James Version Bible
11061      4825 King James Version Bible
11062      4826 King James Version Bible
11063      4827 King James Version Bible
11064      4828 King James Version Bible
11065      4829 King James Version Bible
11066      4830 King James Version Bible
11067      4831 King James Version Bible
11068      4832 King James Version Bible
11069      4833 King James Version Bible
11070      4834 King James Version Bible
11071      4835 King James Version Bible
11072      4836 King James Version Bible
11073      4837 King James Version Bible
11074      4838 King James Version Bible
11075      4839 King James Version Bible
11076      4840 King James Version Bible
11077      4841 King James Version Bible
11078      4842 King James Version Bible
11079      4843 King James Version Bible
11080      4844 King James Version Bible
11081      4845 King James Version Bible
11082      4846 King James Version Bible
11083      4847 King James Version Bible
11084      4848 King James Version Bible
11085      4849 King James Version Bible
11086      4850 King James Version Bible
11087      4851 King James Version Bible
11088      4852 King James Version Bible
11089      4853 King James Version Bible
11090      4854 King James Version Bible
11091      4855 King James Version Bible
11092      4856 King James Version Bible
11093      4857 King James Version Bible
11094      4858 King James Version Bible
11095      4859 King James Version Bible
11096      4860 King James Version Bible
11097      4861 King James Version Bible
11098      4862 King James Version Bible
11099      4863 King James Version Bible
11100      4864 King James Version Bible
11101      4865 King James Version Bible
11102      4866 King James Version Bible
11103      4867 King James Version Bible
11104      4868 King James Version Bible
11105      4869 King James Version Bible
11106      4870 King James Version Bible
11107      4871 King James Version Bible
11108      4872 King James Version Bible
11109      4873 King James Version Bible
11110      4874 King James Version Bible
11111      4875 King James Version Bible
11112      4876 King James Version Bible
11113      4877 King James Version Bible
11114      4878 King James Version Bible
11115      4879 King James Version Bible
11116      4880 King James Version Bible
11117      4881 King James Version Bible
11118      4882 King James Version Bible
11119      4883 King James Version Bible
11120      4884 King James Version Bible
11121      4885 King James Version Bible
11122      4886 King James Version Bible
11123      4887 King James Version Bible
11124      4888 King James Version Bible
11125      4889 King James Version Bible
11126      4890 King James Version Bible
11127      4891 King James Version Bible
11128      4892 King James Version Bible
11129      4893 King James Version Bible
11130      4894 King James Version Bible
11131      4895 King James Version Bible
11132      4896 King James Version Bible
11133      4897 King James Version Bible
11134      4898 King James Version Bible
11135      4899 King James Version Bible
11136      4900 King James Version Bible
11137      4901 King James Version Bible
11138      4902 King James Version Bible
11139      4903 King James Version Bible
11140      4904 King James Version Bible
11141      4905 King James Version Bible
11142      4906 King James Version Bible
11143      4907 King James Version Bible
11144      4908 King James Version Bible
11145      4909 King James Version Bible
11146      4910 King James Version Bible
11147      4911 King James Version Bible
11148      4912 King James Version Bible
11149      4913 King James Version Bible
11150      4914 King James Version Bible
11151      4915 King James Version Bible
11152      4916 King James Version Bible
11153      4917 King James Version Bible
11154      4918 King James Version Bible
11155      4919 King James Version Bible
11156      4920 King James Version Bible
11157      4921 King James Version Bible
11158      4922 King James Version Bible
11159      4923 King James Version Bible
11160      4924 King James Version Bible
11161      4925 King James Version Bible
11162      4926 King James Version Bible
11163      4927 King James Version Bible
11164      4928 King James Version Bible
11165      4929 King James Version Bible
11166      4930 King James Version Bible
11167      4931 King James Version Bible
11168      4932 King James Version Bible
11169      4933 King James Version Bible
11170      4934 King James Version Bible
11171      4935 King James Version Bible
11172      4936 King James Version Bible
11173      4937 King James Version Bible
11174      4938 King James Version Bible
11175      4939 King James Version Bible
11176      4940 King James Version Bible
11177      4941 King James Version Bible
11178      4942 King James Version Bible
11179      4943 King James Version Bible
11180      4944 King James Version Bible
11181      4945 King James Version Bible
11182      4946 King James Version Bible
11183      4947 King James Version Bible
11184      4948 King James Version Bible
11185      4949 King James Version Bible
11186      4950 King James Version Bible
11187      4951 King James Version Bible
11188      4952 King James Version Bible
11189      4953 King James Version Bible
11190      4954 King James Version Bible
11191      4955 King James Version Bible
11192      4956 King James Version Bible
11193      4957 King James Version Bible
11194      4958 King James Version Bible
11195      4959 King James Version Bible
11196      4960 King James Version Bible
11197      4961 King James Version Bible
11198      4962 King James Version Bible
11199      4963 King James Version Bible
11200      4964 King James Version Bible
11201      4965 King James Version Bible
11202      4966 King James Version Bible
11203      4967 King James Version Bible
11204      4968 King James Version Bible
11205      4969 King James Version Bible
11206      4970 King James Version Bible
11207      4971 King James Version Bible
11208      4972 King James Version Bible
11209      4973 King James Version Bible
11210      4974 King James Version Bible
11211      4975 King James Version Bible
11212      4976 King James Version Bible
11213      4977 King James Version Bible
11214      4978 King James Version Bible
11215      4979 King James Version Bible
11216      4980 King James Version Bible
11217      4981 King James Version Bible
11218      4982 King James Version Bible
11219      4983 King James Version Bible
11220      4984 King James Version Bible
11221      4985 King James Version Bible
11222      4986 King James Version Bible
11223      4987 King James Version Bible
11224      4988 King James Version Bible
11225      4989 King James Version Bible
11226      4990 King James Version Bible
11227      4991 King James Version Bible
11228      4992 King James Version Bible
11229      4993 King James Version Bible
11230      4994 King James Version Bible
11231      4995 King James Version Bible
11232      4996 King James Version Bible
11233      4997 King James Version Bible
11234      4998 King James Version Bible
11235      4999 King James Version Bible
11236      5000 King James Version Bible
11237      5001 King James Version Bible
11238      5002 King James Version Bible
11239      5003 King James Version Bible
11240      5004 King James Version Bible
11241      5005 King James Version Bible
11242      5006 King James Version Bible
11243      5007 King James Version Bible
11244      5008 King James Version Bible
11245      5009 King James Version Bible
11246      5010 King James Version Bible
11247      5011 King James Version Bible
11248      5012 King James Version Bible
11249      5013 King James Version Bible
11250      5014 King James Version Bible
11251      5015 King James Version Bible
11252      5016 King James Version Bible
11253      5017 King James Version Bible
11254      5018 King James Version Bible
11255      5019 King James Version Bible
11256      5020 King James Version Bible
11257      5021 King James Version Bible
11258      5022 King James Version Bible
11259      5023 King James Version Bible
11260      5024 King James Version Bible
11261      5025 King James Version Bible
11262      5026 King James Version Bible
11263      5027 King James Version Bible
11264      5028 King James Version Bible
11265      5029 King James Version Bible
11266      5030 King James Version Bible
11267      5031 King James Version Bible
11268      5032 King James Version Bible
11269      5033 King James Version Bible
11270      5034 King James Version Bible
11271      5035 King James Version Bible
11272      5036 King James Version Bible
11273      5037 King James Version Bible
11274      5038 King James Version Bible
11275      5039 King James Version Bible
11276      5040 King James Version Bible
11277      5041 King James Version Bible
11278      5042 King James Version Bible
11279      5043 King James Version Bible
11280      5044 King James Version Bible
11281      5045 King James Version Bible
11282      5046 King James Version Bible
11283      5047 King James Version Bible
11284      5048 King James Version Bible
11285      5049 King James Version Bible
11286      5050 King James Version Bible
11287      5051 King James Version Bible
11288      5052 King James Version Bible
11289      5053 King James Version Bible
11290      5054 King James Version Bible
11291      5055 King James Version Bible
11292      5056 King James Version Bible
11293      5057 King James Version Bible
11294      5058 King James Version Bible
11295      5059 King James Version Bible
11296      5060 King James Version Bible
11297      5061 King James Version Bible
11298      5062 King James Version Bible
11299      5063 King James Version Bible
11300      5064 King James Version Bible
11301      5065 King James Version Bible
11302      5066 King James Version Bible
11303      5067 King James Version Bible
11304      5068 King James Version Bible
11305      5069 King James Version Bible
11306      5070 King James Version Bible
11307      5071 King James Version Bible
11308      5072 King James Version Bible
11309      5073 King James Version Bible
11310      5074 King James Version Bible
11311      5075 King James Version Bible
11312      5076 King James Version Bible
11313      5077 King James Version Bible
11314      5078 King James Version Bible
11315      5079 King James Version Bible
11316      5080 King James Version Bible
11317      5081 King James Version Bible
11318      5082 King James Version Bible
11319      5083 King James Version Bible
11320      5084 King James Version Bible
11321      5085 King James Version Bible
11322      5086 King James Version Bible
11323      5087 King James Version Bible
11324      5088 King James Version Bible
11325      5089 King James Version Bible
11326      5090 King James Version Bible
11327      5091 King James Version Bible
11328      5092 King James Version Bible
11329      5093 King James Version Bible
11330      5094 King James Version Bible
11331      5095 King James Version Bible
11332      5096 King James Version Bible
11333      5097 King James Version Bible
11334      5098 King James Version Bible
11335      5099 King James Version Bible
11336      5100 King James Version Bible
11337      5101 King James Version Bible
11338      5102 King James Version Bible
11339      5103 King James Version Bible
11340      5104 King James Version Bible
11341      5105 King James Version Bible
11342      5106 King James Version Bible
11343      5107 King James Version Bible
11344      5108 King James Version Bible
11345      5109 King James Version Bible
11346      5110 King James Version Bible
11347      5111 King James Version Bible
11348      5112 King James Version Bible
11349      5113 King James Version Bible
11350      5114 King James Version Bible
11351      5115 King James Version Bible
11352      5116 King James Version Bible
11353      5117 King James Version Bible
11354      5118 King James Version Bible
11355      5119 King James Version Bible
11356      5120 King James Version Bible
11357      5121 King James Version Bible
11358      5122 King James Version Bible
11359      5123 King James Version Bible
11360      5124 King James Version Bible
11361      5125 King James Version Bible
11362      5126 King James Version Bible
11363      5127 King James Version Bible
11364      5128 King James Version Bible
11365      5129 King James Version Bible
11366      5130 King James Version Bible
11367      5131 King James Version Bible
11368      5132 King James Version Bible
11369      5133 King James Version Bible
11370      5134 King James Version Bible
11371      5135 King James Version Bible
11372      5136 King James Version Bible
11373      5137 King James Version Bible
11374      5138 King James Version Bible
11375      5139 King James Version Bible
11376      5140 King James Version Bible
11377      5141 King James Version Bible
11378      5142 King James Version Bible
11379      5143 King James Version Bible
11380      5144 King James Version Bible
11381      5145 King James Version Bible
11382      5146 King James Version Bible
11383      5147 King James Version Bible
11384      5148 King James Version Bible
11385      5149 King James Version Bible
11386      5150 King James Version Bible
11387      5151 King James Version Bible
11388      5152 King James Version Bible
11389      5153 King James Version Bible
11390      5154 King James Version Bible
11391      5155 King James Version Bible
11392      5156 King James Version Bible
11393      5157 King James Version Bible
11394      5158 King James Version Bible
11395      5159 King James Version Bible
11396      5160 King James Version Bible
11397      5161 King James Version Bible
11398      5162 King James Version Bible
11399      5163 King James Version Bible
11400      5164 King James Version Bible
11401      5165 King James Version Bible
11402      5166 King James Version Bible
11403      5167 King James Version Bible
11404      5168 King James Version Bible
11405      5169 King James Version Bible
11406      5170 King James Version Bible
11407      5171 King James Version Bible
11408      5172 King James Version Bible
11409      5173 King James Version Bible
11410      5174 King James Version Bible
11411      5175 King James Version Bible
11412      5176 King James Version Bible
11413      5177 King James Version Bible
11414      5178 King James Version Bible
11415      5179 King James Version Bible
11416      5180 King James Version Bible
11417      5181 King James Version Bible
11418      5182 King James Version Bible
11419      5183 King James Version Bible
11420      5184 King James Version Bible
11421      5185 King James Version Bible
11422      5186 King James Version Bible
11423      5187 King James Version Bible
11424      5188 King James Version Bible
11425      5189 King James Version Bible
11426      5190 King James Version Bible
11427      5191 King James Version Bible
11428      5192 King James Version Bible
11429      5193 King James Version Bible
11430      5194 King James Version Bible
11431      5195 King James Version Bible
11432      5196 King James Version Bible
11433      5197 King James Version Bible
11434      5198 King James Version Bible
11435      5199 King James Version Bible
11436      5200 King James Version Bible
11437      5201 King James Version Bible
11438      5202 King James Version Bible
11439      5203 King James Version Bible
11440      5204 King James Version Bible
11441      5205 King James Version Bible
11442      5206 King James Version Bible
11443      5207 King James Version Bible
11444      5208 King James Version Bible
11445      5209 King James Version Bible
11446      5210 King James Version Bible
11447      5211 King James Version Bible
11448      5212 King James Version Bible
11449      5213 King James Version Bible
11450      5214 King James Version Bible
11451      5215 King James Version Bible
11452      5216 King James Version Bible
11453      5217 King James Version Bible
11454      5218 King James Version Bible
11455      5219 King James Version Bible
11456      5220 King James Version Bible
11457      5221 King James Version Bible
11458      5222 King James Version Bible
11459      5223 King James Version Bible
11460      5224 King James Version Bible
11461      5225 King James Version Bible
11462      5226 King James Version Bible
11463      5227 King James Version Bible
11464      5228 King James Version Bible
11465      5229 King James Version Bible
11466      5230 King James Version Bible
11467      5231 King James Version Bible
11468      5232 King James Version Bible
11469      5233 King James Version Bible
11470      5234 King James Version Bible
11471      5235 King James Version Bible
11472      5236 King James Version Bible
11473      5237 King James Version Bible
11474      5238 King James Version Bible
11475      5239 King James Version Bible
11476      5240 King James Version Bible
11477      5241 King James Version Bible
11478      5242 King James Version Bible
11479      5243 King James Version Bible
11480      5244 King James Version Bible
11481      5245 King James Version Bible
11482      5246 King James Version Bible
11483      5247 King James Version Bible
11484      5248 King James Version Bible
11485      5249 King James Version Bible
11486      5250 King James Version Bible
11487      5251 King James Version Bible
11488      5252 King James Version Bible
11489      5253 King James Version Bible
11490      5254 King James Version Bible
11491      5255 King James Version Bible
11492      5256 King James Version Bible
11493      5257 King James Version Bible
11494      5258 King James Version Bible
11495      5259 King James Version Bible
11496      5260 King James Version Bible
11497      5261 King James Version Bible
11498      5262 King James Version Bible
11499      5263 King James Version Bible
11500      5264 King James Version Bible
11501      5265 King James Version Bible
11502      5266 King James Version Bible
11503      5267 King James Version Bible
11504      5268 King James Version Bible
11505      5269 King James Version Bible
11506      5270 King James Version Bible
11507      5271 King James Version Bible
11508      5272 King James Version Bible
11509      5273 King James Version Bible
11510      5274 King James Version Bible
11511      5275 King James Version Bible
11512      5276 King James Version Bible
11513      5277 King James Version Bible
11514      5278 King James Version Bible
11515      5279 King James Version Bible
11516      5280 King James Version Bible
11517      5281 King James Version Bible
11518      5282 King James Version Bible
11519      5283 King James Version Bible
11520      5284 King James Version Bible
11521      5285 King James Version Bible
11522      5286 King James Version Bible
11523      5287 King James Version Bible
11524      5288 King James Version Bible
11525      5289 King James Version Bible
11526      5290 King James Version Bible
11527      5291 King James Version Bible
11528      5292 King James Version Bible
11529      5293 King James Version Bible
11530      5294 King James Version Bible
11531      5295 King James Version Bible
11532      5296 King James Version Bible
11533      5297 King James Version Bible
11534      5298 King James Version Bible
11535      5299 King James Version Bible
11536      5300 King James Version Bible
11537      5301 King James Version Bible
11538      5302 King James Version Bible
11539      5303 King James Version Bible
11540      5304 King James Version Bible
11541      5305 King James Version Bible
11542      5306 King James Version Bible
11543      5307 King James Version Bible
11544      5308 King James Version Bible
11545      5309 King James Version Bible
11546      5310 King James Version Bible
11547      5311 King James Version Bible
11548      5312 King James Version Bible
11549      5313 King James Version Bible
11550      5314 King James Version Bible
11551      5315 King James Version Bible
11552      5316 King James Version Bible
11553      5317 King James Version Bible
11554      5318 King James Version Bible
11555      5319 King James Version Bible
11556      5320 King James Version Bible
11557      5321 King James Version Bible
11558      5322 King James Version Bible
11559      5323 King James Version Bible
11560      5324 King James Version Bible
11561      5325 King James Version Bible
11562      5326 King James Version Bible
11563      5327 King James Version Bible
11564      5328 King James Version Bible
11565      5329 King James Version Bible
11566      5330 King James Version Bible
11567      5331 King James Version Bible
11568      5332 King James Version Bible
11569      5333 King James Version Bible
11570      5334 King James Version Bible
11571      5335 King James Version Bible
11572      5336 King James Version Bible
11573      5337 King James Version Bible
11574      5338 King James Version Bible
11575      5339 King James Version Bible
11576      5340 King James Version Bible
11577      5341 King James Version Bible
11578      5342 King James Version Bible
11579      5343 King James Version Bible
11580      5344 King James Version Bible
11581      5345 King James Version Bible
11582      5346 King James Version Bible
11583      5347 King James Version Bible
11584      5348 King James Version Bible
11585      5349 King James Version Bible
11586      5350 King James Version Bible
11587      5351 King James Version Bible
11588      5352 King James Version Bible
11589      5353 King James Version Bible
11590      5354 King James Version Bible
11591      5355 King James Version Bible
11592      5356 King James Version Bible
11593      5357 King James Version Bible
11594      5358 King James Version Bible
11595      5359 King James Version Bible
11596      5360 King James Version Bible
11597      5361 King James Version Bible
11598      5362 King James Version Bible
11599      5363 King James Version Bible
11600      5364 King James Version Bible
11601      5365 King James Version Bible
11602      5366 King James Version Bible
11603      5367 King James Version Bible
11604      5368 King James Version Bible
11605      5369 King James Version Bible
11606      5370 King James Version Bible
11607      5371 King James Version Bible
11608      5372 King James Version Bible
11609      5373 King James Version Bible
11610      5374 King James Version Bible
11611      5375 King James Version Bible
11612      5376 King James Version Bible
11613      5377 King James Version Bible
11614      5378 King James Version Bible
11615      5379 King James Version Bible
11616      5380 King James Version Bible
11617      5381 King James Version Bible
11618      5382 King James Version Bible
11619      5383 King James Version Bible
11620      5384 King James Version Bible
11621      5385 King James Version Bible
11622      5386 King James Version Bible
11623      5387 King James Version Bible
11624      5388 King James Version Bible
11625      5389 King James Version Bible
11626      5390 King James Version Bible
11627      5391 King James Version Bible
11628      5392 King James Version Bible
11629      5393 King James Version Bible
11630      5394 King James Version Bible
11631      5395 King James Version Bible
11632      5396 King James Version Bible
11633      5397 King James Version Bible
11634      5398 King James Version Bible
11635      5399 King James Version Bible
11636      5400 King James Version Bible
11637      5401 King James Version Bible
11638      5402 King James Version Bible
11639      5403 King James Version Bible
11640      5404 King James Version Bible
11641      5405 King James Version Bible
11642      5406 King James Version Bible
11643      5407 King James Version Bible
11644      5408 King James Version Bible
11645      5409 King James Version Bible
11646      5410 King James Version Bible
11647      5411 King James Version Bible
11648      5412 King James Version Bible
11649      5413 King James Version Bible
11650      5414 King James Version Bible
11651      5415 King James Version Bible
11652      5416 King James Version Bible
11653      5417 King James Version Bible
11654      5418 King James Version Bible
11655      5419 King James Version Bible
11656      5420 King James Version Bible
11657      5421 King James Version Bible
11658      5422 King James Version Bible
11659      5423 King James Version Bible
11660      5424 King James Version Bible
11661      5425 King James Version Bible
11662      5426 King James Version Bible
11663      5427 King James Version Bible
11664      5428 King James Version Bible
11665      5429 King James Version Bible
11666      5430 King James Version Bible
11667      5431 King James Version Bible
11668      5432 King James Version Bible
11669      5433 King James Version Bible
11670      5434 King James Version Bible
11671      5435 King James Version Bible
11672      5436 King James Version Bible
11673      5437 King James Version Bible
11674      5438 King James Version Bible
11675      5439 King James Version Bible
11676      5440 King James Version Bible
11677      5441 King James Version Bible
11678      5442 King James Version Bible
11679      5443 King James Version Bible
11680      5444 King James Version Bible
11681      5445 King James Version Bible
11682      5446 King James Version Bible
11683      5447 King James Version Bible
11684      5448 King James Version Bible
11685      5449 King James Version Bible
11686      5450 King James Version Bible
11687      5451 King James Version Bible
11688      5452 King James Version Bible
11689      5453 King James Version Bible
11690      5454 King James Version Bible
11691      5455 King James Version Bible
11692      5456 King James Version Bible
11693      5457 King James Version Bible
11694      5458 King James Version Bible
11695      5459 King James Version Bible
11696      5460 King James Version Bible
11697      5461 King James Version Bible
11698      5462 King James Version Bible
11699      5463 King James Version Bible
11700      5464 King James Version Bible
11701      5465 King James Version Bible
11702      5466 King James Version Bible
11703      5467 King James Version Bible
11704      5468 King James Version Bible
11705      5469 King James Version Bible
11706      5470 King James Version Bible
11707      5471 King James Version Bible
11708      5472 King James Version Bible
11709      5473 King James Version Bible
11710      5474 King James Version Bible
11711      5475 King James Version Bible
11712      5476 King James Version Bible
11713      5477 King James Version Bible
11714      5478 King James Version Bible
11715      5479 King James Version Bible
11716      5480 King James Version Bible
11717      5481 King James Version Bible
11718      5482 King James Version Bible
11719      5483 King James Version Bible
11720      5484 King James Version Bible
11721      5485 King James Version Bible
11722      5486 King James Version Bible
11723      5487 King James Version Bible
11724      5488 King James Version Bible
11725      5489 King James Version Bible
11726      5490 King James Version Bible
11727      5491 King James Version Bible
11728      5492 King James Version Bible
11729      5493 King James Version Bible
11730      5494 King James Version Bible
11731      5495 King James Version Bible
11732      5496 King James Version Bible
11733      5497 King James Version Bible
11734      5498 King James Version Bible
11735      5499 King James Version Bible
11736      5500 King James Version Bible
11737      5501 King James Version Bible
11738      5502 King James Version Bible
11739      5503 King James Version Bible
11740      5504 King James Version Bible
11741      5505 King James Version Bible
11742      5506 King James Version Bible
11743      5507 King James Version Bible
11744      5508 King James Version Bible
11745      5509 King James Version Bible
11746      5510 King James Version Bible
11747      5511 King James Version Bible
11748      5512 King James Version Bible
11749      5513 King James Version Bible
11750      5514 King James Version Bible
11751      5515 King James Version Bible
11752      5516 King James Version Bible
11753      5517 King James Version Bible
11754      5518 King James Version Bible
11755      5519 King James Version Bible
11756      5520 King James Version Bible
11757      5521 King James Version Bible
11758      5522 King James Version Bible
11759      5523 King James Version Bible
11760      5524 King James Version Bible
11761      5525 King James Version Bible
11762      5526 King James Version Bible
11763      5527 King James Version Bible
11764      5528 King James Version Bible
11765      5529 King James Version Bible
11766      5530 King James Version Bible
11767      5531 King James Version Bible
11768      5532 King James Version Bible
11769      5533 King James Version Bible
11770      5534 King James Version Bible
11771      5535 King James Version Bible
11772      5536 King James Version Bible
11773      5537 King James Version Bible
11774      5538 King James Version Bible
11775      5539 King James Version Bible
11776      5540 King James Version Bible
11777      5541 King James Version Bible
11778      5542 King James Version Bible
11779      5543 King James Version Bible
11780      5544 King James Version Bible
11781      5545 King James Version Bible
11782      5546 King James Version Bible
11783      5547 King James Version Bible
11784      5548 King James Version Bible
11785      5549 King James Version Bible
11786      5550 King James Version Bible
11787      5551 King James Version Bible
11788      5552 King James Version Bible
11789      5553 King James Version Bible
11790      5554 King James Version Bible
11791      5555 King James Version Bible
11792      5556 King James Version Bible
11793      5557 King James Version Bible
11794      5558 King James Version Bible
11795      5559 King James Version Bible
11796      5560 King James Version Bible
11797      5561 King James Version Bible
11798      5562 King James Version Bible
11799      5563 King James Version Bible
11800      5564 King James Version Bible
11801      5565 King James Version Bible
11802      5566 King James Version Bible
11803      5567 King James Version Bible
11804      5568 King James Version Bible
11805      5569 King James Version Bible
11806      5570 King James Version Bible
11807      5571 King James Version Bible
11808      5572 King James Version Bible
11809      5573 King James Version Bible
11810      5574 King James Version Bible
11811      5575 King James Version Bible
11812      5576 King James Version Bible
11813      5577 King James Version Bible
11814      5578 King James Version Bible
11815      5579 King James Version Bible
11816      5580 King James Version Bible
11817      5581 King James Version Bible
11818      5582 King James Version Bible
11819      5583 King James Version Bible
11820      5584 King James Version Bible
11821      5585 King James Version Bible
11822      5586 King James Version Bible
11823      5587 King James Version Bible
11824      5588 King James Version Bible
11825      5589 King James Version Bible
11826      5590 King James Version Bible
11827      5591 King James Version Bible
11828      5592 King James Version Bible
11829      5593 King James Version Bible
11830      5594 King James Version Bible
11831      5595 King James Version Bible
11832      5596 King James Version Bible
11833      5597 King James Version Bible
11834      5598 King James Version Bible
11835      5599 King James Version Bible
11836      5600 King James Version Bible
11837      5601 King James Version Bible
11838      5602 King James Version Bible
11839      5603 King James Version Bible
11840      5604 King James Version Bible
11841      5605 King James Version Bible
11842      5606 King James Version Bible
11843      5607 King James Version Bible
11844      5608 King James Version Bible
11845      5609 King James Version Bible
11846      5610 King James Version Bible
11847      5611 King James Version Bible
11848      5612 King James Version Bible
11849      5613 King James Version Bible
11850      5614 King James Version Bible
11851      5615 King James Version Bible
11852      5616 King James Version Bible
11853      5617 King James Version Bible
11854      5618 King James Version Bible
11855      5619 King James Version Bible
11856      5620 King James Version Bible
11857      5621 King James Version Bible
11858      5622 King James Version Bible
11859      5623 King James Version Bible
11860      5624 King James Version Bible
11861      5625 King James Version Bible
11862      5626 King James Version Bible
11863      5627 King James Version Bible
11864      5628 King James Version Bible
11865      5629 King James Version Bible
11866      5630 King James Version Bible
11867      5631 King James Version Bible
11868      5632 King James Version Bible
11869      5633 King James Version Bible
11870      5634 King James Version Bible
11871      5635 King James Version Bible
11872      5636 King James Version Bible
11873      5637 King James Version Bible
11874      5638 King James Version Bible
11875      5639 King James Version Bible
11876      5640 King James Version Bible
11877      5641 King James Version Bible
11878      5642 King James Version Bible
11879      5643 King James Version Bible
11880      5644 King James Version Bible
11881      5645 King James Version Bible
11882      5646 King James Version Bible
11883      5647 King James Version Bible
11884      5648 King James Version Bible
11885      5649 King James Version Bible
11886      5650 King James Version Bible
11887      5651 King James Version Bible
11888      5652 King James Version Bible
11889      5653 King James Version Bible
11890      5654 King James Version Bible
11891      5655 King James Version Bible
11892      5656 King James Version Bible
11893      5657 King James Version Bible
11894      5658 King James Version Bible
11895      5659 King James Version Bible
11896      5660 King James Version Bible
11897      5661 King James Version Bible
11898      5662 King James Version Bible
11899      5663 King James Version Bible
11900      5664 King James Version Bible
11901      5665 King James Version Bible
11902      5666 King James Version Bible
11903      5667 King James Version Bible
11904      5668 King James Version Bible
11905      5669 King James Version Bible
11906      5670 King James Version Bible
11907      5671 King James Version Bible
11908      5672 King James Version Bible
11909      5673 King James Version Bible
11910      5674 King James Version Bible
11911      5675 King James Version Bible
11912      5676 King James Version Bible
11913      5677 King James Version Bible
11914      5678 King James Version Bible
11915      5679 King James Version Bible
11916      5680 King James Version Bible
11917      5681 King James Version Bible
11918      5682 King James Version Bible
11919      5683 King James Version Bible
11920      5684 King James Version Bible
11921      5685 King James Version Bible
11922      5686 King James Version Bible
11923      5687 King James Version Bible
11924      5688 King James Version Bible
11925      5689 King James Version Bible
11926      5690 King James Version Bible
11927      5691 King James Version Bible
11928      5692 King James Version Bible
11929      5693 King James Version Bible
11930      5694 King James Version Bible
11931      5695 King James Version Bible
11932      5696 King James Version Bible
11933      5697 King James Version Bible
11934      5698 King James Version Bible
11935      5699 King James Version Bible
11936      5700 King James Version Bible
11937      5701 King James Version Bible
11938      5702 King James Version Bible
11939      5703 King James Version Bible
11940      5704 King James Version Bible
11941      5705 King James Version Bible
11942      5706 King James Version Bible
11943      5707 King James Version Bible
11944      5708 King James Version Bible
11945      5709 King James Version Bible
11946      5710 King James Version Bible
11947      5711 King James Version Bible
11948      5712 King James Version Bible
11949      5713 King James Version Bible
11950      5714 King James Version Bible
11951      5715 King James Version Bible
11952      5716 King James Version Bible
11953      5717 King James Version Bible
11954      5718 King James Version Bible
11955      5719 King James Version Bible
11956      5720 King James Version Bible
11957      5721 King James Version Bible
11958      5722 King James Version Bible
11959      5723 King James Version Bible
11960      5724 King James Version Bible
11961      5725 King James Version Bible
11962      5726 King James Version Bible
11963      5727 King James Version Bible
11964      5728 King James Version Bible
11965      5729 King James Version Bible
11966      5730 King James Version Bible
11967      5731 King James Version Bible
11968      5732 King James Version Bible
11969      5733 King James Version Bible
11970      5734 King James Version Bible
11971      5735 King James Version Bible
11972      5736 King James Version Bible
11973      5737 King James Version Bible
11974      5738 King James Version Bible
11975      5739 King James Version Bible
11976      5740 King James Version Bible
11977      5741 King James Version Bible
11978      5742 King James Version Bible
11979      5743 King James Version Bible
11980      5744 King James Version Bible
11981      5745 King James Version Bible
11982      5746 King James Version Bible
11983      5747 King James Version Bible
11984      5748 King James Version Bible
11985      5749 King James Version Bible
11986      5750 King James Version Bible
11987      5751 King James Version Bible
11988      5752 King James Version Bible
11989      5753 King James Version Bible
11990      5754 King James Version Bible
11991      5755 King James Version Bible
11992      5756 King James Version Bible
11993      5757 King James Version Bible
11994      5758 King James Version Bible
11995      5759 King James Version Bible
11996      5760 King James Version Bible
11997      5761 King James Version Bible
11998      5762 King James Version Bible
11999      5763 King James Version Bible
12000      5764 King James Version Bible
12001      5765 King James Version Bible
12002      5766 King James Version Bible
12003      5767 King James Version Bible
12004      5768 King James Version Bible
12005      5769 King James Version Bible
12006      5770 King James Version Bible
12007      5771 King James Version Bible
12008      5772 King James Version Bible
12009      5773 King James Version Bible
12010      5774 King James Version Bible
12011      5775 King James Version Bible
12012      5776 King James Version Bible
12013      5777 King James Version Bible
12014      5778 King James Version Bible
12015      5779 King James Version Bible
12016      5780 King James Version Bible
12017      5781 King James Version Bible
12018      5782 King James Version Bible
12019      5783 King James Version Bible
12020      5784 King James Version Bible
12021      5785 King James Version Bible
12022      5786 King James Version Bible
12023      5787 King James Version Bible
12024      5788 King James Version Bible
12025      5789 King James Version Bible
12026      5790 King James Version Bible
12027      5791 King James Version Bible
12028      5792 King James Version Bible
12029      5793 King James Version Bible
12030      5794 King James Version Bible
12031      5795 King James Version Bible
12032      5796 King James Version Bible
12033      5797 King James Version Bible
12034      5798 King James Version Bible
12035      5799 King James Version Bible
12036      5800 King James Version Bible
12037      5801 King James Version Bible
12038      5802 King James Version Bible
12039      5803 King James Version Bible
12040      5804 King James Version Bible
12041      5805 King James Version Bible
12042      5806 King James Version Bible
12043      5807 King James Version Bible
12044      5808 King James Version Bible
12045      5809 King James Version Bible
12046      5810 King James Version Bible
12047      5811 King James Version Bible
12048      5812 King James Version Bible
12049      5813 King James Version Bible
12050      5814 King James Version Bible
12051      5815 King James Version Bible
12052      5816 King James Version Bible
12053      5817 King James Version Bible
12054      5818 King James Version Bible
12055      5819 King James Version Bible
12056      5820 King James Version Bible
12057      5821 King James Version Bible
12058      5822 King James Version Bible
12059      5823 King James Version Bible
12060      5824 King James Version Bible
12061      5825 King James Version Bible
12062      5826 King James Version Bible
12063      5827 King James Version Bible
12064      5828 King James Version Bible
12065      5829 King James Version Bible
12066      5830 King James Version Bible
12067      5831 King James Version Bible
12068      5832 King James Version Bible
12069      5833 King James Version Bible
12070      5834 King James Version Bible
12071      5835 King James Version Bible
12072      5836 King James Version Bible
12073      5837 King James Version Bible
12074      5838 King James Version Bible
12075      5839 King James Version Bible
12076      5840 King James Version Bible
12077      5841 King James Version Bible
12078      5842 King James Version Bible
12079      5843 King James Version Bible
12080      5844 King James Version Bible
12081      5845 King James Version Bible
12082      5846 King James Version Bible
12083      5847 King James Version Bible
12084      5848 King James Version Bible
12085      5849 King James Version Bible
12086      5850 King James Version Bible
12087      5851 King James Version Bible
12088      5852 King James Version Bible
12089      5853 King James Version Bible
12090      5854 King James Version Bible
12091      5855 King James Version Bible
12092      5856 King James Version Bible
12093      5857 King James Version Bible
12094      5858 King James Version Bible
12095      5859 King James Version Bible
12096      5860 King James Version Bible
12097      5861 King James Version Bible
12098      5862 King James Version Bible
12099      5863 King James Version Bible
12100      5864 King James Version Bible
12101      5865 King James Version Bible
12102      5866 King James Version Bible
12103      5867 King James Version Bible
12104      5868 King James Version Bible
12105      5869 King James Version Bible
12106      5870 King James Version Bible
12107      5871 King James Version Bible
12108      5872 King James Version Bible
12109      5873 King James Version Bible
12110      5874 King James Version Bible
12111      5875 King James Version Bible
12112      5876 King James Version Bible
12113      5877 King James Version Bible
12114      5878 King James Version Bible
12115      5879 King James Version Bible
12116      5880 King James Version Bible
12117      5881 King James Version Bible
12118      5882 King James Version Bible
12119      5883 King James Version Bible
12120      5884 King James Version Bible
12121      5885 King James Version Bible
12122      5886 King James Version Bible
12123      5887 King James Version Bible
12124      5888 King James Version Bible
12125      5889 King James Version Bible
12126      5890 King James Version Bible
12127      5891 King James Version Bible
12128      5892 King James Version Bible
12129      5893 King James Version Bible
12130      5894 King James Version Bible
12131      5895 King James Version Bible
12132      5896 King James Version Bible
12133      5897 King James Version Bible
12134      5898 King James Version Bible
12135      5899 King James Version Bible
12136      5900 King James Version Bible
12137      5901 King James Version Bible
12138      5902 King James Version Bible
12139      5903 King James Version Bible
12140      5904 King James Version Bible
12141      5905 King James Version Bible
12142      5906 King James Version Bible
12143      5907 King James Version Bible
12144      5908 King James Version Bible
12145      5909 King James Version Bible
12146      5910 King James Version Bible
12147      5911 King James Version Bible
12148      5912 King James Version Bible
12149      5913 King James Version Bible
12150      5914 King James Version Bible
12151      5915 King James Version Bible
12152      5916 King James Version Bible
12153      5917 King James Version Bible
12154      5918 King James Version Bible
12155      5919 King James Version Bible
12156      5920 King James Version Bible
12157      5921 King James Version Bible
12158      5922 King James Version Bible
12159      5923 King James Version Bible
12160      5924 King James Version Bible
12161      5925 King James Version Bible
12162      5926 King James Version Bible
12163      5927 King James Version Bible
12164      5928 King James Version Bible
12165      5929 King James Version Bible
12166      5930 King James Version Bible
12167      5931 King James Version Bible
12168      5932 King James Version Bible
12169      5933 King James Version Bible
12170      5934 King James Version Bible
12171      5935 King James Version Bible
12172      5936 King James Version Bible
12173      5937 King James Version Bible
12174      5938 King James Version Bible
12175      5939 King James Version Bible
12176      5940 King James Version Bible
12177      5941 King James Version Bible
12178      5942 King James Version Bible
12179      5943 King James Version Bible
12180      5944 King James Version Bible
12181      5945 King James Version Bible
12182      5946 King James Version Bible
12183      5947 King James Version Bible
12184      5948 King James Version Bible
12185      5949 King James Version Bible
12186      5950 King James Version Bible
12187      5951 King James Version Bible
12188      5952 King James Version Bible
12189      5953 King James Version Bible
12190      5954 King James Version Bible
12191      5955 King James Version Bible
12192      5956 King James Version Bible
12193      5957 King James Version Bible
12194      5958 King James Version Bible
12195      5959 King James Version Bible
12196      5960 King James Version Bible
12197      5961 King James Version Bible
12198      5962 King James Version Bible
12199      5963 King James Version Bible
12200      5964 King James Version Bible
12201      5965 King James Version Bible
12202      5966 King James Version Bible
12203      5967 King James Version Bible
12204      5968 King James Version Bible
12205      5969 King James Version Bible
12206      5970 King James Version Bible
12207      5971 King James Version Bible
12208      5972 King James Version Bible
12209      5973 King James Version Bible
12210      5974 King James Version Bible
12211      5975 King James Version Bible
12212      5976 King James Version Bible
12213      5977 King James Version Bible
12214      5978 King James Version Bible
12215      5979 King James Version Bible
12216      5980 King James Version Bible
12217      5981 King James Version Bible
12218      5982 King James Version Bible
12219      5983 King James Version Bible
12220      5984 King James Version Bible
12221      5985 King James Version Bible
12222      5986 King James Version Bible
12223      5987 King James Version Bible
12224      5988 King James Version Bible
12225      5989 King James Version Bible
12226      5990 King James Version Bible
12227      5991 King James Version Bible
12228      5992 King James Version Bible
12229      5993 King James Version Bible
12230      5994 King James Version Bible
12231      5995 King James Version Bible
12232      5996 King James Version Bible
12233      5997 King James Version Bible
12234      5998 King James Version Bible
12235      5999 King James Version Bible
12236      6000 King James Version Bible
12237      6001 King James Version Bible
12238      6002 King James Version Bible
12239      6003 King James Version Bible
12240      6004 King James Version Bible
12241      6005 King James Version Bible
12242      6006 King James Version Bible
12243      6007 King James Version Bible
12244      6008 King James Version Bible
12245      6009 King James Version Bible
12246      6010 King James Version Bible
12247      6011 King James Version Bible
12248      6012 King James Version Bible
12249      6013 King James Version Bible
12250      6014 King James Version Bible
12251      6015 King James Version Bible
12252      6016 King James Version Bible
12253      6017 King James Version Bible
12254      6018 King James Version Bible
12255      6019 King James Version Bible
12256      6020 King James Version Bible
12257      6021 King James Version Bible
12258      6022 King James Version Bible
12259      6023 King James Version Bible
12260      6024 King James Version Bible
12261      6025 King James Version Bible
12262      6026 King James Version Bible
12263      6027 King James Version Bible
12264      6028 King James Version Bible
12265      6029 King James Version Bible
12266      6030 King James Version Bible
12267      6031 King James Version Bible
12268      6032 King James Version Bible
12269      6033 King James Version Bible
12270      6034 King James Version Bible
12271      6035 King James Version Bible
12272      6036 King James Version Bible
12273      6037 King James Version Bible
12274      6038 King James Version Bible
12275      6039 King James Version Bible
12276      6040 King James Version Bible
12277      6041 King James Version Bible
12278      6042 King James Version Bible
12279      6043 King James Version Bible
12280      6044 King James Version Bible
12281      6045 King James Version Bible
12282      6046 King James Version Bible
12283      6047 King James Version Bible
12284      6048 King James Version Bible
12285      6049 King James Version Bible
12286      6050 King James Version Bible
12287      6051 King James Version Bible
12288      6052 King James Version Bible
12289      6053 King James Version Bible
12290      6054 King James Version Bible
12291      6055 King James Version Bible
12292      6056 King James Version Bible
12293      6057 King James Version Bible
12294      6058 King James Version Bible
12295      6059 King James Version Bible
12296      6060 King James Version Bible
12297      6061 King James Version Bible
12298      6062 King James Version Bible
12299      6063 King James Version Bible
12300      6064 King James Version Bible
12301      6065 King James Version Bible
12302      6066 King James Version Bible
12303      6067 King James Version Bible
12304      6068 King James Version Bible
12305      6069 King James Version Bible
12306      6070 King James Version Bible
12307      6071 King James Version Bible
12308      6072 King James Version Bible
12309      6073 King James Version Bible
12310      6074 King James Version Bible
12311      6075 King James Version Bible
12312      6076 King James Version Bible
12313      6077 King James Version Bible
12314      6078 King James Version Bible
12315      6079 King James Version Bible
12316      6080 King James Version Bible
12317      6081 King James Version Bible
12318      6082 King James Version Bible
12319      6083 King James Version Bible
12320      6084 King James Version Bible
12321      6085 King James Version Bible
12322      6086 King James Version Bible
12323      6087 King James Version Bible
12324      6088 King James Version Bible
12325      6089 King James Version Bible
12326      6090 King James Version Bible
12327      6091 King James Version Bible
12328      6092 King James Version Bible
12329      6093 King James Version Bible
12330      6094 King James Version Bible
12331      6095 King James Version Bible
12332      6096 King James Version Bible
12333      6097 King James Version Bible
12334      6098 King James Version Bible
12335      6099 King James Version Bible
12336      6100 King James Version Bible
12337      6101 King James Version Bible
12338      6102 King James Version Bible
12339      6103 King James Version Bible
12340      6104 King James Version Bible
12341      6105 King James Version Bible
12342      6106 King James Version Bible
12343      6107 King James Version Bible
12344      6108 King James Version Bible
12345      6109 King James Version Bible
12346      6110 King James Version Bible
12347      6111 King James Version Bible
12348      6112 King James Version Bible
12349      6113 King James Version Bible
12350      6114 King James Version Bible
12351      6115 King James Version Bible
12352      6116 King James Version Bible
12353      6117 King James Version Bible
12354      6118 King James Version Bible
12355      6119 King James Version Bible
12356      6120 King James Version Bible
12357      6121 King James Version Bible
12358      6122 King James Version Bible
12359      6123 King James Version Bible
12360      6124 King James Version Bible
12361      6125 King James Version Bible
12362      6126 King James Version Bible
12363      6127 King James Version Bible
12364      6128 King James Version Bible
12365      6129 King James Version Bible
12366      6130 King James Version Bible
12367      6131 King James Version Bible
12368      6132 King James Version Bible
12369      6133 King James Version Bible
12370      6134 King James Version Bible
12371      6135 King James Version Bible
12372      6136 King James Version Bible
12373      6137 King James Version Bible
12374      6138 King James Version Bible
12375      6139 King James Version Bible
12376      6140 King James Version Bible
12377      6141 King James Version Bible
12378      6142 King James Version Bible
12379      6143 King James Version Bible
12380      6144 King James Version Bible
12381      6145 King James Version Bible
12382      6146 King James Version Bible
12383      6147 King James Version Bible
12384      6148 King James Version Bible
12385      6149 King James Version Bible
12386      6150 King James Version Bible
12387      6151 King James Version Bible
12388      6152 King James Version Bible
12389      6153 King James Version Bible
12390      6154 King James Version Bible
12391      6155 King James Version Bible
12392      6156 King James Version Bible
12393      6157 King James Version Bible
12394      6158 King James Version Bible
12395      6159 King James Version Bible
12396      6160 King James Version Bible
12397      6161 King James Version Bible
12398      6162 King James Version Bible
12399      6163 King James Version Bible
12400      6164 King James Version Bible
12401      6165 King James Version Bible
12402      6166 King James Version Bible
12403      6167 King James Version Bible
12404      6168 King James Version Bible
12405      6169 King James Version Bible
12406      6170 King James Version Bible
12407      6171 King James Version Bible
12408      6172 King James Version Bible
12409      6173 King James Version Bible
12410      6174 King James Version Bible
12411      6175 King James Version Bible
12412      6176 King James Version Bible
12413      6177 King James Version Bible
12414      6178 King James Version Bible
12415      6179 King James Version Bible
12416      6180 King James Version Bible
12417      6181 King James Version Bible
12418      6182 King James Version Bible
12419      6183 King James Version Bible
12420      6184 King James Version Bible
12421      6185 King James Version Bible
12422      6186 King James Version Bible
12423      6187 King James Version Bible
12424      6188 King James Version Bible
12425      6189 King James Version Bible
12426      6190 King James Version Bible
12427      6191 King James Version Bible
12428      6192 King James Version Bible
12429      6193 King James Version Bible
12430      6194 King James Version Bible
12431      6195 King James Version Bible
12432      6196 King James Version Bible
12433      6197 King James Version Bible
12434      6198 King James Version Bible
12435      6199 King James Version Bible
12436      6200 King James Version Bible
12437      6201 King James Version Bible
12438      6202 King James Version Bible
12439      6203 King James Version Bible
12440      6204 King James Version Bible
12441      6205 King James Version Bible
12442      6206 King James Version Bible
12443      6207 King James Version Bible
12444      6208 King James Version Bible
12445      6209 King James Version Bible
12446      6210 King James Version Bible
12447      6211 King James Version Bible
12448      6212 King James Version Bible
12449      6213 King James Version Bible
12450      6214 King James Version Bible
12451      6215 King James Version Bible
12452      6216 King James Version Bible
12453      6217 King James Version Bible
12454      6218 King James Version Bible
12455      6219 King James Version Bible
12456      6220 King James Version Bible
12457      6221 King James Version Bible
12458      6222 King James Version Bible
12459      6223 King James Version Bible
12460      6224 King James Version Bible
12461      6225 King James Version Bible
12462      6226 King James Version Bible
12463      6227 King James Version Bible
12464      6228 King James Version Bible
12465      6229 King James Version Bible
12466      6230 King James Version Bible
12467      6231 King James Version Bible
12468      6232 King James Version Bible
12469      6233 King James Version Bible
12470      6234 King James Version Bible
12471      6235 King James Version Bible
12472      6236 King James Version Bible
12473      6237 King James Version Bible
12474      6238 King James Version Bible
12475      6239 King James Version Bible
12476      6240 King James Version Bible
12477      6241 King James Version Bible
12478      6242 King James Version Bible
12479      6243 King James Version Bible
12480      6244 King James Version Bible
12481      6245 King James Version Bible
12482      6246 King James Version Bible
12483      6247 King James Version Bible
12484      6248 King James Version Bible
12485      6249 King James Version Bible
12486      6250 King James Version Bible
12487      6251 King James Version Bible
12488      6252 King James Version Bible
12489      6253 King James Version Bible
12490      6254 King James Version Bible
12491      6255 King James Version Bible
12492      6256 King James Version Bible
12493      6257 King James Version Bible
12494      6258 King James Version Bible
12495      6259 King James Version Bible
12496      6260 King James Version Bible
12497      6261 King James Version Bible
12498      6262 King James Version Bible
12499      6263 King James Version Bible
12500      6264 King James Version Bible
12501      6265 King James Version Bible
12502      6266 King James Version Bible
12503      6267 King James Version Bible
12504      6268 King James Version Bible
12505      6269 King James Version Bible
12506      6270 King James Version Bible
12507      6271 King James Version Bible
12508      6272 King James Version Bible
12509      6273 King James Version Bible
12510      6274 King James Version Bible
12511      6275 King James Version Bible
12512      6276 King James Version Bible
12513      6277 King James Version Bible
12514      6278 King James Version Bible
12515      6279 King James Version Bible
12516      6280 King James Version Bible
12517      6281 King James Version Bible
12518      6282 King James Version Bible
12519      6283 King James Version Bible
12520      6284 King James Version Bible
12521      6285 King James Version Bible
12522      6286 King James Version Bible
12523      6287 King James Version Bible
12524      6288 King James Version Bible
12525      6289 King James Version Bible
12526      6290 King James Version Bible
12527      6291 King James Version Bible
12528      6292 King James Version Bible
12529      6293 King James Version Bible
12530      6294 King James Version Bible
12531      6295 King James Version Bible
12532      6296 King James Version Bible
12533      6297 King James Version Bible
12534      6298 King James Version Bible
12535      6299 King James Version Bible
12536      6300 King James Version Bible
12537      6301 King James Version Bible
12538      6302 King James Version Bible
12539      6303 King James Version Bible
12540      6304 King James Version Bible
12541      6305 King James Version Bible
12542      6306 King James Version Bible
12543      6307 King James Version Bible
12544      6308 King James Version Bible
12545      6309 King James Version Bible
12546      6310 King James Version Bible
12547      6311 King James Version Bible
12548      6312 King James Version Bible
12549      6313 King James Version Bible
12550      6314 King James Version Bible
12551      6315 King James Version Bible
12552      6316 King James Version Bible
12553      6317 King James Version Bible
12554      6318 King James Version Bible
12555      6319 King James Version Bible
12556      6320 King James Version Bible
12557      6321 King James Version Bible
12558      6322 King James Version Bible
12559      6323 King James Version Bible
12560      6324 King James Version Bible
12561      6325 King James Version Bible
12562      6326 King James Version Bible
12563      6327 King James Version Bible
12564      6328 King James Version Bible
12565      6329 King James Version Bible
12566      6330 King James Version Bible
12567      6331 King James Version Bible
12568      6332 King James Version Bible
12569      6333 King James Version Bible
12570      6334 King James Version Bible
12571      6335 King James Version Bible
12572      6336 King James Version Bible
12573      6337 King James Version Bible
12574      6338 King James Version Bible
12575      6339 King James Version Bible
12576      6340 King James Version Bible
12577      6341 King James Version Bible
12578      6342 King James Version Bible
12579      6343 King James Version Bible
12580      6344 King James Version Bible
12581      6345 King James Version Bible
12582      6346 King James Version Bible
12583      6347 King James Version Bible
12584      6348 King James Version Bible
12585      6349 King James Version Bible
12586      6350 King James Version Bible
12587      6351 King James Version Bible
12588      6352 King James Version Bible
12589      6353 King James Version Bible
12590      6354 King James Version Bible
12591      6355 King James Version Bible
12592      6356 King James Version Bible
12593      6357 King James Version Bible
12594      6358 King James Version Bible
12595      6359 King James Version Bible
12596      6360 King James Version Bible
12597      6361 King James Version Bible
12598      6362 King James Version Bible
12599      6363 King James Version Bible
12600      6364 King James Version Bible
12601      6365 King James Version Bible
12602      6366 King James Version Bible
12603      6367 King James Version Bible
12604      6368 King James Version Bible
12605      6369 King James Version Bible
12606      6370 King James Version Bible
12607      6371 King James Version Bible
12608      6372 King James Version Bible
12609      6373 King James Version Bible
12610      6374 King James Version Bible
12611      6375 King James Version Bible
12612      6376 King James Version Bible
12613      6377 King James Version Bible
12614      6378 King James Version Bible
12615      6379 King James Version Bible
12616      6380 King James Version Bible
12617      6381 King James Version Bible
12618      6382 King James Version Bible
12619      6383 King James Version Bible
12620      6384 King James Version Bible
12621      6385 King James Version Bible
12622      6386 King James Version Bible
12623      6387 King James Version Bible
12624      6388 King James Version Bible
12625      6389 King James Version Bible
12626      6390 King James Version Bible
12627      6391 King James Version Bible
12628      6392 King James Version Bible
12629      6393 King James Version Bible
12630      6394 King James Version Bible
12631      6395 King James Version Bible
12632      6396 King James Version Bible
12633      6397 King James Version Bible
12634      6398 King James Version Bible
12635      6399 King James Version Bible
12636      6400 King James Version Bible
12637      6401 King James Version Bible
12638      6402 King James Version Bible
12639      6403 King James Version Bible
12640      6404 King James Version Bible
12641      6405 King James Version Bible
12642      6406 King James Version Bible
12643      6407 King James Version Bible
12644      6408 King James Version Bible
12645      6409 King James Version Bible
12646      6410 King James Version Bible
12647      6411 King James Version Bible
12648      6412 King James Version Bible
12649      6413 King James Version Bible
12650      6414 King James Version Bible
12651      6415 King James Version Bible
12652      6416 King James Version Bible
12653      6417 King James Version Bible
12654      6418 King James Version Bible
12655      6419 King James Version Bible
12656      6420 King James Version Bible
12657      6421 King James Version Bible
12658      6422 King James Version Bible
12659      6423 King James Version Bible
12660      6424 King James Version Bible
12661      6425 King James Version Bible
12662      6426 King James Version Bible
12663      6427 King James Version Bible
12664      6428 King James Version Bible
12665      6429 King James Version Bible
12666      6430 King James Version Bible
12667      6431 King James Version Bible
12668      6432 King James Version Bible
12669      6433 King James Version Bible
12670      6434 King James Version Bible
12671      6435 King James Version Bible
12672      6436 King James Version Bible
12673      6437 King James Version Bible
12674      6438 King James Version Bible
12675      6439 King James Version Bible
12676      6440 King James Version Bible
12677      6441 King James Version Bible
12678      6442 King James Version Bible
12679      6443 King James Version Bible
12680      6444 King James Version Bible
12681      6445 King James Version Bible
12682      6446 King James Version Bible
12683      6447 King James Version Bible
12684      6448 King James Version Bible
12685      6449 King James Version Bible
12686      6450 King James Version Bible
12687      6451 King James Version Bible
12688      6452 King James Version Bible
12689      6453 King James Version Bible
12690      6454 King James Version Bible
12691      6455 King James Version Bible
12692      6456 King James Version Bible
12693      6457 King James Version Bible
12694      6458 King James Version Bible
12695      6459 King James Version Bible
12696      6460 King James Version Bible
12697      6461 King James Version Bible
12698      6462 King James Version Bible
12699      6463 King James Version Bible
12700      6464 King James Version Bible
12701      6465 King James Version Bible
12702      6466 King James Version Bible
12703      6467 King James Version Bible
12704      6468 King James Version Bible
12705      6469 King James Version Bible
12706      6470 King James Version Bible
12707      6471 King James Version Bible
12708      6472 King James Version Bible
12709      6473 King James Version Bible
12710      6474 King James Version Bible
12711      6475 King James Version Bible
12712      6476 King James Version Bible
12713      6477 King James Version Bible
12714      6478 King James Version Bible
12715      6479 King James Version Bible
12716      6480 King James Version Bible
12717      6481 King James Version Bible
12718      6482 King James Version Bible
12719      6483 King James Version Bible
12720      6484 King James Version Bible
12721      6485 King James Version Bible
12722      6486 King James Version Bible
12723      6487 King James Version Bible
12724      6488 King James Version Bible
12725      6489 King James Version Bible
12726      6490 King James Version Bible
12727      6491 King James Version Bible
12728      6492 King James Version Bible
12729      6493 King James Version Bible
12730      6494 King James Version Bible
12731      6495 King James Version Bible
12732      6496 King James Version Bible
12733      6497 King James Version Bible
12734      6498 King James Version Bible
12735      6499 King James Version Bible
12736      6500 King James Version Bible
12737      6501 King James Version Bible
12738      6502 King James Version Bible
12739      6503 King James Version Bible
12740      6504 King James Version Bible
12741      6505 King James Version Bible
12742      6506 King James Version Bible
12743      6507 King James Version Bible
12744      6508 King James Version Bible
12745      6509 King James Version Bible
12746      6510 King James Version Bible
12747      6511 King James Version Bible
12748      6512 King James Version Bible
12749      6513 King James Version Bible
12750      6514 King James Version Bible
12751      6515 King James Version Bible
12752      6516 King James Version Bible
12753      6517 King James Version Bible
12754      6518 King James Version Bible
12755      6519 King James Version Bible
12756      6520 King James Version Bible
12757      6521 King James Version Bible
12758      6522 King James Version Bible
12759      6523 King James Version Bible
12760      6524 King James Version Bible
12761      6525 King James Version Bible
12762      6526 King James Version Bible
12763      6527 King James Version Bible
12764      6528 King James Version Bible
12765      6529 King James Version Bible
12766      6530 King James Version Bible
12767      6531 King James Version Bible
12768      6532 King James Version Bible
12769      6533 King James Version Bible
12770      6534 King James Version Bible
12771      6535 King James Version Bible
12772      6536 King James Version Bible
12773      6537 King James Version Bible
12774      6538 King James Version Bible
12775      6539 King James Version Bible
12776      6540 King James Version Bible
12777      6541 King James Version Bible
12778      6542 King James Version Bible
12779      6543 King James Version Bible
12780      6544 King James Version Bible
12781      6545 King James Version Bible
12782      6546 King James Version Bible
12783      6547 King James Version Bible
12784      6548 King James Version Bible
12785      6549 King James Version Bible
12786      6550 King James Version Bible
12787      6551 King James Version Bible
12788      6552 King James Version Bible
12789      6553 King James Version Bible
12790      6554 King James Version Bible
12791      6555 King James Version Bible
12792      6556 King James Version Bible
12793      6557 King James Version Bible
12794      6558 King James Version Bible
12795      6559 King James Version Bible
12796      6560 King James Version Bible
12797      6561 King James Version Bible
12798      6562 King James Version Bible
12799      6563 King James Version Bible
12800      6564 King James Version Bible
12801      6565 King James Version Bible
12802      6566 King James Version Bible
12803      6567 King James Version Bible
12804      6568 King James Version Bible
12805      6569 King James Version Bible
12806      6570 King James Version Bible
12807      6571 King James Version Bible
12808      6572 King James Version Bible
12809      6573 King James Version Bible
12810      6574 King James Version Bible
12811      6575 King James Version Bible
12812      6576 King James Version Bible
12813      6577 King James Version Bible
12814      6578 King James Version Bible
12815      6579 King James Version Bible
12816      6580 King James Version Bible
12817      6581 King James Version Bible
12818      6582 King James Version Bible
12819      6583 King James Version Bible
12820      6584 King James Version Bible
12821      6585 King James Version Bible
12822      6586 King James Version Bible
12823      6587 King James Version Bible
12824      6588 King James Version Bible
12825      6589 King James Version Bible
12826      6590 King James Version Bible
12827      6591 King James Version Bible
12828      6592 King James Version Bible
12829      6593 King James Version Bible
12830      6594 King James Version Bible
12831      6595 King James Version Bible
12832      6596 King James Version Bible
12833      6597 King James Version Bible
12834      6598 King James Version Bible
12835      6599 King James Version Bible
12836      6600 King James Version Bible
12837      6601 King James Version Bible
12838      6602 King James Version Bible
12839      6603 King James Version Bible
12840      6604 King James Version Bible
12841      6605 King James Version Bible
12842      6606 King James Version Bible
12843      6607 King James Version Bible
12844      6608 King James Version Bible
12845      6609 King James Version Bible
12846      6610 King James Version Bible
12847      6611 King James Version Bible
12848      6612 King James Version Bible
12849      6613 King James Version Bible
12850      6614 King James Version Bible
12851      6615 King James Version Bible
12852      6616 King James Version Bible
12853      6617 King James Version Bible
12854      6618 King James Version Bible
12855      6619 King James Version Bible
12856      6620 King James Version Bible
12857      6621 King James Version Bible
12858      6622 King James Version Bible
12859      6623 King James Version Bible
12860      6624 King James Version Bible
12861      6625 King James Version Bible
12862      6626 King James Version Bible
12863      6627 King James Version Bible
12864      6628 King James Version Bible
12865      6629 King James Version Bible
12866      6630 King James Version Bible
12867      6631 King James Version Bible
12868      6632 King James Version Bible
12869      6633 King James Version Bible
12870      6634 King James Version Bible
12871      6635 King James Version Bible
12872      6636 King James Version Bible
12873      6637 King James Version Bible
12874      6638 King James Version Bible
12875      6639 King James Version Bible
12876      6640 King James Version Bible
12877      6641 King James Version Bible
12878      6642 King James Version Bible
12879      6643 King James Version Bible
12880      6644 King James Version Bible
12881      6645 King James Version Bible
12882      6646 King James Version Bible
12883      6647 King James Version Bible
12884      6648 King James Version Bible
12885      6649 King James Version Bible
12886      6650 King James Version Bible
12887      6651 King James Version Bible
12888      6652 King James Version Bible
12889      6653 King James Version Bible
12890      6654 King James Version Bible
12891      6655 King James Version Bible
12892      6656 King James Version Bible
12893      6657 King James Version Bible
12894      6658 King James Version Bible
12895      6659 King James Version Bible
12896      6660 King James Version Bible
12897      6661 King James Version Bible
12898      6662 King James Version Bible
12899      6663 King James Version Bible
12900      6664 King James Version Bible
12901      6665 King James Version Bible
12902      6666 King James Version Bible
12903      6667 King James Version Bible
12904      6668 King James Version Bible
12905      6669 King James Version Bible
12906      6670 King James Version Bible
12907      6671 King James Version Bible
12908      6672 King James Version Bible
12909      6673 King James Version Bible
12910      6674 King James Version Bible
12911      6675 King James Version Bible
12912      6676 King James Version Bible
12913      6677 King James Version Bible
12914      6678 King James Version Bible
12915      6679 King James Version Bible
12916      6680 King James Version Bible
12917      6681 King James Version Bible
12918      6682 King James Version Bible
12919      6683 King James Version Bible
12920      6684 King James Version Bible
12921      6685 King James Version Bible
12922      6686 King James Version Bible
12923      6687 King James Version Bible
12924      6688 King James Version Bible
12925      6689 King James Version Bible
12926      6690 King James Version Bible
12927      6691 King James Version Bible
12928      6692 King James Version Bible
12929      6693 King James Version Bible
12930      6694 King James Version Bible
12931      6695 King James Version Bible
12932      6696 King James Version Bible
12933      6697 King James Version Bible
12934      6698 King James Version Bible
12935      6699 King James Version Bible
12936      6700 King James Version Bible
12937      6701 King James Version Bible
12938      6702 King James Version Bible
12939      6703 King James Version Bible
12940      6704 King James Version Bible
12941      6705 King James Version Bible
12942      6706 King James Version Bible
12943      6707 King James Version Bible
12944      6708 King James Version Bible
12945      6709 King James Version Bible
12946      6710 King James Version Bible
12947      6711 King James Version Bible
12948      6712 King James Version Bible
12949      6713 King James Version Bible
12950      6714 King James Version Bible
12951      6715 King James Version Bible
12952      6716 King James Version Bible
12953      6717 King James Version Bible
12954      6718 King James Version Bible
12955      6719 King James Version Bible
12956      6720 King James Version Bible
12957      6721 King James Version Bible
12958      6722 King James Version Bible
12959      6723 King James Version Bible
12960      6724 King James Version Bible
12961      6725 King James Version Bible
12962      6726 King James Version Bible
12963      6727 King James Version Bible
12964      6728 King James Version Bible
12965      6729 King James Version Bible
12966      6730 King James Version Bible
12967      6731 King James Version Bible
12968      6732 King James Version Bible
12969      6733 King James Version Bible
12970      6734 King James Version Bible
12971      6735 King James Version Bible
12972      6736 King James Version Bible
12973      6737 King James Version Bible
12974      6738 King James Version Bible
12975      6739 King James Version Bible
12976      6740 King James Version Bible
12977      6741 King James Version Bible
12978      6742 King James Version Bible
12979      6743 King James Version Bible
12980      6744 King James Version Bible
12981      6745 King James Version Bible
12982      6746 King James Version Bible
12983      6747 King James Version Bible
12984      6748 King James Version Bible
12985      6749 King James Version Bible
12986      6750 King James Version Bible
12987      6751 King James Version Bible
12988      6752 King James Version Bible
12989      6753 King James Version Bible
12990      6754 King James Version Bible
12991      6755 King James Version Bible
12992      6756 King James Version Bible
12993      6757 King James Version Bible
12994      6758 King James Version Bible
12995      6759 King James Version Bible
12996      6760 King James Version Bible
12997      6761 King James Version Bible
12998      6762 King James Version Bible
12999      6763 King James Version Bible
13000      6764 King James Version Bible
13001      6765 King James Version Bible
13002      6766 King James Version Bible
13003      6767 King James Version Bible
13004      6768 King James Version Bible
13005      6769 King James Version Bible
13006      6770 King James Version Bible
13007      6771 King James Version Bible
13008      6772 King James Version Bible
13009      6773 King James Version Bible
13010      6774 King James Version Bible
13011      6775 King James Version Bible
13012      6776 King James Version Bible
13013      6777 King James Version Bible
13014      6778 King James Version Bible
13015      6779 King James Version Bible
13016      6780 King James Version Bible
13017      6781 King James Version Bible
13018      6782 King James Version Bible
13019      6783 King James Version Bible
13020      6784 King James Version Bible
13021      6785 King James Version Bible
13022      6786 King James Version Bible
13023      6787 King James Version Bible
13024      6788 King James Version Bible
13025      6789 King James Version Bible
13026      6790 King James Version Bible
13027      6791 King James Version Bible
13028      6792 King James Version Bible
13029      6793 King James Version Bible
13030      6794 King James Version Bible
13031      6795 King James Version Bible
13032      6796 King James Version Bible
13033      6797 King James Version Bible
13034      6798 King James Version Bible
13035      6799 King James Version Bible
13036      6800 King James Version Bible
13037      6801 King James Version Bible
13038      6802 King James Version Bible
13039      6803 King James Version Bible
13040      6804 King James Version Bible
13041      6805 King James Version Bible
13042      6806 King James Version Bible
13043      6807 King James Version Bible
13044      6808 King James Version Bible
13045      6809 King James Version Bible
13046      6810 King James Version Bible
13047      6811 King James Version Bible
13048      6812 King James Version Bible
13049      6813 King James Version Bible
13050      6814 King James Version Bible
13051      6815 King James Version Bible
13052      6816 King James Version Bible
13053      6817 King James Version Bible
13054      6818 King James Version Bible
13055      6819 King James Version Bible
13056      6820 King James Version Bible
13057      6821 King James Version Bible
13058      6822 King James Version Bible
13059      6823 King James Version Bible
13060      6824 King James Version Bible
13061      6825 King James Version Bible
13062      6826 King James Version Bible
13063      6827 King James Version Bible
13064      6828 King James Version Bible
13065      6829 King James Version Bible
13066      6830 King James Version Bible
13067      6831 King James Version Bible
13068      6832 King James Version Bible
13069      6833 King James Version Bible
13070      6834 King James Version Bible
13071      6835 King James Version Bible
13072      6836 King James Version Bible
13073      6837 King James Version Bible
13074      6838 King James Version Bible
13075      6839 King James Version Bible
13076      6840 King James Version Bible
13077      6841 King James Version Bible
13078      6842 King James Version Bible
13079      6843 King James Version Bible
13080      6844 King James Version Bible
13081      6845 King James Version Bible
13082      6846 King James Version Bible
13083      6847 King James Version Bible
13084      6848 King James Version Bible
13085      6849 King James Version Bible
13086      6850 King James Version Bible
13087      6851 King James Version Bible
13088      6852 King James Version Bible
13089      6853 King James Version Bible
13090      6854 King James Version Bible
13091      6855 King James Version Bible
13092      6856 King James Version Bible
13093      6857 King James Version Bible
13094      6858 King James Version Bible
13095      6859 King James Version Bible
13096      6860 King James Version Bible
13097      6861 King James Version Bible
13098      6862 King James Version Bible
13099      6863 King James Version Bible
13100      6864 King James Version Bible
13101      6865 King James Version Bible
13102      6866 King James Version Bible
13103      6867 King James Version Bible
13104      6868 King James Version Bible
13105      6869 King James Version Bible
13106      6870 King James Version Bible
13107      6871 King James Version Bible
13108      6872 King James Version Bible
13109      6873 King James Version Bible
13110      6874 King James Version Bible
13111      6875 King James Version Bible
13112      6876 King James Version Bible
13113      6877 King James Version Bible
13114      6878 King James Version Bible
13115      6879 King James Version Bible
13116      6880 King James Version Bible
13117      6881 King James Version Bible
13118      6882 King James Version Bible
13119      6883 King James Version Bible
13120      6884 King James Version Bible
13121      6885 King James Version Bible
13122      6886 King James Version Bible
13123      6887 King James Version Bible
13124      6888 King James Version Bible
13125      6889 King James Version Bible
13126      6890 King James Version Bible
13127      6891 King James Version Bible
13128      6892 King James Version Bible
13129      6893 King James Version Bible
13130      6894 King James Version Bible
13131      6895 King James Version Bible
13132      6896 King James Version Bible
13133      6897 King James Version Bible
13134      6898 King James Version Bible
13135      6899 King James Version Bible
13136      6900 King James Version Bible
13137      6901 King James Version Bible
13138      6902 King James Version Bible
13139      6903 King James Version Bible
13140      6904 King James Version Bible
13141      6905 King James Version Bible
13142      6906 King James Version Bible
13143      6907 King James Version Bible
13144      6908 King James Version Bible
13145      6909 King James Version Bible
13146      6910 King James Version Bible
13147      6911 King James Version Bible
13148      6912 King James Version Bible
13149      6913 King James Version Bible
13150      6914 King James Version Bible
13151      6915 King James Version Bible
13152      6916 King James Version Bible
13153      6917 King James Version Bible
13154      6918 King James Version Bible
13155      6919 King James Version Bible
13156      6920 King James Version Bible
13157      6921 King James Version Bible
13158      6922 King James Version Bible
13159      6923 King James Version Bible
13160      6924 King James Version Bible
13161      6925 King James Version Bible
13162      6926 King James Version Bible
13163      6927 King James Version Bible
13164      6928 King James Version Bible
13165      6929 King James Version Bible
13166      6930 King James Version Bible
13167      6931 King James Version Bible
13168      6932 King James Version Bible
13169      6933 King James Version Bible
13170      6934 King James Version Bible
13171      6935 King James Version Bible
13172      6936 King James Version Bible
13173      6937 King James Version Bible
13174      6938 King James Version Bible
13175      6939 King James Version Bible
13176      6940 King James Version Bible
13177      6941 King James Version Bible
13178      6942 King James Version Bible
13179      6943 King James Version Bible
13180      6944 King James Version Bible
13181      6945 King James Version Bible
13182      6946 King James Version Bible
13183      6947 King James Version Bible
13184      6948 King James Version Bible
13185      6949 King James Version Bible
13186      6950 King James Version Bible
13187      6951 King James Version Bible
13188      6952 King James Version Bible
13189      6953 King James Version Bible
13190      6954 King James Version Bible
13191      6955 King James Version Bible
13192      6956 King James Version Bible
13193      6957 King James Version Bible
13194      6958 King James Version Bible
13195      6959 King James Version Bible
13196      6960 King James Version Bible
13197      6961 King James Version Bible
13198      6962 King James Version Bible
13199      6963 King James Version Bible
13200      6964 King James Version Bible
13201      6965 King James Version Bible
13202      6966 King James Version Bible
13203      6967 King James Version Bible
13204      6968 King James Version Bible
13205      6969 King James Version Bible
13206      6970 King James Version Bible
13207      6971 King James Version Bible
13208      6972 King James Version Bible
13209      6973 King James Version Bible
13210      6974 King James Version Bible
13211      6975 King James Version Bible
13212      6976 King James Version Bible
13213      6977 King James Version Bible
13214      6978 King James Version Bible
13215      6979 King James Version Bible
13216      6980 King James Version Bible
13217      6981 King James Version Bible
13218      6982 King James Version Bible
13219      6983 King James Version Bible
13220      6984 King James Version Bible
13221      6985 King James Version Bible
13222      6986 King James Version Bible
13223      6987 King James Version Bible
13224      6988 King James Version Bible
13225      6989 King James Version Bible
13226      6990 King James Version Bible
13227      6991 King James Version Bible
13228      6992 King James Version Bible
13229      6993 King James Version Bible
13230      6994 King James Version Bible
13231      6995 King James Version Bible
13232      6996 King James Version Bible
13233      6997 King James Version Bible
13234      6998 King James Version Bible
13235      6999 King James Version Bible
13236      7000 King James Version Bible
13237      7001 King James Version Bible
13238      7002 King James Version Bible
13239      7003 King James Version Bible
13240      7004 King James Version Bible
13241      7005 King James Version Bible
13242      7006 King James Version Bible
13243      7007 King James Version Bible
13244      7008 King James Version Bible
13245      7009 King James Version Bible
13246      7010 King James Version Bible
13247      7011 King James Version Bible
13248      7012 King James Version Bible
13249      7013 King James Version Bible
13250      7014 King James Version Bible
13251      7015 King James Version Bible
13252      7016 King James Version Bible
13253      7017 King James Version Bible
13254      7018 King James Version Bible
13255      7019 King James Version Bible
13256      7020 King James Version Bible
13257      7021 King James Version Bible
13258      7022 King James Version Bible
13259      7023 King James Version Bible
13260      7024 King James Version Bible
13261      7025 King James Version Bible
13262      7026 King James Version Bible
13263      7027 King James Version Bible
13264      7028 King James Version Bible
13265      7029 King James Version Bible
13266      7030 King James Version Bible
13267      7031 King James Version Bible
13268      7032 King James Version Bible
13269      7033 King James Version Bible
13270      7034 King James Version Bible
13271      7035 King James Version Bible
13272      7036 King James Version Bible
13273      7037 King James Version Bible
13274      7038 King James Version Bible
13275      7039 King James Version Bible
13276      7040 King James Version Bible
13277      7041 King James Version Bible
13278      7042 King James Version Bible
13279      7043 King James Version Bible
13280      7044 King James Version Bible
13281      7045 King James Version Bible
13282      7046 King James Version Bible
13283      7047 King James Version Bible
13284      7048 King James Version Bible
13285      7049 King James Version Bible
13286      7050 King James Version Bible
13287      7051 King James Version Bible
13288      7052 King James Version Bible
13289      7053 King James Version Bible
13290      7054 King James Version Bible
13291      7055 King James Version Bible
13292      7056 King James Version Bible
13293      7057 King James Version Bible
13294      7058 King James Version Bible
13295      7059 King James Version Bible
13296      7060 King James Version Bible
13297      7061 King James Version Bible
13298      7062 King James Version Bible
13299      7063 King James Version Bible
13300      7064 King James Version Bible
13301      7065 King James Version Bible
13302      7066 King James Version Bible
13303      7067 King James Version Bible
13304      7068 King James Version Bible
13305      7069 King James Version Bible
13306      7070 King James Version Bible
13307      7071 King James Version Bible
13308      7072 King James Version Bible
13309      7073 King James Version Bible
13310      7074 King James Version Bible
13311      7075 King James Version Bible
13312      7076 King James Version Bible
13313      7077 King James Version Bible
13314      7078 King James Version Bible
13315      7079 King James Version Bible
13316      7080 King James Version Bible
13317      7081 King James Version Bible
13318      7082 King James Version Bible
13319      7083 King James Version Bible
13320      7084 King James Version Bible
13321      7085 King James Version Bible
13322      7086 King James Version Bible
13323      7087 King James Version Bible
13324      7088 King James Version Bible
13325      7089 King James Version Bible
13326      7090 King James Version Bible
13327      7091 King James Version Bible
13328      7092 King James Version Bible
13329      7093 King James Version Bible
13330      7094 King James Version Bible
13331      7095 King James Version Bible
13332      7096 King James Version Bible
13333      7097 King James Version Bible
13334      7098 King James Version Bible
13335      7099 King James Version Bible
13336      7100 King James Version Bible
13337      7101 King James Version Bible
13338      7102 King James Version Bible
13339      7103 King James Version Bible
13340      7104 King James Version Bible
13341      7105 King James Version Bible
13342      7106 King James Version Bible
13343      7107 King James Version Bible
13344      7108 King James Version Bible
13345      7109 King James Version Bible
13346      7110 King James Version Bible
13347      7111 King James Version Bible
13348      7112 King James Version Bible
13349      7113 King James Version Bible
13350      7114 King James Version Bible
13351      7115 King James Version Bible
13352      7116 King James Version Bible
13353      7117 King James Version Bible
13354      7118 King James Version Bible
13355      7119 King James Version Bible
13356      7120 King James Version Bible
13357      7121 King James Version Bible
13358      7122 King James Version Bible
13359      7123 King James Version Bible
13360      7124 King James Version Bible
13361      7125 King James Version Bible
13362      7126 King James Version Bible
13363      7127 King James Version Bible
13364      7128 King James Version Bible
13365      7129 King James Version Bible
13366      7130 King James Version Bible
13367      7131 King James Version Bible
13368      7132 King James Version Bible
13369      7133 King James Version Bible
13370      7134 King James Version Bible
13371      7135 King James Version Bible
13372      7136 King James Version Bible
13373      7137 King James Version Bible
13374      7138 King James Version Bible
13375      7139 King James Version Bible
13376      7140 King James Version Bible
13377      7141 King James Version Bible
13378      7142 King James Version Bible
13379      7143 King James Version Bible
13380      7144 King James Version Bible
13381      7145 King James Version Bible
13382      7146 King James Version Bible
13383      7147 King James Version Bible
13384      7148 King James Version Bible
13385      7149 King James Version Bible
13386      7150 King James Version Bible
13387      7151 King James Version Bible
13388      7152 King James Version Bible
13389      7153 King James Version Bible
13390      7154 King James Version Bible
13391      7155 King James Version Bible
13392      7156 King James Version Bible
13393      7157 King James Version Bible
13394      7158 King James Version Bible
13395      7159 King James Version Bible
13396      7160 King James Version Bible
13397      7161 King James Version Bible
13398      7162 King James Version Bible
13399      7163 King James Version Bible
13400      7164 King James Version Bible
13401      7165 King James Version Bible
13402      7166 King James Version Bible
13403      7167 King James Version Bible
13404      7168 King James Version Bible
13405      7169 King James Version Bible
13406      7170 King James Version Bible
13407      7171 King James Version Bible
13408      7172 King James Version Bible
13409      7173 King James Version Bible
13410      7174 King James Version Bible
13411      7175 King James Version Bible
13412      7176 King James Version Bible
13413      7177 King James Version Bible
13414      7178 King James Version Bible
13415      7179 King James Version Bible
13416      7180 King James Version Bible
13417      7181 King James Version Bible
13418      7182 King James Version Bible
13419      7183 King James Version Bible
13420      7184 King James Version Bible
13421      7185 King James Version Bible
13422      7186 King James Version Bible
13423      7187 King James Version Bible
13424      7188 King James Version Bible
13425      7189 King James Version Bible
13426      7190 King James Version Bible
13427      7191 King James Version Bible
13428      7192 King James Version Bible
13429      7193 King James Version Bible
13430      7194 King James Version Bible
13431      7195 King James Version Bible
13432      7196 King James Version Bible
13433      7197 King James Version Bible
13434      7198 King James Version Bible
13435      7199 King James Version Bible
13436      7200 King James Version Bible
13437      7201 King James Version Bible
13438      7202 King James Version Bible
13439      7203 King James Version Bible
13440      7204 King James Version Bible
13441      7205 King James Version Bible
13442      7206 King James Version Bible
13443      7207 King James Version Bible
13444      7208 King James Version Bible
13445      7209 King James Version Bible
13446      7210 King James Version Bible
13447      7211 King James Version Bible
13448      7212 King James Version Bible
13449      7213 King James Version Bible
13450      7214 King James Version Bible
13451      7215 King James Version Bible
13452      7216 King James Version Bible
13453      7217 King James Version Bible
13454      7218 King James Version Bible
13455      7219 King James Version Bible
13456      7220 King James Version Bible
13457      7221 King James Version Bible
13458      7222 King James Version Bible
13459      7223 King James Version Bible
13460      7224 King James Version Bible
13461      7225 King James Version Bible
13462      7226 King James Version Bible
13463      7227 King James Version Bible
13464      7228 King James Version Bible
13465      7229 King James Version Bible
13466      7230 King James Version Bible
13467      7231 King James Version Bible
13468      7232 King James Version Bible
13469      7233 King James Version Bible
13470      7234 King James Version Bible
13471      7235 King James Version Bible
13472      7236 King James Version Bible
13473      7237 King James Version Bible
13474      7238 King James Version Bible
13475      7239 King James Version Bible
13476      7240 King James Version Bible
13477      7241 King James Version Bible
13478      7242 King James Version Bible
13479      7243 King James Version Bible
13480      7244 King James Version Bible
13481      7245 King James Version Bible
13482      7246 King James Version Bible
13483      7247 King James Version Bible
13484      7248 King James Version Bible
13485      7249 King James Version Bible
13486      7250 King James Version Bible
13487      7251 King James Version Bible
13488      7252 King James Version Bible
13489      7253 King James Version Bible
13490      7254 King James Version Bible
13491      7255 King James Version Bible
13492      7256 King James Version Bible
13493      7257 King James Version Bible
13494      7258 King James Version Bible
13495      7259 King James Version Bible
13496      7260 King James Version Bible
13497      7261 King James Version Bible
13498      7262 King James Version Bible
13499      7263 King James Version Bible
13500      7264 King James Version Bible
13501      7265 King James Version Bible
13502      7266 King James Version Bible
13503      7267 King James Version Bible
13504      7268 King James Version Bible
13505      7269 King James Version Bible
13506      7270 King James Version Bible
13507      7271 King James Version Bible
13508      7272 King James Version Bible
13509      7273 King James Version Bible
13510      7274 King James Version Bible
13511      7275 King James Version Bible
13512      7276 King James Version Bible
13513      7277 King James Version Bible
13514      7278 King James Version Bible
13515      7279 King James Version Bible
13516      7280 King James Version Bible
13517      7281 King James Version Bible
13518      7282 King James Version Bible
13519      7283 King James Version Bible
13520      7284 King James Version Bible
13521      7285 King James Version Bible
13522      7286 King James Version Bible
13523      7287 King James Version Bible
13524      7288 King James Version Bible
13525      7289 King James Version Bible
13526      7290 King James Version Bible
13527      7291 King James Version Bible
13528      7292 King James Version Bible
13529      7293 King James Version Bible
13530      7294 King James Version Bible
13531      7295 King James Version Bible
13532      7296 King James Version Bible
13533      7297 King James Version Bible
13534      7298 King James Version Bible
13535      7299 King James Version Bible
13536      7300 King James Version Bible
13537      7301 King James Version Bible
13538      7302 King James Version Bible
13539      7303 King James Version Bible
13540      7304 King James Version Bible
13541      7305 King James Version Bible
13542      7306 King James Version Bible
13543      7307 King James Version Bible
13544      7308 King James Version Bible
13545      7309 King James Version Bible
13546      7310 King James Version Bible
13547      7311 King James Version Bible
13548      7312 King James Version Bible
13549      7313 King James Version Bible
13550      7314 King James Version Bible
13551      7315 King James Version Bible
13552      7316 King James Version Bible
13553      7317 King James Version Bible
13554      7318 King James Version Bible
13555      7319 King James Version Bible
13556      7320 King James Version Bible
13557      7321 King James Version Bible
13558      7322 King James Version Bible
13559      7323 King James Version Bible
13560      7324 King James Version Bible
13561      7325 King James Version Bible
13562      7326 King James Version Bible
13563      7327 King James Version Bible
13564      7328 King James Version Bible
13565      7329 King James Version Bible
13566      7330 King James Version Bible
13567      7331 King James Version Bible
13568      7332 King James Version Bible
13569      7333 King James Version Bible
13570      7334 King James Version Bible
13571      7335 King James Version Bible
13572      7336 King James Version Bible
13573      7337 King James Version Bible
13574      7338 King James Version Bible
13575      7339 King James Version Bible
13576      7340 King James Version Bible
13577      7341 King James Version Bible
13578      7342 King James Version Bible
13579      7343 King James Version Bible
13580      7344 King James Version Bible
13581      7345 King James Version Bible
13582      7346 King James Version Bible
13583      7347 King James Version Bible
13584      7348 King James Version Bible
13585      7349 King James Version Bible
13586      7350 King James Version Bible
13587      7351 King James Version Bible
13588      7352 King James Version Bible
13589      7353 King James Version Bible
13590      7354 King James Version Bible
13591      7355 King James Version Bible
13592      7356 King James Version Bible
13593      7357 King James Version Bible
13594      7358 King James Version Bible
13595      7359 King James Version Bible
13596      7360 King James Version Bible
13597      7361 King James Version Bible
13598      7362 King James Version Bible
13599      7363 King James Version Bible
13600      7364 King James Version Bible
13601      7365 King James Version Bible
13602      7366 King James Version Bible
13603      7367 King James Version Bible
13604      7368 King James Version Bible
13605      7369 King James Version Bible
13606      7370 King James Version Bible
13607      7371 King James Version Bible
13608      7372 King James Version Bible
13609      7373 King James Version Bible
13610      7374 King James Version Bible
13611      7375 King James Version Bible
13612      7376 King James Version Bible
13613      7377 King James Version Bible
13614      7378 King James Version Bible
13615      7379 King James Version Bible
13616      7380 King James Version Bible
13617      7381 King James Version Bible
13618      7382 King James Version Bible
13619      7383 King James Version Bible
13620      7384 King James Version Bible
13621      7385 King James Version Bible
13622      7386 King James Version Bible
13623      7387 King James Version Bible
13624      7388 King James Version Bible
13625      7389 King James Version Bible
13626      7390 King James Version Bible
13627      7391 King James Version Bible
13628      7392 King James Version Bible
13629      7393 King James Version Bible
13630      7394 King James Version Bible
13631      7395 King James Version Bible
13632      7396 King James Version Bible
13633      7397 King James Version Bible
13634      7398 King James Version Bible
13635      7399 King James Version Bible
13636      7400 King James Version Bible
13637      7401 King James Version Bible
13638      7402 King James Version Bible
13639      7403 King James Version Bible
13640      7404 King James Version Bible
13641      7405 King James Version Bible
13642      7406 King James Version Bible
13643      7407 King James Version Bible
13644      7408 King James Version Bible
13645      7409 King James Version Bible
13646      7410 King James Version Bible
13647      7411 King James Version Bible
13648      7412 King James Version Bible
13649      7413 King James Version Bible
13650      7414 King James Version Bible
13651      7415 King James Version Bible
13652      7416 King James Version Bible
13653      7417 King James Version Bible
13654      7418 King James Version Bible
13655      7419 King James Version Bible
13656      7420 King James Version Bible
13657      7421 King James Version Bible
13658      7422 King James Version Bible
13659      7423 King James Version Bible
13660      7424 King James Version Bible
13661      7425 King James Version Bible
13662      7426 King James Version Bible
13663      7427 King James Version Bible
13664      7428 King James Version Bible
13665      7429 King James Version Bible
13666      7430 King James Version Bible
13667      7431 King James Version Bible
13668      7432 King James Version Bible
13669      7433 King James Version Bible
13670      7434 King James Version Bible
13671      7435 King James Version Bible
13672      7436 King James Version Bible
13673      7437 King James Version Bible
13674      7438 King James Version Bible
13675      7439 King James Version Bible
13676      7440 King James Version Bible
13677      7441 King James Version Bible
13678      7442 King James Version Bible
13679      7443 King James Version Bible
13680      7444 King James Version Bible
13681      7445 King James Version Bible
13682      7446 King James Version Bible
13683      7447 King James Version Bible
13684      7448 King James Version Bible
13685      7449 King James Version Bible
13686      7450 King James Version Bible
13687      7451 King James Version Bible
13688      7452 King James Version Bible
13689      7453 King James Version Bible
13690      7454 King James Version Bible
13691      7455 King James Version Bible
13692      7456 King James Version Bible
13693      7457 King James Version Bible
13694      7458 King James Version Bible
13695      7459 King James Version Bible
13696      7460 King James Version Bible
13697      7461 King James Version Bible
13698      7462 King James Version Bible
13699      7463 King James Version Bible
13700      7464 King James Version Bible
13701      7465 King James Version Bible
13702      7466 King James Version Bible
13703      7467 King James Version Bible
13704      7468 King James Version Bible
13705      7469 King James Version Bible
13706      7470 King James Version Bible
13707      7471 King James Version Bible
13708      7472 King James Version Bible
13709      7473 King James Version Bible
13710      7474 King James Version Bible
13711      7475 King James Version Bible
13712      7476 King James Version Bible
13713      7477 King James Version Bible
13714      7478 King James Version Bible
13715      7479 King James Version Bible
13716      7480 King James Version Bible
13717      7481 King James Version Bible
13718      7482 King James Version Bible
13719      7483 King James Version Bible
13720      7484 King James Version Bible
13721      7485 King James Version Bible
13722      7486 King James Version Bible
13723      7487 King James Version Bible
13724      7488 King James Version Bible
13725      7489 King James Version Bible
13726      7490 King James Version Bible
13727      7491 King James Version Bible
13728      7492 King James Version Bible
13729      7493 King James Version Bible
13730      7494 King James Version Bible
13731      7495 King James Version Bible
13732      7496 King James Version Bible
13733      7497 King James Version Bible
13734      7498 King James Version Bible
13735      7499 King James Version Bible
13736      7500 King James Version Bible
13737      7501 King James Version Bible
13738      7502 King James Version Bible
13739      7503 King James Version Bible
13740      7504 King James Version Bible
13741      7505 King James Version Bible
13742      7506 King James Version Bible
13743      7507 King James Version Bible
13744      7508 King James Version Bible
13745      7509 King James Version Bible
13746      7510 King James Version Bible
13747      7511 King James Version Bible
13748      7512 King James Version Bible
13749      7513 King James Version Bible
13750      7514 King James Version Bible
13751      7515 King James Version Bible
13752      7516 King James Version Bible
13753      7517 King James Version Bible
13754      7518 King James Version Bible
13755      7519 King James Version Bible
13756      7520 King James Version Bible
13757      7521 King James Version Bible
13758      7522 King James Version Bible
13759      7523 King James Version Bible
13760      7524 King James Version Bible
13761      7525 King James Version Bible
13762      7526 King James Version Bible
13763      7527 King James Version Bible
13764      7528 King James Version Bible
13765      7529 King James Version Bible
13766      7530 King James Version Bible
13767      7531 King James Version Bible
13768      7532 King James Version Bible
13769      7533 King James Version Bible
13770      7534 King James Version Bible
13771      7535 King James Version Bible
13772      7536 King James Version Bible
13773      7537 King James Version Bible
13774      7538 King James Version Bible
13775      7539 King James Version Bible
13776      7540 King James Version Bible
13777      7541 King James Version Bible
13778      7542 King James Version Bible
13779      7543 King James Version Bible
13780      7544 King James Version Bible
13781      7545 King James Version Bible
13782      7546 King James Version Bible
13783      7547 King James Version Bible
13784      7548 King James Version Bible
13785      7549 King James Version Bible
13786      7550 King James Version Bible
13787      7551 King James Version Bible
13788      7552 King James Version Bible
13789      7553 King James Version Bible
13790      7554 King James Version Bible
13791      7555 King James Version Bible
13792      7556 King James Version Bible
13793      7557 King James Version Bible
13794      7558 King James Version Bible
13795      7559 King James Version Bible
13796      7560 King James Version Bible
13797      7561 King James Version Bible
13798      7562 King James Version Bible
13799      7563 King James Version Bible
13800      7564 King James Version Bible
13801      7565 King James Version Bible
13802      7566 King James Version Bible
13803      7567 King James Version Bible
13804      7568 King James Version Bible
13805      7569 King James Version Bible
13806      7570 King James Version Bible
13807      7571 King James Version Bible
13808      7572 King James Version Bible
13809      7573 King James Version Bible
13810      7574 King James Version Bible
13811      7575 King James Version Bible
13812      7576 King James Version Bible
13813      7577 King James Version Bible
13814      7578 King James Version Bible
13815      7579 King James Version Bible
13816      7580 King James Version Bible
13817      7581 King James Version Bible
13818      7582 King James Version Bible
13819      7583 King James Version Bible
13820      7584 King James Version Bible
13821      7585 King James Version Bible
13822      7586 King James Version Bible
13823      7587 King James Version Bible
13824      7588 King James Version Bible
13825      7589 King James Version Bible
13826      7590 King James Version Bible
13827      7591 King James Version Bible
13828      7592 King James Version Bible
13829      7593 King James Version Bible
13830      7594 King James Version Bible
13831      7595 King James Version Bible
13832      7596 King James Version Bible
13833      7597 King James Version Bible
13834      7598 King James Version Bible
13835      7599 King James Version Bible
13836      7600 King James Version Bible
13837      7601 King James Version Bible
13838      7602 King James Version Bible
13839      7603 King James Version Bible
13840      7604 King James Version Bible
13841      7605 King James Version Bible
13842      7606 King James Version Bible
13843      7607 King James Version Bible
13844      7608 King James Version Bible
13845      7609 King James Version Bible
13846      7610 King James Version Bible
13847      7611 King James Version Bible
13848      7612 King James Version Bible
13849      7613 King James Version Bible
13850      7614 King James Version Bible
13851      7615 King James Version Bible
13852      7616 King James Version Bible
13853      7617 King James Version Bible
13854      7618 King James Version Bible
13855      7619 King James Version Bible
13856      7620 King James Version Bible
13857      7621 King James Version Bible
13858      7622 King James Version Bible
13859      7623 King James Version Bible
13860      7624 King James Version Bible
13861      7625 King James Version Bible
13862      7626 King James Version Bible
13863      7627 King James Version Bible
13864      7628 King James Version Bible
13865      7629 King James Version Bible
13866      7630 King James Version Bible
13867      7631 King James Version Bible
13868      7632 King James Version Bible
13869      7633 King James Version Bible
13870      7634 King James Version Bible
13871      7635 King James Version Bible
13872      7636 King James Version Bible
13873      7637 King James Version Bible
13874      7638 King James Version Bible
13875      7639 King James Version Bible
13876      7640 King James Version Bible
13877      7641 King James Version Bible
13878      7642 King James Version Bible
13879      7643 King James Version Bible
13880      7644 King James Version Bible
13881      7645 King James Version Bible
13882      7646 King James Version Bible
13883      7647 King James Version Bible
13884      7648 King James Version Bible
13885      7649 King James Version Bible
13886      7650 King James Version Bible
13887      7651 King James Version Bible
13888      7652 King James Version Bible
13889      7653 King James Version Bible
13890      7654 King James Version Bible
13891      7655 King James Version Bible
13892      7656 King James Version Bible
13893      7657 King James Version Bible
13894      7658 King James Version Bible
13895      7659 King James Version Bible
13896      7660 King James Version Bible
13897      7661 King James Version Bible
13898      7662 King James Version Bible
13899      7663 King James Version Bible
13900      7664 King James Version Bible
13901      7665 King James Version Bible
13902      7666 King James Version Bible
13903      7667 King James Version Bible
13904      7668 King James Version Bible
13905      7669 King James Version Bible
13906      7670 King James Version Bible
13907      7671 King James Version Bible
13908      7672 King James Version Bible
13909      7673 King James Version Bible
13910      7674 King James Version Bible
13911      7675 King James Version Bible
13912      7676 King James Version Bible
13913      7677 King James Version Bible
13914      7678 King James Version Bible
13915      7679 King James Version Bible
13916      7680 King James Version Bible
13917      7681 King James Version Bible
13918      7682 King James Version Bible
13919      7683 King James Version Bible
13920      7684 King James Version Bible
13921      7685 King James Version Bible
13922      7686 King James Version Bible
13923      7687 King James Version Bible
13924      7688 King James Version Bible
13925      7689 King James Version Bible
13926      7690 King James Version Bible
13927      7691 King James Version Bible
13928      7692 King James Version Bible
13929      7693 King James Version Bible
13930      7694 King James Version Bible
13931      7695 King James Version Bible
13932      7696 King James Version Bible
13933      7697 King James Version Bible
13934      7698 King James Version Bible
13935      7699 King James Version Bible
13936      7700 King James Version Bible
13937      7701 King James Version Bible
13938      7702 King James Version Bible
13939      7703 King James Version Bible
13940      7704 King James Version Bible
13941      7705 King James Version Bible
13942      7706 King James Version Bible
13943      7707 King James Version Bible
13944      7708 King James Version Bible
13945      7709 King James Version Bible
13946      7710 King James Version Bible
13947      7711 King James Version Bible
13948      7712 King James Version Bible
13949      7713 King James Version Bible
13950      7714 King James Version Bible
13951      7715 King James Version Bible
13952      7716 King James Version Bible
13953      7717 King James Version Bible
13954      7718 King James Version Bible
13955      7719 King James Version Bible
13956      7720 King James Version Bible
13957      7721 King James Version Bible
13958      7722 King James Version Bible
13959      7723 King James Version Bible
13960      7724 King James Version Bible
13961      7725 King James Version Bible
13962      7726 King James Version Bible
13963      7727 King James Version Bible
13964      7728 King James Version Bible
13965      7729 King James Version Bible
13966      7730 King James Version Bible
13967      7731 King James Version Bible
13968      7732 King James Version Bible
13969      7733 King James Version Bible
13970      7734 King James Version Bible
13971      7735 King James Version Bible
13972      7736 King James Version Bible
13973      7737 King James Version Bible
13974      7738 King James Version Bible
13975      7739 King James Version Bible
13976      7740 King James Version Bible
13977      7741 King James Version Bible
13978      7742 King James Version Bible
13979      7743 King James Version Bible
13980      7744 King James Version Bible
13981      7745 King James Version Bible
13982      7746 King James Version Bible
13983      7747 King James Version Bible
13984      7748 King James Version Bible
13985      7749 King James Version Bible
13986      7750 King James Version Bible
13987      7751 King James Version Bible
13988      7752 King James Version Bible
13989      7753 King James Version Bible
13990      7754 King James Version Bible
13991      7755 King James Version Bible
13992      7756 King James Version Bible
13993      7757 King James Version Bible
13994      7758 King James Version Bible
13995      7759 King James Version Bible
13996      7760 King James Version Bible
13997      7761 King James Version Bible
13998      7762 King James Version Bible
13999      7763 King James Version Bible
14000      7764 King James Version Bible
14001      7765 King James Version Bible
14002      7766 King James Version Bible
14003      7767 King James Version Bible
14004      7768 King James Version Bible
14005      7769 King James Version Bible
14006      7770 King James Version Bible
14007      7771 King James Version Bible
14008      7772 King James Version Bible
14009      7773 King James Version Bible
14010      7774 King James Version Bible
14011      7775 King James Version Bible
14012      7776 King James Version Bible
14013      7777 King James Version Bible
14014      7778 King James Version Bible
14015      7779 King James Version Bible
14016      7780 King James Version Bible
14017      7781 King James Version Bible
14018      7782 King James Version Bible
14019      7783 King James Version Bible
14020      7784 King James Version Bible
14021      7785 King James Version Bible
14022      7786 King James Version Bible
14023      7787 King James Version Bible
14024      7788 King James Version Bible
14025      7789 King James Version Bible
14026      7790 King James Version Bible
14027      7791 King James Version Bible
14028      7792 King James Version Bible
14029      7793 King James Version Bible
14030      7794 King James Version Bible
14031      7795 King James Version Bible
14032      7796 King James Version Bible
14033      7797 King James Version Bible
14034      7798 King James Version Bible
14035      7799 King James Version Bible
14036      7800 King James Version Bible
14037      7801 King James Version Bible
14038      7802 King James Version Bible
14039      7803 King James Version Bible
14040      7804 King James Version Bible
14041      7805 King James Version Bible
14042      7806 King James Version Bible
14043      7807 King James Version Bible
14044      7808 King James Version Bible
14045      7809 King James Version Bible
14046      7810 King James Version Bible
14047      7811 King James Version Bible
14048      7812 King James Version Bible
14049      7813 King James Version Bible
14050      7814 King James Version Bible
14051      7815 King James Version Bible
14052      7816 King James Version Bible
14053      7817 King James Version Bible
14054      7818 King James Version Bible
14055      7819 King James Version Bible
14056      7820 King James Version Bible
14057      7821 King James Version Bible
14058      7822 King James Version Bible
14059      7823 King James Version Bible
14060      7824 King James Version Bible
14061      7825 King James Version Bible
14062      7826 King James Version Bible
14063      7827 King James Version Bible
14064      7828 King James Version Bible
14065      7829 King James Version Bible
14066      7830 King James Version Bible
14067      7831 King James Version Bible
14068      7832 King James Version Bible
14069      7833 King James Version Bible
14070      7834 King James Version Bible
14071      7835 King James Version Bible
14072      7836 King James Version Bible
14073      7837 King James Version Bible
14074      7838 King James Version Bible
14075      7839 King James Version Bible
14076      7840 King James Version Bible
14077      7841 King James Version Bible
14078      7842 King James Version Bible
14079      7843 King James Version Bible
14080      7844 King James Version Bible
14081      7845 King James Version Bible
14082      7846 King James Version Bible
14083      7847 King James Version Bible
14084      7848 King James Version Bible
14085      7849 King James Version Bible
14086      7850 King James Version Bible
14087      7851 King James Version Bible
14088      7852 King James Version Bible
14089      7853 King James Version Bible
14090      7854 King James Version Bible
14091      7855 King James Version Bible
14092      7856 King James Version Bible
14093      7857 King James Version Bible
14094      7858 King James Version Bible
14095      7859 King James Version Bible
14096      7860 King James Version Bible
14097      7861 King James Version Bible
14098      7862 King James Version Bible
14099      7863 King James Version Bible
14100      7864 King James Version Bible
14101      7865 King James Version Bible
14102      7866 King James Version Bible
14103      7867 King James Version Bible
14104      7868 King James Version Bible
14105      7869 King James Version Bible
14106      7870 King James Version Bible
14107      7871 King James Version Bible
14108      7872 King James Version Bible
14109      7873 King James Version Bible
14110      7874 King James Version Bible
14111      7875 King James Version Bible
14112      7876 King James Version Bible
14113      7877 King James Version Bible
14114      7878 King James Version Bible
14115      7879 King James Version Bible
14116      7880 King James Version Bible
14117      7881 King James Version Bible
14118      7882 King James Version Bible
14119      7883 King James Version Bible
14120      7884 King James Version Bible
14121      7885 King James Version Bible
14122      7886 King James Version Bible
14123      7887 King James Version Bible
14124      7888 King James Version Bible
14125      7889 King James Version Bible
14126      7890 King James Version Bible
14127      7891 King James Version Bible
14128      7892 King James Version Bible
14129      7893 King James Version Bible
14130      7894 King James Version Bible
14131      7895 King James Version Bible
14132      7896 King James Version Bible
14133      7897 King James Version Bible
14134      7898 King James Version Bible
14135      7899 King James Version Bible
14136      7900 King James Version Bible
14137      7901 King James Version Bible
14138      7902 King James Version Bible
14139      7903 King James Version Bible
14140      7904 King James Version Bible
14141      7905 King James Version Bible
14142      7906 King James Version Bible
14143      7907 King James Version Bible
14144      7908 King James Version Bible
14145      7909 King James Version Bible
14146      7910 King James Version Bible
14147      7911 King James Version Bible
14148      7912 King James Version Bible
14149      7913 King James Version Bible
14150      7914 King James Version Bible
14151      7915 King James Version Bible
14152      7916 King James Version Bible
14153      7917 King James Version Bible
14154      7918 King James Version Bible
14155      7919 King James Version Bible
14156      7920 King James Version Bible
14157      7921 King James Version Bible
14158      7922 King James Version Bible
14159      7923 King James Version Bible
14160      7924 King James Version Bible
14161      7925 King James Version Bible
14162      7926 King James Version Bible
14163      7927 King James Version Bible
14164      7928 King James Version Bible
14165      7929 King James Version Bible
14166      7930 King James Version Bible
14167      7931 King James Version Bible
14168      7932 King James Version Bible
14169      7933 King James Version Bible
14170      7934 King James Version Bible
14171      7935 King James Version Bible
14172      7936 King James Version Bible
14173      7937 King James Version Bible
14174      7938 King James Version Bible
14175      7939 King James Version Bible
14176      7940 King James Version Bible
14177      7941 King James Version Bible
14178      7942 King James Version Bible
14179      7943 King James Version Bible
14180      7944 King James Version Bible
14181      7945 King James Version Bible
14182      7946 King James Version Bible
14183      7947 King James Version Bible
14184      7948 King James Version Bible
14185      7949 King James Version Bible
14186      7950 King James Version Bible
14187      7951 King James Version Bible
14188      7952 King James Version Bible
14189      7953 King James Version Bible
14190      7954 King James Version Bible
14191      7955 King James Version Bible
14192      7956 King James Version Bible
14193      7957 King James Version Bible
14194      7958 King James Version Bible
14195      7959 King James Version Bible
14196      7960 King James Version Bible
14197      7961 King James Version Bible
14198      7962 King James Version Bible
14199      7963 King James Version Bible
14200      7964 King James Version Bible
14201      7965 King James Version Bible
14202      7966 King James Version Bible
14203      7967 King James Version Bible
14204      7968 King James Version Bible
14205      7969 King James Version Bible
14206      7970 King James Version Bible
14207      7971 King James Version Bible
14208      7972 King James Version Bible
14209      7973 King James Version Bible
14210      7974 King James Version Bible
14211      7975 King James Version Bible
14212      7976 King James Version Bible
14213      7977 King James Version Bible
14214      7978 King James Version Bible
14215      7979 King James Version Bible
14216      7980 King James Version Bible
14217      7981 King James Version Bible
14218      7982 King James Version Bible
14219      7983 King James Version Bible
14220      7984 King James Version Bible
14221      7985 King James Version Bible
14222      7986 King James Version Bible
14223      7987 King James Version Bible
14224      7988 King James Version Bible
14225      7989 King James Version Bible
14226      7990 King James Version Bible
14227      7991 King James Version Bible
14228      7992 King James Version Bible
14229      7993 King James Version Bible
14230      7994 King James Version Bible
14231      7995 King James Version Bible
14232      7996 King James Version Bible
14233      7997 King James Version Bible
14234      7998 King James Version Bible
14235      7999 King James Version Bible
14236      8000 King James Version Bible
14237      8001 King James Version Bible
14238      8002 King James Version Bible
14239      8003 King James Version Bible
14240      8004 King James Version Bible
14241      8005 King James Version Bible
14242      8006 King James Version Bible
14243      8007 King James Version Bible
14244      8008 King James Version Bible
14245      8009 King James Version Bible
14246      8010 King James Version Bible
14247      8011 King James Version Bible
14248      8012 King James Version Bible
14249      8013 King James Version Bible
14250      8014 King James Version Bible
14251      8015 King James Version Bible
14252      8016 King James Version Bible
14253      8017 King James Version Bible
14254      8018 King James Version Bible
14255      8019 King James Version Bible
14256      8020 King James Version Bible
14257      8021 King James Version Bible
14258      8022 King James Version Bible
14259      8023 King James Version Bible
14260      8024 King James Version Bible
14261      8025 King James Version Bible
14262      8026 King James Version Bible
14263      8027 King James Version Bible
14264      8028 King James Version Bible
14265      8029 King James Version Bible
14266      8030 King James Version Bible
14267      8031 King James Version Bible
14268      8032 King James Version Bible
14269      8033 King James Version Bible
14270      8034 King James Version Bible
14271      8035 King James Version Bible
14272      8036 King James Version Bible
14273      8037 King James Version Bible
14274      8038 King James Version Bible
14275      8039 King James Version Bible
14276      8040 King James Version Bible
14277      8041 King James Version Bible
14278      8042 King James Version Bible
14279      8043 King James Version Bible
14280      8044 King James Version Bible
14281      8045 King James Version Bible
14282      8046 King James Version Bible
14283      8047 King James Version Bible
14284      8048 King James Version Bible
14285      8049 King James Version Bible
14286      8050 King James Version Bible
14287      8051 King James Version Bible
14288      8052 King James Version Bible
14289      8053 King James Version Bible
14290      8054 King James Version Bible
14291      8055 King James Version Bible
14292      8056 King James Version Bible
14293      8057 King James Version Bible
14294      8058 King James Version Bible
14295      8059 King James Version Bible
14296      8060 King James Version Bible
14297      8061 King James Version Bible
14298      8062 King James Version Bible
14299      8063 King James Version Bible
14300      8064 King James Version Bible
14301      8065 King James Version Bible
14302      8066 King James Version Bible
14303      8067 King James Version Bible
14304      8068 King James Version Bible
14305      8069 King James Version Bible
14306      8070 King James Version Bible
14307      8071 King James Version Bible
14308      8072 King James Version Bible
14309      8073 King James Version Bible
14310      8074 King James Version Bible
14311      8075 King James Version Bible
14312      8076 King James Version Bible
14313      8077 King James Version Bible
14314      8078 King James Version Bible
14315      8079 King James Version Bible
14316      8080 King James Version Bible
14317      8081 King James Version Bible
14318      8082 King James Version Bible
14319      8083 King James Version Bible
14320      8084 King James Version Bible
14321      8085 King James Version Bible
14322      8086 King James Version Bible
14323      8087 King James Version Bible
14324      8088 King James Version Bible
14325      8089 King James Version Bible
14326      8090 King James Version Bible
14327      8091 King James Version Bible
14328      8092 King James Version Bible
14329      8093 King James Version Bible
14330      8094 King James Version Bible
14331      8095 King James Version Bible
14332      8096 King James Version Bible
14333      8097 King James Version Bible
14334      8098 King James Version Bible
14335      8099 King James Version Bible
14336      8100 King James Version Bible
14337      8101 King James Version Bible
14338      8102 King James Version Bible
14339      8103 King James Version Bible
14340      8104 King James Version Bible
14341      8105 King James Version Bible
14342      8106 King James Version Bible
14343      8107 King James Version Bible
14344      8108 King James Version Bible
14345      8109 King James Version Bible
14346      8110 King James Version Bible
14347      8111 King James Version Bible
14348      8112 King James Version Bible
14349      8113 King James Version Bible
14350      8114 King James Version Bible
14351      8115 King James Version Bible
14352      8116 King James Version Bible
14353      8117 King James Version Bible
14354      8118 King James Version Bible
14355      8119 King James Version Bible
14356      8120 King James Version Bible
14357      8121 King James Version Bible
14358      8122 King James Version Bible
14359      8123 King James Version Bible
14360      8124 King James Version Bible
14361      8125 King James Version Bible
14362      8126 King James Version Bible
14363      8127 King James Version Bible
14364      8128 King James Version Bible
14365      8129 King James Version Bible
14366      8130 King James Version Bible
14367      8131 King James Version Bible
14368      8132 King James Version Bible
14369      8133 King James Version Bible
14370      8134 King James Version Bible
14371      8135 King James Version Bible
14372      8136 King James Version Bible
14373      8137 King James Version Bible
14374      8138 King James Version Bible
14375      8139 King James Version Bible
14376      8140 King James Version Bible
14377      8141 King James Version Bible
14378      8142 King James Version Bible
14379      8143 King James Version Bible
14380      8144 King James Version Bible
14381      8145 King James Version Bible
14382      8146 King James Version Bible
14383      8147 King James Version Bible
14384      8148 King James Version Bible
14385      8149 King James Version Bible
14386      8150 King James Version Bible
14387      8151 King James Version Bible
14388      8152 King James Version Bible
14389      8153 King James Version Bible
14390      8154 King James Version Bible
14391      8155 King James Version Bible
14392      8156 King James Version Bible
14393      8157 King James Version Bible
14394      8158 King James Version Bible
14395      8159 King James Version Bible
14396      8160 King James Version Bible
14397      8161 King James Version Bible
14398      8162 King James Version Bible
14399      8163 King James Version Bible
14400      8164 King James Version Bible
14401      8165 King James Version Bible
14402      8166 King James Version Bible
14403      8167 King James Version Bible
14404      8168 King James Version Bible
14405      8169 King James Version Bible
14406      8170 King James Version Bible
14407      8171 King James Version Bible
14408      8172 King James Version Bible
14409      8173 King James Version Bible
14410      8174 King James Version Bible
14411      8175 King James Version Bible
14412      8176 King James Version Bible
14413      8177 King James Version Bible
14414      8178 King James Version Bible
14415      8179 King James Version Bible
14416      8180 King James Version Bible
14417      8181 King James Version Bible
14418      8182 King James Version Bible
14419      8183 King James Version Bible
14420      8184 King James Version Bible
14421      8185 King James Version Bible
14422      8186 King James Version Bible
14423      8187 King James Version Bible
14424      8188 King James Version Bible
14425      8189 King James Version Bible
14426      8190 King James Version Bible
14427      8191 King James Version Bible
14428      8192 King James Version Bible
14429      8193 King James Version Bible
14430      8194 King James Version Bible
14431      8195 King James Version Bible
14432      8196 King James Version Bible
14433      8197 King James Version Bible
14434      8198 King James Version Bible
14435      8199 King James Version Bible
14436      8200 King James Version Bible
14437      8201 King James Version Bible
14438      8202 King James Version Bible
14439      8203 King James Version Bible
14440      8204 King James Version Bible
14441      8205 King James Version Bible
14442      8206 King James Version Bible
14443      8207 King James Version Bible
14444      8208 King James Version Bible
14445      8209 King James Version Bible
14446      8210 King James Version Bible
14447      8211 King James Version Bible
14448      8212 King James Version Bible
14449      8213 King James Version Bible
14450      8214 King James Version Bible
14451      8215 King James Version Bible
14452      8216 King James Version Bible
14453      8217 King James Version Bible
14454      8218 King James Version Bible
14455      8219 King James Version Bible
14456      8220 King James Version Bible
14457      8221 King James Version Bible
14458      8222 King James Version Bible
14459      8223 King James Version Bible
14460      8224 King James Version Bible
14461      8225 King James Version Bible
14462      8226 King James Version Bible
14463      8227 King James Version Bible
14464      8228 King James Version Bible
14465      8229 King James Version Bible
14466      8230 King James Version Bible
14467      8231 King James Version Bible
14468      8232 King James Version Bible
14469      8233 King James Version Bible
14470      8234 King James Version Bible
14471      8235 King James Version Bible
14472      8236 King James Version Bible
14473      8237 King James Version Bible
14474      8238 King James Version Bible
14475      8239 King James Version Bible
14476      8240 King James Version Bible
14477      8241 King James Version Bible
14478      8242 King James Version Bible
14479      8243 King James Version Bible
14480      8244 King James Version Bible
14481      8245 King James Version Bible
14482      8246 King James Version Bible
14483      8247 King James Version Bible
14484      8248 King James Version Bible
14485      8249 King James Version Bible
14486      8250 King James Version Bible
14487      8251 King James Version Bible
14488      8252 King James Version Bible
14489      8253 King James Version Bible
14490      8254 King James Version Bible
14491      8255 King James Version Bible
14492      8256 King James Version Bible
14493      8257 King James Version Bible
14494      8258 King James Version Bible
14495      8259 King James Version Bible
14496      8260 King James Version Bible
14497      8261 King James Version Bible
14498      8262 King James Version Bible
14499      8263 King James Version Bible
14500      8264 King James Version Bible
14501      8265 King James Version Bible
14502      8266 King James Version Bible
14503      8267 King James Version Bible
14504      8268 King James Version Bible
14505      8269 King James Version Bible
14506      8270 King James Version Bible
14507      8271 King James Version Bible
14508      8272 King James Version Bible
14509      8273 King James Version Bible
14510      8274 King James Version Bible
14511      8275 King James Version Bible
14512      8276 King James Version Bible
14513      8277 King James Version Bible
14514      8278 King James Version Bible
14515      8279 King James Version Bible
14516      8280 King James Version Bible
14517      8281 King James Version Bible
14518      8282 King James Version Bible
14519      8283 King James Version Bible
14520      8284 King James Version Bible
14521      8285 King James Version Bible
14522      8286 King James Version Bible
14523      8287 King James Version Bible
14524      8288 King James Version Bible
14525      8289 King James Version Bible
14526      8290 King James Version Bible
14527      8291 King James Version Bible
14528      8292 King James Version Bible
14529      8293 King James Version Bible
14530      8294 King James Version Bible
14531      8295 King James Version Bible
14532      8296 King James Version Bible
14533      8297 King James Version Bible
14534      8298 King James Version Bible
14535      8299 King James Version Bible
14536      8300 King James Version Bible
14537      8301 King James Version Bible
14538      8302 King James Version Bible
14539      8303 King James Version Bible
14540      8304 King James Version Bible
14541      8305 King James Version Bible
14542      8306 King James Version Bible
14543      8307 King James Version Bible
14544      8308 King James Version Bible
14545      8309 King James Version Bible
14546      8310 King James Version Bible
14547      8311 King James Version Bible
14548      8312 King James Version Bible
14549      8313 King James Version Bible
14550      8314 King James Version Bible
14551      8315 King James Version Bible
14552      8316 King James Version Bible
14553      8317 King James Version Bible
14554      8318 King James Version Bible
14555      8319 King James Version Bible
14556      8320 King James Version Bible
14557      8321 King James Version Bible
14558      8322 King James Version Bible
14559      8323 King James Version Bible
14560      8324 King James Version Bible
14561      8325 King James Version Bible
14562      8326 King James Version Bible
14563      8327 King James Version Bible
14564      8328 King James Version Bible
14565      8329 King James Version Bible
14566      8330 King James Version Bible
14567      8331 King James Version Bible
14568      8332 King James Version Bible
14569      8333 King James Version Bible
14570      8334 King James Version Bible
14571      8335 King James Version Bible
14572      8336 King James Version Bible
14573      8337 King James Version Bible
14574      8338 King James Version Bible
14575      8339 King James Version Bible
14576      8340 King James Version Bible
14577      8341 King James Version Bible
14578      8342 King James Version Bible
14579      8343 King James Version Bible
14580      8344 King James Version Bible
14581      8345 King James Version Bible
14582      8346 King James Version Bible
14583      8347 King James Version Bible
14584      8348 King James Version Bible
14585      8349 King James Version Bible
14586      8350 King James Version Bible
14587      8351 King James Version Bible
14588      8352 King James Version Bible
14589      8353 King James Version Bible
14590      8354 King James Version Bible
14591      8355 King James Version Bible
14592      8356 King James Version Bible
14593      8357 King James Version Bible
14594      8358 King James Version Bible
14595      8359 King James Version Bible
14596      8360 King James Version Bible
14597      8361 King James Version Bible
14598      8362 King James Version Bible
14599      8363 King James Version Bible
14600      8364 King James Version Bible
14601      8365 King James Version Bible
14602      8366 King James Version Bible
14603      8367 King James Version Bible
14604      8368 King James Version Bible
14605      8369 King James Version Bible
14606      8370 King James Version Bible
14607      8371 King James Version Bible
14608      8372 King James Version Bible
14609      8373 King James Version Bible
14610      8374 King James Version Bible
14611      8375 King James Version Bible
14612      8376 King James Version Bible
14613      8377 King James Version Bible
14614      8378 King James Version Bible
14615      8379 King James Version Bible
14616      8380 King James Version Bible
14617      8381 King James Version Bible
14618      8382 King James Version Bible
14619      8383 King James Version Bible
14620      8384 King James Version Bible
14621      8385 King James Version Bible
14622      8386 King James Version Bible
14623      8387 King James Version Bible
14624      8388 King James Version Bible
14625      8389 King James Version Bible
14626      8390 King James Version Bible
14627      8391 King James Version Bible
14628      8392 King James Version Bible
14629      8393 King James Version Bible
14630      8394 King James Version Bible
14631      8395 King James Version Bible
14632      8396 King James Version Bible
14633      8397 King James Version Bible
14634      8398 King James Version Bible
14635      8399 King James Version Bible
14636      8400 King James Version Bible
14637      8401 King James Version Bible
14638      8402 King James Version Bible
14639      8403 King James Version Bible
14640      8404 King James Version Bible
14641      8405 King James Version Bible
14642      8406 King James Version Bible
14643      8407 King James Version Bible
14644      8408 King James Version Bible
14645      8409 King James Version Bible
14646      8410 King James Version Bible
14647      8411 King James Version Bible
14648      8412 King James Version Bible
14649      8413 King James Version Bible
14650      8414 King James Version Bible
14651      8415 King James Version Bible
14652      8416 King James Version Bible
14653      8417 King James Version Bible
14654      8418 King James Version Bible
14655      8419 King James Version Bible
14656      8420 King James Version Bible
14657      8421 King James Version Bible
14658      8422 King James Version Bible
14659      8423 King James Version Bible
14660      8424 King James Version Bible
14661      8425 King James Version Bible
14662      8426 King James Version Bible
14663      8427 King James Version Bible
14664      8428 King James Version Bible
14665      8429 King James Version Bible
14666      8430 King James Version Bible
14667      8431 King James Version Bible
14668      8432 King James Version Bible
14669      8433 King James Version Bible
14670      8434 King James Version Bible
14671      8435 King James Version Bible
14672      8436 King James Version Bible
14673      8437 King James Version Bible
14674      8438 King James Version Bible
14675      8439 King James Version Bible
14676      8440 King James Version Bible
14677      8441 King James Version Bible
14678      8442 King James Version Bible
14679      8443 King James Version Bible
14680      8444 King James Version Bible
14681      8445 King James Version Bible
14682      8446 King James Version Bible
14683      8447 King James Version Bible
14684      8448 King James Version Bible
14685      8449 King James Version Bible
14686      8450 King James Version Bible
14687      8451 King James Version Bible
14688      8452 King James Version Bible
14689      8453 King James Version Bible
14690      8454 King James Version Bible
14691      8455 King James Version Bible
14692      8456 King James Version Bible
14693      8457 King James Version Bible
14694      8458 King James Version Bible
14695      8459 King James Version Bible
14696      8460 King James Version Bible
14697      8461 King James Version Bible
14698      8462 King James Version Bible
14699      8463 King James Version Bible
14700      8464 King James Version Bible
14701      8465 King James Version Bible
14702      8466 King James Version Bible
14703      8467 King James Version Bible
14704      8468 King James Version Bible
14705      8469 King James Version Bible
14706      8470 King James Version Bible
14707      8471 King James Version Bible
14708      8472 King James Version Bible
14709      8473 King James Version Bible
14710      8474 King James Version Bible
14711      8475 King James Version Bible
14712      8476 King James Version Bible
14713      8477 King James Version Bible
14714      8478 King James Version Bible
14715      8479 King James Version Bible
14716      8480 King James Version Bible
14717      8481 King James Version Bible
14718      8482 King James Version Bible
14719      8483 King James Version Bible
14720      8484 King James Version Bible
14721      8485 King James Version Bible
14722      8486 King James Version Bible
14723      8487 King James Version Bible
14724      8488 King James Version Bible
14725      8489 King James Version Bible
14726      8490 King James Version Bible
14727      8491 King James Version Bible
14728      8492 King James Version Bible
14729      8493 King James Version Bible
14730      8494 King James Version Bible
14731      8495 King James Version Bible
14732      8496 King James Version Bible
14733      8497 King James Version Bible
14734      8498 King James Version Bible
14735      8499 King James Version Bible
14736      8500 King James Version Bible
14737      8501 King James Version Bible
14738      8502 King James Version Bible
14739      8503 King James Version Bible
14740      8504 King James Version Bible
14741      8505 King James Version Bible
14742      8506 King James Version Bible
14743      8507 King James Version Bible
14744      8508 King James Version Bible
14745      8509 King James Version Bible
14746      8510 King James Version Bible
14747      8511 King James Version Bible
14748      8512 King James Version Bible
14749      8513 King James Version Bible
14750      8514 King James Version Bible
14751      8515 King James Version Bible
14752      8516 King James Version Bible
14753      8517 King James Version Bible
14754      8518 King James Version Bible
14755      8519 King James Version Bible
14756      8520 King James Version Bible
14757      8521 King James Version Bible
14758      8522 King James Version Bible
14759      8523 King James Version Bible
14760      8524 King James Version Bible
14761      8525 King James Version Bible
14762      8526 King James Version Bible
14763      8527 King James Version Bible
14764      8528 King James Version Bible
14765      8529 King James Version Bible
14766      8530 King James Version Bible
14767      8531 King James Version Bible
14768      8532 King James Version Bible
14769      8533 King James Version Bible
14770      8534 King James Version Bible
14771      8535 King James Version Bible
14772      8536 King James Version Bible
14773      8537 King James Version Bible
14774      8538 King James Version Bible
14775      8539 King James Version Bible
14776      8540 King James Version Bible
14777      8541 King James Version Bible
14778      8542 King James Version Bible
14779      8543 King James Version Bible
14780      8544 King James Version Bible
14781      8545 King James Version Bible
14782      8546 King James Version Bible
14783      8547 King James Version Bible
14784      8548 King James Version Bible
14785      8549 King James Version Bible
14786      8550 King James Version Bible
14787      8551 King James Version Bible
14788      8552 King James Version Bible
14789      8553 King James Version Bible
14790      8554 King James Version Bible
14791      8555 King James Version Bible
14792      8556 King James Version Bible
14793      8557 King James Version Bible
14794      8558 King James Version Bible
14795      8559 King James Version Bible
14796      8560 King James Version Bible
14797      8561 King James Version Bible
14798      8562 King James Version Bible
14799      8563 King James Version Bible
14800      8564 King James Version Bible
14801      8565 King James Version Bible
14802      8566 King James Version Bible
14803      8567 King James Version Bible
14804      8568 King James Version Bible
14805      8569 King James Version Bible
14806      8570 King James Version Bible
14807      8571 King James Version Bible
14808      8572 King James Version Bible
14809      8573 King James Version Bible
14810      8574 King James Version Bible
14811      8575 King James Version Bible
14812      8576 King James Version Bible
14813      8577 King James Version Bible
14814      8578 King James Version Bible
14815      8579 King James Version Bible
14816      8580 King James Version Bible
14817      8581 King James Version Bible
14818      8582 King James Version Bible
14819      8583 King James Version Bible
14820      8584 King James Version Bible
14821      8585 King James Version Bible
14822      8586 King James Version Bible
14823      8587 King James Version Bible
14824      8588 King James Version Bible
14825      8589 King James Version Bible
14826      8590 King James Version Bible
14827      8591 King James Version Bible
14828      8592 King James Version Bible
14829      8593 King James Version Bible
14830      8594 King James Version Bible
14831      8595 King James Version Bible
14832      8596 King James Version Bible
14833      8597 King James Version Bible
14834      8598 King James Version Bible
14835      8599 King James Version Bible
14836      8600 King James Version Bible
14837      8601 King James Version Bible
14838      8602 King James Version Bible
14839      8603 King James Version Bible
14840      8604 King James Version Bible
14841      8605 King James Version Bible
14842      8606 King James Version Bible
14843      8607 King James Version Bible
14844      8608 King James Version Bible
14845      8609 King James Version Bible
14846      8610 King James Version Bible
14847      8611 King James Version Bible
14848      8612 King James Version Bible
14849      8613 King James Version Bible
14850      8614 King James Version Bible
14851      8615 King James Version Bible
14852      8616 King James Version Bible
14853      8617 King James Version Bible
14854      8618 King James Version Bible
14855      8619 King James Version Bible
14856      8620 King James Version Bible
14857      8621 King James Version Bible
14858      8622 King James Version Bible
14859      8623 King James Version Bible
14860      8624 King James Version Bible
14861      8625 King James Version Bible
14862      8626 King James Version Bible
14863      8627 King James Version Bible
14864      8628 King James Version Bible
14865      8629 King James Version Bible
14866      8630 King James Version Bible
14867      8631 King James Version Bible
14868      8632 King James Version Bible
14869      8633 King James Version Bible
14870      8634 King James Version Bible
14871      8635 King James Version Bible
14872      8636 King James Version Bible
14873      8637 King James Version Bible
14874      8638 King James Version Bible
14875      8639 King James Version Bible
14876      8640 King James Version Bible
14877      8641 King James Version Bible
14878      8642 King James Version Bible
14879      8643 King James Version Bible
14880      8644 King James Version Bible
14881      8645 King James Version Bible
14882      8646 King James Version Bible
14883      8647 King James Version Bible
14884      8648 King James Version Bible
14885      8649 King James Version Bible
14886      8650 King James Version Bible
14887      8651 King James Version Bible
14888      8652 King James Version Bible
14889      8653 King James Version Bible
14890      8654 King James Version Bible
14891      8655 King James Version Bible
14892      8656 King James Version Bible
14893      8657 King James Version Bible
14894      8658 King James Version Bible
14895      8659 King James Version Bible
14896      8660 King James Version Bible
14897      8661 King James Version Bible
14898      8662 King James Version Bible
14899      8663 King James Version Bible
14900      8664 King James Version Bible
14901      8665 King James Version Bible
14902      8666 King James Version Bible
14903      8667 King James Version Bible
14904      8668 King James Version Bible
14905      8669 King James Version Bible
14906      8670 King James Version Bible
14907      8671 King James Version Bible
14908      8672 King James Version Bible
14909      8673 King James Version Bible
14910      8674 King James Version Bible
14911      8675 King James Version Bible
14912      8676 King James Version Bible
14913      8677 King James Version Bible
14914      8678 King James Version Bible
14915      8679 King James Version Bible
14916      8680 King James Version Bible
14917      8681 King James Version Bible
14918      8682 King James Version Bible
14919      8683 King James Version Bible
14920      8684 King James Version Bible
14921      8685 King James Version Bible
14922      8686 King James Version Bible
14923      8687 King James Version Bible
14924      8688 King James Version Bible
14925      8689 King James Version Bible
14926      8690 King James Version Bible
14927      8691 King James Version Bible
14928      8692 King James Version Bible
14929      8693 King James Version Bible
14930      8694 King James Version Bible
14931      8695 King James Version Bible
14932      8696 King James Version Bible
14933      8697 King James Version Bible
14934      8698 King James Version Bible
14935      8699 King James Version Bible
14936      8700 King James Version Bible
14937      8701 King James Version Bible
14938      8702 King James Version Bible
14939      8703 King James Version Bible
14940      8704 King James Version Bible
14941      8705 King James Version Bible
14942      8706 King James Version Bible
14943      8707 King James Version Bible
14944      8708 King James Version Bible
14945      8709 King James Version Bible
14946      8710 King James Version Bible
14947      8711 King James Version Bible
14948      8712 King James Version Bible
14949      8713 King James Version Bible
14950      8714 King James Version Bible
14951      8715 King James Version Bible
14952      8716 King James Version Bible
14953      8717 King James Version Bible
14954      8718 King James Version Bible
14955      8719 King James Version Bible
14956      8720 King James Version Bible
14957      8721 King James Version Bible
14958      8722 King James Version Bible
14959      8723 King James Version Bible
14960      8724 King James Version Bible
14961      8725 King James Version Bible
14962      8726 King James Version Bible
14963      8727 King James Version Bible
14964      8728 King James Version Bible
14965      8729 King James Version Bible
14966      8730 King James Version Bible
14967      8731 King James Version Bible
14968      8732 King James Version Bible
14969      8733 King James Version Bible
14970      8734 King James Version Bible
14971      8735 King James Version Bible
14972      8736 King James Version Bible
14973      8737 King James Version Bible
14974      8738 King James Version Bible
14975      8739 King James Version Bible
14976      8740 King James Version Bible
14977      8741 King James Version Bible
14978      8742 King James Version Bible
14979      8743 King James Version Bible
14980      8744 King James Version Bible
14981      8745 King James Version Bible
14982      8746 King James Version Bible
14983      8747 King James Version Bible
14984      8748 King James Version Bible
14985      8749 King James Version Bible
14986      8750 King James Version Bible
14987      8751 King James Version Bible
14988      8752 King James Version Bible
14989      8753 King James Version Bible
14990      8754 King James Version Bible
14991      8755 King James Version Bible
14992      8756 King James Version Bible
14993      8757 King James Version Bible
14994      8758 King James Version Bible
14995      8759 King James Version Bible
14996      8760 King James Version Bible
14997      8761 King James Version Bible
14998      8762 King James Version Bible
14999      8763 King James Version Bible
15000      8764 King James Version Bible
15001      8765 King James Version Bible
15002      8766 King James Version Bible
15003      8767 King James Version Bible
15004      8768 King James Version Bible
15005      8769 King James Version Bible
15006      8770 King James Version Bible
15007      8771 King James Version Bible
15008      8772 King James Version Bible
15009      8773 King James Version Bible
15010      8774 King James Version Bible
15011      8775 King James Version Bible
15012      8776 King James Version Bible
15013      8777 King James Version Bible
15014      8778 King James Version Bible
15015      8779 King James Version Bible
15016      8780 King James Version Bible
15017      8781 King James Version Bible
15018      8782 King James Version Bible
15019      8783 King James Version Bible
15020      8784 King James Version Bible
15021      8785 King James Version Bible
15022      8786 King James Version Bible
15023      8787 King James Version Bible
15024      8788 King James Version Bible
15025      8789 King James Version Bible
15026      8790 King James Version Bible
15027      8791 King James Version Bible
15028      8792 King James Version Bible
15029      8793 King James Version Bible
15030      8794 King James Version Bible
15031      8795 King James Version Bible
15032      8796 King James Version Bible
15033      8797 King James Version Bible
15034      8798 King James Version Bible
15035      8799 King James Version Bible
15036      8800 King James Version Bible
15037      8801 King James Version Bible
15038      8802 King James Version Bible
15039      8803 King James Version Bible
15040      8804 King James Version Bible
15041      8805 King James Version Bible
15042      8806 King James Version Bible
15043      8807 King James Version Bible
15044      8808 King James Version Bible
15045      8809 King James Version Bible
15046      8810 King James Version Bible
15047      8811 King James Version Bible
15048      8812 King James Version Bible
15049      8813 King James Version Bible
15050      8814 King James Version Bible
15051      8815 King James Version Bible
15052      8816 King James Version Bible
15053      8817 King James Version Bible
15054      8818 King James Version Bible
15055      8819 King James Version Bible
15056      8820 King James Version Bible
15057      8821 King James Version Bible
15058      8822 King James Version Bible
15059      8823 King James Version Bible
15060      8824 King James Version Bible
15061      8825 King James Version Bible
15062      8826 King James Version Bible
15063      8827 King James Version Bible
15064      8828 King James Version Bible
15065      8829 King James Version Bible
15066      8830 King James Version Bible
15067      8831 King James Version Bible
15068      8832 King James Version Bible
15069      8833 King James Version Bible
15070      8834 King James Version Bible
15071      8835 King James Version Bible
15072      8836 King James Version Bible
15073      8837 King James Version Bible
15074      8838 King James Version Bible
15075      8839 King James Version Bible
15076      8840 King James Version Bible
15077      8841 King James Version Bible
15078      8842 King James Version Bible
15079      8843 King James Version Bible
15080      8844 King James Version Bible
15081      8845 King James Version Bible
15082      8846 King James Version Bible
15083      8847 King James Version Bible
15084      8848 King James Version Bible
15085      8849 King James Version Bible
15086      8850 King James Version Bible
15087      8851 King James Version Bible
15088      8852 King James Version Bible
15089      8853 King James Version Bible
15090      8854 King James Version Bible
15091      8855 King James Version Bible
15092      8856 King James Version Bible
15093      8857 King James Version Bible
15094      8858 King James Version Bible
15095      8859 King James Version Bible
15096      8860 King James Version Bible
15097      8861 King James Version Bible
15098      8862 King James Version Bible
15099      8863 King James Version Bible
15100      8864 King James Version Bible
15101      8865 King James Version Bible
15102      8866 King James Version Bible
15103      8867 King James Version Bible
15104      8868 King James Version Bible
15105      8869 King James Version Bible
15106      8870 King James Version Bible
15107      8871 King James Version Bible
15108      8872 King James Version Bible
15109      8873 King James Version Bible
15110      8874 King James Version Bible
15111      8875 King James Version Bible
15112      8876 King James Version Bible
15113      8877 King James Version Bible
15114      8878 King James Version Bible
15115      8879 King James Version Bible
15116      8880 King James Version Bible
15117      8881 King James Version Bible
15118      8882 King James Version Bible
15119      8883 King James Version Bible
15120      8884 King James Version Bible
15121      8885 King James Version Bible
15122      8886 King James Version Bible
15123      8887 King James Version Bible
15124      8888 King James Version Bible
15125      8889 King James Version Bible
15126      8890 King James Version Bible
15127      8891 King James Version Bible
15128      8892 King James Version Bible
15129      8893 King James Version Bible
15130      8894 King James Version Bible
15131      8895 King James Version Bible
15132      8896 King James Version Bible
15133      8897 King James Version Bible
15134      8898 King James Version Bible
15135      8899 King James Version Bible
15136      8900 King James Version Bible
15137      8901 King James Version Bible
15138      8902 King James Version Bible
15139      8903 King James Version Bible
15140      8904 King James Version Bible
15141      8905 King James Version Bible
15142      8906 King James Version Bible
15143      8907 King James Version Bible
15144      8908 King James Version Bible
15145      8909 King James Version Bible
15146      8910 King James Version Bible
15147      8911 King James Version Bible
15148      8912 King James Version Bible
15149      8913 King James Version Bible
15150      8914 King James Version Bible
15151      8915 King James Version Bible
15152      8916 King James Version Bible
15153      8917 King James Version Bible
15154      8918 King James Version Bible
15155      8919 King James Version Bible
15156      8920 King James Version Bible
15157      8921 King James Version Bible
15158      8922 King James Version Bible
15159      8923 King James Version Bible
15160      8924 King James Version Bible
15161      8925 King James Version Bible
15162      8926 King James Version Bible
15163      8927 King James Version Bible
15164      8928 King James Version Bible
15165      8929 King James Version Bible
15166      8930 King James Version Bible
15167      8931 King James Version Bible
15168      8932 King James Version Bible
15169      8933 King James Version Bible
15170      8934 King James Version Bible
15171      8935 King James Version Bible
15172      8936 King James Version Bible
15173      8937 King James Version Bible
15174      8938 King James Version Bible
15175      8939 King James Version Bible
15176      8940 King James Version Bible
15177      8941 King James Version Bible
15178      8942 King James Version Bible
15179      8943 King James Version Bible
15180      8944 King James Version Bible
15181      8945 King James Version Bible
15182      8946 King James Version Bible
15183      8947 King James Version Bible
15184      8948 King James Version Bible
15185      8949 King James Version Bible
15186      8950 King James Version Bible
15187      8951 King James Version Bible
15188      8952 King James Version Bible
15189      8953 King James Version Bible
15190      8954 King James Version Bible
15191      8955 King James Version Bible
15192      8956 King James Version Bible
15193      8957 King James Version Bible
15194      8958 King James Version Bible
15195      8959 King James Version Bible
15196      8960 King James Version Bible
15197      8961 King James Version Bible
15198      8962 King James Version Bible
15199      8963 King James Version Bible
15200      8964 King James Version Bible
15201      8965 King James Version Bible
15202      8966 King James Version Bible
15203      8967 King James Version Bible
15204      8968 King James Version Bible
15205      8969 King James Version Bible
15206      8970 King James Version Bible
15207      8971 King James Version Bible
15208      8972 King James Version Bible
15209      8973 King James Version Bible
15210      8974 King James Version Bible
15211      8975 King James Version Bible
15212      8976 King James Version Bible
15213      8977 King James Version Bible
15214      8978 King James Version Bible
15215      8979 King James Version Bible
15216      8980 King James Version Bible
15217      8981 King James Version Bible
15218      8982 King James Version Bible
15219      8983 King James Version Bible
15220      8984 King James Version Bible
15221      8985 King James Version Bible
15222      8986 King James Version Bible
15223      8987 King James Version Bible
15224      8988 King James Version Bible
15225      8989 King James Version Bible
15226      8990 King James Version Bible
15227      8991 King James Version Bible
15228      8992 King James Version Bible
15229      8993 King James Version Bible
15230      8994 King James Version Bible
15231      8995 King James Version Bible
15232      8996 King James Version Bible
15233      8997 King James Version Bible
15234      8998 King James Version Bible
15235      8999 King James Version Bible
15236      9000 King James Version Bible
15237      9001 King James Version Bible
15238      9002 King James Version Bible
15239      9003 King James Version Bible
15240      9004 King James Version Bible
15241      9005 King James Version Bible
15242      9006 King James Version Bible
15243      9007 King James Version Bible
15244      9008 King James Version Bible
15245      9009 King James Version Bible
15246      9010 King James Version Bible
15247      9011 King James Version Bible
15248      9012 King James Version Bible
15249      9013 King James Version Bible
15250      9014 King James Version Bible
15251      9015 King James Version Bible
15252      9016 King James Version Bible
15253      9017 King James Version Bible
15254      9018 King James Version Bible
15255      9019 King James Version Bible
15256      9020 King James Version Bible
15257      9021 King James Version Bible
15258      9022 King James Version Bible
15259      9023 King James Version Bible
15260      9024 King James Version Bible
15261      9025 King James Version Bible
15262      9026 King James Version Bible
15263      9027 King James Version Bible
15264      9028 King James Version Bible
15265      9029 King James Version Bible
15266      9030 King James Version Bible
15267      9031 King James Version Bible
15268      9032 King James Version Bible
15269      9033 King James Version Bible
15270      9034 King James Version Bible
15271      9035 King James Version Bible
15272      9036 King James Version Bible
15273      9037 King James Version Bible
15274      9038 King James Version Bible
15275      9039 King James Version Bible
15276      9040 King James Version Bible
15277      9041 King James Version Bible
15278      9042 King James Version Bible
15279      9043 King James Version Bible
15280      9044 King James Version Bible
15281      9045 King James Version Bible
15282      9046 King James Version Bible
15283      9047 King James Version Bible
15284      9048 King James Version Bible
15285      9049 King James Version Bible
15286      9050 King James Version Bible
15287      9051 King James Version Bible
15288      9052 King James Version Bible
15289      9053 King James Version Bible
15290      9054 King James Version Bible
15291      9055 King James Version Bible
15292      9056 King James Version Bible
15293      9057 King James Version Bible
15294      9058 King James Version Bible
15295      9059 King James Version Bible
15296      9060 King James Version Bible
15297      9061 King James Version Bible
15298      9062 King James Version Bible
15299      9063 King James Version Bible
15300      9064 King James Version Bible
15301      9065 King James Version Bible
15302      9066 King James Version Bible
15303      9067 King James Version Bible
15304      9068 King James Version Bible
15305      9069 King James Version Bible
15306      9070 King James Version Bible
15307      9071 King James Version Bible
15308      9072 King James Version Bible
15309      9073 King James Version Bible
15310      9074 King James Version Bible
15311      9075 King James Version Bible
15312      9076 King James Version Bible
15313      9077 King James Version Bible
15314      9078 King James Version Bible
15315      9079 King James Version Bible
15316      9080 King James Version Bible
15317      9081 King James Version Bible
15318      9082 King James Version Bible
15319      9083 King James Version Bible
15320      9084 King James Version Bible
15321      9085 King James Version Bible
15322      9086 King James Version Bible
15323      9087 King James Version Bible
15324      9088 King James Version Bible
15325      9089 King James Version Bible
15326      9090 King James Version Bible
15327      9091 King James Version Bible
15328      9092 King James Version Bible
15329      9093 King James Version Bible
15330      9094 King James Version Bible
15331      9095 King James Version Bible
15332      9096 King James Version Bible
15333      9097 King James Version Bible
15334      9098 King James Version Bible
15335      9099 King James Version Bible
15336      9100 King James Version Bible
15337      9101 King James Version Bible
15338      9102 King James Version Bible
15339      9103 King James Version Bible
15340      9104 King James Version Bible
15341      9105 King James Version Bible
15342      9106 King James Version Bible
15343      9107 King James Version Bible
15344      9108 King James Version Bible
15345      9109 King James Version Bible
15346      9110 King James Version Bible
15347      9111 King James Version Bible
15348      9112 King James Version Bible
15349      9113 King James Version Bible
15350      9114 King James Version Bible
15351      9115 King James Version Bible
15352      9116 King James Version Bible
15353      9117 King James Version Bible
15354      9118 King James Version Bible
15355      9119 King James Version Bible
15356      9120 King James Version Bible
15357      9121 King James Version Bible
15358      9122 King James Version Bible
15359      9123 King James Version Bible
15360      9124 King James Version Bible
15361      9125 King James Version Bible
15362      9126 King James Version Bible
15363      9127 King James Version Bible
15364      9128 King James Version Bible
15365      9129 King James Version Bible
15366      9130 King James Version Bible
15367      9131 King James Version Bible
15368      9132 King James Version Bible
15369      9133 King James Version Bible
15370      9134 King James Version Bible
15371      9135 King James Version Bible
15372      9136 King James Version Bible
15373      9137 King James Version Bible
15374      9138 King James Version Bible
15375      9139 King James Version Bible
15376      9140 King James Version Bible
15377      9141 King James Version Bible
15378      9142 King James Version Bible
15379      9143 King James Version Bible
15380      9144 King James Version Bible
15381      9145 King James Version Bible
15382      9146 King James Version Bible
15383      9147 King James Version Bible
15384      9148 King James Version Bible
15385      9149 King James Version Bible
15386      9150 King James Version Bible
15387      9151 King James Version Bible
15388      9152 King James Version Bible
15389      9153 King James Version Bible
15390      9154 King James Version Bible
15391      9155 King James Version Bible
15392      9156 King James Version Bible
15393      9157 King James Version Bible
15394      9158 King James Version Bible
15395      9159 King James Version Bible
15396      9160 King James Version Bible
15397      9161 King James Version Bible
15398      9162 King James Version Bible
15399      9163 King James Version Bible
15400      9164 King James Version Bible
15401      9165 King James Version Bible
15402      9166 King James Version Bible
15403      9167 King James Version Bible
15404      9168 King James Version Bible
15405      9169 King James Version Bible
15406      9170 King James Version Bible
15407      9171 King James Version Bible
15408      9172 King James Version Bible
15409      9173 King James Version Bible
15410      9174 King James Version Bible
15411      9175 King James Version Bible
15412      9176 King James Version Bible
15413      9177 King James Version Bible
15414      9178 King James Version Bible
15415      9179 King James Version Bible
15416      9180 King James Version Bible
15417      9181 King James Version Bible
15418      9182 King James Version Bible
15419      9183 King James Version Bible
15420      9184 King James Version Bible
15421      9185 King James Version Bible
15422      9186 King James Version Bible
15423      9187 King James Version Bible
15424      9188 King James Version Bible
15425      9189 King James Version Bible
15426      9190 King James Version Bible
15427      9191 King James Version Bible
15428      9192 King James Version Bible
15429      9193 King James Version Bible
15430      9194 King James Version Bible
15431      9195 King James Version Bible
15432      9196 King James Version Bible
15433      9197 King James Version Bible
15434      9198 King James Version Bible
15435      9199 King James Version Bible
15436      9200 King James Version Bible
15437      9201 King James Version Bible
15438      9202 King James Version Bible
15439      9203 King James Version Bible
15440      9204 King James Version Bible
15441      9205 King James Version Bible
15442      9206 King James Version Bible
15443      9207 King James Version Bible
15444      9208 King James Version Bible
15445      9209 King James Version Bible
15446      9210 King James Version Bible
15447      9211 King James Version Bible
15448      9212 King James Version Bible
15449      9213 King James Version Bible
15450      9214 King James Version Bible
15451      9215 King James Version Bible
15452      9216 King James Version Bible
15453      9217 King James Version Bible
15454      9218 King James Version Bible
15455      9219 King James Version Bible
15456      9220 King James Version Bible
15457      9221 King James Version Bible
15458      9222 King James Version Bible
15459      9223 King James Version Bible
15460      9224 King James Version Bible
15461      9225 King James Version Bible
15462      9226 King James Version Bible
15463      9227 King James Version Bible
15464      9228 King James Version Bible
15465      9229 King James Version Bible
15466      9230 King James Version Bible
15467      9231 King James Version Bible
15468      9232 King James Version Bible
15469      9233 King James Version Bible
15470      9234 King James Version Bible
15471      9235 King James Version Bible
15472      9236 King James Version Bible
15473      9237 King James Version Bible
15474      9238 King James Version Bible
15475      9239 King James Version Bible
15476      9240 King James Version Bible
15477      9241 King James Version Bible
15478      9242 King James Version Bible
15479      9243 King James Version Bible
15480      9244 King James Version Bible
15481      9245 King James Version Bible
15482      9246 King James Version Bible
15483      9247 King James Version Bible
15484      9248 King James Version Bible
15485      9249 King James Version Bible
15486      9250 King James Version Bible
15487      9251 King James Version Bible
15488      9252 King James Version Bible
15489      9253 King James Version Bible
15490      9254 King James Version Bible
15491      9255 King James Version Bible
15492      9256 King James Version Bible
15493      9257 King James Version Bible
15494      9258 King James Version Bible
15495      9259 King James Version Bible
15496      9260 King James Version Bible
15497      9261 King James Version Bible
15498      9262 King James Version Bible
15499      9263 King James Version Bible
15500      9264 King James Version Bible
15501      9265 King James Version Bible
15502      9266 King James Version Bible
15503      9267 King James Version Bible
15504      9268 King James Version Bible
15505      9269 King James Version Bible
15506      9270 King James Version Bible
15507      9271 King James Version Bible
15508      9272 King James Version Bible
15509      9273 King James Version Bible
15510      9274 King James Version Bible
15511      9275 King James Version Bible
15512      9276 King James Version Bible
15513      9277 King James Version Bible
15514      9278 King James Version Bible
15515      9279 King James Version Bible
15516      9280 King James Version Bible
15517      9281 King James Version Bible
15518      9282 King James Version Bible
15519      9283 King James Version Bible
15520      9284 King James Version Bible
15521      9285 King James Version Bible
15522      9286 King James Version Bible
15523      9287 King James Version Bible
15524      9288 King James Version Bible
15525      9289 King James Version Bible
15526      9290 King James Version Bible
15527      9291 King James Version Bible
15528      9292 King James Version Bible
15529      9293 King James Version Bible
15530      9294 King James Version Bible
15531      9295 King James Version Bible
15532      9296 King James Version Bible
15533      9297 King James Version Bible
15534      9298 King James Version Bible
15535      9299 King James Version Bible
15536      9300 King James Version Bible
15537      9301 King James Version Bible
15538      9302 King James Version Bible
15539      9303 King James Version Bible
15540      9304 King James Version Bible
15541      9305 King James Version Bible
15542      9306 King James Version Bible
15543      9307 King James Version Bible
15544      9308 King James Version Bible
15545      9309 King James Version Bible
15546      9310 King James Version Bible
15547      9311 King James Version Bible
15548      9312 King James Version Bible
15549      9313 King James Version Bible
15550      9314 King James Version Bible
15551      9315 King James Version Bible
15552      9316 King James Version Bible
15553      9317 King James Version Bible
15554      9318 King James Version Bible
15555      9319 King James Version Bible
15556      9320 King James Version Bible
15557      9321 King James Version Bible
15558      9322 King James Version Bible
15559      9323 King James Version Bible
15560      9324 King James Version Bible
15561      9325 King James Version Bible
15562      9326 King James Version Bible
15563      9327 King James Version Bible
15564      9328 King James Version Bible
15565      9329 King James Version Bible
15566      9330 King James Version Bible
15567      9331 King James Version Bible
15568      9332 King James Version Bible
15569      9333 King James Version Bible
15570      9334 King James Version Bible
15571      9335 King James Version Bible
15572      9336 King James Version Bible
15573      9337 King James Version Bible
15574      9338 King James Version Bible
15575      9339 King James Version Bible
15576      9340 King James Version Bible
15577      9341 King James Version Bible
15578      9342 King James Version Bible
15579      9343 King James Version Bible
15580      9344 King James Version Bible
15581      9345 King James Version Bible
15582      9346 King James Version Bible
15583      9347 King James Version Bible
15584      9348 King James Version Bible
15585      9349 King James Version Bible
15586      9350 King James Version Bible
15587      9351 King James Version Bible
15588      9352 King James Version Bible
15589      9353 King James Version Bible
15590      9354 King James Version Bible
15591      9355 King James Version Bible
15592      9356 King James Version Bible
15593      9357 King James Version Bible
15594      9358 King James Version Bible
15595      9359 King James Version Bible
15596      9360 King James Version Bible
15597      9361 King James Version Bible
15598      9362 King James Version Bible
15599      9363 King James Version Bible
15600      9364 King James Version Bible
15601      9365 King James Version Bible
15602      9366 King James Version Bible
15603      9367 King James Version Bible
15604      9368 King James Version Bible
15605      9369 King James Version Bible
15606      9370 King James Version Bible
15607      9371 King James Version Bible
15608      9372 King James Version Bible
15609      9373 King James Version Bible
15610      9374 King James Version Bible
15611      9375 King James Version Bible
15612      9376 King James Version Bible
15613      9377 King James Version Bible
15614      9378 King James Version Bible
15615      9379 King James Version Bible
15616      9380 King James Version Bible
15617      9381 King James Version Bible
15618      9382 King James Version Bible
15619      9383 King James Version Bible
15620      9384 King James Version Bible
15621      9385 King James Version Bible
15622      9386 King James Version Bible
15623      9387 King James Version Bible
15624      9388 King James Version Bible
15625      9389 King James Version Bible
15626      9390 King James Version Bible
15627      9391 King James Version Bible
15628      9392 King James Version Bible
15629      9393 King James Version Bible
15630      9394 King James Version Bible
15631      9395 King James Version Bible
15632      9396 King James Version Bible
15633      9397 King James Version Bible
15634      9398 King James Version Bible
15635      9399 King James Version Bible
15636      9400 King James Version Bible
15637      9401 King James Version Bible
15638      9402 King James Version Bible
15639      9403 King James Version Bible
15640      9404 King James Version Bible
15641      9405 King James Version Bible
15642      9406 King James Version Bible
15643      9407 King James Version Bible
15644      9408 King James Version Bible
15645      9409 King James Version Bible
15646      9410 King James Version Bible
15647      9411 King James Version Bible
15648      9412 King James Version Bible
15649      9413 King James Version Bible
15650      9414 King James Version Bible
15651      9415 King James Version Bible
15652      9416 King James Version Bible
15653      9417 King James Version Bible
15654      9418 King James Version Bible
15655      9419 King James Version Bible
15656      9420 King James Version Bible
15657      9421 King James Version Bible
15658      9422 King James Version Bible
15659      9423 King James Version Bible
15660      9424 King James Version Bible
15661      9425 King James Version Bible
15662      9426 King James Version Bible
15663      9427 King James Version Bible
15664      9428 King James Version Bible
15665      9429 King James Version Bible
15666      9430 King James Version Bible
15667      9431 King James Version Bible
15668      9432 King James Version Bible
15669      9433 King James Version Bible
15670      9434 King James Version Bible
15671      9435 King James Version Bible
15672      9436 King James Version Bible
15673      9437 King James Version Bible
15674      9438 King James Version Bible
15675      9439 King James Version Bible
15676      9440 King James Version Bible
15677      9441 King James Version Bible
15678      9442 King James Version Bible
15679      9443 King James Version Bible
15680      9444 King James Version Bible
15681      9445 King James Version Bible
15682      9446 King James Version Bible
15683      9447 King James Version Bible
15684      9448 King James Version Bible
15685      9449 King James Version Bible
15686      9450 King James Version Bible
15687      9451 King James Version Bible
15688      9452 King James Version Bible
15689      9453 King James Version Bible
15690      9454 King James Version Bible
15691      9455 King James Version Bible
15692      9456 King James Version Bible
15693      9457 King James Version Bible
15694      9458 King James Version Bible
15695      9459 King James Version Bible
15696      9460 King James Version Bible
15697      9461 King James Version Bible
15698      9462 King James Version Bible
15699      9463 King James Version Bible
15700      9464 King James Version Bible
15701      9465 King James Version Bible
15702      9466 King James Version Bible
15703      9467 King James Version Bible
15704      9468 King James Version Bible
15705      9469 King James Version Bible
15706      9470 King James Version Bible
15707      9471 King James Version Bible
15708      9472 King James Version Bible
15709      9473 King James Version Bible
15710      9474 King James Version Bible
15711      9475 King James Version Bible
15712      9476 King James Version Bible
15713      9477 King James Version Bible
15714      9478 King James Version Bible
15715      9479 King James Version Bible
15716      9480 King James Version Bible
15717      9481 King James Version Bible
15718      9482 King James Version Bible
15719      9483 King James Version Bible
15720      9484 King James Version Bible
15721      9485 King James Version Bible
15722      9486 King James Version Bible
15723      9487 King James Version Bible
15724      9488 King James Version Bible
15725      9489 King James Version Bible
15726      9490 King James Version Bible
15727      9491 King James Version Bible
15728      9492 King James Version Bible
15729      9493 King James Version Bible
15730      9494 King James Version Bible
15731      9495 King James Version Bible
15732      9496 King James Version Bible
15733      9497 King James Version Bible
15734      9498 King James Version Bible
15735      9499 King James Version Bible
15736      9500 King James Version Bible
15737      9501 King James Version Bible
15738      9502 King James Version Bible
15739      9503 King James Version Bible
15740      9504 King James Version Bible
15741      9505 King James Version Bible
15742      9506 King James Version Bible
15743      9507 King James Version Bible
15744      9508 King James Version Bible
15745      9509 King James Version Bible
15746      9510 King James Version Bible
15747      9511 King James Version Bible
15748      9512 King James Version Bible
15749      9513 King James Version Bible
15750      9514 King James Version Bible
15751      9515 King James Version Bible
15752      9516 King James Version Bible
15753      9517 King James Version Bible
15754      9518 King James Version Bible
15755      9519 King James Version Bible
15756      9520 King James Version Bible
15757      9521 King James Version Bible
15758      9522 King James Version Bible
15759      9523 King James Version Bible
15760      9524 King James Version Bible
15761      9525 King James Version Bible
15762      9526 King James Version Bible
15763      9527 King James Version Bible
15764      9528 King James Version Bible
15765      9529 King James Version Bible
15766      9530 King James Version Bible
15767      9531 King James Version Bible
15768      9532 King James Version Bible
15769      9533 King James Version Bible
15770      9534 King James Version Bible
15771      9535 King James Version Bible
15772      9536 King James Version Bible
15773      9537 King James Version Bible
15774      9538 King James Version Bible
15775      9539 King James Version Bible
15776      9540 King James Version Bible
15777      9541 King James Version Bible
15778      9542 King James Version Bible
15779      9543 King James Version Bible
15780      9544 King James Version Bible
15781      9545 King James Version Bible
15782      9546 King James Version Bible
15783      9547 King James Version Bible
15784      9548 King James Version Bible
15785      9549 King James Version Bible
15786      9550 King James Version Bible
15787      9551 King James Version Bible
15788      9552 King James Version Bible
15789      9553 King James Version Bible
15790      9554 King James Version Bible
15791      9555 King James Version Bible
15792      9556 King James Version Bible
15793      9557 King James Version Bible
15794      9558 King James Version Bible
15795      9559 King James Version Bible
15796      9560 King James Version Bible
15797      9561 King James Version Bible
15798      9562 King James Version Bible
15799      9563 King James Version Bible
15800      9564 King James Version Bible
15801      9565 King James Version Bible
15802      9566 King James Version Bible
15803      9567 King James Version Bible
15804      9568 King James Version Bible
15805      9569 King James Version Bible
15806      9570 King James Version Bible
15807      9571 King James Version Bible
15808      9572 King James Version Bible
15809      9573 King James Version Bible
15810      9574 King James Version Bible
15811      9575 King James Version Bible
15812      9576 King James Version Bible
15813      9577 King James Version Bible
15814      9578 King James Version Bible
15815      9579 King James Version Bible
15816      9580 King James Version Bible
15817      9581 King James Version Bible
15818      9582 King James Version Bible
15819      9583 King James Version Bible
15820      9584 King James Version Bible
15821      9585 King James Version Bible
15822      9586 King James Version Bible
15823      9587 King James Version Bible
15824      9588 King James Version Bible
15825      9589 King James Version Bible
15826      9590 King James Version Bible
15827      9591 King James Version Bible
15828      9592 King James Version Bible
15829      9593 King James Version Bible
15830      9594 King James Version Bible
15831      9595 King James Version Bible
15832      9596 King James Version Bible
15833      9597 King James Version Bible
15834      9598 King James Version Bible
15835      9599 King James Version Bible
15836      9600 King James Version Bible
15837      9601 King James Version Bible
15838      9602 King James Version Bible
15839      9603 King James Version Bible
15840      9604 King James Version Bible
15841      9605 King James Version Bible
15842      9606 King James Version Bible
15843      9607 King James Version Bible
15844      9608 King James Version Bible
15845      9609 King James Version Bible
15846      9610 King James Version Bible
15847      9611 King James Version Bible
15848      9612 King James Version Bible
15849      9613 King James Version Bible
15850      9614 King James Version Bible
15851      9615 King James Version Bible
15852      9616 King James Version Bible
15853      9617 King James Version Bible
15854      9618 King James Version Bible
15855      9619 King James Version Bible
15856      9620 King James Version Bible
15857      9621 King James Version Bible
15858      9622 King James Version Bible
15859      9623 King James Version Bible
15860      9624 King James Version Bible
15861      9625 King James Version Bible
15862      9626 King James Version Bible
15863      9627 King James Version Bible
15864      9628 King James Version Bible
15865      9629 King James Version Bible
15866      9630 King James Version Bible
15867      9631 King James Version Bible
15868      9632 King James Version Bible
15869      9633 King James Version Bible
15870      9634 King James Version Bible
15871      9635 King James Version Bible
15872      9636 King James Version Bible
15873      9637 King James Version Bible
15874      9638 King James Version Bible
15875      9639 King James Version Bible
15876      9640 King James Version Bible
15877      9641 King James Version Bible
15878      9642 King James Version Bible
15879      9643 King James Version Bible
15880      9644 King James Version Bible
15881      9645 King James Version Bible
15882      9646 King James Version Bible
15883      9647 King James Version Bible
15884      9648 King James Version Bible
15885      9649 King James Version Bible
15886      9650 King James Version Bible
15887      9651 King James Version Bible
15888      9652 King James Version Bible
15889      9653 King James Version Bible
15890      9654 King James Version Bible
15891      9655 King James Version Bible
15892      9656 King James Version Bible
15893      9657 King James Version Bible
15894      9658 King James Version Bible
15895      9659 King James Version Bible
15896      9660 King James Version Bible
15897      9661 King James Version Bible
15898      9662 King James Version Bible
15899      9663 King James Version Bible
15900      9664 King James Version Bible
15901      9665 King James Version Bible
15902      9666 King James Version Bible
15903      9667 King James Version Bible
15904      9668 King James Version Bible
15905      9669 King James Version Bible
15906      9670 King James Version Bible
15907      9671 King James Version Bible
15908      9672 King James Version Bible
15909      9673 King James Version Bible
15910      9674 King James Version Bible
15911      9675 King James Version Bible
15912      9676 King James Version Bible
15913      9677 King James Version Bible
15914      9678 King James Version Bible
15915      9679 King James Version Bible
15916      9680 King James Version Bible
15917      9681 King James Version Bible
15918      9682 King James Version Bible
15919      9683 King James Version Bible
15920      9684 King James Version Bible
15921      9685 King James Version Bible
15922      9686 King James Version Bible
15923      9687 King James Version Bible
15924      9688 King James Version Bible
15925      9689 King James Version Bible
15926      9690 King James Version Bible
15927      9691 King James Version Bible
15928      9692 King James Version Bible
15929      9693 King James Version Bible
15930      9694 King James Version Bible
15931      9695 King James Version Bible
15932      9696 King James Version Bible
15933      9697 King James Version Bible
15934      9698 King James Version Bible
15935      9699 King James Version Bible
15936      9700 King James Version Bible
15937      9701 King James Version Bible
15938      9702 King James Version Bible
15939      9703 King James Version Bible
15940      9704 King James Version Bible
15941      9705 King James Version Bible
15942      9706 King James Version Bible
15943      9707 King James Version Bible
15944      9708 King James Version Bible
15945      9709 King James Version Bible
15946      9710 King James Version Bible
15947      9711 King James Version Bible
15948      9712 King James Version Bible
15949      9713 King James Version Bible
15950      9714 King James Version Bible
15951      9715 King James Version Bible
15952      9716 King James Version Bible
15953      9717 King James Version Bible
15954      9718 King James Version Bible
15955      9719 King James Version Bible
15956      9720 King James Version Bible
15957      9721 King James Version Bible
15958      9722 King James Version Bible
15959      9723 King James Version Bible
15960      9724 King James Version Bible
15961      9725 King James Version Bible
15962      9726 King James Version Bible
15963      9727 King James Version Bible
15964      9728 King James Version Bible
15965      9729 King James Version Bible
15966      9730 King James Version Bible
15967      9731 King James Version Bible
15968      9732 King James Version Bible
15969      9733 King James Version Bible
15970      9734 King James Version Bible
15971      9735 King James Version Bible
15972      9736 King James Version Bible
15973      9737 King James Version Bible
15974      9738 King James Version Bible
15975      9739 King James Version Bible
15976      9740 King James Version Bible
15977      9741 King James Version Bible
15978      9742 King James Version Bible
15979      9743 King James Version Bible
15980      9744 King James Version Bible
15981      9745 King James Version Bible
15982      9746 King James Version Bible
15983      9747 King James Version Bible
15984      9748 King James Version Bible
15985      9749 King James Version Bible
15986      9750 King James Version Bible
15987      9751 King James Version Bible
15988      9752 King James Version Bible
15989      9753 King James Version Bible
15990      9754 King James Version Bible
15991      9755 King James Version Bible
15992      9756 King James Version Bible
15993      9757 King James Version Bible
15994      9758 King James Version Bible
15995      9759 King James Version Bible
15996      9760 King James Version Bible
15997      9761 King James Version Bible
15998      9762 King James Version Bible
15999      9763 King James Version Bible
16000      9764 King James Version Bible
16001      9765 King James Version Bible
16002      9766 King James Version Bible
16003      9767 King James Version Bible
16004      9768 King James Version Bible
16005      9769 King James Version Bible
16006      9770 King James Version Bible
16007      9771 King James Version Bible
16008      9772 King James Version Bible
16009      9773 King James Version Bible
16010      9774 King James Version Bible
16011      9775 King James Version Bible
16012      9776 King James Version Bible
16013      9777 King James Version Bible
16014      9778 King James Version Bible
16015      9779 King James Version Bible
16016      9780 King James Version Bible
16017      9781 King James Version Bible
16018      9782 King James Version Bible
16019      9783 King James Version Bible
16020      9784 King James Version Bible
16021      9785 King James Version Bible
16022      9786 King James Version Bible
16023      9787 King James Version Bible
16024      9788 King James Version Bible
16025      9789 King James Version Bible
16026      9790 King James Version Bible
16027      9791 King James Version Bible
16028      9792 King James Version Bible
16029      9793 King James Version Bible
16030      9794 King James Version Bible
16031      9795 King James Version Bible
16032      9796 King James Version Bible
16033      9797 King James Version Bible
16034      9798 King James Version Bible
16035      9799 King James Version Bible
16036      9800 King James Version Bible
16037      9801 King James Version Bible
16038      9802 King James Version Bible
16039      9803 King James Version Bible
16040      9804 King James Version Bible
16041      9805 King James Version Bible
16042      9806 King James Version Bible
16043      9807 King James Version Bible
16044      9808 King James Version Bible
16045      9809 King James Version Bible
16046      9810 King James Version Bible
16047      9811 King James Version Bible
16048      9812 King James Version Bible
16049      9813 King James Version Bible
16050      9814 King James Version Bible
16051      9815 King James Version Bible
16052      9816 King James Version Bible
16053      9817 King James Version Bible
16054      9818 King James Version Bible
16055      9819 King James Version Bible
16056      9820 King James Version Bible
16057      9821 King James Version Bible
16058      9822 King James Version Bible
16059      9823 King James Version Bible
16060      9824 King James Version Bible
16061      9825 King James Version Bible
16062      9826 King James Version Bible
16063      9827 King James Version Bible
16064      9828 King James Version Bible
16065      9829 King James Version Bible
16066      9830 King James Version Bible
16067      9831 King James Version Bible
16068      9832 King James Version Bible
16069      9833 King James Version Bible
16070      9834 King James Version Bible
16071      9835 King James Version Bible
16072      9836 King James Version Bible
16073      9837 King James Version Bible
16074      9838 King James Version Bible
16075      9839 King James Version Bible
16076      9840 King James Version Bible
16077      9841 King James Version Bible
16078      9842 King James Version Bible
16079      9843 King James Version Bible
16080      9844 King James Version Bible
16081      9845 King James Version Bible
16082      9846 King James Version Bible
16083      9847 King James Version Bible
16084      9848 King James Version Bible
16085      9849 King James Version Bible
16086      9850 King James Version Bible
16087      9851 King James Version Bible
16088      9852 King James Version Bible
16089      9853 King James Version Bible
16090      9854 King James Version Bible
16091      9855 King James Version Bible
16092      9856 King James Version Bible
16093      9857 King James Version Bible
16094      9858 King James Version Bible
16095      9859 King James Version Bible
16096      9860 King James Version Bible
16097      9861 King James Version Bible
16098      9862 King James Version Bible
16099      9863 King James Version Bible
16100      9864 King James Version Bible
16101      9865 King James Version Bible
16102      9866 King James Version Bible
16103      9867 King James Version Bible
16104      9868 King James Version Bible
16105      9869 King James Version Bible
16106      9870 King James Version Bible
16107      9871 King James Version Bible
16108      9872 King James Version Bible
16109      9873 King James Version Bible
16110      9874 King James Version Bible
16111      9875 King James Version Bible
16112      9876 King James Version Bible
16113      9877 King James Version Bible
16114      9878 King James Version Bible
16115      9879 King James Version Bible
16116      9880 King James Version Bible
16117      9881 King James Version Bible
16118      9882 King James Version Bible
16119      9883 King James Version Bible
16120      9884 King James Version Bible
16121      9885 King James Version Bible
16122      9886 King James Version Bible
16123      9887 King James Version Bible
16124      9888 King James Version Bible
16125      9889 King James Version Bible
16126      9890 King James Version Bible
16127      9891 King James Version Bible
16128      9892 King James Version Bible
16129      9893 King James Version Bible
16130      9894 King James Version Bible
16131      9895 King James Version Bible
16132      9896 King James Version Bible
16133      9897 King James Version Bible
16134      9898 King James Version Bible
16135      9899 King James Version Bible
16136      9900 King James Version Bible
16137      9901 King James Version Bible
16138      9902 King James Version Bible
16139      9903 King James Version Bible
16140      9904 King James Version Bible
16141      9905 King James Version Bible
16142      9906 King James Version Bible
16143      9907 King James Version Bible
16144      9908 King James Version Bible
16145      9909 King James Version Bible
16146      9910 King James Version Bible
16147      9911 King James Version Bible
16148      9912 King James Version Bible
16149      9913 King James Version Bible
16150      9914 King James Version Bible
16151      9915 King James Version Bible
16152      9916 King James Version Bible
16153      9917 King James Version Bible
16154      9918 King James Version Bible
16155      9919 King James Version Bible
16156      9920 King James Version Bible
16157      9921 King James Version Bible
16158      9922 King James Version Bible
16159      9923 King James Version Bible
16160      9924 King James Version Bible
16161      9925 King James Version Bible
16162      9926 King James Version Bible
16163      9927 King James Version Bible
16164      9928 King James Version Bible
16165      9929 King James Version Bible
16166      9930 King James Version Bible
16167      9931 King James Version Bible
16168      9932 King James Version Bible
16169      9933 King James Version Bible
16170      9934 King James Version Bible
16171      9935 King James Version Bible
16172      9936 King James Version Bible
16173      9937 King James Version Bible
16174      9938 King James Version Bible
16175      9939 King James Version Bible
16176      9940 King James Version Bible
16177      9941 King James Version Bible
16178      9942 King James Version Bible
16179      9943 King James Version Bible
16180      9944 King James Version Bible
16181      9945 King James Version Bible
16182      9946 King James Version Bible
16183      9947 King James Version Bible
16184      9948 King James Version Bible
16185      9949 King James Version Bible
16186      9950 King James Version Bible
16187      9951 King James Version Bible
16188      9952 King James Version Bible
16189      9953 King James Version Bible
16190      9954 King James Version Bible
16191      9955 King James Version Bible
16192      9956 King James Version Bible
16193      9957 King James Version Bible
16194      9958 King James Version Bible
16195      9959 King James Version Bible
16196      9960 King James Version Bible
16197      9961 King James Version Bible
16198      9962 King James Version Bible
16199      9963 King James Version Bible
16200      9964 King James Version Bible
16201      9965 King James Version Bible
16202      9966 King James Version Bible
16203      9967 King James Version Bible
16204      9968 King James Version Bible
16205      9969 King James Version Bible
16206      9970 King James Version Bible
16207      9971 King James Version Bible
16208      9972 King James Version Bible
16209      9973 King James Version Bible
16210      9974 King James Version Bible
16211      9975 King James Version Bible
16212      9976 King James Version Bible
16213      9977 King James Version Bible
16214      9978 King James Version Bible
16215      9979 King James Version Bible
16216      9980 King James Version Bible
16217      9981 King James Version Bible
16218      9982 King James Version Bible
16219      9983 King James Version Bible
16220      9984 King James Version Bible
16221      9985 King James Version Bible
16222      9986 King James Version Bible
16223      9987 King James Version Bible
16224      9988 King James Version Bible
16225      9989 King James Version Bible
16226      9990 King James Version Bible
16227      9991 King James Version Bible
16228      9992 King James Version Bible
16229      9993 King James Version Bible
16230      9994 King James Version Bible
16231      9995 King James Version Bible
16232      9996 King James Version Bible
16233      9997 King James Version Bible
16234      9998 King James Version Bible
16235      9999 King James Version Bible
16236     10000 King James Version Bible
16237     10001 King James Version Bible
16238     10002 King James Version Bible
16239     10003 King James Version Bible
16240     10004 King James Version Bible
16241     10005 King James Version Bible
16242     10006 King James Version Bible
16243     10007 King James Version Bible
16244     10008 King James Version Bible
16245     10009 King James Version Bible
16246     10010 King James Version Bible
16247     10011 King James Version Bible
16248     10012 King James Version Bible
16249     10013 King James Version Bible
16250     10014 King James Version Bible
16251     10015 King James Version Bible
16252     10016 King James Version Bible
16253     10017 King James Version Bible
16254     10018 King James Version Bible
16255     10019 King James Version Bible
16256     10020 King James Version Bible
16257     10021 King James Version Bible
16258     10022 King James Version Bible
16259     10023 King James Version Bible
16260     10024 King James Version Bible
16261     10025 King James Version Bible
16262     10026 King James Version Bible
16263     10027 King James Version Bible
16264     10028 King James Version Bible
16265     10029 King James Version Bible
16266     10030 King James Version Bible
16267     10031 King James Version Bible
16268     10032 King James Version Bible
16269     10033 King James Version Bible
16270     10034 King James Version Bible
16271     10035 King James Version Bible
16272     10036 King James Version Bible
16273     10037 King James Version Bible
16274     10038 King James Version Bible
16275     10039 King James Version Bible
16276     10040 King James Version Bible
16277     10041 King James Version Bible
16278     10042 King James Version Bible
16279     10043 King James Version Bible
16280     10044 King James Version Bible
16281     10045 King James Version Bible
16282     10046 King James Version Bible
16283     10047 King James Version Bible
16284     10048 King James Version Bible
16285     10049 King James Version Bible
16286     10050 King James Version Bible
16287     10051 King James Version Bible
16288     10052 King James Version Bible
16289     10053 King James Version Bible
16290     10054 King James Version Bible
16291     10055 King James Version Bible
16292     10056 King James Version Bible
16293     10057 King James Version Bible
16294     10058 King James Version Bible
16295     10059 King James Version Bible
16296     10060 King James Version Bible
16297     10061 King James Version Bible
16298     10062 King James Version Bible
16299     10063 King James Version Bible
16300     10064 King James Version Bible
16301     10065 King James Version Bible
16302     10066 King James Version Bible
16303     10067 King James Version Bible
16304     10068 King James Version Bible
16305     10069 King James Version Bible
16306     10070 King James Version Bible
16307     10071 King James Version Bible
16308     10072 King James Version Bible
16309     10073 King James Version Bible
16310     10074 King James Version Bible
16311     10075 King James Version Bible
16312     10076 King James Version Bible
16313     10077 King James Version Bible
16314     10078 King James Version Bible
16315     10079 King James Version Bible
16316     10080 King James Version Bible
16317     10081 King James Version Bible
16318     10082 King James Version Bible
16319     10083 King James Version Bible
16320     10084 King James Version Bible
16321     10085 King James Version Bible
16322     10086 King James Version Bible
16323     10087 King James Version Bible
16324     10088 King James Version Bible
16325     10089 King James Version Bible
16326     10090 King James Version Bible
16327     10091 King James Version Bible
16328     10092 King James Version Bible
16329     10093 King James Version Bible
16330     10094 King James Version Bible
16331     10095 King James Version Bible
16332     10096 King James Version Bible
16333     10097 King James Version Bible
16334     10098 King James Version Bible
16335     10099 King James Version Bible
16336     10100 King James Version Bible
16337     10101 King James Version Bible
16338     10102 King James Version Bible
16339     10103 King James Version Bible
16340     10104 King James Version Bible
16341     10105 King James Version Bible
16342     10106 King James Version Bible
16343     10107 King James Version Bible
16344     10108 King James Version Bible
16345     10109 King James Version Bible
16346     10110 King James Version Bible
16347     10111 King James Version Bible
16348     10112 King James Version Bible
16349     10113 King James Version Bible
16350     10114 King James Version Bible
16351     10115 King James Version Bible
16352     10116 King James Version Bible
16353     10117 King James Version Bible
16354     10118 King James Version Bible
16355     10119 King James Version Bible
16356     10120 King James Version Bible
16357     10121 King James Version Bible
16358     10122 King James Version Bible
16359     10123 King James Version Bible
16360     10124 King James Version Bible
16361     10125 King James Version Bible
16362     10126 King James Version Bible
16363     10127 King James Version Bible
16364     10128 King James Version Bible
16365     10129 King James Version Bible
16366     10130 King James Version Bible
16367     10131 King James Version Bible
16368     10132 King James Version Bible
16369     10133 King James Version Bible
16370     10134 King James Version Bible
16371     10135 King James Version Bible
16372     10136 King James Version Bible
16373     10137 King James Version Bible
16374     10138 King James Version Bible
16375     10139 King James Version Bible
16376     10140 King James Version Bible
16377     10141 King James Version Bible
16378     10142 King James Version Bible
16379     10143 King James Version Bible
16380     10144 King James Version Bible
16381     10145 King James Version Bible
16382     10146 King James Version Bible
16383     10147 King James Version Bible
16384     10148 King James Version Bible
16385     10149 King James Version Bible
16386     10150 King James Version Bible
16387     10151 King James Version Bible
16388     10152 King James Version Bible
16389     10153 King James Version Bible
16390     10154 King James Version Bible
16391     10155 King James Version Bible
16392     10156 King James Version Bible
16393     10157 King James Version Bible
16394     10158 King James Version Bible
16395     10159 King James Version Bible
16396     10160 King James Version Bible
16397     10161 King James Version Bible
16398     10162 King James Version Bible
16399     10163 King James Version Bible
16400     10164 King James Version Bible
16401     10165 King James Version Bible
16402     10166 King James Version Bible
16403     10167 King James Version Bible
16404     10168 King James Version Bible
16405     10169 King James Version Bible
16406     10170 King James Version Bible
16407     10171 King James Version Bible
16408     10172 King James Version Bible
16409     10173 King James Version Bible
16410     10174 King James Version Bible
16411     10175 King James Version Bible
16412     10176 King James Version Bible
16413     10177 King James Version Bible
16414     10178 King James Version Bible
16415     10179 King James Version Bible
16416     10180 King James Version Bible
16417     10181 King James Version Bible
16418     10182 King James Version Bible
16419     10183 King James Version Bible
16420     10184 King James Version Bible
16421     10185 King James Version Bible
16422     10186 King James Version Bible
16423     10187 King James Version Bible
16424     10188 King James Version Bible
16425     10189 King James Version Bible
16426     10190 King James Version Bible
16427     10191 King James Version Bible
16428     10192 King James Version Bible
16429     10193 King James Version Bible
16430     10194 King James Version Bible
16431     10195 King James Version Bible
16432     10196 King James Version Bible
16433     10197 King James Version Bible
16434     10198 King James Version Bible
16435     10199 King James Version Bible
16436     10200 King James Version Bible
16437     10201 King James Version Bible
16438     10202 King James Version Bible
16439     10203 King James Version Bible
16440     10204 King James Version Bible
16441     10205 King James Version Bible
16442     10206 King James Version Bible
16443     10207 King James Version Bible
16444     10208 King James Version Bible
16445     10209 King James Version Bible
16446     10210 King James Version Bible
16447     10211 King James Version Bible
16448     10212 King James Version Bible
16449     10213 King James Version Bible
16450     10214 King James Version Bible
16451     10215 King James Version Bible
16452     10216 King James Version Bible
16453     10217 King James Version Bible
16454     10218 King James Version Bible
16455     10219 King James Version Bible
16456     10220 King James Version Bible
16457     10221 King James Version Bible
16458     10222 King James Version Bible
16459     10223 King James Version Bible
16460     10224 King James Version Bible
16461     10225 King James Version Bible
16462     10226 King James Version Bible
16463     10227 King James Version Bible
16464     10228 King James Version Bible
16465     10229 King James Version Bible
16466     10230 King James Version Bible
16467     10231 King James Version Bible
16468     10232 King James Version Bible
16469     10233 King James Version Bible
16470     10234 King James Version Bible
16471     10235 King James Version Bible
16472     10236 King James Version Bible
16473     10237 King James Version Bible
16474     10238 King James Version Bible
16475     10239 King James Version Bible
16476     10240 King James Version Bible
16477     10241 King James Version Bible
16478     10242 King James Version Bible
16479     10243 King James Version Bible
16480     10244 King James Version Bible
16481     10245 King James Version Bible
16482     10246 King James Version Bible
16483     10247 King James Version Bible
16484     10248 King James Version Bible
16485     10249 King James Version Bible
16486     10250 King James Version Bible
16487     10251 King James Version Bible
16488     10252 King James Version Bible
16489     10253 King James Version Bible
16490     10254 King James Version Bible
16491     10255 King James Version Bible
16492     10256 King James Version Bible
16493     10257 King James Version Bible
16494     10258 King James Version Bible
16495     10259 King James Version Bible
16496     10260 King James Version Bible
16497     10261 King James Version Bible
16498     10262 King James Version Bible
16499     10263 King James Version Bible
16500     10264 King James Version Bible
16501     10265 King James Version Bible
16502     10266 King James Version Bible
16503     10267 King James Version Bible
16504     10268 King James Version Bible
16505     10269 King James Version Bible
16506     10270 King James Version Bible
16507     10271 King James Version Bible
16508     10272 King James Version Bible
16509     10273 King James Version Bible
16510     10274 King James Version Bible
16511     10275 King James Version Bible
16512     10276 King James Version Bible
16513     10277 King James Version Bible
16514     10278 King James Version Bible
16515     10279 King James Version Bible
16516     10280 King James Version Bible
16517     10281 King James Version Bible
16518     10282 King James Version Bible
16519     10283 King James Version Bible
16520     10284 King James Version Bible
16521     10285 King James Version Bible
16522     10286 King James Version Bible
16523     10287 King James Version Bible
16524     10288 King James Version Bible
16525     10289 King James Version Bible
16526     10290 King James Version Bible
16527     10291 King James Version Bible
16528     10292 King James Version Bible
16529     10293 King James Version Bible
16530     10294 King James Version Bible
16531     10295 King James Version Bible
16532     10296 King James Version Bible
16533     10297 King James Version Bible
16534     10298 King James Version Bible
16535     10299 King James Version Bible
16536     10300 King James Version Bible
16537     10301 King James Version Bible
16538     10302 King James Version Bible
16539     10303 King James Version Bible
16540     10304 King James Version Bible
16541     10305 King James Version Bible
16542     10306 King James Version Bible
16543     10307 King James Version Bible
16544     10308 King James Version Bible
16545     10309 King James Version Bible
16546     10310 King James Version Bible
16547     10311 King James Version Bible
16548     10312 King James Version Bible
16549     10313 King James Version Bible
16550     10314 King James Version Bible
16551     10315 King James Version Bible
16552     10316 King James Version Bible
16553     10317 King James Version Bible
16554     10318 King James Version Bible
16555     10319 King James Version Bible
16556     10320 King James Version Bible
16557     10321 King James Version Bible
16558     10322 King James Version Bible
16559     10323 King James Version Bible
16560     10324 King James Version Bible
16561     10325 King James Version Bible
16562     10326 King James Version Bible
16563     10327 King James Version Bible
16564     10328 King James Version Bible
16565     10329 King James Version Bible
16566     10330 King James Version Bible
16567     10331 King James Version Bible
16568     10332 King James Version Bible
16569     10333 King James Version Bible
16570     10334 King James Version Bible
16571     10335 King James Version Bible
16572     10336 King James Version Bible
16573     10337 King James Version Bible
16574     10338 King James Version Bible
16575     10339 King James Version Bible
16576     10340 King James Version Bible
16577     10341 King James Version Bible
16578     10342 King James Version Bible
16579     10343 King James Version Bible
16580     10344 King James Version Bible
16581     10345 King James Version Bible
16582     10346 King James Version Bible
16583     10347 King James Version Bible
16584     10348 King James Version Bible
16585     10349 King James Version Bible
16586     10350 King James Version Bible
16587     10351 King James Version Bible
16588     10352 King James Version Bible
16589     10353 King James Version Bible
16590     10354 King James Version Bible
16591     10355 King James Version Bible
16592     10356 King James Version Bible
16593     10357 King James Version Bible
16594     10358 King James Version Bible
16595     10359 King James Version Bible
16596     10360 King James Version Bible
16597     10361 King James Version Bible
16598     10362 King James Version Bible
16599     10363 King James Version Bible
16600     10364 King James Version Bible
16601     10365 King James Version Bible
16602     10366 King James Version Bible
16603     10367 King James Version Bible
16604     10368 King James Version Bible
16605     10369 King James Version Bible
16606     10370 King James Version Bible
16607     10371 King James Version Bible
16608     10372 King James Version Bible
16609     10373 King James Version Bible
16610     10374 King James Version Bible
16611     10375 King James Version Bible
16612     10376 King James Version Bible
16613     10377 King James Version Bible
16614     10378 King James Version Bible
16615     10379 King James Version Bible
16616     10380 King James Version Bible
16617     10381 King James Version Bible
16618     10382 King James Version Bible
16619     10383 King James Version Bible
16620     10384 King James Version Bible
16621     10385 King James Version Bible
16622     10386 King James Version Bible
16623     10387 King James Version Bible
16624     10388 King James Version Bible
16625     10389 King James Version Bible
16626     10390 King James Version Bible
16627     10391 King James Version Bible
16628     10392 King James Version Bible
16629     10393 King James Version Bible
16630     10394 King James Version Bible
16631     10395 King James Version Bible
16632     10396 King James Version Bible
16633     10397 King James Version Bible
16634     10398 King James Version Bible
16635     10399 King James Version Bible
16636     10400 King James Version Bible
16637     10401 King James Version Bible
16638     10402 King James Version Bible
16639     10403 King James Version Bible
16640     10404 King James Version Bible
16641     10405 King James Version Bible
16642     10406 King James Version Bible
16643     10407 King James Version Bible
16644     10408 King James Version Bible
16645     10409 King James Version Bible
16646     10410 King James Version Bible
16647     10411 King James Version Bible
16648     10412 King James Version Bible
16649     10413 King James Version Bible
16650     10414 King James Version Bible
16651     10415 King James Version Bible
16652     10416 King James Version Bible
16653     10417 King James Version Bible
16654     10418 King James Version Bible
16655     10419 King James Version Bible
16656     10420 King James Version Bible
16657     10421 King James Version Bible
16658     10422 King James Version Bible
16659     10423 King James Version Bible
16660     10424 King James Version Bible
16661     10425 King James Version Bible
16662     10426 King James Version Bible
16663     10427 King James Version Bible
16664     10428 King James Version Bible
16665     10429 King James Version Bible
16666     10430 King James Version Bible
 [ reached 'max' / getOption("max.print") -- omitted 20673 rows ]

Introduction

  • I am doing a textual analysis of the similarities and differences between the Quran and the KJV Bible. Tracking key textual style differences between the Quran and the KJV Bible.
  • They are both holy texts, one for Muslims and one for Christians.
    • They have a lot in common.
    • They also have some differences: the Quran is much shorter and more lyrical while the Bible is much longer, broken into two main sections (Old Testement and New Testement) and spends more time storytelling than the Quran.
    • What other differences are there?
  • Some basic background context about the structure of these two books:
    • The Quran is broken into______
    • The King James Version Bible has_____
  • While we can certainly do comparative literary analyses between these two texts, and such analyses have been done, what similarities and differences can we visualize and quantify between these two texts at the ayah/verse - level and at the word level? What thematic patterns can we visually trace?

Special Symbols

In the text of the Quran, these symbols appear semi-regularly: ˹ ˺. They do not appear in the KJV Bible.

holy_books |>
  group_by(title) |>
  summarize(sum(str_detect(text, "˹[A-Za-z ]+˺")),
            total = n()) |>
  rename(symbol_count = 2) |>
  mutate(proportion = symbol_count/total) |>
  rename("Holy Books" = title, 
         "Symbol Count" = symbol_count,
         Total = total,
         Proportion = proportion) |>
  kable()
Holy Books Symbol Count Total Proportion
King James Version Bible 0 31103 0.0000000
The Holy Quran 3291 6236 0.5277421

In fact, over half of the ayahs in the Quran include this symbol. We can take a closer look at what kinds of phrases are bracketed in by these symols:

quran |>
  select(surah_chapter, ayah_verse, text) |>
  filter(str_detect(text, "˹[A-Za-z ]+˺")) |>
  slice_head(n = 5) |>
  kable()
surah_chapter ayah_verse text
1 5 You ˹alone˺ we worship and You ˹alone˺ we ask for help.
2 4 and who believe in what has been revealed to you ˹O Prophet˺ and what was revealed before you, and have sure faith in the Hereafter.
2 5 It is they who are ˹truly˺ guided by their Lord, and it is they who will be successful.
2 8 And there are some who say, “We believe in Allah and the Last Day,” yet they are not ˹true˺ believers.
2 10 There is sickness in their hearts, and Allah ˹only˺ lets their sickness increase. They will suffer a painful punishment for their lies.

It is unclear to me exactly what this symbol is intended to indicate as these symbols do not appear in Arabic the original Arabic

What does this symbol mean? - The actual Quran has many special symbols and these have meaning. - This is a difference between the Bible and the Quran.

Dialogue

holy_books |>
  group_by(title)|>
  summarize(sum(str_detect(text, "\\\".+\\\"")))
# A tibble: 2 × 2
  title                    `sum(str_detect(text, "\\\\\\".+\\\\\\""))`
  <chr>                                                          <int>
1 King James Version Bible                                           0
2 The Holy Quran                                                  1159

Table of counts: how many verses in the Quran vs. verses in the Bible use quotations? Table of proportions: what proportion of verses in the Quran vs. versus in the Bible use quotations?

The KJV Bible does not include quotation marks. We can replicate this by also including examples in which the words “said” and “says” are used.

  • We can then make a table of counts and a table of proportions (what proportion of the verses in the Bible have these dialogue words? How do the proportions compare between the Quran and the Bible?)
  • What would differences in proportions of dialogue and said/says mean about the use of dialogue in these holy texts?

The Divine

holy_books |>
  group_by(title) |>
  summarize(sum(str_detect(text, "Allah|LORD|Lord|God|Almighty|Christ|Jesus")))
# A tibble: 2 × 2
  title                    sum(str_detect(text, "Allah|LORD|Lord|God|Almighty|…¹
  <chr>                                                                    <int>
1 King James Version Bible                                                  9680
2 The Holy Quran                                                            2694
# ℹ abbreviated name:
#   ¹​`sum(str_detect(text, "Allah|LORD|Lord|God|Almighty|Christ|Jesus"))`
  • Table of counts and proportions of words for the divine
    • Could do an analysis of the proportion of verses that mention Allah or LORD in the Quran vs. the proportiont of verses that do in the Bible.
    • Does one use the term God more often than the other?

Most common words

#Maybe do these as the words in their separate datasets so it's smaller and then put the graphs next to each other? Could also split up the bible as the old testament and the new testament

#holy_books_words <- holy_books |>
#  unnest_tokens(output = word, input = text)

#holy_books_words

Create a wordcloud plot with the most common words, faceted by title. How do they differ?

Positive vs. Negative Sentiment Analysis

Track the postive vs. negative sentiment analysis over the two texts using the affin sentiment analysis. Maybe split the bible up by old and new testament again. - What does the trajectory of the texts look like? How do they differ?

Conclusion